:root {
  --blue-950: #071a3b;
  --blue-900: #0a2d63;
  --blue-800: #0b4f9f;
  --blue-700: #0869c7;
  --blue-100: #eaf4ff;
  --cyan: #18a7d6;
  --green: #2aa343;
  --lime: #a8cc1a;
  --orange: #e9551d;
  --ink: #111827;
  --muted: #5d6a7c;
  --line: #dce5ef;
  --soft: #f5f8fb;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(7, 26, 59, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.65;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

h1,
h2,
h3,
p,
a,
span {
  overflow-wrap: anywhere;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 44px;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(220, 229, 239, 0.72);
  backdrop-filter: blur(18px);
}

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

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: #24324a;
}

.desktop-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.desktop-nav a.current {
  color: var(--blue-800);
  border-color: var(--blue-700);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  background: var(--blue-950);
  transition: transform 180ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  inset: 72px 0 auto 0;
  z-index: 19;
  display: none;
  padding: 18px 24px 26px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.mobile-panel a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  color: var(--blue-950);
  border-bottom: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--blue-950);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-global.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 26, 59, 0.92), rgba(7, 26, 59, 0.55) 45%, rgba(7, 26, 59, 0.15)),
    linear-gradient(0deg, rgba(7, 26, 59, 0.72), rgba(7, 26, 59, 0.05) 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 88px));
  margin: 0 auto;
  padding: 170px 0 88px;
  color: var(--white);
}

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

.hero .eyebrow {
  color: #bfe5ff;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 64px;
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero-copy {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.primary-link {
  color: var(--white);
  background: var(--blue-700);
}

.secondary-link {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.primary-link:hover,
.secondary-link:hover {
  transform: translateY(-2px);
}

.secondary-link:hover {
  background: rgba(255, 255, 255, 0.12);
}

.metrics {
  width: min(1180px, calc(100% - 88px));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.metric {
  min-height: 112px;
  padding: 22px 24px;
  background: var(--white);
}

.metric strong {
  display: block;
  color: var(--blue-900);
  font-size: 34px;
  line-height: 1;
  font-weight: 750;
}

.metric span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  width: min(1180px, calc(100% - 88px));
  margin: 0 auto;
  padding: 118px 0;
}

.section-head {
  max-width: 860px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-head.left {
  margin: 0;
  text-align: left;
}

.section-head.narrow {
  max-width: 940px;
}

.section-head h2,
.network-copy h2,
.contact h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: 42px;
  line-height: 1.22;
  font-weight: 760;
  letter-spacing: 0;
}

.section-head p:not(.eyebrow),
.network-copy p,
.contact p,
.brand-feature p {
  color: var(--muted);
  font-size: 17px;
}

.intro {
  padding-top: 96px;
}

.strategy {
  display: grid;
  grid-template-columns: 0.95fr 1.4fr;
  gap: 28px;
  align-items: stretch;
}

.strategy-core {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-950), var(--blue-800));
  border-radius: 8px;
  overflow: hidden;
}

.strategy-core span {
  font-size: 96px;
  line-height: 0.9;
  font-weight: 780;
  color: rgba(255, 255, 255, 0.24);
}

.strategy-core h3 {
  margin: 34px 0 8px;
  font-size: 28px;
  line-height: 1.25;
}

.strategy-core p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

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

.strategy-grid article {
  min-height: 110px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.strategy-grid span {
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 800;
}

.strategy-grid h3 {
  margin: 14px 0 0;
  color: var(--blue-950);
  font-size: 20px;
}

.centers {
  width: 100%;
  max-width: none;
  padding-left: max(44px, calc((100% - 1180px) / 2));
  padding-right: max(44px, calc((100% - 1180px) / 2));
  background: var(--soft);
}

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

.center-item {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.center-item img {
  width: 148px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
}

.center-item p {
  margin: 30px 0 6px;
  font-size: 13px;
  font-weight: 800;
}

.center-item h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: 24px;
}

.center-item span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
}

.text-logo {
  display: inline-flex;
  align-items: center;
  height: 72px;
  color: var(--blue-900);
  font-size: 28px;
  font-weight: 800;
}

.accent-blue p { color: var(--blue-700); }
.accent-orange p { color: var(--orange); }
.accent-green p { color: var(--green); }
.accent-cyan p { color: var(--cyan); }
.accent-ink p { color: #34495e; }
.accent-lime p { color: var(--lime); }

.brands {
  display: grid;
  gap: 38px;
}

.brand-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.brand-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.brand-logos img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  padding: 28px;
  background: var(--white);
}

.brand-feature {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.brand-feature figure,
.network-map,
.case-grid article,
.brand-feature img {
  margin: 0;
}

.brand-feature figure {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.brand-feature img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.brand-feature h3 {
  margin: 0 0 18px;
  color: var(--blue-950);
  font-size: 34px;
  line-height: 1.25;
}

.network {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
  padding-left: max(44px, calc((100% - 1180px) / 2));
  padding-right: max(44px, calc((100% - 1180px) / 2));
  background: linear-gradient(180deg, #ffffff, #f2f7fc);
}

.market-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.market-list span {
  padding: 8px 13px;
  color: var(--blue-900);
  background: var(--blue-100);
  border: 1px solid #c9e1f7;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.network-map {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.network-map img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
}

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

.case-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

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

.case-grid div {
  min-height: 150px;
  padding: 22px;
}

.case-grid p {
  margin: 0 0 8px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 800;
}

.case-grid h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: 20px;
  line-height: 1.38;
}

.wechat {
  width: 100%;
  max-width: none;
  padding-left: max(44px, calc((100% - 1180px) / 2));
  padding-right: max(44px, calc((100% - 1180px) / 2));
  background: var(--soft);
}

.wechat-card {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 48px;
  align-items: stretch;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.wechat-profile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 430px;
  padding: 34px;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-950), #123f85);
  border-radius: 8px;
}

.wechat-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--white);
}

