:root {
  --color-navy: #0B2341;
  --color-blue: #0072CE;
  --color-blue-dark: #005BB5;
  --color-blue-light: #F3F9FF;
  --color-text: #53677D;
  --color-border: rgba(190, 220, 245, 0.8);
  --color-card-border: rgba(205, 225, 245, 0.9);
  --ink: var(--color-navy);
  --muted: var(--color-text);
  --line: var(--color-border);
  --soft: var(--color-blue-light);
  --white: #ffffff;
  --blue: var(--color-blue);
  --blue-dark: var(--color-blue-dark);
  --card-border: var(--color-card-border);
  --card-shadow: 0 16px 45px rgba(15, 48, 87, 0.06);
  --card-shadow-hover: 0 24px 65px rgba(15, 48, 87, 0.12);
  --green: #2d8f6f;
  --amber: #d79b28;
  --max: 1440px;
}html {
  scroll-behavior: smooth;
}body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", "PingFang SC",
    "Microsoft YaHei", sans-serif;
  overflow-x: hidden;
}body.preview-lock {
  overflow: hidden;
}.site-image-previewable {
  position: relative;
  cursor: pointer;
  outline: none;
}.site-image-previewable img {
  transition: transform 260ms ease;
}.site-image-previewable:hover img,
.site-image-previewable:focus-visible img {
  transform: scale(1.03);
}.site-image-previewable::after {
  content: attr(data-preview-label);
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  padding: 7px 11px;
  border: 1px solid rgba(190, 220, 245, 0.9);
  border-radius: 999px;
  color: #005bb5;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(15, 48, 87, 0.14);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 200ms ease, transform 200ms ease;
  pointer-events: none;
}.site-image-previewable:hover::after,
.site-image-previewable:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}.site-image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 46px);
  background: rgba(0, 15, 35, 0.78);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}.site-image-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}.site-image-lightbox-frame {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin: 0;
}.site-image-lightbox-frame img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 30px 88px rgba(0, 0, 0, 0.38);
  transform: translateY(8px) scale(0.985);
  transition: transform 220ms ease;
}.site-image-lightbox.is-open .site-image-lightbox-frame img {
  transform: translateY(0) scale(1);
}.site-image-lightbox-frame figcaption {
  max-width: min(90vw, 960px);
  color: #fff;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}.site-image-lightbox-close,
.site-image-lightbox-nav {
  position: fixed;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}.site-image-lightbox-close {
  top: clamp(16px, 3vw, 28px);
  right: clamp(16px, 3vw, 28px);
  font-size: 28px;
}.site-image-lightbox-prev {
  left: clamp(14px, 3vw, 34px);
  top: 50%;
  transform: translateY(-50%);
}.site-image-lightbox-next {
  right: clamp(14px, 3vw, 34px);
  top: 50%;
  transform: translateY(-50%);
}.site-image-lightbox-close:hover,
.site-image-lightbox-close:focus-visible,
.site-image-lightbox-nav:hover,
.site-image-lightbox-nav:focus-visible {
  background: rgba(255, 255, 255, 0.24);
}.site-image-lightbox-prev:hover,
.site-image-lightbox-prev:focus-visible,
.site-image-lightbox-next:hover,
.site-image-lightbox-next:focus-visible {
  transform: translateY(-50%) scale(1.04);
}.site-image-lightbox-close:hover,
.site-image-lightbox-close:focus-visible {
  transform: scale(1.04);
}@media (max-width: 640px) {.site-image-previewable::after {
    top: 10px;
    right: 10px;
    opacity: 1;
    transform: none;
    font-size: 11px;
  }.site-image-lightbox {
    padding: 18px;
  }.site-image-lightbox-frame img {
    max-width: 94vw;
    max-height: 80vh;
  }.site-image-lightbox-close,
.site-image-lightbox-nav {
    width: 52px;
    height: 52px;
  }.site-image-lightbox-close {
    top: 14px;
    right: 14px;
  }.site-image-lightbox-prev {
    left: 10px;
  }.site-image-lightbox-next {
    right: 10px;
  }
}a {
  color: inherit;
  text-decoration: none;
}img {
  display: block;
  width: 100%;
}.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 404px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  height: 78px;
  padding: 0 clamp(14px, 2.2vw, 34px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(210, 225, 240, 0.75);
  box-shadow: 0 10px 32px rgba(15, 48, 87, 0.04);
  backdrop-filter: blur(18px);
}.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  font-weight: 650;
}.brand-logo {
  width: 392px;
  height: 66px;
  object-fit: contain;
  object-position: left center;
}.nav-links {
  display: flex;
  gap: 8px;
  color: var(--color-navy);
  font-size: 18px;
  font-weight: 700;
  max-width: 100%;
  overflow: visible;
  scrollbar-width: none;
  justify-content: center;
}.nav-links::-webkit-scrollbar {
  display: none;
}.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 15px;
  border-radius: 10px;
  white-space: nowrap;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--color-blue);
  background: rgba(234, 245, 255, 0.72);
  outline: 0;
}.nav-links a.active {
  color: var(--color-blue);
  background: #EAF5FF;
  box-shadow: inset 0 0 0 1px rgba(190, 220, 245, 0.62);
}.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}.menu-toggle {
  display: none;
  width: 42px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(210, 225, 240, 0.9);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
}.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #1d2732;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}.site-header.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}.site-header.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}.site-header.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}.lang-toggle,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}.lang-toggle {
  width: 50px;
  min-height: 46px;
  border: 1px solid rgba(210, 225, 240, 0.9);
  border-radius: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}.lang-toggle:hover,
.lang-toggle:focus-visible {
  color: var(--color-blue);
  border-color: rgba(0, 114, 206, 0.24);
  background: #EAF5FF;
  outline: 0;
}.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-content: center;
  align-items: center;
  overflow: hidden;
  padding: 132px clamp(20px, 5vw, 72px) 32px;
  color: #fff;
}.page-section {
  display: none;
}.page-section.active {
  display: grid;
}body[data-page] .page-section {
  display: none !important;
}body[data-page="home"] #home,
body[data-page="about"] #about,
body[data-page="subsidiaries"] #subsidiaries,
body[data-page="services"] #services,
body[data-page="bluewhale"] #bluewhale,
body[data-page="cases"] #cases,
body[data-page="news-responsibility"] #news-responsibility,
body[data-page="contact"] #contact {
  display: grid !important;
}.section.page-section.active {
  display: grid;
  min-height: calc(100svh - 64px);
  padding-top: clamp(96px, 10vw, 126px);
}body[data-page="about"] #about,
body[data-page="subsidiaries"] #subsidiaries,
body[data-page="services"] #services,
body[data-page="bluewhale"] #bluewhale,
body[data-page="cases"] #cases,
body[data-page="news-responsibility"] #news-responsibility,
body[data-page="contact"] #contact {
  min-height: calc(100svh - 64px);
  padding-top: clamp(96px, 10vw, 126px);
}body[data-page="subsidiaries"] #subsidiaries {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: clamp(88px, 8vw, 112px);
}.case-section.page-section.active {
  display: block;
}.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}.hero-media {
  overflow: hidden;
}.hero-media img,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}.hero-media img {
  z-index: 1;
}.hero-video {
  z-index: 2;
  opacity: 0;
  transform: scale(1.16);
  transform-origin: center;
  transition: opacity 700ms ease-out;
}.hero-media.is-video-ready .hero-video {
  opacity: 1;
}.hero-shade {
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(0, 20, 40, 0.48), rgba(0, 20, 40, 0.3) 55%, rgba(0, 20, 40, 0.2)),
    linear-gradient(0deg, rgba(0, 20, 40, 0.48), transparent 38%),
    rgba(0, 20, 40, 0.1);
}.hero-content {
  position: relative;
  z-index: 4;
  width: min(920px, calc(100vw - 40px));
  justify-self: center;
  padding-bottom: clamp(26px, 5vh, 54px);
  text-align: center;
}#home .hero-content .eyebrow,
#home .hero-content h1,
#home .hero-copy,
#home .hero-actions,
#home .hero-metrics div {
  animation: homeHeroRise 680ms ease-out both;
}#home .hero-content .eyebrow {
  animation-delay: 80ms;
}#home .hero-content h1 {
  animation-delay: 210ms;
}#home .hero-copy {
  animation-delay: 340ms;
}#home .hero-actions {
  animation-delay: 470ms;
}#home .hero-metrics div:nth-child(1) {
  animation-delay: 650ms;
}#home .hero-metrics div:nth-child(2) {
  animation-delay: 780ms;
}#home .hero-metrics div:nth-child(3) {
  animation-delay: 910ms;
}#home .hero-metrics div:nth-child(4) {
  animation-delay: 1040ms;
}


@keyframes homeHeroRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}.hero .eyebrow {
  color: #9dd2ff;
}h1,
h2,
h3,
p {
  letter-spacing: 0;
}h1 {
  margin: 0;
  max-width: 940px;
  font-size: clamp(44px, 5.8vw, 76px);
  line-height: 1.04;
  font-weight: 720;
  overflow-wrap: break-word;
}.hero h1 {
  margin-right: auto;
  margin-left: auto;
}h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.04;
  font-weight: 720;
}h3 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.22;
}.hero-copy {
  width: 100%;
  max-width: 800px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  overflow-wrap: anywhere;
}.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}.primary-button,
.secondary-button {
  padding: 0 20px;
}.primary-button {
  color: #fff;
  background: var(--blue);
}.secondary-button {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}.hero-metrics {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--max), 100%);
  justify-self: center;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  text-align: center;
}.hero-metrics div {
  padding: 22px 18px 10px;
}.hero-metrics strong {
  display: block;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}.home-page {
  width: 100%;
  color: var(--ink);
  background: #fff;
}.home-hero {
  width: 100%;
}#home .home-hero {
  min-height: min(860px, 96svh);
  align-content: center;
  padding: 132px max(72px, calc((100vw - 1440px) / 2 + 80px)) 54px;
}#home .hero-media img,
#home .hero-video {
  object-position: center;
}#home .hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 35, 65, 0.80) 0%, rgba(11, 35, 65, 0.62) 38%, rgba(11, 35, 65, 0.28) 72%, rgba(11, 35, 65, 0.18) 100%),
    linear-gradient(180deg, rgba(243, 249, 255, 0.16) 0%, rgba(0, 36, 78, 0.08) 35%, rgba(0, 20, 40, 0.48) 100%);
}#home .hero-content {
  width: min(680px, 100%);
  justify-self: start;
  margin: 0;
  text-align: left;
}#home .hero h1 {
  max-width: 680px;
  margin-right: 0;
  margin-left: 0;
  font-size: clamp(60px, 5vw, 72px);
  line-height: 1.06;
  font-weight: 900;
}#home .hero-copy {
  max-width: 680px;
  margin: 26px 0 0;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.85;
}#home .hero-actions {
  justify-content: flex-start;
  gap: 14px;
  margin-top: 34px;
}#home .hero-actions .primary-button {
  background: #0072ce;
  box-shadow: 0 18px 42px rgba(0, 114, 206, 0.28);
}#home .hero-actions .primary-button:hover,
#home .hero-actions .primary-button:focus-visible {
  background: #005bb5;
}#home .hero-actions .secondary-button {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}#home .hero-metrics {
  width: min(1280px, 100%);
  margin-top: clamp(42px, 6vw, 68px);
  overflow: hidden;
  border: 1px solid rgba(205, 225, 245, 0.34);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 70px rgba(0, 20, 40, 0.18);
  backdrop-filter: blur(16px);
}#home .hero-metrics div {
  padding: 24px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}#home .hero-metrics div:last-child {
  border-right: 0;
}#home .hero-metrics strong {
  color: #fff;
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 900;
}#home .hero-metrics span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 700;
}.home-content {
  display: grid;
  gap: clamp(88px, 8vw, 120px);
  width: min(var(--max), calc(100% - 144px));
  margin: 0 auto;
  padding: clamp(88px, 8vw, 120px) 0;
}.home-section {
  display: grid;
  gap: 34px;
}.home-section-heading {
  max-width: 860px;
}.network-section .home-section-heading,
.home-showcase-heading,
.partner-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}.home-section-heading.compact {
  max-width: 720px;
}.network-section .home-section-heading h2,
.home-showcase-heading h2,
.partner-heading h2 {
  font-size: clamp(34px, 3.8vw, 46px);
  line-height: 1.12;
}.home-services-heading {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}.home-services-heading h2 {
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.12;
}.home-services-heading p:not(.eyebrow) {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}.home-section-heading p:not(.eyebrow),
.home-cta p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}.corporate-video-section {
  position: relative;
  isolation: isolate;
  justify-items: center;
  gap: clamp(32px, 3.4vw, 44px);
  padding-top: clamp(64px, 7vw, 92px);
  padding-bottom: clamp(70px, 8vw, 104px);
  overflow: hidden;
}.corporate-video-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 34%;
  width: min(86vw, 980px);
  height: min(44vw, 430px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 114, 206, 0.13), rgba(0, 114, 206, 0.05) 45%, transparent 72%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}.corporate-video-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}.corporate-video-heading h2 {
  margin-top: 12px;
  font-size: clamp(44px, 4.2vw, 56px);
  line-height: 1.12;
}.corporate-video-heading p:not(.eyebrow) {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
  line-height: 1.82;
}.corporate-video-card {
  position: relative;
  width: min(100%, 1160px);
  aspect-ratio: 16 / 9;
  height: auto;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(205, 225, 245, 0.9);
  border-radius: 24px;
  background: #061827;
  box-shadow: 0 26px 72px rgba(15, 48, 87, 0.14);
  cursor: pointer;
}.corporate-video-card img,
.corporate-video-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}.corporate-video-card img {
  display: block;
  object-fit: cover;
  transition: transform 420ms ease-out;
}.corporate-video-overlay {
  background:
    linear-gradient(180deg, rgba(3, 14, 25, 0.12), rgba(3, 14, 25, 0.34)),
    radial-gradient(circle at 50% 48%, rgba(0, 114, 206, 0.18), transparent 36%);
}.corporate-video-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(3, 14, 25, 0.3);
  transform: translate(-50%, -50%);
  transition:
    transform 220ms ease-out,
    background-color 220ms ease-out,
    box-shadow 220ms ease-out;
}.corporate-video-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 20px solid var(--blue);
  transform: translate(-38%, -50%);
}.corporate-video-label {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: clamp(38px, 6vw, 60px);
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #fff;
  background: rgba(6, 24, 39, 0.5);
  font-size: 15px;
  font-weight: 850;
  transform: translateX(-50%);
  backdrop-filter: blur(8px);
}.corporate-video-card:hover img {
  transform: scale(1.018);
}.corporate-video-card:hover .corporate-video-play {
  background: #fff;
  box-shadow: 0 22px 48px rgba(3, 14, 25, 0.34);
  transform: translate(-50%, -50%) scale(1.06);
}.corporate-video-card:focus-visible {
  outline: 3px solid rgba(0, 114, 206, 0.34);
  outline-offset: 4px;
}.network-section .home-section-heading p:not(.eyebrow),
.home-showcase-heading p:not(.eyebrow),
.partner-heading p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}.home-card-grid {
  display: grid;
  gap: 24px;
}.home-card-grid.six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}.home-card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}.home-card-grid article {
  min-height: 224px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 32px;
  border: 1px solid rgba(205, 225, 245, 0.9);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(0, 114, 206, 0.08), rgba(255, 255, 255, 0.92)),
    #fff;
  box-shadow: 0 16px 45px rgba(15, 48, 87, 0.06);
  transition:
    transform 240ms ease-out,
    border-color 240ms ease-out,
    background-color 240ms ease-out,
    box-shadow 240ms ease-out;
}.home-card-grid.six article {
  min-height: 258px;
}.home-card-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 114, 206, 0.28);
  background: #fff;
  box-shadow: 0 24px 65px rgba(15, 48, 87, 0.12);
}.home-card-grid span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}.service-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 114, 206, 0.16);
  border-radius: 16px;
  color: var(--blue);
  background:
    linear-gradient(145deg, rgba(0, 114, 206, 0.13), rgba(255, 255, 255, 0.9)),
    #f2f8ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}.service-icon svg {
  width: 34px;
  height: 34px;
}.service-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}.home-card-grid.six article:hover .service-icon {
  border-color: rgba(0, 114, 206, 0.34);
  background: #fff;
}.home-card-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.25;
}.home-card-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}.home-services-section {
  position: relative;
  isolation: isolate;
  gap: 30px;
  padding: clamp(76px, 8vw, 108px) clamp(32px, 5vw, 72px);
  overflow: hidden;
  border-radius: 0;
  background:
    radial-gradient(circle at 16% 12%, rgba(0, 114, 206, 0.10), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(0, 91, 181, 0.07), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 54%, #ffffff 100%);
}.home-services-section::before {
  content: "";
  position: absolute;
  inset: 22px clamp(16px, 4vw, 58px) auto;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 114, 206, 0.24), transparent);
}.home-services-heading {
  position: relative;
  z-index: 1;
}.home-service-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 20px);
  align-items: start;
  margin-top: 12px;
  padding: 18px 0 8px;
}.home-service-flow::before {
  content: "";
  position: absolute;
  top: 51px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 114, 206, 0.12), rgba(0, 114, 206, 0.46), rgba(0, 114, 206, 0.12));
}.home-service-flow-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 10px;
  min-width: 0;
  text-align: center;
}.home-service-flow-step:not(:last-child)::after {
  content: ">";
  position: absolute;
  top: 16px;
  right: -14px;
  color: rgba(0, 114, 206, 0.56);
  font-size: 14px;
  font-weight: 850;
}.home-service-flow-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(190, 220, 245, 0.92);
  border-radius: 50%;
  color: var(--blue);
  background: linear-gradient(180deg, #ffffff, #eaf5ff);
  box-shadow: 0 10px 24px rgba(0, 114, 206, 0.13);
}.home-service-flow-icon svg {
  width: 28px;
  height: 28px;
}.home-service-flow-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}.home-service-flow-step h3 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 850;
}.home-service-flow-step p {
  max-width: 140px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}.service-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
  margin-top: 4px;
}.service-focus-card {
  position: relative;
  min-height: 0;
  padding: 8px 26px 22px 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}.service-focus-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 26px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 114, 206, 0.42), rgba(0, 114, 206, 0.08), transparent);
  opacity: 0.9;
}.service-focus-card:hover {
  transform: translateY(-3px);
  box-shadow: none;
}.service-focus-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(0, 114, 206, 0.10);
  font-size: 13px;
  font-weight: 850;
}.service-focus-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(21px, 1.8vw, 25px);
  line-height: 1.28;
}.service-focus-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}@media (max-width: 1100px) {.home-service-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 24px;
  }.home-service-flow::before,
.home-service-flow-step::after {
    display: none;
  }.service-focus-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }.service-focus-card {
    padding: 8px 18px 22px 0;
  }
}@media (max-width: 760px) {.home-services-section {
    gap: 24px;
    padding: 64px 20px;
  }.home-service-flow {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 18px 18px;
    border-radius: 16px;
  }.home-service-flow-step {
    grid-template-columns: 48px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    gap: 10px 14px;
    padding: 14px 0;
    text-align: left;
  }.home-service-flow-step:not(:last-child) {
    border-bottom: 1px solid rgba(205, 225, 245, 0.72);
  }.home-service-flow-icon {
    width: 44px;
    height: 44px;
    grid-row: span 2;
  }.home-service-flow-icon svg {
    width: 24px;
    height: 24px;
  }.home-service-flow-step h3,
.home-service-flow-step p {
    max-width: none;
  }.home-service-flow-step h3 {
    font-size: 17px;
  }.service-focus-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }.service-focus-card {
    min-height: 0;
    padding: 6px 0 22px;
  }
}.network-section {
  gap: 30px;
}.network-toggle {
  width: fit-content;
  display: inline-flex;
  justify-self: center;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(0, 114, 206, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(13, 47, 82, 0.08);
}.network-toggle button {
  min-height: 38px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  transition:
    color 220ms ease-out,
    background-color 220ms ease-out,
    box-shadow 220ms ease-out;
}.network-toggle button.active {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 22px rgba(0, 114, 206, 0.24);
}.network-toggle button:focus-visible {
  outline: 3px solid rgba(0, 114, 206, 0.25);
  outline-offset: 3px;
}.network-map-stack {
  display: grid;
}.network-map-card {
  position: relative;
  grid-area: 1 / 1 / 2 / 2;
  min-height: clamp(520px, 48vw, 650px);
  overflow: hidden;
  border: 1px solid rgba(0, 114, 206, 0.22);
  border-radius: 8px;
  background: #061827;
  box-shadow: 0 16px 38px rgba(8, 35, 61, 0.14);
  contain: layout paint;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 260ms ease-out,
    visibility 260ms ease-out;
}.network-map-card.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}.static-map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(48, 160, 255, 0.16), transparent 38%),
    linear-gradient(to bottom, rgba(3, 14, 25, 0.02), transparent 46%, rgba(3, 14, 25, 0.24)),
    linear-gradient(to top, rgba(3, 14, 25, 0.26), transparent 36%);
  pointer-events: none;
}.network-static-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}.network-tags {
  position: absolute;
  z-index: 4;
  left: 26px;
  right: 26px;
  bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}.network-tags span {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(117, 195, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 700;
}.home-showcase-section {
  gap: 30px;
}.home-showcase-heading {
  max-width: 760px;
}.showcase-carousel {
  position: relative;
  min-width: 0;
}.showcase-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 2px 18px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}.showcase-track::-webkit-scrollbar {
  display: none;
}.showcase-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}.showcase-track.is-auto-running,
.partner-track.is-auto-running {
  scroll-snap-type: none;
}.showcase-card {
  flex: 0 0 clamp(340px, 30vw, 420px);
  height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(205, 225, 245, 0.9);
  border-radius: 22px;
  background: #f5f8fb;
  box-shadow: 0 16px 45px rgba(15, 48, 87, 0.08);
  scroll-snap-align: start;
  transition:
    transform 240ms ease-out,
    border-color 240ms ease-out,
    box-shadow 240ms ease-out;
}.showcase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 114, 206, 0.28);
  box-shadow: 0 24px 65px rgba(15, 48, 87, 0.13);
}.showcase-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease-out;
}.showcase-card:hover img {
  transform: scale(1.03);
}.showcase-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 114, 206, 0.18);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(13, 47, 82, 0.14);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    transform 200ms ease-out,
    background-color 200ms ease-out,
    border-color 200ms ease-out,
    box-shadow 200ms ease-out;
}.showcase-arrow:hover {
  border-color: rgba(0, 114, 206, 0.44);
  background: #eef7ff;
  box-shadow: 0 16px 34px rgba(13, 47, 82, 0.18);
  transform: translateY(-50%) scale(1.04);
}.showcase-arrow-prev {
  left: -14px;
}.showcase-arrow-next {
  right: -14px;
}.partner-section {
  gap: 30px;
  padding: clamp(56px, 6vw, 78px) clamp(28px, 5vw, 56px);
  border: 1px solid rgba(205, 225, 245, 0.9);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 114, 206, 0.06), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  box-shadow: 0 18px 50px rgba(15, 48, 87, 0.06);
}.partner-heading {
  max-width: 820px;
}.partner-carousel {
  position: relative;
  min-width: 0;
}.partner-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 2px 18px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}.partner-track::-webkit-scrollbar {
  display: none;
}.partner-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}.partner-card {
  flex: 0 0 clamp(188px, 16vw, 228px);
  height: 128px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 26px;
  border: 1px solid rgba(205, 225, 245, 0.9);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 48, 87, 0.06);
  scroll-snap-align: start;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}.partner-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 114, 206, 0.28);
  background: #fff;
  box-shadow: 0 22px 52px rgba(15, 48, 87, 0.12);
}.partner-card img {
  display: block;
  width: 100%;
  max-width: 168px;
  height: 74px;
  object-fit: contain;
}.home-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 680ms ease-out,
    transform 680ms ease-out;
}.home-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}.home-cta {
  justify-items: center;
  padding: clamp(52px, 6vw, 76px);
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 114, 206, 0.32), transparent 32%),
    linear-gradient(135deg, #0b2341 0%, #005bb5 100%);
  text-align: center;
  box-shadow: 0 24px 70px rgba(15, 48, 87, 0.16);
}.home-cta h2 {
  max-width: 900px;
}.home-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}.home-cta .secondary-button {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
}.video-modal {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 14, 25, 0.76);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease-out;
}.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}.video-modal-panel {
  position: relative;
  width: min(1060px, 90vw);
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: #061827;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.42);
  transform: translateY(14px) scale(0.98);
  transition: transform 220ms ease-out;
}.video-modal.is-open .video-modal-panel {
  transform: translateY(0) scale(1);
}.video-modal-player {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: #000;
}.video-modal-error {
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: min(520px, calc(100% - 40px));
  margin: 0;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  background: rgba(6, 24, 39, 0.78);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  transform: translateX(-50%);
  backdrop-filter: blur(8px);
}.video-modal-error[hidden] {
  display: none;
}.video-modal-close {
  position: absolute;
  z-index: 2;
  top: -18px;
  right: -18px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: #fff;
  background: rgba(6, 24, 39, 0.92);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}.video-modal-close:hover,
.video-modal-close:focus-visible {
  background: var(--blue);
}body.video-modal-open {
  overflow: hidden;
}.section {
  width: min(var(--max), calc(100% - 144px));
  margin: 0 auto;
  padding: clamp(88px, 8vw, 120px) 0;
}.section-copy h2,
.section-heading h2,
.home-section-heading h2,
.business-heading h2,
.subsidiaries-heading h2,
.company-intro-content h3,
.company-intro-detail h3,
.bluewhale-hero h2,
.case-section .section-heading h2,
.business-core-heading h3,
.business-why-heading h3 {
  color: var(--color-navy);
  font-weight: 850;
  line-height: 1.15;
}.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.home-section-heading p:not(.eyebrow),
.business-heading > p:not(.eyebrow),
.subsidiaries-heading p:not(.eyebrow),
.company-intro-copy,
.company-intro-detail p:not(.eyebrow):not(.company-intro-subtitle),
.case-section .section-heading p:not(.eyebrow),
.business-core-heading p:not(.eyebrow),
.business-why-heading p {
  color: var(--color-text);
  line-height: 1.8;
}.home-card-grid article,
.showcase-card,
.partner-card,
.challenge-list article,
.service-card,
.journey-step,
.proof-grid article,
.case-card,
.client-case-card,
.role-list article,
.business-entry-card,
.business-detail-card,
.company-stat-grid article,
.company-principle-grid article,
.value-grid article,
.capability-grid article,
.honor-card,
.honor-overview,
.honor-display-card,
.branch-grid article,
.business-modern-card,
.business-why-grid article {
  background-color: #fff;
  border-color: var(--color-card-border);
  border-radius: clamp(22px, 1.9vw, 28px);
  box-shadow: var(--card-shadow);
}.home-card-grid article,
.showcase-card,
.partner-card,
.challenge-list article,
.service-card,
.journey-step,
.proof-grid article,
.case-card,
.client-case-card,
.role-list article,
.business-entry-card,
.business-detail-card,
.company-stat-grid article,
.company-principle-grid article,
.value-grid article,
.capability-grid article,
.honor-card,
.honor-overview,
.honor-display-card,
.branch-grid article,
.business-modern-card,
.business-why-grid article {
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease,
    background-color 200ms ease;
}.home-card-grid article:hover,
.showcase-card:hover,
.partner-card:hover,
.challenge-list article:hover,
.service-card:hover,
.journey-step:hover,
.proof-grid article:hover,
.case-card:hover,
.client-case-card:hover,
.role-list article:hover,
.business-entry-card:hover,
.business-detail-card:hover,
.company-stat-grid article:hover,
.company-principle-grid article:hover,
.value-grid article:hover,
.capability-grid article:hover,
.honor-card:hover,
.honor-overview:hover,
.honor-display-card:hover,
.branch-grid article:hover,
.business-modern-card:hover,
.business-modern-card:focus-visible,
.business-why-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 114, 206, 0.28);
  box-shadow: var(--card-shadow-hover);
}.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 8vw, 96px);
  align-items: start;
}.services-section {
  display: block;
}.business-heading {
  max-width: 840px;
  margin: 0 auto 36px;
  text-align: center;
}.business-heading h2 {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
  white-space: pre-line;
  word-break: keep-all;
  overflow-wrap: break-word;
}.business-heading > p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}.business-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}.business-card-grid.service-entry-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}.business-entry-card {
  position: relative;
  min-width: 0;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 22px;
  border: 1px solid rgba(209, 220, 231, 0.92);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(0, 114, 206, 0.07), rgba(255, 255, 255, 0) 48%),
    #fff;
  box-shadow: 0 14px 32px rgba(13, 47, 82, 0.07);
  transition:
    transform 240ms ease-out,
    border-color 240ms ease-out,
    box-shadow 240ms ease-out,
    background-color 240ms ease-out;
}.business-entry-visual {
  width: 82%;
  height: clamp(120px, 10vw, 150px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}.business-entry-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform 260ms ease-out;
}.business-entry-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue);
  background-color: #f4f9ff;
  box-shadow: 0 20px 44px rgba(13, 47, 82, 0.12);
}.business-entry-card:hover .business-entry-visual img {
  transform: scale(1.03);
}.business-entry-card h3 {
  margin: 0;
  color: #10263a;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.32;
  letter-spacing: 0;
  text-align: center;
}.business-entry-card p {
  width: fit-content;
  margin: 12px auto 18px;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(0, 114, 206, 0.1);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
}.business-entry-card a {
  align-self: flex-end;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}.business-entry-card a::after {
  content: "â†’";
  transition: transform 240ms ease-out;
}.business-entry-card:hover a::after {
  transform: translateX(5px);
}.business-list-view.is-hidden {
  display: none;
}.business-heading.is-hidden {
  display: none;
}.business-detail-sections {
  display: block;
  margin-top: 0;
}.business-detail-card {
  scroll-margin-top: 96px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff 0%, #f7fbff 100%);
}.business-detail-card .eyebrow {
  margin-bottom: 14px;
}.service-detail-view {
  display: none;
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto;
}.service-detail-view.active {
  display: block;
}.service-detail-view > .eyebrow {
  display: none;
}.service-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}.service-back-link::before {
  content: "\2190";
}.service-detail-tag {
  display: inline-flex;
  width: fit-content;
  margin-top: 16px;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(0, 114, 206, 0.1);
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
}.business-detail-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.18;
}.business-detail-card p:not(.eyebrow) {
  max-width: 820px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}.business-detail-card {
  padding: clamp(30px, 5vw, 52px);
}.customs-detail-content,
.business-detail-content {
  max-width: 900px;
  margin: 0 auto;
}.business-detail-card .business-detail-subtitle {
  max-width: 760px;
  margin-top: 14px;
  color: #3f5f7c;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.7;
}.business-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}.business-detail-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(0, 114, 206, 0.18);
  border-radius: 999px;
  background: #edf6ff;
  color: var(--blue);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.3;
}.business-detail-copy {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}.business-detail-card .business-detail-copy p {
  max-width: 900px;
  margin: 0;
  color: #536273;
  font-size: 17px;
  line-height: 1.9;
}.customs-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 38%);
  gap: 30px;
  align-items: start;
  margin-top: 28px;
}.customs-detail-layout .business-detail-copy {
  margin-top: 0;
}.customs-operation-figure {
  margin: 0;
}.customs-operation-figure h4 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
}.customs-operation-figure img {
  display: block;
  width: 100%;
  height: clamp(260px, 26vw, 320px);
  border: 1px solid rgba(0, 114, 206, 0.14);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(23, 55, 90, 0.12);
  object-fit: cover;
}.customs-operation-figure figcaption {
  margin-top: 10px;
  color: #708196;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}@media (max-width: 860px) {.customs-detail-layout {
    grid-template-columns: 1fr;
  }.customs-operation-figure img {
    height: clamp(230px, 54vw, 320px);
  }
}html[lang="en"] .business-heading h2 {
  font-size: clamp(42px, 4.6vw, 56px);
  line-height: 1.12;
}.split-section.about-empty-state {
  position: relative;
  grid-template-columns: minmax(0, 800px);
  justify-content: center;
  align-content: center;
  align-items: center;
  overflow: hidden;
}.split-section.about-empty-state .section-copy {
  position: static;
  z-index: 1;
  width: min(100%, 760px);
  max-width: 760px;
  text-align: center;
  transform: translateY(-2svh);
}.split-section.about-empty-state::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: min(1040px, 84vw);
  aspect-ratio: 1290 / 970;
  top: 46%;
  left: 50%;
  border-radius: 8px;
  background: url("./assets/about-brand-visual.svg") center / contain no-repeat;
  opacity: 0.46;
  filter: saturate(1.02);
  pointer-events: none;
  transform: translate(-50%, -50%);
}.split-section.about-empty-state::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: min(1040px, 84vw);
  aspect-ratio: 1290 / 970;
  top: 46%;
  left: 50%;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.76) 34%, rgba(255, 255, 255, 0.5) 62%, rgba(255, 255, 255, 0.2));
  pointer-events: none;
  transform: translate(-50%, -50%);
}.split-section.about-empty-state .eyebrow {
  margin-bottom: 22px;
  text-align: center;
}.split-section.about-empty-state [data-about-title] {
  max-width: 600px;
  margin: 0 auto;
  font-size: clamp(44px, 3.7vw, 48px);
  line-height: 1.15;
  font-weight: 720;
  letter-spacing: 0;
  white-space: pre;
  word-break: keep-all;
  overflow-wrap: normal;
}.about-lead {
  max-width: 420px;
  margin: 20px 0 0;
  color: #718092;
  font-size: 16px;
  line-height: 1.62;
  font-weight: 500;
}.split-section.about-empty-state .about-lead {
  max-width: 520px;
  margin: 20px auto 0;
}.split-section.about-empty-state .about-panel {
  display: none;
}#about:not(.about-empty-state) {
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 70px);
}#about:not(.about-empty-state) .section-copy {
  max-width: 480px;
  min-width: 0;
}#about:not(.about-empty-state) [data-about-title] {
  max-width: 480px;
  font-size: clamp(44px, 3vw, 46px);
  line-height: 1.15;
  letter-spacing: 0;
  white-space: pre;
  word-break: keep-all;
  overflow-wrap: normal;
}#about:not(.about-empty-state) .about-lead {
  max-width: 420px;
  margin-top: 20px;
}#about:not(.about-empty-state) .about-panel {
  width: 100%;
  min-width: 0;
  padding-right: 4px;
}body[data-page="about"] #about.about-profile-state {
  display: block !important;
  width: 100%;
  max-width: none;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}body[data-page="about"] #about.about-profile-state > .section-copy {
  display: none;
}body[data-page="about"] #about.about-profile-state .about-panel {
  width: 100%;
  max-width: none;
  max-height: none;
  margin: 0 auto;
  overflow: visible;
  padding-top: 82px;
  padding-right: 0;
}body[data-page="about"] #about.about-profile-state .about-subpage[data-about-panel="intro"].active {
  display: block;
}body[data-page="about"] #about.about-wide-state {
  display: block !important;
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}body[data-page="about"] #about.about-wide-state > .section-copy {
  display: none;
}body[data-page="about"] #about.about-wide-state .about-panel {
  width: 100%;
  max-width: none;
  max-height: none;
  margin: 0 auto;
  overflow: visible;
  padding-right: 0;
}body[data-page="about"] #about.about-wide-state .about-subpage.active {
  display: block;
  width: min(100%, 1200px);
  margin: 0 auto;
}body[data-page="about"] #about.about-wide-state .history-timeline,
body[data-page="about"] #about.about-wide-state .honor-showcase {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}body[data-page="about"] #about.about-wide-state .subsidiary-directory {
  width: 100%;
  max-width: 1200px;
}body[data-page="about"] #about.about-wide-state .subsidiary-detail-view.active {
  width: min(100%, 1120px);
  margin-left: auto;
  margin-right: auto;
}body[data-page="about"] #about.about-wide-state .history-timeline h3,
body[data-page="about"] #about.about-wide-state .subsidiary-directory-heading,
body[data-page="about"] #about.about-wide-state .honor-overview {
  text-align: center;
}.section-copy {
  position: sticky;
  top: 110px;
}.challenge-list {
  display: grid;
  gap: 16px;
}.challenge-list article,
.service-card,
.journey-step,
.proof-grid article,
.case-card,
.role-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}.challenge-list article {
  padding: 28px;
}.challenge-list span,
.journey-step span {
  display: block;
  margin-bottom: 40px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}.challenge-list p,
.journey-step p,
.service-card p,
.business-summary p,
.platform-copy p,
.proof-copy p,
.lead-copy,
.case-card p,
.role-list p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}.lead-copy {
  margin: 0 0 28px;
  font-size: 18px;
}.about-stack {
  min-width: 0;
}.about-panel {
  min-width: 0;
  max-height: calc(100svh - 150px);
  overflow-y: auto;
  padding-right: 8px;
}.about-subpage {
  display: none;
}.about-subpage.active {
  display: block;
  animation: aboutPanelIn 220ms ease both;
}

@keyframes aboutPanelIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}.company-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: clamp(60px, 5vw, 82px);
  width: 100vw;
  min-height: max(760px, calc(100svh - 64px));
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(92px, 9vw, 128px) max(32px, calc((100vw - 1400px) / 2 + 32px)) clamp(64px, 7vw, 92px);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 12%, rgba(0, 114, 206, 0.16), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(45, 143, 111, 0.1), transparent 28%),
    linear-gradient(135deg, #f8fbff 0%, #eef6ff 44%, #ffffff 100%);
}.company-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 114, 206, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 114, 206, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(115deg, transparent 0%, rgba(0, 0, 0, 0.22) 36%, rgba(0, 0, 0, 0.16) 70%, transparent 100%);
  pointer-events: none;
}.company-intro::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -70px;
  width: min(760px, 54vw);
  height: 360px;
  background: radial-gradient(circle, rgba(0, 114, 206, 0.18) 1.5px, transparent 2px);
  background-size: 18px 18px;
  opacity: 0.5;
  pointer-events: none;
}.company-intro-media,
.company-intro-content {
  position: relative;
  z-index: 1;
}.company-intro-media {
  min-height: clamp(580px, 48vw, 680px);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 32px 80px rgba(13, 47, 82, 0.22);
  animation: aboutImageIn 520ms ease both;
}.company-intro-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 37, 78, 0.08), rgba(5, 37, 78, 0.36)),
    linear-gradient(135deg, rgba(0, 114, 206, 0.36), rgba(0, 114, 206, 0.04) 56%, rgba(8, 33, 64, 0.3));
}.company-intro-media img {
  width: 100%;
  height: 100%;
  min-height: clamp(580px, 48vw, 680px);
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.95) contrast(1.02);
}.company-intro-overlay {
  position: absolute;
  z-index: 2;
  left: clamp(22px, 3vw, 34px);
  right: clamp(22px, 3vw, 34px);
  bottom: clamp(24px, 3vw, 36px);
  color: #fff;
}.company-intro-overlay span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
}.company-intro-overlay p {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.78;
  font-weight: 600;
}.company-intro-content {
  align-self: center;
  min-width: 0;
}.company-intro-content .eyebrow {
  margin-bottom: 16px;
  color: var(--blue);
}.company-intro-content h3 {
  margin: 0;
  color: #10243a;
  font-size: clamp(44px, 3.8vw, 62px);
  line-height: 1.08;
  font-weight: 780;
  letter-spacing: 0;
}.company-intro-subtitle {
  margin: 8px 0 22px;
  color: #7b8796;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}.company-intro-copy {
  max-width: 760px;
  margin: 0;
  color: #405063;
  font-size: 17px;
  line-height: 1.88;
}.company-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.7vw, 24px);
  margin-top: 34px;
}.company-stat-grid article,
.company-principle-grid article {
  border: 1px solid rgba(0, 114, 206, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(13, 47, 82, 0.08);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}.company-stat-grid article {
  min-width: 0;
  min-height: 136px;
  padding: 26px 20px;
}.company-stat-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(13, 47, 82, 0.16);
}.company-stat-grid strong {
  display: block;
  color: var(--blue);
  font-size: clamp(28px, 2.3vw, 40px);
  line-height: 1;
  font-weight: 820;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: normal;
}.company-stat-grid article:nth-child(4) strong {
  font-size: clamp(26px, 2vw, 36px);
}.company-stat-grid span {
  display: block;
  margin-top: 16px;
  color: #314255;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 680;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}.company-principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}.company-principle-grid article {
  min-width: 0;
  min-height: 170px;
  padding: 24px;
}.company-principle-grid article:hover {
  border-color: rgba(0, 114, 206, 0.72);
  box-shadow: 0 18px 42px rgba(13, 47, 82, 0.13);
  transform: translateY(-2px);
}.company-principle-grid span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--blue);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}.company-principle-grid span::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px rgba(0, 114, 206, 0.12);
}.company-principle-grid p {
  margin: 12px 0 0;
  color: #33465a;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}.subsidiaries-section {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  align-content: start;
  padding-left: clamp(24px, 4vw, 56px);
  padding-right: clamp(24px, 4vw, 56px);
  background:
    radial-gradient(circle at 14% 12%, rgba(0, 114, 206, 0.12), transparent 30%),
    radial-gradient(circle at 84% 16%, rgba(45, 143, 111, 0.1), transparent 28%),
    linear-gradient(135deg, #f8fbff 0%, #edf6ff 42%, #ffffff 100%);
}.subsidiaries-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(0, 114, 206, 0.16) 1.4px, transparent 1.8px),
    linear-gradient(120deg, transparent 0 46%, rgba(0, 114, 206, 0.12) 46.2%, transparent 47%, transparent 62%, rgba(0, 114, 206, 0.08) 62.2%, transparent 63%);
  background-size:
    22px 22px,
    100% 100%;
  opacity: 0.42;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 78%);
  pointer-events: none;
}.subsidiaries-heading,
.subsidiaries-card-grid {
  position: relative;
  z-index: 1;
  width: min(100%, 1360px);
  margin-left: auto;
  margin-right: auto;
}.subsidiaries-heading {
  min-height: clamp(300px, 34vw, 420px);
  display: grid;
  align-content: center;
  margin-bottom: 0;
  text-align: center;
}.subsidiaries-heading .eyebrow {
  justify-content: center;
  margin-bottom: 14px;
  color: var(--blue);
}.subsidiaries-heading h2 {
  margin: 0;
  color: #10243a;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.08;
}.subsidiaries-heading p:not(.eyebrow) {
  max-width: 780px;
  margin: 18px auto 0;
  color: #536579;
  font-size: 16px;
  line-height: 1.76;
  font-weight: 540;
}.subsidiary-full-list {
  position: relative;
  z-index: 1;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}.subsidiary-full-section {
  position: relative;
  min-height: max(760px, 100svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(72px, 8vw, 110px) clamp(28px, 5vw, 72px);
  background:
    radial-gradient(circle at 82% 16%, rgba(0, 114, 206, 0.12), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f3f9ff 100%);
}.subsidiary-full-section:nth-child(even) {
  background:
    radial-gradient(circle at 12% 20%, rgba(45, 143, 111, 0.1), transparent 26%),
    linear-gradient(135deg, #edf6ff 0%, #ffffff 72%);
}.subsidiary-full-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(0, 114, 206, 0.13) 1.4px, transparent 1.8px),
    linear-gradient(115deg, transparent 0 48%, rgba(0, 114, 206, 0.11) 48.2%, transparent 49%, transparent 64%, rgba(0, 114, 206, 0.08) 64.2%, transparent 65%);
  background-size:
    24px 24px,
    100% 100%;
  opacity: 0.32;
  pointer-events: none;
}.subsidiary-full-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1400px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: clamp(52px, 6vw, 86px);
  align-items: center;
}.subsidiary-full-section.is-reverse .subsidiary-full-image {
  order: 2;
}.subsidiary-full-image {
  position: relative;
  min-height: clamp(500px, 42vw, 660px);
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 30px 76px rgba(13, 47, 82, 0.2);
  animation: aboutImageIn 560ms ease both;
}.subsidiary-full-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 37, 78, 0.08), rgba(5, 37, 78, 0.34)),
    linear-gradient(135deg, rgba(0, 114, 206, 0.46), transparent 58%);
}.subsidiary-full-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.04);
}.subsidiary-full-image figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 24px;
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}.subsidiary-full-content {
  min-width: 0;
  animation: aboutPanelIn 420ms ease both;
}.subsidiary-full-content .eyebrow {
  margin-bottom: 16px;
  color: var(--blue);
}.subsidiary-full-content h3 {
  max-width: 780px;
  margin: 0;
  color: #10243a;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.12;
}.subsidiary-full-en {
  margin: 12px 0 0;
  color: #7b8796;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
}.subsidiary-full-position {
  margin: 22px 0 0;
  color: var(--blue);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.42;
  font-weight: 780;
}.subsidiary-full-copy {
  max-width: 780px;
  margin: 18px 0 0;
  color: #405063;
  font-size: 16px;
  line-height: 1.86;
}.subsidiary-full-content .subsidiary-card-tags {
  margin-top: 24px;
}.subsidiary-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}.subsidiary-highlight-grid span {
  min-width: 0;
  min-height: 96px;
  display: flex;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(0, 114, 206, 0.14);
  border-radius: 8px;
  color: #2d4054;
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.52;
  font-weight: 650;
  overflow-wrap: break-word;
}.subsidiaries-card-grid {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}.subsidiary-overview-card {
  min-height: 380px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(0, 114, 206, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 38px rgba(13, 47, 82, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}.subsidiary-overview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 114, 206, 0.56);
  box-shadow: 0 24px 54px rgba(13, 47, 82, 0.15);
}.subsidiary-card-icon {
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(0, 114, 206, 0.2);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 114, 206, 0.12), rgba(255, 255, 255, 0.84));
}.subsidiary-card-icon::before,
.subsidiary-card-icon::after {
  content: "";
  position: absolute;
  inset: 11px;
  border: 2px solid var(--blue);
}.subsidiary-card-icon.is-logistics::before {
  border-radius: 50%;
}.subsidiary-card-icon.is-logistics::after {
  inset: 22px 9px auto;
  height: 2px;
  border: 0;
  background: var(--blue);
  transform: rotate(-22deg);
}.subsidiary-card-icon.is-trade::before {
  border-radius: 4px;
}.subsidiary-card-icon.is-trade::after {
  inset: 18px 15px 12px;
  border-width: 0 0 2px 0;
}.subsidiary-card-icon.is-customs::before {
  inset: 12px 13px;
  border-radius: 2px;
}.subsidiary-card-icon.is-customs::after {
  inset: auto 11px 10px;
  height: 7px;
  border-radius: 999px;
  border-width: 2px;
}.subsidiary-card-icon.is-transport::before {
  inset: 18px 9px 13px;
  border-radius: 4px;
}.subsidiary-card-icon.is-transport::after {
  inset: auto 13px 9px;
  border-width: 0 0 2px 0;
  box-shadow:
    -7px 0 0 -1px var(--blue),
    13px 0 0 -1px var(--blue);
}.subsidiary-card-icon.is-software::before {
  border-radius: 5px;
}.subsidiary-card-icon.is-software::after {
  inset: 18px 15px;
  border-width: 2px 0 0;
}.subsidiary-card-icon.is-ai::before {
  inset: 13px;
  border-radius: 4px;
}.subsidiary-card-icon.is-ai::after {
  inset: 8px;
  border-width: 0;
  background:
    linear-gradient(var(--blue), var(--blue)) 50% 0 / 2px 8px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 50% 100% / 2px 8px no-repeat,
    linear-gradient(90deg, var(--blue), var(--blue)) 0 50% / 8px 2px no-repeat,
    linear-gradient(90deg, var(--blue), var(--blue)) 100% 50% / 8px 2px no-repeat;
}.subsidiary-card-icon.is-network::before {
  border-radius: 50%;
}.subsidiary-card-icon.is-network::after {
  inset: 15px;
  border-radius: 50%;
  box-shadow:
    -11px 8px 0 -4px var(--blue),
    12px -6px 0 -4px var(--blue);
}.subsidiary-overview-card h3 {
  margin: 2px 0 0;
  color: #10243a;
  font-size: 20px;
  line-height: 1.32;
}.subsidiary-card-position {
  margin: 0;
  color: var(--blue);
  font-size: 14px;
  line-height: 1.48;
  font-weight: 760;
}.subsidiary-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}.subsidiary-card-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  color: #31506d;
  background: rgba(0, 114, 206, 0.1);
  font-size: 12px;
  font-weight: 650;
}.subsidiary-overview-card > p:last-child {
  margin: 0;
  color: #536171;
  font-size: 14px;
  line-height: 1.72;
}

@keyframes aboutImageIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}.about-profile-container {
  width: min(100%, 1480px);
  max-width: calc(100vw - 96px);
  margin: 0 auto;
  padding: 56px 24px 86px;
  display: grid;
  grid-template-columns: minmax(520px, 0.95fr) minmax(560px, 1fr);
  gap: clamp(48px, 4vw, 72px);
  align-items: center;
}.about-profile-images {
  min-width: 0;
}.about-profile-images img {
  width: 100%;
  height: clamp(560px, 58vw, 720px);
  border-radius: 4px;
  object-fit: cover;
  object-position: center center;
  box-shadow: 0 24px 64px rgba(12, 30, 54, 0.12);
}.about-profile-copy {
  width: 100%;
  min-width: 0;
  display: grid;
  gap: 28px;
  align-content: center;
}.about-profile-copy h3 {
  max-width: 760px;
  margin: 0;
  color: var(--blue);
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1.15;
  font-weight: 780;
  letter-spacing: 0;
  white-space: normal;
}.about-profile-copy p {
  max-width: 760px;
  margin: 0;
  color: #303943;
  font-size: 18px;
  line-height: 1.92;
}.history-timeline {
  width: min(100%, 1200px);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}.history-timeline h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
}.stage-timeline {
  position: relative;
  display: grid;
  gap: 14px;
  padding-left: 30px;
}.stage-timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 8px;
  width: 1px;
  background: rgba(11, 15, 20, 0.14);
}.stage-item {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}.stage-item::before {
  content: "";
  position: absolute;
  top: 28px;
  left: -29px;
  width: 13px;
  height: 13px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: rgba(11, 15, 20, 0.22);
  box-shadow: 0 0 0 1px rgba(11, 15, 20, 0.12);
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease;
}.stage-item:hover,
.stage-item.active {
  transform: translateY(-4px);
  border-color: var(--blue);
  background: #eef7ff;
  box-shadow: 0 16px 34px rgba(13, 47, 82, 0.08);
}.stage-item:hover::before,
.stage-item.active::before {
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(0, 114, 206, 0.14);
}.stage-item button {
  width: 100%;
  display: grid;
  gap: 8px;
  border: 0;
  padding: 22px 24px;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}.stage-years {
  color: var(--blue);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
}.stage-title {
  color: var(--ink);
  font-size: clamp(21px, 2.5vw, 28px);
  font-weight: 800;
  line-height: 1.2;
}.stage-copy {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}.stage-events {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  opacity: 0;
  transition:
    max-height 220ms ease,
    padding 220ms ease,
    opacity 160ms ease;
}.stage-item:hover .stage-events,
.stage-item.active .stage-events {
  max-height: 760px;
  padding: 0 24px 28px;
  opacity: 1;
}.stage-events p {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid rgba(0, 114, 206, 0.14);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}.stage-events strong {
  color: var(--blue);
  font-size: 15px;
}.stage-events b {
  color: var(--ink);
  font-weight: 750;
}.value-grid,
.capability-grid,
.honor-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}.value-grid {
  margin-top: 24px;
}.capability-grid,
.honor-layout {
  margin-top: 14px;
}.value-grid article,
.capability-grid article,
.honor-card,
.timeline-grid article,
.branch-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}.value-grid article,
.capability-grid article,
.honor-card {
  padding: 22px;
}.honor-showcase {
  width: min(100%, 1200px);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}.honor-overview,
.honor-display-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}.honor-overview {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(0, 114, 206, 0.12), transparent 52%),
    #fff;
}.honor-overview h3,
.honor-display-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.18;
}.honor-overview p,
.honor-display-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}.honor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}.honor-tags span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: #17334d;
  background: #eaf4ff;
  font-size: 13px;
  font-weight: 750;
}.honor-display-card {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 26px);
}.honor-display-copy {
  display: grid;
  gap: 10px;
}.honor-display-copy > span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}.honor-image-link {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fafc;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}.honor-image-link:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: 0 18px 38px rgba(13, 47, 82, 0.14);
}.honor-image-link img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: contain;
  transition: transform 220ms ease;
}.honor-image-link:hover img {
  transform: scale(1.025);
}.company-honors-section {
  grid-column: 1 / -1;
  scroll-margin-top: 96px;
  margin-top: clamp(72px, 8vw, 112px);
  padding: clamp(84px, 8vw, 118px) clamp(24px, 5vw, 72px);
  background:
    radial-gradient(circle at 12% 6%, rgba(0, 114, 206, 0.10), transparent 32%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 62%, #ffffff 100%);
}.company-honors-section .honor-showcase {
  width: min(100%, 1320px);
  max-width: 1320px;
  gap: clamp(24px, 3vw, 34px);
}.company-honors-section .honor-overview {
  padding: clamp(30px, 4vw, 46px);
  box-shadow: 0 18px 46px rgba(13, 47, 82, 0.08);
}.company-honors-section .honor-overview h3 {
  font-size: clamp(30px, 3vw, 44px);
}.company-honors-section .honor-overview p {
  max-width: 920px;
  line-height: 1.86;
}.company-honors-section .honor-display-card {
  padding: clamp(26px, 3vw, 36px);
  border-color: rgba(0, 114, 206, 0.12);
  box-shadow: 0 16px 42px rgba(13, 47, 82, 0.07);
}.company-honors-section .honor-display-copy {
  max-width: 920px;
}.company-honors-section .honor-image-link {
  width: min(100%, 1100px);
  margin: 4px auto 0;
  background: #fff;
}.company-honors-section .honor-image-link img {
  width: 100%;
  max-height: none;
  object-fit: contain;
}.value-grid strong {
  display: block;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 40px;
  line-height: 1;
}.value-grid p,
.capability-grid p,
.timeline-grid p,
.branch-layout p,
.honor-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}.timeline-grid article {
  min-height: 190px;
  padding: 20px;
}.timeline-grid strong {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
}.timeline-grid h3,
.branch-grid h3,
.honor-card h3 {
  margin-bottom: 10px;
  font-size: 19px;
}.branch-layout {
  width: min(100%, 1200px);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}.branch-core {
  padding: 28px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 114, 206, 0.2), transparent 48%),
    var(--ink);
}.branch-core strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}.branch-core p {
  color: rgba(255, 255, 255, 0.78);
}.branch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}.branch-grid article {
  position: relative;
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}.branch-grid article:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  background: #eef7ff;
  box-shadow: 0 16px 34px rgba(13, 47, 82, 0.08);
}.branch-grid article > span {
  width: fit-content;
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(0, 114, 206, 0.1);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}.branch-grid article > strong {
  color: #17334d;
  font-size: 14px;
  line-height: 1.5;
}.branch-grid article > i {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--blue);
  font-style: normal;
  font-size: 18px;
  line-height: 1;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}.branch-grid article:hover > i {
  opacity: 1;
  transform: translate(0, 0);
}.about-empty-title {
  max-width: 1200px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.12;
}.subsidiary-map {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}.subsidiary-banner {
  overflow: hidden;
  position: relative;
  padding: clamp(32px, 5vw, 54px);
  border-radius: 12px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 18%, rgba(97, 184, 255, 0.32), transparent 34%),
    linear-gradient(135deg, #071c33 0%, #0f4f8d 64%, #0072ce 100%);
  box-shadow: 0 22px 56px rgba(8, 35, 61, 0.18);
}.subsidiary-banner::after {
  content: "";
  position: absolute;
  inset: auto -8% -36% 42%;
  height: 220px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  transform: rotate(-8deg);
  pointer-events: none;
}.subsidiary-banner .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}.subsidiary-banner h3 {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}.subsidiary-banner p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.8;
}.subsidiary-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}.subsidiary-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}.subsidiary-group-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}.subsidiary-group-card {
  position: relative;
  min-width: 0;
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(0, 114, 206, 0.06), transparent 46%),
    #fff;
  box-shadow: 0 14px 34px rgba(13, 47, 82, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}.subsidiary-group-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 114, 206, 0.34);
  box-shadow: 0 20px 46px rgba(13, 47, 82, 0.12);
}.subsidiary-group-card .group-index {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}.subsidiary-group-card h3 {
  margin: -6px 0 0;
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.18;
}.subsidiary-company-grid {
  display: grid;
  gap: 12px;
}.subsidiary-company-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(214, 222, 230, 0.82);
  border-radius: 10px;
  background: rgba(247, 251, 255, 0.78);
}.subsidiary-company-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(0, 114, 206, 0.1);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}.subsidiary-company-card h4 {
  margin: 0;
  color: #10263a;
  font-size: 17px;
  line-height: 1.35;
}.subsidiary-company-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}.subsidiary-directory {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}.subsidiary-directory-heading {
  max-width: 880px;
  margin: 0 auto 34px;
  text-align: center;
}.subsidiary-directory-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}.subsidiary-directory-heading p {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}.subsidiary-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}.subsidiary-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(209, 220, 231, 0.92);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(0, 114, 206, 0.07), rgba(255, 255, 255, 0) 48%),
    #fff;
  box-shadow: 0 14px 32px rgba(13, 47, 82, 0.07);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}.subsidiary-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 114, 206, 0.42);
  background-color: #f4f9ff;
  box-shadow: 0 20px 44px rgba(13, 47, 82, 0.12);
}.subsidiary-card h4 {
  margin: 0;
  color: #10263a;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.32;
  letter-spacing: 0;
}.subsidiary-card span,
.subsidiary-detail-view > span {
  display: inline-flex;
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(0, 114, 206, 0.1);
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
}.subsidiary-card a {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}.subsidiary-card a::after {
  content: "â†’";
  transition: transform 180ms ease;
}.subsidiary-card:hover a::after {
  transform: translateX(3px);
}.subsidiary-list-view.is-hidden {
  display: none;
}.subsidiary-detail-view {
  display: none;
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto;
}.subsidiary-detail-view.active {
  display: block;
}.subsidiary-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}.subsidiary-back::before {
  content: "\2190";
}.subsidiary-detail-view h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: 0;
}.subsidiary-detail-card {
  margin-top: 30px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(209, 220, 231, 0.9);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(0, 114, 206, 0.045), rgba(255, 255, 255, 0) 42%),
    #fff;
  box-shadow: 0 18px 42px rgba(13, 47, 82, 0.08);
}.subsidiary-detail-card h4 {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}.subsidiary-detail-card p {
  margin: 0;
  color: #425160;
  font-size: 16px;
  line-height: 1.9;
}.subsidiary-detail-card p + p {
  margin-top: 18px;
}.subsidiary-detail-card--zhejiang p {
  font-size: 17px;
  line-height: 1.8;
}.subsidiary-detail-card--zhejiang p + p {
  margin-top: 20px;
}.subsidiary-inline-photo {
  max-width: 560px;
  margin: 18px 0 24px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(209, 220, 231, 0.82);
  background: #f6f9fc;
  box-shadow: 0 14px 30px rgba(13, 47, 82, 0.08);
}.subsidiary-inline-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}.subsidiary-gallery {
  width: 100%;
  max-width: 1000px;
  margin: 30px auto 0;
}.subsidiary-gallery h4 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.2;
  letter-spacing: 0;
}.subsidiary-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}.subsidiary-gallery figure {
  height: clamp(260px, 30vw, 320px);
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #eef4fb;
  box-shadow: 0 18px 36px rgba(13, 47, 82, 0.12);
}.subsidiary-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}.subsidiary-gallery--single figure {
  height: auto;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}.subsidiary-gallery--single img {
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(13, 47, 82, 0.12);
}.subsidiary-gallery--kuajingtong img {
  height: clamp(260px, 30vw, 340px);
  object-fit: contain;
  background: #f6f9fc;
}.subsidiary-gallery--kuajingtong {
  margin-top: 32px;
}.subsidiary-gallery--tongjie img {
  height: clamp(320px, 42vw, 420px);
  object-fit: cover;
}.subsidiary-gallery--yingdong {
  margin-top: 32px;
}.subsidiary-gallery--yingdong figure {
  padding: 18px;
  border: 1px solid rgba(0, 114, 206, 0.12);
  border-radius: 16px;
  background: #f6f9fc;
  box-shadow: 0 18px 36px rgba(13, 47, 82, 0.1);
}.subsidiary-gallery--yingdong img {
  height: clamp(360px, 40vw, 460px);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: none;
  object-fit: contain;
  object-position: center;
}.subsidiary-gallery--zhisheng {
  margin-top: 32px;
}.subsidiary-gallery--zhisheng figure {
  border-radius: 16px;
  background: #f6f9fc;
  box-shadow: 0 18px 36px rgba(13, 47, 82, 0.1);
}.subsidiary-gallery--zhisheng img {
  height: clamp(360px, 40vw, 460px);
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
}.subsidiary-gallery--jiexiang {
  margin-top: 32px;
}.subsidiary-gallery--jiexiang figure {
  border-radius: 16px;
  background: #f6f9fc;
  box-shadow: 0 18px 36px rgba(13, 47, 82, 0.1);
}.subsidiary-gallery--jiexiang img {
  height: clamp(360px, 40vw, 460px);
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
}.subsidiary-gallery--yiwu figure {
  height: auto;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}.subsidiary-gallery--yiwu img {
  height: clamp(320px, 42vw, 420px);
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(13, 47, 82, 0.12);
}.subsidiary-gallery figcaption {
  margin-top: 12px;
  color: #64758a;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}.subsidiary-detail-empty {
  display: grid;
  place-items: center;
  min-height: 300px;
  margin-top: 30px;
  border: 1px dashed rgba(160, 178, 196, 0.72);
  border-radius: 12px;
  color: #98a6b5;
  background: #f8fbff;
  font-size: 16px;
  font-weight: 700;
}.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}.journey {
  width: 100%;
  max-width: none;
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(20px, 5vw, 72px);
  background: var(--soft);
}.journey .section-heading,
.journey-track {
  width: min(var(--max), 100%);
  margin-left: auto;
  margin-right: auto;
}.journey-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}.journey-step {
  min-height: 250px;
  padding: 24px;
}.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}.business-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}.service-visual-card {
  padding: clamp(12px, 2vw, 18px);
  box-shadow: 0 16px 36px rgba(13, 47, 82, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}.service-visual-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 114, 206, 0.45);
  box-shadow: 0 22px 48px rgba(13, 47, 82, 0.13);
}.business-visual img {
  display: block;
  width: 100%;
  max-height: 390px;
  object-fit: contain;
  border-radius: 6px;
  background: #f7fafc;
}.business-visual-stack {
  display: grid;
  gap: 12px;
}.business-visual-stack img {
  border: 1px solid var(--line);
  border-radius: 8px;
}.business-summary {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}.business-summary h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 36px);
}.business-summary p {
  margin: 0;
}.service-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 4px;
  padding: 20px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(0, 114, 206, 0.04), transparent 56%),
    #fff;
}.service-flow > span {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 9px;
  color: #526071;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
  text-align: center;
  cursor: default;
  outline: none;
  transition:
    color 160ms ease,
    transform 160ms ease;
}.service-flow > span::before {
  content: "";
  position: relative;
  z-index: 2;
  width: 12px;
  height: 12px;
  border: 3px solid #dce8f5;
  border-radius: 999px;
  background: #fff;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}.service-flow > span::after {
  content: "";
  position: absolute;
  top: 5px;
  left: calc(50% + 8px);
  width: calc(100% - 16px);
  height: 1px;
  background: #dce8f5;
  transition: background-color 160ms ease;
}.service-flow > span:last-child::after {
  display: none;
}.service-flow > span:hover,
.service-flow > span:focus-visible,
.service-flow > span.is-active {
  color: var(--blue);
  transform: translateY(-1px);
}.service-flow > span:hover::before,
.service-flow > span:focus-visible::before,
.service-flow > span.is-active::before {
  border-color: var(--blue);
  background: var(--blue);
  transform: scale(1.08);
}.service-flow > span:hover::after,
.service-flow > span:focus-visible::after,
.service-flow > span.is-active::after {
  background: rgba(0, 114, 206, 0.45);
}.flow-label {
  display: inline-flex;
  justify-content: center;
}.flow-tooltip {
  position: absolute;
  z-index: 8;
  bottom: calc(100% + 16px);
  left: 50%;
  width: min(250px, 72vw);
  padding: 14px 15px 15px;
  border: 1px solid rgba(0, 114, 206, 0.18);
  border-radius: 8px;
  color: #17334d;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 38px rgba(13, 47, 82, 0.16);
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  backdrop-filter: blur(14px);
}.flow-tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 12px;
  height: 12px;
  border-right: 1px solid rgba(0, 114, 206, 0.18);
  border-bottom: 1px solid rgba(0, 114, 206, 0.18);
  background: rgba(255, 255, 255, 0.96);
  transform: translateX(-50%) rotate(45deg);
}.flow-tooltip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.3;
}.flow-tooltip p {
  margin: 0;
  color: #526071;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}.flow-tooltip em {
  display: block;
  margin-top: 8px;
  color: var(--blue);
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}.service-flow > span:hover .flow-tooltip,
.service-flow > span:focus-visible .flow-tooltip,
.service-flow > span.is-active .flow-tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
}.service-flow > span:first-child .flow-tooltip {
  left: 0;
  transform: translate(0, 8px);
}.service-flow > span:first-child:hover .flow-tooltip,
.service-flow > span:first-child:focus-visible .flow-tooltip,
.service-flow > span:first-child.is-active .flow-tooltip {
  transform: translate(0, 0);
}.service-flow > span:last-child .flow-tooltip {
  right: 0;
  left: auto;
  transform: translate(0, 8px);
}.service-flow > span:last-child:hover .flow-tooltip,
.service-flow > span:last-child:focus-visible .flow-tooltip,
.service-flow > span:last-child.is-active .flow-tooltip {
  transform: translate(0, 0);
}.service-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}.service-info-grid article {
  min-height: 160px;
  padding: 20px;
  border: 1px solid rgba(0, 114, 206, 0.16);
  border-radius: 8px;
  background: #f3f9ff;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}.service-info-grid article:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  background: #eef7ff;
  box-shadow: 0 16px 34px rgba(13, 47, 82, 0.09);
}.service-info-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}.service-info-grid p {
  margin: 0;
  color: #526071;
  font-size: 15px;
  line-height: 1.7;
}.business-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}.business-points span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 16px;
  border-radius: 8px;
  color: #17334d;
  background: #eaf4ff;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.45;
}.service-card {
  min-height: 220px;
  padding: 26px;
}.service-card:nth-child(2) {
  border-top-color: rgba(0, 114, 206, 0.42);
}.service-card:nth-child(3) {
  border-top-color: rgba(45, 143, 111, 0.42);
}.service-card:nth-child(5) {
  border-top-color: rgba(215, 155, 40, 0.42);
}.platform-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}.platform-visual {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--soft);
}.platform-visual img {
  aspect-ratio: 1.35;
  object-fit: cover;
}.platform-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}.platform-points span {
  padding: 9px 12px;
  border-radius: 8px;
  color: #17334d;
  background: #eaf4ff;
  font-size: 14px;
  font-weight: 650;
}.bluewhale-section {
  align-content: start;
  gap: clamp(28px, 5vw, 54px);
}.bluewhale-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: clamp(24px, 4vw, 42px);
  align-items: start;
  text-align: center;
}.bluewhale-hero > * {
  min-width: 0;
}.bluewhale-hero > div:first-child {
  max-width: 860px;
  justify-self: center;
  text-align: center;
}.bluewhale-hero h2 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.16;
  letter-spacing: 0;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: break-word;
}.bluewhale-hero p:not(.eyebrow),
.system-capabilities .section-heading p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}.bluewhale-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px auto 0;
  color: #64758a;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
}.bluewhale-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}.bluewhale-hero .system-window {
  width: min(100%, 980px);
  justify-self: center;
}.bluewhale-tags span {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  color: #17334d;
  background: #eaf4ff;
  font-size: 13px;
  font-weight: 750;
}.system-window {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(13, 47, 82, 0.12);
  cursor: pointer;
  transition:
    transform 300ms ease,
    box-shadow 300ms ease;
}.system-window:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 62px rgba(13, 47, 82, 0.16);
}.window-bar {
  display: flex;
  gap: 6px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: #f7fafc;
}.window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(11, 15, 20, 0.22);
}.system-window img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 300ms ease;
}.system-window:hover img {
  transform: scale(1.03);
}.bluewhale-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}.bluewhale-card {
  min-height: 300px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(0, 114, 206, 0.08), transparent 42%),
    #fff;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}.bluewhale-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  background: #eef7ff;
  box-shadow: 0 16px 34px rgba(13, 47, 82, 0.08);
}.bluewhale-card span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-weight: 800;
  transition: background-color 180ms ease;
}.bluewhale-card:hover span {
  background: #0b5fab;
}.bluewhale-card h3 {
  margin: 0;
  font-size: clamp(24px, 2.8vw, 34px);
}.bluewhale-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}.system-capabilities {
  display: grid;
  gap: 18px;
}.system-capabilities .section-heading {
  max-width: 900px;
  margin-bottom: 10px;
}.system-capabilities .section-heading h3,
.bluewhale-flow h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.12;
}.capability-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}.capability-showcase.reverse {
  grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.72fr);
}.capability-showcase.reverse > div {
  order: 2;
}.capability-showcase > div {
  display: grid;
  gap: 12px;
}.capability-showcase span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}.capability-showcase h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1.2;
}.capability-showcase p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}.capability-showcase figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fafc;
  box-shadow: 0 14px 34px rgba(13, 47, 82, 0.08);
  cursor: pointer;
  transition:
    transform 300ms ease,
    box-shadow 300ms ease;
}.capability-showcase figure:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(13, 47, 82, 0.13);
}.capability-showcase img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 300ms ease;
}.capability-showcase figure:hover img {
  transform: scale(1.04);
}.bluewhale-previewable::after {
  content: attr(data-preview-label);
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 7px 10px;
  border: 1px solid rgba(0, 114, 206, 0.22);
  border-radius: 999px;
  color: #0b5fab;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(13, 47, 82, 0.12);
  font-size: 12px;
  font-weight: 750;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
  pointer-events: none;
}.bluewhale-previewable:hover::after,
.bluewhale-previewable:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}.bluewhale-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 44px);
  background: rgba(6, 14, 24, 0.68);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}.bluewhale-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}.bluewhale-lightbox img {
  max-width: min(90vw, 1280px);
  max-height: 84vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  transform: translateY(8px) scale(0.985);
  transition: transform 220ms ease;
}.bluewhale-lightbox.is-open img {
  transform: translateY(0) scale(1);
}.bluewhale-lightbox-close {
  position: fixed;
  top: clamp(16px, 3vw, 28px);
  right: clamp(16px, 3vw, 28px);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}.bluewhale-lightbox-close:hover,
.bluewhale-lightbox-close:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.04);
}.bluewhale-flow {
  display: grid;
  gap: 24px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 114, 206, 0.08), transparent 52%),
    #fff;
}.flow-track {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0;
}.flow-track span {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  text-align: center;
  line-height: 1.35;
  transition: color 180ms ease;
}.flow-track span::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: rgba(11, 15, 20, 0.22);
  box-shadow: 0 0 0 1px rgba(11, 15, 20, 0.12);
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease;
}.flow-track span::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  right: -50%;
  height: 1px;
  background: rgba(11, 15, 20, 0.14);
  z-index: -1;
}.flow-track span:last-child::after {
  display: none;
}.flow-track span:hover {
  color: var(--blue);
}.flow-track span:hover::before {
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(0, 114, 206, 0.14);
}.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(40px, 7vw, 88px);
  align-items: center;
}.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}.proof-grid.compact article {
  min-height: 132px;
}.proof-grid.compact strong {
  font-size: clamp(30px, 4vw, 44px);
}.proof-grid article {
  min-height: 150px;
  padding: 24px;
}.proof-grid strong {
  display: block;
  margin-bottom: 28px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
}.proof-grid span {
  color: var(--muted);
  font-size: 15px;
}.case-section {
  width: 100%;
  max-width: none;
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(20px, 5vw, 72px);
  background: var(--soft);
}.case-section .section-heading,
.case-grid {
  width: min(var(--max), 100%);
  margin-left: auto;
  margin-right: auto;
}.case-section .section-heading {
  max-width: 1100px;
  text-align: center;
}.case-section .section-heading h2 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(38px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: 0;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: break-word;
}.case-section .section-heading p:not(.eyebrow) {
  max-width: 900px;
  margin: 22px auto 0;
  color: #64758a;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
}html[lang="en"] .case-section .section-heading h2 {
  width: 100%;
  max-width: 100%;
  font-size: clamp(36px, 3.6vw, 44px);
  line-height: 1.1;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}html[lang="en"] .case-section .section-heading p:not(.eyebrow) {
  max-width: 920px;
}.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}.case-card {
  min-height: 300px;
  padding: 28px;
}.case-card span {
  display: inline-flex;
  margin-bottom: 64px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}.client-case-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}.client-case-card {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  align-content: stretch;
  gap: 13px;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}.client-case-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  background: #eef7ff;
  box-shadow: 0 16px 34px rgba(13, 47, 82, 0.08);
}.client-case-card span {
  margin-bottom: 10px;
  color: var(--blue);
}.client-logo {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #17334d;
  background: #fff;
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 800;
  letter-spacing: 0;
}.client-case-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
}.client-case-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}.case-service-tags {
  display: flex;
  flex-wrap: wrap;
  align-self: end;
  gap: 7px;
}.case-service-tags em {
  display: inline-flex;
  padding: 6px 8px;
  border-radius: 999px;
  color: #17334d;
  background: #eaf4ff;
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
  line-height: 1;
}.client-case-card > b {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}.client-case-card:hover > b {
  opacity: 1;
  transform: translate(0, 0);
}.case-card h3,
.role-list h3 {
  margin-bottom: 14px;
}html[lang="en"] .split-section.about-empty-state [data-about-title],
html[lang="en"] #about:not(.about-empty-state) [data-about-title],
html[lang="en"] .services-section .section-copy h2,
html[lang="en"] .bluewhale-hero h2 {
  width: 100%;
  max-width: 100%;
  font-size: clamp(30px, 2.65vw, 36px);
  line-height: 1.1;
  white-space: pre-line;
  word-break: normal;
  overflow-wrap: break-word;
}html[lang="en"] .bluewhale-hero h2 {
  max-width: 760px;
  white-space: normal;
}html[lang="en"] .section-copy,
html[lang="en"] .bluewhale-hero > div {
  min-width: 0;
}html[lang="en"] .services-section {
  display: block;
}html[lang="en"] .services-section .business-heading {
  max-width: 920px;
  margin: 0 auto 36px;
  text-align: center;
}html[lang="en"] .services-section .business-heading h2 {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(42px, 3.6vw, 48px);
  line-height: 1.12;
  white-space: normal;
}html[lang="en"] .services-section .business-heading > p:not(.eyebrow) {
  max-width: 860px;
  margin: 18px auto 0;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.65;
}html[lang="en"] .business-card-grid.service-entry-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}html[lang="en"] .business-entry-card {
  min-height: 330px;
}html[lang="en"] .business-entry-card h3 {
  font-size: clamp(21px, 1.45vw, 24px);
  line-height: 1.22;
  text-wrap: balance;
}html[lang="en"] .business-entry-card p {
  max-width: 100%;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
}html[lang="en"] .business-entry-card a {
  font-size: 14px;
}@media (max-width: 980px) {html[lang="en"] .business-card-grid.service-entry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}@media (max-width: 680px) {html[lang="en"] .services-section .business-heading {
    text-align: center;
  }html[lang="en"] .services-section .business-heading h2,
html[lang="en"] .services-section .business-heading > p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }html[lang="en"] .business-card-grid.service-entry-grid {
    grid-template-columns: 1fr;
  }
}.role-list {
  display: grid;
  gap: 14px;
}.role-list article {
  padding: 24px;
}.image-band {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 8px;
  padding: 8px;
  background: var(--ink);
}.image-band img {
  height: clamp(280px, 38vw, 520px);
  object-fit: cover;
  border-radius: 6px;
}.site-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}.site-form label {
  display: grid;
  gap: 8px;
}.site-form label span {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}.site-form input,
.site-form select,
.site-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(11, 15, 20, 0.18);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 16px;
  outline: 0;
}.site-form textarea {
  min-height: 150px;
  resize: vertical;
}.site-form input:focus,
.site-form select:focus,
.site-form textarea:focus {
  border-color: rgba(0, 114, 206, 0.62);
  box-shadow: 0 0 0 4px rgba(0, 114, 206, 0.1);
}.form-wide {
  grid-column: 1 / -1;
}.form-submit {
  justify-self: start;
  border: 0;
  cursor: pointer;
}.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(64px, 6vw, 84px);
  align-items: start;
}#contact.branch-contact-section {
  flex-direction: column;
  align-items: center;
  gap: 0;
}body[data-page="contact"] #contact.branch-contact-section,
#contact.branch-contact-section.active {
  display: flex !important;
}.contact-conversion-section {
  padding-inline: clamp(20px, 5vw, 72px);
}.contact-conversion-shell {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(20px, 3.4vw, 40px);
  align-items: stretch;
}.contact-primary-card,
.contact-inquiry-card {
  min-height: auto;
}.contact-primary-card dl {
  align-content: start;
}.contact-office-note,
.contact-inquiry-card p:not(.section-eyebrow) {
  margin: 0;
  color: #4d5b68;
  font-size: 15px;
  line-height: 1.75;
}.contact-inquiry-card {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(22, 114, 211, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 114, 206, 0.08), rgba(255, 255, 255, 0) 52%),
    #ffffff;
  box-shadow: 0 16px 38px rgba(12, 30, 54, 0.06);
}.contact-inquiry-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.25;
}.contact-inquiry-card .primary-button {
  justify-self: start;
}.branch-contact-grid {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 22px;
}.branch-contact-card {
  min-height: 190px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(234, 244, 255, 0.54), rgba(255, 255, 255, 0) 48%),
    #fff;
  box-shadow: 0 14px 34px rgba(12, 30, 54, 0.04);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}.branch-contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  background:
    linear-gradient(135deg, rgba(234, 244, 255, 0.9), rgba(255, 255, 255, 0) 52%),
    #fff;
  box-shadow: 0 16px 34px rgba(22, 114, 211, 0.12);
}@supports (content-visibility: auto) {body:not([data-page="home"]) .about-profile-container,
body:not([data-page="home"]) .subsidiary-group-card,
body:not([data-page="home"]) .subsidiary-detail-view,
body:not([data-page="home"]) .business-detail-card,
body:not([data-page="home"]) .capability-showcase,
body:not([data-page="home"]) .client-case-card,
body:not([data-page="home"]) .branch-contact-card {
    content-visibility: auto;
    contain-intrinsic-size: auto 360px;
  }body:not([data-page="home"]) .capability-showcase {
    contain-intrinsic-size: auto 520px;
  }body:not([data-page="home"]) .business-detail-card {
    contain-intrinsic-size: auto 760px;
  }
}.branch-contact-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.25;
}.branch-contact-card dl {
  display: grid;
  align-content: end;
  gap: 8px;
  margin: 0;
}.branch-contact-card dl div {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}.branch-contact-card dt {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 820;
  line-height: 1.5;
  white-space: nowrap;
}.branch-contact-card dt::before {
  width: 19px;
  height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  color: #fff;
  background: var(--blue);
  font-size: 11px;
  font-weight: 850;
}.branch-contact-card div:nth-child(1) dt::before {
  content: "å€";
}.branch-contact-card div:nth-child(2) dt::before {
  content: "ç”µ";
}.branch-contact-card div:nth-child(3) dt::before {
  content: "äºº";
}.branch-contact-card dd {
  margin: 0;
  color: #4d5b68;
  font-size: 14.5px;
  line-height: 1.55;
  word-break: normal;
  overflow-wrap: break-word;
}html[lang="en"] .branch-contact-grid {
  gap: 22px;
}html[lang="en"] .branch-contact-card {
  min-height: 230px;
  gap: 20px;
  padding: 30px;
}html[lang="en"] .branch-contact-card h3 {
  font-size: clamp(22px, 1.55vw, 25px);
  line-height: 1.24;
  overflow-wrap: break-word;
}html[lang="en"] .branch-contact-card dl {
  align-content: start;
  gap: 14px;
}html[lang="en"] .branch-contact-card dl div {
  grid-template-columns: minmax(0, 124px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}html[lang="en"] .branch-contact-card dt {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  font-size: 13px;
  line-height: 1.45;
  white-space: normal;
}html[lang="en"] .branch-contact-card dt::before {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  font-size: 10px;
  line-height: 1;
}html[lang="en"] .branch-contact-card div:nth-child(1) dt::before {
  content: "A";
}html[lang="en"] .branch-contact-card div:nth-child(2) dt::before {
  content: "P";
}html[lang="en"] .branch-contact-card div:nth-child(3) dt::before {
  content: "C";
}html[lang="en"] .branch-contact-card dd {
  min-width: 0;
  font-size: 14.5px;
  line-height: 1.58;
  word-break: normal;
  overflow-wrap: break-word;
}@media (max-width: 980px) {html[lang="en"] .branch-contact-card {
    min-height: 220px;
    padding: 28px;
  }html[lang="en"] .branch-contact-card h3 {
    font-size: clamp(20px, 2.4vw, 22px);
  }
}@media (max-width: 640px) {.contact-conversion-shell {
    grid-template-columns: 1fr;
  }.contact-inquiry-card {
    padding: 22px;
  }html[lang="en"] .branch-contact-card {
    min-height: auto;
    padding: 26px;
  }html[lang="en"] .branch-contact-card h3 {
    font-size: clamp(18px, 5vw, 20px);
  }html[lang="en"] .branch-contact-card dl div {
    grid-template-columns: minmax(0, 98px) minmax(0, 1fr);
    gap: 12px;
  }html[lang="en"] .branch-contact-card dt {
    font-size: 12.5px;
  }
}.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(500px, 0.95fr);
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(34px, 5vw, 56px) clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(0, 114, 206, 0.24), rgba(255, 255, 255, 0) 48%),
    #0c2742;
  font-size: 14px;
}.footer-company {
  display: grid;
  gap: 10px;
}.footer-company strong {
  color: #fff;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.25;
}.footer-company p {
  max-width: 620px;
  margin: 0;
  line-height: 1.7;
}.footer-qr-grid {
  display: grid;
  grid-template-columns: repeat(4, 112px);
  width: 100%;
  max-width: 544px;
  gap: 16px;
  align-items: center;
  justify-content: center;
  justify-self: center;
}.footer-qr-grid figure {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  margin: 0;
  padding: 10px 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}.footer-qr-grid img {
  width: 96px;
  height: 96px;
  max-width: 96px;
  max-height: 96px;
  border-radius: 6px;
  background: #fff;
  object-fit: contain;
}.footer-qr-grid figcaption {
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
}@media (max-width: 1280px) {.home-content {
    width: calc(100% - 96px);
  }.section {
    width: calc(100% - 96px);
  }.business-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }.business-card-grid.service-entry-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }.company-intro {
    grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
    gap: 42px;
    padding-left: 32px;
    padding-right: 32px;
  }.company-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }.subsidiaries-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }.about-profile-container {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    max-width: calc(100vw - 48px);
    gap: 40px;
  }.about-profile-images img {
    height: 560px;
  }
}@media (min-width: 1101px) and (max-width: 1280px) {.subsidiaries-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}@media (max-width: 1100px) {.subsidiaries-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }.subsidiary-full-inner {
    grid-template-columns: 1fr;
  }.subsidiary-full-section.is-reverse .subsidiary-full-image {
    order: 0;
  }.subsidiary-full-section {
    min-height: auto;
  }
}@media (max-width: 980px) {.home-content {
    width: calc(100% - 64px);
    padding-top: clamp(72px, 9vw, 96px);
    padding-bottom: clamp(72px, 9vw, 96px);
  }#home .home-hero {
    min-height: auto;
    padding: 124px 48px 48px;
  }#home .hero-content {
    max-width: 680px;
  }#home .hero h1 {
    font-size: clamp(48px, 8vw, 64px);
  }#home .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }#home .hero-metrics div:nth-child(2) {
    border-right: 0;
  }.section {
    width: calc(100% - 64px);
    padding-top: clamp(72px, 9vw, 96px);
    padding-bottom: clamp(72px, 9vw, 96px);
  }.business-card-grid.service-entry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }.company-intro {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 86px;
    padding-bottom: 58px;
  }.company-intro-media,
.company-intro-media img {
    min-height: 460px;
  }.company-intro-content {
    align-self: start;
  }.company-principle-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }.about-profile-container {
    grid-template-columns: 1fr;
    gap: 34px;
  }.about-profile-images img {
    height: 460px;
  }
}@media (max-width: 920px) {.site-header {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }.nav-links {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
  }.split-section,
.contact-section,
.bluewhale-hero,
.capability-showcase,
.capability-showcase.reverse {
    grid-template-columns: 1fr;
  }.business-heading {
    margin-bottom: 28px;
    text-align: left;
  }.business-heading h2,
.business-heading > p:not(.eyebrow) {
    margin-left: 0;
    margin-right: 0;
  }.capability-showcase.reverse > div {
    order: 0;
  }.section-copy {
    position: static;
  }#about:not(.about-empty-state) [data-about-title] {
    max-width: 100%;
    font-size: 38px;
  }#about:not(.about-empty-state) .about-lead {
    max-width: 100%;
  }#about:not(.about-empty-state) .about-panel {
    padding-right: 0;
  }#about.about-profile-state .about-panel {
    width: 100%;
  }.services-section .section-copy {
    max-width: none;
  }.services-section .section-copy h2 {
    max-width: 100%;
    font-size: 38px;
    white-space: pre-line;
  }.case-section .section-heading h2 {
    max-width: 100%;
    font-size: 40px;
    line-height: 1.12;
    white-space: normal;
  }html[lang="en"] .case-section .section-heading h2 {
    font-size: clamp(34px, 5vw, 40px);
  }.bluewhale-hero h2 {
    max-width: 760px;
    font-size: clamp(30px, 3vw, 40px);
    line-height: 1.16;
    white-space: normal;
  }.bluewhale-hero p:not(.eyebrow) {
    max-width: 720px;
  }.journey-track,
.service-grid,
.service-info-grid,
.home-card-grid.six,
.home-card-grid.four,
.client-case-grid,
.case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }.network-map-card {
    min-height: 520px;
  }.showcase-card {
    flex-basis: min(78vw, 330px);
    height: 210px;
  }.showcase-arrow {
    display: none;
  }.partner-card {
    flex-basis: min(42vw, 190px);
    height: 104px;
  }.partner-card img {
    height: 58px;
  }.subsidiary-map {
    width: min(100%, calc(100% - 32px));
  }.subsidiary-group-grid {
    grid-template-columns: 1fr;
  }.subsidiary-banner {
    padding: 28px;
  }.subsidiary-group-card {
    padding: 22px;
  }.subsidiary-directory {
    width: min(100%, calc(100% - 32px));
  }.subsidiary-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }.subsidiary-card {
    min-height: 220px;
  }.contact-section {
    gap: 28px;
  }

}@media (max-width: 640px) {.home-content {
    width: calc(100% - 40px);
    padding-top: clamp(56px, 12vw, 72px);
    padding-bottom: clamp(56px, 12vw, 72px);
  }#home .home-hero {
    padding: 112px 20px 34px;
  }#home .hero-content {
    width: 100%;
  }#home .hero h1 {
    font-size: clamp(40px, 12vw, 52px);
  }#home .hero-copy {
    font-size: 17px;
    line-height: 1.78;
  }#home .hero-actions {
    justify-content: stretch;
  }#home .hero-actions a {
    flex: 1 1 160px;
  }#home .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    background: rgba(255, 255, 255, 0.16);
  }#home .hero-metrics div {
    padding: 18px 14px;
    background: transparent;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }#home .hero-metrics div:nth-child(2),
#home .hero-metrics div:last-child {
    border-right: 0;
  }#home .hero-metrics div:nth-child(3),
#home .hero-metrics div:last-child {
    border-bottom: 0;
  }.section {
    width: calc(100% - 40px);
    padding-top: clamp(56px, 12vw, 72px);
    padding-bottom: clamp(56px, 12vw, 72px);
  }.site-header {
    height: 64px;
    padding: 0 14px;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "brand spacer actions";
    row-gap: 0;
  }.brand {
    grid-area: brand;
  }.nav-links {
    grid-area: nav;
  }.header-actions {
    grid-area: actions;
  }.header-actions {
    position: static;
  }.menu-toggle {
    display: inline-flex;
  }.lang-toggle {
    display: inline-flex;
    width: 42px;
  }.brand-logo {
    width: 170px;
    height: 48px;
  }.nav-links {
    position: fixed;
    top: 72px;
    left: 14px;
    right: 14px;
    z-index: 40;
    display: grid;
    gap: 4px;
    font-size: 13px;
    min-width: 0;
    width: auto;
    max-height: calc(100svh - 88px);
    padding: 10px;
    border: 1px solid rgba(210, 225, 240, 0.85);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 52px rgba(15, 48, 87, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity 160ms ease,
      transform 160ms ease,
      visibility 160ms ease;
    overflow-x: hidden;
    overflow-y: auto;
    justify-content: stretch;
  }.site-header.nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }.nav-links a {
    min-height: 42px;
    justify-content: flex-start;
    padding: 0 14px;
  }.hero {
    min-height: 96svh;
    padding: 112px 20px 22px;
  }.company-intro {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 78px 16px 38px;
  }.company-intro-media,
.company-intro-media img {
    min-height: 330px;
  }.company-intro-overlay {
    left: 20px;
    right: 20px;
    bottom: 22px;
  }.company-intro-overlay p {
    font-size: 15px;
    line-height: 1.68;
  }.company-intro-copy {
    font-size: 15px;
    line-height: 1.76;
  }.company-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }.company-principle-grid {
    grid-template-columns: 1fr;
  }.company-principle-grid article {
    min-height: 0;
  }.subsidiaries-heading {
    margin-bottom: 24px;
    text-align: left;
  }.subsidiaries-heading .eyebrow {
    justify-content: flex-start;
  }.subsidiaries-heading p:not(.eyebrow) {
    margin-left: 0;
    margin-right: 0;
    font-size: 15px;
  }.subsidiaries-card-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }.subsidiary-overview-card {
    min-height: 0;
    padding: 22px;
  }.subsidiary-full-section {
    padding: 48px 16px;
  }.subsidiary-full-image {
    min-height: 310px;
  }.subsidiary-full-content h3 {
    font-size: 28px;
  }.subsidiary-full-copy {
    font-size: 15px;
    line-height: 1.76;
  }.subsidiary-highlight-grid {
    grid-template-columns: 1fr;
  }.subsidiary-highlight-grid span {
    min-height: 0;
  }h1 {
    max-width: 9em;
    font-size: 38px;
    word-break: break-word;
  }.hero h1 {
    max-width: 100%;
  }.hero-copy {
    width: 100%;
    max-width: 100%;
    font-size: 17px;
    word-break: normal;
  }h2 {
    font-size: 34px;
  }.network-section .home-section-heading h2,
.home-showcase-heading h2,
.partner-heading h2 {
    font-size: 30px;
    line-height: 1.16;
  }.hero-metrics,
.journey-track,
.service-grid,
.service-info-grid,
.home-card-grid.six,
.home-card-grid.four,
.business-points,
.branch-grid,
.bluewhale-grid,
.flow-track,
.proof-grid,
.case-grid,
.client-case-grid,
.image-band {
    grid-template-columns: 1fr;
  }.hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }.network-map-card {
    min-height: 420px;
    border-radius: 8px;
  }.network-toggle {
    width: 100%;
    max-width: 360px;
  }.network-toggle button {
    flex: 1;
    min-width: 0;
    padding: 0 10px;
    font-size: 13px;
    white-space: normal;
  }.network-tags {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }.network-tags span {
    font-size: 12px;
  }.about-profile-container {
    padding: 42px 20px 64px;
  }.about-profile-images img {
    height: 360px;
  }.about-profile-copy h3 {
    font-size: 30px;
  }.about-profile-copy p {
    font-size: 16px;
    line-height: 1.78;
  }.branch-contact-grid {
    grid-template-columns: 1fr;
  }.branch-contact-card {
    min-height: auto;
  }.branch-contact-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }.service-flow {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }.service-flow > span {
    grid-template-columns: 18px 1fr;
    align-items: center;
    justify-items: start;
    gap: 10px;
    text-align: left;
    cursor: pointer;
  }.service-flow > span::before {
    grid-column: 1;
    grid-row: 1;
  }.service-flow > span::after {
    top: 22px;
    left: 6px;
    width: 1px;
    height: 20px;
  }.flow-label {
    justify-content: flex-start;
  }.flow-tooltip {
    position: relative;
    bottom: auto;
    left: auto;
    grid-column: 2;
    width: 100%;
    margin-top: 2px;
    transform: translateY(-4px);
  }.flow-tooltip::after {
    display: none;
  }.service-flow > span:hover .flow-tooltip,
.service-flow > span:focus-visible .flow-tooltip,
.service-flow > span.is-active .flow-tooltip {
    transform: translateY(0);
  }.hero-metrics {
    border-top: 0;
    gap: 1px;
    background: rgba(255, 255, 255, 0.16);
  }.hero-metrics div {
    padding: 16px;
    background: rgba(0, 0, 0, 0.24);
  }.challenge-list article,
.home-card-grid article,
.service-card,
.journey-step,
.case-card,
.role-list article,
.site-form {
    padding: 22px;
  }.case-card {
    min-height: auto;
  }.case-card span {
    margin-bottom: 36px;
  }.stage-timeline {
    padding-left: 24px;
  }.stage-item::before {
    left: -25px;
  }.stage-item button {
    padding: 20px;
  }.stage-item:hover .stage-events,
.stage-item.active .stage-events {
    max-height: 980px;
    padding: 0 20px 20px;
  }.stage-events p {
    grid-template-columns: 1fr;
    gap: 6px;
  }.split-section.about-empty-state .section-copy {
    transform: translateY(-1svh);
  }.split-section.about-empty-state::before {
    width: min(560px, 122vw);
    top: 45%;
    left: 50%;
    opacity: 0.32;
  }.split-section.about-empty-state::after {
    width: min(560px, 122vw);
    top: 45%;
    left: 50%;
    background:
      radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.78) 38%, rgba(255, 255, 255, 0.48) 70%);
  }.split-section.about-empty-state [data-about-title] {
    font-size: 34px;
    line-height: 1.15;
    white-space: pre-line;
  }.about-lead,
.split-section.about-empty-state .about-lead {
    max-width: 100%;
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.72;
  }#about:not(.about-empty-state) [data-about-title] {
    font-size: 32px;
    line-height: 1.15;
    white-space: pre-line;
  }.services-section .section-copy h2 {
    font-size: 32px;
    line-height: 1.15;
    white-space: pre-line;
  }.bluewhale-hero h2 {
    font-size: 28px;
    line-height: 1.16;
    white-space: normal;
  }.case-section .section-heading h2 {
    font-size: 34px;
    line-height: 1.15;
  }html[lang="en"] .case-section .section-heading h2 {
    font-size: 32px;
    line-height: 1.16;
  }.flow-track {
    gap: 16px;
  }.flow-track span {
    grid-template-columns: 18px minmax(0, 1fr);
    justify-items: start;
    text-align: left;
  }.flow-track span::after {
    top: 14px;
    left: 7px;
    right: auto;
    bottom: -20px;
    width: 1px;
    height: auto;
  }.bluewhale-previewable::after {
    top: 10px;
    right: 10px;
    opacity: 1;
    transform: none;
    font-size: 11px;
  }.bluewhale-lightbox {
    padding: 18px;
  }.bluewhale-lightbox img {
    max-width: 94vw;
    max-height: 80vh;
  }.bluewhale-lightbox-close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
  }.site-footer {
    grid-template-columns: 1fr;
    align-items: center;
  }.footer-qr-grid {
    justify-content: center;
    justify-self: center;
    grid-template-columns: repeat(4, 112px);
  }
}@media (max-width: 680px) {.corporate-video-section {
    gap: 26px;
    padding-top: 58px;
    padding-bottom: 68px;
  }.corporate-video-heading h2 {
    font-size: clamp(34px, 9vw, 42px);
  }.corporate-video-heading p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.75;
  }.corporate-video-card {
    width: 92%;
    height: auto;
    border-radius: 14px;
  }.corporate-video-play {
    width: 64px;
    height: 64px;
  }.corporate-video-play::after {
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 16px;
  }.corporate-video-label {
    bottom: 24px;
    font-size: 14px;
  }.video-modal {
    padding: 18px;
  }.video-modal-panel {
    width: 90vw;
  }.video-modal-close {
    top: -46px;
    right: 0;
  }.subsidiary-card-grid {
    grid-template-columns: 1fr;
  }.subsidiary-card {
    aspect-ratio: auto;
    min-height: 190px;
    padding: 22px;
  }.subsidiary-detail-view {
    width: min(100%, calc(100% - 32px));
  }.subsidiary-gallery-grid {
    grid-template-columns: 1fr;
  }.subsidiary-gallery figure {
    height: 260px;
  }.subsidiary-gallery--yingdong figure {
    padding: 12px;
  }.subsidiary-gallery--yingdong img {
    height: clamp(240px, 60vw, 340px);
  }.subsidiary-gallery--zhisheng img {
    height: clamp(240px, 60vw, 340px);
  }.subsidiary-gallery--jiexiang img {
    height: clamp(240px, 60vw, 340px);
  }.business-card-grid {
    grid-template-columns: 1fr;
  }.business-card-grid.service-entry-grid {
    grid-template-columns: 1fr;
  }.business-detail-card {
    padding: 24px;
  }.footer-qr-grid {
    width: 100%;
    justify-content: center;
    grid-template-columns: repeat(2, 112px);
  }.footer-qr-grid img {
    width: 96px;
    height: 96px;
  }
}.company-intro {
  grid-template-columns: minmax(0, 0.7fr) minmax(360px, 0.3fr);
  gap: 0;
  min-height: clamp(720px, 82svh, 820px);
  padding: 0;
  background: #fff;
}.company-intro::before,
.company-intro::after {
  display: none;
}.company-intro-media {
  min-height: clamp(720px, 82svh, 820px);
  border-radius: 0;
  box-shadow: none;
}.company-intro-media::before {
  background:
    linear-gradient(180deg, rgba(8, 33, 64, 0.05), rgba(8, 33, 64, 0.28)),
    linear-gradient(90deg, rgba(0, 114, 206, 0.26), transparent 56%);
}.company-intro-media img {
  min-height: clamp(720px, 82svh, 820px);
  object-position: center top;
}.company-intro-content {
  position: static;
  z-index: 2;
  display: grid;
  align-content: center;
  min-width: 0;
  padding: clamp(58px, 6vw, 86px) clamp(32px, 4vw, 56px) 150px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96)),
    radial-gradient(circle at 100% 100%, rgba(0, 114, 206, 0.08), transparent 34%);
}.company-intro-logo {
  width: min(190px, 62%);
  height: auto;
  margin-bottom: 22px;
  object-fit: contain;
  object-position: left center;
}.company-intro-content .eyebrow {
  margin-bottom: 14px;
}.company-intro-content h3 {
  font-size: clamp(30px, 2.8vw, 42px);
}.company-intro-subtitle {
  margin-bottom: clamp(34px, 4vw, 52px);
}.company-intro-copy {
  display: none;
}.company-principle-grid {
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 0;
}.company-principle-grid article {
  min-height: 0;
  padding: 24px 0;
  border: 0;
  border-bottom: 1px solid rgba(11, 15, 20, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}.company-principle-grid article:hover {
  transform: none;
  border-color: rgba(11, 15, 20, 0.12);
  box-shadow: none;
}.company-principle-grid article:last-child {
  border-bottom: 0;
}.company-principle-grid span {
  align-items: center;
  color: var(--blue);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 820;
}.company-principle-grid span::before {
  width: 22px;
  height: 22px;
  border-width: 1.8px;
  border-radius: 7px;
  box-shadow: inset 0 0 0 5px rgba(0, 114, 206, 0.1);
}.company-principle-grid p {
  max-width: 360px;
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.62;
  font-weight: 500;
}.company-stat-grid {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  min-height: 128px;
  margin: 0;
  padding: 0 max(28px, calc((100vw - 1400px) / 2 + 28px));
  background: rgba(14, 45, 86, 0.82);
  backdrop-filter: blur(12px);
}.company-stat-grid article {
  min-width: 0;
  min-height: 128px;
  display: grid;
  align-content: center;
  padding: 20px 28px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}.company-stat-grid article:last-child {
  border-right: 0;
}.company-stat-grid article:hover {
  transform: none;
  box-shadow: none;
}.company-stat-grid strong {
  color: #fff;
  font-size: clamp(34px, 3.2vw, 54px);
  font-weight: 850;
  line-height: 1;
  white-space: normal;
  word-break: keep-all;
}.company-stat-grid article:nth-child(4) strong {
  font-size: clamp(30px, 2.7vw, 48px);
}.company-stat-grid span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1.45;
  font-weight: 560;
}@media (max-width: 980px) {.company-intro {
    grid-template-columns: 1fr;
    min-height: auto;
  }.company-intro-media,
.company-intro-media img {
    min-height: 420px;
  }.company-intro-content {
    padding: 42px 28px 170px;
  }.company-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
    padding: 0 20px;
  }.company-stat-grid article {
    min-height: 112px;
    padding: 18px 16px;
  }.company-stat-grid article:nth-child(2) {
    border-right: 0;
  }.company-stat-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }
}@media (max-width: 640px) {.company-intro-media,
.company-intro-media img {
    min-height: 320px;
  }.company-intro-overlay p {
    max-width: 100%;
  }.company-intro-content {
    padding: 34px 18px 244px;
  }.company-intro-logo {
    width: 150px;
  }.company-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 10px;
  }.company-stat-grid article {
    min-height: 108px;
    padding: 16px 10px;
  }.company-stat-grid strong,
.company-stat-grid article:nth-child(4) strong {
    font-size: clamp(25px, 8vw, 34px);
  }
}.company-intro {
  display: block;
  min-height: auto;
  padding: 0;
  background: #fff;
}.company-intro-media {
  position: relative;
  min-height: calc(100svh - 64px);
  border-radius: 0;
  box-shadow: none;
}.company-intro-media img {
  min-height: calc(100svh - 64px);
  object-position: center top;
}.company-intro-media::before {
  background:
    linear-gradient(180deg, rgba(13, 47, 82, 0.08), rgba(13, 47, 82, 0.36)),
    linear-gradient(90deg, rgba(0, 114, 206, 0.42), transparent 62%);
}.company-intro-overlay {
  left: clamp(42px, 6vw, 92px);
  right: auto;
  top: clamp(78px, 10vw, 120px);
  bottom: auto;
  width: min(620px, 54vw);
}.company-intro-overlay::before {
  content: "COMPANY\A INTRODUCTION";
  display: block;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(46px, 6vw, 86px);
  line-height: 1.02;
  font-weight: 850;
  letter-spacing: 0;
  white-space: pre-line;
}.company-intro-overlay span {
  margin-bottom: 16px;
}.company-intro-overlay p {
  max-width: 560px;
  font-size: clamp(17px, 1.5vw, 21px);
}.company-stat-grid {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  top: calc(100svh - 64px - 136px);
  bottom: auto;
  min-height: 136px;
  background: rgba(23, 79, 150, 0.72);
  backdrop-filter: blur(14px);
}.company-intro-content {
  position: relative;
  min-height: calc(100svh - 64px);
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  column-gap: clamp(48px, 6vw, 90px);
  align-items: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(72px, 8vw, 110px) max(32px, calc((100vw - 1360px) / 2 + 32px));
  background:
    radial-gradient(circle at 80% 18%, rgba(0, 114, 206, 0.12), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f2f8ff 100%);
}.company-intro-logo,
.company-intro-content > .eyebrow,
.company-intro-content > h3,
.company-intro-subtitle,
.company-intro-copy {
  grid-column: 1;
}.company-intro-logo {
  align-self: end;
  width: min(190px, 62%);
}.company-intro-content .eyebrow {
  margin-top: 24px;
}.company-intro-content h3 {
  font-size: clamp(40px, 4vw, 64px);
}.company-intro-subtitle {
  margin-bottom: 24px;
}.company-intro-copy {
  display: block;
  max-width: 640px;
  color: #405063;
  font-size: 17px;
  line-height: 1.86;
}.company-principle-grid {
  grid-column: 2;
  grid-row: 1 / span 6;
  align-self: center;
}.company-principle-grid article {
  padding: 30px 0;
}.company-principle-grid span {
  font-size: 14px;
}.company-principle-grid p {
  max-width: 520px;
  font-size: 17px;
}@media (max-width: 980px) {.company-intro-media,
.company-intro-media img {
    min-height: 620px;
  }.company-intro-overlay {
    width: min(620px, calc(100vw - 48px));
  }.company-stat-grid {
    top: auto;
    bottom: 0;
  }.company-intro-content {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 56px 28px;
  }.company-intro-logo,
.company-intro-content > .eyebrow,
.company-intro-content > h3,
.company-intro-subtitle,
.company-intro-copy,
.company-principle-grid {
    grid-column: 1;
  }.company-principle-grid {
    grid-row: auto;
    margin-top: 28px;
  }
}@media (max-width: 640px) {.company-intro-media,
.company-intro-media img {
    min-height: 640px;
  }.company-intro-overlay {
    left: 20px;
    top: 82px;
    width: calc(100vw - 40px);
  }.company-intro-overlay::before {
    font-size: clamp(38px, 13vw, 54px);
  }.company-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 224px;
  }.company-stat-grid article {
    min-height: 112px;
  }.company-intro-content {
    padding: 44px 18px;
  }
}.company-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 52%) minmax(360px, 48%);
  grid-template-rows: minmax(720px, auto) auto;
  min-height: auto;
  width: 100%;
  padding: 0;
  overflow: clip;
  background: #fff;
}.company-intro::before,
.company-intro::after {
  display: none;
}.company-intro-media {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  min-height: 720px;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  animation: aboutMediaIn 0.8s ease both;
}.company-intro-media img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  object-position: center top;
  filter: none;
  transform: none;
}.company-intro-media::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(9, 41, 78, 0.01), rgba(9, 41, 78, 0.08)),
    linear-gradient(90deg, rgba(9, 41, 78, 0.08), rgba(9, 41, 78, 0.01) 64%);
}.company-intro-overlay {
  z-index: 2;
  left: clamp(30px, 4vw, 64px);
  top: clamp(44px, 7vw, 92px);
  bottom: auto;
  width: min(500px, calc(100% - 60px));
  color: #fff;
}.company-intro-overlay::before {
  content: none;
  display: none;
}.company-intro-overlay span {
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}.company-intro-overlay p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.75;
  text-shadow: 0 8px 24px rgba(0, 40, 82, 0.28);
}.company-intro-content {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 720px;
  width: auto;
  margin: 0;
  padding: clamp(64px, 7vw, 92px) clamp(48px, 5vw, 76px) clamp(58px, 5vw, 82px);
  background:
    radial-gradient(circle at 92% 18%, rgba(0, 114, 206, 0.055), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f9fcff 100%);
}.company-intro-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  width: min(100%, 720px);
}.company-intro-logo-mark {
  width: clamp(118px, 9vw, 148px);
  height: auto;
  display: block;
  flex: 0 0 auto;
  position: relative;
}.company-intro-logo-mark img {
  display: block;
  width: 100%;
  height: auto;
}.company-intro-heading::after {
  content: "";
  width: 2px;
  height: clamp(34px, 3vw, 42px);
  background: linear-gradient(180deg, rgba(16, 36, 61, 0.25), #10243d, rgba(16, 36, 61, 0.25));
  flex: 0 0 auto;
  order: 1;
}.company-intro-heading h3 {
  margin: 0;
  color: #10243d;
  font-size: clamp(34px, 2.65vw, 42px);
  line-height: 1.05;
  letter-spacing: 0;
  white-space: nowrap;
  order: 2;
  font-weight: 820;
}.company-intro-subtitle {
  width: min(100%, 720px);
  margin: 10px 0 32px;
  color: rgba(16, 36, 61, 0.86);
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 760;
  letter-spacing: 0.08em;
}.company-intro-content .company-intro-copy {
  display: block;
  max-width: 720px;
  margin: 0 0 17px;
  color: #34465c;
  font-size: clamp(16px, 1.05vw, 17px);
  line-height: 1.92;
  font-weight: 400;
  letter-spacing: 0.01em;
}.company-intro-content .company-intro-copy + .company-intro-copy {
  margin-top: 0;
}.company-intro-content .company-intro-copy strong {
  color: #0072ce;
  font-weight: 850;
}.company-intro-divider {
  width: min(100%, 720px);
  height: 1px;
  margin: 34px 0 8px;
  background: linear-gradient(90deg, rgba(0, 114, 206, 0.36), rgba(0, 114, 206, 0.055));
}.company-principle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
  max-width: 720px;
  margin-top: 0;
  border-top: 0;
}.company-principle-grid article {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  column-gap: 0;
  align-items: center;
  min-width: 0;
  min-height: 0;
  padding: 18px 0 20px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(0, 114, 206, 0.14);
  border-radius: 0;
  box-shadow: none;
}.company-principle-grid article:hover {
  transform: none;
  border-color: rgba(0, 114, 206, 0.30);
  box-shadow: none;
}.company-principle-grid article::before {
  content: "";
  position: absolute;
  display: block;
  left: -48px;
  top: 24px;
  width: 30px;
  height: 30px;
  border: 1.5px solid rgba(0, 114, 206, 0.82);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 47%, rgba(0, 114, 206, 0.95) 47% 53%, transparent 53%),
    linear-gradient(0deg, transparent 47%, rgba(0, 114, 206, 0.95) 47% 53%, transparent 53%),
    radial-gradient(circle, rgba(0, 114, 206, 0.10) 0 42%, transparent 44%);
}.company-principle-grid article::after {
  content: "";
  position: absolute;
  left: -16px;
  top: 18px;
  width: 2px;
  height: 48px;
  background: linear-gradient(180deg, rgba(0, 114, 206, 0.06), rgba(0, 114, 206, 0.62), rgba(0, 114, 206, 0.06));
}.company-principle-grid span {
  grid-column: 1;
  display: inline-flex;
  width: max-content;
  min-width: 0;
  margin: 0 0 8px;
  padding: 5px 11px;
  justify-content: center;
  color: #0072ce;
  background: rgba(0, 114, 206, 0.09);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  white-space: normal;
  line-height: 1;
}.company-principle-grid span::before {
  display: none;
}.company-principle-grid strong {
  grid-column: 1;
  display: block;
  min-width: 0;
  margin: 0 0 7px;
  color: #10243d;
  font-size: clamp(18px, 1.15vw, 20px);
  font-weight: 780;
  line-height: 1.25;
  overflow-wrap: break-word;
  word-break: break-word;
}.company-principle-grid p {
  grid-column: 1;
  max-width: 100%;
  margin: 0;
  color: #31465d;
  font-size: clamp(15px, 0.95vw, 16px);
  line-height: 1.68;
  font-weight: 430;
  overflow-wrap: break-word;
  word-break: break-word;
}.company-intro-media .company-principle-grid {
  position: absolute;
  z-index: 3;
  left: clamp(24px, 3.5vw, 48px);
  right: clamp(24px, 3.5vw, 48px);
  bottom: clamp(150px, 13vw, 182px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
}.company-intro-media .company-principle-grid article {
  min-height: 0;
  padding: 16px 18px 16px 54px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(6, 35, 68, 0.56);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 36px rgba(5, 30, 62, 0.22);
}.company-intro-media .company-principle-grid article::before {
  left: 18px;
  top: 20px;
  width: 24px;
  height: 24px;
  border-color: rgba(255, 255, 255, 0.52);
  background:
    linear-gradient(90deg, transparent 47%, rgba(255, 255, 255, 0.88) 47% 53%, transparent 53%),
    linear-gradient(0deg, transparent 47%, rgba(255, 255, 255, 0.88) 47% 53%, transparent 53%);
}.company-intro-media .company-principle-grid span {
  min-width: 0;
  margin-bottom: 8px;
  padding: 0;
  justify-content: flex-start;
  color: rgba(255, 255, 255, 0.86);
  background: transparent;
  font-size: 12px;
  letter-spacing: 0.02em;
}.company-intro-media .company-principle-grid p {
  color: #fff;
  font-size: clamp(13px, 0.92vw, 15px);
  line-height: 1.48;
  font-weight: 680;
}.company-stat-grid--hero {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: end;
  position: relative;
  z-index: 6;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  min-height: 128px;
  padding: 0 max(28px, calc((100vw - 1360px) / 2 + 28px));
  background: rgba(15, 63, 124, 0.78);
  backdrop-filter: blur(14px);
}.company-stat-grid--hero article {
  min-width: 0;
  min-height: 128px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 22px clamp(18px, 2.4vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}.company-stat-grid--hero article:last-child {
  border-right: 0;
}.company-stat-grid--hero strong,
.company-stat-grid--hero article:nth-child(4) strong {
  color: #fff;
  font-size: clamp(34px, 3.8vw, 58px);
  line-height: 1;
  letter-spacing: 0;
  white-space: normal;
  overflow-wrap: break-word;
}.company-stat-grid--hero article:nth-child(4) strong {
  font-size: clamp(30px, 3.3vw, 52px);
}.company-stat-grid--hero span {
  max-width: 18em;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.45;
  font-weight: 650;
  white-space: normal;
  overflow-wrap: break-word;
}.company-intro-detail {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  align-items: center;
  min-height: calc(100svh - 64px);
  padding: clamp(76px, 9vw, 128px) 28px;
  background:
    radial-gradient(circle at 15% 24%, rgba(0, 114, 206, 0.12), transparent 28%),
    radial-gradient(circle at 82% 78%, rgba(68, 139, 214, 0.11), transparent 30%),
    linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
}.company-intro-detail-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding-left: clamp(0px, 4vw, 56px);
  border-left: 6px solid #0072ce;
}.company-intro-detail .eyebrow {
  margin-bottom: 16px;
}.company-intro-detail h3 {
  margin: 0;
  color: #10243d;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: 0;
}.company-intro-detail .company-intro-subtitle {
  margin: 14px 0 34px;
}.company-intro-detail p:not(.eyebrow):not(.company-intro-subtitle) {
  max-width: 980px;
  margin: 0;
  color: #33475c;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.95;
}.company-intro-detail p:not(.eyebrow):not(.company-intro-subtitle) + p {
  margin-top: clamp(22px, 3vw, 34px);
}.company-intro-detail strong {
  color: #0072ce;
  font-weight: 850;
}@media (max-width: 1100px) {.company-intro {
    grid-template-columns: minmax(0, 48%) minmax(340px, 52%);
  }.company-stat-grid--hero {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
  }.company-stat-grid--hero article {
    min-height: 104px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }
}@media (max-width: 860px) {.company-intro {
    display: block;
  }.company-intro-media,
.company-intro-media img,
.company-intro-content {
    min-height: auto;
  }.company-intro-media {
    height: min(72vh, 620px);
  }.company-intro-media img {
    height: 100%;
  }.company-intro-overlay {
    left: 24px;
    top: 40px;
    width: calc(100% - 48px);
  }.company-intro-content {
    padding: 46px 24px 54px;
  }.company-intro-heading {
    gap: 12px;
  }.company-intro-logo-mark {
    width: clamp(104px, 28vw, 132px);
  }.company-intro-heading::after {
    height: 34px;
  }.company-intro-heading h3 {
    font-size: clamp(28px, 8vw, 34px);
  }.company-intro-subtitle {
    margin: 8px 0 24px;
    font-size: 13px;
  }.company-intro-content .company-intro-copy {
    font-size: clamp(15px, 4vw, 16px);
    line-height: 1.78;
  }.company-intro-divider {
    margin: 28px 0 6px;
  }.company-principle-grid {
    grid-template-columns: 1fr;
  }.company-intro-media .company-principle-grid {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 0 24px 28px;
    margin-top: -180px;
  }.company-stat-grid--hero {
    position: relative;
    display: grid;
  }.company-intro-detail {
    min-height: auto;
    padding: 64px 24px 78px;
  }.company-intro-detail-inner {
    padding-left: 24px;
  }
}@media (max-width: 560px) {.company-intro-media {
    height: 560px;
  }.company-intro-overlay::before {
    font-size: clamp(34px, 12vw, 50px);
  }.company-stat-grid--hero {
    grid-template-columns: 1fr;
  }.company-stat-grid--hero article {
    min-height: 92px;
    border-right: 0;
  }.company-principle-grid article {
    grid-template-columns: 30px 2px minmax(0, 1fr);
    column-gap: 12px;
    padding: 16px 0;
  }.company-principle-grid article::before {
    position: static;
    grid-column: 1;
    grid-row: 1 / span 3;
    align-self: start;
    width: 28px;
    height: 28px;
    margin-top: 5px;
  }.company-principle-grid article::after {
    position: static;
    display: block;
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
    height: 44px;
  }.company-principle-grid span,
.company-principle-grid strong,
.company-principle-grid p {
    grid-column: 3;
  }.company-principle-grid strong {
    font-size: 17px;
  }.company-principle-grid p {
    font-size: 15px;
  }
}.subsidiaries-section {
  min-height: calc(100svh - 64px);
  padding: clamp(72px, 8vw, 108px) clamp(24px, 5vw, 80px);
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 114, 206, 0.10), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(0, 114, 206, 0.08), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f3f9ff 62%, #ffffff 100%);
}.subsidiaries-heading,
.subsidiary-timeline {
  position: relative;
  z-index: 1;
  width: min(100%, 1400px);
  margin-left: auto;
  margin-right: auto;
}#subsidiaries .subsidiary-directory {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  margin: 0 auto clamp(54px, 6vw, 84px);
}.subsidiaries-heading {
  min-height: 0;
  display: block;
  margin-bottom: clamp(42px, 5vw, 68px);
  text-align: left;
}.subsidiaries-heading .eyebrow {
  justify-content: flex-start;
}.subsidiaries-heading h2 {
  max-width: 980px;
  font-size: clamp(34px, 3.8vw, 56px);
  text-transform: uppercase;
}.subsidiaries-heading p:not(.eyebrow) {
  max-width: 1080px;
  margin: 16px 0 0;
  color: #5c6d7e;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.72;
}.subsidiary-timeline {
  display: grid;
  gap: clamp(38px, 5vw, 58px);
}.subsidiary-timeline-nav {
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--timeline-count, 12), minmax(86px, 1fr));
  align-items: start;
  gap: 12px;
  min-width: min(1180px, 100%);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding-top: 28px;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 114, 206, 0.34) transparent;
}.subsidiary-timeline-nav::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 114, 206, 0.08), rgba(0, 114, 206, 0.34), rgba(0, 114, 206, 0.08));
}.subsidiary-timeline-point {
  position: relative;
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 26px;
  padding: 0;
  border: 0;
  color: #3e4a57;
  background: transparent;
  font: inherit;
  cursor: pointer;
}.subsidiary-timeline-point::before {
  content: "";
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  border: 4px solid rgba(0, 114, 206, 0.18);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(0, 114, 206, 0);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}.subsidiary-timeline-point span {
  font-size: clamp(14px, 1.05vw, 18px);
  font-weight: 620;
  line-height: 1;
  transition: color 180ms ease, transform 180ms ease, font-weight 180ms ease;
}.subsidiary-timeline-point.active::before {
  width: 26px;
  height: 26px;
  border-color: rgba(0, 114, 206, 0.28);
  box-shadow: 0 0 0 12px rgba(0, 114, 206, 0.10);
  transform: translateY(-4px);
}.subsidiary-timeline-point.active span {
  color: var(--blue);
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 850;
}.subsidiary-timeline-detail {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 0.2fr) minmax(0, 0.8fr);
  gap: clamp(32px, 4.5vw, 64px);
  align-items: start;
  padding: clamp(30px, 4.2vw, 48px) clamp(32px, 5vw, 68px);
  border-left: 6px solid var(--blue);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at 95% 16%, rgba(0, 114, 206, 0.12), transparent 28%);
  box-shadow: 0 28px 80px rgba(13, 47, 82, 0.10);
  overflow: hidden;
}.subsidiary-timeline-detail.is-changing .subsidiary-timeline-content,
.subsidiary-timeline-detail.is-changing .subsidiary-timeline-year {
  animation: timelineFadeIn 260ms ease both;
}.subsidiary-timeline-year span {
  display: block;
  color: #6c7783;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0.04em;
}.subsidiary-timeline-year strong {
  display: block;
  margin-top: 14px;
  color: #10243a;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.95;
  font-weight: 880;
  letter-spacing: 0;
}.subsidiary-timeline-content {
  min-width: 0;
}.subsidiary-timeline-content .eyebrow {
  margin-bottom: 12px;
  color: var(--blue);
}.subsidiary-timeline-content h3 {
  max-width: 980px;
  margin: 0;
  color: #10243a;
  font-size: clamp(24px, 2.15vw, 34px);
  line-height: 1.24;
  letter-spacing: 0;
}.subsidiary-timeline-position {
  margin: 14px 0 0;
  color: var(--blue);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.46;
  font-weight: 780;
}.subsidiary-timeline-copy {
  max-width: 1040px;
  margin: 16px 0 0;
  color: #526170;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.76;
  white-space: pre-line;
}.subsidiary-timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}.subsidiary-timeline-tags span {
  max-width: 100%;
  padding: 7px 11px;
  border: 1px solid rgba(0, 114, 206, 0.18);
  border-radius: 999px;
  color: #1d5d9d;
  background: rgba(0, 114, 206, 0.08);
  font-size: 12px;
  font-weight: 720;
  overflow-wrap: anywhere;
}.subsidiary-timeline-role {
  max-width: 980px;
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 114, 206, 0.14);
  color: #384b5e;
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.72;
}.subsidiary-timeline-role span {
  display: inline-block;
  margin-right: 12px;
  color: var(--blue);
  font-weight: 850;
}.subsidiary-timeline-role strong {
  font-weight: 620;
}.subsidiary-timeline-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 114, 206, 0.32);
  border-radius: 50%;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 26px rgba(13, 47, 82, 0.12);
  font-size: 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}.subsidiary-timeline-arrow:hover {
  color: #fff;
  background: var(--blue);
  transform: translateY(-50%) scale(1.06);
}.subsidiary-timeline-arrow--prev {
  left: 32px;
}.subsidiary-timeline-arrow--next {
  right: 32px;
}

@keyframes timelineFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}@media (max-width: 980px) {.subsidiaries-section {
    padding-left: 0;
    padding-right: 0;
  }.subsidiaries-heading,
.subsidiary-timeline {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }.subsidiary-timeline-nav {
    display: flex;
    gap: 48px;
    overflow-x: auto;
    padding: 28px 10px 8px;
    scrollbar-width: thin;
  }.subsidiary-timeline-nav::before {
    left: 10px;
    right: 10px;
    min-width: 720px;
  }.subsidiary-timeline-point {
    min-width: 84px;
  }.subsidiary-timeline-detail {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 30px 24px 40px;
  }.subsidiary-timeline-arrow {
    top: auto;
    bottom: 18px;
    transform: none;
  }.subsidiary-timeline-arrow:hover {
    transform: scale(1.06);
  }.subsidiary-timeline-arrow--prev {
    left: auto;
    right: 78px;
  }.subsidiary-timeline-arrow--next {
    right: 24px;
  }
}body[data-page="subsidiaries"] #subsidiaries.subsidiaries-section {
  min-height: auto;
  padding: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(0, 114, 206, 0.11), transparent 30%),
    radial-gradient(circle at 88% 34%, rgba(0, 91, 181, 0.08), transparent 32%),
    linear-gradient(180deg, #f3f9ff 0%, #ffffff 42%, #f7fbff 100%);
}body[data-page="subsidiaries"] #subsidiaries .subsidiaries-heading,
body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline {
  width: min(1440px, calc(100% - 160px));
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}body[data-page="subsidiaries"] #subsidiaries .subsidiaries-heading {
  padding: clamp(96px, 8vw, 120px) 0 clamp(56px, 6vw, 78px);
  margin-bottom: 0;
}body[data-page="subsidiaries"] #subsidiaries .subsidiaries-heading .eyebrow {
  color: #0072ce;
  letter-spacing: 0.12em;
}body[data-page="subsidiaries"] #subsidiaries .subsidiaries-heading h2 {
  max-width: 980px;
  color: #0b2341;
  font-size: clamp(42px, 4.2vw, 64px);
  line-height: 1.08;
  font-weight: 900;
}body[data-page="subsidiaries"] #subsidiaries .subsidiaries-heading p:not(.eyebrow) {
  max-width: 1120px;
  margin-top: 22px;
  color: #53677d;
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.86;
}body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline {
  gap: clamp(44px, 5vw, 66px);
  padding-bottom: clamp(96px, 8vw, 120px);
}body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-nav {
  min-width: 0;
  overflow-x: visible;
  padding: 36px 26px 18px;
  border: 1px solid rgba(205, 225, 245, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 45px rgba(15, 48, 87, 0.06);
}body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-nav::before {
  left: 46px;
  right: 46px;
  top: 46px;
  background: linear-gradient(90deg, rgba(0, 114, 206, 0.06), rgba(0, 114, 206, 0.34), rgba(0, 114, 206, 0.06));
}body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-point {
  gap: 24px;
  color: #53677d;
}body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-point::before {
  border-color: rgba(0, 114, 206, 0.22);
  background: #0072ce;
}body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-point span {
  color: #53677d;
}body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-point.active span {
  color: #0072ce;
}body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-detail {
  grid-template-columns: minmax(180px, 0.24fr) minmax(0, 0.76fr);
  gap: clamp(38px, 4.8vw, 70px);
  padding: clamp(52px, 5vw, 72px) clamp(56px, 6vw, 86px);
  border: 1px solid rgba(205, 225, 245, 0.9);
  border-left: 8px solid #0072ce;
  border-radius: 28px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 62%),
    radial-gradient(circle at 94% 14%, rgba(0, 114, 206, 0.11), transparent 32%);
  box-shadow: 0 16px 45px rgba(15, 48, 87, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-detail:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 65px rgba(15, 48, 87, 0.12);
}body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-year span {
  color: #53677d;
}body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-year strong,
body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-content h3 {
  color: #0b2341;
}body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-position,
body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-content .eyebrow,
body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-role span {
  color: #0072ce;
}body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-copy {
  max-width: 1080px;
  color: #53677d;
  line-height: 1.86;
}body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-tags span {
  border-color: rgba(190, 220, 245, 0.8);
  color: #005bb5;
  background: #f3f9ff;
}body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-role {
  border-top-color: rgba(190, 220, 245, 0.8);
  color: #53677d;
}body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-arrow {
  border-color: rgba(190, 220, 245, 0.9);
  color: #0072ce;
  box-shadow: 0 12px 28px rgba(15, 48, 87, 0.10);
}body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-arrow:hover {
  background: #0072ce;
}@media (max-width: 1180px) {body[data-page="subsidiaries"] #subsidiaries .subsidiaries-heading,
body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline {
    width: calc(100% - 64px);
    padding-left: 0;
    padding-right: 0;
  }body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-nav {
    overflow-x: auto;
    padding: 34px 20px 16px;
  }body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-nav::before {
    left: 32px;
    right: 32px;
    min-width: 760px;
  }body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-detail {
    grid-template-columns: 1fr;
    padding: 42px 36px 62px;
  }
}@media (max-width: 640px) {body[data-page="subsidiaries"] #subsidiaries .subsidiaries-heading,
body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline {
    width: calc(100% - 40px);
  }body[data-page="subsidiaries"] #subsidiaries .subsidiaries-heading {
    padding-top: 82px;
    padding-bottom: 44px;
  }body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline {
    gap: 32px;
    padding-bottom: 72px;
  }body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    overflow-x: visible;
    padding: 16px;
    border-radius: 20px;
  }body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-nav::before {
    display: none;
  }body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-point {
    min-width: 0;
    gap: 8px;
    padding: 12px 6px;
    border: 1px solid rgba(205, 225, 245, 0.9);
    border-radius: 16px;
    background: #ffffff;
  }body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-point::before {
    width: 12px;
    height: 12px;
    border-width: 2px;
    box-shadow: none;
  }body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-point.active {
    border-color: rgba(0, 114, 206, 0.32);
    background: #f3f9ff;
  }body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-point.active::before {
    width: 14px;
    height: 14px;
    box-shadow: 0 0 0 6px rgba(0, 114, 206, 0.10);
    transform: none;
  }body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-point span,
body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-point.active span {
    font-size: 14px;
  }body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-detail {
    padding: 32px 22px 72px;
    border-left-width: 5px;
    border-radius: 22px;
  }body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-detail:hover {
    transform: none;
  }body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-arrow--prev {
    right: 72px;
  }body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-arrow--next {
    right: 22px;
  }
}body[data-page="cases"] #cases.case-section {
  width: 100%;
  max-width: none;
  padding: 0 0 clamp(96px, 8vw, 120px);
  background:
    radial-gradient(circle at 12% 12%, rgba(0, 114, 206, 0.12), transparent 30%),
    radial-gradient(circle at 90% 22%, rgba(0, 91, 181, 0.08), transparent 28%),
    linear-gradient(180deg, #f3f9ff 0%, #ffffff 38%, #f7fbff 100%);
}body[data-page="cases"] #cases .section-heading,
body[data-page="cases"] #cases .client-case-grid {
  width: min(1440px, calc(100% - 160px));
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}body[data-page="cases"] #cases .section-heading {
  max-width: none;
  padding: clamp(96px, 8vw, 120px) 0 clamp(54px, 6vw, 76px);
  text-align: left;
}body[data-page="cases"] #cases .section-heading .eyebrow {
  justify-content: flex-start;
  color: #0072ce;
  letter-spacing: 0.12em;
}body[data-page="cases"] #cases .section-heading h2 {
  max-width: 920px;
  margin: 0;
  color: #0b2341;
  font-size: clamp(44px, 4vw, 64px);
  line-height: 1.1;
  font-weight: 900;
}body[data-page="cases"] #cases .section-heading p:not(.eyebrow) {
  max-width: 980px;
  margin: 22px 0 0;
  color: #53677d;
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.85;
}body[data-page="cases"] #cases .client-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}body[data-page="cases"] #cases .client-case-card {
  min-height: 0;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto auto;
  gap: 16px;
  padding: 32px;
  border: 1px solid rgba(205, 225, 245, 0.9);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(0, 114, 206, 0.055), rgba(255, 255, 255, 0) 42%),
    #ffffff;
  box-shadow: 0 16px 45px rgba(15, 48, 87, 0.06);
}body[data-page="cases"] #cases .client-case-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 114, 206, 0.30);
  background: #ffffff;
  box-shadow: 0 24px 65px rgba(15, 48, 87, 0.12);
}body[data-page="cases"] #cases .client-logo {
  min-height: 86px;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(205, 225, 245, 0.9);
  border-radius: 18px;
  color: #0b2341;
  background:
    linear-gradient(180deg, #ffffff 0%, #f3f9ff 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 900;
  text-align: center;
}body[data-page="cases"] #cases .client-case-card > span {
  width: fit-content;
  margin: 2px 0 0;
  padding: 8px 12px;
  border: 1px solid rgba(190, 220, 245, 0.8);
  border-radius: 999px;
  color: #0072ce;
  background: #f3f9ff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}body[data-page="cases"] #cases .client-case-card h3 {
  margin: 0;
  color: #0b2341;
  font-size: clamp(24px, 1.8vw, 30px);
  line-height: 1.22;
  font-weight: 850;
}body[data-page="cases"] #cases .client-case-card p {
  display: block;
  margin: 0;
  overflow: visible;
  color: #53677d;
  font-size: 16px;
  line-height: 1.82;
  -webkit-line-clamp: unset;
}body[data-page="cases"] #cases .case-service-tags {
  align-self: start;
  gap: 8px;
  margin-top: 2px;
}body[data-page="cases"] #cases .case-service-tags em {
  padding: 7px 10px;
  border: 1px solid rgba(190, 220, 245, 0.75);
  color: #005bb5;
  background: #f3f9ff;
  font-size: 12px;
  line-height: 1.1;
}body[data-page="cases"] #cases .client-case-card > b {
  position: static;
  justify-self: start;
  margin-top: 4px;
  color: #0072ce;
  font-size: 14px;
  opacity: 1;
  transform: none;
}body[data-page="cases"] #cases .client-case-card:hover > b {
  transform: translateX(4px);
}@media (max-width: 1180px) {body[data-page="cases"] #cases .section-heading,
body[data-page="cases"] #cases .client-case-grid {
    width: calc(100% - 64px);
  }body[data-page="cases"] #cases .client-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}@media (max-width: 640px) {body[data-page="cases"] #cases.case-section {
    padding-bottom: 72px;
  }body[data-page="cases"] #cases .section-heading,
body[data-page="cases"] #cases .client-case-grid {
    width: calc(100% - 40px);
  }body[data-page="cases"] #cases .section-heading {
    padding-top: 82px;
    padding-bottom: 42px;
  }body[data-page="cases"] #cases .section-heading h2 {
    font-size: clamp(34px, 10vw, 44px);
  }body[data-page="cases"] #cases .section-heading p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.76;
  }body[data-page="cases"] #cases .client-case-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }body[data-page="cases"] #cases .client-case-card {
    padding: 26px 22px;
    border-radius: 22px;
  }body[data-page="cases"] #cases .client-logo {
    min-height: 76px;
    border-radius: 16px;
    font-size: clamp(22px, 8vw, 30px);
  }
}body[data-page="bluewhale"] #bluewhale.bluewhale-section {
  align-content: start;
  gap: clamp(72px, 7vw, 104px);
  padding: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 114, 206, 0.16), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(0, 91, 181, 0.10), transparent 28%),
    linear-gradient(180deg, #f3f9ff 0%, #ffffff 40%, #f7fbff 100%);
}body[data-page="bluewhale"] #bluewhale .bluewhale-hero,
body[data-page="bluewhale"] #bluewhale .bluewhale-grid,
body[data-page="bluewhale"] #bluewhale .system-capabilities,
body[data-page="bluewhale"] #bluewhale .bluewhale-flow {
  width: min(1440px, calc(100% - 160px));
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}body[data-page="bluewhale"] #bluewhale .bluewhale-hero {
  grid-template-columns: minmax(460px, 0.82fr) minmax(560px, 1.18fr);
  gap: clamp(48px, 5vw, 78px);
  align-items: center;
  justify-items: stretch;
  padding: clamp(96px, 8vw, 120px) 0 0;
  text-align: left;
}body[data-page="bluewhale"] #bluewhale .bluewhale-hero > div:first-child {
  max-width: 660px;
  justify-self: start;
  text-align: left;
}body[data-page="bluewhale"] #bluewhale .bluewhale-hero .eyebrow {
  color: #0072ce;
  letter-spacing: 0.12em;
}body[data-page="bluewhale"] #bluewhale .bluewhale-hero h2 {
  max-width: 660px;
  margin: 0;
  color: #0b2341;
  font-size: clamp(44px, 4.4vw, 68px);
  line-height: 1.08;
  font-weight: 900;
  word-break: keep-all;
  overflow-wrap: normal;
}body[data-page="bluewhale"] #bluewhale .bluewhale-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: #53677d;
  font-size: clamp(17px, 1.15vw, 19px);
  line-height: 1.85;
}body[data-page="bluewhale"] #bluewhale .bluewhale-tags {
  justify-content: flex-start;
  gap: 10px;
  margin-top: 30px;
}body[data-page="bluewhale"] #bluewhale .bluewhale-tags span {
  padding: 9px 14px;
  border: 1px solid rgba(190, 220, 245, 0.8);
  color: #005bb5;
  background: rgba(255, 255, 255, 0.78);
}body[data-page="bluewhale"] #bluewhale .bluewhale-hero .system-window {
  width: 100%;
  max-width: none;
  justify-self: stretch;
  border-radius: 24px;
}body[data-page="bluewhale"] #bluewhale .system-window,
body[data-page="bluewhale"] #bluewhale .capability-showcase figure {
  border: 1px solid rgba(205, 225, 245, 0.9);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 48, 87, 0.12);
}body[data-page="bluewhale"] #bluewhale .system-window img {
  width: 100%;
  min-height: 360px;
  max-height: 520px;
  object-fit: contain;
  background: #ffffff;
}body[data-page="bluewhale"] #bluewhale .window-bar {
  padding: 14px 18px;
  border-bottom-color: rgba(205, 225, 245, 0.9);
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}body[data-page="bluewhale"] #bluewhale .bluewhale-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}body[data-page="bluewhale"] #bluewhale .bluewhale-card {
  min-height: 0;
  gap: 18px;
  padding: 34px;
  border: 1px solid rgba(205, 225, 245, 0.9);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(0, 114, 206, 0.07), rgba(255, 255, 255, 0) 46%),
    #ffffff;
  box-shadow: 0 16px 45px rgba(15, 48, 87, 0.06);
}body[data-page="bluewhale"] #bluewhale .bluewhale-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 114, 206, 0.34);
  background: #ffffff;
  box-shadow: 0 24px 65px rgba(15, 48, 87, 0.12);
}body[data-page="bluewhale"] #bluewhale .bluewhale-card span,
body[data-page="bluewhale"] #bluewhale .capability-showcase span {
  color: #0072ce;
}body[data-page="bluewhale"] #bluewhale .bluewhale-card span {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  color: #0072ce;
  background: #f3f9ff;
  box-shadow: inset 0 0 0 1px rgba(190, 220, 245, 0.8);
}body[data-page="bluewhale"] #bluewhale .bluewhale-card h3,
body[data-page="bluewhale"] #bluewhale .system-capabilities .section-heading h3,
body[data-page="bluewhale"] #bluewhale .capability-showcase h3,
body[data-page="bluewhale"] #bluewhale .bluewhale-flow h3 {
  color: #0b2341;
}body[data-page="bluewhale"] #bluewhale .bluewhale-card h3 {
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.24;
}body[data-page="bluewhale"] #bluewhale .bluewhale-card p,
body[data-page="bluewhale"] #bluewhale .system-capabilities .section-heading p,
body[data-page="bluewhale"] #bluewhale .capability-showcase p {
  color: #53677d;
}body[data-page="bluewhale"] #bluewhale .bluewhale-card p {
  font-size: 16px;
  line-height: 1.84;
}body[data-page="bluewhale"] #bluewhale .system-capabilities {
  gap: 28px;
}body[data-page="bluewhale"] #bluewhale .system-capabilities .section-heading {
  max-width: 940px;
  margin-bottom: 8px;
}body[data-page="bluewhale"] #bluewhale .system-capabilities .section-heading h3,
body[data-page="bluewhale"] #bluewhale .bluewhale-flow h3 {
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1.14;
}body[data-page="bluewhale"] #bluewhale .system-capabilities .section-heading p {
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.85;
}body[data-page="bluewhale"] #bluewhale .capability-showcase {
  grid-template-columns: minmax(340px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(34px, 4vw, 58px);
  padding: clamp(34px, 4vw, 52px);
  border: 1px solid rgba(205, 225, 245, 0.9);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 16px 45px rgba(15, 48, 87, 0.06);
}body[data-page="bluewhale"] #bluewhale .capability-showcase.reverse {
  grid-template-columns: minmax(0, 0.58fr) minmax(340px, 0.42fr);
}body[data-page="bluewhale"] #bluewhale .capability-showcase h3 {
  font-size: clamp(25px, 2.3vw, 36px);
}body[data-page="bluewhale"] #bluewhale .capability-showcase p {
  font-size: 16px;
  line-height: 1.82;
}body[data-page="bluewhale"] #bluewhale .capability-showcase figure {
  padding: 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f9ff 100%);
}body[data-page="bluewhale"] #bluewhale .capability-showcase img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: 16px;
  background: #ffffff;
}body[data-page="bluewhale"] #bluewhale .bluewhale-previewable::after {
  border-color: rgba(190, 220, 245, 0.9);
  color: #005bb5;
  background: rgba(255, 255, 255, 0.92);
}body[data-page="bluewhale"] #bluewhale .bluewhale-flow {
  gap: 34px;
  padding: clamp(42px, 5vw, 60px);
  border: 1px solid rgba(205, 225, 245, 0.9);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 22%, rgba(0, 114, 206, 0.10), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f3f9ff 100%);
  box-shadow: 0 16px 45px rgba(15, 48, 87, 0.06);
}body[data-page="bluewhale"] #bluewhale .flow-track {
  gap: 0;
}body[data-page="bluewhale"] #bluewhale .flow-track span {
  color: #53677d;
}body[data-page="bluewhale"] #bluewhale .flow-track span::before {
  width: 18px;
  height: 18px;
  border-color: #ffffff;
  background: #0072ce;
  box-shadow: 0 0 0 6px rgba(0, 114, 206, 0.10);
}body[data-page="bluewhale"] #bluewhale .flow-track span::after {
  top: 9px;
  height: 2px;
  background: rgba(0, 114, 206, 0.24);
}.bluewhale-lightbox {
  background: rgba(0, 15, 35, 0.78);
}.bluewhale-lightbox img {
  max-width: min(90vw, 1440px);
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
}@media (max-width: 1180px) {body[data-page="bluewhale"] #bluewhale .bluewhale-hero,
body[data-page="bluewhale"] #bluewhale .bluewhale-grid,
body[data-page="bluewhale"] #bluewhale .system-capabilities,
body[data-page="bluewhale"] #bluewhale .bluewhale-flow {
    width: calc(100% - 64px);
  }body[data-page="bluewhale"] #bluewhale .bluewhale-hero {
    grid-template-columns: 1fr;
    padding-top: 92px;
    text-align: left;
  }body[data-page="bluewhale"] #bluewhale .bluewhale-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }body[data-page="bluewhale"] #bluewhale .capability-showcase,
body[data-page="bluewhale"] #bluewhale .capability-showcase.reverse {
    grid-template-columns: 1fr;
  }body[data-page="bluewhale"] #bluewhale .capability-showcase.reverse > div {
    order: 0;
  }
}@media (max-width: 640px) {body[data-page="bluewhale"] #bluewhale.bluewhale-section {
    gap: 58px;
  }body[data-page="bluewhale"] #bluewhale .bluewhale-hero,
body[data-page="bluewhale"] #bluewhale .bluewhale-grid,
body[data-page="bluewhale"] #bluewhale .system-capabilities,
body[data-page="bluewhale"] #bluewhale .bluewhale-flow {
    width: calc(100% - 40px);
  }body[data-page="bluewhale"] #bluewhale .bluewhale-hero {
    gap: 34px;
    padding-top: 78px;
  }body[data-page="bluewhale"] #bluewhale .bluewhale-hero h2 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.12;
  }body[data-page="bluewhale"] #bluewhale .bluewhale-hero p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.76;
  }body[data-page="bluewhale"] #bluewhale .system-window,
body[data-page="bluewhale"] #bluewhale .capability-showcase figure {
    border-radius: 20px;
  }body[data-page="bluewhale"] #bluewhale .system-window img {
    min-height: 220px;
    max-height: 320px;
  }body[data-page="bluewhale"] #bluewhale .bluewhale-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }body[data-page="bluewhale"] #bluewhale .bluewhale-card,
body[data-page="bluewhale"] #bluewhale .capability-showcase,
body[data-page="bluewhale"] #bluewhale .bluewhale-flow {
    border-radius: 22px;
    padding: 26px 22px;
  }body[data-page="bluewhale"] #bluewhale .capability-showcase figure {
    padding: 10px;
  }body[data-page="bluewhale"] #bluewhale .capability-showcase img {
    max-height: 300px;
  }body[data-page="bluewhale"] #bluewhale .flow-track {
    grid-template-columns: 1fr;
    gap: 18px;
  }body[data-page="bluewhale"] #bluewhale .flow-track span {
    grid-template-columns: 22px minmax(0, 1fr);
    justify-items: start;
    text-align: left;
  }body[data-page="bluewhale"] #bluewhale .flow-track span::after {
    top: 18px;
    left: 8px;
    right: auto;
    bottom: -22px;
    width: 2px;
    height: auto;
  }.bluewhale-lightbox img {
    max-width: 94vw;
    max-height: 80vh;
  }
}body[data-page="about"] #about.about-profile-state {
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 114, 206, 0.10), transparent 30%),
    linear-gradient(180deg, #f3f9ff 0%, #ffffff 34%, #ffffff 100%);
}body[data-page="about"] #about.about-profile-state .company-intro {
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(0, 0.94fr) minmax(480px, 1.06fr);
  grid-template-rows: auto auto;
  gap: 0;
  padding: clamp(96px, 8vw, 120px) max(72px, calc((100vw - 1440px) / 2 + 80px)) 0;
  background:
    linear-gradient(90deg, #f3f9ff 0%, #ffffff 56%, #eef6ff 100%);
}body[data-page="about"] #about.about-profile-state .company-intro-media {
  min-height: 680px;
  border: 1px solid rgba(205, 225, 245, 0.9);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(15, 48, 87, 0.12);
}body[data-page="about"] #about.about-profile-state .company-intro-media img {
  min-height: 680px;
  object-fit: cover;
  object-position: center top;
}body[data-page="about"] #about.about-profile-state .company-intro-media::before {
  background:
    linear-gradient(180deg, rgba(9, 41, 78, 0.04), rgba(9, 41, 78, 0.32)),
    linear-gradient(90deg, rgba(0, 91, 181, 0.18), transparent 70%);
}body[data-page="about"] #about.about-profile-state .company-intro-content {
  min-height: 680px;
  padding: clamp(54px, 5vw, 78px) clamp(40px, 5vw, 76px);
  background:
    radial-gradient(circle at 92% 14%, rgba(0, 114, 206, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.86);
}body[data-page="about"] #about.about-profile-state .company-intro-heading h3,
body[data-page="about"] #about.about-profile-state .company-intro-detail h3,
body[data-page="about"] #about.about-profile-state .honor-overview h3,
body[data-page="about"] #about.about-profile-state .honor-display-copy h3 {
  color: #0b2341;
}body[data-page="about"] #about.about-profile-state .company-intro-subtitle,
body[data-page="about"] #about.about-profile-state .company-intro-content .eyebrow,
body[data-page="about"] #about.about-profile-state .company-intro-detail .eyebrow {
  color: #0072ce;
}body[data-page="about"] #about.about-profile-state .company-intro-content .company-intro-copy,
body[data-page="about"] #about.about-profile-state .company-intro-detail p:not(.eyebrow):not(.company-intro-subtitle) {
  color: #53677d;
  line-height: 1.88;
}body[data-page="about"] #about.about-profile-state .company-stat-grid--hero article,
body[data-page="about"] #about.about-profile-state .company-principle-grid article,
body[data-page="about"] #about.about-profile-state .honor-overview,
body[data-page="about"] #about.about-profile-state .honor-display-card {
  border: 1px solid rgba(205, 225, 245, 0.9);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(15, 48, 87, 0.06);
}body[data-page="about"] #about.about-profile-state .company-principle-grid {
  gap: 14px;
}body[data-page="about"] #about.about-profile-state .company-principle-grid article {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(205, 225, 245, 0.9);
}body[data-page="about"] #about.about-profile-state .company-principle-grid article::before,
body[data-page="about"] #about.about-profile-state .company-principle-grid article::after {
  display: none;
}body[data-page="about"] #about.about-profile-state .company-intro-detail {
  min-height: auto;
  padding: clamp(96px, 8vw, 120px) 0;
  background: #fff;
}body[data-page="about"] #about.about-profile-state .company-intro-detail-inner {
  width: min(1120px, 100%);
}body[data-page="about"] #honors.company-honors-section {
  scroll-margin-top: 96px;
  margin-top: 0;
  padding: 96px max(24px, calc((100vw - 1440px) / 2 + 80px));
  background:
    radial-gradient(circle at 12% 12%, rgba(0, 114, 206, 0.10), transparent 30%),
    linear-gradient(180deg, #f3f9ff 0%, #ffffff 72%, #ffffff 100%);
}body[data-page="about"] #honors .honor-showcase,
body[data-page="honors"] #honors .honor-showcase {
  width: min(1320px, 100%);
  gap: 28px;
}body[data-page="about"] #honors .honor-overview {
  padding: clamp(34px, 4vw, 48px);
  background:
    radial-gradient(circle at 92% 18%, rgba(0, 114, 206, 0.10), transparent 32%),
    #fff;
}body[data-page="about"] #honors .honor-display-card,
body[data-page="honors"] #honors .honor-display-card {
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(28px, 4vw, 42px);
}body[data-page="about"] #honors .honor-image-link {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(205, 225, 245, 0.9);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(15, 48, 87, 0.06);
  cursor: zoom-in;
}body[data-page="about"] #honors .honor-image-link::after {
  content: "ç‚¹å‡»æ”¾å¤§";
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 33, 61, 0.64);
  font-size: 12px;
  font-weight: 760;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}html[lang="en"] body[data-page="about"] #honors .honor-image-link::after {
  content: "Click to enlarge";
}body[data-page="about"] #honors .honor-image-link:hover::after,
body[data-page="about"] #honors .honor-image-link:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}body[data-page="about"] #honors .honor-image-link img {
  width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: contain;
}body[data-page="about"] #honors .honor-image-link:hover img {
  transform: scale(1.012);
}.honor-lightbox {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 34px;
  background: rgba(0, 15, 35, 0.78);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}.honor-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}.honor-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}.honor-lightbox-close {
  position: fixed;
  z-index: 1201;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  font-size: 34px;
  line-height: 1;
  backdrop-filter: blur(10px);
}.honor-lightbox-close:hover,
.honor-lightbox-close:focus-visible {
  background: rgba(255, 255, 255, 0.24);
}@media (max-width: 1023px) {body[data-page="about"] #about.about-profile-state .company-intro {
    grid-template-columns: 1fr;
    padding: 96px 48px 0;
  }body[data-page="about"] #about.about-profile-state .company-intro-media,
body[data-page="about"] #about.about-profile-state .company-intro-media img {
    min-height: 520px;
  }body[data-page="about"] #about.about-profile-state .company-intro-content {
    min-height: auto;
    padding: 48px 0 72px;
  }body[data-page="about"] #honors.company-honors-section {
    padding: 82px 48px;
  }body[data-page="about"] #honors .honor-display-card {
    grid-template-columns: 1fr;
  }
}@media (max-width: 640px) {body[data-page="about"] #about.about-profile-state .company-intro {
    padding: 82px 20px 0;
  }body[data-page="about"] #about.about-profile-state .company-intro-media,
body[data-page="about"] #about.about-profile-state .company-intro-media img {
    min-height: 420px;
  }body[data-page="about"] #about.about-profile-state .company-intro-media {
    border-radius: 20px;
  }body[data-page="about"] #about.about-profile-state .company-intro-content {
    padding: 38px 0 58px;
  }body[data-page="about"] #about.about-profile-state .company-intro-heading {
    flex-wrap: wrap;
  }body[data-page="about"] #about.about-profile-state .company-intro-heading h3 {
    white-space: normal;
  }body[data-page="about"] #honors.company-honors-section {
    padding: 64px 20px;
  }body[data-page="about"] #honors .honor-overview,
body[data-page="about"] #honors .honor-display-card {
    border-radius: 20px;
  }body[data-page="about"] #honors .honor-image-link {
    min-height: 180px;
    border-radius: 18px;
  }.honor-lightbox {
    padding: 18px;
  }.honor-lightbox img {
    max-width: 94vw;
    max-height: 80vh;
  }.honor-lightbox-close {
    top: 14px;
    right: 14px;
    width: 52px;
    height: 52px;
  }
}.business-modern-section {
  width: 100%;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
  padding: 0;
  background: #fff;
}.business-modern-shell {
  width: 100%;
  margin: 0 auto;
}.business-modern-list {
  width: 100%;
  background:
    radial-gradient(circle at 86% 24%, rgba(0, 114, 206, 0.08), transparent 30%),
    radial-gradient(circle at 10% 46%, rgba(0, 91, 181, 0.05), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f3f9ff 42%, #ffffff 100%);
}.business-modern-list.is-hidden {
  display: none;
}.business-modern-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(560px, 0.95fr) minmax(520px, 1.05fr);
  gap: 72px;
  align-items: center;
  overflow: hidden;
  padding: 84px max(80px, calc((100vw - 1440px) / 2 + 80px)) 92px;
  background:
    linear-gradient(90deg, #f3f9ff 0%, #ffffff 55%, #eef6ff 100%);
}.business-modern-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 114, 206, 0.10), transparent 30%),
    linear-gradient(90deg, rgba(243, 249, 255, 0.72) 0%, rgba(255, 255, 255, 0.34) 52%, rgba(255, 255, 255, 0) 100%);
}.business-hero-copy {
  position: relative;
  z-index: 3;
  width: 100%;
  min-width: 0;
  max-width: 680px;
  padding: 0;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}.business-hero-copy .eyebrow,
.business-core-heading .eyebrow {
  color: #0072ce;
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.12em;
}.business-hero-copy h2 {
  margin: 16px 0 0;
  color: #0b2341;
  font-size: clamp(64px, 4.8vw, 72px);
  line-height: 1.05;
  font-weight: 900;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}.business-hero-copy h3 {
  max-width: 680px;
  margin: 18px 0 0;
  color: #0b2341;
  font-size: clamp(32px, 2.6vw, 40px);
  line-height: 1.25;
  font-weight: 800;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}.business-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: #53677d;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.9;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}.business-hero-media {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(15, 48, 87, 0.16);
}.business-hero-media::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.10) 36%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}.business-hero-media img {
  width: 100%;
  height: clamp(440px, 32vw, 500px);
  min-height: 0;
  object-fit: cover;
  object-position: center;
  display: block;
}.business-metrics-strip strong {
  color: #0072ce;
  font-size: clamp(38px, 3vw, 42px);
  line-height: 1;
  letter-spacing: 0;
}.business-metrics-strip strong span {
  margin-left: 4px;
  font-size: 0.46em;
}.business-core-heading,
.business-modern-grid,
.business-why {
  width: min(1440px, calc(100% - 160px));
  margin-left: auto;
  margin-right: auto;
}.business-core-heading {
  padding: 104px 0 48px;
  text-align: center;
}.business-core-heading h3 {
  margin: 10px 0 0;
  color: #0b2341;
  font-size: clamp(42px, 3.2vw, 48px);
  line-height: 1.15;
}.business-core-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 14px auto 0;
  color: #53677d;
  font-size: 17px;
  line-height: 1.78;
}.business-modern-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  padding: 0;
}.business-modern-card {
  display: grid;
  grid-template-rows: 270px 1fr;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(205, 225, 245, 0.9);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(20, 70, 120, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}.business-modern-card:hover,
.business-modern-card:focus-visible {
  border-color: rgba(0, 114, 206, 0.28);
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(20, 70, 120, 0.14);
}.business-modern-card figure {
  height: 270px;
  margin: 0;
  overflow: hidden;
  background: #dfeefa;
}.business-modern-card img,
.business-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}.business-modern-card:hover figure img {
  transform: scale(1.04);
}.business-modern-card-body {
  display: grid;
  grid-template-rows: auto auto auto auto auto;
  align-content: start;
  gap: 16px;
  padding: 32px;
}.business-modern-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #0072ce;
  font-weight: 850;
}.business-modern-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #0072ce, #0a57a6);
  font-size: 13px;
  letter-spacing: 0;
  box-shadow: 0 14px 28px rgba(0, 114, 206, 0.24);
}.business-modern-card h3 {
  margin: 0;
  color: #0b2341;
  font-size: clamp(26px, 2vw, 30px);
  line-height: 1.22;
}.business-modern-card p {
  margin: 0;
  color: #53677d;
  font-size: 16px;
  line-height: 1.8;
}.business-modern-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}.business-modern-tags span {
  max-width: 100%;
  padding: 6px 9px;
  border: 1px solid rgba(0, 114, 206, 0.16);
  border-radius: 999px;
  color: #005bb5;
  background: rgba(0, 114, 206, 0.08);
  font-size: 12px;
  font-weight: 760;
  overflow-wrap: anywhere;
}.business-modern-card em,
.business-detail-cta a {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-top: 6px;
  color: #0072ce;
  font-style: normal;
  font-size: 14px;
  font-weight: 820;
}.business-metrics-strip {
  width: 100%;
  max-width: none;
  margin-top: 0;
  padding: 44px clamp(24px, 5vw, 72px);
  background: linear-gradient(90deg, #004c9a 0%, #0072ce 55%, #005bb5 100%);
  box-shadow: none;
}.business-metrics-inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}.business-metrics-strip article {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}.business-metrics-strip article:last-child {
  border-right: 0;
}.business-metric-icon {
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  font-weight: 800;
}.business-metrics-strip strong {
  color: #fff;
}.business-metrics-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}.business-why {
  padding: 92px 0 96px;
  background: transparent;
}.business-modern-grid + .business-why {
  margin-top: 92px;
}.business-why-heading {
  text-align: center;
}.business-why-heading h3 {
  margin: 0;
  color: #0b2341;
  font-size: clamp(38px, 3vw, 42px);
  line-height: 1.15;
}.business-why-heading p {
  max-width: 760px;
  margin: 16px auto 0;
  color: #53677d;
  font-size: 17px;
  line-height: 1.78;
}.business-why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}.business-why-grid article {
  min-height: 0;
  padding: 0 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}.business-why-grid article:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}.business-why-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #0072ce;
  background: rgba(0, 114, 206, 0.10);
  font-size: 20px;
  font-weight: 850;
}.business-why-grid h4 {
  margin: 0;
  color: #0b2341;
  font-size: 20px;
  line-height: 1.25;
}.business-why-grid p {
  margin: 10px 0 0;
  color: #53677d;
  font-size: 14px;
  line-height: 1.72;
}.business-modern-details {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: clamp(104px, 10vw, 136px) clamp(64px, 5vw, 96px);
}.business-detail-page {
  display: none;
}.business-detail-page.active {
  display: block;
}.business-modern-back {
  margin-bottom: 22px;
}.business-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(28px, 5vw, 60px);
  border: 1px solid rgba(0, 114, 206, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 60px rgba(13, 47, 82, 0.10);
}.business-detail-hero h3 {
  margin: 10px 0 0;
  color: #10243d;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
}.business-detail-hero p:not(.eyebrow) {
  margin: 18px 0 0;
  color: #526170;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.82;
}.business-detail-page[data-service-detail="business/warehousing-processing"] .business-detail-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: start;
}.business-detail-page[data-service-detail="business/transportation-delivery"] .business-detail-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: start;
}.business-detail-page[data-service-detail="business/warehousing-processing"] .business-detail-hero-intro {
  display: grid;
  gap: 14px;
  margin-top: 20px;
  color: #4d6278;
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.82;
}.business-detail-page[data-service-detail="business/transportation-delivery"] .business-detail-hero-intro {
  display: grid;
  gap: 14px;
  margin-top: 20px;
  color: #4d6278;
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.82;
}.business-detail-page[data-service-detail="business/warehousing-processing"] .business-detail-hero-intro p {
  max-width: 720px;
  margin: 0;
}.business-detail-page[data-service-detail="business/transportation-delivery"] .business-detail-hero-intro p {
  max-width: 720px;
  margin: 0;
}.business-detail-page[data-service-detail="business/warehousing-processing"] .business-detail-hero-intro strong {
  color: #0072ce;
  font-weight: 850;
}.business-detail-page[data-service-detail="business/transportation-delivery"] .business-detail-hero-intro strong {
  color: #0072ce;
  font-weight: 850;
}.business-detail-hero figure {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #dfeefa;
}.business-detail-block {
  margin-top: 34px;
}.business-detail-block h4,
.business-detail-cta h4 {
  margin: 0 0 18px;
  color: #10243d;
  font-size: clamp(24px, 2.3vw, 34px);
}.business-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}.business-capability-grid article {
  min-height: 154px;
  padding: 22px;
  border: 1px solid rgba(0, 114, 206, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
}.business-capability-grid article span {
  width: 28px;
  height: 4px;
  display: block;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #0072ce;
}.business-capability-grid strong {
  display: block;
  color: #10243d;
  font-size: 18px;
  line-height: 1.35;
}.business-capability-grid p {
  margin: 10px 0 0;
  color: #5c6672;
  font-size: 14px;
  line-height: 1.65;
}.business-process-line {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}.business-process-line span {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 14px;
  color: #1d5d9d;
  background: rgba(0, 114, 206, 0.09);
  font-size: 13px;
  font-weight: 780;
  text-align: center;
}.business-detail-cta {
  margin-top: 34px;
  padding: 28px;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, #10243d, #0072ce);
}.business-detail-cta h4,
.business-detail-cta p {
  color: #fff;
}.business-detail-cta p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}.business-detail-cta a {
  min-height: 42px;
  margin-top: 16px;
  padding: 0 18px;
  border-radius: 999px;
  color: #005bb5;
  background: #fff;
}@media (max-width: 1399px) {.business-capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }.business-metrics-inner,
.business-why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }.business-detail-hero {
    grid-template-columns: 1fr;
  }
}@media (max-width: 1100px) {.business-detail-page[data-service-detail="business/warehousing-processing"] .business-detail-hero {
    grid-template-columns: 1fr;
  }.business-detail-page[data-service-detail="business/transportation-delivery"] .business-detail-hero {
    grid-template-columns: 1fr;
  }.business-detail-page[data-service-detail="business/warehousing-processing"] .business-detail-hero-intro p {
    max-width: none;
  }.business-detail-page[data-service-detail="business/transportation-delivery"] .business-detail-hero-intro p {
    max-width: none;
  }
}@media (max-width: 560px) {.business-detail-page[data-service-detail="business/warehousing-processing"] .business-detail-hero-intro {
    gap: 12px;
    font-size: 15.5px;
    line-height: 1.78;
  }.business-detail-page[data-service-detail="business/transportation-delivery"] .business-detail-hero-intro {
    gap: 12px;
    font-size: 15.5px;
    line-height: 1.78;
  }
}@media (max-width: 1023px) {.business-core-heading,
.business-modern-grid,
.business-why {
    width: min(100%, calc(100% - 96px));
  }.business-modern-hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 96px 48px 72px;
  }.business-hero-copy {
    width: 100%;
    max-width: 760px;
    padding: 0;
  }.business-hero-media {
    width: 100%;
  }.business-hero-media img {
    height: 320px;
  }.business-modern-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }.business-metrics-inner,
.business-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}@media (max-width: 767px) {.business-modern-hero {
    padding: 84px 24px 56px;
    gap: 26px;
  }.business-hero-copy {
    padding: 0;
  }.business-hero-copy h2 {
    font-size: clamp(36px, 12vw, 48px);
  }.business-hero-copy h3 {
    font-size: clamp(22px, 7vw, 30px);
  }.business-hero-media {
    border-radius: 20px;
  }.business-hero-media img {
    height: 250px;
  }.business-core-heading,
.business-modern-grid,
.business-why {
    width: calc(100% - 48px);
    padding-left: 0;
    padding-right: 0;
  }.business-core-heading {
    padding-top: 92px;
    padding-bottom: 36px;
  }.business-modern-grid,
.business-capability-grid,
.business-process-line,
.business-metrics-inner,
.business-why-grid {
    grid-template-columns: 1fr;
  }.business-modern-card {
    min-height: 0;
    border-radius: 18px;
    grid-template-rows: 220px 1fr;
  }.business-modern-card figure {
    height: 220px;
  }.business-detail-hero {
    padding: 24px;
  }.business-modern-details {
    padding: 84px 24px;
  }.business-metrics-strip {
    margin-top: 0;
    padding: 34px 20px;
  }.business-why {
    padding-top: 64px;
    padding-bottom: 72px;
  }.business-metrics-strip article {
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }.business-metrics-strip article:last-child {
    border-bottom: 0;
  }
}@media (max-width: 560px) {.subsidiaries-heading h2 {
    font-size: clamp(30px, 9vw, 38px);
  }.subsidiaries-heading p:not(.eyebrow) {
    font-size: 15px;
  }.subsidiary-timeline {
    gap: 34px;
  }.subsidiary-timeline-point span {
    font-size: 14px;
  }.subsidiary-timeline-point.active span {
    font-size: 22px;
  }.subsidiary-timeline-year strong {
    font-size: 42px;
  }.subsidiary-timeline-content h3 {
    font-size: 24px;
  }.subsidiary-timeline-position {
    font-size: 16px;
  }.subsidiary-timeline-copy {
    font-size: 15px;
  }.subsidiary-timeline-detail {
    border-left-width: 4px;
  }
}/* Responsive audit fixes: keep every page stable across desktop,
tablet,
and mobile. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}img,
video,
canvas,
svg {
  max-width: 100%;
}.section,
.page-section,
.home-section,
.business-modern-section,
.company-honors-section {
  min-width: 0;
}.section-copy,
.section-heading,
.home-section-heading,
.business-hero-copy,
.business-core-heading,
.business-modern-card,
.business-modern-card-body,
.business-detail-page,
.business-detail-hero,
.business-why,
.company-intro,
.company-intro-content,
.subsidiaries-heading,
.subsidiary-timeline,
.subsidiary-timeline-detail,
.bluewhale-hero,
.bluewhale-card,
.capability-showcase,
.case-card,
.client-case-card {
  min-width: 0;
}.section-heading h2,
.section-copy h2,
.home-section-heading h2,
.business-hero-copy h2,
.business-hero-copy h3,
.business-core-heading h3,
.business-why-heading h3,
.company-intro-heading h3,
.company-intro-detail h3,
.subsidiaries-heading h2,
.subsidiary-timeline-content h3,
.bluewhale-hero h2,
.system-capabilities .section-heading h3,
.bluewhale-flow h3,
.case-section .section-heading h2 {
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}.button,
.primary-button,
.secondary-button,
.hero-actions a,
.business-detail-cta a,
.business-modern-back,
.service-back-link,
.form-submit {
  max-width: 100%;
  white-space: normal;
}.honor-image-link img,
.bluewhale-lightbox img,
.honor-lightbox img,
.site-image-lightbox-frame img,
body[data-page="bluewhale"] #bluewhale .system-window img,
body[data-page="bluewhale"] #bluewhale .capability-showcase img {
  object-fit: contain;
}@media (max-width: 1199px) {.home-content,
.home-section-inner,
.section-heading,
.case-grid,
.client-case-grid,
body[data-page="cases"] #cases .section-heading,
body[data-page="cases"] #cases .client-case-grid,
body[data-page="subsidiaries"] #subsidiaries .subsidiaries-heading,
body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline,
body[data-page="bluewhale"] #bluewhale .bluewhale-hero,
body[data-page="bluewhale"] #bluewhale .bluewhale-grid,
body[data-page="bluewhale"] #bluewhale .system-capabilities,
body[data-page="bluewhale"] #bluewhale .bluewhale-flow,
.business-core-heading,
.business-modern-grid,
.business-why,
.business-detail-page {
    width: calc(100% - 64px);
    max-width: none;
  }.business-modern-hero,
body[data-page="bluewhale"] #bluewhale .bluewhale-hero {
    grid-template-columns: 1fr;
  }.business-modern-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }.business-metrics-inner,
.business-why-grid,
.business-capability-grid,
body[data-page="bluewhale"] #bluewhale .bluewhale-grid,
body[data-page="cases"] #cases .client-case-grid,
.client-case-grid,
.case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }body[data-page="bluewhale"] #bluewhale .capability-showcase,
body[data-page="bluewhale"] #bluewhale .capability-showcase.reverse,
.business-detail-hero,
body[data-page="about"] #about.about-profile-state .company-intro,
body[data-page="about"] #honors .honor-display-card {
    grid-template-columns: 1fr;
  }body[data-page="bluewhale"] #bluewhale .capability-showcase.reverse > div {
    order: 0;
  }
}@media (max-width: 767px) {.section,
.page-section,
.home-section {
    padding-left: 20px;
    padding-right: 20px;
  }.home-content,
.home-section-inner,
.section-heading,
.case-grid,
.client-case-grid,
body[data-page="cases"] #cases .section-heading,
body[data-page="cases"] #cases .client-case-grid,
body[data-page="subsidiaries"] #subsidiaries .subsidiaries-heading,
body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline,
body[data-page="bluewhale"] #bluewhale .bluewhale-hero,
body[data-page="bluewhale"] #bluewhale .bluewhale-grid,
body[data-page="bluewhale"] #bluewhale .system-capabilities,
body[data-page="bluewhale"] #bluewhale .bluewhale-flow,
.business-core-heading,
.business-modern-grid,
.business-why,
.business-detail-page {
    width: 100%;
    max-width: none;
  }#home .home-hero,
.business-modern-hero,
body[data-page="bluewhale"] #bluewhale .bluewhale-hero {
    grid-template-columns: 1fr;
  }#home .hero-content {
    max-width: 100%;
  }#home .hero h1 {
    font-size: clamp(38px, 11vw, 52px);
    line-height: 1.08;
  }.hero-actions,
#home .hero-actions {
    flex-wrap: wrap;
    width: 100%;
  }.hero-actions a,
#home .hero-actions a {
    flex: 1 1 180px;
    justify-content: center;
  }.hero-metrics,
#home .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }.business-modern-grid,
.business-metrics-inner,
.business-why-grid,
.business-capability-grid,
body[data-page="bluewhale"] #bluewhale .bluewhale-grid,
body[data-page="cases"] #cases .client-case-grid,
.client-case-grid,
.case-grid,
.proof-grid,
.home-card-grid,
.service-grid,
.service-info-grid,
.branch-grid,
.image-band {
    grid-template-columns: 1fr;
  }.business-modern-hero {
    padding-left: 20px;
    padding-right: 20px;
  }.business-hero-media img,
body[data-page="bluewhale"] #bluewhale .system-window img {
    height: auto;
    min-height: 220px;
    max-height: 340px;
    object-fit: contain;
  }body[data-page="about"] #honors .honor-image-link {
    width: 100%;
    overflow: hidden;
  }body[data-page="about"] #honors .honor-image-link img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-nav {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-point {
    grid-template-columns: auto minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    text-align: left;
  }body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-detail {
    width: 100%;
    grid-template-columns: 1fr;
  }body[data-page="bluewhale"] #bluewhale .flow-track {
    grid-template-columns: 1fr;
  }.client-logo {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}@media (max-width: 480px) {.hero-metrics,
#home .hero-metrics {
    grid-template-columns: 1fr;
  }.site-image-lightbox-frame img,
.bluewhale-lightbox img,
.honor-lightbox img {
    max-width: 94vw;
    max-height: 80vh;
  }.business-modern-card,
.client-case-card,
.bluewhale-card,
.capability-showcase,
.subsidiary-timeline-detail {
    padding-left: 20px;
    padding-right: 20px;
  }
}/* About page emergency layout stabilization. */
body[data-page="about"] #about.about-profile-state {
  padding-left: 0;
  padding-right: 0;
  background: linear-gradient(180deg, #f3f9ff 0%, #ffffff 42%, #ffffff 100%);
}body[data-page="about"] #about.about-profile-state .about-panel,
body[data-page="about"] #about.about-profile-state .about-subpage[data-about-panel="intro"].active {
  width: 100%;
  max-width: none;
}body[data-page="about"] #about.about-profile-state .company-intro {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  grid-template-rows: auto auto auto;
  gap: 0;
  padding: 96px max(72px, calc((100vw - 1440px) / 2 + 80px)) 0;
  overflow: visible;
  background: linear-gradient(90deg, #f3f9ff 0%, #ffffff 56%, #eef6ff 100%);
}body[data-page="about"] #about.about-profile-state .company-intro::before,
body[data-page="about"] #about.about-profile-state .company-intro::after {
  display: none;
  content: none;
}body[data-page="about"] #about.about-profile-state .company-intro-media {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  min-height: 640px;
  border-radius: 24px 0 0 24px;
  overflow: hidden;
}body[data-page="about"] #about.about-profile-state .company-intro-media img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: center top;
}body[data-page="about"] #about.about-profile-state .company-intro-content {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  min-height: 640px;
  padding: clamp(52px, 4.5vw, 72px) clamp(42px, 4.8vw, 72px);
  background: rgba(255, 255, 255, 0.94);
}body[data-page="about"] #about.about-profile-state .company-intro-heading {
  flex-wrap: nowrap;
  max-width: 100%;
}body[data-page="about"] #about.about-profile-state .company-intro-heading h3 {
  white-space: nowrap;
  overflow-wrap: normal;
}body[data-page="about"] #about.about-profile-state .company-intro-content .company-intro-copy,
body[data-page="about"] #about.about-profile-state .company-principle-grid {
  max-width: 760px;
}body[data-page="about"] #about.about-profile-state .company-intro-divider {
  max-width: 760px;
}body[data-page="about"] #about.about-profile-state .company-principle-grid article::before,
body[data-page="about"] #about.about-profile-state .company-principle-grid article::after,
body[data-page="about"] #about.about-profile-state .company-intro-media .company-principle-grid article::before,
body[data-page="about"] #about.about-profile-state .company-intro-media .company-principle-grid article::after {
  display: none;
  content: none;
}body[data-page="about"] #about.about-profile-state .company-principle-grid article {
  padding-left: 0;
}body[data-page="about"] #about.about-profile-state .company-stat-grid--hero {
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
  max-width: 1320px;
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(90deg, #005bb5 0%, #0072ce 100%);
  box-shadow: 0 20px 60px rgba(15, 48, 87, 0.12);
}body[data-page="about"] #about.about-profile-state .company-stat-grid--hero article {
  min-width: 0;
  min-height: 0;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 34px 32px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
  transform: none;
}body[data-page="about"] #about.about-profile-state .company-stat-grid--hero article:last-child {
  border-right: 0;
}body[data-page="about"] #about.about-profile-state .company-stat-grid--hero strong,
body[data-page="about"] #about.about-profile-state .company-stat-grid--hero article:nth-child(4) strong {
  display: block;
  color: #fff;
  font-size: clamp(34px, 3.1vw, 42px);
  line-height: 1.1;
  font-weight: 900;
  white-space: nowrap;
  letter-spacing: 0;
}body[data-page="about"] #about.about-profile-state .company-stat-grid--hero span {
  display: block;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 650;
}body[data-page="about"] #honors.company-honors-section {
  grid-column: 1 / -1;
  grid-row: 3;
  width: 100%;
  margin: 96px 0 0;
  padding: 110px 0;
  scroll-margin-top: 96px;
  background: linear-gradient(180deg, #f3f9ff 0%, #ffffff 100%);
}body[data-page="about"] #honors .honor-showcase {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
}body[data-page="about"] #honors .honor-overview {
  width: min(860px, 100%);
  max-width: 860px;
  margin: 0 auto 16px;
  padding: 42px 48px;
  text-align: center;
  border: 1px solid rgba(205, 225, 245, 0.9);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(15, 48, 87, 0.06);
}body[data-page="about"] #honors .honor-tags {
  justify-content: center;
}body[data-page="about"] #honors .honor-display-card {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(280px, 0.32fr) minmax(0, 0.68fr);
  gap: 48px;
  align-items: center;
  padding: 48px;
  border: 1px solid rgba(205, 225, 245, 0.9);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 48, 87, 0.06);
}body[data-page="about"] #honors .honor-display-copy {
  min-width: 0;
}body[data-page="about"] #honors .honor-display-copy h3 {
  font-size: clamp(28px, 2.4vw, 34px);
  line-height: 1.2;
}body[data-page="about"] #honors .honor-display-copy p {
  font-size: 17px;
  line-height: 1.8;
}body[data-page="about"] #honors .honor-image-link {
  width: 100%;
  min-height: 0;
  display: block;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(205, 225, 245, 0.9);
  border-radius: 20px;
  background: #f8fbff;
}body[data-page="about"] #honors .honor-image-link img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}@media (min-width: 1200px) {#home .home-hero {
    padding-left: max(150px, calc((100vw - 1440px) / 2 + 150px));
    padding-right: max(72px, calc((100vw - 1440px) / 2 + 80px));
  }#home .hero-content {
    width: min(720px, 100%);
    max-width: 720px;
    justify-self: start;
    text-align: left;
  }#home .hero h1,
#home .hero-copy {
    max-width: 720px;
  }#home .hero-metrics {
    justify-self: center;
    margin-left: auto;
    margin-right: auto;
  }
}@media (min-width: 981px) and (max-width: 1199px) {#home .home-hero {
    padding-left: 80px;
    padding-right: 48px;
  }#home .hero-content {
    max-width: 680px;
  }
}@media (max-width: 1023px) {body[data-page="about"] #about.about-profile-state .company-intro {
    grid-template-columns: 1fr;
    padding: 96px 48px 0;
  }body[data-page="about"] #about.about-profile-state .company-intro-media,
body[data-page="about"] #about.about-profile-state .company-intro-content,
body[data-page="about"] #about.about-profile-state .company-stat-grid--hero,
body[data-page="about"] #honors.company-honors-section {
    grid-column: 1;
  }body[data-page="about"] #about.about-profile-state .company-intro-media {
    grid-row: 1;
    border-radius: 24px 24px 0 0;
  }body[data-page="about"] #about.about-profile-state .company-intro-content {
    grid-row: 2;
    min-height: auto;
  }body[data-page="about"] #about.about-profile-state .company-stat-grid--hero {
    grid-row: 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }body[data-page="about"] #honors.company-honors-section {
    grid-row: 4;
    margin-left: -48px;
    margin-right: -48px;
    padding: 96px 48px;
  }body[data-page="about"] #honors .honor-display-card {
    grid-template-columns: 1fr;
  }
}@media (max-width: 767px) {#home .home-hero {
    padding-left: 20px;
    padding-right: 20px;
  }#home .hero-content {
    width: 100%;
    max-width: 100%;
    justify-self: start;
  }body[data-page="about"] #about.about-profile-state .company-intro {
    padding: 82px 20px 0;
  }body[data-page="about"] #about.about-profile-state .company-intro-media,
body[data-page="about"] #about.about-profile-state .company-intro-media img {
    min-height: 420px;
  }body[data-page="about"] #about.about-profile-state .company-intro-content {
    padding: 38px 0 58px;
  }body[data-page="about"] #about.about-profile-state .company-intro-heading {
    flex-wrap: wrap;
  }body[data-page="about"] #about.about-profile-state .company-intro-heading h3 {
    white-space: normal;
  }body[data-page="about"] #about.about-profile-state .company-stat-grid--hero {
    grid-template-columns: 1fr;
    margin-top: 56px;
  }body[data-page="about"] #about.about-profile-state .company-stat-grid--hero article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 28px 24px;
  }body[data-page="about"] #about.about-profile-state .company-stat-grid--hero article:last-child {
    border-bottom: 0;
  }body[data-page="about"] #honors.company-honors-section {
    margin: 72px -20px 0;
    padding: 72px 20px;
  }body[data-page="about"] #honors .honor-overview,
body[data-page="about"] #honors .honor-display-card {
    padding: 28px 22px;
  }body[data-page="about"] #honors .honor-overview {
    text-align: left;
  }body[data-page="about"] #honors .honor-tags {
    justify-content: flex-start;
  }body[data-page="about"] #honors .honor-image-link {
    padding: 12px;
  }
}/* Blue Whale emergency layout stabilization. */
body[data-page="bluewhale"] #bluewhale.bluewhale-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  display: block;
  background: linear-gradient(180deg, #f3f9ff 0%, #ffffff 42%, #f7fbff 100%);
  overflow-x: hidden;
}body[data-page="bluewhale"] #bluewhale .bluewhale-hero {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 110px max(80px, calc((100vw - 1440px) / 2 + 80px)) 96px;
  display: grid;
  grid-template-columns: minmax(560px, 0.9fr) minmax(560px, 1.1fr);
  gap: 72px;
  align-items: center;
  justify-items: stretch;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 114, 206, 0.12), transparent 32%),
    linear-gradient(135deg, #f3f9ff 0%, #ffffff 55%, #eaf5ff 100%);
  text-align: left;
  overflow: hidden;
}body[data-page="bluewhale"] #bluewhale .bluewhale-hero > div:first-child {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
  min-width: 0;
  justify-self: start;
  text-align: left;
}body[data-page="bluewhale"] #bluewhale .bluewhale-hero .eyebrow {
  color: #0072ce;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
}body[data-page="bluewhale"] #bluewhale .bluewhale-hero h2 {
  max-width: 680px;
  margin: 0;
  color: #0b2341;
  font-size: clamp(50px, 4vw, 60px);
  line-height: 1.08;
  font-weight: 900;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: break-word;
}body[data-page="bluewhale"] #bluewhale .bluewhale-hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0 0;
  color: #53677d;
  font-size: 18px;
  line-height: 1.9;
}body[data-page="bluewhale"] #bluewhale .bluewhale-tags {
  justify-content: flex-start;
  gap: 10px;
  margin-top: 30px;
}body[data-page="bluewhale"] #bluewhale .bluewhale-tags span {
  padding: 9px 14px;
  border: 1px solid rgba(190, 220, 245, 0.8);
  border-radius: 999px;
  color: #005bb5;
  background: #f3f9ff;
}body[data-page="bluewhale"] #bluewhale .bluewhale-hero .system-window {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  justify-self: stretch;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(205, 225, 245, 0.9);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 48, 87, 0.12);
  transform: none;
}body[data-page="bluewhale"] #bluewhale .bluewhale-hero .system-window:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 78px rgba(15, 48, 87, 0.14);
}body[data-page="bluewhale"] #bluewhale .bluewhale-hero .system-window img {
  width: 100%;
  height: clamp(420px, 32vw, 500px);
  min-height: 0;
  max-height: none;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}body[data-page="bluewhale"] #bluewhale .window-bar {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(205, 225, 245, 0.9);
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}body[data-page="bluewhale"] #bluewhale .bluewhale-grid {
  width: min(1440px, calc(100% - 160px));
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px 0 110px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  background: transparent;
}body[data-page="bluewhale"] #bluewhale .bluewhale-card {
  min-width: 0;
  min-height: 0;
  padding: 40px;
  border: 1px solid rgba(205, 225, 245, 0.9);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(15, 48, 87, 0.07);
}body[data-page="bluewhale"] #bluewhale .system-capabilities {
  width: min(1440px, calc(100% - 160px));
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 0 110px;
  display: grid;
  gap: 32px;
  background: transparent;
}body[data-page="bluewhale"] #bluewhale .system-capabilities .section-heading {
  width: 100%;
  max-width: 940px;
  margin: 0 0 14px;
  text-align: left;
}body[data-page="bluewhale"] #bluewhale .system-capabilities .section-heading .eyebrow {
  justify-content: flex-start;
}body[data-page="bluewhale"] #bluewhale .capability-showcase,
body[data-page="bluewhale"] #bluewhale .capability-showcase.reverse {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(320px, 0.36fr) minmax(0, 0.64fr);
  gap: 48px;
  align-items: center;
  padding: 48px;
  border: 1px solid rgba(205, 225, 245, 0.9);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(15, 48, 87, 0.06);
}body[data-page="bluewhale"] #bluewhale .capability-showcase.reverse > div {
  order: 2;
}body[data-page="bluewhale"] #bluewhale .capability-showcase figure {
  min-width: 0;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(205, 225, 245, 0.9);
  border-radius: 24px;
  background: #f8fbff;
  box-shadow: 0 16px 45px rgba(15, 48, 87, 0.08);
}body[data-page="bluewhale"] #bluewhale .capability-showcase img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: contain;
  border-radius: 16px;
  background: #ffffff;
}body[data-page="bluewhale"] #bluewhale .bluewhale-flow {
  width: min(1440px, calc(100% - 160px));
  max-width: 1440px;
  margin: 0 auto 110px;
  padding: 52px 60px;
  border: 1px solid rgba(205, 225, 245, 0.9);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 22%, rgba(0, 114, 206, 0.10), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f3f9ff 100%);
  box-shadow: 0 16px 45px rgba(15, 48, 87, 0.06);
}body[data-page="bluewhale"] #bluewhale .flow-track {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}.bluewhale-lightbox,
.site-image-lightbox {
  background: rgba(0, 15, 35, 0.78);
}.bluewhale-lightbox img,
.site-image-lightbox-frame img {
  max-width: 92vw;
  max-height: 86vh;
  object-fit: contain;
}/* Blue Whale hero: centered product-intro layout. */
body[data-page="bluewhale"] #bluewhale .bluewhale-hero {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 110px 72px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 15%, rgba(0, 114, 206, 0.12), transparent 34%),
    linear-gradient(180deg, #f3f9ff 0%, #ffffff 72%);
}body[data-page="bluewhale"] #bluewhale .bluewhale-hero > div:first-child {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}body[data-page="bluewhale"] #bluewhale .bluewhale-hero .eyebrow {
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  text-align: center;
}body[data-page="bluewhale"] #bluewhale .bluewhale-hero h2 {
  max-width: 900px;
  margin: 18px auto 0;
  color: #0b2341;
  font-size: clamp(52px, 5vw, 64px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  word-break: keep-all;
}body[data-page="bluewhale"] #bluewhale .bluewhale-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px auto 0;
  color: #53677d;
  font-size: 18px;
  line-height: 1.9;
  text-align: center;
}body[data-page="bluewhale"] #bluewhale .bluewhale-tags {
  margin: 28px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}body[data-page="bluewhale"] #bluewhale .bluewhale-tags span {
  border: 1px solid rgba(190, 220, 245, 0.8);
  background: #eaf5ff;
  color: #0072ce;
}body[data-page="bluewhale"] #bluewhale .bluewhale-hero .system-window {
  width: 100%;
  max-width: 1120px;
  margin: 64px auto 0;
  justify-self: auto;
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(205, 225, 245, 0.9);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 48, 87, 0.12);
  transform: none;
}body[data-page="bluewhale"] #bluewhale .bluewhale-hero .system-window img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}/* About page layout reset: ordinary document flow,
wide containers,
stable grids. */
body[data-page="about"] #about.about-profile-state {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  display: block !important;
  overflow-x: hidden;
  background: #ffffff;
}body[data-page="about"] #about.about-profile-state > .section-copy {
  display: none !important;
}body[data-page="about"] #about.about-profile-state .about-panel,
body[data-page="about"] #about.about-profile-state .about-subpage[data-about-panel="intro"].active {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  display: block;
  overflow: visible;
  background: transparent;
}body[data-page="about"] #about.about-profile-state .company-intro {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  column-gap: 72px;
  row-gap: 0;
  align-items: stretch;
  overflow: visible;
  background: #ffffff;
}body[data-page="about"] #about.about-profile-state .company-intro::before,
body[data-page="about"] #about.about-profile-state .company-intro::after,
body[data-page="about"] #about.about-profile-state .company-intro-media::before,
body[data-page="about"] #about.about-profile-state .company-intro-media::after,
body[data-page="about"] #about.about-profile-state .company-intro-overlay::before,
body[data-page="about"] #about.about-profile-state .company-intro-overlay::after,
body[data-page="about"] #about.about-profile-state .company-intro-heading::before,
body[data-page="about"] #about.about-profile-state .company-intro-heading::after,
body[data-page="about"] #about.about-profile-state .company-principle-grid article::before,
body[data-page="about"] #about.about-profile-state .company-principle-grid article::after,
body[data-page="about"] #honors.company-honors-section::before,
body[data-page="about"] #honors.company-honors-section::after,
body[data-page="about"] #honors .honor-showcase::before,
body[data-page="about"] #honors .honor-showcase::after,
body[data-page="about"] #honors .honor-image-link::after {
  content: none !important;
  display: none !important;
}body[data-page="about"] #about.about-profile-state .company-intro-media,
body[data-page="about"] #about.about-profile-state .company-intro-content,
body[data-page="about"] #about.about-profile-state .company-intro-overlay,
body[data-page="about"] #about.about-profile-state .company-stat-grid--hero,
body[data-page="about"] #honors.company-honors-section,
body[data-page="about"] #honors .honor-showcase,
body[data-page="about"] #honors .honor-display-card {
  position: static !important;
  transform: none;
}body[data-page="about"] #about.about-profile-state .company-intro-media {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  width: 100%;
  max-width: 704px;
  min-height: 0;
  margin: 96px 0 80px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}body[data-page="about"] #about.about-profile-state .about-intro-media-stack {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}body[data-page="about"] #about.about-profile-state .about-intro-image-card {
  width: 100%;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(205, 225, 245, 0.9);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(15, 48, 87, 0.08);
}body[data-page="about"] #about.about-profile-state .about-intro-image-card-primary {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
}body[data-page="about"] #about.about-profile-state .about-intro-image-card-secondary {
  flex: 1 1 0;
}body[data-page="about"] #about.about-profile-state .company-intro-media img {
  width: 100%;
  height: auto;
  flex: 1 1 auto;
  min-height: 0;
  max-height: none;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 28px 28px 0 0;
}body[data-page="about"] #about.about-profile-state .about-intro-image-card-secondary img {
  height: 100%;
  min-height: 0;
  border-radius: 28px;
  object-fit: cover;
  object-position: center center;
}body[data-page="about"] #about.about-profile-state .company-intro-overlay {
  width: 100%;
  display: grid;
  gap: 12px;
  padding: 32px 36px 36px;
  color: #0b2341;
  background: #ffffff;
  border-top: 1px solid rgba(205, 225, 245, 0.9);
  inset: auto;
}body[data-page="about"] #about.about-profile-state .company-intro-overlay span {
  width: max-content;
  max-width: 100%;
  padding: 8px 14px;
  border: 1px solid rgba(190, 220, 245, 0.8);
  border-radius: 999px;
  background: #eaf5ff;
  color: #0072ce;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.12em;
  font-weight: 900;
  text-shadow: none;
}body[data-page="about"] #about.about-profile-state .company-intro-overlay p {
  max-width: none;
  margin: 0;
  color: #53677d;
  font-size: 16px;
  line-height: 1.8;
  text-shadow: none;
}body[data-page="about"] #about.about-profile-state .company-intro-content {
  grid-column: 2;
  grid-row: 1;
  justify-self: start;
  width: 100%;
  max-width: 660px;
  min-height: 0;
  margin: 96px 0 80px;
  padding: 0;
  display: block;
  background: transparent;
  box-shadow: none;
  border: 0;
}body[data-page="about"] #about.about-profile-state .company-intro-heading {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0 0 16px;
}body[data-page="about"] #about.about-profile-state .company-intro-logo-mark {
  flex: 0 0 auto;
  width: 248px;
  max-width: 42%;
}body[data-page="about"] #about.about-profile-state .company-intro-logo-mark img {
  width: 100%;
  height: auto;
  display: block;
}body[data-page="about"] #about.about-profile-state .company-intro-heading h3 {
  min-width: 0;
  margin: 0;
  color: #0b2341;
  font-size: clamp(44px, 4vw, 64px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
  word-break: keep-all;
}body[data-page="about"] #about.about-profile-state .company-intro-subtitle {
  margin: 0 0 48px;
  color: #0b2341;
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: 0.12em;
  font-weight: 900;
}body[data-page="about"] #about.about-profile-state .company-intro-content .company-intro-copy {
  max-width: none;
  margin: 0;
  color: #0b2341;
  font-size: 20px;
  line-height: 1.92;
  font-weight: 500;
  letter-spacing: 0;
}body[data-page="about"] #about.about-profile-state .company-intro-content .company-intro-copy + .company-intro-copy {
  margin-top: 28px;
}body[data-page="about"] #about.about-profile-state .company-intro-content .company-intro-copy strong {
  color: #0072ce;
  font-weight: 900;
}body[data-page="about"] #about.about-profile-state .company-intro-divider {
  width: 100%;
  height: 1px;
  margin: 52px 0 34px;
  background: rgba(190, 220, 245, 0.9);
}body[data-page="about"] #about.about-profile-state .company-principle-grid {
  width: 100%;
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}body[data-page="about"] #about.about-profile-state .company-principle-grid article {
  min-width: 0;
  margin: 0;
  padding: 24px 28px;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(205, 225, 245, 0.9);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 16px 45px rgba(15, 48, 87, 0.06);
}body[data-page="about"] #about.about-profile-state .company-principle-grid .principle-kicker {
  width: max-content;
  max-width: 100%;
  padding: 7px 14px;
  border-radius: 999px;
  background: #eaf5ff;
  color: #0072ce;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}body[data-page="about"] #about.about-profile-state .company-principle-grid strong {
  color: #0b2341;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 900;
}body[data-page="about"] #about.about-profile-state .company-principle-grid p {
  margin: 0;
  color: #53677d;
  font-size: 16px;
  line-height: 1.75;
}body[data-page="about"] #about.about-profile-state .company-stat-grid--hero {
  grid-column: 1 / -1;
  grid-row: 2;
  width: min(1320px, calc(100% - 144px));
  max-width: 1320px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(90deg, #005bb5 0%, #0072ce 100%);
  box-shadow: 0 20px 60px rgba(15, 48, 87, 0.12);
}body[data-page="about"] #about.about-profile-state .company-stat-grid--hero article {
  min-width: 0;
  margin: 0;
  padding: 34px 32px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 8px;
  color: #ffffff;
  text-align: left;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}body[data-page="about"] #about.about-profile-state .company-stat-grid--hero article:last-child {
  border-right: 0;
}body[data-page="about"] #about.about-profile-state .company-stat-grid--hero strong,
body[data-page="about"] #about.about-profile-state .company-stat-grid--hero article:nth-child(4) strong {
  display: block;
  color: #ffffff;
  font-size: clamp(34px, 3vw, 42px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}body[data-page="about"] #about.about-profile-state .company-stat-grid--hero span {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
}body[data-page="about"] #honors.company-honors-section {
  grid-column: 1 / -1;
  grid-row: 3;
  width: 100%;
  max-width: none;
  margin: 96px 0 0;
  padding: 110px 0;
  display: block;
  scroll-margin-top: 96px;
  overflow: visible;
  background: linear-gradient(180deg, #f3f9ff 0%, #ffffff 100%);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}body[data-page="about"] #honors .honor-showcase {
  width: min(1320px, calc(100% - 144px));
  max-width: 1320px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  background: transparent;
}body[data-page="about"] #honors .honor-overview,
body[data-page="about"] #honors .honor-display-card {
  min-width: 0;
  width: 100%;
  margin: 0;
  border: 1px solid rgba(205, 225, 245, 0.9);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(15, 48, 87, 0.06);
}body[data-page="about"] #honors .honor-overview {
  max-width: 860px;
  justify-self: center;
  padding: 42px 48px;
  text-align: center;
}body[data-page="about"] #honors .honor-overview h3 {
  margin: 0;
  color: #0b2341;
  font-size: clamp(34px, 3.5vw, 46px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: 0;
}body[data-page="about"] #honors .honor-overview p {
  max-width: 760px;
  margin: 18px auto 0;
  color: #53677d;
  font-size: 17px;
  line-height: 1.8;
}body[data-page="about"] #honors .honor-tags {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}body[data-page="about"] #honors .honor-tags span {
  padding: 9px 16px;
  border: 1px solid rgba(190, 220, 245, 0.8);
  border-radius: 999px;
  background: #eaf5ff;
  color: #0072ce;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}body[data-page="about"] #honors .honor-display-card {
  padding: 48px;
  display: block;
}body[data-page="about"] #honors .honor-display-copy {
  max-width: 900px;
  margin: 0;
}body[data-page="about"] #honors .honor-display-copy span {
  color: #0072ce;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.12em;
  font-weight: 900;
}body[data-page="about"] #honors .honor-display-copy h3 {
  margin: 14px 0 0;
  color: #0b2341;
  font-size: clamp(30px, 2.8vw, 38px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
}body[data-page="about"] #honors .honor-display-copy p {
  max-width: 860px;
  margin: 14px 0 0;
  color: #53677d;
  font-size: 17px;
  line-height: 1.8;
}body[data-page="about"] #honors .honor-image-link {
  width: 100%;
  margin: 32px 0 0;
  padding: 18px;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(205, 225, 245, 0.9);
  border-radius: 20px;
  background: #f8fbff;
  box-shadow: none;
}body[data-page="about"] #honors .honor-image-link img,
body[data-page="about"] #honors .honor-image-link img.honor-image-contain {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  background: #ffffff;
}/* Home hero centered over the video background. */
body[data-page="home"] #home .home-hero {
  min-height: 100svh;
  height: 100svh;
  padding: calc(78px + clamp(24px, 4vh, 48px)) clamp(24px, 6vw, 96px) clamp(34px, 5vh, 56px);
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
}body[data-page="home"] #home .hero-content {
  width: min(920px, 100%);
  max-width: 920px;
  justify-self: center;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}body[data-page="home"] #home .hero-media img,
body[data-page="home"] #home .hero-video {
  object-position: 52% 45%;
  transform: scale(1.3);
  transform-origin: center center;
}body[data-page="home"] #home .hero-content .eyebrow,
body[data-page="home"] #home .hero h1,
body[data-page="home"] #home .hero-copy {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}body[data-page="home"] #home .hero h1 {
  max-width: 920px;
}body[data-page="home"] #home .hero-copy {
  max-width: 760px;
}body[data-page="home"] #home .hero-actions {
  justify-content: center;
}body[data-page="home"] #home .hero-metrics {
  justify-self: center;
  width: min(940px, 100%);
  margin: clamp(42px, 6vw, 68px) auto 0;
}body[data-page="home"] #home .hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 35, 65, 0.58) 0%, rgba(11, 35, 65, 0.46) 45%, rgba(11, 35, 65, 0.34) 100%),
    radial-gradient(circle at 50% 42%, rgba(0, 20, 40, 0.18), rgba(0, 20, 40, 0.54) 78%);
}@media (max-width: 1199px) {body[data-page="bluewhale"] #bluewhale .bluewhale-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 96px 48px 90px;
    text-align: center;
  }body[data-page="bluewhale"] #bluewhale .bluewhale-hero > div:first-child {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }body[data-page="bluewhale"] #bluewhale .bluewhale-hero .system-window {
    width: 100%;
    max-width: 1040px;
    margin: 54px auto 0;
  }body[data-page="bluewhale"] #bluewhale .bluewhale-grid,
body[data-page="bluewhale"] #bluewhale .system-capabilities,
body[data-page="bluewhale"] #bluewhale .bluewhale-flow {
    width: calc(100% - 96px);
  }body[data-page="bluewhale"] #bluewhale .bluewhale-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }body[data-page="bluewhale"] #bluewhale .capability-showcase,
body[data-page="bluewhale"] #bluewhale .capability-showcase.reverse {
    grid-template-columns: 1fr;
  }body[data-page="bluewhale"] #bluewhale .capability-showcase.reverse > div {
    order: 0;
  }
}@media (max-width: 1199px) {body[data-page="about"] #about.about-profile-state .company-intro {
    grid-template-columns: 1fr;
    column-gap: 0;
  }body[data-page="about"] #about.about-profile-state .company-intro-media,
body[data-page="about"] #about.about-profile-state .company-intro-content {
    grid-column: 1;
    justify-self: center;
    width: calc(100% - 96px);
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
  }body[data-page="about"] #about.about-profile-state .company-intro-media {
    grid-row: 1;
    margin-top: 92px;
    margin-bottom: 0;
    min-height: 0;
  }body[data-page="about"] #about.about-profile-state .company-intro-media img {
    height: 380px;
  }body[data-page="about"] #about.about-profile-state .company-intro-content {
    grid-row: 2;
    margin-top: 56px;
    margin-bottom: 72px;
  }body[data-page="about"] #about.about-profile-state .company-stat-grid--hero,
body[data-page="about"] #honors .honor-showcase {
    width: calc(100% - 96px);
  }body[data-page="about"] #about.about-profile-state .company-stat-grid--hero {
    grid-row: 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }body[data-page="about"] #about.about-profile-state .company-stat-grid--hero article:nth-child(2) {
    border-right: 0;
  }body[data-page="about"] #about.about-profile-state .company-stat-grid--hero article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }body[data-page="about"] #honors.company-honors-section {
    grid-row: 4;
    margin-top: 84px;
    padding: 96px 0;
  }
}@media (max-width: 767px) {body[data-page="home"] #home .home-hero {
    min-height: 100svh;
    height: 100svh;
    padding: calc(78px + 22px) 20px 34px;
    justify-items: center;
    align-content: center;
    text-align: center;
  }body[data-page="home"] #home .hero-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }body[data-page="home"] #home .hero h1,
body[data-page="home"] #home .hero-copy {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }body[data-page="home"] #home .hero-actions {
    justify-content: center;
  }body[data-page="home"] #home .hero-metrics {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }body[data-page="bluewhale"] #bluewhale .bluewhale-hero {
    padding: 78px 20px 66px;
    gap: 0;
    text-align: center;
  }body[data-page="bluewhale"] #bluewhale .bluewhale-hero h2 {
    font-size: clamp(38px, 10vw, 44px);
    line-height: 1.12;
  }body[data-page="bluewhale"] #bluewhale .bluewhale-hero p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.78;
  }body[data-page="bluewhale"] #bluewhale .bluewhale-hero .system-window {
    width: 100%;
    max-width: 100%;
    margin-top: 42px;
    border-radius: 22px;
  }body[data-page="bluewhale"] #bluewhale .bluewhale-hero .system-window img {
    width: 100%;
    height: auto;
    min-height: 220px;
    max-height: 340px;
  }body[data-page="bluewhale"] #bluewhale .bluewhale-grid,
body[data-page="bluewhale"] #bluewhale .system-capabilities,
body[data-page="bluewhale"] #bluewhale .bluewhale-flow {
    width: calc(100% - 40px);
  }body[data-page="bluewhale"] #bluewhale .bluewhale-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 68px 0 78px;
  }body[data-page="bluewhale"] #bluewhale .bluewhale-card,
body[data-page="bluewhale"] #bluewhale .capability-showcase,
body[data-page="bluewhale"] #bluewhale .bluewhale-flow {
    padding: 26px 22px;
    border-radius: 22px;
  }body[data-page="bluewhale"] #bluewhale .system-capabilities {
    padding-bottom: 76px;
  }body[data-page="bluewhale"] #bluewhale .capability-showcase figure {
    padding: 10px;
    border-radius: 18px;
  }body[data-page="bluewhale"] #bluewhale .capability-showcase img {
    max-height: 320px;
  }body[data-page="bluewhale"] #bluewhale .flow-track {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}@media (max-width: 767px) {body[data-page="about"] #about.about-profile-state .company-intro-media,
body[data-page="about"] #about.about-profile-state .company-intro-content,
body[data-page="about"] #about.about-profile-state .company-stat-grid--hero,
body[data-page="about"] #honors .honor-showcase {
    width: calc(100% - 40px);
  }body[data-page="about"] #about.about-profile-state .company-intro-media {
    margin-top: 72px;
  }body[data-page="about"] #about.about-profile-state .company-intro-media img {
    height: clamp(280px, 72vw, 340px);
    border-radius: 22px 22px 0 0;
  }body[data-page="about"] #about.about-profile-state .about-intro-media-stack {
    gap: 20px;
  }body[data-page="about"] #about.about-profile-state .about-intro-image-card {
    border-radius: 22px;
  }body[data-page="about"] #about.about-profile-state .about-intro-image-card-secondary img {
    border-radius: 22px;
  }body[data-page="about"] #about.about-profile-state .company-intro-overlay {
    padding: 24px 22px 26px;
  }body[data-page="about"] #about.about-profile-state .company-intro-content {
    margin-top: 42px;
    margin-bottom: 56px;
  }body[data-page="about"] #about.about-profile-state .company-intro-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }body[data-page="about"] #about.about-profile-state .company-intro-logo-mark {
    max-width: 230px;
    width: 64%;
  }body[data-page="about"] #about.about-profile-state .company-intro-heading h3 {
    font-size: clamp(38px, 12vw, 48px);
  }body[data-page="about"] #about.about-profile-state .company-intro-subtitle {
    margin-bottom: 32px;
    font-size: 17px;
  }body[data-page="about"] #about.about-profile-state .company-intro-content .company-intro-copy {
    font-size: 17px;
    line-height: 1.82;
  }body[data-page="about"] #about.about-profile-state .company-principle-grid article {
    padding: 22px;
  }body[data-page="about"] #about.about-profile-state .company-stat-grid--hero {
    grid-template-columns: 1fr;
  }body[data-page="about"] #about.about-profile-state .company-stat-grid--hero article,
body[data-page="about"] #about.about-profile-state .company-stat-grid--hero article:nth-child(2) {
    padding: 28px 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }body[data-page="about"] #about.about-profile-state .company-stat-grid--hero article:last-child {
    border-bottom: 0;
  }body[data-page="about"] #honors.company-honors-section {
    margin-top: 72px;
    padding: 72px 0;
  }body[data-page="about"] #honors .honor-showcase {
    gap: 24px;
  }body[data-page="about"] #honors .honor-overview,
body[data-page="about"] #honors .honor-display-card {
    padding: 28px 22px;
    border-radius: 22px;
  }body[data-page="about"] #honors .honor-overview {
    text-align: left;
  }body[data-page="about"] #honors .honor-overview p {
    margin-left: 0;
    margin-right: 0;
  }body[data-page="about"] #honors .honor-tags {
    justify-content: flex-start;
  }body[data-page="about"] #honors .honor-image-link {
    padding: 10px;
    border-radius: 16px;
  }
}@media (prefers-reduced-motion: reduce) {#home .hero-content .eyebrow,
#home .hero-content h1,
#home .hero-copy,
#home .hero-actions,
#home .hero-metrics div,
.home-reveal {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }.showcase-track,
.partner-track {
    scroll-behavior: auto;
  }
}/* Responsive scale tuning: keeps the existing site structure while tightening proportions across laptop and mobile viewports. */
:root {
  --container-max: 1200px;
  --section-padding-lg: 88px;
  --section-padding-md: 64px;
  --section-padding-sm: 42px;
}.section,
.home-content,
.home-section,
.case-section .section-heading,
.case-grid,
.client-case-grid,
.journey .section-heading,
.journey-track {
  max-width: var(--container-max);
}.section-copy h2,
.section-heading h2,
.home-section-heading h2,
.business-heading h2,
.subsidiaries-heading h2,
.case-section .section-heading h2,
body[data-page="about"] #about.about-profile-state .company-intro-heading h3 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.16;
}.hero h1 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.08;
}.section-heading h3,
.company-intro-detail h3,
.business-core-heading h3,
.business-why-heading h3,
.subsidiary-full-content h3,
.business-modern-card h3 {
  font-size: clamp(24px, 3vw, 36px);
}.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.home-section-heading p:not(.eyebrow),
.business-heading > p:not(.eyebrow),
.subsidiaries-heading p:not(.eyebrow),
.company-intro-copy,
.company-intro-detail p:not(.eyebrow):not(.company-intro-subtitle),
.case-section .section-heading p:not(.eyebrow),
.business-core-heading p:not(.eyebrow),
.business-why-heading p,
.business-hero-copy p:not(.eyebrow),
.business-modern-card p,
.service-focus-card p {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.75;
}.eyebrow,
.home-section-heading .eyebrow,
.business-hero-copy .eyebrow,
.business-core-heading .eyebrow,
.subsidiaries-heading .eyebrow,
.company-intro-content .eyebrow {
  font-size: clamp(12px, 0.9vw, 14px);
  letter-spacing: 0.18em;
}.site-header {
  height: clamp(76px, 5.4vw, 84px);
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr) auto;
}.brand-logo {
  width: clamp(300px, 24vw, 360px);
  height: clamp(42px, 3.6vw, 52px);
}.nav-links {
  font-size: clamp(15px, 1vw, 18px);
  gap: clamp(4px, 0.5vw, 8px);
}.nav-links a {
  min-height: clamp(42px, 3.2vw, 48px);
  padding: 0 clamp(10px, 0.9vw, 14px);
}.home-content {
  gap: clamp(64px, 6vw, 96px);
  padding-top: clamp(56px, 7vw, var(--section-padding-lg));
  padding-bottom: clamp(56px, 7vw, var(--section-padding-lg));
}.home-section {
  gap: clamp(24px, 3vw, 34px);
}.corporate-video-section {
  padding-top: clamp(54px, 6vw, 82px);
  padding-bottom: clamp(58px, 6.5vw, 88px);
}.corporate-video-heading {
  max-width: 900px;
}.corporate-video-heading h2 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(34px, 3.8vw, 58px);
  line-height: 1.14;
  text-wrap: balance;
}.corporate-video-heading p:not(.eyebrow) {
  max-width: 760px;
}.corporate-video-card {
  width: min(86vw, 1120px);
  max-width: 1120px;
  aspect-ratio: 16 / 9;
}.network-section {
  gap: clamp(18px, 2.4vw, 28px);
}.network-section .home-section-heading h2,
.home-showcase-heading h2,
.partner-heading h2 {
  font-size: clamp(30px, 3.3vw, 48px);
}.network-section .home-section-heading .eyebrow {
  margin-bottom: 8px;
}.network-toggle {
  margin-top: -4px;
}.network-map-stack {
  width: min(100%, 1180px);
  justify-self: center;
}.network-map-card {
  min-height: auto;
  aspect-ratio: 16 / 8.2;
  max-height: 600px;
}body[data-page="about"] #about.about-profile-state .company-intro {
  width: min(100%, 1240px);
  max-width: 1240px;
  gap: clamp(38px, 5vw, 72px);
}body[data-page="about"] #about.about-profile-state .company-intro-content {
  max-width: 600px;
  margin-top: clamp(54px, 6vw, 82px);
  margin-bottom: clamp(54px, 6vw, 76px);
}body[data-page="about"] #about.about-profile-state .company-intro-heading h3 {
  max-width: 560px;
}body[data-page="about"] #about.about-profile-state .company-intro-subtitle {
  margin-bottom: clamp(26px, 3vw, 38px);
  font-size: clamp(16px, 1.25vw, 19px);
}body[data-page="about"] #about.about-profile-state .company-intro-content .company-intro-copy {
  font-size: clamp(16px, 1.2vw, 17px);
  line-height: 1.8;
}body[data-page="about"] #about.about-profile-state .company-intro-media,
body[data-page="about"] #about.about-profile-state .about-intro-media-stack {
  min-height: clamp(460px, 48vw, 620px);
}body[data-page="about"] #about.about-profile-state .company-intro-media img {
  min-height: 0;
}body[data-page="subsidiaries"] #subsidiaries {
  padding-top: clamp(72px, 7vw, 104px);
}.subsidiaries-heading {
  min-height: clamp(220px, 25vw, 340px);
  max-width: 1000px;
}.subsidiaries-heading h2 {
  font-size: clamp(34px, 4vw, 56px);
}.subsidiaries-heading p:not(.eyebrow) {
  max-width: 1000px;
}body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline,
body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-stage,
body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-content {
  transform-origin: top center;
}.business-modern-hero {
  grid-template-columns: minmax(420px, 0.9fr) minmax(420px, 1fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
  padding-top: clamp(66px, 7vw, 84px);
  padding-bottom: clamp(66px, 7vw, 86px);
}.business-hero-copy {
  max-width: 560px;
}.business-hero-copy h2 {
  font-size: clamp(38px, 4.6vw, 58px);
}.business-hero-copy h3 {
  font-size: clamp(26px, 2.6vw, 36px);
}.business-hero-media img {
  height: clamp(360px, 31vw, 480px);
  max-height: 480px;
}@media (min-width: 1536px) {.section,
.home-content {
    max-width: 1280px;
  }.network-map-card {
    max-height: 620px;
  }
}@media (max-width: 1512px) {:root {
    --container-max: 1120px;
  }.section,
.home-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }.home-content {
    gap: 64px;
    padding-top: 56px;
    padding-bottom: 64px;
  }.site-header {
    grid-template-columns: minmax(286px, 330px) minmax(0, 1fr) auto;
    height: 76px;
  }.brand-logo {
    width: clamp(286px, 22vw, 330px);
    height: clamp(42px, 3vw, 50px);
  }.nav-links {
    font-size: clamp(15px, 0.92vw, 17px);
    gap: 3px;
  }.nav-links a {
    min-height: 42px;
    padding: 0 10px;
  }.hero h1 {
    font-size: clamp(38px, 4.2vw, 58px);
    line-height: 1.12;
  }.section-copy h2,
.section-heading h2,
.home-section-heading h2,
.business-heading h2,
.subsidiaries-heading h2,
.case-section .section-heading h2,
body[data-page="about"] #about.about-profile-state .company-intro-heading h3 {
    font-size: clamp(32px, 3.4vw, 48px);
    line-height: 1.18;
  }p,
.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.home-section-heading p:not(.eyebrow),
.business-hero-copy p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.72;
  }.corporate-video-section {
    padding-top: 52px;
    padding-bottom: 64px;
    gap: 36px;
  }.corporate-video-heading h2 {
    font-size: clamp(34px, 3.5vw, 52px);
  }.corporate-video-card {
    width: min(86vw, 1080px);
  }.network-map-card {
    max-height: 560px;
    aspect-ratio: 16 / 8.4;
  }body[data-page="about"] #about.about-profile-state .company-intro-content .company-intro-copy {
    font-size: 17px;
  }body[data-page="about"] #about.about-profile-state .company-intro-media,
body[data-page="about"] #about.about-profile-state .about-intro-media-stack {
    min-height: clamp(430px, 42vw, 560px);
  }.subsidiaries-heading {
    min-height: clamp(210px, 23vw, 300px);
  }body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline {
    transform: scale(0.92);
  }body[data-page="subsidiaries"] #subsidiaries .subsidiary-card,
body[data-page="subsidiaries"] #subsidiaries .subsidiary-overview-card {
    min-height: 0;
    padding: clamp(20px, 2vw, 26px);
  }.business-modern-hero {
    padding-top: 68px;
    padding-bottom: 74px;
  }.business-hero-media img {
    height: clamp(340px, 30vw, 430px);
    max-height: 430px;
  }
}@media (max-width: 1279px) {:root {
    --container-max: 1040px;
  }.home-content {
    gap: 56px;
  }.section {
    width: min(var(--container-max), calc(100% - 64px));
  }.site-header {
    grid-template-columns: auto 1fr auto;
  }.brand-logo {
    width: 260px;
    height: 44px;
  }.nav-links {
    overflow-x: auto;
    justify-content: flex-start;
  }.corporate-video-card {
    width: min(92vw, 980px);
  }.network-map-card {
    max-height: 500px;
  }body[data-page="about"] #about.about-profile-state .company-intro {
    grid-template-columns: 1fr;
    gap: 36px;
  }body[data-page="about"] #about.about-profile-state .company-intro-media,
body[data-page="about"] #about.about-profile-state .company-intro-content {
    grid-column: 1;
  }body[data-page="about"] #about.about-profile-state .company-intro-content {
    max-width: 900px;
    margin: 0 auto 56px;
  }.business-modern-hero {
    grid-template-columns: 1fr;
  }.business-hero-copy {
    max-width: 720px;
  }.business-hero-media img {
    max-height: 400px;
  }
}@media (max-width: 768px) {:root {
    --container-max: 100%;
  }.section,
.page-section,
.home-section {
    padding-top: var(--section-padding-sm);
    padding-bottom: var(--section-padding-sm);
  }.section,
.home-content {
    width: calc(100% - 40px);
  }.home-content {
    gap: 46px;
  }.site-header {
    height: 64px;
  }.brand-logo {
    width: 170px;
    height: 42px;
  }.hero h1,
.corporate-video-heading h2,
.subsidiaries-heading h2,
.business-hero-copy h2 {
    font-size: clamp(32px, 9vw, 44px);
  }.corporate-video-card {
    width: 92%;
  }.network-map-card {
    aspect-ratio: 1 / 0.92;
    max-height: none;
  }.network-toggle {
    max-width: 100%;
    overflow-x: auto;
  }.subsidiaries-heading {
    min-height: 0;
    padding-top: 20px;
    padding-bottom: 24px;
  }body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline {
    transform: none;
  }.business-modern-hero {
    padding: 58px 24px 64px;
  }.business-hero-media img {
    height: auto;
    max-height: 340px;
  }
}@media (max-width: 480px) {.section,
.home-content {
    width: calc(100% - 28px);
  }.home-content {
    gap: 38px;
  }.site-header {
    padding-left: 12px;
    padding-right: 12px;
  }.brand-logo {
    width: 150px;
    height: 38px;
  }.corporate-video-heading p:not(.eyebrow),
.home-section-heading p:not(.eyebrow),
.subsidiaries-heading p:not(.eyebrow),
.business-hero-copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.7;
  }.corporate-video-card {
    width: 100%;
    border-radius: 14px;
  }.network-map-card {
    border-radius: 8px;
  }.business-modern-hero {
    padding-left: 18px;
    padding-right: 18px;
  }
}body[data-page="subsidiaries"] #subsidiaries .subsidiaries-heading h2 {
  font-size: clamp(34px, 4vw, 56px);
}@media (min-width: 1280px) and (max-width: 1512px) {body[data-page="about"] #about.about-profile-state .company-intro {
    align-items: start;
  }body[data-page="about"] #about.about-profile-state .company-intro-media {
    max-width: 520px;
    min-height: 0;
    margin-top: 72px;
    margin-bottom: 56px;
  }body[data-page="about"] #about.about-profile-state .about-intro-media-stack {
    min-height: 0;
    height: auto;
    gap: 18px;
  }body[data-page="about"] #about.about-profile-state .about-intro-image-card-primary {
    flex: 0 0 auto;
    height: 440px;
  }body[data-page="about"] #about.about-profile-state .about-intro-image-card-secondary {
    flex: 0 0 auto;
    height: 190px;
  }body[data-page="about"] #about.about-profile-state .about-intro-image-card-primary img {
    flex: 0 0 280px;
    height: 280px;
  }body[data-page="about"] #about.about-profile-state .about-intro-image-card-secondary img {
    height: 190px;
  }body[data-page="about"] #about.about-profile-state .company-intro-overlay {
    padding: 22px 26px 24px;
  }body[data-page="about"] #about.about-profile-state .company-intro-content {
    max-width: 620px;
    margin-top: 72px;
    margin-bottom: 56px;
  }
}/* Page centering repair: keep full-width section backgrounds while centering the real content grids. */
body[data-page="about"] #about.about-profile-state,
body[data-page="services"] #services.business-modern-section {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}body[data-page="about"] #about.about-profile-state {
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 114, 206, 0.10), transparent 30%),
    linear-gradient(180deg, #f3f9ff 0%, #ffffff 34%, #ffffff 100%);
}body[data-page="about"] #about.about-profile-state .company-intro {
  width: min(calc(100% - 48px), 1240px);
  max-width: 1240px;
  margin-inline: auto;
  padding: clamp(72px, 7vw, 104px) 0 0;
  grid-template-columns: minmax(420px, 520px) minmax(0, 1fr);
  column-gap: clamp(40px, 4.5vw, 56px);
  row-gap: 0;
  justify-content: center;
  align-items: start;
  background: transparent;
}body[data-page="about"] #about.about-profile-state .company-intro-media {
  width: 100%;
  max-width: 520px;
  justify-self: end;
  margin: 0 0 64px;
}body[data-page="about"] #about.about-profile-state .company-intro-content {
  width: 100%;
  max-width: 640px;
  justify-self: start;
  margin: 0 0 64px;
  padding: clamp(40px, 4vw, 58px) 0 0;
  background: transparent;
}body[data-page="services"] #services.business-modern-section {
  padding: 0;
  background: #ffffff;
}body[data-page="services"] #services .business-modern-shell,
body[data-page="services"] #services .business-modern-list {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}body[data-page="services"] #services .business-modern-hero {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding: clamp(64px, 6vw, 84px) max(24px, calc((100vw - 1200px) / 2)) clamp(72px, 6.5vw, 92px);
  grid-template-columns: minmax(0, 540px) minmax(380px, 520px);
  justify-content: center;
  gap: clamp(40px, 4.5vw, 56px);
  background:
    radial-gradient(circle at 72% 22%, rgba(0, 114, 206, 0.10), transparent 30%),
    linear-gradient(90deg, #f3f9ff 0%, #ffffff 54%, #eef6ff 100%);
}body[data-page="services"] #services .business-hero-copy {
  max-width: 540px;
  justify-self: start;
}body[data-page="services"] #services .business-hero-media {
  width: 100%;
  max-width: 520px;
  justify-self: end;
}body[data-page="services"] #services .business-hero-media img {
  width: 100%;
  max-width: 520px;
}@media (max-width: 1512px) {body[data-page="about"] #about.about-profile-state .company-intro {
    width: min(calc(100% - 40px), 1120px);
    grid-template-columns: minmax(360px, 460px) minmax(0, 620px);
    column-gap: 40px;
    padding-top: 56px;
  }body[data-page="about"] #about.about-profile-state .company-intro-media {
    max-width: 460px;
    margin-top: 0;
  }body[data-page="about"] #about.about-profile-state .company-intro-content {
    max-width: 620px;
    margin-top: 0;
    padding-top: 20px;
  }body[data-page="services"] #services .business-modern-hero {
    padding: 56px max(20px, calc((100vw - 1120px) / 2)) 72px;
    grid-template-columns: minmax(0, 540px) minmax(360px, 460px);
    gap: 40px;
  }body[data-page="services"] #services .business-hero-media {
    max-width: 460px;
  }body[data-page="services"] #services .business-hero-media img {
    max-width: 460px;
  }
}@media (max-width: 1024px) {body[data-page="about"] #about.about-profile-state .company-intro,
body[data-page="services"] #services .business-modern-hero {
    grid-template-columns: 1fr;
  }body[data-page="about"] #about.about-profile-state .company-intro-media,
body[data-page="about"] #about.about-profile-state .company-intro-content,
body[data-page="services"] #services .business-hero-copy,
body[data-page="services"] #services .business-hero-media {
    max-width: 760px;
    justify-self: center;
  }
}@media (max-width: 768px) {body[data-page="about"] #about.about-profile-state .company-intro {
    width: min(calc(100% - 24px), 100%);
    padding-top: 42px;
  }body[data-page="services"] #services .business-modern-hero {
    padding: 48px 20px 58px;
  }
}body[data-page="subsidiaries"] #subsidiaries .subsidiaries-heading {
  text-align: center;
}body[data-page="subsidiaries"] #subsidiaries .subsidiaries-heading .eyebrow {
  justify-content: center;
}body[data-page="subsidiaries"] #subsidiaries .subsidiaries-heading h2,
body[data-page="subsidiaries"] #subsidiaries .subsidiaries-heading p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}@media (min-width: 1025px) {body[data-page="about"] #about.about-profile-state .company-intro {
    align-items: stretch;
  }body[data-page="about"] #about.about-profile-state .company-intro-media,
body[data-page="about"] #about.about-profile-state .company-intro-content {
    align-self: stretch;
    margin-top: 0;
    margin-bottom: 64px;
  }body[data-page="about"] #about.about-profile-state .company-intro-media {
    display: flex;
    min-height: 0;
    overflow: visible;
  }body[data-page="about"] #about.about-profile-state .about-intro-media-stack {
    height: 100%;
    min-height: 100%;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
  }body[data-page="about"] #about.about-profile-state .about-intro-image-card-primary {
    flex: 0 0 38%;
    height: auto;
    min-height: 0;
  }body[data-page="about"] #about.about-profile-state .about-intro-image-card-primary img {
    flex: 1 1 auto;
    height: auto;
    min-height: 0;
  }body[data-page="about"] #about.about-profile-state .company-intro-overlay {
    flex: 0 0 auto;
  }body[data-page="about"] #about.about-profile-state .about-intro-image-card-secondary {
    flex: 1 1 auto;
    height: auto;
    min-height: 0;
  }body[data-page="about"] #about.about-profile-state .about-intro-image-card-secondary img {
    height: 100%;
    min-height: 0;
  }
}/* About-only local layout repair. New rules are scoped to #about.about-page. */
#about.about-page {
  width: 100%;
  overflow-x: hidden;
}#about.about-page .about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}#about.about-page.about-profile-state .about-hero {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(64px, 6vw, 96px) 0 0;
  display: grid;
  grid-template-columns: minmax(360px, 42%) 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
  justify-content: center;
  background: transparent;
}#about.about-page.about-profile-state .about-hero-image {
  width: 100%;
  max-width: none;
  margin: 0;
  display: block;
  align-self: start;
  overflow: visible;
}#about.about-page.about-profile-state .about-intro-media-stack {
  height: auto;
  min-height: 0;
  gap: clamp(18px, 2.4vw, 28px);
}#about.about-page.about-profile-state .about-intro-image-card-primary,
#about.about-page.about-profile-state .about-intro-image-card-secondary {
  height: auto;
  min-height: 0;
  flex: 0 0 auto;
}#about.about-page.about-profile-state .about-hero-image img {
  width: 100%;
  height: clamp(260px, 24vw, 360px);
  min-height: 0;
  object-fit: cover;
  border-radius: 24px;
}#about.about-page.about-profile-state .about-intro-image-card-primary img {
  flex: 0 0 auto;
}#about.about-page.about-profile-state .company-intro-overlay {
  flex: 0 0 auto;
}#about.about-page.about-profile-state .about-hero-content {
  width: 100%;
  max-width: 620px;
  margin: 0;
  padding: clamp(18px, 2vw, 32px) 0 0;
  align-self: start;
  background: transparent;
}#about.about-page.about-profile-state .company-intro-logo-mark {
  max-width: 360px;
}#about.about-page.about-profile-state .company-intro-logo-mark img {
  max-width: 100%;
}#about.about-page.about-profile-state .about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}#about.about-page.about-profile-state #honors {
  grid-column: 1 / -1;
  margin-top: 72px;
}@media (min-width: 1513px) {#about.about-page.about-profile-state .about-values {
    grid-column: 2;
  }
}@media (max-width: 1512px) {#about.about-page .about-container {
    max-width: 1120px;
    padding: 0 clamp(20px, 3vw, 40px);
  }#about.about-page.about-profile-state .about-hero {
    max-width: 1120px;
    padding-top: 56px;
    grid-template-columns: minmax(360px, 42%) 1fr;
    gap: clamp(36px, 4vw, 48px);
  }#about.about-page.about-profile-state .company-intro-logo-mark {
    max-width: 320px;
    opacity: 0.08;
  }#about.about-page.about-profile-state .about-values {
    grid-column: 1 / -1;
  }
}@media (max-width: 1200px) {#about.about-page .about-container {
    padding: 0 clamp(20px, 3vw, 32px);
  }#about.about-page.about-profile-state .about-hero {
    gap: clamp(28px, 4vw, 42px);
  }
}@media (max-width: 1024px) {#about.about-page.about-profile-state .about-hero {
    grid-template-columns: minmax(300px, 45%) minmax(0, 55%);
  }#about.about-page.about-profile-state .about-hero-image img {
    height: clamp(220px, 26vw, 300px);
  }
}@media (max-width: 900px) {#about.about-page.about-profile-state .about-hero {
    grid-template-columns: 1fr;
  }#about.about-page.about-profile-state .about-hero-image,
#about.about-page.about-profile-state .about-hero-content {
    max-width: 760px;
    justify-self: center;
  }
}@media (max-width: 768px) {#about.about-page.about-profile-state .about-values {
    grid-template-columns: 1fr;
  }
}@media (max-width: 480px) {#about.about-page.about-profile-state .company-intro-heading h3 {
    font-size: clamp(32px, 10vw, 42px);
  }#about.about-page.about-profile-state .company-intro-content .company-intro-copy {
    font-size: 15px;
    line-height: 1.76;
  }
}@media (min-width: 1513px) {body[data-page="about"] #about.about-page.about-profile-state .about-values {
    grid-template-columns: 1fr;
  }
}@media (min-width: 901px) and (max-width: 1512px) {body[data-page="about"] #about.about-page.about-profile-state .about-hero {
    grid-template-columns: minmax(360px, 42%) minmax(0, 1fr);
  }body[data-page="about"] #about.about-page.about-profile-state .about-values {
    grid-column: 1 / -1;
    max-width: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}@media (min-width: 901px) and (max-width: 1024px) {body[data-page="about"] #about.about-page.about-profile-state .about-hero {
    grid-template-columns: minmax(300px, 45%) minmax(0, 55%);
  }
}@media (max-width: 900px) {body[data-page="about"] #about.about-page.about-profile-state .about-hero {
    grid-template-columns: 1fr;
  }
}@media (max-width: 768px) {body[data-page="about"] #about.about-page.about-profile-state .about-values {
    grid-template-columns: 1fr;
  }
}@media (max-width: 900px) {body[data-page="about"] #about.about-page.about-profile-state .about-hero-image img {
    height: clamp(260px, 55vw, 420px);
    min-height: 0;
  }
}@media (max-width: 480px) {body[data-page="about"] #about.about-page.about-profile-state .about-hero-image img {
    height: clamp(220px, 64vw, 300px);
    min-height: 0;
  }
}@media (max-width: 1512px) {body[data-page="about"] #about.about-page.about-profile-state .about-intro-image-card-primary img {
    flex: 0 0 auto;
    height: clamp(180px, 18vw, 260px);
    min-height: 0;
  }body[data-page="about"] #about.about-page.about-profile-state .about-intro-image-card-secondary img {
    height: clamp(240px, 24vw, 340px);
    min-height: 0;
  }
}@media (max-width: 900px) {body[data-page="about"] #about.about-page.about-profile-state .about-intro-image-card-primary img {
    height: clamp(200px, 42vw, 320px);
  }body[data-page="about"] #about.about-page.about-profile-state .about-intro-image-card-secondary img {
  height: clamp(220px, 50vw, 360px);
}
}body[data-page="about"] #about.about-page.about-profile-state .company-stat-grid--hero {
  grid-column: 1 / -1;
  grid-row: 2;
}body[data-page="about"] #about.about-page.about-profile-state .about-values {
  grid-column: 1 / -1;
  grid-row: 3;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 48px 0 0;
}body[data-page="about"] #about.about-page.about-profile-state #honors.company-honors-section {
  grid-column: 1 / -1;
  grid-row: 4;
  position: relative;
  z-index: 0;
  margin-top: 72px;
}body[data-page="about"] #about.about-page.about-profile-state .about-intro-media-stack {
  gap: 0;
}body[data-page="about"] #about.about-page.about-profile-state .about-intro-image-card-secondary {
  flex: 1 1 auto;
  height: 100%;
}body[data-page="about"] #about.about-page.about-profile-state .about-intro-image-card-secondary img {
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 42vw, 520px);
  object-fit: cover;
}@media (max-width: 1512px) {body[data-page="about"] #about.about-page.about-profile-state .about-intro-image-card-secondary img {
    height: clamp(360px, 36vw, 480px);
    min-height: 0;
  }
}@media (max-width: 900px) {body[data-page="about"] #about.about-page.about-profile-state .about-intro-image-card-secondary img {
    height: clamp(260px, 55vw, 420px);
  }
}@media (max-width: 480px) {body[data-page="about"] #about.about-page.about-profile-state .about-intro-image-card-secondary img {
    height: clamp(220px, 64vw, 300px);
  }
}/* Business page hero refinement: scoped to the services overview only. */
body[data-page="services"] #services.business-modern-section {
  background: #fff;
}body[data-page="services"] #services .business-modern-list > .business-modern-hero {
  width: 100%;
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  justify-content: center;
  gap: clamp(48px, 5vw, 72px);
  padding: 80px max(24px, calc((100vw - 1220px) / 2)) 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(0, 123, 255, 0.08), transparent 32%),
    linear-gradient(180deg, #f7fbff 0%, #eef7ff 100%);
}body[data-page="services"] #services .business-modern-list > .business-modern-hero::after {
  display: none;
}body[data-page="services"] #services .business-modern-hero .business-hero-copy {
  width: 100%;
  max-width: 560px;
  justify-self: end;
  align-self: center;
  padding: 0;
}body[data-page="services"] #services .business-modern-hero .business-hero-copy .eyebrow {
  margin: 0 0 18px;
  color: #0072ce;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}body[data-page="services"] #services .business-modern-hero .business-hero-copy h2 {
  margin: 0 0 20px;
  color: #08284a;
  font-size: clamp(42px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}body[data-page="services"] #services .business-modern-hero .business-hero-copy h3 {
  max-width: 560px;
  margin: 0 0 28px;
  color: #08284a;
  font-size: clamp(28px, 2.4vw, 34px);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0;
}body[data-page="services"] #services .business-modern-hero .business-hero-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: #49647f;
  font-size: 16.5px;
  line-height: 1.9;
}body[data-page="services"] #services .business-modern-hero .business-hero-media {
  width: min(100%, 510px);
  max-width: 510px;
  justify-self: start;
  align-self: center;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(15, 46, 88, 0.14);
  transform: translateY(14px);
}body[data-page="services"] #services .business-modern-hero .business-hero-media::before {
  display: none;
}body[data-page="services"] #services .business-modern-hero .business-hero-media img {
  display: block;
  width: 100%;
  max-width: none;
  height: 380px;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
}body[data-page="services"] #services .business-metrics-strip {
  padding: 34px 24px;
  background: #006fc9;
}body[data-page="services"] #services .business-metrics-inner {
  width: min(1220px, 100%);
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
}body[data-page="services"] #services .business-metrics-strip article {
  min-height: 96px;
  padding: 0 22px;
  border-right-color: rgba(255, 255, 255, 0.22);
}body[data-page="services"] #services .business-metrics-strip article:last-child {
  border-right: 0;
}body[data-page="services"] #services .business-metric-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 22px;
}body[data-page="services"] #services .business-metrics-strip strong {
  color: #fff;
  font-size: clamp(34px, 3vw, 40px);
  line-height: 1;
}body[data-page="services"] #services .business-metrics-strip strong span {
  font-size: 0.46em;
}body[data-page="services"] #services .business-metrics-strip p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.35;
}@media (max-width: 1200px) {body[data-page="services"] #services .business-modern-list > .business-modern-hero {
    gap: 40px;
    padding-top: 72px;
    padding-bottom: 82px;
  }body[data-page="services"] #services .business-modern-hero .business-hero-media {
    width: min(100%, 430px);
    max-width: 430px;
  }body[data-page="services"] #services .business-modern-hero .business-hero-media img {
    height: 360px;
  }
}@media (max-width: 900px) {body[data-page="services"] #services .business-modern-list > .business-modern-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 24px 64px;
    text-align: center;
  }body[data-page="services"] #services .business-modern-hero .business-hero-copy {
    max-width: 680px;
    justify-self: center;
    margin: 0 auto;
  }body[data-page="services"] #services .business-modern-hero .business-hero-copy p:not(.eyebrow) {
    max-width: 620px;
    margin-inline: auto;
  }body[data-page="services"] #services .business-modern-hero .business-hero-media {
    width: 100%;
    max-width: 560px;
    justify-self: center;
    transform: none;
  }body[data-page="services"] #services .business-modern-hero .business-hero-media img {
    height: 300px;
  }body[data-page="services"] #services .business-metrics-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 28px;
  }body[data-page="services"] #services .business-metrics-strip article {
    border-right: 0;
    min-height: 88px;
  }
}@media (max-width: 560px) {body[data-page="services"] #services .business-modern-list > .business-modern-hero {
    padding: 48px 20px 56px;
  }body[data-page="services"] #services .business-modern-hero .business-hero-copy h2 {
    font-size: 38px;
  }body[data-page="services"] #services .business-modern-hero .business-hero-copy h3 {
    font-size: 24px;
  }body[data-page="services"] #services .business-modern-hero .business-hero-copy p:not(.eyebrow) {
    font-size: 15.5px;
    line-height: 1.85;
  }body[data-page="services"] #services .business-modern-hero .business-hero-media img {
    height: 260px;
    border-radius: 18px;
  }body[data-page="services"] #services .business-modern-hero .business-hero-media {
    border-radius: 18px;
  }body[data-page="services"] #services .business-metrics-inner {
    grid-template-columns: 1fr;
  }
}/* Honors and digital achievements module refinement. Scoped to the about honors area only. */
body[data-page="about"] #honors .honor-showcase {
  gap: clamp(42px, 4vw, 64px);
}body[data-page="about"] #honors .honor-display-card {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 56px 60px 60px;
  border: 1px solid rgba(0, 114, 206, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 251, 255, 0.97));
  box-shadow: 0 22px 60px rgba(8, 40, 74, 0.06);
}body[data-page="about"] #honors .honor-display-card:hover,
body[data-page="honors"] #honors .honor-display-card:hover {
  transform: none;
  border-color: rgba(0, 114, 206, 0.2);
  box-shadow: 0 24px 62px rgba(8, 40, 74, 0.075);
}body[data-page="about"] #honors .honor-display-copy,
body[data-page="honors"] #honors .honor-display-copy {
  max-width: 980px;
  margin: 0 0 34px;
}body[data-page="about"] #honors .honor-display-copy > span,
body[data-page="honors"] #honors .honor-display-copy > span {
  display: inline-block;
  margin-bottom: 22px;
  color: #0072ce;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
}body[data-page="about"] #honors .honor-display-copy h3,
body[data-page="honors"] #honors .honor-display-copy h3 {
  margin: 0 0 22px;
  color: #08284a;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.12;
}body[data-page="about"] #honors .honor-display-copy p,
body[data-page="honors"] #honors .honor-display-copy p {
  max-width: 980px;
  margin: 0;
  color: #4b6380;
  font-size: 18px;
  line-height: 1.9;
}body[data-page="about"] #honors .honor-display-tags,
body[data-page="honors"] #honors .honor-display-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}body[data-page="about"] #honors .honor-display-tags span,
body[data-page="honors"] #honors .honor-display-tags span {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  border: 1px solid rgba(0, 114, 206, 0.16);
  border-radius: 999px;
  background: rgba(0, 114, 206, 0.08);
  color: #0068bd;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}body[data-page="about"] #honors .honor-image-link,
body[data-page="honors"] #honors .honor-image-link {
  width: 100%;
  margin: 0;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 114, 206, 0.14);
  border-radius: 22px;
  background: #f7fbff;
  box-shadow: none;
}body[data-page="about"] #honors .honor-image-link:hover,
body[data-page="honors"] #honors .honor-image-link:hover {
  transform: none;
  border-color: rgba(0, 114, 206, 0.22);
  box-shadow: none;
}body[data-page="about"] #honors .honor-image-link img,
body[data-page="about"] #honors .honor-image-link img.honor-image-contain,
body[data-page="honors"] #honors .honor-image-link img,
body[data-page="honors"] #honors .honor-image-link img.honor-image-contain {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  border-radius: 16px;
  transform: none;
}body[data-page="about"] #honors .honor-image-link:hover img,
body[data-page="honors"] #honors .honor-image-link:hover img {
  transform: none;
}@media (max-width: 900px) {body[data-page="about"] #honors .honor-display-card,
body[data-page="honors"] #honors .honor-display-card {
    padding: 40px 28px;
  }body[data-page="about"] #honors .honor-display-copy,
body[data-page="honors"] #honors .honor-display-copy {
    margin-bottom: 28px;
  }body[data-page="about"] #honors .honor-display-copy h3,
body[data-page="honors"] #honors .honor-display-copy h3 {
    font-size: clamp(34px, 5vw, 40px);
  }body[data-page="about"] #honors .honor-display-copy p,
body[data-page="honors"] #honors .honor-display-copy p {
    font-size: 16px;
  }body[data-page="about"] #honors .honor-image-link,
body[data-page="honors"] #honors .honor-image-link {
    padding: 12px;
  }
}@media (max-width: 560px) {body[data-page="about"] #honors.company-honors-section,
body[data-page="honors"] #honors.company-honors-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }body[data-page="about"] #honors .honor-showcase,
body[data-page="honors"] #honors .honor-showcase {
    gap: 28px;
  }body[data-page="about"] #honors .honor-display-card,
body[data-page="honors"] #honors .honor-display-card {
    padding: 32px 20px;
    border-radius: 22px;
  }body[data-page="about"] #honors .honor-display-copy > span,
body[data-page="honors"] #honors .honor-display-copy > span {
    margin-bottom: 18px;
    font-size: 14px;
  }body[data-page="about"] #honors .honor-display-copy h3,
body[data-page="honors"] #honors .honor-display-copy h3 {
    margin-bottom: 18px;
    font-size: clamp(30px, 8vw, 34px);
  }body[data-page="about"] #honors .honor-display-copy p,
body[data-page="honors"] #honors .honor-display-copy p {
    font-size: 15.5px;
    line-height: 1.82;
  }body[data-page="about"] #honors .honor-display-tags,
body[data-page="honors"] #honors .honor-display-tags {
    gap: 10px;
    margin-top: 22px;
  }body[data-page="about"] #honors .honor-display-tags span,
body[data-page="honors"] #honors .honor-display-tags span {
    height: 32px;
    padding: 0 12px;
    font-size: 13px;
  }body[data-page="about"] #honors .honor-image-link,
body[data-page="honors"] #honors .honor-image-link {
    padding: 10px;
    border-radius: 18px;
  }body[data-page="about"] #honors .honor-image-link img,
body[data-page="about"] #honors .honor-image-link img.honor-image-contain,
body[data-page="honors"] #honors .honor-image-link img,
body[data-page="honors"] #honors .honor-image-link img.honor-image-contain {
    border-radius: 14px;
  }
}/* Services page lower advantages block: tighten spacing near service cards and footer. */
body[data-page="services"] #services.business-modern-section {
  padding-bottom: clamp(36px, 4vw, 52px);
}body[data-page="services"] #services .business-modern-list:not(.is-hidden) + .business-modern-details {
  display: none;
  padding: 0;
}body[data-page="services"] #services .business-modern-grid + .business-why {
  margin-top: clamp(40px, 4vw, 56px);
}body[data-page="services"] #services .business-why {
  padding: clamp(48px, 5vw, 64px) 0 clamp(56px, 5vw, 72px);
}body[data-page="services"] #services .business-why-heading h3 {
  font-size: clamp(30px, 2.6vw, 38px);
}body[data-page="services"] #services .business-why-heading p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.72;
}body[data-page="services"] #services .business-why-grid {
  margin-top: 34px;
  gap: 18px;
}body[data-page="services"] #services .business-why-grid article {
  padding: 0 18px;
}body[data-page="services"] #services .business-why-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
}body[data-page="services"] #services .business-why-grid h4 {
  font-size: 18px;
}body[data-page="services"] #services .business-why-grid p {
  margin-top: 8px;
  line-height: 1.65;
}@media (max-width: 900px) {body[data-page="services"] #services .business-modern-grid + .business-why {
    margin-top: 34px;
  }body[data-page="services"] #services .business-why {
    padding: 42px 0 52px;
  }body[data-page="services"] #services .business-why-grid {
    margin-top: 28px;
  }
}@media (max-width: 560px) {body[data-page="services"] #services .business-why {
    padding: 34px 0 44px;
  }body[data-page="services"] #services .business-why-grid article {
    padding: 0 6px;
  }
}/* Honors page open layout refinement. Scoped to the honors block only. */
body[data-page="about"] #honors.company-honors-section,
body[data-page="honors"] #honors.company-honors-section {
  padding-top: clamp(58px, 6vw, 78px);
  padding-bottom: clamp(72px, 7vw, 96px);
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 114, 206, 0.08), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #fff 42%, #f8fbff 100%);
}body[data-page="about"] #honors .honor-showcase,
body[data-page="honors"] #honors .honor-showcase {
  width: min(1280px, calc(100% - 96px));
  gap: clamp(38px, 4vw, 54px);
}body[data-page="about"] #honors .honor-overview,
body[data-page="honors"] #honors .honor-overview {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.42fr);
  align-items: end;
  gap: clamp(32px, 5vw, 72px);
  justify-self: stretch;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}body[data-page="about"] #honors .honor-overview:hover,
body[data-page="honors"] #honors .honor-overview:hover {
  transform: none;
  box-shadow: none;
}body[data-page="about"] #honors .honor-overview h3,
body[data-page="honors"] #honors .honor-overview h3 {
  max-width: 620px;
  margin: 0;
  color: #08284a;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1.12;
  font-weight: 850;
}body[data-page="about"] #honors .honor-overview p,
body[data-page="honors"] #honors .honor-overview p {
  grid-column: 1;
  max-width: 780px;
  margin: 18px 0 0;
  color: #4b6380;
  font-size: 17px;
  line-height: 1.82;
}body[data-page="about"] #honors .honor-overview .honor-tags,
body[data-page="honors"] #honors .honor-overview .honor-tags {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0;
  justify-content: stretch;
}body[data-page="about"] #honors .honor-overview .honor-tags span,
body[data-page="honors"] #honors .honor-overview .honor-tags span {
  min-height: 52px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 114, 206, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 32px rgba(8, 40, 74, 0.05);
  color: #0068bd;
  font-size: 15px;
  font-weight: 750;
}body[data-page="about"] #honors .honor-display-card,
body[data-page="honors"] #honors .honor-display-card {
  border-color: rgba(0, 114, 206, 0.1);
  background: rgba(255, 255, 255, 0.76);
}body[data-page="about"] #honors .honor-overview + .honor-display-card,
body[data-page="honors"] #honors .honor-overview + .honor-display-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
  padding: clamp(42px, 4.4vw, 58px);
  border: 1px solid rgba(0, 114, 206, 0.11);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(247, 251, 255, 0.78));
  box-shadow: 0 22px 54px rgba(8, 40, 74, 0.055);
}body[data-page="about"] #honors .honor-overview + .honor-display-card .honor-display-copy,
body[data-page="honors"] #honors .honor-overview + .honor-display-card .honor-display-copy {
  margin: 0;
  max-width: 520px;
}body[data-page="about"] #honors .honor-overview + .honor-display-card .honor-display-copy > span,
body[data-page="honors"] #honors .honor-overview + .honor-display-card .honor-display-copy > span {
  margin-bottom: 18px;
}body[data-page="about"] #honors .honor-overview + .honor-display-card .honor-display-copy h3,
body[data-page="honors"] #honors .honor-overview + .honor-display-card .honor-display-copy h3 {
  font-size: clamp(34px, 3vw, 46px);
}body[data-page="about"] #honors .honor-overview + .honor-display-card .honor-display-copy p,
body[data-page="honors"] #honors .honor-overview + .honor-display-card .honor-display-copy p {
  font-size: 17px;
  line-height: 1.82;
}body[data-page="about"] #honors .honor-overview + .honor-display-card .honor-image-link,
body[data-page="honors"] #honors .honor-overview + .honor-display-card .honor-image-link {
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: transparent;
  box-shadow: 0 20px 48px rgba(8, 40, 74, 0.12);
}body[data-page="about"] #honors .honor-overview + .honor-display-card .honor-image-link img,
body[data-page="honors"] #honors .honor-overview + .honor-display-card .honor-image-link img {
  border-radius: 18px;
}@media (max-width: 1100px) {body[data-page="about"] #honors .honor-overview + .honor-display-card,
body[data-page="honors"] #honors .honor-overview + .honor-display-card {
    grid-template-columns: 1fr;
  }body[data-page="about"] #honors .honor-overview + .honor-display-card .honor-display-copy,
body[data-page="honors"] #honors .honor-overview + .honor-display-card .honor-display-copy {
    max-width: 760px;
  }
}@media (max-width: 900px) {body[data-page="about"] #honors .honor-showcase,
body[data-page="honors"] #honors .honor-showcase {
    width: min(100% - 48px, 760px);
  }body[data-page="about"] #honors .honor-overview,
body[data-page="honors"] #honors .honor-overview {
    grid-template-columns: 1fr;
    gap: 24px;
  }body[data-page="about"] #honors .honor-overview p,
body[data-page="honors"] #honors .honor-overview p,
body[data-page="about"] #honors .honor-overview .honor-tags,
body[data-page="honors"] #honors .honor-overview .honor-tags {
    grid-column: 1;
    grid-row: auto;
  }body[data-page="about"] #honors .honor-overview .honor-tags,
body[data-page="honors"] #honors .honor-overview .honor-tags {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}@media (max-width: 640px) {body[data-page="about"] #honors.company-honors-section,
body[data-page="honors"] #honors.company-honors-section {
    padding-top: 48px;
    padding-bottom: 64px;
  }body[data-page="about"] #honors .honor-showcase,
body[data-page="honors"] #honors .honor-showcase {
    width: calc(100% - 32px);
    gap: 30px;
  }body[data-page="about"] #honors .honor-overview h3,
body[data-page="honors"] #honors .honor-overview h3 {
    font-size: clamp(32px, 9vw, 40px);
  }body[data-page="about"] #honors .honor-overview p,
body[data-page="honors"] #honors .honor-overview p {
    font-size: 15.5px;
  }body[data-page="about"] #honors .honor-overview .honor-tags,
body[data-page="honors"] #honors .honor-overview .honor-tags {
    grid-template-columns: 1fr;
  }body[data-page="about"] #honors .honor-overview + .honor-display-card,
body[data-page="honors"] #honors .honor-overview + .honor-display-card {
    padding: 28px 20px;
    border-radius: 22px;
    gap: 26px;
  }
}/* Honor certificate carousel. Scoped to the honors page/section only. */
body[data-page="about"] #honors .honor-overview + .honor-display-card,
body[data-page="honors"] #honors .honor-overview + .honor-display-card {
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}body[data-page="about"] #honors .honor-overview + .honor-display-card:hover,
body[data-page="honors"] #honors .honor-overview + .honor-display-card:hover {
  transform: none;
  box-shadow: none;
}body[data-page="about"] #honors .honor-overview + .honor-display-card .honor-display-copy,
body[data-page="honors"] #honors .honor-overview + .honor-display-card .honor-display-copy {
  max-width: 980px;
  margin: 0 0 30px;
}body[data-page="about"] #honors .honor-certificate-carousel,
body[data-page="honors"] #honors .honor-certificate-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 4px 58px 2px;
}body[data-page="about"] #honors .honor-certificate-track,
body[data-page="honors"] #honors .honor-certificate-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 4px 18px;
  -webkit-overflow-scrolling: touch;
}body[data-page="about"] #honors .honor-certificate-track::-webkit-scrollbar,
body[data-page="honors"] #honors .honor-certificate-track::-webkit-scrollbar {
  display: none;
}body[data-page="about"] #honors .honor-certificate-card.honor-image-link,
body[data-page="honors"] #honors .honor-certificate-card.honor-image-link {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  display: block;
  scroll-snap-align: start;
  padding: 16px;
  border: 1px solid rgba(0, 114, 206, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(8, 40, 74, 0.07);
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}body[data-page="about"] #honors .honor-certificate-card.honor-image-link:hover,
body[data-page="about"] #honors .honor-certificate-card.honor-image-link:focus-visible,
body[data-page="honors"] #honors .honor-certificate-card.honor-image-link:hover,
body[data-page="honors"] #honors .honor-certificate-card.honor-image-link:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(0, 114, 206, 0.24);
  box-shadow: 0 24px 54px rgba(8, 40, 74, 0.12);
}body[data-page="about"] #honors .honor-certificate-card figure,
body[data-page="honors"] #honors .honor-certificate-card figure {
  margin: 0;
}body[data-page="about"] #honors .honor-certificate-image,
body[data-page="honors"] #honors .honor-certificate-image {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(247, 251, 255, 0.92), rgba(241, 247, 252, 0.92));
  border: 1px solid rgba(0, 114, 206, 0.08);
}body[data-page="about"] #honors .honor-certificate-card.honor-image-link .honor-certificate-image img,
body[data-page="honors"] #honors .honor-certificate-card.honor-image-link .honor-certificate-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: none;
}body[data-page="about"] #honors .honor-certificate-card.honor-image-link:hover .honor-certificate-image img,
body[data-page="honors"] #honors .honor-certificate-card.honor-image-link:hover .honor-certificate-image img {
  transform: none;
}body[data-page="about"] #honors .honor-certificate-card figcaption,
body[data-page="honors"] #honors .honor-certificate-card figcaption {
  display: grid;
  gap: 8px;
  padding: 18px 4px 2px;
}body[data-page="about"] #honors .honor-certificate-card figcaption strong,
body[data-page="honors"] #honors .honor-certificate-card figcaption strong {
  color: #08284a;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.25;
  font-weight: 820;
}body[data-page="about"] #honors .honor-certificate-card figcaption span,
body[data-page="honors"] #honors .honor-certificate-card figcaption span {
  color: #5b728c;
  font-size: 14.5px;
  line-height: 1.65;
}body[data-page="about"] #honors .honor-carousel-button,
body[data-page="honors"] #honors .honor-carousel-button {
  position: absolute;
  top: 42%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 114, 206, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(8, 40, 74, 0.12);
  color: #0072ce;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}body[data-page="about"] #honors .honor-carousel-button:hover,
body[data-page="about"] #honors .honor-carousel-button:focus-visible,
body[data-page="honors"] #honors .honor-carousel-button:hover,
body[data-page="honors"] #honors .honor-carousel-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0, 114, 206, 0.34);
  box-shadow: 0 18px 42px rgba(8, 40, 74, 0.16);
}body[data-page="about"] #honors .honor-carousel-button-prev,
body[data-page="honors"] #honors .honor-carousel-button-prev {
  left: 4px;
}body[data-page="about"] #honors .honor-carousel-button-next,
body[data-page="honors"] #honors .honor-carousel-button-next {
  right: 4px;
}@media (max-width: 1100px) {body[data-page="about"] #honors .honor-certificate-carousel,
body[data-page="honors"] #honors .honor-certificate-carousel {
    padding-inline: 48px;
  }body[data-page="about"] #honors .honor-certificate-card.honor-image-link,
body[data-page="honors"] #honors .honor-certificate-card.honor-image-link {
    flex-basis: calc((100% - 24px) / 2);
  }
}@media (max-width: 640px) {body[data-page="about"] #honors .honor-certificate-carousel,
body[data-page="honors"] #honors .honor-certificate-carousel {
    padding-inline: 0;
    overflow: visible;
  }body[data-page="about"] #honors .honor-certificate-track,
body[data-page="honors"] #honors .honor-certificate-track {
    gap: 16px;
    padding-bottom: 14px;
  }body[data-page="about"] #honors .honor-certificate-card.honor-image-link,
body[data-page="honors"] #honors .honor-certificate-card.honor-image-link {
    flex-basis: 84%;
    padding: 12px;
    border-radius: 18px;
  }body[data-page="about"] #honors .honor-certificate-image,
body[data-page="honors"] #honors .honor-certificate-image {
    border-radius: 14px;
  }body[data-page="about"] #honors .honor-certificate-card figcaption,
body[data-page="honors"] #honors .honor-certificate-card figcaption {
    padding-top: 14px;
  }body[data-page="about"] #honors .honor-certificate-card figcaption strong,
body[data-page="honors"] #honors .honor-certificate-card figcaption strong {
    font-size: 18px;
  }body[data-page="about"] #honors .honor-certificate-card figcaption span,
body[data-page="honors"] #honors .honor-certificate-card figcaption span {
    font-size: 13.5px;
  }body[data-page="about"] #honors .honor-carousel-button,
body[data-page="honors"] #honors .honor-carousel-button {
    display: none;
  }
}/* Inside AGIL carousel sizing and autoplay polish. Scoped to the home showcase only. */
#home .home-showcase-section .showcase-track {
  gap: 24px;
}#home .home-showcase-section .showcase-card {
  flex-basis: calc((100% - 48px) / 3);
  height: clamp(220px, 22vw, 280px);
}#home .home-showcase-section .showcase-arrow {
  background: rgba(255, 255, 255, 0.86);
}@media (max-width: 900px) {#home .home-showcase-section .showcase-card {
    flex-basis: min(82vw, 420px);
    height: clamp(210px, 44vw, 300px);
  }
}@media (max-width: 640px) {#home .home-showcase-section .showcase-track {
    gap: 16px;
  }#home .home-showcase-section .showcase-card {
    flex-basis: 86%;
    height: clamp(210px, 58vw, 280px);
  }
}/* Honors open page polish. Keeps the honors page out of card-like hero blocks. */
body[data-page="about"] #honors.company-honors-section,
body[data-page="honors"] #honors.company-honors-section,
body[data-page="about"] #about.about-page.about-profile-state #honors.company-honors-section {
  margin-top: 0;
  padding: 116px 0 92px;
  overflow-x: clip;
  background:
    radial-gradient(circle at 82% 8%, rgba(0, 114, 206, 0.055), transparent 30%),
    linear-gradient(180deg, #f8fcff 0%, #ffffff 34%, #f7fbff 100%);
  border: 0;
  box-shadow: none;
}body[data-page="about"] #honors.company-honors-section::before,
body[data-page="about"] #honors.company-honors-section::after,
body[data-page="honors"] #honors.company-honors-section::before,
body[data-page="honors"] #honors.company-honors-section::after,
body[data-page="about"] #honors .honor-showcase::before,
body[data-page="about"] #honors .honor-showcase::after,
body[data-page="honors"] #honors .honor-showcase::before,
body[data-page="honors"] #honors .honor-showcase::after {
  display: none;
}body[data-page="about"] #honors .honor-showcase,
body[data-page="honors"] #honors .honor-showcase {
  width: min(1200px, calc(100% - 80px));
  gap: 58px;
  background: transparent;
  border: 0;
  box-shadow: none;
}body[data-page="about"] #honors .honor-overview.honors-hero,
body[data-page="honors"] #honors .honor-overview.honors-hero {
  display: block;
  max-width: 1200px;
  margin: 0 auto 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}body[data-page="about"] #honors .honor-overview.honors-hero:hover,
body[data-page="honors"] #honors .honor-overview.honors-hero:hover {
  transform: none;
  box-shadow: none;
}body[data-page="about"] #honors .honor-eyebrow,
body[data-page="honors"] #honors .honor-eyebrow {
  display: block;
  margin: 0 0 18px;
  color: #0072ce;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}body[data-page="about"] #honors .honor-overview.honors-hero h3,
body[data-page="honors"] #honors .honor-overview.honors-hero h3 {
  max-width: 760px;
  margin: 0;
  color: #08284a;
  font-size: clamp(48px, 4.2vw, 60px);
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: 0;
}body[data-page="about"] #honors .honor-overview.honors-hero p,
body[data-page="honors"] #honors .honor-overview.honors-hero p {
  max-width: 800px;
  margin: 26px 0 0;
  color: #4b6380;
  font-size: 17px;
  line-height: 1.82;
}body[data-page="about"] #honors .honor-overview.honors-hero .honor-tags,
body[data-page="honors"] #honors .honor-overview.honors-hero .honor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 0;
  justify-content: flex-start;
}body[data-page="about"] #honors .honor-overview.honors-hero .honor-tags span,
body[data-page="honors"] #honors .honor-overview.honors-hero .honor-tags span {
  min-height: 38px;
  height: auto;
  padding: 8px 16px;
  border: 1px solid rgba(0, 114, 206, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
  color: #0068bd;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
}body[data-page="about"] #honors .honor-overview + .honor-display-card,
body[data-page="honors"] #honors .honor-overview + .honor-display-card {
  margin-top: 0;
}body[data-page="about"] #honors .honor-overview + .honor-display-card .honor-display-copy,
body[data-page="honors"] #honors .honor-overview + .honor-display-card .honor-display-copy {
  max-width: 880px;
  margin-bottom: 24px;
}body[data-page="about"] #honors .honor-display-copy > span,
body[data-page="honors"] #honors .honor-display-copy > span,
body[data-page="about"] #honors .honor-overview + .honor-display-card .honor-display-copy > span,
body[data-page="honors"] #honors .honor-overview + .honor-display-card .honor-display-copy > span {
  margin: 0 0 12px;
  color: #0072ce;
  font-size: 14px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.14em;
}body[data-page="about"] #honors .honor-overview + .honor-display-card .honor-display-copy h3,
body[data-page="honors"] #honors .honor-overview + .honor-display-card .honor-display-copy h3 {
  margin-bottom: 18px;
  font-size: clamp(38px, 3.4vw, 48px);
  line-height: 1.14;
}body[data-page="about"] #honors .honor-overview + .honor-display-card .honor-display-copy p,
body[data-page="honors"] #honors .honor-overview + .honor-display-card .honor-display-copy p {
  max-width: 850px;
  font-size: 16.5px;
  line-height: 1.82;
}body[data-page="about"] #honors .honor-display-tags,
body[data-page="honors"] #honors .honor-display-tags {
  gap: 10px;
  margin-top: 22px;
}body[data-page="about"] #honors .honor-display-tags span,
body[data-page="honors"] #honors .honor-display-tags span {
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13.5px;
  box-shadow: none;
}body[data-page="about"] #honors .honor-certificate-carousel,
body[data-page="honors"] #honors .honor-certificate-carousel {
  margin-top: 4px;
  padding: 2px 50px 0;
}body[data-page="about"] #honors .honor-certificate-track,
body[data-page="honors"] #honors .honor-certificate-track {
  gap: 22px;
  padding: 8px 3px 16px;
}body[data-page="about"] #honors .honor-certificate-card.honor-image-link,
body[data-page="honors"] #honors .honor-certificate-card.honor-image-link {
  flex-basis: calc((100% - 44px) / 3);
  padding: 14px;
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(8, 40, 74, 0.065);
}body[data-page="about"] #honors .honor-certificate-image,
body[data-page="honors"] #honors .honor-certificate-image {
  aspect-ratio: 4.1 / 3;
  border-radius: 14px;
}body[data-page="about"] #honors .honor-certificate-card figcaption,
body[data-page="honors"] #honors .honor-certificate-card figcaption {
  gap: 6px;
  padding: 14px 2px 0;
}body[data-page="about"] #honors .honor-certificate-card figcaption strong,
body[data-page="honors"] #honors .honor-certificate-card figcaption strong {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.28;
  font-weight: 780;
}body[data-page="about"] #honors .honor-certificate-card figcaption span,
body[data-page="honors"] #honors .honor-certificate-card figcaption span {
  font-size: 13.5px;
  line-height: 1.55;
}body[data-page="about"] #honors .honor-carousel-button,
body[data-page="honors"] #honors .honor-carousel-button {
  width: 38px;
  height: 38px;
  border-color: rgba(0, 114, 206, 0.14);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 26px rgba(8, 40, 74, 0.09);
  font-size: 26px;
}@media (max-width: 1100px) {body[data-page="about"] #honors.company-honors-section,
body[data-page="honors"] #honors.company-honors-section,
body[data-page="about"] #about.about-page.about-profile-state #honors.company-honors-section {
    padding-top: 92px;
    padding-bottom: 76px;
  }body[data-page="about"] #honors .honor-showcase,
body[data-page="honors"] #honors .honor-showcase {
    width: min(100% - 56px, 1020px);
    gap: 48px;
  }body[data-page="about"] #honors .honor-certificate-card.honor-image-link,
body[data-page="honors"] #honors .honor-certificate-card.honor-image-link {
    flex-basis: calc((100% - 22px) / 2);
  }
}@media (max-width: 640px) {body[data-page="about"] #honors.company-honors-section,
body[data-page="honors"] #honors.company-honors-section,
body[data-page="about"] #about.about-page.about-profile-state #honors.company-honors-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }body[data-page="about"] #honors .honor-showcase,
body[data-page="honors"] #honors .honor-showcase {
    width: calc(100% - 32px);
    gap: 38px;
  }body[data-page="about"] #honors .honor-overview.honors-hero h3,
body[data-page="honors"] #honors .honor-overview.honors-hero h3 {
    font-size: clamp(34px, 9vw, 42px);
  }body[data-page="about"] #honors .honor-overview.honors-hero p,
body[data-page="honors"] #honors .honor-overview.honors-hero p {
    margin-top: 20px;
    font-size: 15.5px;
  }body[data-page="about"] #honors .honor-overview.honors-hero .honor-tags,
body[data-page="honors"] #honors .honor-overview.honors-hero .honor-tags {
    margin-top: 20px;
  }body[data-page="about"] #honors .honor-overview + .honor-display-card .honor-display-copy h3,
body[data-page="honors"] #honors .honor-overview + .honor-display-card .honor-display-copy h3 {
    font-size: clamp(30px, 8vw, 36px);
  }body[data-page="about"] #honors .honor-certificate-carousel,
body[data-page="honors"] #honors .honor-certificate-carousel {
    padding-inline: 0;
  }body[data-page="about"] #honors .honor-certificate-card.honor-image-link,
body[data-page="honors"] #honors .honor-certificate-card.honor-image-link {
  flex-basis: 84%;
}
}.jiujie-quote-advisor {
  position: fixed;
  right: 28px;
  bottom: 130px;
  z-index: 140;
  pointer-events: none;
}.jiujie-quote-trigger {
  position: relative;
  width: 108px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #0072ce;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.28s ease, filter 0.28s ease, opacity 0.28s ease;
}.jiujie-quote-trigger:hover {
  transform: translateY(-5px) scale(1.035);
  filter: drop-shadow(0 12px 22px rgba(15, 65, 125, 0.2));
}.jiujie-quote-mascot {
  width: 96px;
  display: block;
  pointer-events: none;
  user-select: none;
}.jiujie-mascot-image,
.jiujie-quote-mascot img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}.jiujie-mascot-label {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(8, 47, 93, 0.94);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(8, 47, 93, 0.2);
  pointer-events: none;
}.jiujie-quote-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  width: max-content;
  max-width: 260px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(8, 40, 74, 0.94);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateX(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: none;
  box-shadow: 0 12px 28px rgba(8, 40, 74, 0.22);
}.jiujie-quote-trigger:hover .jiujie-quote-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}.jiujie-quote-overlay {
  display: none;
}.jiujie-quote-panel {
  position: fixed;
  top: 84px;
  right: 32px;
  bottom: auto;
  width: min(clamp(680px, 48vw, 860px), calc(100vw - 64px));
  height: min(860px, calc(100vh - 116px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(0, 114, 206, 0.16);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(8, 40, 74, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateX(16px);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  pointer-events: none;
}.jiujie-quote-advisor.is-open .jiujie-quote-panel {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}.jiujie-quote-advisor.is-open .jiujie-quote-trigger {
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  pointer-events: none;
}.jiujie-quote-panel-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  justify-content: space-between;
  padding: 20px 26px 17px;
  border-bottom: 1px solid rgba(0, 114, 206, 0.12);
  background:
    radial-gradient(circle at 82% 0%, rgba(0, 114, 206, 0.12), transparent 34%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}.jiujie-quote-panel-header h2 {
  margin: 0;
  color: #08284a;
  font-size: clamp(22px, 1.5vw, 26px);
  line-height: 1.18;
  font-weight: 850;
  letter-spacing: 0;
}.jiujie-quote-panel-header p {
  margin: 8px 0 0;
  color: #536b86;
  font-size: 14.5px;
  line-height: 1.65;
}.jiujie-quote-panel-actions {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}.jiujie-quote-lang {
  min-width: 42px;
  height: 36px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 114, 206, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #005aa8;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}.jiujie-quote-lang:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 114, 206, 0.3);
  background: #eef7ff;
}.jiujie-quote-close {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 114, 206, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #08284a;
  font-size: 24px;
  line-height: 1;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}.jiujie-quote-close:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 114, 206, 0.3);
  background: #eef7ff;
}.jiujie-quote-frame-wrap {
  min-height: 0;
  overflow: hidden;
  background: #ffffff;
}.jiujie-quote-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #ffffff;
}@media (min-width: 769px) and (max-width: 1199px) {.jiujie-quote-panel {
    top: 76px;
    right: 24px;
    width: min(680px, calc(100vw - 48px));
    height: calc(100vh - 104px);
  }
}@media (max-width: 768px) {.jiujie-quote-advisor {
    right: 12px;
    bottom: 88px;
  }.jiujie-quote-trigger {
    width: 84px;
  }.jiujie-quote-mascot {
    width: 72px;
  }.jiujie-mascot-label {
    margin-bottom: 6px;
    padding: 5px 8px;
    font-size: 11px;
  }.jiujie-quote-tooltip {
    display: none;
  }.jiujie-quote-overlay {
    position: fixed;
    inset: 0;
    display: block;
    background: rgba(8, 40, 74, 0.34);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
  }.jiujie-quote-advisor.is-open .jiujie-quote-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }.jiujie-quote-panel {
    top: 24px;
    right: 12px;
    bottom: auto;
    left: 12px;
    width: auto;
    height: calc(100vh - 48px);
    border-radius: 22px;
    transform: translateY(24px);
  }.jiujie-quote-advisor.is-open .jiujie-quote-panel {
    transform: none;
  }.jiujie-quote-panel-header {
    gap: 12px;
    padding: 18px 18px 15px;
  }.jiujie-quote-panel-header h2 {
    font-size: 20px;
  }.jiujie-quote-panel-header p {
    font-size: 13px;
  }.jiujie-quote-panel-actions {
    gap: 8px;
  }.jiujie-quote-lang,
  .jiujie-quote-close {
    height: 34px;
  }.jiujie-quote-close {
    width: 34px;
  }
}/* Phase 2 homepage refinement. Scoped to the home page only. */
body[data-page="home"] #home .home-hero {
  min-height: min(760px, 92svh);
  padding-bottom: clamp(72px, 8vw, 104px);
}body[data-page="home"] #home .hero-media img,
body[data-page="home"] #home .hero-video {
  object-position: center center;
}body[data-page="home"] #home .hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 24, 39, 0.84) 0%, rgba(6, 24, 39, 0.66) 42%, rgba(6, 24, 39, 0.26) 78%, rgba(6, 24, 39, 0.14) 100%),
    linear-gradient(180deg, rgba(3, 14, 25, 0.12) 0%, rgba(3, 14, 25, 0.42) 100%);
}body[data-page="home"] #home .hero h1 {
  max-width: 820px;
  font-size: clamp(44px, 4.8vw, 68px);
}body[data-page="home"] #home .hero-copy {
  max-width: 760px;
}body[data-page="home"] #home .home-metrics-section {
  margin-top: clamp(-42px, -3vw, -24px);
}body[data-page="home"] #home .home-metrics-section .hero-metrics {
  width: min(1180px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(205, 225, 245, 0.96);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(15, 48, 87, 0.11);
  backdrop-filter: none;
}body[data-page="home"] #home .home-metrics-section .hero-metrics div {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 126px;
  padding: 24px 22px;
  border-right: 1px solid rgba(205, 225, 245, 0.88);
}body[data-page="home"] #home .home-metrics-section .hero-metrics div:last-child {
  border-right: 0;
}body[data-page="home"] #home .home-metrics-section .hero-metrics span {
  order: 2;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 760;
}body[data-page="home"] #home .home-metrics-section .hero-metrics strong {
  order: 1;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 900;
}body[data-page="home"] #home .home-service-flow {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}body[data-page="home"] #home .home-service-flow::before {
  left: 6%;
  right: 6%;
}body[data-page="home"] #home .home-service-flow-step h3 {
  font-size: clamp(17px, 1.2vw, 20px);
}body[data-page="home"] #home .home-service-flow-step p {
  max-width: 150px;
  font-size: 14px;
}body[data-page="home"] #home .home-industry-grid,
body[data-page="home"] #home .home-honor-grid {
  display: grid;
  gap: 16px;
}body[data-page="home"] #home .home-industry-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}body[data-page="home"] #home .home-industry-grid article,
body[data-page="home"] #home .home-honor-grid article {
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(205, 225, 245, 0.92);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(15, 48, 87, 0.06);
}body[data-page="home"] #home .home-industry-grid span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}body[data-page="home"] #home .home-industry-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(18px, 1.5vw, 22px);
}body[data-page="home"] #home .featured-case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}body[data-page="home"] #home .featured-case-grid article {
  overflow: hidden;
  border: 1px solid rgba(205, 225, 245, 0.92);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(15, 48, 87, 0.08);
}body[data-page="home"] #home .featured-case-grid img {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
}body[data-page="home"] #home .featured-case-grid article > div {
  display: grid;
  gap: 12px;
  padding: 22px;
}body[data-page="home"] #home .featured-case-grid h3 {
  font-size: clamp(20px, 1.5vw, 24px);
}body[data-page="home"] #home .featured-case-grid p,
body[data-page="home"] #home .featured-case-grid span {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}body[data-page="home"] #home .featured-case-grid a {
  width: fit-content;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--blue);
  background: #eef7ff;
  font-weight: 850;
}body[data-page="home"] #home .corporate-video-section {
  padding-top: clamp(40px, 5vw, 68px);
  padding-bottom: clamp(44px, 5vw, 72px);
}body[data-page="home"] #home .corporate-video-heading h2 {
  font-size: clamp(32px, 3.2vw, 46px);
}body[data-page="home"] #home .corporate-video-card {
  width: min(920px, 100%);
  max-height: 430px;
}body[data-page="home"] #home .home-honors-section {
  padding: clamp(54px, 6vw, 78px) clamp(28px, 5vw, 56px);
  border: 1px solid rgba(205, 225, 245, 0.9);
  border-radius: 26px;
  background:
    radial-gradient(circle at 84% 16%, rgba(0, 114, 206, 0.08), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}body[data-page="home"] #home .home-honor-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}body[data-page="home"] #home .home-honor-grid article {
  min-height: 92px;
}body[data-page="home"] #home .home-honor-grid span {
  color: var(--ink);
  font-size: 17px;
  font-weight: 850;
}body[data-page="home"] #home .home-section-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}body[data-page="home"] #home .light-button {
  color: var(--blue);
  border-color: rgba(0, 114, 206, 0.22);
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 48, 87, 0.08);
}body[data-page="cases"] #cases.industry-cases-section {
  padding-top: clamp(112px, 12vw, 156px);
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 114, 206, 0.08), transparent 32%),
    linear-gradient(180deg, #f7fbff 0%, #fff 42%, #f8fbfe 100%);
}body[data-page="cases"] #cases .industry-cases-hero {
  max-width: 980px;
  margin-bottom: 30px;
}body[data-page="cases"] #cases .industry-cases-hero h2 {
  font-size: clamp(40px, 5vw, 68px);
}body[data-page="cases"] #cases .industry-cases-hero p:not(.eyebrow) {
  max-width: 920px;
}body[data-page="cases"] #cases .industry-case-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto clamp(30px, 4vw, 46px);
  max-width: 1180px;
}body[data-page="cases"] #cases .industry-case-overview article {
  padding: 22px;
  border: 1px solid rgba(205, 225, 245, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(15, 48, 87, 0.08);
}body[data-page="cases"] #cases .industry-case-overview span,
body[data-page="cases"] #cases .industry-case-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(0, 114, 206, 0.09);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}body[data-page="cases"] #cases .industry-case-overview h3 {
  margin: 18px 0 8px;
  color: var(--ink);
  font-size: 20px;
}body[data-page="cases"] #cases .industry-case-overview p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}body[data-page="cases"] #cases .industry-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}body[data-page="cases"] #cases .industry-case-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(205, 225, 245, 0.92);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 48, 87, 0.09);
}body[data-page="cases"] #cases .industry-case-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(21px, 2.2vw, 26px);
  line-height: 1.32;
}body[data-page="cases"] #cases .industry-case-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.76;
}body[data-page="cases"] #cases .industry-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}body[data-page="cases"] #cases .industry-case-tags em {
  padding: 7px 10px;
  border: 1px solid rgba(0, 114, 206, 0.14);
  border-radius: 999px;
  color: #23527a;
  background: #f4f9ff;
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
}body[data-page="cases"] #cases .industry-case-clients {
  display: grid;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(205, 225, 245, 0.86);
}body[data-page="cases"] #cases .industry-case-clients strong {
  color: var(--ink);
  font-size: 13px;
}body[data-page="cases"] #cases .industry-case-clients span {
  color: #536779;
  font-size: 14px;
}body[data-page="cases"] #cases .industry-case-card .light-button {
  width: fit-content;
  margin-top: 4px;
  color: var(--blue);
  border-color: rgba(0, 114, 206, 0.22);
  background: #fff;
  box-shadow: 0 12px 24px rgba(15, 48, 87, 0.08);
}body[data-page="cases"] #cases .industry-case-cta {
  max-width: 1180px;
  margin: clamp(30px, 5vw, 54px) auto 0;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(135deg, #0a5ea6 0%, #0072ce 58%, #2d9df0 100%);
  box-shadow: 0 24px 54px rgba(0, 82, 150, 0.2);
}body[data-page="cases"] #cases .industry-case-cta .eyebrow,
body[data-page="cases"] #cases .industry-case-cta h3,
body[data-page="cases"] #cases .industry-case-cta p {
  color: #fff;
}body[data-page="cases"] #cases .industry-case-cta h3 {
  margin: 8px 0 12px;
  font-size: clamp(28px, 3vw, 40px);
}body[data-page="cases"] #cases .industry-case-cta p {
  max-width: 780px;
  margin: 0;
  opacity: 0.9;
  line-height: 1.78;
}body[data-page="cases"] #cases .industry-case-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}body[data-page="cases"] #cases .industry-case-cta-actions .secondary-button {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}body[data-page="services"] #services .business-modern-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}body[data-page="services"] #services .business-modern-card {
  min-height: 580px;
}body[data-page="services"] #services .business-highlight-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 28px;
}body[data-page="services"] #services .business-highlight-strip article {
  padding: 18px;
  border: 1px solid rgba(0, 114, 206, 0.14);
  border-radius: 18px;
  background: #f7fbff;
}body[data-page="services"] #services .business-highlight-strip strong {
  display: block;
  color: #0072ce;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.1;
}body[data-page="services"] #services .business-highlight-strip span {
  display: block;
  margin-top: 8px;
  color: #53677d;
  font-size: 14px;
  font-weight: 760;
}body[data-page="services"] #services .business-service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}body[data-page="services"] #services .business-service-list span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(205, 225, 245, 0.92);
  border-radius: 14px;
  color: #123a62;
  background: #fff;
  font-weight: 760;
  line-height: 1.42;
}body[data-page="services"] #services .business-scenario-card,
body[data-page="services"] #services .business-related-cases {
  padding: 24px;
  border: 1px solid rgba(0, 114, 206, 0.12);
  border-radius: 20px;
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}body[data-page="services"] #services .business-scenario-card p,
body[data-page="services"] #services .business-related-cases p {
  margin: 0;
  color: #53677d;
  font-size: 17px;
  line-height: 1.78;
}body[data-page="services"] #services .business-related-cases .light-button {
  width: fit-content;
  margin-top: 18px;
  color: var(--blue);
  border-color: rgba(0, 114, 206, 0.22);
  background: #fff;
}body[data-page="services"] #services .business-direction-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}body[data-page="services"] #services .business-direction-grid article {
  padding: 24px;
  border: 1px solid rgba(205, 225, 245, 0.92);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 48, 87, 0.07);
}body[data-page="services"] #services .business-direction-grid h5 {
  margin: 0 0 14px;
  color: #10243d;
  font-size: 22px;
}body[data-page="services"] #services .business-direction-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: #53677d;
  line-height: 1.65;
}body[data-page="services"] #services .business-transport-block {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(22px, 4vw, 42px);
  margin-top: 34px;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid rgba(0, 114, 206, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 14%, rgba(0, 114, 206, 0.09), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f5faff 100%);
}body[data-page="services"] #services .business-transport-block h4 {
  margin: 0 0 14px;
  color: #10243d;
  font-size: clamp(24px, 2.3vw, 34px);
}body[data-page="services"] #services .business-transport-block p {
  margin: 0;
  color: #53677d;
  font-size: 17px;
  line-height: 1.78;
}body[data-page="services"] #services .business-transport-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}body[data-page="services"] #services .business-transport-points span {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(0, 114, 206, 0.13);
  border-radius: 14px;
  color: #174569;
  background: #fff;
  font-size: 14px;
  font-weight: 780;
}body[data-page="services"] #services .business-detail-actions,
body[data-page="services"] #services .business-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}body[data-page="services"] #services .business-detail-cta .primary-button,
body[data-page="services"] #services .business-detail-cta .secondary-button,
body[data-page="services"] #services .business-final-actions .primary-button,
body[data-page="services"] #services .business-final-actions .secondary-button {
  width: fit-content;
}body[data-page="services"] #services .business-detail-cta .secondary-button {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}body[data-page="services"] #services .business-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 44px;
  padding: clamp(26px, 4vw, 40px);
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, #0a5ea6 0%, #0072ce 62%, #2d9df0 100%);
  box-shadow: 0 20px 48px rgba(0, 82, 150, 0.18);
}body[data-page="services"] #services .business-final-cta h3,
body[data-page="services"] #services .business-final-cta p {
  color: #fff;
}body[data-page="services"] #services .business-final-cta h3 {
  margin: 0;
  font-size: clamp(26px, 2.6vw, 36px);
}body[data-page="services"] #services .business-final-cta p {
  max-width: 760px;
  margin: 12px 0 0;
  opacity: 0.9;
  line-height: 1.75;
}body[data-page="services"] #services .business-final-actions {
  justify-content: flex-end;
  margin-top: 0;
}body[data-page="services"] #services .business-final-actions .light-button {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}.trust-page-section,
.news-page-section {
  display: none;
  padding: clamp(96px, 10vw, 136px) clamp(24px, 6vw, 72px) clamp(72px, 8vw, 108px);
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 114, 206, 0.08), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #fff 42%, #f8fbff 100%);
}.trust-page-section.active,
.news-page-section.active {
  display: block;
}.trust-page-hero,
.news-page-hero,
.trust-section-heading {
  max-width: 980px;
  margin: 0 auto clamp(28px, 4vw, 48px);
  text-align: center;
}.trust-page-hero h2,
.news-page-hero h2 {
  margin: 12px 0 0;
  color: #08284a;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
}.trust-page-hero p:not(.eyebrow),
.news-page-hero p:not(.eyebrow),
.trust-section-heading p {
  max-width: 860px;
  margin: 18px auto 0;
  color: #53677d;
  font-size: 17px;
  line-height: 1.82;
}.trust-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1080px;
  margin: 0 auto 28px;
}.trust-filter-bar button {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(0, 114, 206, 0.18);
  border-radius: 999px;
  color: #005bb5;
  background: #fff;
  font-weight: 760;
}.trust-filter-bar button.active {
  color: #fff;
  background: #0072ce;
}.trust-section-grid,
.trust-certificate-grid,
.trust-team-grid,
.news-category-grid,
.news-feature-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
}.trust-section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}.trust-copy-card,
.news-category-grid article {
  padding: 26px;
  border: 1px solid rgba(205, 225, 245, 0.92);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(15, 48, 87, 0.07);
}.trust-copy-card > span {
  color: #0072ce;
  font-weight: 900;
  letter-spacing: 0.08em;
}.trust-copy-card h3,
.trust-section-heading h3,
.news-feature-card h3,
.news-wechat-entry h3,
.trust-page-cta h3 {
  margin: 12px 0 10px;
  color: #10243d;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.2;
}.trust-copy-card p,
.news-feature-card p,
.news-wechat-entry p,
.trust-page-cta p,
.news-category-grid p {
  margin: 0;
  color: #53677d;
  line-height: 1.75;
}.trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}.trust-tags em {
  padding: 7px 10px;
  border: 1px solid rgba(0, 114, 206, 0.14);
  border-radius: 999px;
  color: #23527a;
  background: #f4f9ff;
  font-size: 12px;
  font-style: normal;
  font-weight: 760;
}.trust-certificate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: clamp(34px, 5vw, 56px);
}.trust-certificate-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(205, 225, 245, 0.92);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 48, 87, 0.08);
}.trust-certificate-card[hidden] {
  display: none;
}.trust-certificate-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  border-radius: 14px;
  background: #f7fbff;
}.trust-certificate-card strong {
  color: #10243d;
  font-size: 17px;
}.trust-certificate-card span {
  color: #53677d;
  font-size: 14px;
}.trust-team-section {
  width: min(1180px, 100%);
  margin: 0 auto clamp(34px, 5vw, 56px);
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(0, 114, 206, 0.12);
  border-radius: 26px;
  background: #fff;
}.trust-team-grid,
.news-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}.trust-team-grid article {
  padding: 20px;
  border-radius: 18px;
  background: #f7fbff;
}.trust-team-grid h4,
.news-category-grid span {
  display: block;
  margin: 0 0 10px;
  color: #10243d;
  font-size: 18px;
  font-weight: 850;
}.trust-wide-card {
  grid-column: span 1;
}.trust-page-cta,
.news-wechat-entry {
  width: min(1180px, 100%);
  margin: clamp(32px, 5vw, 54px) auto 0;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 26px;
  background: linear-gradient(135deg, #0a5ea6 0%, #0072ce 60%, #2d9df0 100%);
  color: #fff;
}.trust-page-cta h3,
.trust-page-cta p,
.news-wechat-entry h3,
.news-wechat-entry p {
  color: #fff;
}.trust-page-cta .primary-button {
  margin-top: 22px;
}.news-category-grid {
  margin-bottom: 30px;
}.news-feature-grid {
  display: grid;
  gap: 18px;
}.news-feature-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(205, 225, 245, 0.92);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(15, 48, 87, 0.07);
}.news-feature-card figure {
  height: 240px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #dfeefa;
}.news-feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}.news-wechat-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 28px;
  align-items: center;
}.news-wechat-entry figure {
  margin: 0;
  padding: 12px;
  border-radius: 18px;
  background: #fff;
  text-align: center;
}.news-wechat-entry img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}.news-wechat-entry figcaption {
  margin-top: 8px;
  color: #10243d;
  font-size: 13px;
  font-weight: 780;
}@media (max-width: 1180px) {body[data-page="home"] #home .home-service-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }body[data-page="home"] #home .home-service-flow::before,
body[data-page="home"] #home .home-service-flow-step::after {
    display: none;
  }body[data-page="home"] #home .featured-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }body[data-page="cases"] #cases .industry-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }body[data-page="services"] #services .business-modern-grid,
body[data-page="services"] #services .business-service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }body[data-page="services"] #services .business-transport-block,
body[data-page="services"] #services .business-final-cta {
    grid-template-columns: 1fr;
  }body[data-page="services"] #services .business-final-actions {
    justify-content: flex-start;
  }.trust-section-grid,
.trust-certificate-grid,
.trust-team-grid,
.news-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}@media (max-width: 760px) {body[data-page="home"] #home .home-hero {
    min-height: auto;
    padding-bottom: 72px;
  }body[data-page="home"] #home .home-metrics-section {
    margin-top: 0;
  }body[data-page="home"] #home .home-metrics-section .hero-metrics,
body[data-page="home"] #home .home-industry-grid,
body[data-page="home"] #home .home-honor-grid,
body[data-page="home"] #home .featured-case-grid {
    grid-template-columns: 1fr;
  }body[data-page="home"] #home .home-metrics-section .hero-metrics div {
    min-height: 104px;
    border-right: 0;
    border-bottom: 1px solid rgba(205, 225, 245, 0.88);
  }body[data-page="home"] #home .home-metrics-section .hero-metrics div:last-child {
    border-bottom: 0;
  }body[data-page="home"] #home .home-service-flow {
    grid-template-columns: 1fr;
    gap: 18px;
  }body[data-page="home"] #home .home-service-flow-step {
    justify-items: start;
    grid-template-columns: auto minmax(0, 1fr);
    text-align: left;
  }body[data-page="home"] #home .home-service-flow-step p {
    grid-column: 2;
    max-width: none;
  }body[data-page="home"] #home .featured-case-grid img {
    height: 210px;
  }body[data-page="home"] #home .home-section-actions,
body[data-page="home"] #home .home-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }body[data-page="cases"] #cases.industry-cases-section {
    padding-top: 96px;
  }body[data-page="cases"] #cases .industry-case-overview,
body[data-page="cases"] #cases .industry-case-grid {
    grid-template-columns: 1fr;
  }body[data-page="cases"] #cases .industry-case-card,
body[data-page="cases"] #cases .industry-case-overview article {
    padding: 22px;
  }body[data-page="cases"] #cases .industry-case-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }body[data-page="services"] #services .business-modern-grid,
body[data-page="services"] #services .business-service-list,
body[data-page="services"] #services .business-direction-grid,
body[data-page="services"] #services .business-transport-points {
    grid-template-columns: 1fr;
  }body[data-page="services"] #services .business-detail-actions,
body[data-page="services"] #services .business-final-actions {
    flex-direction: column;
    align-items: stretch;
  }body[data-page="services"] #services .business-detail-cta .primary-button,
body[data-page="services"] #services .business-detail-cta .secondary-button,
body[data-page="services"] #services .business-final-actions .primary-button,
body[data-page="services"] #services .business-final-actions .secondary-button {
    width: 100%;
    justify-content: center;
  }.trust-page-section,
.news-page-section {
    padding-top: 92px;
  }.trust-section-grid,
.trust-certificate-grid,
.trust-team-grid,
.news-category-grid,
.news-feature-card,
.news-wechat-entry {
    grid-template-columns: 1fr;
  }.trust-copy-card,
.news-category-grid article,
.trust-team-section,
.trust-page-cta,
.news-wechat-entry {
    padding: 22px;
  }.trust-certificate-card img {
    height: 190px;
  }.news-feature-card figure {
    height: 210px;
  }.news-wechat-entry figure {
    width: min(190px, 100%);
  }
}body[data-page="news-responsibility"] #news-responsibility.news-responsibility-section.active,
body[data-page="news"] #news.news-page-section.active {
  display: block !important;
}/* Sitewide visual foundation pass: spacing,
containers,
cards,
buttons,
and tags. */
:root {
  --max: 1220px;
  --site-container: min(1220px, calc(100% - clamp(40px, 8vw, 112px)));
  --site-section-y: clamp(72px, 7vw, 92px);
  --site-section-y-compact: clamp(52px, 5vw, 68px);
  --site-radius: 20px;
  --site-radius-sm: 16px;
  --site-card-padding: clamp(22px, 2.5vw, 30px);
  --site-card-border: rgba(205, 225, 245, 0.86);
  --site-card-shadow: 0 14px 34px rgba(15, 48, 87, 0.055);
  --site-card-shadow-hover: 0 20px 46px rgba(15, 48, 87, 0.105);
  --site-text-size: clamp(15px, 1.08vw, 16.5px);
  --site-muted: #53677d;
}body {
  font-size: var(--site-text-size);
  line-height: 1.68;
  background:
    linear-gradient(180deg, rgba(247, 251, 255, 0.64) 0, rgba(255, 255, 255, 0) 280px),
    #ffffff;
}.section,
.trust-page-section,
.news-responsibility-section,
.news-page-section {
  width: var(--site-container);
  max-width: 1220px;
  padding-top: var(--site-section-y);
  padding-bottom: var(--site-section-y);
}.page-section:not(#home):not(.active) {
  display: none;
}body[data-page="contact"] #contact.contact-conversion-section {
  padding-top: clamp(92px, 10vw, 118px);
  padding-bottom: var(--site-section-y-compact);
}body[data-page="news-responsibility"] #news-responsibility.news-responsibility-section,
body[data-page="news"] #news.news-page-section {
  padding-bottom: var(--site-section-y-compact);
}body[data-page="services"] #services.services-section,
body[data-page="cases"] #cases.case-section,
body[data-page="about"] #about.about-page,
body[data-page="subsidiaries"] #subsidiaries.subsidiaries-section,
body[data-page="bluewhale"] #bluewhale.bluewhale-section {
  padding-top: clamp(96px, 10vw, 126px);
  padding-bottom: var(--site-section-y);
}body[data-page="services"] #services.services-section {
  width: 100%;
  max-width: none;
}body[data-page="cases"] #cases.case-section {
  width: var(--site-container);
  max-width: 1220px;
}.section-heading,
.section-copy,
.home-section-heading,
.business-heading,
.subsidiaries-heading,
.trust-page-hero,
.news-page-hero,
.trust-section-heading {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}.section-heading,
.home-section-heading,
.business-heading,
.subsidiaries-heading,
.trust-page-hero,
.news-page-hero,
.trust-section-heading {
  margin-bottom: clamp(28px, 4vw, 42px);
  text-align: center;
}.section-copy h1,
.section-heading h1,
.home-hero h1,
.bluewhale-hero h2,
.trust-page-hero h2,
.news-page-hero h2 {
  font-size: clamp(44px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
}.section-copy h2,
.section-heading h2,
.home-section-heading h2,
.business-heading h2,
.subsidiaries-heading h2,
.case-section .section-heading h2,
.trust-section-heading h2 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: clamp(32px, 3.2vw, 40px);
  line-height: 1.14;
  letter-spacing: 0;
}.section-copy h3,
.section-heading h3,
.home-card-grid h3,
.showcase-card h3,
.partner-card h3,
.service-card h3,
.case-card h3,
.client-case-card h3,
.business-entry-card h3,
.business-modern-card h3,
.business-scenario-card h4,
.business-direction-card h4,
.business-transport-points h4,
.subsidiary-overview-card h3,
.subsidiary-card h4,
.subsidiary-detail-card h4,
.honor-card h3,
.honor-display-card h3,
.trust-copy-card h3,
.trust-certificate-card strong,
.news-feature-card h3,
.news-category-grid span,
.contact-primary-card h3,
.contact-inquiry-card h3 {
  font-size: clamp(20px, 1.75vw, 24px);
  line-height: 1.25;
  letter-spacing: 0;
}.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.home-section-heading p:not(.eyebrow),
.business-heading > p:not(.eyebrow),
.subsidiaries-heading p:not(.eyebrow),
.case-section .section-heading p:not(.eyebrow),
.trust-page-hero p:not(.eyebrow),
.news-page-hero p:not(.eyebrow),
.trust-section-heading p,
.home-card-grid p,
.showcase-card p,
.partner-card p,
.service-card p,
.case-card p,
.client-case-card p,
.business-entry-card p,
.business-modern-card p,
.business-scenario-card p,
.business-direction-card p,
.subsidiary-overview-card p,
.subsidiary-card p,
.honor-card p,
.trust-copy-card p,
.news-feature-card p,
.contact-office-note,
.contact-inquiry-card p:not(.section-eyebrow) {
  color: var(--site-muted);
  font-size: var(--site-text-size);
  line-height: 1.72;
}.home-card-grid,
.business-card-grid,
.business-card-grid.service-entry-grid,
.subsidiaries-card-grid,
.subsidiary-card-grid,
.case-grid,
.client-case-grid,
.trust-section-grid,
.trust-certificate-grid,
.trust-team-grid,
.news-category-grid,
.news-feature-grid,
.contact-conversion-shell,
body[data-page="home"] #home .home-industry-grid,
body[data-page="home"] #home .home-honor-grid,
body[data-page="home"] #home .featured-case-grid,
body[data-page="cases"] #cases .industry-case-overview,
body[data-page="cases"] #cases .industry-case-grid,
body[data-page="services"] #services .business-modern-grid,
body[data-page="services"] #services .business-service-list,
body[data-page="services"] #services .business-transport-block,
body[data-page="services"] #services .business-final-cta {
  width: min(1180px, 100%);
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}body[data-page="services"] #services .business-heading,
body[data-page="services"] #services .business-modern-section,
body[data-page="services"] #services .business-service-detail,
body[data-page="services"] #services .business-transport-section,
body[data-page="services"] #services .business-final-cta,
body[data-page="about"] #about .about-container,
body[data-page="subsidiaries"] #subsidiaries .subsidiaries-container,
body[data-page="bluewhale"] #bluewhale .bluewhale-container {
  width: min(1180px, var(--site-container));
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}.home-card-grid article,
.showcase-card,
.partner-card,
.challenge-list article,
.service-card,
.journey-step,
.proof-grid article,
.case-card,
.client-case-card,
.role-list article,
.business-entry-card,
.business-detail-card,
.business-modern-card,
.business-scenario-card,
.business-direction-card,
.business-transport-block,
.business-transport-points article,
.business-detail-cta,
.business-final-cta,
.company-stat-grid article,
.company-principle-grid article,
.value-grid article,
.capability-grid article,
.subsidiary-overview-card,
.subsidiary-group-card,
.subsidiary-company-card,
.subsidiary-card,
.subsidiary-detail-card,
.honor-card,
.honor-overview,
.honor-display-card,
.trust-copy-card,
.trust-certificate-card,
.trust-team-section,
.trust-team-grid article,
.trust-page-cta,
.news-category-grid article,
.news-feature-card,
.news-wechat-entry,
.branch-contact-card,
.contact-inquiry-card,
body[data-page="home"] #home .home-metrics-section .hero-metrics,
body[data-page="home"] #home .home-industry-card,
body[data-page="home"] #home .featured-case-card,
body[data-page="home"] #home .home-honor-card,
body[data-page="cases"] #cases .industry-case-overview article,
body[data-page="cases"] #cases .industry-case-card {
  border: 1px solid var(--site-card-border);
  border-radius: var(--site-radius);
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: var(--site-card-shadow);
}.home-card-grid article,
.showcase-card,
.partner-card,
.challenge-list article,
.service-card,
.journey-step,
.proof-grid article,
.case-card,
.client-case-card,
.role-list article,
.business-entry-card,
.business-detail-card,
.business-modern-card,
.business-scenario-card,
.business-direction-card,
.business-transport-points article,
.company-stat-grid article,
.company-principle-grid article,
.value-grid article,
.capability-grid article,
.subsidiary-overview-card,
.subsidiary-group-card,
.subsidiary-company-card,
.subsidiary-card,
.subsidiary-detail-card,
.honor-card,
.honor-display-card,
.trust-copy-card,
.trust-certificate-card,
.trust-team-grid article,
.news-category-grid article,
.news-feature-card,
.branch-contact-card,
.contact-inquiry-card,
body[data-page="home"] #home .home-industry-card,
body[data-page="home"] #home .featured-case-card,
body[data-page="home"] #home .home-honor-card,
body[data-page="cases"] #cases .industry-case-card {
  padding: var(--site-card-padding);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease,
    background-color 200ms ease;
}.home-card-grid article:hover,
.showcase-card:hover,
.partner-card:hover,
.challenge-list article:hover,
.service-card:hover,
.journey-step:hover,
.proof-grid article:hover,
.case-card:hover,
.client-case-card:hover,
.role-list article:hover,
.business-entry-card:hover,
.business-detail-card:hover,
.business-modern-card:hover,
.business-modern-card:focus-visible,
.business-scenario-card:hover,
.business-direction-card:hover,
.business-transport-points article:hover,
.company-stat-grid article:hover,
.company-principle-grid article:hover,
.value-grid article:hover,
.capability-grid article:hover,
.subsidiary-overview-card:hover,
.subsidiary-group-card:hover,
.subsidiary-card:hover,
.subsidiary-detail-card:hover,
.honor-card:hover,
.honor-display-card:hover,
.trust-copy-card:hover,
.trust-certificate-card:hover,
.trust-team-grid article:hover,
.news-category-grid article:hover,
.news-feature-card:hover,
.branch-contact-card:hover,
.contact-inquiry-card:hover,
body[data-page="home"] #home .home-industry-card:hover,
body[data-page="home"] #home .featured-case-card:hover,
body[data-page="home"] #home .home-honor-card:hover,
body[data-page="cases"] #cases .industry-case-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 114, 206, 0.24);
  box-shadow: var(--site-card-shadow-hover);
}.primary-button,
.secondary-button,
.light-button,
.form-submit,
.business-entry-card a,
.subsidiary-card a,
.trust-filter-bar button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 820;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}.primary-button,
.form-submit {
  border: 1px solid var(--blue);
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(0, 114, 206, 0.18);
}.secondary-button,
.light-button {
  border: 1px solid rgba(0, 114, 206, 0.24);
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(15, 48, 87, 0.055);
}.primary-button:hover,
.primary-button:focus-visible,
.form-submit:hover,
.form-submit:focus-visible {
  transform: translateY(-2px);
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: 0 16px 32px rgba(0, 91, 181, 0.22);
}.secondary-button:hover,
.secondary-button:focus-visible,
.light-button:hover,
.light-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0, 114, 206, 0.38);
  color: var(--blue-dark);
  background: #f6fbff;
  box-shadow: 0 14px 30px rgba(15, 48, 87, 0.085);
}.service-detail-tag,
.business-detail-tags span,
.subsidiary-tags span,
.subsidiary-card-tags span,
.subsidiary-card span,
.case-service-tags em,
.honor-tags span,
.honor-display-tags span,
.trust-tags em,
.bluewhale-tags span,
.network-tags span,
body[data-page="cases"] #cases .industry-case-tags em,
body[data-page="home"] #home .home-industry-card span,
body[data-page="home"] #home .home-honor-card span,
body[data-page="services"] #services .business-modern-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border: 1px solid rgba(0, 114, 206, 0.14);
  border-radius: 999px;
  color: #23527a;
  background: #f4f9ff;
  font-size: 12.5px;
  font-style: normal;
  font-weight: 760;
  line-height: 1.25;
  white-space: normal;
}.business-detail-tags,
.subsidiary-tags,
.subsidiary-card-tags,
.case-service-tags,
.honor-tags,
.honor-display-tags,
.trust-tags,
.bluewhale-tags,
.network-tags,
body[data-page="cases"] #cases .industry-case-tags,
body[data-page="services"] #services .business-modern-tags {
  gap: 8px;
}.home-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}.home-reveal.is-visible {
  opacity: 1;
  transform: none;
}.contact-conversion-shell {
  align-items: start;
}body[data-page="contact"] .site-footer {
  margin-top: 0;
}@media (max-width: 900px) {:root {
    --site-container: min(100% - 40px, 100%);
    --site-section-y: clamp(52px, 9vw, 64px);
    --site-section-y-compact: clamp(42px, 8vw, 54px);
    --site-card-padding: clamp(20px, 5vw, 24px);
  }.section,
.trust-page-section,
.news-page-section {
    width: var(--site-container);
    padding-top: var(--site-section-y);
    padding-bottom: var(--site-section-y);
  }.section-copy h1,
.section-heading h1,
.home-hero h1,
.bluewhale-hero h2,
.trust-page-hero h2,
.news-page-hero h2 {
    font-size: clamp(32px, 9vw, 38px);
    line-height: 1.12;
  }.section-copy h2,
.section-heading h2,
.home-section-heading h2,
.business-heading h2,
.subsidiaries-heading h2,
.case-section .section-heading h2,
.trust-section-heading h2 {
    font-size: clamp(26px, 7vw, 32px);
  }.section-copy h3,
.section-heading h3,
.home-card-grid h3,
.showcase-card h3,
.partner-card h3,
.service-card h3,
.case-card h3,
.client-case-card h3,
.business-entry-card h3,
.business-modern-card h3,
.subsidiary-overview-card h3,
.subsidiary-card h4,
.honor-card h3,
.trust-copy-card h3,
.news-feature-card h3,
.contact-primary-card h3,
.contact-inquiry-card h3 {
    font-size: clamp(18px, 5.4vw, 22px);
  }.primary-button,
.secondary-button,
.light-button,
.form-submit {
    width: 100%;
    max-width: 100%;
    min-height: 46px;
  }.hero-actions,
.home-section-actions,
.home-cta-actions,
.business-detail-actions,
.business-final-actions,
.industry-case-cta-actions {
    align-items: stretch;
  }
}@media (prefers-reduced-motion: reduce) {.home-reveal,
.home-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}body[data-page="home"] #home .hero h1,
body[data-page="cases"] #cases .section-heading h2,
body[data-page="cases"] #cases .industry-cases-hero h2,
body[data-page="news-responsibility"] #news-responsibility .news-responsibility-hero h2,
body[data-page="news"] #news .news-page-hero h2 {
  font-size: clamp(44px, 4.4vw, 56px);
  line-height: 1.1;
  letter-spacing: 0;
}@media (max-width: 900px) {body[data-page="home"] #home .hero h1,
body[data-page="cases"] #cases .section-heading h2,
body[data-page="cases"] #cases .industry-cases-hero h2,
body[data-page="news-responsibility"] #news-responsibility .news-responsibility-hero h2,
body[data-page="news"] #news .news-page-hero h2 {
    font-size: clamp(32px, 9vw, 38px);
    line-height: 1.14;
  }
}/* Homepage visual de-card pass: sections read as natural website bands,
not framed slides. */
body[data-page="home"] #home {
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 44%, #f8fbff 44%, #f8fbff 64%, #ffffff 64%),
    #ffffff;
}body[data-page="home"] #home .home-content {
  width: 100%;
  max-width: none;
  gap: 0;
  padding: 0;
}body[data-page="home"] #home .home-section {
  position: relative;
  width: min(1180px, calc(100% - clamp(40px, 8vw, 112px)));
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(88px, 8vw, 112px) 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}body[data-page="home"] #home .home-section + .home-section {
  border-top: 1px solid rgba(221, 232, 242, 0.72);
}body[data-page="home"] #home .home-metrics-section {
  margin-top: clamp(-42px, -3vw, -24px);
  padding-top: 0;
  padding-bottom: clamp(72px, 7vw, 96px);
  border-top: 0;
}body[data-page="home"] #home .home-services-section,
body[data-page="home"] #home .partner-section,
body[data-page="home"] #home .home-honors-section,
body[data-page="home"] #home .corporate-video-section,
body[data-page="home"] #home .home-showcase-section {
  padding-left: 0;
  padding-right: 0;
  overflow: visible;
  isolation: auto;
}body[data-page="home"] #home .home-services-section::before,
body[data-page="home"] #home .corporate-video-section::before {
  display: none;
}body[data-page="home"] #home .partner-section::before,
body[data-page="home"] #home .home-honors-section::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.82), rgba(255, 255, 255, 0.64));
  pointer-events: none;
}body[data-page="home"] #home .home-section-heading {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}body[data-page="home"] #home .home-section-heading h2 {
  margin-top: 10px;
  text-wrap: balance;
}body[data-page="home"] #home .home-section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 16px auto 0;
  color: #5c6f82;
}body[data-page="home"] #home .home-service-flow {
  margin-top: clamp(16px, 2.2vw, 28px);
  padding: 20px 0 4px;
}body[data-page="home"] #home .home-service-flow::before {
  background: linear-gradient(90deg, transparent, rgba(0, 114, 206, 0.24), transparent);
}body[data-page="home"] #home .home-service-flow-step:not(:last-child)::after {
  color: rgba(0, 114, 206, 0.34);
}body[data-page="home"] #home .home-service-flow-icon {
  border-color: rgba(0, 114, 206, 0.16);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 48, 87, 0.07);
}body[data-page="home"] #home .home-industry-grid {
  gap: 18px;
}body[data-page="home"] #home .home-industry-grid article {
  min-height: 112px;
  padding: 24px;
  border: 1px solid rgba(218, 229, 240, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 26px rgba(15, 48, 87, 0.045);
}body[data-page="home"] #home .home-industry-grid article:hover,
body[data-page="home"] #home .home-responsibility-entry-card:hover,
body[data-page="home"] #home .partner-card:hover,
body[data-page="home"] #home .featured-case-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 114, 206, 0.18);
  box-shadow: 0 16px 36px rgba(15, 48, 87, 0.075);
}body[data-page="home"] #home .home-industry-grid span {
  color: rgba(0, 114, 206, 0.62);
}body[data-page="home"] #home .partner-carousel {
  width: min(1180px, 100%);
  margin: 8px auto 0;
}body[data-page="home"] #home .partner-track {
  gap: 16px;
  padding: 6px 2px 16px;
}body[data-page="home"] #home .partner-card {
  height: 116px;
  border-color: rgba(218, 229, 240, 0.88);
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(15, 48, 87, 0.045);
}body[data-page="home"] #home .partner-card img {
  max-width: 156px;
  height: 66px;
}body[data-page="home"] #home .partner-carousel .showcase-arrow {
  width: 34px;
  height: 34px;
  color: rgba(16, 36, 61, 0.68);
  border-color: rgba(205, 225, 245, 0.76);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 22px rgba(15, 48, 87, 0.08);
}body[data-page="home"] #home .partner-carousel .showcase-arrow-prev {
  left: -10px;
}body[data-page="home"] #home .partner-carousel .showcase-arrow-next {
  right: -10px;
}body[data-page="home"] #home .home-responsibility-entry-grid {
  gap: 20px;
}body[data-page="home"] #home .home-responsibility-entry-card {
  min-height: 172px;
  align-content: start;
  border-color: rgba(218, 229, 240, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 26px rgba(15, 48, 87, 0.045);
}body[data-page="home"] #home .home-responsibility-entry-card > span {
  min-height: auto;
  padding: 0;
  border: 0;
  color: #0f4070;
  background: transparent;
  font-size: 19px;
  line-height: 1.35;
}body[data-page="home"] #home .home-section-actions {
  margin-top: clamp(2px, 1vw, 10px);
}body[data-page="home"] #home .featured-case-grid article {
  border-color: rgba(218, 229, 240, 0.9);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(15, 48, 87, 0.055);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}body[data-page="home"] #home .corporate-video-section {
  padding-top: clamp(88px, 8vw, 112px);
  padding-bottom: clamp(88px, 8vw, 112px);
}body[data-page="home"] #home .corporate-video-card {
  border-color: rgba(218, 229, 240, 0.86);
  border-radius: 20px;
  box-shadow: 0 18px 46px rgba(15, 48, 87, 0.105);
}body[data-page="home"] #home .light-button {
  border-color: rgba(0, 114, 206, 0.18);
  box-shadow: 0 8px 20px rgba(15, 48, 87, 0.055);
}body[data-page="home"] #home .showcase-carousel {
  margin-top: 4px;
}@media (max-width: 1180px) {body[data-page="home"] #home .home-section {
    width: calc(100% - 64px);
    padding-top: clamp(72px, 8vw, 92px);
    padding-bottom: clamp(72px, 8vw, 92px);
  }body[data-page="home"] #home .home-service-flow {
    row-gap: 24px;
  }
}@media (max-width: 760px) {body[data-page="home"] #home .home-section {
    width: calc(100% - 40px);
    padding: clamp(56px, 12vw, 72px) 0;
  }body[data-page="home"] #home .home-section + .home-section {
    border-top-color: rgba(221, 232, 242, 0.58);
  }body[data-page="home"] #home .home-metrics-section {
    margin-top: 0;
    padding-top: 34px;
    padding-bottom: 56px;
  }body[data-page="home"] #home .home-services-section,
body[data-page="home"] #home .partner-section,
body[data-page="home"] #home .home-honors-section,
body[data-page="home"] #home .corporate-video-section,
body[data-page="home"] #home .home-showcase-section {
    padding-left: 0;
    padding-right: 0;
  }body[data-page="home"] #home .home-service-flow {
    padding-top: 8px;
  }body[data-page="home"] #home .home-industry-grid article,
body[data-page="home"] #home .home-responsibility-entry-card {
    min-height: auto;
    padding: 20px;
  }body[data-page="home"] #home .partner-carousel .showcase-arrow {
    display: none;
  }body[data-page="home"] #home .partner-card {
    flex-basis: 168px;
    height: 104px;
  }body[data-page="home"] #home .corporate-video-section {
    padding-top: 56px;
    padding-bottom: 64px;
  }
}/* Inner page de-card pass: industry cases and news/responsibility read as natural content pages. */
body[data-page="cases"] #cases.industry-cases-section,
body[data-page="news-responsibility"] #news-responsibility.news-responsibility-section {
  width: 100%;
  max-width: none;
  align-content: start;
  gap: 0;
  padding: clamp(104px, 10vw, 132px) 0 clamp(88px, 8vw, 112px);
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 24%, #f8fbff 24%, #f8fbff 58%, #ffffff 58%),
    #ffffff;
}body[data-page="cases"] #cases .industry-cases-hero,
body[data-page="cases"] #cases .industry-case-overview,
body[data-page="cases"] #cases .industry-case-grid,
body[data-page="cases"] #cases .industry-case-cta,
body[data-page="news-responsibility"] #news-responsibility .news-responsibility-hero,
body[data-page="news-responsibility"] #news-responsibility .news-responsibility-block {
  width: min(1180px, calc(100% - clamp(40px, 8vw, 112px)));
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}body[data-page="cases"] #cases .industry-cases-hero,
body[data-page="news-responsibility"] #news-responsibility .news-responsibility-hero {
  padding: 0 0 clamp(54px, 6vw, 78px);
  text-align: left;
}body[data-page="cases"] #cases .industry-cases-hero .eyebrow,
body[data-page="news-responsibility"] #news-responsibility .news-responsibility-hero .eyebrow {
  justify-content: flex-start;
}body[data-page="cases"] #cases .industry-cases-hero h2,
body[data-page="news-responsibility"] #news-responsibility .news-responsibility-hero h2 {
  max-width: 760px;
  margin: 0;
  color: #10243d;
  font-size: clamp(42px, 4.8vw, 62px);
  line-height: 1.08;
  letter-spacing: 0;
}body[data-page="cases"] #cases .industry-cases-hero p:not(.eyebrow),
body[data-page="news-responsibility"] #news-responsibility .news-responsibility-hero p:not(.eyebrow) {
  max-width: 820px;
  margin: 20px 0 0;
  color: #5c6f82;
  font-size: clamp(16px, 1.12vw, 18px);
  line-height: 1.78;
}body[data-page="cases"] #cases .industry-case-overview {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: clamp(28px, 3vw, 36px) 0 clamp(58px, 6vw, 78px);
  border-top: 1px solid rgba(221, 232, 242, 0.82);
  border-bottom: 1px solid rgba(221, 232, 242, 0.82);
}body[data-page="cases"] #cases .industry-case-overview article {
  padding: 0 22px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}body[data-page="cases"] #cases .industry-case-overview article:not(:last-child) {
  border-right: 1px solid rgba(221, 232, 242, 0.82);
}body[data-page="cases"] #cases .industry-case-overview span,
body[data-page="cases"] #cases .industry-case-number {
  display: inline-flex;
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
  color: rgba(0, 114, 206, 0.7);
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}body[data-page="cases"] #cases .industry-case-overview h3 {
  margin: 14px 0 8px;
  color: #10243d;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.28;
}body[data-page="cases"] #cases .industry-case-overview p {
  color: #5c6f82;
  font-size: 15px;
  line-height: 1.72;
}body[data-page="cases"] #cases .industry-case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding-top: clamp(62px, 6vw, 84px);
}body[data-page="cases"] #cases .industry-case-card,
body[data-page="news-responsibility"] #news-responsibility .news-responsibility-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}body[data-page="cases"] #cases .industry-case-card {
  padding: 26px;
}body[data-page="cases"] #cases .industry-case-card:hover,
body[data-page="news-responsibility"] #news-responsibility .news-responsibility-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 114, 206, 0.16);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
}body[data-page="cases"] #cases .industry-case-card h3 {
  color: #10243d;
  font-size: clamp(21px, 1.9vw, 25px);
}body[data-page="cases"] #cases .industry-case-card p {
  color: #5c6f82;
}body[data-page="cases"] #cases .industry-case-tags em,
body[data-page="news-responsibility"] #news-responsibility .news-responsibility-card span {
  border-color: rgba(0, 114, 206, 0.1);
  color: #32618c;
  background: rgba(244, 249, 255, 0.82);
}body[data-page="cases"] #cases .industry-case-clients {
  padding-top: 14px;
  border-top: 1px solid rgba(221, 232, 242, 0.75);
}body[data-page="cases"] #cases .industry-case-cta {
  margin-top: clamp(62px, 6vw, 84px);
  padding: clamp(38px, 4vw, 52px) 0 0;
  border: 0;
  border-top: 1px solid rgba(221, 232, 242, 0.82);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}body[data-page="cases"] #cases .industry-case-cta h3 {
  color: #10243d;
}body[data-page="cases"] #cases .industry-case-cta p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: #5c6f82;
}body[data-page="news-responsibility"] #news-responsibility .news-responsibility-hero {
  width: min(1180px, calc(100% - clamp(40px, 8vw, 112px)));
}body[data-page="news-responsibility"] #news-responsibility .news-responsibility-block {
  display: grid;
  gap: clamp(28px, 3vw, 38px);
  padding: clamp(62px, 6vw, 88px) 0;
  border-top: 1px solid rgba(221, 232, 242, 0.82);
}body[data-page="news-responsibility"] #news-responsibility .news-responsibility-heading {
  width: 100%;
  max-width: 820px;
  margin: 0;
  text-align: left;
}body[data-page="news-responsibility"] #news-responsibility .news-responsibility-heading .eyebrow {
  justify-content: flex-start;
}body[data-page="news-responsibility"] #news-responsibility .news-responsibility-heading h3 {
  margin: 0;
  color: #10243d;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.18;
}body[data-page="news-responsibility"] #news-responsibility .news-responsibility-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 14px 0 0;
  color: #5c6f82;
  line-height: 1.74;
}body[data-page="news-responsibility"] #news-responsibility > .news-responsibility-block:nth-of-type(2) .news-responsibility-card-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 22px;
  align-items: stretch;
}body[data-page="news-responsibility"] #news-responsibility > .news-responsibility-block:nth-of-type(2) .news-responsibility-card:first-child {
  grid-row: span 3;
}body[data-page="news-responsibility"] #news-responsibility > .news-responsibility-block:nth-of-type(2) .news-responsibility-card:first-child figure {
  aspect-ratio: 16 / 10;
}body[data-page="news-responsibility"] #news-responsibility > .news-responsibility-block:nth-of-type(2) .news-responsibility-card:not(:first-child) {
  grid-template-columns: 156px minmax(0, 1fr);
}body[data-page="news-responsibility"] #news-responsibility > .news-responsibility-block:nth-of-type(2) .news-responsibility-card:not(:first-child) figure {
  height: 100%;
  min-height: 150px;
  aspect-ratio: auto;
}body[data-page="news-responsibility"] #news-responsibility > .news-responsibility-block:nth-of-type(3) {
  background: transparent;
}body[data-page="news-responsibility"] #news-responsibility > .news-responsibility-block:nth-of-type(3) .news-responsibility-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}body[data-page="news-responsibility"] #news-responsibility .news-responsibility-card {
  overflow: hidden;
}body[data-page="news-responsibility"] #news-responsibility .news-responsibility-card figure {
  background: #f6f8fb;
}body[data-page="news-responsibility"] #news-responsibility .news-responsibility-card img {
  object-fit: cover;
}body[data-page="news-responsibility"] #news-responsibility .news-responsibility-card > div {
  padding: clamp(18px, 2vw, 24px);
}body[data-page="news-responsibility"] #news-responsibility .news-responsibility-card h4 {
  color: #10243d;
}body[data-page="news-responsibility"] #news-responsibility .news-responsibility-card p {
  display: -webkit-box;
  overflow: hidden;
  color: #5c6f82;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}@media (max-width: 1180px) {body[data-page="cases"] #cases .industry-case-grid,
body[data-page="news-responsibility"] #news-responsibility > .news-responsibility-block:nth-of-type(3) .news-responsibility-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }body[data-page="news-responsibility"] #news-responsibility > .news-responsibility-block:nth-of-type(2) .news-responsibility-card-grid {
    grid-template-columns: 1fr;
  }body[data-page="news-responsibility"] #news-responsibility > .news-responsibility-block:nth-of-type(2) .news-responsibility-card:first-child {
    grid-row: auto;
  }body[data-page="news-responsibility"] #news-responsibility > .news-responsibility-block:nth-of-type(2) .news-responsibility-card:not(:first-child) {
    grid-template-columns: 220px minmax(0, 1fr);
  }
}@media (max-width: 760px) {body[data-page="cases"] #cases.industry-cases-section,
body[data-page="news-responsibility"] #news-responsibility.news-responsibility-section {
    padding-top: 92px;
    padding-bottom: 64px;
  }body[data-page="cases"] #cases .industry-cases-hero,
body[data-page="cases"] #cases .industry-case-overview,
body[data-page="cases"] #cases .industry-case-grid,
body[data-page="cases"] #cases .industry-case-cta,
body[data-page="news-responsibility"] #news-responsibility .news-responsibility-hero,
body[data-page="news-responsibility"] #news-responsibility .news-responsibility-block {
    width: calc(100% - 40px);
  }body[data-page="cases"] #cases .industry-cases-hero,
body[data-page="news-responsibility"] #news-responsibility .news-responsibility-hero {
    padding-bottom: 44px;
  }body[data-page="cases"] #cases .industry-cases-hero h2,
body[data-page="news-responsibility"] #news-responsibility .news-responsibility-hero h2 {
    font-size: clamp(34px, 10vw, 42px);
  }body[data-page="cases"] #cases .industry-case-overview,
body[data-page="cases"] #cases .industry-case-grid,
body[data-page="news-responsibility"] #news-responsibility > .news-responsibility-block:nth-of-type(3) .news-responsibility-card-grid {
    grid-template-columns: 1fr;
  }body[data-page="cases"] #cases .industry-case-overview {
    gap: 22px;
    padding: 28px 0 48px;
  }body[data-page="cases"] #cases .industry-case-overview article {
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(221, 232, 242, 0.82);
  }body[data-page="cases"] #cases .industry-case-overview article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }body[data-page="cases"] #cases .industry-case-card {
    padding: 22px;
  }body[data-page="news-responsibility"] #news-responsibility .news-responsibility-block {
    padding: 52px 0;
  }body[data-page="news-responsibility"] #news-responsibility > .news-responsibility-block:nth-of-type(2) .news-responsibility-card:not(:first-child) {
    grid-template-columns: 1fr;
  }body[data-page="news-responsibility"] #news-responsibility > .news-responsibility-block:nth-of-type(2) .news-responsibility-card:not(:first-child) figure,
body[data-page="news-responsibility"] #news-responsibility .news-responsibility-card figure {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}/* Contact page layout pass: replace two-card layout with natural company contact content + CTA. */
body[data-page="contact"] #contact.contact-conversion-section {
  width: 100%;
  max-width: none;
  min-height: auto;
  padding: clamp(108px, 10vw, 136px) 0 clamp(78px, 8vw, 108px);
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 38%, #f8fbff 38%, #f8fbff 74%, #ffffff 74%),
    #ffffff;
}body[data-page="contact"] #contact .contact-page-shell {
  width: min(1220px, calc(100% - clamp(40px, 8vw, 112px)));
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  gap: clamp(56px, 6vw, 76px);
}body[data-page="contact"] #contact .contact-page-hero {
  max-width: 820px;
  text-align: left;
}body[data-page="contact"] #contact .contact-page-hero .section-eyebrow,
body[data-page="contact"] #contact .contact-main-intro .section-eyebrow,
body[data-page="contact"] #contact .contact-inquiry-band .section-eyebrow {
  margin: 0 0 12px;
  color: #0072ce;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}body[data-page="contact"] #contact .contact-page-hero h2 {
  margin: 0;
  color: #10243d;
  font-size: clamp(42px, 4.8vw, 62px);
  line-height: 1.08;
  letter-spacing: 0;
}body[data-page="contact"] #contact .contact-page-hero p:not(.section-eyebrow) {
  max-width: 820px;
  margin: 20px 0 0;
  color: #5c6f82;
  font-size: clamp(16px, 1.12vw, 18px);
  line-height: 1.78;
}body[data-page="contact"] #contact .contact-main-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: start;
  padding: clamp(38px, 4vw, 54px) 0;
  border-top: 1px solid rgba(221, 232, 242, 0.86);
  border-bottom: 1px solid rgba(221, 232, 242, 0.86);
}body[data-page="contact"] #contact .contact-main-intro h3 {
  margin: 0;
  color: #10243d;
  font-size: clamp(26px, 2.5vw, 34px);
  line-height: 1.22;
}body[data-page="contact"] #contact .contact-main-intro p:not(.section-eyebrow) {
  margin: 18px 0 0;
  color: #5c6f82;
  font-size: 16px;
  line-height: 1.76;
}body[data-page="contact"] #contact .contact-info-list {
  margin: 0;
  display: grid;
  gap: 0;
}body[data-page="contact"] #contact .contact-info-list div {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(0, 0.72fr);
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid rgba(221, 232, 242, 0.78);
}body[data-page="contact"] #contact .contact-info-list div:first-child {
  padding-top: 0;
  border-top: 0;
}body[data-page="contact"] #contact .contact-info-list div:last-child {
  padding-bottom: 0;
}body[data-page="contact"] #contact .contact-info-list dt {
  margin: 0;
  color: rgba(0, 114, 206, 0.78);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}body[data-page="contact"] #contact .contact-info-list dd {
  margin: 0;
  color: #10243d;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.72;
}body[data-page="contact"] #contact .contact-inquiry-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(34px, 4vw, 48px);
  border: 0;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(0, 114, 206, 0.09), rgba(255, 255, 255, 0.96)),
    #f8fbff;
  box-shadow: none;
}body[data-page="contact"] #contact .contact-inquiry-band h3 {
  margin: 0;
  color: #10243d;
  font-size: clamp(26px, 2.5vw, 34px);
  line-height: 1.22;
}body[data-page="contact"] #contact .contact-inquiry-band p:not(.section-eyebrow) {
  max-width: 820px;
  margin: 14px 0 0;
  color: #5c6f82;
  font-size: 16px;
  line-height: 1.76;
}body[data-page="contact"] #contact .contact-inquiry-band .primary-button {
  flex: 0 0 auto;
  white-space: nowrap;
}@media (max-width: 900px) {body[data-page="contact"] #contact .contact-main-section,
body[data-page="contact"] #contact .contact-inquiry-band {
    grid-template-columns: 1fr;
  }body[data-page="contact"] #contact .contact-inquiry-band {
    align-items: start;
  }body[data-page="contact"] #contact .contact-inquiry-band .primary-button {
    width: fit-content;
  }
}@media (max-width: 640px) {body[data-page="contact"] #contact.contact-conversion-section {
    padding-top: 92px;
    padding-bottom: 64px;
  }body[data-page="contact"] #contact .contact-page-shell {
    width: calc(100% - 40px);
    gap: 44px;
  }body[data-page="contact"] #contact .contact-page-hero h2 {
    font-size: clamp(34px, 10vw, 42px);
  }body[data-page="contact"] #contact .contact-main-section {
    gap: 32px;
    padding: 34px 0;
  }body[data-page="contact"] #contact .contact-info-list div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }body[data-page="contact"] #contact .contact-inquiry-band {
    padding: 28px 22px;
    border-radius: 18px;
  }body[data-page="contact"] #contact .contact-inquiry-band .primary-button {
    width: 100%;
  }
}/* Phase 7: company updates,
social responsibility,
and professional team content. */
body[data-page="home"] #home .home-proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}body[data-page="home"] #home .home-proof-card {
  display: grid;
  align-content: start;
  gap: 14px;
  text-align: left;
}body[data-page="home"] #home .home-proof-card > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #0072ce;
  background: #eef7ff;
  font-weight: 900;
}body[data-page="home"] #home .home-proof-card h3,
body[data-page="home"] #home .home-news-card h4 {
  margin: 0;
  color: #10243d;
  font-size: 20px;
  line-height: 1.25;
}body[data-page="home"] #home .home-proof-card p,
body[data-page="home"] #home .home-news-card p {
  margin: 0;
  color: #53677d;
  line-height: 1.68;
}.home-proof-tags,
.home-news-preview-grid,
.professional-team-grid,
.responsibility-grid {
  display: grid;
}.home-proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}.home-proof-tags em,
.home-news-card > span,
.home-responsibility-entry-card > span,
.news-responsibility-card span,
.news-date-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid rgba(0, 114, 206, 0.14);
  border-radius: 999px;
  color: #23527a;
  background: #f4f9ff;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
}.home-responsibility-entry-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}.home-responsibility-entry-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: var(--site-card-padding);
  border: 1px solid var(--site-card-border);
  border-radius: var(--site-radius);
  background: #fff;
  box-shadow: var(--site-card-shadow);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}.home-responsibility-entry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--site-card-shadow-hover);
}.home-responsibility-entry-card p {
  margin: 0;
  color: #53677d;
  line-height: 1.68;
}.news-responsibility-section {
  gap: clamp(34px, 5vw, 56px);
  background:
    radial-gradient(circle at 12% 4%, rgba(0, 114, 206, 0.08), transparent 34%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 42%);
}.news-responsibility-hero,
.news-responsibility-heading {
  width: min(880px, 100%);
  margin: 0 auto;
  text-align: center;
}.news-responsibility-hero h2,
.news-responsibility-heading h3 {
  margin: 0;
  color: #10243d;
  letter-spacing: 0;
}.news-responsibility-hero p:not(.eyebrow),
.news-responsibility-heading p:not(.eyebrow) {
  margin: 14px auto 0;
  color: #53677d;
  line-height: 1.72;
}.news-responsibility-heading h3 {
  font-size: clamp(28px, 3vw, 38px);
}.news-responsibility-block {
  width: 100%;
  display: grid;
  gap: clamp(22px, 3vw, 32px);
}.news-responsibility-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}.news-responsibility-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--site-card-border);
  border-radius: var(--site-radius);
  background: #fff;
  box-shadow: var(--site-card-shadow);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}.news-responsibility-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--site-card-shadow-hover);
}.news-responsibility-card figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #edf6ff;
}.news-responsibility-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}.news-responsibility-card > div {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(18px, 2vw, 24px);
}.news-responsibility-card h4 {
  margin: 0;
  color: #10243d;
  font-size: clamp(19px, 1.6vw, 22px);
  line-height: 1.28;
}.news-responsibility-card p {
  margin: 0;
  color: #53677d;
  line-height: 1.68;
}.text-link {
  width: fit-content;
  color: #0072ce;
  font-weight: 850;
  text-decoration: none;
}.text-link::after {
  content: " →";
}.home-news-preview {
  width: min(1180px, 100%);
  margin: clamp(28px, 4vw, 44px) auto 0;
  padding-top: clamp(22px, 3vw, 32px);
  border-top: 1px solid rgba(205, 225, 245, 0.82);
}.compact-heading {
  margin-bottom: 22px;
}.compact-heading h3 {
  margin: 0 0 10px;
  color: #10243d;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.2;
}.home-news-preview-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}.home-news-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(205, 225, 245, 0.86);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 48, 87, 0.055);
}.home-news-card figure,
.responsibility-card figure,
.professional-role-avatar {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #edf6ff;
}.home-news-card figure {
  aspect-ratio: 4 / 3;
}.home-news-card img,
.responsibility-card img,
.professional-role-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}.news-section-heading {
  width: min(1180px, 100%);
  margin: clamp(26px, 4vw, 42px) auto 18px;
  text-align: center;
}.news-section-heading h3 {
  margin: 0;
  color: #10243d;
  font-size: clamp(26px, 2.6vw, 34px);
}.news-expanded-grid {
  gap: 22px;
}.news-expanded-grid .news-feature-card {
  scroll-margin-top: 96px;
}.news-feature-card .news-date-label {
  margin: 0 0 10px;
}.professional-team-section {
  margin-top: clamp(34px, 5vw, 56px);
  padding-top: clamp(28px, 4vw, 42px);
  border-top: 1px solid rgba(205, 225, 245, 0.82);
}.professional-team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}.professional-role-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(205, 225, 245, 0.86);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 48, 87, 0.055);
}.professional-role-avatar {
  aspect-ratio: 16 / 9;
}.professional-role-card h4,
.responsibility-card h4 {
  margin: 0;
  color: #10243d;
  font-size: 20px;
  line-height: 1.28;
}.professional-role-card p,
.responsibility-card p {
  margin: 0;
  color: #53677d;
  line-height: 1.68;
}.professional-role-card > strong {
  color: #0072ce;
  font-size: 13px;
  letter-spacing: 0.04em;
}.trust-responsibility-section {
  width: min(1180px, 100%);
  margin: clamp(34px, 5vw, 56px) auto 0;
  padding-top: clamp(28px, 4vw, 42px);
  border-top: 1px solid rgba(205, 225, 245, 0.82);
}.responsibility-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}.responsibility-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(205, 225, 245, 0.86);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 48, 87, 0.055);
}.responsibility-card figure {
  aspect-ratio: 4 / 3;
}.responsibility-card > div {
  display: grid;
  gap: 12px;
}@media (max-width: 1180px) {body[data-page="home"] #home .home-proof-grid,
.home-responsibility-entry-grid,
.news-responsibility-card-grid,
.home-news-preview-grid,
.professional-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }.responsibility-grid {
    grid-template-columns: 1fr;
  }
}@media (max-width: 760px) {body[data-page="home"] #home .home-proof-grid,
.home-responsibility-entry-grid,
.news-responsibility-card-grid,
.home-news-preview-grid,
.professional-team-grid,
.responsibility-grid,
.responsibility-card {
    grid-template-columns: 1fr;
  }.home-news-preview,
.professional-team-section,
.trust-responsibility-section {
    margin-top: 28px;
  }
}/* Final homepage de-card overrides: keep these last so older phase styles cannot re-wrap sections. */
body[data-page="home"] #home .home-content {
  width: 100%;
  max-width: none;
  gap: 0;
  padding: 0;
}body[data-page="home"] #home .home-section {
  width: min(1180px, calc(100% - clamp(40px, 8vw, 112px)));
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(88px, 8vw, 112px) 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}body[data-page="home"] #home .home-section + .home-section {
  border-top: 1px solid rgba(221, 232, 242, 0.72);
}body[data-page="home"] #home .home-metrics-section {
  margin-top: clamp(-42px, -3vw, -24px);
  padding-top: 0;
  padding-bottom: clamp(72px, 7vw, 96px);
  border-top: 0;
}body[data-page="home"] #home .home-services-section,
body[data-page="home"] #home .partner-section,
body[data-page="home"] #home .home-honors-section,
body[data-page="home"] #home .corporate-video-section,
body[data-page="home"] #home .home-showcase-section {
  padding-left: 0;
  padding-right: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}body[data-page="home"] #home .home-services-section::before,
body[data-page="home"] #home .corporate-video-section::before {
  display: none;
}body[data-page="home"] #home .partner-section::before,
body[data-page="home"] #home .home-honors-section::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.82), rgba(255, 255, 255, 0.64));
  pointer-events: none;
}body[data-page="home"] #home .home-section-heading {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}body[data-page="home"] #home .home-section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}body[data-page="home"] #home .home-industry-grid article,
body[data-page="home"] #home .partner-card,
body[data-page="home"] #home .home-responsibility-entry-card,
body[data-page="home"] #home .featured-case-grid article {
  border-color: rgba(218, 229, 240, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 26px rgba(15, 48, 87, 0.045);
}body[data-page="home"] #home .home-industry-grid article:hover,
body[data-page="home"] #home .partner-card:hover,
body[data-page="home"] #home .home-responsibility-entry-card:hover,
body[data-page="home"] #home .featured-case-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 114, 206, 0.18);
  box-shadow: 0 16px 36px rgba(15, 48, 87, 0.075);
}body[data-page="home"] #home .home-service-flow-icon {
  border-color: rgba(0, 114, 206, 0.16);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 48, 87, 0.07);
}body[data-page="home"] #home .home-responsibility-entry-card {
  min-height: 172px;
}body[data-page="home"] #home .home-responsibility-entry-card > span {
  min-height: auto;
  padding: 0;
  border: 0;
  color: #0f4070;
  background: transparent;
  font-size: 19px;
  line-height: 1.35;
}body[data-page="home"] #home .partner-card {
  height: 116px;
}body[data-page="home"] #home .partner-card img {
  max-width: 156px;
  height: 66px;
}body[data-page="home"] #home .partner-carousel .showcase-arrow {
  width: 34px;
  height: 34px;
  color: rgba(16, 36, 61, 0.68);
  border-color: rgba(205, 225, 245, 0.76);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 22px rgba(15, 48, 87, 0.08);
}body[data-page="home"] #home .corporate-video-card {
  border-color: rgba(218, 229, 240, 0.86);
  border-radius: 20px;
  box-shadow: 0 18px 46px rgba(15, 48, 87, 0.105);
}@media (max-width: 1180px) {body[data-page="home"] #home .home-section {
    width: calc(100% - 64px);
    padding-top: clamp(72px, 8vw, 92px);
    padding-bottom: clamp(72px, 8vw, 92px);
  }
}@media (max-width: 760px) {body[data-page="home"] #home .home-section {
    width: calc(100% - 40px);
    padding: clamp(56px, 12vw, 72px) 0;
  }body[data-page="home"] #home .home-metrics-section {
    margin-top: 0;
    padding-top: 34px;
    padding-bottom: 56px;
  }body[data-page="home"] #home .partner-carousel .showcase-arrow {
    display: none;
  }body[data-page="home"] #home .partner-card {
    flex-basis: 168px;
    height: 104px;
  }body[data-page="home"] #home .home-industry-grid article,
body[data-page="home"] #home .home-responsibility-entry-card {
    min-height: auto;
    padding: 20px;
  }
}/* Phase 1 layout system: unified website rhythm,
containers,
typography,
cards,
and actions. */
:root {
  --site-container-width: 1200px;
  --site-wide-width: 1280px;
  --site-readable-width: 820px;
  --site-gutter: clamp(40px, 7vw, 64px);
  --site-section-space: clamp(88px, 8vw, 112px);
  --site-section-space-sm: clamp(72px, 6vw, 88px);
  --site-card-radius-final: 18px;
  --site-card-border-final: rgba(15, 23, 42, 0.08);
  --site-card-shadow-final: 0 8px 24px rgba(15, 23, 42, 0.04);
  --site-card-shadow-hover-final: 0 14px 32px rgba(15, 23, 42, 0.07);
  --site-copy-color: #43566a;
  --site-title-color: #10243d;
}body {
  color: var(--site-title-color);
  background: #fff;
}body[data-page] .page-section.active {
  width: 100%;
  max-width: none;
}body[data-page="home"] #home .home-section,
body[data-page="cases"] #cases .industry-cases-hero,
body[data-page="cases"] #cases .industry-case-overview,
body[data-page="cases"] #cases .industry-case-grid,
body[data-page="cases"] #cases .industry-case-cta,
body[data-page="news-responsibility"] #news-responsibility .news-responsibility-hero,
body[data-page="news-responsibility"] #news-responsibility .news-responsibility-block,
body[data-page="contact"] #contact .contact-page-shell,
body[data-page="services"] #services .business-heading,
body[data-page="services"] #services .business-modern-section,
body[data-page="services"] #services .business-service-detail,
body[data-page="services"] #services .business-transport-section,
body[data-page="services"] #services .business-final-cta,
body[data-page="bluewhale"] #bluewhale .bluewhale-hero,
body[data-page="bluewhale"] #bluewhale .bluewhale-grid,
body[data-page="bluewhale"] #bluewhale .system-capabilities,
body[data-page="bluewhale"] #bluewhale .bluewhale-flow,
body[data-page="subsidiaries"] #subsidiaries .subsidiaries-heading,
body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline {
  width: min(var(--site-container-width), calc(100% - var(--site-gutter) * 2));
  max-width: var(--site-container-width);
  margin-left: auto;
  margin-right: auto;
}body[data-page="home"] #home .home-section {
  padding-top: var(--site-section-space);
  padding-bottom: var(--site-section-space);
}body[data-page="home"] #home .home-metrics-section {
  padding-top: 0;
  padding-bottom: var(--site-section-space-sm);
}body[data-page="home"] #home .home-section + .home-section,
body[data-page="news-responsibility"] #news-responsibility .news-responsibility-block,
body[data-page="cases"] #cases .industry-case-overview,
body[data-page="contact"] #contact .contact-main-section {
  border-color: rgba(221, 232, 242, 0.78);
}body[data-page="cases"] #cases.industry-cases-section,
body[data-page="news-responsibility"] #news-responsibility.news-responsibility-section,
body[data-page="contact"] #contact.contact-conversion-section,
body[data-page="bluewhale"] #bluewhale.bluewhale-section,
body[data-page="services"] #services.services-section,
body[data-page="subsidiaries"] #subsidiaries.subsidiaries-section {
  padding-top: clamp(104px, 10vw, 132px);
  padding-bottom: var(--site-section-space);
  background:
    linear-gradient(180deg, #fff 0%, #fff 32%, #f8fbff 32%, #f8fbff 64%, #fff 64%),
    #fff;
}.eyebrow,
.section-eyebrow,
.home-section-heading .eyebrow,
.section-heading .eyebrow,
.section-copy .eyebrow,
.business-heading .eyebrow,
.subsidiaries-heading .eyebrow,
.bluewhale-hero .eyebrow,
.news-responsibility-heading .eyebrow,
.contact-page-hero .section-eyebrow {
  color: #0072ce;
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}.section-copy h2,
.section-heading h2,
.home-section-heading h2,
.business-heading h2,
.subsidiaries-heading h2,
.case-section .section-heading h2,
body[data-page="cases"] #cases .industry-cases-hero h2,
body[data-page="news-responsibility"] #news-responsibility .news-responsibility-hero h2,
body[data-page="contact"] #contact .contact-page-hero h2,
body[data-page="bluewhale"] #bluewhale .bluewhale-hero h2 {
  color: var(--site-title-color);
  font-size: clamp(36px, 4.2vw, 48px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0;
}body[data-page="cases"] #cases .industry-cases-hero h2,
body[data-page="news-responsibility"] #news-responsibility .news-responsibility-hero h2,
body[data-page="contact"] #contact .contact-page-hero h2,
body[data-page="bluewhale"] #bluewhale .bluewhale-hero h2 {
  font-size: clamp(44px, 5vw, 56px);
}.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.home-section-heading p:not(.eyebrow),
.business-heading > p:not(.eyebrow),
.subsidiaries-heading p:not(.eyebrow),
.case-section .section-heading p:not(.eyebrow),
.bluewhale-hero p:not(.eyebrow),
.news-responsibility-hero p:not(.eyebrow),
.news-responsibility-heading p:not(.eyebrow),
.contact-page-hero p:not(.section-eyebrow),
body[data-page="contact"] #contact .contact-main-intro p:not(.section-eyebrow),
.section-heading p:not(.eyebrow),
.home-section-heading p:not(.eyebrow),
.business-heading > p:not(.eyebrow),
.subsidiaries-heading p:not(.eyebrow),
.case-section .section-heading p:not(.eyebrow),
.bluewhale-hero p:not(.eyebrow),
.news-responsibility-hero p:not(.eyebrow),
.contact-page-hero p:not(.section-eyebrow) {
  max-width: var(--site-readable-width);
}.home-card-grid article,
.showcase-card,
.partner-card,
.case-card,
.client-case-card,
.business-entry-card,
.business-detail-card,
.business-modern-card,
.business-scenario-card,
.business-direction-card,
.business-transport-block,
.business-transport-points article,
.company-stat-grid article,
.company-principle-grid article,
.value-grid article,
.capability-grid article,
.subsidiary-overview-card,
.subsidiary-group-card,
.subsidiary-company-card,
.subsidiary-card,
.subsidiary-detail-card,
.honor-card,
.honor-display-card,
.trust-copy-card,
.trust-certificate-card,
.trust-team-grid article,
.news-category-grid article,
.news-feature-card,
.branch-contact-card,
.contact-inquiry-card,
body[data-page="home"] #home .home-industry-grid article,
body[data-page="home"] #home .home-responsibility-entry-card,
body[data-page="home"] #home .featured-case-grid article,
body[data-page="cases"] #cases .industry-case-card,
body[data-page="news-responsibility"] #news-responsibility .news-responsibility-card,
body[data-page="bluewhale"] #bluewhale .bluewhale-card,
body[data-page="bluewhale"] #bluewhale .capability-showcase {
  border: 1px solid var(--site-card-border-final);
  border-radius: var(--site-card-radius-final);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--site-card-shadow-final);
}.home-card-grid article:hover,
.showcase-card:hover,
.partner-card:hover,
.case-card:hover,
.client-case-card:hover,
.business-entry-card:hover,
.business-detail-card:hover,
.business-modern-card:hover,
.business-scenario-card:hover,
.business-direction-card:hover,
.business-transport-points article:hover,
.company-stat-grid article:hover,
.company-principle-grid article:hover,
.value-grid article:hover,
.capability-grid article:hover,
.subsidiary-overview-card:hover,
.subsidiary-group-card:hover,
.subsidiary-card:hover,
.subsidiary-detail-card:hover,
.honor-card:hover,
.honor-display-card:hover,
.trust-copy-card:hover,
.trust-certificate-card:hover,
.trust-team-grid article:hover,
.news-category-grid article:hover,
.news-feature-card:hover,
.branch-contact-card:hover,
.contact-inquiry-card:hover,
body[data-page="home"] #home .home-industry-grid article:hover,
body[data-page="home"] #home .home-responsibility-entry-card:hover,
body[data-page="home"] #home .featured-case-grid article:hover,
body[data-page="cases"] #cases .industry-case-card:hover,
body[data-page="news-responsibility"] #news-responsibility .news-responsibility-card:hover,
body[data-page="bluewhale"] #bluewhale .bluewhale-card:hover,
body[data-page="bluewhale"] #bluewhale .capability-showcase:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 114, 206, 0.16);
  box-shadow: var(--site-card-shadow-hover-final);
}.case-service-tags em,
.industry-case-tags em,
.bluewhale-tags span,
.business-modern-tags span,
.trust-tags em,
.home-proof-tags em,
.news-responsibility-card span,
.news-date-label {
  border-color: rgba(0, 114, 206, 0.1);
  color: #32618c;
  background: rgba(244, 249, 255, 0.82);
}.primary-button,
.form-submit {
  border-color: #0072ce;
  color: #fff;
  background: #0072ce;
  box-shadow: 0 10px 24px rgba(0, 114, 206, 0.16);
}.primary-button:hover,
.primary-button:focus-visible,
.form-submit:hover,
.form-submit:focus-visible {
  background: #005bb5;
  border-color: #005bb5;
  transform: translateY(-2px);
}.secondary-button,
.light-button {
  color: #10243d;
  border-color: rgba(16, 36, 61, 0.16);
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 48, 87, 0.05);
}.secondary-button:hover,
.secondary-button:focus-visible,
.light-button:hover,
.light-button:focus-visible {
  color: #005bb5;
  border-color: rgba(0, 114, 206, 0.24);
  background: #f8fbff;
  transform: translateY(-2px);
}.nav-links {
  gap: clamp(2px, 0.45vw, 7px);
}.nav-links a {
  min-height: 42px;
  padding: 0 clamp(9px, 0.85vw, 13px);
  border-radius: 999px;
  font-weight: 700;
}.nav-links a.active {
  color: #005bb5;
  background: rgba(0, 114, 206, 0.08);
  box-shadow: none;
}.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(0, 114, 206, 0.06);
  transform: none;
}body[data-page="home"] #home .home-services-section,
body[data-page="home"] #home .partner-section,
body[data-page="home"] #home .home-honors-section,
body[data-page="cases"] #cases .industry-cases-hero,
body[data-page="news-responsibility"] #news-responsibility .news-responsibility-hero,
body[data-page="contact"] #contact .contact-page-hero,
body[data-page="bluewhale"] #bluewhale .bluewhale-flow {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}img {
  object-fit: cover;
}.partner-card img,
.brand-logo,
.company-intro-logo-mark img,
.client-logo img,
.jiujie-mascot-image {
  object-fit: contain;
}.jiujie-quote-advisor {
  right: max(16px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
}@media (max-width: 1024px) {:root {
    --site-gutter: clamp(28px, 5vw, 40px);
    --site-section-space: clamp(72px, 8vw, 92px);
    --site-section-space-sm: clamp(64px, 7vw, 78px);
  }.site-header {
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr) auto;
  }
}@media (max-width: 760px) {:root {
    --site-gutter: 20px;
    --site-section-space: clamp(56px, 12vw, 72px);
    --site-section-space-sm: clamp(52px, 11vw, 64px);
  }body[data-page="home"] #home .home-section,
body[data-page="cases"] #cases .industry-cases-hero,
body[data-page="cases"] #cases .industry-case-overview,
body[data-page="cases"] #cases .industry-case-grid,
body[data-page="cases"] #cases .industry-case-cta,
body[data-page="news-responsibility"] #news-responsibility .news-responsibility-hero,
body[data-page="news-responsibility"] #news-responsibility .news-responsibility-block,
body[data-page="contact"] #contact .contact-page-shell,
body[data-page="services"] #services .business-heading,
body[data-page="services"] #services .business-modern-section,
body[data-page="services"] #services .business-service-detail,
body[data-page="services"] #services .business-transport-section,
body[data-page="services"] #services .business-final-cta,
body[data-page="bluewhale"] #bluewhale .bluewhale-hero,
body[data-page="bluewhale"] #bluewhale .bluewhale-grid,
body[data-page="bluewhale"] #bluewhale .system-capabilities,
body[data-page="bluewhale"] #bluewhale .bluewhale-flow,
body[data-page="subsidiaries"] #subsidiaries .subsidiaries-heading,
body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline {
    width: calc(100% - 40px);
  }body[data-page="home"] #home .home-section {
    width: 100%;
  }.section-copy h2,
.section-heading h2,
.home-section-heading h2,
.business-heading h2,
.subsidiaries-heading h2,
.case-section .section-heading h2,
body[data-page="cases"] #cases .industry-cases-hero h2,
body[data-page="news-responsibility"] #news-responsibility .news-responsibility-hero h2,
body[data-page="contact"] #contact .contact-page-hero h2,
body[data-page="bluewhale"] #bluewhale .bluewhale-hero h2 {
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.18;
  }.jiujie-quote-advisor {
    right: 10px;
    bottom: 12px;
    transform: scale(0.86);
    transform-origin: right bottom;
  }
}/* Phase 2 homepage rhythm: tighter hero,
lighter modules,
and continuous homepage storytelling. */
body[data-page="home"] #home.home-page {
  background:
    linear-gradient(180deg, #f7fbff 0, #ffffff 560px, #ffffff 100%);
}body[data-page="home"] #home .home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(420px, 0.52fr);
  align-items: center;
  min-height: clamp(680px, 84svh, 820px);
  padding: clamp(112px, 10vw, 138px) max(40px, calc((100vw - 1200px) / 2)) clamp(72px, 7vw, 96px);
  overflow: hidden;
  color: #10243d;
  background:
    radial-gradient(circle at 88% 16%, rgba(0, 114, 206, 0.12), transparent 32%),
    linear-gradient(135deg, #f8fbff 0%, #ffffff 58%, #eef6ff 100%);
}body[data-page="home"] #home .hero-media {
  position: absolute;
  inset: auto max(40px, calc((100vw - 1200px) / 2)) auto auto;
  top: 50%;
  z-index: 2;
  grid-column: 2;
  align-self: center;
  justify-self: end;
  width: min(100%, 610px);
  aspect-ratio: 16 / 11;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(15, 48, 87, 0.16);
  transform: translateY(-45%);
}body[data-page="home"] #home .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 18, 35, 0.02), rgba(5, 18, 35, 0.16));
  z-index: 3;
  pointer-events: none;
}body[data-page="home"] #home .hero-media img,
body[data-page="home"] #home .hero-video {
  object-position: center;
}body[data-page="home"] #home .hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.88) 48%, rgba(255, 255, 255, 0.24) 100%);
}body[data-page="home"] #home .hero-content {
  z-index: 4;
  grid-column: 1;
  width: min(100%, 570px);
  padding: 0;
  color: #10243d;
}body[data-page="home"] #home .hero-content .eyebrow {
  color: #0069bd;
}body[data-page="home"] #home .hero-content h1 {
  color: #0d2038;
  font-size: clamp(42px, 4.4vw, 58px);
  line-height: 1.12;
  letter-spacing: 0;
}html[lang="en"] body[data-page="home"] #home .hero-content h1 {
  font-size: clamp(36px, 3.7vw, 50px);
  line-height: 1.1;
}body[data-page="home"] #home .hero-copy {
  max-width: 560px;
  margin-top: 22px;
  color: #40556b;
  font-size: clamp(16px, 1.18vw, 18px);
  line-height: 1.78;
}body[data-page="home"] #home .hero-actions {
  margin-top: 30px;
  gap: 12px;
}body[data-page="home"] #home .hero-actions .primary-button,
body[data-page="home"] #home .hero-actions .secondary-button {
  min-height: 48px;
  padding: 0 24px;
}body[data-page="home"] #home .hero-actions .secondary-button {
  color: #10243d;
  border-color: rgba(16, 36, 61, 0.18);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 22px rgba(15, 48, 87, 0.06);
}body[data-page="home"] #home .hero-metrics {
  width: 100%;
  margin-top: clamp(30px, 4vw, 42px);
  padding-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(16, 36, 61, 0.12);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}body[data-page="home"] #home .hero-metrics div {
  min-width: 0;
  padding: 0 18px 0 0;
  border-right: 1px solid rgba(16, 36, 61, 0.11);
  background: transparent;
}body[data-page="home"] #home .hero-metrics div:last-child {
  border-right: 0;
}body[data-page="home"] #home .hero-metrics strong {
  color: #0d2038;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.15;
}body[data-page="home"] #home .hero-metrics span {
  margin-top: 8px;
  color: #5c7084;
  font-size: 13px;
  line-height: 1.45;
}body[data-page="home"] #home .home-content {
  gap: 0;
  padding-top: 0;
}body[data-page="home"] #home .home-section {
  width: min(1200px, calc(100% - var(--site-gutter) * 2));
  max-width: 1200px;
  padding-top: clamp(82px, 7vw, 104px);
  padding-bottom: clamp(82px, 7vw, 104px);
}body[data-page="home"] #home .home-section + .home-section {
  border-top-color: rgba(221, 232, 242, 0.62);
}body[data-page="home"] #home .home-section-heading {
  max-width: 820px;
  margin-bottom: clamp(8px, 1.4vw, 18px);
}body[data-page="home"] #home .home-section-heading h2 {
  font-size: clamp(34px, 3vw, 42px);
}body[data-page="home"] #home .home-section-heading p:not(.eyebrow) {
  max-width: 780px;
  color: #43566a;
  line-height: 1.76;
}body[data-page="home"] #home .home-service-flow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
  padding: 0;
}body[data-page="home"] #home .home-service-flow::before,
body[data-page="home"] #home .home-service-flow-step:not(:last-child)::after {
  display: none;
}body[data-page="home"] #home .home-service-flow-step {
  min-height: 188px;
  justify-content: start;
  justify-items: start;
  align-content: start;
  gap: 12px;
  padding: 24px;
  text-align: left;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.035);
}body[data-page="home"] #home .home-service-flow-icon {
  width: 44px;
  height: 44px;
  color: #0069bd;
  border-color: rgba(0, 114, 206, 0.12);
  background: rgba(248, 251, 255, 0.9);
}body[data-page="home"] #home .home-service-flow-icon svg {
  width: 23px;
  height: 23px;
}body[data-page="home"] #home .home-service-flow-step h3 {
  color: #10243d;
  font-size: 18px;
  line-height: 1.35;
}body[data-page="home"] #home .home-service-flow-step p {
  max-width: none;
  color: #5a6c7d;
  font-size: 14px;
  line-height: 1.6;
}body[data-page="home"] #home .partner-section,
body[data-page="home"] #home .home-honors-section {
  width: 100%;
  max-width: none;
  padding-left: max(40px, calc((100vw - 1200px) / 2));
  padding-right: max(40px, calc((100vw - 1200px) / 2));
  background: #f8fbff;
}body[data-page="home"] #home .partner-section > *,
body[data-page="home"] #home .home-honors-section > * {
  width: min(1200px, 100%);
  margin-left: auto;
  margin-right: auto;
}body[data-page="home"] #home .home-industry-grid {
  gap: 14px;
}body[data-page="home"] #home .home-industry-grid article {
  min-height: 112px;
  padding: 22px;
  border-color: rgba(15, 23, 42, 0.065);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.028);
}body[data-page="home"] #home .home-industry-grid article span {
  color: rgba(0, 114, 206, 0.36);
  font-size: 13px;
}body[data-page="home"] #home .home-industry-grid article h3 {
  margin-top: 10px;
  color: #10243d;
  font-size: 18px;
  line-height: 1.35;
}body[data-page="home"] #home .partner-carousel {
  margin-top: clamp(24px, 3vw, 36px);
  padding: 0 42px;
}body[data-page="home"] #home .partner-card {
  min-height: 112px;
  border-color: rgba(15, 23, 42, 0.055);
  border-radius: 16px;
  box-shadow: none;
}body[data-page="home"] #home .partner-card img {
  max-width: 74%;
  max-height: 56px;
}body[data-page="home"] #home .showcase-arrow {
  width: 38px;
  height: 38px;
  color: #3c5874;
  border-color: rgba(15, 23, 42, 0.09);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 6px 16px rgba(15, 48, 87, 0.06);
}body[data-page="home"] #home .featured-case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}body[data-page="home"] #home .featured-case-grid article {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-color: rgba(15, 23, 42, 0.07);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}body[data-page="home"] #home .featured-case-grid article img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  object-position: center;
}body[data-page="home"] #home .featured-case-grid article img.featured-case-image--pharma {
  object-position: 50% 50%;
}body[data-page="home"] #home .featured-case-grid article img.featured-case-image--cosmetics {
  object-position: 50% 48%;
}body[data-page="home"] #home .featured-case-grid article img.featured-case-image--consumer {
  object-position: 50% 50%;
}body[data-page="home"] #home .featured-case-grid article img.featured-case-image--industrial {
  object-position: 50% 50%;
}body[data-page="home"] #home .featured-case-grid article > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}body[data-page="home"] #home .featured-case-grid article h3 {
  min-height: 2.6em;
  color: #10243d;
  font-size: 19px;
  line-height: 1.35;
}body[data-page="home"] #home .featured-case-grid article p {
  display: -webkit-box;
  min-height: 3.2em;
  overflow: hidden;
  color: #53677a;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}body[data-page="home"] #home .featured-case-grid article span {
  margin-top: auto;
  color: #6b7d8f;
}body[data-page="home"] #home .featured-case-grid article a {
  margin-top: 16px;
  color: #0069bd;
  font-weight: 800;
}body[data-page="home"] #home .corporate-video-section {
  width: 100%;
  max-width: none;
  padding-left: max(40px, calc((100vw - 1200px) / 2));
  padding-right: max(40px, calc((100vw - 1200px) / 2));
  background: #fff;
}body[data-page="home"] #home .corporate-video-section > * {
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}body[data-page="home"] #home .corporate-video-heading h2 {
  font-size: clamp(34px, 3vw, 42px);
}body[data-page="home"] #home .corporate-video-card {
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: 620px;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 20px 56px rgba(15, 48, 87, 0.12);
}body[data-page="home"] #home .corporate-video-play {
  width: 74px;
  height: 74px;
}body[data-page="home"] #home .home-showcase-section {
  overflow: hidden;
}body[data-page="home"] #home .showcase-carousel {
  margin-top: 20px;
}body[data-page="home"] #home .showcase-track {
  gap: 18px;
}body[data-page="home"] #home .showcase-card {
  flex: 0 0 calc((100% - 54px) / 4);
  border: 0;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.045);
}body[data-page="home"] #home .showcase-card img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center;
}body[data-page="home"] #home .showcase-card:hover img {
  transform: scale(1.018);
}body[data-page="home"] #home .home-responsibility-entry-grid {
  gap: 16px;
}body[data-page="home"] #home .home-responsibility-entry-card {
  min-height: 156px;
  padding: 26px;
  border-color: rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.032);
}body[data-page="home"] #home .home-responsibility-entry-card span {
  color: #0069bd;
  font-size: 14px;
  letter-spacing: 0.08em;
}body[data-page="home"] #home .home-responsibility-entry-card p {
  color: #53677a;
  line-height: 1.68;
}@media (max-width: 1180px) {body[data-page="home"] #home .home-hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding: 116px 32px 68px;
  }body[data-page="home"] #home .hero-content {
    width: min(100%, 760px);
  }body[data-page="home"] #home .hero-media {
    position: relative;
    inset: auto;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(100%, 760px);
    margin-top: 38px;
    justify-self: start;
    grid-column: 1;
    transform: none;
  }body[data-page="home"] #home .home-service-flow,
body[data-page="home"] #home .featured-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }body[data-page="home"] #home .showcase-card {
    flex-basis: calc((100% - 18px) / 2);
  }
}@media (max-width: 760px) {body[data-page="home"] #home .home-hero {
    padding: 104px 20px 56px;
  }body[data-page="home"] #home .hero-content h1 {
    font-size: clamp(32px, 9vw, 38px);
  }body[data-page="home"] #home .hero-copy {
    font-size: 15.5px;
  }body[data-page="home"] #home .hero-actions {
    align-items: stretch;
  }body[data-page="home"] #home .hero-actions .primary-button,
body[data-page="home"] #home .hero-actions .secondary-button {
    width: 100%;
  }body[data-page="home"] #home .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 18px;
  }body[data-page="home"] #home .hero-metrics div:nth-child(2) {
    border-right: 0;
  }body[data-page="home"] #home .hero-metrics div:nth-child(3),
body[data-page="home"] #home .hero-metrics div:nth-child(4) {
    padding-top: 18px;
    border-top: 1px solid rgba(16, 36, 61, 0.1);
  }body[data-page="home"] #home .hero-media {
    border-radius: 20px;
  }body[data-page="home"] #home .home-section {
    width: 100%;
    padding-top: 62px;
    padding-bottom: 62px;
  }body[data-page="home"] #home .partner-section,
body[data-page="home"] #home .corporate-video-section,
body[data-page="home"] #home .home-honors-section {
    padding-left: 0;
    padding-right: 0;
  }body[data-page="home"] #home .home-section-heading h2,
body[data-page="home"] #home .corporate-video-heading h2 {
    font-size: clamp(27px, 7.6vw, 32px);
  }body[data-page="home"] #home .home-service-flow,
body[data-page="home"] #home .featured-case-grid {
    grid-template-columns: 1fr;
  }body[data-page="home"] #home .home-service-flow-step {
    min-height: 0;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: start;
  }body[data-page="home"] #home .home-service-flow-step h3,
body[data-page="home"] #home .home-service-flow-step p {
    grid-column: 2;
  }body[data-page="home"] #home .home-industry-grid {
    grid-template-columns: 1fr;
  }body[data-page="home"] #home .partner-carousel {
    padding: 0 28px;
  }body[data-page="home"] #home .partner-card {
    min-height: 96px;
  }body[data-page="home"] #home .corporate-video-card {
    border-radius: 18px;
  }body[data-page="home"] #home .corporate-video-play {
    width: 60px;
    height: 60px;
  }body[data-page="home"] #home .showcase-card {
    flex-basis: 100%;
  }body[data-page="home"] #home .home-responsibility-entry-grid {
    grid-template-columns: 1fr;
  }
}* {
  box-sizing: border-box;
}/* Phase 3 inner-page template: unified page hero,
width,
rhythm,
and lighter content blocks. */
body:not([data-page="home"]) {
  background: #ffffff;
}body:not([data-page="home"]) .page-section.active {
  width: 100%;
  max-width: none;
  align-content: start;
}body[data-page="about"] #about,
body[data-page="subsidiaries"] #subsidiaries,
body[data-page="services"] #services,
body[data-page="bluewhale"] #bluewhale,
body[data-page="cases"] #cases,
body[data-page="news-responsibility"] #news-responsibility,
body[data-page="contact"] #contact {
  --inner-container: min(1240px, calc(100% - clamp(48px, 8vw, 96px)));
  --inner-wide: min(1280px, calc(100% - clamp(48px, 8vw, 96px)));
  --inner-readable: 820px;
  --inner-hero-pad: clamp(88px, 8vw, 112px);
  --inner-section-pad: clamp(72px, 6vw, 92px);
  --inner-section-pad-sm: clamp(60px, 5vw, 76px);
  width: 100%;
  max-width: none;
  padding-top: 0;
  padding-bottom: 0;
  background: #ffffff;
}body[data-page="about"] #about > .section-copy,
body[data-page="subsidiaries"] #subsidiaries > .subsidiaries-heading,
body[data-page="services"] #services .business-modern-hero,
body[data-page="bluewhale"] #bluewhale > .bluewhale-hero,
body[data-page="cases"] #cases > .industry-cases-hero,
body[data-page="news-responsibility"] #news-responsibility > .news-responsibility-hero,
body[data-page="contact"] #contact .contact-page-hero {
  width: var(--inner-container);
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-top: calc(var(--inner-hero-pad) + 48px);
  padding-bottom: var(--inner-section-pad-sm);
  text-align: left;
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.96), rgba(255, 255, 255, 0));
  border: 0;
  border-radius: 0;
  box-shadow: none;
}body[data-page="services"] #services .business-modern-hero {
  display: grid;
  gap: 18px;
}body[data-page="about"] #about > .section-copy .eyebrow,
body[data-page="subsidiaries"] #subsidiaries > .subsidiaries-heading .eyebrow,
body[data-page="services"] #services .business-modern-hero .eyebrow,
body[data-page="bluewhale"] #bluewhale > .bluewhale-hero .eyebrow,
body[data-page="cases"] #cases > .industry-cases-hero .eyebrow,
body[data-page="news-responsibility"] #news-responsibility > .news-responsibility-hero .eyebrow,
body[data-page="contact"] #contact .contact-page-hero .section-eyebrow {
  justify-content: flex-start;
  margin: 0 0 14px;
  color: #0072ce;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}body[data-page="about"] #about > .section-copy h2,
body[data-page="subsidiaries"] #subsidiaries > .subsidiaries-heading h2,
body[data-page="services"] #services .business-modern-hero h2,
body[data-page="bluewhale"] #bluewhale > .bluewhale-hero h2,
body[data-page="cases"] #cases > .industry-cases-hero h2,
body[data-page="news-responsibility"] #news-responsibility > .news-responsibility-hero h2,
body[data-page="contact"] #contact .contact-page-hero h2 {
  max-width: 860px;
  margin: 0;
  color: #10243d;
  font-size: clamp(42px, 4.4vw, 54px);
  line-height: 1.16;
  letter-spacing: 0;
}body[data-page="about"] #about > .section-copy p:not(.eyebrow),
body[data-page="subsidiaries"] #subsidiaries > .subsidiaries-heading p:not(.eyebrow),
body[data-page="services"] #services .business-modern-hero p:not(.eyebrow),
body[data-page="bluewhale"] #bluewhale > .bluewhale-hero p:not(.eyebrow),
body[data-page="cases"] #cases > .industry-cases-hero p:not(.eyebrow),
body[data-page="news-responsibility"] #news-responsibility > .news-responsibility-hero p:not(.eyebrow),
body[data-page="contact"] #contact .contact-page-hero p:not(.section-eyebrow) {
  max-width: var(--inner-readable);
  margin: 18px 0 0;
  color: #43566a;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.78;
}body[data-page="about"] #about .about-panel,
body[data-page="subsidiaries"] #subsidiaries > .subsidiary-timeline,
body[data-page="services"] #services .business-modern-list,
body[data-page="services"] #services .business-modern-details,
body[data-page="bluewhale"] #bluewhale > .bluewhale-grid,
body[data-page="bluewhale"] #bluewhale > .system-capabilities,
body[data-page="bluewhale"] #bluewhale > .bluewhale-flow,
body[data-page="cases"] #cases > .industry-case-overview,
body[data-page="cases"] #cases > .industry-case-grid,
body[data-page="cases"] #cases > .industry-case-cta,
body[data-page="news-responsibility"] #news-responsibility > .news-responsibility-block,
body[data-page="contact"] #contact .contact-page-shell {
  width: var(--inner-container);
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}body[data-page="about"] #about .about-panel,
body[data-page="subsidiaries"] #subsidiaries > .subsidiary-timeline,
body[data-page="services"] #services .business-modern-list,
body[data-page="bluewhale"] #bluewhale > .bluewhale-grid,
body[data-page="bluewhale"] #bluewhale > .system-capabilities,
body[data-page="cases"] #cases > .industry-case-overview,
body[data-page="cases"] #cases > .industry-case-grid,
body[data-page="news-responsibility"] #news-responsibility > .news-responsibility-block,
body[data-page="contact"] #contact .contact-main-section,
body[data-page="contact"] #contact .contact-inquiry-band {
  padding-top: var(--inner-section-pad);
  padding-bottom: var(--inner-section-pad);
}body[data-page="services"] #services .business-modern-shell {
  width: 100%;
  max-width: none;
}body[data-page="services"] #services .business-modern-list {
  display: grid;
  gap: clamp(54px, 5vw, 74px);
}body[data-page="services"] #services .business-modern-list.is-hidden {
  display: none;
}body[data-page="services"] #services .business-metrics-strip,
body[data-page="services"] #services .business-core-heading,
body[data-page="services"] #services .business-modern-grid,
body[data-page="services"] #services .business-why,
body[data-page="services"] #services .business-service-detail,
body[data-page="services"] #services .business-transport-section,
body[data-page="services"] #services .business-final-cta {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}body[data-page="services"] #services .business-modern-details {
  max-width: none;
}body[data-page="services"] #services .business-service-detail,
body[data-page="services"] #services .business-transport-section,
body[data-page="services"] #services .business-final-cta {
  width: var(--inner-container);
  padding-top: var(--inner-section-pad);
  padding-bottom: var(--inner-section-pad);
}body[data-page="bluewhale"] #bluewhale > .bluewhale-hero {
  display: grid !important;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  align-items: center;
  column-gap: clamp(36px, 5vw, 72px);
}body[data-page="bluewhale"] #bluewhale > .bluewhale-hero > div:first-child {
  max-width: 820px;
}body[data-page="bluewhale"] #bluewhale .system-window,
body[data-page="bluewhale"] #bluewhale .bluewhale-hero img {
  max-width: 100%;
}body[data-page="cases"] #cases > .industry-case-overview,
body[data-page="news-responsibility"] #news-responsibility > .news-responsibility-block:nth-of-type(odd),
body[data-page="contact"] #contact .contact-inquiry-band,
body[data-page="bluewhale"] #bluewhale > .system-capabilities {
  background: #f8fbff;
}body[data-page="cases"] #cases > .industry-case-overview,
body[data-page="contact"] #contact .contact-inquiry-band {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}body[data-page="cases"] #cases > .industry-case-grid,
body[data-page="news-responsibility"] #news-responsibility .news-responsibility-card-grid,
body[data-page="bluewhale"] #bluewhale > .bluewhale-grid {
  gap: clamp(18px, 2vw, 24px);
}body[data-page="cases"] #cases .industry-case-card,
body[data-page="news-responsibility"] #news-responsibility .news-responsibility-card,
body[data-page="bluewhale"] #bluewhale .bluewhale-card,
body[data-page="services"] #services .business-modern-card,
body[data-page="services"] #services .business-scenario-card,
body[data-page="services"] #services .business-detail-card,
body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-detail,
body[data-page="contact"] #contact .contact-main-section {
  border: 1px solid rgba(15, 23, 42, 0.075);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}body[data-page="cases"] #cases .industry-case-card:hover,
body[data-page="news-responsibility"] #news-responsibility .news-responsibility-card:hover,
body[data-page="bluewhale"] #bluewhale .bluewhale-card:hover,
body[data-page="services"] #services .business-modern-card:hover,
body[data-page="services"] #services .business-scenario-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
}body[data-page="about"] #about .company-intro,
body[data-page="about"] #about .company-stat-grid,
body[data-page="about"] #about .company-principle-grid,
body[data-page="about"] #about .value-grid {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}body[data-page="about"] #about .company-stat-grid article {
  border: 0;
  border-right: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}body[data-page="about"] #about .company-stat-grid article:last-child {
  border-right: 0;
}body[data-page="subsidiaries"] #subsidiaries .subsidiaries-heading {
  min-height: 0;
}body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline {
  padding-top: var(--inner-section-pad-sm);
}body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-detail {
  padding: clamp(28px, 4vw, 44px);
}/* Subsidiaries page cleanup: remove the decorative wash behind the intro copy only. */
body[data-page="subsidiaries"] #subsidiaries.subsidiaries-section {
  background: #ffffff;
}body[data-page="subsidiaries"] #subsidiaries > .subsidiaries-heading {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}body[data-page="news-responsibility"] #news-responsibility .news-responsibility-hero,
body[data-page="news-responsibility"] #news-responsibility .news-responsibility-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}body[data-page="news-responsibility"] #news-responsibility .news-responsibility-heading {
  width: 100%;
  max-width: 820px;
  margin-left: 0;
}body[data-page="news-responsibility"] #news-responsibility .news-responsibility-heading p:not(.eyebrow) {
  margin-left: 0;
}body[data-page="contact"] #contact .contact-page-shell {
  max-width: none;
}body[data-page="contact"] #contact .contact-page-hero,
body[data-page="contact"] #contact .contact-main-section,
body[data-page="contact"] #contact .contact-inquiry-band {
  width: var(--inner-container);
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}body[data-page="contact"] #contact .contact-main-section {
  padding: clamp(34px, 4vw, 48px) 0;
  border: 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0;
  box-shadow: none;
}body[data-page="contact"] #contact .contact-inquiry-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(34px, 4vw, 46px) clamp(26px, 4vw, 46px);
  border-radius: 18px;
}body[data-page="about"] #about.about-profile-state .about-panel,
body[data-page="about"] #about.about-profile-state .about-subpage[data-about-panel="intro"].active {
  width: 100%;
  max-width: none;
}body[data-page="about"] #about.about-profile-state .company-intro {
  width: var(--inner-wide);
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-top: calc(var(--inner-hero-pad) + 48px);
  padding-bottom: var(--inner-section-pad);
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: clamp(30px, 4vw, 56px);
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.96), rgba(255, 255, 255, 0));
}body[data-page="about"] #about.about-profile-state .company-intro-media,
body[data-page="about"] #about.about-profile-state .company-intro-media img,
body[data-page="about"] #about.about-profile-state .company-intro-content {
  min-height: clamp(460px, 46vw, 620px);
}body[data-page="about"] #about.about-profile-state .company-intro-content {
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}body[data-page="about"] #about .about-section-nav {
  position: fixed;
  top: 78px;
  left: 0;
  right: 0;
  z-index: 79;
  display: flex;
  justify-content: flex-start;
  gap: clamp(34px, 5.4vw, 78px);
  width: 100%;
  margin: 0;
  padding: 28px clamp(44px, 3.4vw, 68px) 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}body[data-page="about"] #about .about-section-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 2px 16px;
  color: #10243d;
  font-size: clamp(17px, 1.25vw, 21px);
  font-weight: 820;
  line-height: 1;
  white-space: nowrap;
}body[data-page="about"] #about .about-section-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #0072ce;
  transform: translateX(-50%);
  transition: width 180ms ease;
}body[data-page="about"] #about .about-section-nav a:hover,
body[data-page="about"] #about .about-section-nav a:focus-visible,
body[data-page="about"] #about .about-section-nav a.is-active {
  color: #0072ce;
}body[data-page="about"] #about .about-section-nav a:hover::after,
body[data-page="about"] #about .about-section-nav a:focus-visible::after,
body[data-page="about"] #about .about-section-nav a.is-active::after {
  width: 100%;
}body[data-page="about"] #about #about-company,
body[data-page="about"] #about #about-team,
body[data-page="about"] #about #honors,
body[data-page="about"] #about #about-philosophy {
  scroll-margin-top: 184px;
}body[data-page="about"] #about.about-profile-state .company-intro-heading {
  display: block;
}body[data-page="about"] #about.about-profile-state .company-intro-heading h3 {
  margin: 0;
}body[data-page="about"] #about.about-profile-state .company-intro-content .company-intro-heading {
  width: 100%;
  margin-top: -26px;
  margin-bottom: 34px;
  text-align: center;
}body[data-page="about"] #about.about-profile-state .company-intro-content .company-intro-heading h3 {
  max-width: none;
  margin: 0 auto;
}.jiujie-quote-advisor {
  top: 50%;
  right: max(22px, env(safe-area-inset-right));
  bottom: auto;
  transform: translateY(-50%);
  transform-origin: right center;
}@media (max-width: 1024px) {.jiujie-quote-advisor {
    top: 50%;
    right: 10px;
    bottom: auto;
    transform: translateY(-50%) scale(0.86);
    transform-origin: right center;
  }
}@media (max-width: 768px) {.jiujie-quote-advisor {
    top: 56%;
    right: 10px;
    bottom: auto;
    transform: translateY(-50%) scale(0.86);
  }
}body[data-page="home"] #home .home-services-section {
  gap: 24px;
  padding-top: clamp(64px, 7vw, 92px);
  padding-bottom: clamp(64px, 7vw, 92px);
  background: #ffffff;
}body[data-page="home"] #home .home-services-section::before,
body[data-page="home"] #home .home-service-flow::before,
body[data-page="home"] #home .home-service-flow-step::after,
body[data-page="home"] #home .home-service-flow-step:not(:last-child)::after {
  display: none;
}body[data-page="home"] #home .home-services-heading {
  width: min(1180px, calc(100% - 48px));
  max-width: 1180px;
  margin: 0 auto;
  text-align: left;
}body[data-page="home"] #home .home-services-heading .eyebrow {
  margin: 0 0 8px;
  color: #185fa5;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: none;
}body[data-page="home"] #home .home-services-heading h2 {
  margin: 0;
  color: #042c53;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 500;
}body[data-page="home"] #home .home-services-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 12px 0 0;
  color: #53677d;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
}/* Home services heading: match the following industry section heading treatment. */
body[data-page="home"] #home .home-services-heading {
  max-width: 820px;
  text-align: center;
  margin-bottom: clamp(8px, 1.4vw, 18px);
}body[data-page="home"] #home .home-services-heading .eyebrow {
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}body[data-page="home"] #home .home-services-heading h2 {
  color: var(--site-title-color);
  font-size: clamp(34px, 3vw, 42px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0;
}body[data-page="home"] #home .home-services-heading p:not(.eyebrow) {
  max-width: 780px;
  margin: 12px auto 0;
  color: #43566a;
  font-size: var(--site-text-size);
  line-height: 1.76;
}body[data-page="home"] #home .home-service-flow {
  width: min(1180px, calc(100% - 48px));
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  border-radius: 0;
  background: transparent;
}body[data-page="home"] #home .home-service-flow-step {
  min-height: 172px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  align-content: start;
  align-items: start;
  justify-content: stretch;
  justify-items: start;
  gap: 10px 14px;
  padding: 22px;
  border: 1px solid #d7e5f4;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: none;
  color: #0c447c;
  text-align: left;
  outline: none;
}body[data-page="home"] #home .home-service-flow-icon {
  grid-row: 1 / span 2;
  width: 40px;
  height: 40px;
  border: 1px solid #d7e5f4;
  border-radius: 10px;
  background: #e6f1fb;
  box-shadow: none;
  color: #0c447c;
}body[data-page="home"] #home .home-service-flow-icon svg {
  width: 22px;
  height: 22px;
}body[data-page="home"] #home .home-service-flow-icon path {
  stroke-width: 2;
}body[data-page="home"] #home .home-service-flow-step h3 {
  grid-column: 2;
  margin: 0;
  color: #042c53;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
}body[data-page="home"] #home .home-service-flow-step p {
  grid-column: 2;
  max-width: none;
  margin: 0;
  color: #53677d;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 400;
}body[data-page="home"] #home .home-service-flow-step:hover,
body[data-page="home"] #home .home-service-flow-step:focus-visible {
  border-color: #185fa5;
}body[data-page="home"] #home .home-service-flow-step:focus-visible {
  box-shadow: 0 0 0 3px rgba(24, 95, 165, 0.16);
}@media (prefers-reduced-motion: no-preference) {body[data-page="home"] #home .home-service-flow-step {
    transition: border-color 160ms ease, box-shadow 160ms ease;
  }
}@media (max-width: 1023px) {body[data-page="home"] #home .home-service-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}@media (max-width: 639px) {body[data-page="home"] #home .home-services-heading,
body[data-page="home"] #home .home-service-flow {
    width: calc(100% - 40px);
  }body[data-page="home"] #home .home-service-flow {
    grid-template-columns: 1fr;
    gap: 14px;
  }body[data-page="home"] #home .home-service-flow-step {
    min-height: 0;
    padding: 20px;
  }
}body[data-page="about"] #honors.company-honors-section {
  padding-top: clamp(72px, 7vw, 96px);
  padding-bottom: clamp(72px, 7vw, 96px);
  background: #ffffff;
}body[data-page="about"] #honors .honor-showcase {
  width: min(1180px, calc(100% - 48px));
  max-width: 1180px;
  gap: 24px;
}body[data-page="about"] #honors .honor-overview.honors-hero {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 0 18px;
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  align-items: end;
  gap: 24px;
  border: 0;
  border-bottom: 2px solid #185fa5;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}body[data-page="about"] #honors .honor-overview.honors-hero .honor-eyebrow {
  display: block;
  margin: 0 0 8px;
  color: #185fa5;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: none;
}body[data-page="about"] #honors .honor-overview.honors-hero h3 {
  margin: 0;
  color: #042c53;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 500;
}body[data-page="about"] #honors .honor-overview.honors-hero p {
  max-width: 680px;
  margin: 0;
  justify-self: end;
  color: #53677d;
  font-size: 13px;
  line-height: 1.75;
  font-weight: 400;
}body[data-page="about"] #honors .honor-stat-grid,
body[data-page="about"] #honors .honor-certificate-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}body[data-page="about"] #honors .honor-stat-card {
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
  border: 1px solid #d7e5f4;
  border-radius: 12px;
  background: #ffffff;
  outline: none;
}body[data-page="about"] #honors .honor-stat-card-primary {
  border-color: #185fa5;
  background: linear-gradient(135deg, #0c447c, #185fa5);
}body[data-page="about"] #honors .honor-stat-card strong {
  color: #0c447c;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 500;
}body[data-page="about"] #honors .honor-stat-card span {
  color: #53677d;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 400;
}body[data-page="about"] #honors .honor-stat-card-primary strong,
body[data-page="about"] #honors .honor-stat-card-primary span {
  color: #ffffff;
}body[data-page="about"] #honors .honor-certificate-card.honor-image-link {
  width: 100%;
  min-height: 0;
  display: block;
  margin: 0;
  padding: 0;
  border: 1px solid #d7e5f4;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: none;
  color: inherit;
  text-decoration: none;
  outline: none;
  overflow: hidden;
}body[data-page="about"] #honors .honor-certificate-card.honor-image-link::after {
  display: none;
}body[data-page="about"] #honors .honor-certificate-card figure {
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr;
}body[data-page="about"] #honors .honor-certificate-image {
  aspect-ratio: 1.4 / 1;
  display: grid;
  place-items: center;
  padding: 14px;
  background: #e6f1fb;
  border-bottom: 1px solid #d7e5f4;
}body[data-page="about"] #honors .honor-certificate-image img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  transform: none;
}body[data-page="about"] #honors .honor-certificate-card figcaption {
  display: grid;
  gap: 6px;
  padding: 14px 16px 16px;
}body[data-page="about"] #honors .honor-certificate-card figcaption strong {
  margin: 0;
  color: #042c53;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
}body[data-page="about"] #honors .honor-certificate-card figcaption span {
  color: #53677d;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 400;
}body[data-page="about"] #honors .honor-stat-card:hover,
body[data-page="about"] #honors .honor-stat-card:focus-visible,
body[data-page="about"] #honors .honor-certificate-card.honor-image-link:hover,
body[data-page="about"] #honors .honor-certificate-card.honor-image-link:focus-visible {
  border-color: #185fa5;
  transform: none;
}body[data-page="about"] #honors .honor-stat-card:focus-visible,
body[data-page="about"] #honors .honor-certificate-card.honor-image-link:focus-visible {
  box-shadow: 0 0 0 3px rgba(24, 95, 165, 0.16);
}@media (prefers-reduced-motion: no-preference) {body[data-page="about"] #honors .honor-stat-card,
body[data-page="about"] #honors .honor-certificate-card.honor-image-link {
    transition: border-color 160ms ease, box-shadow 160ms ease;
  }
}@media (max-width: 1023px) {body[data-page="about"] #honors .honor-showcase {
    width: calc(100% - 48px);
  }body[data-page="about"] #honors .honor-overview.honors-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }body[data-page="about"] #honors .honor-overview.honors-hero p {
    justify-self: start;
  }body[data-page="about"] #honors .honor-stat-grid,
body[data-page="about"] #honors .honor-certificate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}@media (max-width: 639px) {body[data-page="about"] #honors.company-honors-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }body[data-page="about"] #honors .honor-showcase {
    width: calc(100% - 40px);
  }body[data-page="about"] #honors .honor-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }body[data-page="about"] #honors .honor-certificate-grid {
    grid-template-columns: 1fr;
  }body[data-page="about"] #honors .honor-stat-card {
    min-height: 96px;
    padding: 16px;
  }body[data-page="about"] #honors .honor-stat-card strong {
    font-size: 22px;
  }
}body[data-page="services"] #services .business-modern-list {
  gap: 34px;
}body[data-page="services"] #services .business-why {
  display: none;
}body[data-page="services"] #services .business-core-heading,
body[data-page="services"] #services .business-modern-grid {
  width: min(1180px, calc(100% - 48px));
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}body[data-page="services"] #services .business-core-heading {
  padding: clamp(70px, 7vw, 98px) 0 14px;
  text-align: center;
}body[data-page="services"] #services .business-core-heading .eyebrow {
  margin: 0 0 12px;
  color: #185fa5;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: none;
}body[data-page="services"] #services .business-core-heading h3 {
  margin: 0;
  color: #042c53;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.22;
  font-weight: 500;
}body[data-page="services"] #services .business-core-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px auto 0;
  color: #53677d;
  font-size: 15px;
  line-height: 1.85;
  font-weight: 400;
}body[data-page="services"] #services .business-modern-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding: 0 0 clamp(76px, 7vw, 104px);
}body[data-page="services"] #services .business-modern-card {
  min-height: 360px;
  display: block;
  overflow: hidden;
  border: 1px solid #d7e5f4;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: none;
  color: inherit;
  text-decoration: none;
  outline: none;
  transform: none;
}body[data-page="services"] #services .business-modern-card-body {
  min-height: 360px;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  align-content: start;
  gap: 16px;
  padding: 28px;
}body[data-page="services"] #services .business-modern-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}body[data-page="services"] #services .business-modern-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  background: #e6f1fb;
  color: #185fa5;
  box-shadow: none;
}body[data-page="services"] #services .business-modern-icon svg {
  width: 28px;
  height: 28px;
}body[data-page="services"] #services .business-modern-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}body[data-page="services"] #services .business-modern-number {
  color: rgba(24, 95, 165, 0.22);
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
}body[data-page="services"] #services .business-modern-card h3 {
  margin: 0;
  color: #042c53;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
}body[data-page="services"] #services .business-modern-card p {
  margin: 0;
  color: #53677d;
  font-size: 13px;
  line-height: 1.8;
  font-weight: 400;
}body[data-page="services"] #services .business-modern-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}body[data-page="services"] #services .business-modern-tags span {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 4px 10px;
  border: 0;
  border-radius: 999px;
  background: #e6f1fb;
  color: #0c447c;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
}body[data-page="services"] #services .business-modern-card em {
  width: 100%;
  max-width: none;
  margin-top: 2px;
  padding-top: 18px;
  border-top: 1px solid #d7e5f4;
  color: #185fa5;
  font-size: 14px;
  line-height: 1.4;
  font-style: normal;
  font-weight: 500;
  background: transparent;
  box-shadow: none;
}body[data-page="services"] #services .business-modern-card:hover,
body[data-page="services"] #services .business-modern-card:focus-visible {
  border-color: #185fa5;
  transform: none;
  box-shadow: none;
}body[data-page="services"] #services .business-modern-card:focus-visible {
  box-shadow: 0 0 0 3px rgba(24, 95, 165, 0.16);
}@media (prefers-reduced-motion: no-preference) {body[data-page="services"] #services .business-modern-card {
    transition: border-color 160ms ease, box-shadow 160ms ease;
  }
}@media (max-width: 1023px) {body[data-page="services"] #services .business-modern-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}@media (max-width: 639px) {body[data-page="services"] #services .business-core-heading,
body[data-page="services"] #services .business-modern-grid {
    width: calc(100% - 40px);
  }body[data-page="services"] #services .business-modern-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }body[data-page="services"] #services .business-modern-card,
body[data-page="services"] #services .business-modern-card-body {
    min-height: 0;
  }body[data-page="services"] #services .business-modern-card-body {
    padding: 24px;
  }
}body[data-page="services"] #services .business-core-heading,
body[data-page="services"] #services .business-modern-grid {
  width: var(--site-container);
  max-width: var(--site-container-width);
}body[data-page="services"] #services .business-core-heading {
  padding-top: var(--site-section-space);
  padding-bottom: 20px;
}body[data-page="services"] #services .business-core-heading .eyebrow,
body[data-page="services"] #services .business-core-heading h3,
body[data-page="services"] #services .business-core-heading p,
body[data-page="services"] #services .business-modern-card,
body[data-page="services"] #services .business-modern-card h3,
body[data-page="services"] #services .business-modern-card p,
body[data-page="services"] #services .business-modern-tags span,
body[data-page="services"] #services .business-modern-card em {
  font-family: inherit;
  letter-spacing: 0;
}body[data-page="services"] #services .business-core-heading .eyebrow {
  color: var(--blue);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.18em;
}body[data-page="services"] #services .business-core-heading h3 {
  color: var(--site-title-color);
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.16;
  font-weight: 500;
}body[data-page="services"] #services .business-core-heading p:not(.eyebrow) {
  max-width: 820px;
  color: var(--site-copy-color);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.86;
  font-weight: 400;
}body[data-page="services"] #services .business-modern-grid {
  gap: 24px;
}body[data-page="services"] #services .business-modern-card {
  min-height: 410px;
}body[data-page="services"] #services .business-modern-card-body {
  min-height: 410px;
  gap: 18px;
  padding: clamp(26px, 2.6vw, 34px);
}body[data-page="services"] #services .business-modern-card h3 {
  color: var(--site-title-color);
  font-size: clamp(20px, 1.45vw, 24px);
  line-height: 1.38;
  font-weight: 500;
}body[data-page="services"] #services .business-modern-card p {
  color: var(--site-copy-color);
  font-size: var(--site-text-size);
  line-height: 1.78;
  font-weight: 400;
}body[data-page="services"] #services .business-modern-tags span {
  min-height: 30px;
  padding: 5px 12px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
}body[data-page="services"] #services .business-modern-card em {
  padding-top: 20px;
  color: var(--blue);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
}@media (max-width: 639px) {body[data-page="services"] #services .business-core-heading,
body[data-page="services"] #services .business-modern-grid {
    width: calc(100% - 40px);
  }body[data-page="services"] #services .business-core-heading h3 {
    font-size: clamp(32px, 9vw, 42px);
  }body[data-page="services"] #services .business-modern-card,
body[data-page="services"] #services .business-modern-card-body {
    min-height: 0;
  }
}/* Services page cleanup: remove the pale decorative wash behind the intro and cards. */
body[data-page="services"] #services.services-section,
body[data-page="services"] #services.business-modern-section {
  background: #ffffff;
}body[data-page="services"] #services .business-modern-shell,
body[data-page="services"] #services .business-modern-list,
body[data-page="services"] #services .business-core-heading,
body[data-page="services"] #services .business-modern-grid {
  background: transparent;
  border: 0;
  box-shadow: none;
}/* Services card grid repair: 4 x 2 desktop layout,
lighter cards,
real inline icons. */
body[data-page="services"] #services .business-modern-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  width: min(1320px, calc(100% - 32px));
  max-width: 1320px;
  gap: 18px;
  padding-bottom: clamp(72px, 6vw, 96px);
}body[data-page="services"] #services .business-modern-card {
  height: 100%;
  min-height: 0;
  display: flex;
}body[data-page="services"] #services .business-modern-card-body {
  width: 100%;
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}body[data-page="services"] #services .business-modern-card-top {
  align-items: flex-start;
}body[data-page="services"] #services .business-modern-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
}body[data-page="services"] #services .business-modern-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}body[data-page="services"] #services .business-modern-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}body[data-page="services"] #services .business-modern-number {
  font-size: 22px;
}body[data-page="services"] #services .business-modern-card h3 {
  white-space: nowrap;
  font-size: clamp(17px, 1.16vw, 20px);
  line-height: 1.35;
}body[data-page="services"] #services .business-modern-card p {
  font-size: 14px;
  line-height: 1.7;
}body[data-page="services"] #services .business-modern-tags {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 6px;
}body[data-page="services"] #services .business-modern-tags span {
  flex: 0 0 auto;
  min-height: 28px;
  padding: 4px 8px;
  white-space: nowrap;
  font-size: 11.5px;
}body[data-page="services"] #services .business-modern-card em {
  margin-top: auto;
  padding-top: 16px;
  font-size: 14px;
}/* Match the services page main title to the subsidiaries page title treatment. */
body[data-page="services"] #services .business-core-heading h3 {
  font-family: inherit;
  color: #0b2341;
  font-size: clamp(42px, 4.2vw, 64px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}body[data-page="services"] #services .business-core-heading p:not(.eyebrow) {
  font-family: inherit;
  color: #53677d;
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.86;
  font-weight: 400;
  letter-spacing: 0;
}@media (max-width: 1023px) {body[data-page="services"] #services .business-modern-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: var(--site-container);
    max-width: var(--site-container-width);
    gap: 24px;
  }body[data-page="services"] #services .business-modern-tags {
    flex-wrap: wrap;
    gap: 8px;
  }body[data-page="services"] #services .business-modern-tags span {
    padding: 5px 12px;
    font-size: 14px;
  }
}@media (max-width: 639px) {body[data-page="services"] #services .business-modern-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }body[data-page="services"] #services .business-modern-card h3 {
    white-space: normal;
  }
}body[data-page="about"] #about.about-page.about-profile-state #about-philosophy.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  width: min(1280px, calc(100% - clamp(48px, 8vw, 96px)));
  max-width: 1280px;
  margin: clamp(56px, 6vw, 84px) auto var(--inner-section-pad);
}body[data-page="about"] #about.about-profile-state .company-stat-grid--hero {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}body[data-page="bluewhale"] #bluewhale > .bluewhale-hero {
  padding-top: calc(var(--inner-hero-pad) + 36px);
}body[data-page="bluewhale"] #bluewhale .bluewhale-hero .system-window {
  max-height: 520px;
  overflow: hidden;
}/* Industry cases: solution switcher inspired by supply-chain scenario pages. */
body[data-page="cases"] #cases .industry-case-overview,
body[data-page="cases"] #cases .industry-case-grid {
  display: none;
}body[data-page="cases"] #cases .industry-solution-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.45fr);
  align-items: center;
  gap: clamp(34px, 5vw, 84px);
  width: min(1440px, calc(100% - clamp(48px, 8vw, 96px)));
  min-height: clamp(560px, 48vw, 690px);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 92px) clamp(46px, 6vw, 82px);
  overflow: hidden;
  color: #fff;
  background: #082848;
  box-shadow: 0 26px 80px rgba(8, 40, 72, 0.16);
}body[data-page="cases"] #cases .industry-solution-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0, 86, 155, 0.94) 0%, rgba(0, 114, 206, 0.78) 42%, rgba(0, 114, 206, 0.18) 100%),
    var(--case-bg) center / cover no-repeat;
  transition: background-image 240ms ease;
}body[data-page="cases"] #cases .industry-solution-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 25, 46, 0.16), rgba(5, 25, 46, 0.34)),
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.2), transparent 32%);
}body[data-page="cases"] #cases .industry-solution-nav,
body[data-page="cases"] #cases .industry-solution-panels {
  position: relative;
  z-index: 2;
}body[data-page="cases"] #cases .industry-solution-nav {
  display: grid;
  align-content: center;
  gap: 10px;
  min-width: 0;
}body[data-page="cases"] #cases .industry-solution-nav button {
  width: 100%;
  min-height: 54px;
  padding: 13px 22px;
  border: 0;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  font: inherit;
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 750;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}body[data-page="cases"] #cases .industry-solution-nav button:hover,
body[data-page="cases"] #cases .industry-solution-nav button:focus-visible,
body[data-page="cases"] #cases .industry-solution-nav button.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(4px);
}body[data-page="cases"] #cases .industry-solution-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content !important;
  min-height: 0 !important;
  margin-top: 22px;
  padding: 0 !important;
  color: #fff !important;
  background: transparent !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}body[data-page="cases"] #cases .industry-solution-more::before {
  content: "";
  width: 34px;
  height: 34px;
  background:
    linear-gradient(#0072ce, #0072ce) 50% 50% / 10px 2px no-repeat,
    linear-gradient(#0072ce, #0072ce) 50% 50% / 2px 10px no-repeat,
    #fff;
}body[data-page="cases"] #cases .industry-solution-panels {
  min-width: 0;
}body[data-page="cases"] #cases .industry-solution-panel {
  display: none;
  position: relative;
  min-height: clamp(380px, 35vw, 480px);
  padding: clamp(34px, 5vw, 58px);
  color: #26384a;
  background: rgba(242, 249, 255, 0.95);
  box-shadow: 0 22px 70px rgba(5, 25, 46, 0.18);
}body[data-page="cases"] #cases .industry-solution-panel.is-active {
  display: grid;
  align-content: center;
  gap: 24px;
  animation: industryPanelIn 220ms ease-out;
}

@keyframes industryPanelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}body[data-page="cases"] #cases .industry-solution-panel .industry-case-number {
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(0, 114, 206, 0.15);
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 900;
  line-height: 1;
}body[data-page="cases"] #cases .industry-solution-panel h3 {
  margin: 0;
  color: #10243d;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.18;
}body[data-page="cases"] #cases .industry-solution-panel h4 {
  margin: 0 0 12px;
  color: #10243d;
  font-size: 21px;
  line-height: 1.25;
}body[data-page="cases"] #cases .industry-solution-panel p {
  margin: 0;
  color: #53677d;
  font-size: clamp(15.5px, 1.12vw, 17px);
  line-height: 1.86;
}body[data-page="cases"] #cases .industry-solution-panel section + section {
  padding-top: 22px;
  border-top: 1px solid rgba(0, 114, 206, 0.13);
}body[data-page="cases"] #cases .industry-solution-panel .industry-case-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}body[data-page="cases"] #cases .industry-solution-panel .industry-case-tags em {
  position: relative;
  padding-left: 14px;
  color: #526170;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: clamp(15px, 1.05vw, 17px);
  font-style: normal;
  font-weight: 650;
}body[data-page="cases"] #cases .industry-solution-panel .industry-case-tags em::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 5px;
  height: 5px;
  background: #0072ce;
}body[data-page="cases"] #cases .industry-solution-panel .industry-case-clients {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 114, 206, 0.13);
}body[data-page="cases"] #cases .industry-solution-panel .industry-case-clients strong {
  color: #10243d;
}@media (max-width: 980px) {body[data-page="cases"] #cases .industry-solution-showcase {
    grid-template-columns: 1fr;
    padding: 34px;
  }body[data-page="cases"] #cases .industry-solution-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
  }body[data-page="cases"] #cases .industry-solution-more {
    grid-column: 1 / -1;
  }
}@media (max-width: 640px) {body[data-page="cases"] #cases .industry-solution-showcase {
    width: 100%;
    min-height: 0;
    padding: 26px 20px;
  }body[data-page="cases"] #cases .industry-solution-nav {
    grid-template-columns: 1fr;
  }body[data-page="cases"] #cases .industry-solution-panel {
    min-height: 0;
    padding: 28px 22px;
  }body[data-page="cases"] #cases .industry-solution-panel .industry-case-tags {
    grid-template-columns: 1fr;
  }
}html[lang="en"] body:not([data-page="home"]) .page-section.active h2 {
  word-break: normal;
  overflow-wrap: anywhere;
}@media (max-width: 1024px) {body[data-page="about"] #about,
body[data-page="subsidiaries"] #subsidiaries,
body[data-page="services"] #services,
body[data-page="bluewhale"] #bluewhale,
body[data-page="cases"] #cases,
body[data-page="news-responsibility"] #news-responsibility,
body[data-page="contact"] #contact {
    --inner-container: calc(100% - 56px);
    --inner-wide: calc(100% - 56px);
    --inner-hero-pad: 82px;
    --inner-section-pad: 68px;
    --inner-section-pad-sm: 56px;
  }body[data-page="bluewhale"] #bluewhale > .bluewhale-hero {
    grid-template-columns: 1fr;
  }body[data-page="contact"] #contact .contact-inquiry-band {
    grid-template-columns: 1fr;
  }body[data-page="about"] #about .about-section-nav {
    gap: clamp(24px, 5vw, 52px);
    overflow-x: auto;
    justify-content: flex-start;
    padding-left: 28px;
    padding-right: 28px;
    scrollbar-width: none;
  }body[data-page="about"] #about .about-section-nav::-webkit-scrollbar {
    display: none;
  }
}@media (max-width: 760px) {body[data-page="about"] #about,
body[data-page="subsidiaries"] #subsidiaries,
body[data-page="services"] #services,
body[data-page="bluewhale"] #bluewhale,
body[data-page="cases"] #cases,
body[data-page="news-responsibility"] #news-responsibility,
body[data-page="contact"] #contact {
    --inner-container: calc(100% - 40px);
    --inner-wide: calc(100% - 40px);
    --inner-hero-pad: 62px;
    --inner-section-pad: 54px;
    --inner-section-pad-sm: 46px;
  }body[data-page="about"] #about > .section-copy,
body[data-page="subsidiaries"] #subsidiaries > .subsidiaries-heading,
body[data-page="services"] #services .business-modern-hero,
body[data-page="bluewhale"] #bluewhale > .bluewhale-hero,
body[data-page="cases"] #cases > .industry-cases-hero,
body[data-page="news-responsibility"] #news-responsibility > .news-responsibility-hero,
body[data-page="contact"] #contact .contact-page-hero {
    padding-top: calc(var(--inner-hero-pad) + 40px);
    padding-bottom: var(--inner-section-pad-sm);
  }body[data-page="about"] #about > .section-copy h2,
body[data-page="subsidiaries"] #subsidiaries > .subsidiaries-heading h2,
body[data-page="services"] #services .business-modern-hero h2,
body[data-page="bluewhale"] #bluewhale > .bluewhale-hero h2,
body[data-page="cases"] #cases > .industry-cases-hero h2,
body[data-page="news-responsibility"] #news-responsibility > .news-responsibility-hero h2,
body[data-page="contact"] #contact .contact-page-hero h2 {
    font-size: clamp(30px, 9vw, 38px);
  }body[data-page="about"] #about .about-panel,
body[data-page="subsidiaries"] #subsidiaries > .subsidiary-timeline,
body[data-page="services"] #services .business-modern-list,
body[data-page="services"] #services .business-service-detail,
body[data-page="services"] #services .business-transport-section,
body[data-page="services"] #services .business-final-cta,
body[data-page="bluewhale"] #bluewhale > .bluewhale-grid,
body[data-page="bluewhale"] #bluewhale > .system-capabilities,
body[data-page="bluewhale"] #bluewhale > .bluewhale-flow,
body[data-page="cases"] #cases > .industry-case-overview,
body[data-page="cases"] #cases > .industry-case-grid,
body[data-page="cases"] #cases > .industry-case-cta,
body[data-page="news-responsibility"] #news-responsibility > .news-responsibility-block,
body[data-page="contact"] #contact .contact-page-shell,
body[data-page="contact"] #contact .contact-page-hero,
body[data-page="contact"] #contact .contact-main-section,
body[data-page="contact"] #contact .contact-inquiry-band {
    width: var(--inner-container);
  }body[data-page="contact"] #contact .contact-page-hero,
body[data-page="contact"] #contact .contact-main-section,
body[data-page="contact"] #contact .contact-inquiry-band {
    width: 100%;
  }body[data-page="about"] #about .company-stat-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }body[data-page="about"] #about .company-stat-grid article:last-child {
    border-bottom: 0;
  }body[data-page="about"] #about.about-profile-state .company-intro {
    width: var(--inner-container);
    grid-template-columns: 1fr;
    padding-top: calc(var(--inner-hero-pad) + 40px);
  }body[data-page="about"] #about.about-profile-state .company-intro-media,
body[data-page="about"] #about.about-profile-state .company-intro-media img,
body[data-page="about"] #about.about-profile-state .company-intro-content {
    min-height: 0;
  }
}/* Services page emergency normalization: keep the business hero as a normal horizontal text/media layout. */
body[data-page="services"] #services .business-modern-list > .business-modern-hero {
  width: min(1240px, calc(100% - clamp(48px, 8vw, 96px))) !important;
  max-width: 1240px !important;
  margin: 0 auto !important;
  padding: calc(clamp(88px, 8vw, 112px) + 48px) 0 clamp(64px, 6vw, 86px) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr) !important;
  align-items: center !important;
  gap: clamp(36px, 5vw, 64px) !important;
  text-align: left !important;
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.96), rgba(255, 255, 255, 0)) !important;
}body[data-page="services"] #services .business-modern-hero .business-hero-copy {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 640px !important;
  justify-self: start !important;
  text-align: left !important;
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
  white-space: normal !important;
}body[data-page="services"] #services .business-modern-hero .business-hero-copy .eyebrow,
body[data-page="services"] #services .business-modern-hero .business-hero-copy h2,
body[data-page="services"] #services .business-modern-hero .business-hero-copy h3,
body[data-page="services"] #services .business-modern-hero .business-hero-copy p {
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  max-width: 100% !important;
}body[data-page="services"] #services .business-modern-hero .business-hero-copy h2 {
  margin: 0 0 18px !important;
  font-size: clamp(42px, 4vw, 54px) !important;
  line-height: 1.12 !important;
  letter-spacing: 0 !important;
}body[data-page="services"] #services .business-modern-hero .business-hero-copy h3 {
  max-width: 640px !important;
  margin: 0 0 24px !important;
  font-size: clamp(28px, 2.4vw, 36px) !important;
  line-height: 1.28 !important;
}body[data-page="services"] #services .business-modern-hero .business-hero-copy p:not(.eyebrow) {
  max-width: 640px !important;
  color: #43566a !important;
  font-size: clamp(16px, 1.12vw, 18px) !important;
  line-height: 1.78 !important;
}body[data-page="services"] #services .business-modern-hero .business-hero-media {
  width: 100% !important;
  max-width: 560px !important;
  justify-self: end !important;
  align-self: center !important;
  transform: none !important;
}body[data-page="services"] #services .business-modern-hero .business-hero-media img {
  width: 100% !important;
  max-width: none !important;
  height: clamp(340px, 30vw, 460px) !important;
  object-fit: cover !important;
}@media (max-width: 980px) {body[data-page="services"] #services .business-modern-list > .business-modern-hero {
    grid-template-columns: 1fr !important;
    width: calc(100% - 56px) !important;
    padding-top: 108px !important;
    text-align: left !important;
  }body[data-page="services"] #services .business-modern-hero .business-hero-copy,
body[data-page="services"] #services .business-modern-hero .business-hero-media {
    max-width: 760px !important;
    justify-self: start !important;
  }
}@media (max-width: 760px) {body[data-page="services"] #services .business-modern-list > .business-modern-hero {
    width: calc(100% - 40px) !important;
    padding-top: 102px !important;
    padding-bottom: 52px !important;
  }body[data-page="services"] #services .business-modern-hero .business-hero-copy h2 {
    font-size: clamp(32px, 9vw, 40px) !important;
  }body[data-page="services"] #services .business-modern-hero .business-hero-copy h3 {
    font-size: clamp(22px, 6.5vw, 28px) !important;
  }body[data-page="services"] #services .business-modern-hero .business-hero-media img {
    height: 240px !important;
  }
}/* Home hero restore: use the existing loop video as the opening background. */
body[data-page="home"] #home.home-page {
  background: #fff;
}body[data-page="home"] #home .home-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: clamp(700px, 88svh, 920px);
  padding: clamp(132px, 11vw, 168px) max(48px, calc((100vw - 1280px) / 2 + 48px)) clamp(58px, 7vw, 88px);
  overflow: hidden;
  color: #fff;
  background: #0b233d;
}body[data-page="home"] #home .hero-media {
  position: absolute;
  inset: 0 auto 0 -18vw;
  top: 0;
  right: auto;
  bottom: 0;
  left: -18vw;
  z-index: 1;
  grid-column: 1;
  width: 136vw;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}body[data-page="home"] #home .hero-media::after {
  display: none;
}body[data-page="home"] #home .hero-media img,
body[data-page="home"] #home .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% 45%;
  transform: scale(2.18);
  transform-origin: center center;
}body[data-page="home"] #home .hero-video {
  z-index: 2;
  opacity: 0;
  transition: opacity 700ms ease-out;
}body[data-page="home"] #home .hero-media.is-video-ready .hero-video {
  opacity: 1;
}body[data-page="home"] #home .hero-shade {
  z-index: 2;
  background:
    radial-gradient(circle at 56% 42%, rgba(7, 30, 55, 0.2) 0%, rgba(7, 30, 55, 0.5) 58%, rgba(7, 30, 55, 0.62) 100%),
    linear-gradient(180deg, rgba(5, 21, 39, 0.28) 0%, rgba(5, 21, 39, 0.42) 54%, rgba(5, 21, 39, 0.66) 100%);
}body[data-page="home"] #home .hero-content {
  position: relative;
  z-index: 4;
  grid-column: 1;
  width: min(720px, 100%);
  max-width: 720px;
  margin: 0;
  padding: 0;
  justify-self: start;
  color: #fff;
  text-align: left;
}body[data-page="home"] #home .hero-content .eyebrow {
  color: #9fd6ff;
}body[data-page="home"] #home .hero-content h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 5.4vw, 76px);
  line-height: 1.06;
  letter-spacing: 0;
  text-shadow: 0 18px 42px rgba(0, 18, 38, 0.28);
}html[lang="en"] body[data-page="home"] #home .hero-content h1 {
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.08;
}body[data-page="home"] #home .hero-copy {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 1.36vw, 20px);
  line-height: 1.82;
  text-shadow: 0 12px 30px rgba(0, 18, 38, 0.28);
}body[data-page="home"] #home .hero-actions {
  justify-content: flex-start;
  margin-top: 34px;
}body[data-page="home"] #home .hero-actions .primary-button {
  color: #fff;
  background: #0072ce;
  box-shadow: 0 18px 42px rgba(0, 114, 206, 0.28);
}body[data-page="home"] #home .hero-actions .secondary-button {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  backdrop-filter: blur(10px);
}body[data-page="home"] #home .hero-metrics {
  width: min(1180px, 100%);
  margin-top: clamp(42px, 6vw, 68px);
  padding-top: 0;
  overflow: hidden;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(216, 235, 250, 0.24);
  border-radius: 22px;
  background: rgba(5, 21, 39, 0.24);
  box-shadow: 0 24px 70px rgba(0, 20, 40, 0.18);
  backdrop-filter: blur(16px);
}body[data-page="home"] #home .hero-metrics div {
  min-width: 0;
  padding: 23px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
}body[data-page="home"] #home .hero-metrics div:last-child {
  border-right: 0;
}body[data-page="home"] #home .hero-metrics strong {
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
}body[data-page="home"] #home .hero-metrics span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}@media (max-width: 1180px) {body[data-page="home"] #home .home-hero {
    min-height: auto;
    padding: 124px 32px 70px;
  }body[data-page="home"] #home .hero-content {
    width: min(100%, 760px);
  }
}@media (max-width: 760px) {body[data-page="home"] #home .home-hero {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: 720px;
    padding: 110px 20px 54px;
  }body[data-page="home"] #home .hero-media {
    inset: 0 auto 0 -34vw;
    left: -34vw;
    width: 168vw;
    height: 100%;
  }body[data-page="home"] #home .hero-media img,
body[data-page="home"] #home .hero-video {
    object-position: 100% 45%;
    transform: scale(2.56);
  }body[data-page="home"] #home .hero-shade {
    background:
      radial-gradient(circle at 58% 36%, rgba(7, 30, 55, 0.24) 0%, rgba(7, 30, 55, 0.54) 62%, rgba(7, 30, 55, 0.68) 100%),
      linear-gradient(180deg, rgba(5, 21, 39, 0.36) 0%, rgba(5, 21, 39, 0.48) 54%, rgba(5, 21, 39, 0.74) 100%);
  }body[data-page="home"] #home .hero-content h1 {
    font-size: clamp(34px, 9.4vw, 44px);
  }body[data-page="home"] #home .hero-copy {
    font-size: 15.5px;
    line-height: 1.72;
  }body[data-page="home"] #home .hero-actions .primary-button,
body[data-page="home"] #home .hero-actions .secondary-button {
    width: 100%;
  }body[data-page="home"] #home .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 32px;
  }body[data-page="home"] #home .hero-metrics div {
    padding: 18px 16px;
  }body[data-page="home"] #home .hero-metrics div:nth-child(2) {
    border-right: 0;
  }body[data-page="home"] #home .hero-metrics div:nth-child(3),
body[data-page="home"] #home .hero-metrics div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }
}/* Restore the home opening to the original full-video background composition. */
body[data-page="home"] #home {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  overflow-x: clip !important;
}body[data-page="home"] #home .home-hero {
  --home-hero-xpad: clamp(24px, 6vw, 96px);
  position: relative !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  justify-items: center !important;
  align-content: center !important;
  width: 100vw !important;
  max-width: none !important;
  height: 100svh !important;
  min-height: 720px !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: calc(78px + clamp(24px, 4vh, 48px)) var(--home-hero-xpad) clamp(34px, 5vh, 56px) !important;
  overflow: hidden !important;
  color: #fff !important;
  text-align: center !important;
  background: #071d33 !important;
}body[data-page="home"] #home .hero-media {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: calc(0px - var(--home-hero-xpad)) !important;
  width: calc(100% + var(--home-hero-xpad) + var(--home-hero-xpad)) !important;
  height: 100% !important;
  z-index: 1 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}body[data-page="home"] #home .hero-media img,
body[data-page="home"] #home .hero-video {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: 52% 45% !important;
  transform: scale(1.3) !important;
  transform-origin: center center !important;
}body[data-page="home"] #home .hero-shade {
  z-index: 2 !important;
  background:
    linear-gradient(90deg, rgba(5, 21, 39, 0.58) 0%, rgba(5, 21, 39, 0.48) 42%, rgba(5, 21, 39, 0.38) 100%),
    linear-gradient(180deg, rgba(5, 21, 39, 0.18) 0%, rgba(5, 21, 39, 0.3) 50%, rgba(5, 21, 39, 0.62) 100%) !important;
}body[data-page="home"] #home .hero-content {
  position: relative !important;
  z-index: 4 !important;
  width: min(920px, 100%) !important;
  max-width: 920px !important;
  justify-self: center !important;
  margin: 0 auto !important;
  padding: 0 !important;
  color: #fff !important;
  text-align: center !important;
}body[data-page="home"] #home .hero-content .eyebrow,
body[data-page="home"] #home .hero h1,
body[data-page="home"] #home .hero-copy {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}body[data-page="home"] #home .hero h1 {
  max-width: 920px !important;
  color: #fff !important;
  font-size: clamp(42px, 4.8vw, 64px) !important;
  line-height: 1.12 !important;
}body[data-page="home"] #home .hero-copy {
  max-width: 760px !important;
  color: rgba(255, 255, 255, 0.86) !important;
}body[data-page="home"] #home .hero-actions {
  justify-content: center !important;
}body[data-page="home"] #home .hero-metrics {
  width: min(920px, 100%) !important;
  margin-top: clamp(54px, 7vh, 86px) !important;
  border: 1px solid rgba(216, 235, 250, 0.26) !important;
  border-radius: 18px !important;
  background: rgba(5, 21, 39, 0.34) !important;
  backdrop-filter: blur(12px) !important;
}body[data-page="home"] #home .hero-content .eyebrow,
body[data-page="home"] #home .hero-content h1,
body[data-page="home"] #home .hero-copy,
body[data-page="home"] #home .hero-actions,
body[data-page="home"] #home .hero-metrics div {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}body[data-page="home"] #home .hero-metrics div {
  display: flex !important;
  min-height: 126px !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 20px 22px !important;
}body[data-page="home"] #home .hero-metrics span,
body[data-page="home"] #home .hero-metrics strong {
  margin: 0 !important;
}body[data-page="home"] #home .hero-metrics strong {
  white-space: nowrap !important;
  font-variant-numeric: tabular-nums !important;
}html[lang="en"] body[data-page="home"] #home .hero-metrics div {
  min-height: 132px !important;
  padding: 20px 18px !important;
}html[lang="en"] body[data-page="home"] #home .hero-metrics span {
  min-height: 34px !important;
  max-width: 190px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
}html[lang="en"] body[data-page="home"] #home .hero-metrics strong {
  font-size: clamp(30px, 2.7vw, 40px) !important;
  line-height: 1.08 !important;
}@media (max-width: 760px) {body[data-page="home"] #home .home-hero {
    --home-hero-xpad: 20px;
    min-height: 720px !important;
    padding: 104px var(--home-hero-xpad) 54px !important;
  }body[data-page="home"] #home .hero-media img,
body[data-page="home"] #home .hero-video {
    object-position: 52% 45% !important;
    transform: scale(1.3) !important;
  }body[data-page="home"] #home .hero h1 {
    font-size: clamp(32px, 9vw, 40px) !important;
  }body[data-page="home"] #home .hero-metrics div,
html[lang="en"] body[data-page="home"] #home .hero-metrics div {
    min-height: 112px !important;
    padding: 16px 12px !important;
  }html[lang="en"] body[data-page="home"] #home .hero-metrics span {
    min-height: 0 !important;
    font-size: 12px !important;
  }html[lang="en"] body[data-page="home"] #home .hero-metrics strong {
    font-size: clamp(26px, 7vw, 34px) !important;
  }
}/* About core team module. */
body[data-page="about"] #about .about-core-team-section {
    width: min(1200px, calc(100% - 80px));
    margin: clamp(48px, 6vw, 72px) auto clamp(58px, 6vw, 86px);
}body[data-page="about"] #about.about-page.about-profile-state .about-core-team-section {
    grid-column: 1 / -1;
    grid-row: 4;
    width: 100%;
    max-width: 1200px;
}body[data-page="about"] #about.about-page.about-profile-state #honors.company-honors-section {
    grid-row: 5;
}body[data-page="about"] #about.about-page.about-profile-state #about-philosophy.about-values {
    grid-column: 1 / -1;
    grid-row: 6;
}body[data-page="about"] #about .about-core-team-heading {
  max-width: 820px;
  margin: 0 0 28px;
  text-align: left;
}body[data-page="about"] #about .about-core-team-heading .honor-eyebrow {
  display: block;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}body[data-page="about"] #about .about-core-team-heading h3 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 3.8vw, 56px);
  line-height: 1.1;
  font-weight: 850;
}body[data-page="about"] #about .about-core-team-heading p {
  max-width: 820px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.82;
}body[data-page="about"] #about .about-core-team-feature {
  display: grid;
  margin-bottom: 18px;
}body[data-page="about"] #about .about-core-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}body[data-page="about"] #about .about-core-team-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--card-border);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--card-shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}body[data-page="about"] #about .about-core-team-card:hover {
  border-color: var(--line);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-3px);
}body[data-page="about"] #about .about-core-team-card--lead {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 38px);
}body[data-page="about"] #about .about-core-team-avatar {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: 50%;
  background: var(--soft);
}body[data-page="about"] #about .about-core-team-card--lead .about-core-team-avatar {
  width: 88px;
  height: 88px;
}body[data-page="about"] #about .about-core-team-avatar img {
  width: 68%;
  height: 68%;
  object-fit: contain;
}body[data-page="about"] #about .about-core-team-card-copy {
  display: grid;
  gap: 14px;
}body[data-page="about"] #about .about-core-team-role {
  color: var(--blue);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}body[data-page="about"] #about .about-core-team-card h4 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(21px, 2vw, 26px);
  line-height: 1.3;
}body[data-page="about"] #about .about-core-team-card--lead h4 {
  font-size: clamp(26px, 2.6vw, 34px);
}body[data-page="about"] #about .about-core-team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}body[data-page="about"] #about .about-core-team-tags em {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--soft);
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
}body[data-page="about"] #about .about-core-team-card p {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--card-border);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}@media (max-width: 980px) {body[data-page="about"] #about .about-core-team-section {
    width: calc(100% - 56px);
  }body[data-page="about"] #about .about-core-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}@media (max-width: 680px) {body[data-page="about"] #about .about-core-team-section {
    width: calc(100% - 40px);
    margin-top: 42px;
  }body[data-page="about"] #about .about-core-team-heading h3 {
    font-size: clamp(30px, 8vw, 38px);
  }body[data-page="about"] #about .about-core-team-card--lead,
body[data-page="about"] #about .about-core-team-grid {
    grid-template-columns: 1fr;
  }body[data-page="about"] #about .about-core-team-card--lead {
    width: 100%;
  }
}/* News center: list and article detail system. */
body[data-page="news"] #news.news-page-section {
  display: block;
  width: min(1240px, calc(100% - 80px));
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(96px, 9vw, 132px) 0 clamp(82px, 8vw, 116px);
  background: #fff;
}body[data-page="news"] #news .news-center-hero {
  max-width: 820px;
  margin: 0 0 clamp(42px, 5vw, 64px);
}body[data-page="news"] #news .news-center-hero .eyebrow,
.home-news-preview-grid .news-center-meta span,
.news-center-meta span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}body[data-page="news"] #news .news-center-hero h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 58px);
  line-height: 1.1;
  font-weight: 850;
}body[data-page="news"] #news .news-center-hero p:not(.eyebrow) {
  max-width: 800px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}.news-center-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  margin-bottom: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(38px, 5vw, 58px);
  border-bottom: 1px solid var(--card-border);
}.news-center-featured-media,
.news-center-card-link,
.news-detail-back,
.news-detail-pager a {
  color: inherit;
  text-decoration: none;
}.news-center-featured-media {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: var(--soft);
}.news-center-featured-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 420ms ease;
}.news-center-featured-media:hover img,
.news-center-card-link:hover figure img {
  transform: scale(1.035);
}.news-center-featured-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}.news-center-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}.news-center-meta time {
  color: var(--muted);
  font-weight: 650;
}.news-center-featured-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.3vw, 44px);
  line-height: 1.18;
}.news-center-featured-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}.news-center-featured-copy .secondary-button {
  justify-self: start;
  color: var(--ink);
  border-color: var(--card-border);
  background: #fff;
}.news-center-list,
.home-news-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}.news-center-card,
.home-news-preview-card {
  min-width: 0;
  border-bottom: 1px solid var(--card-border);
}.news-center-card-link {
  display: grid;
  height: 100%;
  gap: 18px;
  padding-bottom: 24px;
}.news-center-card figure,
.home-news-preview-card figure {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: var(--soft);
}.news-center-card figure img,
.home-news-preview-card figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 420ms ease;
}.news-center-card-copy {
  display: grid;
  gap: 11px;
}.news-center-card h3,
.home-news-preview-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(19px, 1.7vw, 23px);
  line-height: 1.35;
  transition: color 180ms ease;
}.news-center-card-link:hover h3 {
  color: var(--blue);
}.news-center-card p,
.home-news-preview-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}.news-center-more {
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}body[data-page="home"] #home .home-honors-section {
  gap: clamp(28px, 4vw, 42px);
}body[data-page="home"] #home .home-honors-section .home-section-heading {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}.home-news-preview-grid {
  width: 100%;
}.home-news-preview-card {
  border: 1px solid var(--card-border);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}.home-news-preview-card:hover {
  border-color: rgba(0, 114, 206, 0.18);
  box-shadow: var(--card-shadow);
  transform: translateY(-2px);
}.home-news-preview-card .news-center-card-link {
  gap: 0;
  padding-bottom: 0;
}.home-news-preview-card .news-center-card-copy {
  padding: 22px;
}.news-detail-page {
  max-width: 1180px;
  margin: 0 auto;
}.news-detail-header {
  max-width: 920px;
  margin: 0 auto clamp(30px, 5vw, 48px);
}.news-detail-back {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--blue);
  font-weight: 800;
}.news-detail-header h2 {
  max-width: 920px;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 1.12;
  font-weight: 850;
}.news-detail-header p {
  max-width: 860px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}.news-detail-cover {
  max-width: 1040px;
  margin: 0 auto clamp(40px, 5vw, 56px);
  overflow: hidden;
  border-radius: 18px;
  background: var(--soft);
}.news-detail-cover img {
  display: block;
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  object-position: center center;
  aspect-ratio: 16 / 9;
}.news-detail-body {
  max-width: 880px;
  margin: 0 auto;
}.news-detail-body p {
  margin: 0 0 26px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.98;
  font-weight: 400;
}.news-detail-body p.news-detail-lede {
  margin-bottom: 30px;
  font-size: 19px;
  line-height: 2;
}.news-detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: clamp(42px, 5vw, 60px) auto;
}.news-detail-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 15px;
  background: var(--soft);
}.news-detail-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center center;
}.news-detail-pager {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1000px;
  margin: clamp(38px, 6vw, 72px) auto;
  padding-top: 28px;
  border-top: 1px solid var(--card-border);
}.news-detail-pager a {
  display: grid;
  gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid var(--card-border);
}.news-detail-pager span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}.news-detail-pager strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.45;
  transition: color 180ms ease;
}.news-detail-pager a:hover strong {
  color: var(--blue);
}.news-detail-related {
  margin-top: clamp(36px, 5vw, 64px);
}.news-detail-related h3 {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 34px);
}.news-center-list--related {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}@media (max-width: 980px) {body[data-page="news"] #news.news-page-section {
    width: calc(100% - 56px);
    padding-top: 92px;
  }.news-center-featured {
    grid-template-columns: 1fr;
  }.news-center-list,
.home-news-preview-grid,
.news-center-list--related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}@media (max-width: 680px) {body[data-page="news"] #news.news-page-section {
    width: calc(100% - 40px);
    padding-top: 74px;
  }.news-center-list,
.home-news-preview-grid,
.news-detail-gallery,
.news-detail-pager,
.news-center-list--related {
    grid-template-columns: 1fr;
  }.news-detail-header h2 {
    font-size: clamp(30px, 9vw, 40px);
  }.news-detail-header p,
.news-detail-body p {
    font-size: 16px;
    line-height: 1.9;
  }.news-detail-body p.news-detail-lede {
    font-size: 16px;
    line-height: 1.9;
  }.news-detail-cover {
    border-radius: 14px;
  }.news-detail-cover img {
    max-height: none;
    aspect-ratio: 4 / 3;
  }.news-detail-gallery {
    gap: 16px;
  }
}/* About team contact list. */
body[data-page="about"] #about .about-team-contacts-section {
  display: block;
}body[data-page="about"] #about .about-team-contact-table {
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}body[data-page="about"] #about .about-team-contact-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(150px, 0.72fr) minmax(260px, 1.25fr);
  gap: 24px;
  align-items: center;
  padding: 20px 26px;
  border-bottom: 1px solid var(--card-border);
  transition: background 180ms ease;
}body[data-page="about"] #about .about-team-contact-row:last-child {
  border-bottom: 0;
}body[data-page="about"] #about .about-team-contact-row:not(.about-team-contact-head):hover {
  background: rgba(0, 114, 206, 0.045);
}body[data-page="about"] #about .about-team-contact-head {
  padding-top: 16px;
  padding-bottom: 16px;
  color: var(--muted);
  background: rgba(0, 114, 206, 0.055);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}body[data-page="about"] #about .about-team-contact-row span,
body[data-page="about"] #about .about-team-contact-row strong,
body[data-page="about"] #about .about-team-contact-row a {
  min-width: 0;
  line-height: 1.45;
}body[data-page="about"] #about .about-team-contact-row span {
  color: var(--ink);
  font-size: 16px;
  font-weight: 760;
}body[data-page="about"] #about .about-team-contact-row strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 850;
}body[data-page="about"] #about .about-team-contact-row a {
  color: var(--blue);
  font-size: 15px;
  font-weight: 760;
  overflow-wrap: anywhere;
  text-decoration: none;
}body[data-page="about"] #about .about-team-contact-row a:hover {
  text-decoration: underline;
}@media (max-width: 760px) {body[data-page="about"] #about .about-team-contact-table {
    display: grid;
    gap: 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }body[data-page="about"] #about .about-team-contact-head {
    display: none;
  }body[data-page="about"] #about .about-team-contact-row {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 18px 18px 16px;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.035);
  }body[data-page="about"] #about .about-team-contact-row span,
body[data-page="about"] #about .about-team-contact-row strong,
body[data-page="about"] #about .about-team-contact-row a {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    font-size: 15px;
  }body[data-page="about"] #about .about-team-contact-row span::before,
body[data-page="about"] #about .about-team-contact-row strong::before,
body[data-page="about"] #about .about-team-contact-row a::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
}/* Final global pale-blue wash cleanup: keep content cards,
remove section-level blue boxes. */
body[data-page="home"] #home .partner-section::before,
body[data-page="home"] #home .home-honors-section::before,
body[data-page="home"] #home .corporate-video-section::before,
body[data-page="home"] #home .home-services-section::before,
body[data-page="home"] #home .home-service-flow::before,
body[data-page="about"] #about.about-profile-state .company-intro::before,
body[data-page="about"] #about.about-profile-state .company-intro-overlay::before,
body[data-page="about"] #about.about-profile-state .company-intro-heading::before,
body[data-page="about"] #about.about-profile-state .company-principle-grid article::before,
body[data-page="about"] #honors.company-honors-section::before,
body[data-page="about"] #honors .honor-showcase::before {
  display: none !important;
}body[data-page="home"] #home .partner-section,
body[data-page="home"] #home .home-featured-cases,
body[data-page="home"] #home .home-news-preview-section,
body[data-page="home"] #home .home-responsibility-section,
body[data-page="home"] #home .home-honors-section,
body[data-page="about"] #about,
body[data-page="about"] #about.about-page,
body[data-page="about"] #about.about-profile-state,
body[data-page="about"] #about .company-intro,
body[data-page="about"] #about .about-panel,
body[data-page="about"] #about .company-principle-grid,
body[data-page="about"] #honors,
body[data-page="about"] #honors.company-honors-section,
body[data-page="cases"] #cases,
body[data-page="cases"] #cases.industry-cases-section,
body[data-page="cases"] #cases .industry-cases-hero,
body[data-page="cases"] #cases .industry-case-overview,
body[data-page="cases"] #cases .industry-case-grid,
body[data-page="cases"] #cases .industry-case-cta,
body[data-page="news"] #news,
body[data-page="news"] #news.news-page-section,
body[data-page="news-responsibility"] #news-responsibility,
body[data-page="news-responsibility"] #news-responsibility.news-responsibility-section,
body[data-page="news-responsibility"] #news-responsibility .news-responsibility-hero,
body[data-page="news-responsibility"] #news-responsibility .news-responsibility-block,
body[data-page="contact"] #contact,
body[data-page="contact"] #contact.contact-conversion-section,
body[data-page="contact"] #contact .contact-page-hero,
body[data-page="contact"] #contact .contact-page-shell,
body[data-page="contact"] #contact .contact-main-section,
body[data-page="contact"] #contact .contact-inquiry-band {
  background: #ffffff !important;
}body[data-page="about"] #about > .section-copy,
body[data-page="cases"] #cases > .industry-cases-hero,
body[data-page="news-responsibility"] #news-responsibility > .news-responsibility-hero,
body[data-page="contact"] #contact .contact-page-hero {
  background: transparent !important;
}/* Subsidiary timeline controls: keep arrows stationary and out of text flow. */
body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-detail {
  padding: clamp(36px, 4.5vw, 56px) clamp(92px, 7vw, 120px) clamp(36px, 4.5vw, 56px) clamp(72px, 6vw, 96px) !important;
  overflow: visible;
}body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-detail:hover {
  transform: none !important;
}body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-content,
body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-copy,
body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-role {
  max-width: 100%;
}body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-arrow {
  top: 50%;
  transform: translateY(-50%) !important;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-arrow:hover,
body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-arrow:focus-visible {
  transform: translateY(-50%) !important;
}body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-arrow--prev {
  left: 24px;
}body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-arrow--next {
  right: 24px;
}@media (max-width: 760px) {body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-detail {
    padding: 76px 22px 28px !important;
  }body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-arrow {
    top: 28px;
    transform: none !important;
  }body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-arrow:hover,
body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-arrow:focus-visible {
    transform: none !important;
  }body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-arrow--prev {
    left: 22px;
  }body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-arrow--next {
    right: 22px;
  }
}/* Quote advisor panel: release the dialog from the centered mascot transform. */
.jiujie-quote-advisor.is-open {
  top: 0;
  right: 0;
  bottom: auto;
  width: 0;
  height: 0;
  transform: none;
}.jiujie-quote-advisor.is-open .jiujie-quote-panel {
  top: clamp(56px, 6vh, 76px);
  right: clamp(24px, 3vw, 44px);
  bottom: auto;
  height: min(900px, calc(100svh - 72px));
  max-height: calc(100svh - 72px);
}.jiujie-quote-advisor.is-open .jiujie-quote-frame-wrap {
  overflow: hidden;
}@media (max-width: 768px) {.jiujie-quote-advisor.is-open .jiujie-quote-panel {
    top: max(14px, env(safe-area-inset-top));
    right: 12px;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 12px;
    width: auto;
    height: auto;
    max-height: none;
  }
}

/* Subsidiaries intro: center the title and copy above the timeline. */
body[data-page="subsidiaries"] #subsidiaries > .subsidiaries-heading {
  width: min(1120px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

body[data-page="subsidiaries"] #subsidiaries > .subsidiaries-heading .eyebrow,
body[data-page="subsidiaries"] #subsidiaries > .subsidiaries-heading h2,
body[data-page="subsidiaries"] #subsidiaries > .subsidiaries-heading p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

body[data-page="subsidiaries"] #subsidiaries > .subsidiaries-heading p:not(.eyebrow) {
  max-width: 920px;
  text-align: center;
}

/* Industry cases intro: center the title and copy above the showcase. */
body[data-page="cases"] #cases > .industry-cases-hero {
  width: min(1120px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

body[data-page="cases"] #cases > .industry-cases-hero .eyebrow,
body[data-page="cases"] #cases > .industry-cases-hero h2,
body[data-page="cases"] #cases > .industry-cases-hero p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

body[data-page="cases"] #cases > .industry-cases-hero p:not(.eyebrow) {
  max-width: 920px;
  text-align: center;
}

/* Contact intro: center the page title and opening copy. */
body[data-page="contact"] #contact .contact-page-hero {
  width: min(1120px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

body[data-page="contact"] #contact .contact-page-hero .section-eyebrow,
body[data-page="contact"] #contact .contact-page-hero h2,
body[data-page="contact"] #contact .contact-page-hero p:not(.section-eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

body[data-page="contact"] #contact .contact-page-hero p:not(.section-eyebrow) {
  max-width: 920px;
  text-align: center;
}

/* Quote advisor entry: keep the mascot parked in the bottom-right corner. */
.jiujie-quote-advisor:not(.is-open) {
  top: auto;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(28px, env(safe-area-inset-bottom));
  transform: none;
  transform-origin: right bottom;
}

@media (max-width: 1024px) {
  .jiujie-quote-advisor:not(.is-open) {
    top: auto;
    right: 10px;
    bottom: 14px;
    transform: scale(0.86);
    transform-origin: right bottom;
  }
}

/* Wide-screen containment: keep content readable on Retina and ultrawide displays. */
:root {
  --wide-content-max: 1280px;
  --wide-section-max: 1200px;
  --wide-readable-max: 920px;
}

@media (min-width: 1280px) {
  body[data-page="home"] #home .home-services-heading,
  body[data-page="home"] #home .home-service-flow,
  body[data-page="home"] #home .home-industry-showcase,
  body[data-page="home"] #home .home-showcase-carousel,
  body[data-page="home"] #home .home-news-grid,
  body[data-page="home"] #home .corporate-video-frame,
  body[data-page="about"] #about > .section-copy,
  body[data-page="about"] #about .company-intro,
  body[data-page="about"] #about .about-panel,
  body[data-page="about"] #about .company-principle-grid,
  body[data-page="about"] #about-philosophy.about-values,
  body[data-page="about"] #honors .honor-showcase,
  body[data-page="services"] #services .business-core-heading,
  body[data-page="services"] #services .business-modern-shell,
  body[data-page="bluewhale"] #bluewhale .bluewhale-hero,
  body[data-page="bluewhale"] #bluewhale .bluewhale-grid,
  body[data-page="bluewhale"] #bluewhale .system-capabilities,
  body[data-page="bluewhale"] #bluewhale .bluewhale-flow,
  body[data-page="cases"] #cases .industry-solution-showcase,
  body[data-page="cases"] #cases .industry-case-overview,
  body[data-page="cases"] #cases .industry-case-grid,
  body[data-page="cases"] #cases .industry-case-cta,
  body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline,
  body[data-page="contact"] #contact .contact-page-shell,
  body[data-page="contact"] #contact .contact-main-section,
  body[data-page="contact"] #contact .contact-inquiry-band,
  body[data-page="news"] #news.news-page-section,
  body[data-page="news-responsibility"] #news-responsibility .news-responsibility-hero,
  body[data-page="news-responsibility"] #news-responsibility .news-responsibility-block {
    width: min(var(--wide-content-max), calc(100% - 96px));
    max-width: var(--wide-content-max);
    margin-right: auto;
    margin-left: auto;
  }

  body[data-page="home"] #home .partner-heading {
    width: min(860px, 100%);
    max-width: 860px;
    margin-right: auto;
    margin-left: auto;
  }

  body[data-page="subsidiaries"] #subsidiaries > .subsidiaries-heading,
  body[data-page="cases"] #cases > .industry-cases-hero,
  body[data-page="contact"] #contact .contact-page-hero {
    width: min(var(--wide-section-max), calc(100% - 96px));
    max-width: var(--wide-section-max);
  }

  body[data-page="subsidiaries"] #subsidiaries > .subsidiaries-heading p:not(.eyebrow),
  body[data-page="cases"] #cases > .industry-cases-hero p:not(.eyebrow),
  body[data-page="contact"] #contact .contact-page-hero p:not(.section-eyebrow) {
    max-width: var(--wide-readable-max);
  }

  body[data-page="home"] #home .home-services-heading h2,
  body[data-page="home"] #home .home-showcase-heading h2,
  body[data-page="home"] #home .corporate-video-heading h2,
  body[data-page="home"] #home .partner-heading h2,
  body[data-page="subsidiaries"] #subsidiaries > .subsidiaries-heading h2,
  body[data-page="cases"] #cases > .industry-cases-hero h2,
  body[data-page="contact"] #contact .contact-page-hero h2,
  body[data-page="services"] #services .business-core-heading h3,
  body[data-page="bluewhale"] #bluewhale .bluewhale-hero h2,
  body[data-page="news"] #news .news-page-hero h2,
  body[data-page="news-responsibility"] #news-responsibility .news-responsibility-hero h2 {
    font-size: clamp(36px, 3.2vw, 52px);
  }

  body[data-page="home"] #home .partner-heading h2 {
    width: auto;
    max-width: none;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
    font-size: clamp(34px, 3vw, 42px);
  }

  body[data-page="cases"] #cases .industry-solution-panel .industry-case-number {
    font-size: clamp(44px, 4.5vw, 64px);
  }

  body[data-page="cases"] #cases .industry-solution-panel h3 {
    font-size: clamp(30px, 2.6vw, 40px);
  }
}

@media (min-width: 1600px) {
  body[data-page="cases"] #cases .industry-solution-showcase,
  body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline,
  body[data-page="services"] #services .business-modern-shell,
  body[data-page="contact"] #contact .contact-page-shell {
    width: min(var(--wide-content-max), calc(100% - 160px));
  }
}

/* Secondary page first-screen rhythm: move intros upward and reveal content sooner. */
body[data-page="about"] #about,
body[data-page="subsidiaries"] #subsidiaries,
body[data-page="services"] #services,
body[data-page="bluewhale"] #bluewhale,
body[data-page="cases"] #cases,
body[data-page="news"] #news,
body[data-page="news-responsibility"] #news-responsibility,
body[data-page="contact"] #contact {
  --inner-hero-pad: clamp(72px, 6vw, 96px);
  --inner-section-pad: clamp(56px, 5vw, 76px);
  --inner-section-pad-sm: clamp(44px, 4vw, 64px);
  min-height: auto !important;
  align-content: start !important;
  justify-content: stretch !important;
}

body[data-page="about"] #about > .section-copy,
body[data-page="subsidiaries"] #subsidiaries > .subsidiaries-heading,
body[data-page="services"] #services .business-core-heading,
body[data-page="services"] #services .business-modern-hero,
body[data-page="bluewhale"] #bluewhale > .bluewhale-hero,
body[data-page="cases"] #cases > .industry-cases-hero,
body[data-page="news"] #news .news-center-hero,
body[data-page="news-responsibility"] #news-responsibility > .news-responsibility-hero,
body[data-page="contact"] #contact .contact-page-hero {
  min-height: 0 !important;
  padding-top: clamp(96px, 7vw, 120px) !important;
  padding-bottom: clamp(56px, 5vw, 76px) !important;
  align-content: start !important;
  justify-content: flex-start !important;
}

body[data-page="services"] #services .business-core-heading {
  margin-bottom: clamp(28px, 3.5vw, 44px) !important;
}

body[data-page="services"] #services .business-modern-list > .business-modern-hero {
  min-height: 0 !important;
  padding-top: clamp(96px, 7vw, 120px) !important;
  padding-bottom: clamp(56px, 5vw, 76px) !important;
  align-items: start !important;
}

body[data-page="about"] #about .company-intro,
body[data-page="about"] #about.about-profile-state .company-intro,
body[data-page="about"] #about .company-intro-detail,
body[data-page="about"] #about.about-profile-state .company-intro-detail {
  min-height: 0 !important;
  padding-top: clamp(96px, 7vw, 120px) !important;
  padding-bottom: clamp(56px, 5vw, 76px) !important;
  align-items: start !important;
  align-content: start !important;
}

body[data-page="about"] #about .company-intro-media,
body[data-page="about"] #about .company-intro-media img,
body[data-page="about"] #about .company-intro-content,
body[data-page="about"] #about.about-profile-state .company-intro-media,
body[data-page="about"] #about.about-profile-state .company-intro-media img,
body[data-page="about"] #about.about-profile-state .company-intro-content {
  min-height: 0 !important;
}

body[data-page="about"] #about .company-intro-content,
body[data-page="about"] #about.about-profile-state .company-intro-content {
  align-content: start !important;
  padding-top: clamp(40px, 4vw, 58px) !important;
  padding-bottom: clamp(40px, 4vw, 58px) !important;
}

body[data-page="bluewhale"] #bluewhale > .bluewhale-grid,
body[data-page="cases"] #cases .industry-solution-showcase,
body[data-page="subsidiaries"] #subsidiaries > .subsidiary-timeline,
body[data-page="contact"] #contact .contact-page-shell,
body[data-page="news-responsibility"] #news-responsibility > .news-responsibility-block {
  margin-top: 0 !important;
}

@media (max-width: 760px) {
  body[data-page="about"] #about,
  body[data-page="subsidiaries"] #subsidiaries,
  body[data-page="services"] #services,
  body[data-page="bluewhale"] #bluewhale,
  body[data-page="cases"] #cases,
  body[data-page="news"] #news,
  body[data-page="news-responsibility"] #news-responsibility,
  body[data-page="contact"] #contact {
    --inner-hero-pad: 56px;
    --inner-section-pad: 48px;
    --inner-section-pad-sm: 40px;
  }

  body[data-page="about"] #about > .section-copy,
  body[data-page="subsidiaries"] #subsidiaries > .subsidiaries-heading,
  body[data-page="services"] #services .business-core-heading,
  body[data-page="services"] #services .business-modern-hero,
  body[data-page="services"] #services .business-modern-list > .business-modern-hero,
  body[data-page="bluewhale"] #bluewhale > .bluewhale-hero,
  body[data-page="cases"] #cases > .industry-cases-hero,
  body[data-page="news"] #news .news-center-hero,
  body[data-page="news-responsibility"] #news-responsibility > .news-responsibility-hero,
  body[data-page="contact"] #contact .contact-page-hero,
  body[data-page="about"] #about .company-intro,
  body[data-page="about"] #about.about-profile-state .company-intro,
  body[data-page="about"] #about .company-intro-detail,
  body[data-page="about"] #about.about-profile-state .company-intro-detail {
    padding-top: clamp(72px, 14vw, 88px) !important;
    padding-bottom: clamp(40px, 9vw, 56px) !important;
  }
}

/* Home services: add restrained blue depth inside each service card. */
body[data-page="home"] #home .home-service-flow-step {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: #d7e5f4;
  background:
    linear-gradient(135deg, rgba(12, 68, 124, 0.16) 0 68px, transparent 69px),
    radial-gradient(circle at 94% 10%, rgba(12, 68, 124, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 10px 26px rgba(15, 48, 87, 0.045);
}

body[data-page="home"] #home .home-service-flow-step::before {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -42px;
  z-index: -1;
  width: 118px;
  height: 118px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(12, 68, 124, 0.16), rgba(255, 255, 255, 0));
  transform: rotate(12deg);
  pointer-events: none;
}

body[data-page="home"] #home .home-service-flow-icon {
  position: relative;
  border-color: rgba(12, 68, 124, 0.34);
  background: linear-gradient(180deg, #0c447c 0%, #073865 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 8px 18px rgba(12, 68, 124, 0.14);
  color: #ffffff;
}

body[data-page="home"] #home .home-service-flow-icon::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.45);
  z-index: -1;
}

body[data-page="home"] #home .home-service-flow-step h3 {
  color: #042c53;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0;
}

body[data-page="home"] #home .home-service-flow-step p {
  color: #465d73;
}

body[data-page="home"] #home .home-service-flow-step:hover,
body[data-page="home"] #home .home-service-flow-step:focus-visible {
  border-color: #185fa5;
  box-shadow: 0 14px 32px rgba(15, 48, 87, 0.07);
}

@media (max-width: 639px) {
  body[data-page="home"] #home .home-service-flow-step {
    background:
      linear-gradient(135deg, rgba(12, 68, 124, 0.15) 0 62px, transparent 63px),
      radial-gradient(circle at 96% 8%, rgba(12, 68, 124, 0.11), transparent 34%),
      linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  }

  body[data-page="home"] #home .home-service-flow-step h3 {
    font-size: 18px;
  }
}

/* Services page cards: match the restrained blue depth used on home services. */
body[data-page="services"] #services .business-modern-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: #d7e5f4;
  background:
    linear-gradient(135deg, rgba(12, 68, 124, 0.16) 0 68px, transparent 69px),
    radial-gradient(circle at 94% 10%, rgba(12, 68, 124, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 10px 26px rgba(15, 48, 87, 0.045);
}

body[data-page="services"] #services .business-modern-card::before {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -42px;
  z-index: -1;
  width: 118px;
  height: 118px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(12, 68, 124, 0.16), rgba(255, 255, 255, 0));
  transform: rotate(12deg);
  pointer-events: none;
}

body[data-page="services"] #services .business-modern-card-body {
  position: relative;
  z-index: 1;
  background: transparent;
}

body[data-page="services"] #services .business-modern-icon {
  position: relative;
  border-color: rgba(12, 68, 124, 0.34);
  background: linear-gradient(180deg, #0c447c 0%, #073865 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 8px 18px rgba(12, 68, 124, 0.14);
  color: #ffffff;
}

body[data-page="services"] #services .business-modern-icon svg {
  stroke: currentColor;
}

body[data-page="services"] #services .business-modern-card h3 {
  color: #042c53;
  font-weight: 800;
}

body[data-page="services"] #services .business-modern-card:hover,
body[data-page="services"] #services .business-modern-card:focus-visible {
  border-color: #185fa5;
  box-shadow: 0 14px 32px rgba(15, 48, 87, 0.07);
}

@media (max-width: 639px) {
  body[data-page="services"] #services .business-modern-card {
    background:
      linear-gradient(135deg, rgba(12, 68, 124, 0.15) 0 62px, transparent 63px),
      radial-gradient(circle at 96% 8%, rgba(12, 68, 124, 0.11), transparent 34%),
      linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  }
}

/* Keep newly supplied wide service-detail images crisp by showing them at their natural ratio. */
body[data-page="services"] #services [data-service-detail="business/customs-clearance-inspection"] .business-detail-hero figure,
body[data-page="services"] #services [data-service-detail="business/global-door-to-door"] .business-detail-hero figure,
body[data-page="services"] #services [data-service-detail="business/bluewhale-system"] .business-detail-hero figure {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

body[data-page="services"] #services [data-service-detail="business/customs-clearance-inspection"] .business-detail-hero figure img,
body[data-page="services"] #services [data-service-detail="business/global-door-to-door"] .business-detail-hero figure img,
body[data-page="services"] #services [data-service-detail="business/bluewhale-system"] .business-detail-hero figure img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
}

/* About page company photo: keep the supplied building image at its natural ratio. */
body[data-page="about"] #about.about-page.about-profile-state .about-intro-media-stack {
  height: auto !important;
  min-height: 0 !important;
  align-items: stretch !important;
}

body[data-page="about"] #about.about-page.about-profile-state .about-intro-image-card-secondary {
  flex: 0 0 auto !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
}

body[data-page="about"] #about.about-page.about-profile-state .about-intro-image-card-secondary img,
body[data-page="about"] #about.about-page.about-profile-state .about-hero-image img {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center !important;
}

/* News detail reading flow: keep images inside the article measure. */
body[data-page="news"] #news .news-detail-page {
  max-width: 980px;
}

body[data-page="news"] #news .news-detail-header,
body[data-page="news"] #news .news-detail-body {
  width: min(100%, 820px);
  max-width: 820px;
}

body[data-page="news"] #news .news-detail-header {
  margin-bottom: clamp(26px, 4vw, 40px);
}

body[data-page="news"] #news .news-detail-header h2 {
  max-width: 820px;
  font-size: clamp(34px, 4.2vw, 50px);
  line-height: 1.16;
}

body[data-page="news"] #news .news-detail-header p {
  max-width: 760px;
}

body[data-page="news"] #news .news-detail-body p {
  margin-bottom: 24px;
}

body[data-page="news"] #news .news-detail-body p.news-detail-lede {
  margin-bottom: clamp(26px, 4vw, 34px);
}

body[data-page="news"] #news .news-detail-cover {
  width: 100%;
  max-width: 100%;
  margin: clamp(24px, 4vw, 34px) 0 clamp(34px, 5vw, 46px);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(15, 48, 87, 0.07);
}

body[data-page="news"] #news .news-detail-cover img {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
}

body[data-page="news"] #news .news-detail-gallery {
  width: 100%;
  max-width: 100%;
  margin: clamp(28px, 5vw, 44px) 0 clamp(30px, 5vw, 48px);
  gap: clamp(14px, 2.2vw, 20px);
}

body[data-page="news"] #news .news-detail-gallery figure {
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(15, 48, 87, 0.055);
}

body[data-page="news"] #news .news-detail-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

body[data-page="news"] #news .news-detail-pager {
  max-width: 820px;
}

@media (max-width: 680px) {
  body[data-page="news"] #news .news-detail-header,
  body[data-page="news"] #news .news-detail-body,
  body[data-page="news"] #news .news-detail-pager {
    width: 100%;
    max-width: none;
  }

  body[data-page="news"] #news .news-detail-cover,
body[data-page="news"] #news .news-detail-gallery {
    margin-left: 0;
    margin-right: 0;
  }
}

/* About page company photo: align the image with the profile copy instead of the title. */
@media (min-width: 901px) {
  body[data-page="about"] #about.about-page.about-profile-state .about-hero-image {
    margin-top: clamp(88px, 7vw, 128px) !important;
  }
}

/* Subsidiary timeline: keep prev/next controls fixed while company copy changes. */
@media (min-width: 761px) {
  body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-detail {
    min-height: clamp(474px, 32vw, 560px) !important;
    padding-left: clamp(92px, 7vw, 120px) !important;
    padding-right: clamp(92px, 7vw, 120px) !important;
  }

  body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-arrow {
    top: 238px !important;
    margin-top: 0 !important;
    transform: translateY(-50%) !important;
  }

  body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-arrow:hover,
  body[data-page="subsidiaries"] #subsidiaries .subsidiary-timeline-arrow:focus-visible {
    transform: translateY(-50%) !important;
  }
}

/* Home AGIL News: show only the latest three posts as one clean row. */
body[data-page="home"] #home .home-news-preview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch;
}

@media (max-width: 900px) {
  body[data-page="home"] #home .home-news-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  body[data-page="home"] #home .home-news-preview-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Contact page polish: make section dividers visible and more structured. */
body[data-page="contact"] #contact .contact-main-section {
  position: relative;
  border-top: 2px solid rgba(7, 56, 101, 0.62) !important;
  border-bottom: 2px solid rgba(7, 56, 101, 0.62) !important;
}

body[data-page="contact"] #contact .contact-main-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: clamp(84px, 10vw, 140px);
  height: 2px;
  background: #0072ce;
}

body[data-page="contact"] #contact .contact-info-list div {
  border-top: 1px solid rgba(7, 56, 101, 0.34) !important;
}

body[data-page="contact"] #contact .contact-info-list div:first-child {
  border-top: 0 !important;
}

body[data-page="contact"] #contact .contact-info-list dt {
  color: #0072ce !important;
}

body[data-page="contact"] #contact .contact-info-list dd {
  color: #082643;
}

body[data-page="contact"] #contact .contact-inquiry-band {
  border-top: 2px solid rgba(7, 56, 101, 0.62) !important;
  border-bottom: 2px solid rgba(7, 56, 101, 0.38) !important;
  border-radius: 0 !important;
  background: linear-gradient(90deg, rgba(0, 114, 206, 0.055), rgba(255, 255, 255, 0)) !important;
}

body[data-page="home"] #home .partner-section {
  display: none !important;
}

body[data-page="home"] #home .home-services-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 3vw, 44px);
}

body[data-page="home"] #home .home-services-more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 22px;
  border-radius: 999px;
  background: #0072ce;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(0, 114, 206, 0.2);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

body[data-page="home"] #home .home-services-more-button:hover,
body[data-page="home"] #home .home-services-more-button:focus-visible {
  background: #005da8;
  box-shadow: 0 18px 34px rgba(0, 93, 168, 0.24);
  transform: translateY(-1px);
}
