:root {
  --blue: #005bff;
  --blue-2: #1772ff;
  --deep: #000c1a;
  --text: #000;
  --muted: #777;
  --bg: #f5f6f8;
  --soft: #eef6ff;
  --card: #fff;
  --shadow: 0 10px 28px rgba(19, 42, 80, 0.08);
  --wrap: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Microsoft Yahei", "PingFang SC", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 58px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 14px rgba(5, 28, 63, 0.08);
}

.header-inner {
  width: min(100% - 104px, var(--wrap));
  height: 58px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 142px;
}

.brand-logo {
  display: block;
  width: auto;
  height: 40px;
  object-fit: contain;
}

.brand-cube {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  border-radius: 7px;
  background: linear-gradient(135deg, #0067ff, #1c8bff 48%, #0a44cb);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.18);
}

.brand-text {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  height: 58px;
  flex: 1;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 58px;
  font-size: 15px;
  font-weight: 400;
  color: #222;
}

.nav-item.active,
.nav-item:hover { color: var(--blue); }

.nav-item.active::after,
.nav-item:hover::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  content: "";
  background: var(--blue);
}

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

.language-icon-btn {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.language-icon-btn img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.header-phone {
  font-size: 22px;
  font-weight: 900;
  white-space: nowrap;
}

.trial-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  min-width: 96px;
  color: #fff;
  border-radius: 17px;
  background: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.icon-btn,
.globe-btn,
.menu-btn {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.search-btn {
  position: relative;
  width: 28px;
  height: 28px;
}

.search-btn::before {
  position: absolute;
  left: 4px;
  top: 4px;
  width: 13px;
  height: 13px;
  content: "";
  border: 3px solid #111;
  border-radius: 50%;
}

.search-btn::after {
  position: absolute;
  left: 19px;
  top: 19px;
  width: 10px;
  height: 3px;
  content: "";
  background: #111;
  transform: rotate(45deg);
}

.lang-btn {
  width: 32px;
  height: 28px;
  border: 0;
  color: #0a58db;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.globe-btn {
  position: relative;
  width: 26px;
  height: 26px;
  border: 3px solid #111;
  border-radius: 50%;
}

.globe-btn::before,
.globe-btn::after {
  position: absolute;
  content: "";
  background: #111;
}

.globe-btn::before { left: 4px; right: 4px; top: 10px; height: 2px; }
.globe-btn::after { top: 3px; bottom: 3px; left: 10px; width: 2px; }

.mobile-actions,
.mobile-menu { display: none; }

.mega-menu {
  position: absolute;
  left: 0;
  top: 58px;
  width: 100%;
  min-height: 500px;
  display: none;
  padding: 28px max(52px, calc((100vw - var(--wrap)) / 2)) 32px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 18px 28px rgba(10, 28, 64, .08);
}

.site-header:has([data-mega-trigger]:hover) .mega-menu,
.mega-menu:hover { display: grid; grid-template-columns: 160px 1fr; gap: 54px; }

.mega-tabs {
  padding-right: 24px;
  border-right: 1px solid #edf1f7;
}

.mega-tabs button {
  display: block;
  width: 140px;
  height: 40px;
  margin-bottom: 18px;
  border: 0;
  border-radius: 20px;
  background: transparent;
  color: #111;
  font-size: 16px;
  font-weight: 800;
  text-align: left;
  padding-left: 18px;
}

.mega-tabs button.active {
  color: var(--blue);
  background: #eef5ff;
}

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

.mega-grid h3 {
  margin: 5px 0 22px;
  color: var(--blue);
  font-size: 16px;
}

.mega-grid a {
  display: block;
  margin-top: 18px;
  font-weight: 800;
}

.mega-grid p {
  margin: 2px 0 0;
  color: #888;
  font-size: 13px;
}

.hero {
  position: relative;
  height: 442px;
  margin-top: 58px;
  overflow: hidden;
  background: #eaf3ff;
}

.hero-track,
.hero-slide {
  width: 100%;
  height: 100%;
}

.hero-track { position: relative; }

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  text-align: left;
  opacity: 0;
  transform: translateX(100%);
  transition:
    transform .56s ease,
    opacity .56s ease;
}

.hero-slide.active {
  z-index: 2;
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0);
}