.wechat-avatar img {
  width: 66px;
}

.wechat-profile .eyebrow {
  color: #bfe5ff;
}

.wechat-profile h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.22;
}

.wechat-profile p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
}

.wechat-actions {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.wechat-actions span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 14px;
}

.wechat-feed {
  display: grid;
  gap: 14px;
}

.wechat-feed article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.wechat-feed time {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.wechat-feed h3 {
  margin: 10px 0;
  color: var(--blue-950);
  font-size: 22px;
  line-height: 1.38;
}

.wechat-feed p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.contact {
  width: 100%;
  max-width: none;
  padding-left: max(44px, calc((100% - 1180px) / 2));
  padding-right: max(44px, calc((100% - 1180px) / 2));
  background: var(--blue-950);
  color: var(--white);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 54px;
  align-items: end;
}

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

.contact p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
}

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

.contact-list a,
.contact-list span {
  display: block;
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 18px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 44px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer img {
  width: 170px;
}

.site-footer span {
  font-size: 14px;
}

.site-footer a {
  color: var(--blue-800);
  font-size: 14px;
  font-weight: 800;
}

.home-page .hero {
  min-height: 82vh;
}

.home-page .hero h1 {
  max-width: 880px;
}

.home-page .hero h1 span:first-child {
  font-size: 76px;
}

.home-page .hero-copy {
  max-width: 760px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 700;
}

.home-metrics {
  margin-top: -38px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow);
}

.group-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.68fr);
  gap: 56px;
  align-items: stretch;
}

.group-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 390px;
  padding: 34px;
  color: var(--white);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(7, 26, 59, 0.96), rgba(8, 105, 199, 0.9)),
    url("assets/global-map.jpg") center / cover no-repeat;
  overflow: hidden;
}

.group-panel span {
  color: rgba(255, 255, 255, 0.25);
  font-size: 76px;
  line-height: 0.92;
  font-weight: 800;
}

.group-panel h3 {
  margin: 34px 0 14px;
  font-size: 28px;
  line-height: 1.26;
}

.group-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.capability-card {
  min-height: 292px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.capability-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--blue-800);
  background: var(--blue-100);
  border-radius: 50%;
  font-weight: 800;
}

.capability-card h3 {
  margin: 32px 0 12px;
  color: var(--blue-950);
  font-size: 23px;
  line-height: 1.3;
}

.capability-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.capability-card.highlight {
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-950), var(--blue-700));
}

.capability-card.highlight span {
  color: var(--blue-950);
  background: var(--white);
}

.capability-card.highlight h3,
.capability-card.highlight p {
  color: var(--white);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  border: 1px solid var(--line);
  background: var(--line);
}

.brand-card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: var(--white);
}

.brand-card img {
  width: 150px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
}

.brand-card p {
  margin: 34px 0 8px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 800;
}

.brand-card h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: 22px;
  line-height: 1.28;
}

.home-wechat {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-wechat .wechat-feed article {
  background: var(--white);
}

.contact-page {
  background: var(--white);
}

.contact-page main {
  overflow-x: hidden;
}

.contact-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: 140px max(44px, calc((100% - 1180px) / 2)) 84px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 26, 59, 0.94), rgba(7, 26, 59, 0.62) 56%, rgba(7, 26, 59, 0.22)),
    url("assets/hero-global.jpg") center / cover no-repeat;
}

.contact-hero > div {
  width: min(720px, 100%);
  min-width: 0;
}

.contact-hero .eyebrow {
  color: #bfe5ff;
}

.contact-hero h1 {
  margin: 0;
  font-size: 64px;
  line-height: 1.08;
}

.contact-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.contact-routing {
  padding-top: 96px;
}

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

.routing-grid > *,
.contact-form-layout > *,
.message-form > * {
  min-width: 0;
}

.route-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.route-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--blue-800);
  background: var(--blue-100);
  border-radius: 50%;
  font-weight: 800;
}

.route-card h3 {
  margin: 30px 0 12px;
  color: var(--blue-950);
  font-size: 23px;
  line-height: 1.32;
}

.route-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.route-reveal {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 8px;
  padding: 24px 28px;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-900), var(--blue-700));
  transform: translateY(calc(100% - 6px));
  transition: transform 220ms ease;
}

.route-card:hover .route-reveal,
.route-card:focus-within .route-reveal {
  transform: translateY(0);
}

.route-reveal strong {
  font-size: 15px;
}

.route-reveal a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.contact-form-section {
  width: 100%;
  max-width: none;
  padding-left: max(44px, calc((100% - 1180px) / 2));
  padding-right: max(44px, calc((100% - 1180px) / 2));
  background: var(--soft);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 34px;
  align-items: stretch;
}

.contact-info-block,
.message-form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-info-block h2 {
  margin: 0 0 28px;
  color: var(--blue-950);
  font-size: 36px;
  line-height: 1.25;
}

.info-line {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.info-line span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.info-line a,
.info-line p {
  margin: 0;
  color: var(--blue-950);
  font-size: 17px;
}

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

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

.message-form label.full {
  grid-column: 1 / -1;
}

.message-form span {
  color: var(--blue-950);
  font-size: 14px;
  font-weight: 700;
}

.message-form input,
.message-form select,
.message-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfdff;
  font: inherit;
  outline: none;
}

.message-form input:focus,
.message-form select:focus,
.message-form textarea:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 3px rgba(8, 105, 199, 0.12);
}