.hero-slide.exiting {
  z-index: 1;
  opacity: 1;
  transform: translateX(-100%);
}

.hero-slide.legal {
  background: #fff url('./images/banner-advisor-v7.png') center / cover no-repeat;
}

.hero-slide.maas {
  background: #f5faff url('./images/banner-platform-v3.png') center / cover no-repeat;
}

.hero-slide.geo {
  background: #fff url('./images/banner-collaboration-v5.png') center / cover no-repeat;
}

.hero-copy,
.hero-copy.left {
  flex: 0 0 auto;
  width: min(var(--wrap), calc(100% - 104px));
  max-width: calc(100% - 104px);
}

.hero-copy p {
  margin: 0 0 20px;
  color: #064dbd;
  font-size: 26px;
  font-weight: 900;
}

.hero-copy h1 {
  margin: 0;
  max-width: 600px;
  font-size: 40px;
  line-height: 1.28;
  font-weight: 900;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: keep-all;
}

.hero-copy.left h1 {
  margin: 0;
  color: var(--blue);
}

.hero-copy.left p {
  max-width: 700px;
  margin: 20px 0 0;
  color: #303744;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  margin-top: 36px;
}

.hero-copy.left .hero-cta { justify-content: flex-start; }

.hero-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 52px;
  color: #fff;
  border-radius: 28px;
  background: linear-gradient(90deg, #0067ff, #0078ff);
  font-weight: 800;
}

.hero-cta a + a {
  color: var(--blue);
  border: 1px solid var(--blue);
  background: rgba(255,255,255,.42);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  display: flex;
  gap: 14px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 48px;
  height: 4px;
  padding: 0;
  border: 0;
  background: rgba(0,91,255,.16);
  cursor: pointer;
}

.hero-dots button.active { background: var(--blue); }

@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
}

.news-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 90px;
  padding: 0 max(52px, calc((100vw - var(--wrap)) / 2));
  background: rgba(246, 249, 253, .94);
}

.news-strip a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 18px 28px;
  text-align: center;
  -webkit-user-drag: none;
  -webkit-user-select: text;
  user-select: text;
}