.message-form button {
  justify-self: start;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0 26px;
  color: var(--white);
  background: var(--blue-700);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 1060px) {
  .site-header {
    padding: 0 28px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .hero-content,
  .metrics,
  .section {
    width: min(100% - 56px, 960px);
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .section-head h2,
  .network-copy h2,
  .wechat-profile h2,
  .contact h2 {
    font-size: 34px;
  }

  .strategy,
  .group-layout,
  .brand-story,
  .brand-feature,
  .network,
  .wechat-card,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .centers,
  .network,
  .wechat,
  .contact {
    padding-left: 28px;
    padding-right: 28px;
  }

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

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

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

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

  .contact-form-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .site-header {
    height: 64px;
    padding: 0 18px;
  }

  html {
    scroll-padding-top: 64px;
  }

  .brand img {
    width: 156px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu-open .mobile-panel {
    display: block;
  }

  .mobile-panel {
    inset: 64px 0 auto 0;
  }

  .hero {
    min-height: 76vh;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 26, 59, 0.95), rgba(7, 26, 59, 0.76)),
      linear-gradient(0deg, rgba(7, 26, 59, 0.66), rgba(7, 26, 59, 0.08));
  }

  .hero-content {
    width: calc(100% - 40px);
    padding: 132px 0 58px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.16;
  }

  .home-page .hero h1 span:first-child {
    font-size: 44px;
  }

  .hero-copy {
    font-size: 16px;
    max-width: 330px;
    word-break: break-all;
  }

  .hero-actions {
    gap: 10px;
  }

  .primary-link,
  .secondary-link {
    width: 330px;
    max-width: 100%;
  }

  .metrics {
    width: calc(100% - 40px);
    grid-template-columns: repeat(2, 1fr);
  }

  .metric {
    min-height: 104px;
    padding: 18px;
  }

  .metric strong {
    font-size: 28px;
  }

  .section {
    width: calc(100% - 40px);
    padding: 82px 0;
  }

  .centers,
  .network,
  .wechat,
  .contact {
    padding: 82px 20px;
  }

  .section-head {
    margin-bottom: 36px;
    text-align: left;
  }

  .section-head h2,
  .network-copy h2,
  .wechat-profile h2,
  .contact h2 {
    font-size: 30px;
  }

  .section-head p:not(.eyebrow),
  .network-copy p,
  .wechat-profile p,
  .contact p,
  .brand-feature p {
    font-size: 16px;
  }

  .strategy-grid,
  .center-grid,
  .capability-grid,
  .brand-grid,
  .brand-logos,
  .case-grid {
    grid-template-columns: 1fr;
  }

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

  .group-panel {
    min-height: 320px;
    padding: 26px;
  }

  .group-panel span {
    font-size: 56px;
  }

  .group-panel h3 {
    font-size: 23px;
  }

  .capability-card {
    min-height: auto;
    padding: 24px;
  }

  .brand-card {
    min-height: 210px;
    padding: 24px;
  }

  .strategy-core {
    min-height: 300px;
    padding: 26px;
  }

  .center-item {
    min-height: 260px;
  }

  .brand-logos img {
    height: 132px;
  }

  .brand-feature img,
  .network-map img {
    height: 300px;
  }

  .case-grid img {
    height: 220px;
  }

  .wechat-card {
    gap: 0;
    overflow: hidden;
    padding: 0;
  }

  .wechat-profile {
    min-height: 360px;
    padding: 28px;
    border-radius: 0;
  }

  .wechat-feed {
    padding: 16px;
  }

  .wechat-feed article {
    padding: 20px;
  }

  .wechat-feed h3 {
    font-size: 19px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
  }

  .contact-hero {
    min-height: 480px;
    padding: 120px 20px 58px;
  }

  .contact-hero > div,
  .contact-routing .section-head {
    width: 100%;
    max-width: 100%;
  }

  .contact-hero h1 {
    font-size: 42px;
  }

  .contact-hero p:not(.eyebrow) {
    max-width: 100%;
    font-size: 16px;
  }

  .contact-hero p:not(.eyebrow),
  .contact-routing .section-head h2,
  .contact-routing .section-head p:not(.eyebrow),
  .route-card h3,
  .route-card p,
  .info-line a,
  .info-line p {
    line-break: anywhere;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .contact-routing .section-head h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .routing-grid,
  .message-form {
    grid-template-columns: 1fr;
  }

  .route-card {
    min-height: auto;
    padding: 24px;
  }

  .route-reveal {
    position: static;
    margin: 24px -24px -24px;
    padding: 22px 24px;
    transform: none;
  }

  .contact-form-section {
    padding: 82px 20px;
  }

  .contact-info-block,
  .message-form {
    padding: 24px;
  }

  .contact-info-block h2 {
    font-size: 30px;
  }
}

@media (max-width: 440px) {
  .hero h1 {
    font-size: 32px;
  }

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

  .metric {
    min-height: 92px;
  }

  .center-item h3,
  .strategy-grid h3 {
    font-size: 19px;
  }
}

.portal-page {
  background: #ffffff;
}

.portal-page main {
  overflow-x: hidden;
}

.portal-page .site-header {
  background: rgba(255, 255, 255, 0.9);
}

.portal-page .desktop-nav {
  gap: 22px;
}

.portal-page .desktop-nav a {
  white-space: nowrap;
}

.portal-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 120px max(56px, calc((100% - 1180px) / 2)) 72px;
  color: var(--white);
  background: var(--blue-950);
  overflow: hidden;
}

.portal-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 26, 59, 0.96) 0%, rgba(7, 26, 59, 0.82) 40%, rgba(7, 26, 59, 0.38) 72%, rgba(7, 26, 59, 0.18) 100%),
    url("assets/hero-global.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.portal-hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 72px;
  align-items: center;
}

.portal-hero-copy {
  max-width: 780px;
}

.portal-hero-copy .eyebrow {
  color: #bfe5ff;
}

.portal-hero h1 {
  margin: 0;
  font-size: 86px;
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
}

.portal-hero-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 21px;
  line-height: 1.85;
}

.portal-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.portal-hero-board {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.portal-hero-board p {
  margin: 0 0 14px;
  color: #bfe5ff;
  font-size: 13px;
  font-weight: 800;
}

.portal-hero-board a {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 14px;
  row-gap: 2px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.portal-hero-board span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--blue-950);
  background: var(--white);
  border-radius: 50%;
  font-weight: 800;
}

.portal-hero-board strong {
  color: var(--white);
  font-size: 17px;
}

.portal-hero-board em {
  color: rgba(255, 255, 255, 0.66);
  font-style: normal;
  font-size: 13px;
}

.portal-section {
  width: min(1180px, calc(100% - 88px));
  margin: 0 auto;
  padding: 108px 0;
}

.portal-section-head {
  max-width: 820px;
  margin-bottom: 44px;
}

.portal-section-head.split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.45fr);
  gap: 60px;
  align-items: end;
}

.portal-section-head h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: 46px;
  line-height: 1.18;
  font-weight: 780;
}

.portal-section-head p:not(.eyebrow),
.portal-section-head.split > p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.ior-section {
  padding-top: 116px;
}

.ior-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  align-items: stretch;
}

.ior-feature {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  color: var(--white);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(7, 26, 59, 0.96), rgba(8, 105, 199, 0.9)),
    url("assets/linkai-classroom.jpg") center / cover no-repeat;
}

.ior-feature > span {
  color: rgba(255, 255, 255, 0.24);
  font-size: 96px;
  line-height: 0.86;
  font-weight: 800;
}

.ior-feature h3 {
  margin: 34px 0 12px;
  font-size: 30px;
  line-height: 1.28;
}

.ior-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.ior-feature a {
  align-self: flex-start;
  margin-top: 26px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

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

.ior-steps article,
.business-grid article,
.insight-list article,
.news-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.ior-steps article {
  min-height: 212px;
  padding: 26px;
}

.ior-steps span {
  color: var(--blue-700);
  font-size: 14px;
  font-weight: 800;
}

.ior-steps h3 {
  margin: 42px 0 10px;
  color: var(--blue-950);
  font-size: 23px;
}

.ior-steps p {
  margin: 0;
  color: var(--muted);
}

.business-section,
.insight-section,
.news-section {
  width: 100%;
  max-width: none;
  padding-left: max(56px, calc((100% - 1180px) / 2));
  padding-right: max(56px, calc((100% - 1180px) / 2));
  background: var(--soft);
}

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

.business-grid article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.business-grid article:hover,
.customer-case-grid article:hover,
.news-list article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.business-grid img {
  width: 154px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
}

.business-text-logo {
  display: inline-flex;
  align-items: center;
  height: 72px;
  color: var(--blue-900);
  font-size: 30px;
  font-weight: 800;
}

.business-grid h3 {
  margin: 42px 0 12px;
  color: var(--blue-950);
  font-size: 24px;
  line-height: 1.28;
}

.business-grid p {
  margin: 0;
  color: var(--muted);
}

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

.customer-case-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.customer-case-grid img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.customer-case-grid div {
  min-height: 240px;
  padding: 24px;
}

.customer-case-grid span,
.insight-list span {
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 800;
}

.customer-case-grid h3 {
  margin: 12px 0;
  color: var(--blue-950);
  font-size: 23px;
  line-height: 1.34;
}

.customer-case-grid p {
  margin: 0;
  color: var(--muted);
}

.insight-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.insight-list article {
  min-height: 250px;
  padding: 28px;
  border: 0;
  border-radius: 0;
}

.insight-list h3 {
  margin: 46px 0 0;
  color: var(--blue-950);
  font-size: 22px;
  line-height: 1.38;
}

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

.about-copy h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: 46px;
  line-height: 1.18;
}