.news-strip strong { font-size: 16px; }
.news-strip span { color: #777; font-size: 14px; white-space: nowrap; }

section h2 {
  margin: 0;
  text-align: center;
  font-size: 38px;
  line-height: 1.48;
  font-weight: 900;
  letter-spacing: 0;
}

.section-desc {
  margin: 10px 0 0;
  text-align: center;
  font-size: 16px;
  color: #111;
}

.global-section { padding: 62px 0 0; background: #fff; }

.global-inner {
  position: relative;
  width: min(100% - 104px, var(--wrap));
  height: 420px;
  margin: 34px auto 0;
}

.global-copy {
  position: absolute;
  left: 0;
  top: 76px;
  z-index: 2;
  width: 43%;
}

.global-copy h3 { margin: 0; color: #132659; font-size: 30px; line-height: 1.32; }
.global-copy p { margin: 18px 0 26px; color: #59616d; font-size: 15px; }
.global-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 44px;
  color: #fff;
  border-radius: 22px;
  background: linear-gradient(90deg, #0067ff, #805cff);
  font-weight: 800;
}

.cert-row { display: flex; gap: 16px; margin-top: 70px; color: #6c7a91; font-size: 12px; }

.map-panel {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 400px;
}

.map-panel img { display: block; width: 100%; height: 100%; object-fit: contain; }

.logo-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 42px;
  align-items: center;
  min-height: 88px;
  padding: 0 max(52px, calc((100vw - var(--wrap)) / 2));
  border-top: 1px solid #f0f2f5;
  color: #1b2c45;
  background: #fff;
  font-weight: 800;
  text-align: center;
}

.agent-section { padding: 72px 0 70px; background: var(--bg); }

.product-stage {
  width: min(100% - 104px, var(--wrap));
  margin: 38px auto 0;
  padding: 26px 14px 20px;
  border-radius: 16px;
  background: linear-gradient(110deg, #f8fbff 42%, #dcecff 70%, #88b5ff 100%) top right / 100% 320px no-repeat, #f3f7ff;
}

.stage-top {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  justify-content: space-between;
  min-height: 150px;
  padding: 0 280px 30px 30px;
}

.stage-top h3 { margin: 0 0 8px; color: #0b2a66; font-size: 30px; }
.stage-top p { margin: 0; color: #333; }

.service-visual {
  position: absolute;
  top: -38px;
  right: 20px;
  display: block;
  width: 260px;
  height: 260px;
  object-fit: contain;
  pointer-events: none;
}

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

.product-block,
.capability-box {
  min-height: 214px;
  padding: 28px;
  border-radius: 12px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}

.product-block.wide { grid-column: span 1; }
.product-block.full { grid-column: 1 / -1; min-height: 128px; }

.product-block h4 {
  margin: 0 0 20px;
  color: var(--blue-2);
  font-size: 24px;
}

@supports ((background-clip: text) or (-webkit-background-clip: text)) {
  .product-block h4 {
    background: linear-gradient(90deg, #005bff, #009fff) left center / 8em 100% no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

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

.product-list.columns { grid-template-columns: repeat(2, 1fr); }
.product-list.four { grid-template-columns: repeat(4, 1fr); }
.product-list p { margin: 0; }
.product-list strong { display: block; font-size: 17px; }
.product-list span { display: block; margin-top: 4px; color: #777; font-size: 14px; }

.capability-box {
  margin-top: 14px;
  padding: 26px 28px 18px;
  background: #dcebff;
}

.capability-box h3 { margin: 0 0 18px; color: #15275d; text-align: center; font-size: 26px; }
.capability-box div {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 28px;
  padding: 24px 28px;
  border-radius: 12px;
  background: rgba(255,255,255,.9);
}
.capability-box p { margin: 0; }
.capability-box strong { display: block; }
.capability-box span { color: #777; font-size: 14px; }

.industry-section { padding: 74px 0 76px; background: #fff; }

.industry-layout {
  width: min(100% - 104px, var(--wrap));
  margin: 38px auto 0;
  display: grid;
  grid-template-columns: 620px 1fr;
  gap: 18px;
}

.industry-tabs {
  display: grid;
  grid-template-columns: repeat(5, 108px);
  gap: 18px;
  align-items: stretch;
}

.industry-tabs button {
  height: 364px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(7,35,66,.58), rgba(0,12,26,.82)),
    linear-gradient(160deg, #0041a8, #031326);
  font-size: 28px;
  font-weight: 900;
  cursor: pointer;
}

.industry-tabs button.active {
  background: linear-gradient(180deg, #3555ff, #071b45);
}

.industry-panel {
  display: none;
  min-height: 364px;
  padding: 36px 32px;
  color: #fff;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(0,62,162,.98), rgba(0,75,184,.9)),
    radial-gradient(circle at 75% 100%, rgba(255,255,255,.25), transparent 40%);
}

.industry-panel.active { display: block; }
.industry-panel h3 { margin: 0 0 10px; font-size: 34px; }
.industry-panel p { margin: 0 0 22px; font-size: 17px; }
.industry-panel ul { padding: 22px 0; margin: 0; list-style: none; border-top: 1px dashed rgba(255,255,255,.22); }
.industry-panel li { margin: 12px 0; }

.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.metric-row strong { display: block; font-size: 30px; line-height: 1; }
.metric-row span { color: rgba(255,255,255,.82); }

.more-link {
  display: table;
  margin: 34px auto 0;
  font-weight: 800;
}

.tech-section { padding: 74px 0 82px; background: var(--bg); }
.tech-grid {
  width: min(100% - 104px, var(--wrap));
  margin: 38px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tech-card {
  display: flex;
  flex-direction: column;
  min-height: 440px;
  padding: 26px;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.tech-card.dark { color: #fff; background: #080b14; }
.tech-card h3 { margin: 0 0 10px; font-size: 26px; }
.tech-card p { margin: 8px 0; color: #555; font-size: 16px; }
.tech-card.dark p { color: rgba(255,255,255,.88); }

.tech-visual { flex-shrink: 0; height: 230px; margin: auto -12px 0; padding-top: 0; }
.tech-visual img { display: block; width: 100%; height: 100%; object-fit: contain; }
.tech-card.dark .tech-visual img { -webkit-mask-image: linear-gradient(transparent, #000 16%); mask-image: linear-gradient(transparent, #000 16%); }

.case-section { padding: 72px 0 58px; background: #fff; }
.case-tabs { display: flex; justify-content: center; gap: 50px; margin: 34px 0 32px; }
.case-tabs button { height: 42px; border: 0; border-bottom: 2px solid transparent; background: transparent; color: #555; font-weight: 800; cursor: pointer; }
.case-tabs button.active { color: var(--blue); border-color: var(--blue); }

.case-card {
  width: min(100% - 104px, var(--wrap));
  min-height: 360px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0,12,26,.9), rgba(0,12,26,.35)),
    linear-gradient(130deg, #0d1f35, #5f4936 65%, #c79556);
}

.case-content { width: 62%; padding: 56px; }
.case-content span { display: block; margin-bottom: 20px; font-weight: 900; }
.case-content h3 { margin: 0 0 18px; font-size: 30px; line-height: 1.35; }
.case-content p { color: rgba(255,255,255,.88); }
.case-metrics { display: flex; gap: 44px; margin: 28px 0; }
.case-metrics strong { display: block; font-size: 26px; }

.logo-wall { padding: 64px 0 82px; background: #fff; overflow: hidden; }
.logo-wall h2 { color: #071a3f; }
.client-logo-grid {
  width: min(100% - 104px, var(--wrap));
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  column-gap: 52px;
  row-gap: 48px;
}
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  height: 54px;
}
.client-logo img {
  flex: 0 0 auto;
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.client-logo span {
  min-width: 0;
  color: #17223a;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}
.category-row {
  width: min(100% - 104px, var(--wrap));
  margin: 34px auto 14px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}
.category-row span {
  height: 32px;
  border-radius: 5px;
  color: #fff;
  background: var(--blue);
  text-align: center;
  line-height: 32px;
  font-size: 14px;
}
.wall-grid {
  width: min(100% - 104px, var(--wrap));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}
.wall-grid span {
  display: grid;
  place-items: center;
  height: 46px;
  border-radius: 5px;
  background: #fff;
  color: #3d4656;
  font-weight: 800;
  font-size: 13px;
}

.delivery-section { padding: 82px 0 76px; background: var(--bg); }
.delivery-card {
  width: min(100% - 104px, var(--wrap));
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 42px 56px 46px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(20, 45, 88, .07);
}
.delivery-stage {
  position: relative;
  min-width: 0;
  text-align: center;
}
.delivery-stage:not(:last-child)::after {
  position: absolute;
  top: 26px;
  right: -64px;
  width: 132px;
  border-top: 2px dashed rgba(0, 96, 255, .72);
  content: "";
}
.delivery-stage h3 {
  margin: 0;
  color: #003af0;
  background: linear-gradient(to right, #003AF0, #0098FF);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  -webkit-text-fill-color: transparent;
}
.delivery-stage p {
  margin: 12px 0 30px;
  color: #777f8e;
  font-size: 14px;
  font-weight: 700;
}
.delivery-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.delivery-steps span {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #1a2233;
  font-size: 14px;
  font-weight: 900;
}
.delivery-stage:not(:first-child) .delivery-steps span:first-child::before {
  position: absolute;
  top: 20px;
  left: -28px;
  width: 1px;
  height: 50px;
  background: #d9dee7;
  content: "";
}
.step-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f5f7fb;
}
.step-icon::before {
  display: block;
  width: 18px;
  height: 18px;
  background: #121827;
  content: "";
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}
.step-icon.chat { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 11.5a8.4 8.4 0 0 1-9 8.4 8.8 8.8 0 0 1-3.8-.9L3 20l1.4-4A8.1 8.1 0 0 1 3 11.5a8.5 8.5 0 0 1 9-8.4 8.5 8.5 0 0 1 9 8.4Z'/%3E%3Cpath d='M8 12h.01M12 12h.01M16 12h.01'/%3E%3C/svg%3E"); }
.step-icon.shield { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10Z'/%3E%3Cpath d='m9 12 2 2 4-5'/%3E%3C/svg%3E"); }
.step-icon.bulb { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18h6'/%3E%3Cpath d='M10 22h4'/%3E%3Cpath d='M12 2a7 7 0 0 0-4 12c.7.6 1 1.4 1 2h6c0-.6.3-1.4 1-2A7 7 0 0 0 12 2Z'/%3E%3C/svg%3E"); }
.step-icon.book { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M4 4.5A2.5 2.5 0 0 1 6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15Z'/%3E%3C/svg%3E"); }
.step-icon.cube { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m21 8-9-5-9 5 9 5 9-5Z'/%3E%3Cpath d='m3 8 9 5v8l-9-5V8Z'/%3E%3Cpath d='m21 8-9 5v8l9-5V8Z'/%3E%3C/svg%3E"); }
.step-icon.grid { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='7' rx='1.5'/%3E%3Crect x='14' y='3' width='7' height='7' rx='1.5'/%3E%3Crect x='3' y='14' width='7' height='7' rx='1.5'/%3E%3Crect x='14' y='14' width='7' height='7' rx='1.5'/%3E%3C/svg%3E"); }
.step-icon.dial { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 14l4-4'/%3E%3Cpath d='M20.5 14a8.5 8.5 0 1 0-17 0'/%3E%3Cpath d='M4 18h16'/%3E%3C/svg%3E"); }
.step-icon.sliders { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 21v-7M4 10V3M12 21v-9M12 8V3M20 21v-5M20 12V3'/%3E%3Cpath d='M2 14h4M10 8h4M18 16h4'/%3E%3C/svg%3E"); }
.step-icon.chart { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3v18h18'/%3E%3Cpath d='m7 15 4-4 3 3 5-7'/%3E%3C/svg%3E"); }

.honor-section {
  position: relative;
  min-height: 560px;
  padding: 80px max(52px, calc((100vw - var(--wrap)) / 2));
  background: linear-gradient(90deg, #fff 0 52%, #eff5ff);
  overflow: hidden;
}
.honor-section h2 { text-align: left; max-width: 960px; }
.honor-grid {
  display: grid;
  grid-template-columns: repeat(3, 160px);
  gap: 48px 70px;
  margin-top: 86px;
}
.honor-grid p { margin: 0; }
.honor-grid strong { display: block; font-size: 36px; line-height: 1; }
.honor-grid span { display: block; margin-top: 14px; color: #777; }
.building {
  position: absolute;
  right: 6%;
  bottom: 0;
  width: 380px;
  height: 450px;
  opacity: .72;
  background:
    repeating-linear-gradient(90deg, rgba(20,60,110,.45) 0 3px, rgba(255,255,255,.55) 3px 14px),
    linear-gradient(135deg, #cbd8e7, #fff);
  clip-path: polygon(20% 100%, 52% 0, 88% 100%);
}

.final-cta {
  padding: 68px 20px 70px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 120%, rgba(0,91,255,.2), transparent 34%),
    linear-gradient(90deg, #e7f3ff, #f2f3ff);
}
.final-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 560px;
  height: 64px;
  margin-top: 32px;
  color: #fff;
  border-radius: 34px;
  background: linear-gradient(90deg, #0067ff, #875fff);
  box-shadow: 0 10px 24px rgba(0,91,255,.25);
  font-size: 18px;
  font-weight: 900;
}

.float-bar {
  position: fixed;
  right: 20px;
  bottom: 118px;
  z-index: 40;
  width: 74px;
}
.float-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  gap: 7px;
  color: #111827;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(20,43,80,.18);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}
.float-bar i {
  width: 24px;
  height: 24px;
  background: url("./images/code.svg") center / contain no-repeat;
}

.mobile-bottom { display: none; }

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 140px;
  background: rgba(255,255,255,.96);
}
.search-overlay.open { display: flex; }
.search-overlay label { width: min(760px, calc(100% - 40px)); }
.search-overlay span { display: block; margin-bottom: 14px; font-size: 24px; font-weight: 900; }
.search-overlay input { width: 100%; height: 58px; padding: 0 18px; border: 1px solid #d9e1ed; border-radius: 8px; }
.search-overlay button {
  position: absolute;
  right: 40px;
  top: 32px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.search-overlay button::before,
.search-overlay button::after {
  position: absolute;
  left: 8px;
  top: 20px;
  width: 28px;
  height: 2px;
  content: "";
  background: #111;
}
.search-overlay button::before { transform: rotate(45deg); }
.search-overlay button::after { transform: rotate(-45deg); }

.site-footer {
  padding: 58px max(52px, calc((100vw - var(--wrap)) / 2)) 0;
  color: rgba(255,255,255,.62);
  background: var(--deep);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr repeat(4, 1fr);
  gap: 46px;
}
.footer-brand .brand-text { color: #fff; }
.site-footer h3 { margin: 26px 0 18px; color: #fff; font-size: 16px; }
.site-footer p, .site-footer a { display: block; margin: 12px 0; color: rgba(255,255,255,.55); font-size: 14px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.45);
  font-size: 13px;
}

@media (max-width: 900px) {
  body { padding-bottom: 52px; }
  .site-header { height: 61px; }
  .header-inner { width: 100%; height: 61px; padding: 0 16px; gap: 0; justify-content: space-between; }
  .brand { min-width: auto; }
  .brand-logo { height: 30px; }
  .brand-cube { width: 26px; height: 26px; font-size: 9px; }
  .brand-text { font-size: 17px; }
  .desktop-nav, .header-actions, .mega-menu, .float-bar { display: none; }
  .mobile-actions { display: flex; align-items: center; gap: 16px; }
  .menu-btn { width: 28px; height: 28px; padding: 3px; }
  .menu-btn span { display: block; height: 2px; margin: 6px 2px; background: #111; }
  .mobile-menu {
    position: fixed;
    top: 61px;
    left: 0;
    right: 0;
    z-index: 60;
    padding: 12px 24px 24px;
    background: #fff;
    box-shadow: 0 16px 26px rgba(5,28,63,.12);
  }
  .mobile-menu.open { display: block; }
  .mobile-menu a { display: block; height: 48px; line-height: 48px; border-bottom: 1px solid #eef1f6; font-weight: 400; }
  .hero { height: 580px; margin-top: 61px; }
  .hero-slide { align-items: flex-start; padding-top: 30px; }
  .hero-slide.legal,
  .hero-slide.maas,
  .hero-slide.geo { background-size: auto 260px; background-position: right bottom; }
  .hero-copy,
  .hero-copy.left { width: calc(100% - 40px); max-width: calc(100% - 40px); }
  .hero-copy h1 { font-size: 28px; line-height: 1.36; }
  .hero-copy p,
  .hero-copy.left p { font-size: 16px; margin-bottom: 10px; }
  .hero-cta { display: flex; gap: 12px; margin-top: 20px; }
  .hero-cta a { min-width: 128px; height: 44px; }
  .hero-dots { bottom: 12px; }
  .hero-dots button { width: 22px; height: 3px; }
  .news-strip { grid-template-columns: 1fr; margin: -10px 16px 0; padding: 0 16px; border-radius: 12px; box-shadow: var(--shadow); }
  .news-strip a { padding: 14px 0; text-align: left; border-bottom: 1px solid #edf1f6; }
  section h2 { font-size: 26px; line-height: 1.45; }
  .section-desc { width: calc(100% - 32px); margin: 8px auto 0; color: #777; font-size: 13px; }
  .global-section { padding: 44px 0 0; }
  .global-inner { width: 100%; height: auto; margin-top: 18px; padding: 0 16px; }
  .global-copy { position: relative; top: auto; width: 100%; text-align: center; }
  .global-copy h3 { font-size: 22px; }
  .cert-row { margin: 22px 0; flex-wrap: wrap; justify-content: center; }
  .map-panel { position: relative; right: auto; top: auto; width: 100%; height: auto; aspect-ratio: 590 / 425; margin-top: 24px; }
  .logo-row { grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 18px 16px; font-size: 12px; }
  .agent-section, .industry-section, .tech-section, .case-section, .logo-wall, .delivery-section { padding: 52px 0; }
  .product-stage { width: calc(100% - 32px); margin-top: 26px; padding: 20px 14px; border-radius: 12px; }
  .stage-top { min-height: 200px; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 12px; padding: 0 18px 90px; }
  .stage-top h3 { font-size: 26px; }
  .service-visual { top: auto; bottom: -48px; right: 4px; width: 145px; height: 145px; }
  .product-grid { grid-template-columns: 1fr; gap: 12px; }
  .product-block, .product-block.full { grid-column: auto; min-height: 64px; padding: 18px 22px; border-radius: 12px; }
  .product-block h4 { position: relative; margin: 0; color: var(--blue-2); font-size: 21px; }
  .product-block h4::after { position: absolute; right: 0; content: "⌄"; -webkit-text-fill-color: #1772ff; }
  .product-block:not(.open) .product-list { display: none; }
  .product-list, .product-list.columns, .product-list.four { grid-template-columns: 1fr; margin-top: 22px; }
  .capability-box { padding: 24px 14px; }
  .capability-box div { grid-template-columns: 1fr; padding: 24px; }
  .industry-layout { width: calc(100% - 32px); grid-template-columns: 1fr; }
  .industry-tabs { grid-template-columns: 1fr; gap: 12px; }
  .industry-tabs button { height: 62px; padding: 0 18px; color: #111; background: #f6f7f9; text-align: left; font-size: 20px; }
  .industry-tabs button.active { color: #111; background: #f6f7f9; }
  .industry-panel { min-height: auto; border-radius: 12px; }
  .metric-row { grid-template-columns: 1fr; }
  .tech-grid { width: calc(100% - 32px); grid-template-columns: 1fr; gap: 16px; }
  .tech-card { min-height: auto; padding: 28px 22px; }
  .case-tabs { justify-content: flex-start; gap: 28px; overflow-x: auto; padding: 0 16px; margin: 26px 0 18px; }
  .case-tabs button { flex: 0 0 auto; }
  .case-card { width: calc(100% - 32px); min-height: 420px; background: linear-gradient(180deg, rgba(0,12,26,.76), rgba(90,67,46,.58)), linear-gradient(130deg, #0d1f35, #b98d5a); }
  .case-content { width: 100%; padding: 36px 22px; }
  .case-content h3 { font-size: 24px; }
  .client-logo-grid { width: calc(100% - 32px); grid-template-columns: repeat(3, 1fr); gap: 24px 14px; margin-top: 28px; }
  .client-logo { height: 58px; flex-direction: column; gap: 6px; }
  .client-logo img { width: 28px; height: 28px; }
  .client-logo span { font-size: 13px; }
  .category-row, .wall-grid { width: calc(100% - 32px); grid-template-columns: repeat(3, 1fr); }
  .wall-grid { max-height: 420px; overflow: hidden; }
  .delivery-card { width: calc(100% - 32px); grid-template-columns: 1fr; gap: 34px; margin-top: 28px; padding: 28px 18px; border-radius: 14px; }
  .delivery-stage { padding-bottom: 30px; }
  .delivery-stage:not(:last-child) { border-bottom: 1px dashed #d9e0ec; }
  .delivery-stage:not(:last-child)::after { display: none; }
  .delivery-stage h3 { font-size: 21px; }
  .delivery-stage p { margin: 10px 0 22px; font-size: 14px; }
  .delivery-steps { gap: 10px; }
  .delivery-steps span { gap: 8px; font-size: 13px; }
  .delivery-stage:not(:first-child) .delivery-steps span:first-child::before { display: none; }
  .step-icon { width: 34px; height: 34px; border-radius: 9px; }
  .step-icon::before { width: 17px; height: 17px; }
  .honor-section { min-height: auto; padding: 54px 16px 310px; }
  .honor-section h2 { text-align: center; }
  .honor-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 26px; margin-top: 44px; }
  .honor-grid strong { font-size: 30px; }
  .building { right: 50%; width: 260px; height: 270px; transform: translateX(50%); }
  .final-cta { padding: 48px 16px; }
  .final-cta a { min-width: 0; width: 100%; height: auto; min-height: 56px; padding: 12px 18px; font-size: 15px; }
  .mobile-bottom {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 52px;
    background: linear-gradient(90deg, #1380ff, #2092ff);
    box-shadow: 0 -8px 22px rgba(0,91,255,.2);
  }
  .mobile-bottom a { display: grid; place-items: center; color: #fff; font-size: 13px; font-weight: 800; }
  .footer-inner { grid-template-columns: 1fr; gap: 10px; }
  .site-footer { padding: 42px 24px 0; }
  .footer-bottom { display: block; }
}