.about-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.about-stats div {
  min-height: 160px;
  padding: 28px;
  background: var(--white);
}

.about-stats strong {
  display: block;
  color: var(--blue-900);
  font-size: 34px;
  line-height: 1;
}

.about-stats span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
}

.news-section .portal-section-head a {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: var(--blue-800);
  border: 1px solid #c9e1f7;
  border-radius: 999px;
  background: var(--white);
  font-size: 14px;
  font-weight: 800;
}

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

.news-list article {
  min-height: 260px;
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.news-list time {
  color: var(--muted);
  font-size: 14px;
}

.news-list h3 {
  margin: 28px 0 12px;
  color: var(--blue-950);
  font-size: 22px;
  line-height: 1.38;
}

.news-list p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 1180px) {
  .portal-page .desktop-nav {
    gap: 14px;
    font-size: 13px;
  }

  .portal-hero-content,
  .ior-layout,
  .about-layout,
  .portal-section-head.split {
    grid-template-columns: 1fr;
  }

  .portal-hero-board {
    max-width: 720px;
  }

  .business-grid,
  .customer-case-grid,
  .news-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 780px) {
  .portal-hero {
    min-height: auto;
    padding: 126px 20px 64px;
  }

  .portal-hero-content,
  .ior-layout,
  .ior-steps,
  .business-grid,
  .customer-case-grid,
  .insight-list,
  .about-layout,
  .about-stats,
  .news-list {
    grid-template-columns: 1fr;
  }

  .portal-hero h1 {
    font-size: 54px;
  }

  .portal-hero-lead {
    font-size: 17px;
  }

  .portal-hero-actions .primary-link,
  .portal-hero-actions .secondary-link {
    width: 100%;
  }

  .portal-section,
  .business-section,
  .insight-section,
  .news-section {
    width: 100%;
    padding: 78px 20px;
  }

  .portal-section-head h2,
  .about-copy h2 {
    font-size: 32px;
  }

  .ior-feature {
    min-height: 360px;
    padding: 26px;
  }

  .ior-feature > span {
    font-size: 72px;
  }

  .customer-case-grid img {
    height: 230px;
  }
}

.refined-home {
  background: #ffffff;
}

.refined-home main {
  overflow-x: hidden;
}

.refined-home .site-header {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 0 rgba(220, 229, 239, 0.72);
}

.refined-home .desktop-nav {
  gap: 22px;
}

.refined-home .desktop-nav a {
  white-space: nowrap;
}

.clean-hero {
  padding: 112px max(56px, calc((100% - 1180px) / 2)) 44px;
  background:
    linear-gradient(180deg, #f7fbff 0%, #ffffff 72%),
    #ffffff;
}

.clean-hero-inner {
  width: min(1180px, 100%);
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
  gap: 68px;
  align-items: center;
}

.clean-hero-copy {
  min-width: 0;
}

.clean-hero h1 {
  margin: 0;
  max-width: 720px;
  color: var(--blue-950);
  font-size: 68px;
  line-height: 1.08;
  font-weight: 800;
}

.clean-hero h1 span {
  display: block;
}

.clean-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 26px 0 0;
  color: #42516a;
  font-size: 20px;
  line-height: 1.85;
}

.clean-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.secondary-link.light {
  color: var(--blue-900);
  border-color: #bed4ed;
  background: rgba(255, 255, 255, 0.68);
}

.secondary-link.light:hover {
  background: var(--blue-100);
}

.clean-hero-visual {
  position: relative;
  min-height: 500px;
}

.visual-photo {
  position: absolute;
  inset: 18px 0 58px 54px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(7, 26, 59, 0.16);
}

.visual-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(7, 26, 59, 0.4), rgba(8, 105, 199, 0.12));
}

.visual-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.visual-note {
  position: absolute;
  width: 260px;
  padding: 20px;
  border: 1px solid rgba(201, 225, 247, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(7, 26, 59, 0.12);
  backdrop-filter: blur(16px);
}

.visual-note.main {
  top: 0;
  left: 0;
}

.visual-note.logistics {
  right: 14px;
  top: 182px;
}

.visual-note.systems {
  left: 92px;
  bottom: 0;
}

.visual-note span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--white);
  background: var(--blue-800);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.visual-note strong {
  display: block;
  margin-top: 18px;
  color: var(--blue-950);
  font-size: 20px;
}

.visual-note p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.quick-metrics {
  width: min(1180px, calc(100% - 112px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto 54px;
  border: 1px solid var(--line);
  background: var(--line);
}

.quick-metrics div {
  min-height: 122px;
  padding: 26px 28px;
  background: var(--white);
}

.quick-metrics strong {
  display: block;
  color: var(--blue-950);
  font-size: 34px;
  line-height: 1;
}

.quick-metrics span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.platform-band {
  width: 100%;
  padding: 72px max(56px, calc((100% - 1180px) / 2));
  color: var(--white);
  background: #05070b;
}

.band-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.band-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 34px;
}

.band-head .eyebrow {
  color: #83c8ff;
}

.band-head h2 {
  max-width: 620px;
  margin: 0;
  color: var(--white);
  font-size: 34px;
  line-height: 1.26;
}

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

.platform-logo {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: #111827;
  border-radius: 8px;
  background: #f4f6f8;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.platform-logo.coupang { color: #7b4a2b; }
.platform-logo.ali { color: #111827; font-weight: 500; }
.platform-logo.ml { color: #2f5597; font-size: 26px; }
.platform-logo.rakuten { color: #d71920; }
.platform-logo.ebay { color: #4a78c2; font-size: 42px; }
.platform-logo.amazon { color: #111827; }
.platform-logo.temu { color: #ff6a00; }
.platform-logo.shein { color: #111827; letter-spacing: 0; }

.clean-section {
  width: min(1180px, calc(100% - 112px));
  margin: 0 auto;
  padding: 104px 0;
}

.clean-section-head {
  max-width: 820px;
  margin-bottom: 44px;
}

.clean-section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.clean-section-head h2,
.about-clean-layout h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: 44px;
  line-height: 1.22;
  font-weight: 780;
}

.clean-section-head p:not(.eyebrow),
.about-clean-layout p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.mode-compare {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.mode-compare article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.mode-compare article.featured {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(145deg, var(--blue-950), var(--blue-700));
}

.mode-compare span {
  display: block;
  color: var(--blue-700);
  font-size: 15px;
  font-weight: 800;
}

.mode-compare .featured span {
  color: #bfe5ff;
}

.mode-compare strong {
  display: block;
  margin-top: 28px;
  color: var(--blue-950);
  font-size: 32px;
  line-height: 1;
}

.mode-compare .featured strong {
  color: var(--white);
}

.mode-compare p {
  margin: 16px 0 0;
  color: var(--muted);
}

.mode-compare .featured p {
  color: rgba(255, 255, 255, 0.78);
}

.ior-clean-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.ior-clean-panel {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: var(--white);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(7, 26, 59, 0.96), rgba(8, 105, 199, 0.9)),
    url("assets/linkai-classroom.jpg") center / cover no-repeat;
}

.ior-clean-panel > span {
  color: rgba(255, 255, 255, 0.22);
  font-size: 88px;
  line-height: 0.86;
  font-weight: 800;
}

.ior-clean-panel h3 {
  margin: 30px 0 12px;
  font-size: 28px;
  line-height: 1.28;
}

.ior-clean-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.ior-clean-panel a {
  align-self: flex-start;
  margin-top: 24px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

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

.process-row article,
.business-clean-grid article,
.info-strip article,
.news-clean-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.process-row article {
  min-height: 205px;
  padding: 26px;
}

.process-row span,
.case-clean-list span,
.info-strip span {
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 800;
}

.process-row h3 {
  margin: 42px 0 10px;
  color: var(--blue-950);
  font-size: 24px;
}

.process-row p {
  margin: 0;
  color: var(--muted);
}

.service-solution {
  margin-top: 82px;
}

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

.solution-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(7, 26, 59, 0.04);
}

.solution-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #ef233c;
  background: #fff0f1;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.solution-grid h3 {
  margin: 44px 0 12px;
  color: var(--blue-950);
  font-size: 24px;
  line-height: 1.32;
}

.solution-grid p {
  margin: 0;
  color: var(--muted);
}

.business-clean,
.insights-clean,
.news-clean {
  width: 100%;
  max-width: none;
  padding-left: max(56px, calc((100% - 1180px) / 2));
  padding-right: max(56px, calc((100% - 1180px) / 2));
  background: #f5f8fb;
}

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

.business-clean-grid article {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
}

.business-clean-grid img {
  width: 150px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
}

.plain-logo {
  display: inline-flex;
  align-items: center;
  height: 72px;
  color: var(--blue-900);
  font-size: 30px;
}

.business-clean-grid h3 {
  margin: 42px 0 12px;
  color: var(--blue-950);
  font-size: 24px;
  line-height: 1.28;
}

.business-clean-grid p {
  margin: 0;
  color: var(--muted);
}

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

.client-band {
  margin-bottom: 42px;
  padding: 34px;
  color: var(--white);
  border-radius: 8px;
  background: #05070b;
}

.client-band p {
  margin: 0 0 24px;
  color: #dce8f5;
  font-size: 18px;
  font-weight: 800;
}

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

.client-logo-grid span {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  color: #111827;
  border-radius: 8px;
  background: #f4f6f8;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
}

.case-clean-list article {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.case-clean-list img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.case-clean-list div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.case-clean-list h3 {
  max-width: 620px;
  margin: 12px 0;
  color: var(--blue-950);
  font-size: 28px;
  line-height: 1.28;
}

.case-clean-list p {
  margin: 0;
  color: var(--muted);
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.info-strip article {
  min-height: 230px;
  padding: 30px;
  border: 0;
  border-radius: 0;
}

.info-strip h3 {
  margin: 48px 0 0;
  color: var(--blue-950);
  font-size: 23px;
  line-height: 1.38;
}

.about-clean-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: 56px;
  align-items: center;
}

.about-clean-layout figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-clean-layout img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

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

.news-clean-list article {
  min-height: 260px;
  padding: 30px;
}

.news-clean-list time {
  color: var(--muted);
  font-size: 14px;
}

.news-clean-list h3 {
  margin: 28px 0 12px;
  color: var(--blue-950);
  font-size: 22px;
  line-height: 1.38;
}

.news-clean-list p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 1180px) {
  .refined-home .desktop-nav {
    gap: 14px;
    font-size: 13px;
  }

  .clean-hero-inner,
  .ior-clean-layout,
  .about-clean-layout {
    grid-template-columns: 1fr;
  }

  .clean-hero-visual {
    max-width: 680px;
  }

  .business-clean-grid,
  .news-clean-list,
  .info-strip,
  .platform-logo-grid,
  .solution-grid,
  .client-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-clean-list article {
    grid-template-columns: 360px minmax(0, 1fr);
  }
}

@media (max-width: 780px) {
  .clean-hero {
    padding: 112px 20px 42px;
  }

  .clean-hero-inner,
  .process-row,
  .mode-compare,
  .business-clean-grid,
  .case-clean-list article,
  .info-strip,
  .platform-logo-grid,
  .solution-grid,
  .client-logo-grid,
  .about-clean-layout,
  .news-clean-list,
  .quick-metrics {
    grid-template-columns: 1fr;
  }

  .clean-hero h1 {
    font-size: 42px;
  }

  .clean-hero-copy p:not(.eyebrow) {
    font-size: 17px;
  }

  .clean-actions .primary-link,
  .clean-actions .secondary-link {
    width: 100%;
  }

  .clean-hero-visual {
    min-height: 560px;
  }

  .visual-photo {
    inset: 44px 0 110px 0;
  }

  .visual-note {
    width: min(270px, 82vw);
  }

  .visual-note.main {
    top: 0;
  }

  .visual-note.logistics {
    right: 0;
    top: 210px;
  }

  .visual-note.systems {
    left: 0;
    bottom: 0;
  }

  .quick-metrics,
  .clean-section {
    width: calc(100% - 40px);
  }

  .business-clean,
  .insights-clean,
  .news-clean {
    padding-left: 20px;
    padding-right: 20px;
  }

  .clean-section-head h2,
  .about-clean-layout h2 {
    font-size: 31px;
  }

  .platform-band {
    padding: 56px 20px;
  }

  .band-head {
    display: block;
  }

  .band-head h2 {
    font-size: 28px;
  }

  .platform-logo {
    min-height: 78px;
    font-size: 24px;
  }

  .case-clean-list img,
  .about-clean-layout img {
    height: 240px;
  }
}
