/* =========================================
   1. 變數與重置（PC 首頁）
   ========================================= */

:root {
  --color-primary: #2f6bff;
  --color-primary-dark: #1f4fd6;
  --color-text: #1a1d26;
  --color-muted: #5c6370;
  --color-line: #e7ebf3;
  --color-bg: #f5f7fb;
  --color-bg-soft: #eef3ff;
  --color-footer: #121722;
  --color-white: #ffffff;
  --shadow-card: 0 18px 45px rgba(24, 39, 75, 0.08);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 999px;
  --font-serif: 'Noto Serif SC', 'Noto Serif TC', serif;
  --font-sans: 'Noto Sans TC', 'Noto Serif SC', system-ui, -apple-system, sans-serif;
  --font-hero-cn: 'Noto Sans SC', 'Noto Sans TC', system-ui, -apple-system, sans-serif;
  --nav-active: #1cb7ff;
  --header-bar-height: 96px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

/* 滑鼠點擊不顯示瀏覽器預設 focus 框；鍵盤 Tab 仍可用 :focus-visible 顯示 */
:focus:not(:focus-visible) {
  outline: none;
}

ul,
li {
  list-style: none;
}

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

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

html {
  min-width: 1440px;
  scroll-behavior: smooth;
}

body {
  min-width: 1440px;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-white);
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}

/* 静态 HTML 占位为简体：首帧在 i18n 应用前隐藏整页（各页 head 内联样式优先防闪） */
html.i18n-pending body {
  visibility: hidden;
}

html.i18n-pending .site-header--nav-open .site-header__drawer-shell,
html.i18n-pending .site-header--nav-open .site-header__nav,
html.i18n-pending .site-header--nav-open .language-selector {
  visibility: visible;
}

/* =========================================
   滚动按需显现（IntersectionObserver）
   ========================================= */

.js-scroll-reveal-enabled .scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js-scroll-reveal-enabled .scroll-reveal.scroll-reveal--visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 768px) {
  .js-scroll-reveal-enabled .scroll-reveal {
    transform: translate3d(0, 0.18rem, 0);
    transition-duration: 0.5s;
  }
}

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

.container {
  max-width: 1520px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}

@media (min-width: 1441px) and (max-width: 1600px) {
  .container {
    padding: 0 48px;
  }

  .site-footer .site-footer__top {
    padding-left: 48px;
    padding-right: 48px;
  }

  .site-footer .site-footer__bottom {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media (max-width: 1440px) {
  .container {
    max-width: 1200px;
    padding: 0 48px;
  }
}

@media (min-width: 2001px) {
  body[data-page='home'] .container {
    max-width: none;
    padding-left: 200px;
    padding-right: 200px;
  }

  /* 首页 PC：服务卡片区与 services 页一致保持 1520 版心（3+2 换行），避免 .container 取消上限后超宽屏出现 4+1 */
  body[data-page='home'] .service-showcase__grid.container {
    max-width: 1520px;
    padding-left: 0;
    padding-right: 0;
  }

  .site-header__inner.container {
    max-width: none;
    padding-left: 200px;
    padding-right: 200px;
  }

  body[data-page='home'] .hero-banner__scroll-cluster {
    left: 216px;
  }

  body[data-page='home'] .hero-banner__thumbs {
    left: 280px;
  }
}

/* 首页 H5：见 css/home-h5.css（仅 index 引入） */

/* =========================================
   2. 頁首（Figma Navi 587:1770）
   ========================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  min-height: var(--header-bar-height);
  padding: 0;
  display: flex;
  align-items: center;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header--solid {
  background: rgba(10, 14, 22, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

/* 首页下滑：顶栏淡黑底（仅由 main.js 在 data-page=home 时添加） */
.site-header--home-scroll {
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}

.site-header__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--header-bar-height);
  column-gap: 24px;
}

/* PC：主导航与语言选择同排；H5 同节点用于全屏抽屉（见 ≤768px） */
.site-header__drawer-shell {
  display: flex;
  flex-direction: row;
  flex: 1 1 auto;
  min-width: 0;
  align-items: center;
  column-gap: 24px;
}

.site-header__drawer-shell .site-header__nav {
  flex: 1 1 auto;
  min-width: 0;
}

.site-header__start {
  flex: 0 0 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* 消除源码里换行/空格形成的匿名 flex 子项，避免把 .site-header__brand 向右挤出几个像素（与内页 .page-hero__title 左缘不齐） */
  font-size: 0;
  line-height: 0;
}

.site-header__end {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__logo {
  display: block;
  width: 238px;
  height: 43px;
  object-fit: contain;
}

/* 首頁頂部偏深色區域用淺色 logo；其餘內頁 header 用深色 logo */
body[data-page="home"] .site-header__logo--on-light {
  display: none;
}
body[data-page="home"] .site-header__logo--on-dark {
  display: block;
}
body:not([data-page="home"]) .site-header__logo--on-dark {
  display: none;
}
body:not([data-page="home"]) .site-header__logo--on-light {
  display: block;
}

/* 移动端顶栏素材（H5 见 ≤768px）；PC 不展示 */
.site-header__logo--mobile,
.site-header__mobile-end {
  display: none;
}

.site-header__backdrop {
  display: none;
}

body:not([data-page="home"]) .site-header {
  background: #fff;
}

.site-header__nav {
  flex: 0 1 auto;
  min-width: 0;
}

/* H5 抽屉顶栏（仅小屏展开时显示；PC 不参与布局） */
.site-header__drawer-head {
  display: none;
}

.site-header__menu {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

/* PC 顶栏不展示「隐私政策/使用条款」（页脚与 H5 抽屉仍保留） */
@media (min-width: 769px) {
  .site-header__menu > li:has(a.js-open-privacy-modal) {
    display: none;
  }
}

.site-header__link {
  display: inline-flex;
  align-items: center;
  padding: 0;
  font-family: var(--font-hero-cn);
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  color: var(--color-white);
  white-space: nowrap;
  border-radius: 0;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-header__link:hover {
  opacity: 0.88;
}

.site-header__link--active {
  color: #1f6fdb;
  opacity: 1;
}

.site-header__link--active:hover {
  color: #1f6fdb;
  opacity: 0.92;
}

/* 仅首页：顶栏深色底上保持原有高亮色 */
body[data-page="home"] .site-header__link--active {
  color: var(--nav-active);
  opacity: 1;
}

body[data-page="home"] .site-header__link--active:hover {
  color: var(--nav-active);
  opacity: 0.92;
}

/* 语言选择器（Figma 733:4833：外层 .language-selector 无底色，仅下拉面板有白底） */
.language-selector {
  position: relative;
  z-index: 80;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.language-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--color-white);
  font-family: var(--font-hero-cn);
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.language-current:hover {
  opacity: 0.88;
}

.language-selector--open .language-current {
  opacity: 1;
}

.language-current:focus-visible {
  outline: 2px solid var(--nav-active);
  outline-offset: 3px;
}

/* 内页浅色顶栏：与导航链接同色（见各 *.page .site-header__link） */
.company-page .language-current,
.service-page .language-current,
.contact-page .language-current,
.careers-page .language-current {
  color: #181818;
}

.language-current-label {
  display: block;
  white-space: nowrap;
  text-align: center;
}

.language-current-caret {
  display: block;
  width: 0;
  height: 0;
  margin-top: 2px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  flex-shrink: 0;
}

.language-dropdown {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  min-width: 120px;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  border: none;
  display: none;
  list-style: none;
  margin: 0;
}

.language-dropdown::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -6px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ffffff;
  filter: drop-shadow(0 -1px 1px rgba(0, 0, 0, 0.06));
  z-index: 1;
}

.language-selector--open .language-dropdown {
  display: block;
}

.language-option {
  padding: 14px 16px;
  border-radius: 10px;
  font-family: var(--font-hero-cn);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
  color: #181818;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.language-option + .language-option {
  margin-top: 2px;
}

.language-option:hover {
  background: rgba(24, 24, 24, 0.04);
}

.language-option--active {
  background: transparent;
  color: #378aff;
  font-weight: 600;
}

.language-option--active:hover {
  background: rgba(55, 138, 255, 0.06);
  color: #378aff;
}

.section-anchor {
  display: block;
  width: 100%;
  height: 0;
  scroll-margin-top: 96px;
  pointer-events: none;
}

/* 笔记本顶栏：不在 ≤768px 生效，避免与首页 H5（home-h5.css）叠层 */
@media (min-width: 769px) and (max-width: 1440px) {
  .site-header__menu {
    gap: 20px;
  }

  .site-header__link {
    font-size: 15px;
  }

  .language-current {
    font-size: 15px;
  }
}

/* =========================================
   2b. H5 顶栏（≤768px；PC 不受影响）
   ========================================= */
@media (max-width: 768px) {
  :root {
    --header-bar-height: 0.8rem;
  }

  /* 与 index 等页内联 i18n-pending 样式配合：抽屉打开后须可见 */
  html.i18n-pending .site-header--nav-open .site-header__drawer-shell,
  html.i18n-pending .site-header--nav-open .site-header__nav,
  html.i18n-pending .site-header--nav-open .language-selector {
    visibility: visible;
  }

  .section-anchor {
    scroll-margin-top: calc(var(--header-bar-height) + 8px);
  }

  /* H5 顶栏始终白底（覆盖首页/内页滚动态的半透明或阴影，PC 不受影响） */
  .site-header,
  body[data-page='home'] .site-header,
  .site-header.site-header--solid,
  .site-header.site-header--home-scroll,
  .company-page .site-header,
  .company-page .site-header.site-header--company-scroll,
  .service-page .site-header,
  .service-page .site-header.site-header--company-scroll,
  .contact-page .site-header,
  .contact-page .site-header.site-header--company-scroll,
  .careers-page .site-header,
  .careers-page .site-header.site-header--company-scroll {
    background: #fff;
    box-shadow: none;
    padding-top: env(safe-area-inset-top, 0px);
    height: calc(var(--header-bar-height) + env(safe-area-inset-top, 0px));
  }

  .site-header__inner {
    min-height: var(--header-bar-height);
    height: var(--header-bar-height);
    column-gap: 12px;
    justify-content: space-between;
    position: relative;
    z-index: 55;
  }

  .site-header__logo--mobile,
  .site-header__mobile-end {
    display: flex;
    align-items: center;
  }

  body .site-header__logo--on-dark,
  body .site-header__logo--on-light {
    display: none !important;
  }

  body .site-header__logo--mobile {
    display: block !important;
    width: auto;
    max-width: 148px;
    height: 27px;
    min-height: 0;
    object-fit: contain;
  }

  .site-header__mobile-end {
    flex: 0 0 auto;
  }

  .site-header__menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 8px;
    color: inherit;
  }

  .site-header__menu-toggle:focus-visible {
    outline: 2px solid var(--nav-active);
    outline-offset: 2px;
  }

  .site-header__menu-icon {
    width: 0.32rem;
    height: 0.32rem;
    max-width: none;
    object-fit: contain;
    flex-shrink: 0;
  }

  /* H5：全屏白底抽屉自右侧滑入（与稿面一致；不使用顶栏下灰遮罩） */
  .site-header__backdrop {
    display: none !important;
  }

  .site-header__drawer-shell {
    position: fixed;
    inset: 0;
    z-index: 60;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    column-gap: 0;
    row-gap: 0;
    background: #ffffff;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.32s;
    box-shadow: none;
  }

  .site-header--nav-open .site-header__drawer-shell {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
  }

  .site-header__drawer-shell .site-header__nav {
    display: flex !important;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 0;
    box-shadow: none;
  }

  .site-header__drawer-shell .site-header__drawer-head {
    display: flex;
    flex-shrink: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    height: calc(var(--header-bar-height) + env(safe-area-inset-top, 0px));
    padding: env(safe-area-inset-top, 0px) 16px 0;
    background: #ffffff;
    border-bottom: none;
  }

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

  .site-header__drawer-logo {
    display: block;
    width: 1.98rem;
    object-fit: contain;
  }

  .site-header__drawer-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    color: inherit;
    flex-shrink: 0;
  }

  .site-header__drawer-close:focus-visible {
    outline: 2px solid var(--nav-active);
    outline-offset: 2px;
  }

  .site-header__drawer-close-icon {
    width: 32px;
    height: 32px;
    max-width: none;
    object-fit: contain;
    flex-shrink: 0;
  }

  .site-header__drawer-shell .site-header__menu {
    flex: 1 1 auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    flex-wrap: nowrap;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 32px 28px;
    margin: 0;
  }

  .site-header__drawer-shell .site-header__menu > li {
    border-bottom: none;
  }

  .site-header__drawer-shell .site-header__link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.45;
    white-space: normal;
    color: #181818;
    opacity: 1;
  }

  .site-header__drawer-shell .site-header__link:hover {
    opacity: 0.88;
  }

  .site-header__drawer-shell .site-header__link--active {
    color: #378aff;
    font-weight: 500;
  }

  body[data-page='home'] .site-header__drawer-shell .site-header__link--active {
    color: #1F6FDB;
  }

  .site-header__drawer-shell .site-header__end {
    display: flex !important;
    position: relative;
    flex: 0 0 auto;
    left: auto;
    right: auto;
    bottom: auto;
    justify-content: flex-start;
    align-items: stretch;
    padding: 18px 32px calc(18px + env(safe-area-inset-bottom, 0px));
    background: #ffffff;
    box-shadow: none;
  }

  .site-header__drawer-shell .language-selector {
    width: 100%;
    max-width: 100%;
  }

  .site-header__drawer-shell .language-current {
    display: none;
  }

  .site-header__drawer-shell .language-dropdown {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 8px 24px;
    position: static;
    left: auto;
    top: auto;
    bottom: auto;
    transform: none;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .site-header__drawer-shell .language-dropdown::before {
    display: none;
  }

  .site-header__drawer-shell .language-option {
    width: auto;
    padding: 6px 0;
    margin: 0;
    border-radius: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    text-align: left;
    color: #181818;
  }

  .site-header__drawer-shell .language-option + .language-option {
    margin-top: 0;
  }

  .site-header__drawer-shell .language-option--active {
    color: #1F6FDB;
    font-weight: 500;
    background: transparent;
  }

  .site-header__drawer-shell .language-option--active:hover {
    color: #1F6FDB;
    background: transparent;
  }
}

/* =========================================
   3. Hero（Figma Banner 469:6839）
   ========================================= */

.hero-banner {
  position: relative;
  min-height: 1080px;
  overflow: hidden;
}

.hero-banner__slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-banner__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.hero-banner__slide--active {
  opacity: 1;
  z-index: 2;
}

.hero-banner__slide--leaving {
  opacity: 0;
  z-index: 1;
}

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

@keyframes hero-banner-slide-zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

.hero-banner__slide-img--pc {
  transform: scale(1);
  will-change: transform;
  backface-visibility: hidden;
  transition: transform 0s linear 1s;
}

.hero-banner__slide--active .hero-banner__slide-img--pc {
  transition: none;
  animation: hero-banner-slide-zoom 5800ms ease-out forwards;
}

.hero-banner__slide--leaving .hero-banner__slide-img--pc {
  animation: none;
  transform: scale(1.08);
  transition: transform 0s linear 1s;
}

/* 双 img（--pc / --mobile）替代 picture，见文件末 @media (max-width: 768px) 切换 */
.hero-banner__slide-img--mobile,
.hero-banner__thumb-img--mobile,
.philosophy__img--mobile,
.service-card__bg--mobile,
.service-card__icon--mobile,
.careers__tab-icon--mobile,
.cta-banner__bg-img--mobile,
.site-footer__logo--mobile {
  display: none;
}

.hero-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* 与 .site-header__inner 同样在 HTML 上叠加 .container，主文案左缘与顶栏版心左缘对齐 */
.hero-banner__content {
  position: relative;
  z-index: 2;
  min-height: 1080px;
  display: flex;
  align-items: center;
}

/* 首页 PC Hero 视口满屏高度：css/home-pc-hero.css（仅 index 引入） */

.hero-banner__title {
  font-family: var(--font-hero-cn);
  font-weight: 500;
  font-size: 144px;
  line-height: 1.3;
  max-width: 1300px;
  color: var(--color-white);
  margin: 0 0 26px;
}

.hero-banner__sub {
  font-family: var(--font-hero-cn);
  font-weight: 300;
  font-size: 24px;
  line-height: 38px;
  color: var(--color-white);
  margin: 0;
}

.hero-banner__scroll-cluster {
  position: absolute;
  z-index: 2;
  /* 与版心左缘对齐后保留原 Figma 相对标题的 16px 偏移 */
  left: calc((100vw - min(100vw, 1520px)) / 2 + 16px);
  top: 845px;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-height: 0;
}

.hero-banner__scroll-label {
  display: block;
  flex-shrink: 0;
  width: 16px;
  height: 45px;
  object-fit: contain;
}

.hero-banner__scroll-line {
  display: block;
  align-self: center;
  width: 1px;
  flex: 1 1 auto;
  min-height: 0;
  background: #fff;
}

.hero-banner__thumbs {
  position: absolute;
  z-index: 2;
  left: calc((100vw - min(100vw, 1520px)) / 2 + 80px);
  top: 963px;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: 8px;
}

.hero-banner__thumb {
  position: relative;
  display: block;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  width: 196px;
  min-height: 80px;
  flex-shrink: 0;
  border-radius: 4px;
  transition: transform 0.2s ease;
}

.hero-banner__thumb:hover {
  transform: translateY(-1px);
}

.hero-banner__thumb-surface {
  position: relative;
  display: block;
  width: 196px;
  min-height: 80px;
  border-radius: 4px;
  overflow: hidden;
}

.hero-banner__thumb-img {
  width: 100%;
  height: 100%;
  min-height: 80px;
  object-fit: cover;
}

.hero-banner__thumb-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.hero-banner__thumb:not(.hero-banner__thumb--active) .hero-banner__thumb-shade {
  opacity: 1;
}

.hero-banner__thumb:not(.hero-banner__thumb--active)[data-hero-slide='0'] .hero-banner__thumb-shade,
.hero-banner__thumb:not(.hero-banner__thumb--active)[data-hero-slide='1'] .hero-banner__thumb-shade {
  background: linear-gradient(90deg, rgba(69, 160, 252, 0.1) 0%, rgba(69, 160, 252, 0.1) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-banner__thumb:not(.hero-banner__thumb--active)[data-hero-slide='2'] .hero-banner__thumb-shade {
  background: linear-gradient(90deg, rgba(69, 160, 252, 0.1) 0%, rgba(69, 160, 252, 0.1) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-banner__thumb-bars {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  display: none;
  pointer-events: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  overflow: hidden;
}

.hero-banner__thumb--active .hero-banner__thumb-bars {
  display: block;
}

.hero-banner__thumb-bar-base {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.4);
}

@keyframes hero-banner-thumb-progress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.hero-banner__thumb-bar-fill {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  width: 0;
  max-width: 100%;
  background: linear-gradient(90deg, #378aff 0%, #58bff7 60%, #58bff7 100%);
}

/* 与 main.js 轮播间隔一致：--hero-thumb-autoplay 由脚本写入 .hero-banner */
.hero-banner__thumb--active .hero-banner__thumb-bar-fill {
  animation: hero-banner-thumb-progress var(--hero-thumb-autoplay, 5000ms) linear forwards;
}

.hero-banner__thumb--active .hero-banner__thumb-surface {
  box-shadow: 0 0 0 2px #ffffff;
}

@media (min-width: 769px) and (max-width: 1919px) {
  .hero-banner__title {
    font-size: clamp(96px, 7.5vw, 144px);
    margin-bottom: clamp(16px, 1.35vw, 26px);
  }

  .hero-banner__sub {
    font-size: clamp(18px, 1.25vw, 24px);
    line-height: clamp(30px, 1.98vw, 38px);
  }

  .hero-banner__scroll-cluster {
    top: 78.24%;
  }

  .hero-banner__thumbs {
    top: 89.17%;
  }
}

@media (min-width: 769px) and (max-width: 1440px) {
  .hero-banner__title {
    font-size: 72px;
  }

  .hero-banner__scroll-cluster {
    left: calc((100vw - min(100vw, 1200px)) / 2 + 48px);
  }

  .hero-banner__thumbs {
    left: calc((100vw - min(100vw, 1200px)) / 2 + 48px + 40px);
  }
}

/* =========================================
   4. Philosophy / 關於我們（Figma About 758:5717）
   ========================================= */

.philosophy {
  padding: 96px 0;
  background: var(--color-white);
}

/* 对称内边距 + 内层卡片限宽并 margin 自动，使整块在视口内水平居中 */
.philosophy__outer.container {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  padding-left: 80px;
  padding-right: 80px;
  overflow: visible;
}

.philosophy__card {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  width: min(100%, 1480px);
  margin-left: auto;
  margin-right: auto;
  min-height: 520px;
  background: #f1f7ff;
  border-radius: 48px;
  overflow: visible;
  position: relative;
  z-index: 0;
  /* 视觉区脱离文档流后，为左侧插画保留与 Figma 758:5717 一致的比例占位 */
  padding-left: min(636px, 42.97%);
  box-sizing: border-box;
}

/* 叠在居中版心（.philosophy__outer.container）之上，宽高略大于内层卡片区域 */

.philosophy__label-rule {
  display: none;
}

.philosophy__visual {
  position: absolute;
  z-index: 2;
  left: 0;
  top: -32px;
  bottom: -32px;
  width: min(688px, calc(42.97% + 80px));
  max-width: none;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  pointer-events: none;
}

.philosophy__img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.philosophy__img--pc {
  display: block;
}

.philosophy__img--mobile {
  display: none;
}

.philosophy__copy {
  position: relative;
  z-index: 3;
  flex: 1 1 0%;
  min-width: 0;
  padding: 60px 80px 60px 114px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}

.philosophy__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.philosophy__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.philosophy__label-text {
  font-family: var(--font-hero-cn);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: #1f6fdb;
  margin: 0;
  min-height: 20px;
}

.philosophy__label-line {
  display: block;
  width: 60px;
  height: 8px;
}

.philosophy__title {
  font-family: var(--font-hero-cn);
  font-size: 48px;
  font-weight: 700;
  line-height: normal;
  color: #181818;
  margin: 0;
}

.philosophy__body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
}

.philosophy__body > :first-child {
  margin-bottom: 25px;
}

.philosophy__para {
  font-family: var(--font-hero-cn);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #181818;
  margin: 0;
}

.philosophy__para + .philosophy__para {
  margin-top: 12px;
}

/* About 主按钮（Figma About 758:5729，与卡片 48px 圆角比例协调） */
.philosophy__btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 52px;
  padding: 14px 32px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #378aff 0%, #4ea4ff 100%);
  color: #ffffff;
  font-family: var(--font-hero-cn);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: background-image 0.2s ease;
}

.philosophy__btn:hover,
.philosophy__btn:active {
  background-image: linear-gradient(rgba(24, 24, 24, 0.05), rgba(24, 24, 24, 0.05)),
    linear-gradient(90deg, #378aff 0%, #4ea4ff 100%);
}

.philosophy__btn:focus-visible {
  outline: 2px solid #58bff7;
  outline-offset: 3px;
}

@media (min-width: 769px) and (max-width: 1440px) {
  .philosophy__outer.container {
    padding: 0 48px;
  }

  .philosophy__card {
    min-height: 480px;
    padding-left: min(580px, 45%);
  }

  .philosophy__copy {
    padding: 48px 48px 48px 90px;
    max-width: none;
  }

  .philosophy__title {
    font-size: 40px;
  }

  .philosophy__visual {
    left: 0;
    top: -28px;
    bottom: -28px;
    width: min(640px, calc(45% + 64px));
  }
}

/* =========================================
   5. Services（Figma Service 399:4320）
   ========================================= */

.service-showcase {
  padding: 96px 0 80px;
  background: #f1f7ff;
}

.service-showcase__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 56px;
}

.service-showcase__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 8px;
}

.service-showcase__kicker {
  font-family: var(--font-hero-cn);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: #1f6fdb;
  margin: 0;
  min-height: 20px;
}

.service-showcase__label-line,
.careers__label-line {
  display: block;
  width: 60px;
  height: 8px;
}

.careers__label-rule {
  display: none;
}

.careers__title-br {
  display: none;
}

.service-showcase__label-rule {
  display: none;
}

/* i18n 标题内换行：仅 ≤768px 展示（Figma 847:5991 双行主标题） */
.service-showcase__title-br {
  display: none;
}


.service-showcase__title {
  font-family: var(--font-hero-cn);
  font-size: 48px;
  font-weight: 700;
  line-height: normal;
  color: #181818;
  margin: 0;
}

.service-showcase__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  row-gap: 12px;
  column-gap: 40px;
  max-width: 1520px;
}

.service-card {
  position: relative;
  flex: 0 0 480px;
  width: 480px;
  max-width: 100%;
  min-height: 384px;
  cursor: pointer;
}

.service-card__surface {
  position: relative;
  overflow: hidden;
  border-radius: 24px 24px 24px 64px;
  min-height: 320px;
  box-shadow: none;
  transition: box-shadow 0.35s ease;
}

.service-showcase__grid.container .service-card__title,
.service-showcase__grid.container .service-card__desc {
  color: #181818;
  transition: color 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover .service-card__bg-hover {
    opacity: 1;
  }

  .service-showcase__grid.container .service-card:hover .service-card__title,
  .service-showcase__grid.container .service-card:hover .service-card__desc {
    color: #ffffff;
  }

  .service-card--01:hover .service-card__surface {
    box-shadow: 0 0 64px 0 rgba(0, 74, 231, 0.3);
  }

  .service-card--02:hover .service-card__surface {
    box-shadow: 0 0 64px 0 rgba(124, 105, 249, 0.30);
  }

  .service-card--03:hover .service-card__surface {
    box-shadow: 0 0 64px 0 rgba(255, 181, 22, 0.30);
  }

  .service-card--04:hover .service-card__surface {
    box-shadow: 0 0 64px 0 rgba(255, 131, 22, 0.30);
  }

  .service-card--05:hover .service-card__surface {
    box-shadow: 0 0 64px 0 rgba(0, 148, 75, 0.30);
  }

  .service-card:hover .service-card__icon-wrap {
    transform: translateY(-8px);
  }
}

.service-card__bg,
.service-card__bg-hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: center;
  display: block;
}

.service-card__bg {
  z-index: 0;
}

.service-card__bg-hover {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.service-card__content {
  position: relative;
  z-index: 2;
  padding: 130px 48px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

html[lang="ja"] .service-card--02 .service-card__content {
  gap: 5px;
}

.service-card--01 .service-card__content {
  padding-left: 40px;
  padding-right: 40px;
}

.service-card__title {
  font-family: var(--font-hero-cn);
  font-size: 28px;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  color: #181818;
}

.service-card__desc {
  font-family: var(--font-hero-cn);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  color: #181818;
}

.service-card__para {
  margin: 0;
}

html[lang="ja"] .service-card--03 .service-card__para,
html[lang="en"] .service-card--03 .service-card__para {
  max-width: 390px;
}

.service-card__icon-wrap {
  position: absolute;
  top: -4px;
  right: 0;
  width: 52%;
  max-width: 250px;
  z-index: 3;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  transform: translateY(0);
  transition: transform 0.35s ease;
}

.service-card--01 .service-card__icon-wrap {
  top: -75px;
}

.service-card--02 .service-card__icon-wrap {
  top: -63px;
}

.service-card--03 .service-card__icon-wrap,
.service-card--04 .service-card__icon-wrap,
.service-card--05 .service-card__icon-wrap {
  top: -62px;
}

.service-card__icon {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  display: block;
}

/* 默认仅显示 PC 图标；H5 在媒体查询中切换为 mobile 图标 */
.service-card__icon.service-card__icon--mobile {
  display: none;
}

.service-card--01 .service-card__icon {
  width: 250px;
  height: auto;
  max-height: none;
}

.service-card--02 .service-card__icon {
  width: 250px;
  height: auto;
  max-height: none;
}

.service-card--03 .service-card__icon {
  width: 250px;
  height: auto;
  max-height: none;
}

.service-card--04 .service-card__icon {
  width: 250px;
  height: auto;
  max-height: none;
}

.service-card--05 .service-card__icon {
  width: 250px;
  height: auto;
  max-height: none;
}

.service-showcase__actions {
  display: flex;
  justify-content: center;
  margin-top: -10px;
}

.service-showcase__more {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 8px;
  background: linear-gradient(90deg, #378aff 0%, #4ea4ff 100%);
  color: var(--color-white);
  font-family: var(--font-hero-cn);
  font-size: 18px;
  font-weight: 500;
  transition: background-image 0.2s ease;
}

.service-showcase__more:hover,
.service-showcase__more:active {
  background-image: linear-gradient(rgba(24, 24, 24, 0.05), rgba(24, 24, 24, 0.05)),
    linear-gradient(90deg, #378aff 0%, #4ea4ff 100%);
}

.service-showcase__more-icon,
.careers__btn-icon,
.contact-panel__map-icon,
.philosophy__btn-icon {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.contact-panel__map-icon {
  margin-left: 2px;
}

@media (max-width: 1520px) {
  .service-card {
    flex: 0 1 calc((100% - 80px) / 3);
    min-width: 280px;
    width: auto;
  }
}

@media (max-width: 1200px) {
  .service-card {
    flex: 0 1 calc((100% - 40px) / 2);
  }

  .service-showcase__title {
    font-size: 36px;
  }

  .service-card__content {
    padding: 40px 32px 32px 32px;
  }
}

/* =========================================
   6. Careers（Figma Career 399:4412）
   ========================================= */

.careers {
  padding: 96px 0 48px;
  background: var(--color-white);
}

@media (min-width: 769px) {
  #careers-shell-home-placeholder .careers {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.careers__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 48px;
}

.careers__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 8px;
}

.careers__kicker {
  font-family: var(--font-hero-cn);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: #1f6fdb;
  margin: 0;
  min-height: 20px;
}

.careers__title {
  font-family: var(--font-hero-cn);
  font-size: 48px;
  font-weight: 700;
  line-height: normal;
  color: #181818;
  margin: 0;
}

.careers__shell {
  border-radius: 16px;
  background: var(--color-white);
  box-shadow: 0 0 80px rgba(24, 24, 24, 0.05);
  overflow: hidden;
}

.careers__layout {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  min-height: 500px;
}

.careers__tabs {
  flex: 0 0 496px;
  width: 496px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  background: var(--color-white);
}

.careers__tab {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  width: 100%;
  text-align: left;
  padding: 16px 24px;
  border: none;
  border-bottom: 1px solid #efefef;
  border-radius: 0;
  background: var(--color-white);
  font: inherit;
  font-family: var(--font-hero-cn);
  font-size: 18px;
  font-weight: 500;
  color: #181818;
  opacity: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.careers__tab:hover:not(.careers__tab--active) {
  background: #fafbfd;
}

.careers__tab--active {
  background: linear-gradient(
    -19.92deg,
    rgba(124, 202, 251, 0) 0%,
    rgba(109, 169, 250, 0.1) 60%,
    rgba(91, 139, 249, 0.2) 100%
  );
  color: #1f6fdb;
  font-weight: 700;
}

.careers__tab--active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, #378AFF 0%, #58BFF7 60%, #4EA4FF 100%);
  border-radius: 0 2px 2px 0;
}

.careers__tab:not(.careers__tab--active) .careers__tab-text {
  opacity: 0.6;
}

.careers__tab-icon-wrap {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.careers__tab-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}

/* 确保默认（PC）只显示 PC 图标，避免被通用 .careers__tab-icon 覆盖 */
.careers__tab-icon--mobile {
  display: none;
}

.careers__panels {
  flex: 1 1 0%;
  min-width: 0;
  padding: 48px;
  border-left: 1px solid #efefef;
  background: var(--color-white);
}

.careers__panel {
  display: none;
}

.careers__panel--active {
  display: block;
}

.careers__block {
  margin-bottom: 36px;
}

.careers__block:last-child {
  margin-bottom: 0;
}

.careers__block-title {
  font-family: var(--font-hero-cn);
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  color: #181818;
  margin: 0 0 16px;
}

.careers__list {
  margin: 0;
  padding-left: 10px;
  list-style: none;
}

.careers__list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  list-style: none;
  font-family: var(--font-hero-cn);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: rgba(24, 24, 24, 0.8);
  margin-bottom: 0;
}

.careers__list li::before {
  content: '';
  flex: 0 0 auto;
  width: 4px;
  height: 4px;
  /* 与 26px 行高首行对齐；不支持 lh 时退回 (26-4)/2 */
  margin-top: 11px;
  margin-top: calc(0.5lh - 2px);
  border-radius: 50%;
  background: #181818;
}

.careers__list li + li {
  margin-top: 2px;
}

.careers__cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.careers__btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 8px;
  background: linear-gradient(90deg, #378aff 0%, #4ea4ff 100%);
  color: var(--color-white);
  font-family: var(--font-hero-cn);
  font-size: 18px;
  font-weight: 500;
  transition: background-image 0.2s ease;
}

.careers__btn:hover,
.careers__btn:active {
  background-image: linear-gradient(rgba(24, 24, 24, 0.05), rgba(24, 24, 24, 0.05)),
    linear-gradient(90deg, #378aff 0%, #4ea4ff 100%);
}

@media (max-width: 1200px) {
  .careers__layout {
    flex-direction: column;
    min-height: 0;
  }

  .careers__tabs {
    flex: 0 0 auto;
    width: 100%;
  }

  .careers__panels {
    border-left: none;
    border-top: 1px solid #efefef;
    padding: 32px 24px;
  }

  .careers__title {
    font-size: 36px;
  }
}

/* =========================================
   7. CTA
   ========================================= */

.cta-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  min-height: 300px;
  padding: 56px 0 60px;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}


.cta-banner__title-br,
.cta-banner__sub-br {
  display: none;
}

.cta-banner__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-family: var(--font-hero-cn);
}

.cta-banner__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.35;
  color: #181818;
  margin: 0;
}

.cta-banner__title-accent {
  background: linear-gradient(90deg, #378aff 0%, #58bff7 60%, #4ea4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-banner__sub {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
  color: #181818;
  opacity: 0.85;
  margin: 0 0 8px;
  max-width: 52em;
}

.cta-banner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 132px;
  padding: 0 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: background-image 0.2s ease;
}

.cta-banner__btn--primary {
  background: linear-gradient(90deg, #378aff 0%, #4ea4ff 100%);
  color: #ffffff;
}

.cta-banner__btn--primary:hover,
.cta-banner__btn--primary:active {
  background-image: linear-gradient(rgba(24, 24, 24, 0.05), rgba(24, 24, 24, 0.05)),
    linear-gradient(90deg, #378aff 0%, #4ea4ff 100%);
}

.cta-banner__btn--ghost {
  background: #ffffff;
  color: #1f6fdb;
}

.cta-banner__btn--ghost:hover,
.cta-banner__btn--ghost:active {
  background-image: linear-gradient(rgba(24, 24, 24, 0.01), rgba(24, 24, 24, 0.01)),
    linear-gradient(#ffffff, #ffffff);
}

/* =========================================
   8. Footer
   ========================================= */

.site-footer {
  background: #f8f9fb;
  color: #181818;
}

.site-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 100px 0 56px;
  border-bottom: 1px solid rgba(24, 24, 24, 0.08);
}

.site-footer__brand {
  flex: 0 0 auto;
  display: block;
}

.site-footer__brand:hover .site-footer__logo {
  opacity: 0.92;
}

.site-footer__logo {
  display: block;
  height: auto;
  max-width: min(240px, 36vw);
  width: auto;
}

/* 默认仅展示 PC 端 logo；移动端在下方 @media (max-width: 768px) 中再切换显示 */
.site-footer__logo--mobile {
  display: none;
}

.site-footer__nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
  padding: 0 12px;
  font-family: var(--font-hero-cn);
}

.site-footer__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 52rem;
}

.site-footer__menu li {
  margin: 0;
}

.site-footer__menu a {
  font-size: 15px;
  font-weight: 500;
  color: #181818;
  transition: color 0.2s ease, opacity 0.2s ease;
  opacity: 0.8;
}

.site-footer__menu a:hover {
  color: var(--color-primary);
}

.site-footer__contact-block {
  flex: 0 0 auto;
  max-width: 22rem;
  text-align: left;
  font-family: var(--font-hero-cn);
}

.site-footer__contact-title {
  font-size: 15px;
  font-weight: 500;
  color: #181818;
  margin: 0 0 14px;
  opacity: 0.8;
}

.site-footer__contact-lines {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #181818;
  opacity: 0.8;
}

.site-footer__contact-lines li {
  margin: 0 0 4px;
}

.site-footer__contact-lines li:last-child {
  margin-bottom: 0;
}

.site-footer__contact-line--nowrap {
  white-space: nowrap;
}

.site-footer__bottom {
  padding: 28px 0 36px;
}

.site-footer__bottom-inner {
  text-align: center;
}

.site-footer__copy {
  font-family: var(--font-hero-cn);
  font-size: 14px;
  line-height: 1.6;
  color: #181818;
  font-weight: 400;
  margin: 0 0 8px;
  opacity: 0.6;
}

.site-footer__credit {
  font-family: var(--font-hero-cn);
  font-size: 14px;
  line-height: 1.5;
  color: #181818;
  font-weight: 400;
  margin: 0;
  opacity: 0.6;
}

@media (max-width: 1100px) {
  .site-footer__menu {
    gap: 10px 20px;
  }

  .site-footer__menu a {
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  /* 堆叠页脚：不用 PC 的 space-between + 大 gap；769–900px 不会命中下方 768 专用规则，须在此收紧 */
  .site-footer__top {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 20px 32px;
    gap: 24px;
  }

  .site-footer__brand {
    align-self: center;
  }

  .site-footer__logo {
    max-width: 220px;
  }

  .site-footer__nav {
    flex: 0 0 auto;
    order: 2;
    width: 100%;
    padding: 0;
  }

  .site-footer__contact-block {
    flex: 0 0 auto;
    order: 3;
    max-width: 100%;
    text-align: center;
  }

  .site-footer__contact-lines {
    font-size: 13px;
  }
}

/* PC 页脚顶栏（≥901px）：品牌 / 导航 /「联系我们」标题 同一水平中线对齐；与 ≤900 堆叠、≤768 H5 隔离 */
@media (min-width: 901px) {
  .site-footer__top {
    display: grid;
    grid-template-columns: auto 1fr minmax(0, 22rem);
    column-gap: 32px;
    row-gap: 14px;
    align-items: center;
  }

  .site-footer__contact-block {
    display: contents;
  }

  .site-footer__brand {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }

  .site-footer__nav {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    align-items: center;
  }

  .site-footer__contact-title {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
    margin: 0;
  }

  .site-footer__contact-lines {
    grid-column: 3;
    grid-row: 2;
    align-self: start;
  }
}

/* =========================================
   9. 公司信息页（PC / Figma 303:1018）
   ========================================= */

.company-page__main {
  padding-top: 0;
}

/* fixed 顶栏不占文档流：在 body 预留顶栏高度，整页内容下移，避免首屏被挡（仅依赖 .page-hero 的 padding 时易被覆盖/感知为未生效） */
body.company-page {
  padding-top: calc(var(--header-bar-height) + env(safe-area-inset-top, 0px));
}

/* 公司信息页：浅色顶栏（与浅色 hero 对比度；底色见 body:not([data-page="home"]) .site-header） */
.company-page .site-header {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.company-page .site-header--company-scroll {
  box-shadow: 0 8px 24px rgba(24, 39, 75, 0.08);
}

.company-page .site-header__link {
  color: #181818;
}

.company-page .site-header__link:hover {
  color: #181818;
  opacity: 0.82;
}

.company-page .site-header__link--active {
  color: #1f6fdb;
  opacity: 1;
}

.company-page .site-header__link--active:hover {
  color: #1f6fdb;
  opacity: 0.92;
}

/* Figma 456-4855：内页首屏，背景 company_top_bg.png（左文右图在同一背景内） */
/* 顶栏占位由 body.company-page 的 padding-top 承担，此处不再叠加 header 高度 */
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background-color: #eef4fc;
  background-image: url(../images/company_top_bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* 版心由 .container 控制；勿在此写 max-width，否则会盖过 ≤1440px 时 .container 的 max-width 与左右 padding */
.page-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 420px;
  /* 勿用 padding 简写覆盖左右：本元素同时是 .container，≤1440px 时需保留 .container 的 padding-inline 与顶栏一致 */
  padding-top: 48px;
  padding-bottom: 64px;
  box-sizing: border-box;
}

.page-hero__copy {
  flex: 0 1 52%;
  max-width: 640px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

.page-hero__title {
  margin: 0;
  font-family: var(--font-hero-cn);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1F6FDB;
}

/* Figma 303-1071：左文右图卡片（图块相对 shell 的 padding box 贴右，不受 .container 左右 padding 内缩影响，叠在文案之上） */
.company-msg {
  padding: 96px 0;
  background: #ffffff;
  overflow: visible;
}

.company-msg__shell {
  --company-msg-photo-out-y: 40px;
  /* 与 .container 同元素，供子项绝对定位的包含块（padding box 右缘即白卡可视右缘） */
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  /* stretch：左栏顶与 shell 顶对齐，padding-top 才严格等于「到文案」的距离；center 会把整列上下居中，改 padding-top 几乎看不出 */
  align-items: stretch;
  width: 100%;
  /* max-width 由 .container（1520）与下方 company-spec__grid 版心左对齐 */
  margin: 0 auto;
  min-height: 520px;
  background: #ffffff;
  border-radius: 28px;
  overflow: visible;
  box-shadow: 0 0 64px 0 rgba(216, 216, 216, 0.30);
}

.company-msg__copy {
  position: relative;
  z-index: 1;
  flex: 1 1 56%;
  min-width: 0;
  max-width: 56%;
  /* 左栏内容距 shell 顶 64px（Figma） */
  padding: 64px 36px 0 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* flex-start：上间距只由 padding-top 控制；center 会在列内上下留白，padding-top:0 也像没变 */
  justify-content: flex-start;
  box-sizing: border-box;
}

.company-msg__brand {
  margin: 0 0 48px;
  font-family: var(--font-hero-cn);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #181818;
}

.company-msg__block {
  width: 100%;
  margin: 0 0 48px;
}

.company-msg__block:last-of-type {
  margin-bottom: 0;
}

.company-msg__subhead {
  margin: 0 0 12px;
  font-family: var(--font-hero-cn);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #378aff;
}

.company-msg__richtext {
  width: 100%;
}

.company-msg__para {
  margin: 0;
  font-family: var(--font-hero-cn);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  color: #333333;
}

.company-msg__visual {
  flex: 1 1 44%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: stretch;
  padding: 0;
  /* static：勿建立包含块，使 .company-msg__figure 相对 .company-msg__shell 定位到 padding box 右缘 */
  position: static;
}

.company-msg__figure {
  position: absolute;
  z-index: 2;
  top: calc(-1 * var(--company-msg-photo-out-y));
  right: 0;
  bottom: calc(-1 * var(--company-msg-photo-out-y));
  overflow: visible;
}

/* 与 picture/source 配合：不插入额外盒，PC 上 figure→img 尺寸链不变 */
.company-msg__photo-wrap {
  display: contents;
}

.company-msg__photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  /* 略偏左：裁切锚点 + 图整体左移 */
  object-position: 30% center;
  border-radius: 24px;
}

/* 相对主图容器：右缘与主图右缘重合，距主图顶 112px */
.company-msg__right-icon {
  position: absolute;
  z-index: 3;
  top: 100px;
  right: -48px;
  display: block;
  width: 120px;
  height: 120px;
}

/* 相对主图容器：左缘贴主图左缘，距主图底 74px，宽 113px */
.company-msg__left-icon {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 74px;
  display: block;
  width: 113px;
  height: auto;
}

/* Figma 303-1089：双卡片（业务范围 / 服务积累） */
.company-spec {
  padding: 48px 0 64px;
  background: #ffffff;
}

.company-spec__grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 24px;
  width: 100%;
  max-width: 1520px;
}

.company-spec-card {
  flex: 1 1 50%;
  min-width: 0;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: 40px 36px 44px;
  box-sizing: border-box;
  background-color: #f5f8ff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

/* Figma 303-1094：业务范围卡（左装饰图 + 标题左对齐 + 两行五格） */
.company-spec-card--range {
  background-image: url(../images/company_range_img_left.png);
  background-position: left center;
  background-size: cover;
  padding: 48px 44px 48px 48px;
}

.company-spec-card--range .company-spec-card__title {
  margin: 0 0 32px;
  max-width: 22em;
}

/* Figma 303-1112：服务积累卡（右装饰、四宫格数字图为 card_num*.png） */
.company-spec-card--stats {
  background-image: url(../images/company_server_img_right.png);
  background-position: right center;
  background-size: cover;
  padding: 48px 48px 48px 44px;
}

@media (min-width: 769px) {
  html[lang="ja"] body[data-page="company"] .company-spec__grid .company-spec-card.company-spec-card--stats,
  html[lang="en"] body[data-page="company"] .company-spec__grid .company-spec-card.company-spec-card--stats {
    padding-top: 20px;
  }
}

.company-spec-card--stats .company-spec-card__title {
  margin: 0 0 48px;
}

.company-spec-card__title {
  margin: 0 0 28px;
  font-family: var(--font-hero-cn);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  color: #181818;
}

html[lang="ja"] .company-spec-card__title,
html[lang="en"] .company-spec-card__title {
  max-width: 450px;
  margin-inline: auto;
  text-align: center;
}

@media (min-width: 769px) {
  body[data-page="company"] #company-spec-range-title,
  body[data-page="company"] #company-spec-stats-title {
    width: 100%;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

.company-spec-range {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 28px;
  align-items: start;
  justify-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.company-spec-range__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.company-spec-range__item:nth-child(1) {
  grid-column: 1 / 3;
}

.company-spec-range__item:nth-child(2) {
  grid-column: 3 / 5;
}

.company-spec-range__item:nth-child(3) {
  grid-column: 5 / 7;
}

/* 第二行：第 4 项与第 1 项同列宽与居中方式，第 5 项与第 2 项同列宽与居中方式 */
.company-spec-range__item:nth-child(4) {
  grid-column: 1 / 3;
}

.company-spec-range__item:nth-child(5) {
  grid-column: 3 / 5;
}

.company-spec-range__icon {
  display: block;
  width: auto;
  height: auto;
  max-width: 96px;
  max-height: 96px;
  object-fit: contain;
}

.company-spec-range__label {
  display: block;
  font-family: var(--font-hero-cn);
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #181818;
}

/* 日语「ゲームバックエンドツール」较长：父级 align-items:center 使标签按内容收缩，换行过窄；拉满单元格宽度让第二行字数更均衡 */
html[lang="ja"] .company-spec-range__item:nth-child(3) .company-spec-range__label {
  align-self: stretch;
  max-width: 150px;
}

/* 2×2：整区在卡内居中；每格上图下文且与截图一致左对齐 */
.company-spec-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 64px;
  align-items: start;
  justify-items: stretch;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}

.company-spec-stats__cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 769px) {
  html[lang="en"] body[data-page="company"] .company-spec-stats {
    padding-right: 23px;
  }

  body[data-page="company"] .company-spec-stats__cell:nth-child(2),
  body[data-page="company"] .company-spec-stats__cell:nth-child(4) {
    align-items: end;
  }

  body[data-page="company"] .company-spec-stats__cell:nth-child(2) .company-spec-stats__label,
  body[data-page="company"] .company-spec-stats__cell:nth-child(4) .company-spec-stats__label {
    width: min(100%, 168px);
    text-align: left;
  }

  body[data-page="company"] .company-spec-stats__cell:nth-child(4) .company-spec-stats__label {
    width: min(100%, 168px);
    max-width: 168px;
    white-space: nowrap;
  }

  body[data-page="company"] .company-spec-stats__cell:nth-child(4) .company-spec-stats__num.company-spec-stats__num--pc {
    width: min(100%, 168px);
    object-position: left center;
  }

  body[data-page="company"] .company-spec-stats__cell:nth-child(2) .company-spec-stats__num.company-spec-stats__num--pc {
    width: min(100%, 168px);
    object-position: left center;
  }

  body[data-page="company"] .company-spec-stats__cell:nth-child(3) .company-spec-stats__num.company-spec-stats__num--pc,
  body[data-page="company"] .company-spec-stats__cell:nth-child(4) .company-spec-stats__num.company-spec-stats__num--pc {
    max-height: 50px;
  }
}

.company-spec-stats__value--h5 {
  display: none;
}

.company-spec-stats__num {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 168px);
  max-height: 52px;
  margin: 0;
  object-fit: contain;
}

.company-spec-stats__label {
  display: block;
  width: 100%;
  font-family: var(--font-hero-cn);
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: #181818;
  text-align: left;
}

/* Figma 303-1129：公司页底部 CTA 版心与双按钮（背景 company_plan_bg.png） */
.company-access {
  padding: 81px 0;
  background-color: #e8f0fc;
  background-image: url(../images/company_plan_bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.company-access__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 32px;
  margin: 0 auto;
  box-sizing: border-box;
}

.company-access__heading {
  margin: 0;
  max-width: 20em;
  font-family: var(--font-hero-cn);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: #181818;
}

/* CTA 标题拆行文案：PC 单行「量身定制 + 行业 + 解决方案」 */
.company-access__heading-line1,
.company-access__heading-line2 {
  display: inline;
  margin: 0;
  padding: 0;
  font: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
}

.company-access__heading-text--muted {
  color: #181818;
}

.company-access__heading-text--accent {
  background: linear-gradient(to left, #4ea4ff 0%, #378aff 50%, #58bff7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.company-access__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
}

.company-access__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 12px;
  font-family: var(--font-hero-cn);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
  cursor: pointer;
  transition: background-image 0.2s ease;
}

.company-access__btn--primary {
  display: flex;
  height: 48px;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: linear-gradient(90deg, #378AFF 0%, #4EA4FF 100%);
  color: #ffffff;
}

.company-access__btn--primary:hover,
.company-access__btn--primary:active {
  background-image: linear-gradient(rgba(24, 24, 24, 0.05), rgba(24, 24, 24, 0.05)),
    linear-gradient(90deg, #378aff 0%, #4ea4ff 100%);
}

.company-access__btn--ghost {
  color: #1F6FDB;
  background: #ffffff;
}

.company-access__btn--ghost:hover,
.company-access__btn--ghost:active {
  background-image: linear-gradient(rgba(24, 24, 24, 0.01), rgba(24, 24, 24, 0.01)),
    linear-gradient(#ffffff, #ffffff);
}

.company-access__btn:focus-visible {
  outline: 2px solid rgba(55, 138, 255, 0.85);
  outline-offset: 3px;
}

@media (max-width: 1440px) {
  .page-hero__inner {
    min-height: 400px;
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .page-hero__title {
    font-size: 46px;
  }

  .company-msg__shell {
    min-height: 0;
    --company-msg-photo-out-y: 28px;
  }

  .company-msg__copy {
    padding: 40px 28px 44px 40px;
  }

  .company-msg__brand {
    font-size: 30px;
    margin-bottom: 26px;
  }

  .company-msg__para {
    font-size: 16px;
  }

  .company-spec__grid {
    gap: 20px;
  }

  .company-spec-card {
    padding: 32px 24px 36px;
  }

  .company-spec-card--range {
    padding: 36px 28px 40px 32px;
  }

  .company-spec-card--range .company-spec-card__title {
    margin-bottom: 24px;
  }

  .company-spec-card--stats {
    padding: 36px 32px 40px 28px;
  }

  .company-spec-card--stats .company-spec-card__title {
    margin-bottom: 28px;
  }

  .company-spec-card__title {
    font-size: 20px;
    margin-bottom: 22px;
  }

  .company-spec-stats__cell {
    gap: 8px;
  }

  .company-spec-stats__num {
    max-height: 44px;
    max-width: min(100%, 148px);
  }

  .company-spec-stats__label {
    font-size: 15px;
    line-height: 22px;
  }

  .company-spec-range {
    column-gap: 16px;
    row-gap: 22px;
  }

  .company-spec-range__item {
    gap: 12px;
  }

  .company-spec-range__icon {
    max-width: 76px;
    max-height: 76px;
  }

  .company-spec-range__label {
    font-size: 15px;
    line-height: 22px;
  }

  .company-access {
    padding: 56px 0 72px;
  }

  .company-access__heading {
    font-size: 30px;
    line-height: 1.32;
    max-width: 22em;
  }

  .company-access__inner {
    gap: 28px;
    max-width: 100%;
  }

  .company-access__actions {
    gap: 16px;
  }

  .company-access__btn {
    min-width: 156px;
    min-height: 48px;
    padding: 12px 28px;
    font-size: 15px;
    border-radius: 10px;
  }
}

/* =========================================
   10. 服务内容页（PC / Figma 303:1474）
   ========================================= */

.service-page__main {
  padding-top: 0;
}

/* fixed 顶栏占位：与 body.company-page 一致，首屏由 .page-hero 承担不再在 hero 上叠 padding-top */
body.service-page {
  padding-top: calc(var(--header-bar-height) + env(safe-area-inset-top, 0px));
}

.service-page .site-header {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.service-page .site-header--company-scroll {
  box-shadow: 0 8px 24px rgba(24, 39, 75, 0.08);
}

.service-page .site-header__link {
  color: #181818;
}

.service-page .site-header__link:hover {
  color: #181818;
  opacity: 0.82;
}

.service-page .site-header__link--active {
  color: #1f6fdb;
  opacity: 1;
}

.service-page .site-header__link--active:hover {
  color: #1f6fdb;
  opacity: 0.92;
}

/* 服务页首屏：与 .page-hero 同结构，仅换背景图（Figma 303:1475 server_top_bg.png） */
.service-page .page-hero {
  background-image: url(../images/server_top_bg.png);
  background-position: right center;
}

/* H5 专用装饰层由 HTML 提供，仅在小屏展示（见 5b 服务内容 H5） */
.service-page .page-hero__bg-h5,
.service-page .page-hero__visual-h5 {
  display: none;
}

/* 服务内容页 Figma 303:1526：一体化服务区块与首页 §5 .service-showcase 同结构，样式不再重复定义 */
.service-page .service-showcase {
  background: transparent;
  padding-bottom: 25px;
}

/* intro 与卡片网格之间比首页多 40px */
.service-page .service-showcase__intro {
  margin-bottom: calc(56px + 40px);
}

/* 技术与流程 303:1591 */
.service-process {
  padding: 64px 0 72px;
  background: #f1f7ff;
}

.service-process__shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.service-process__page-title {
  margin: 0;
  font-family: var(--font-hero-cn);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #181818;
}

#service-process-title {
  scroll-margin-top: calc(var(--header-bar-height) + env(safe-area-inset-top, 0px) + 50px);
}

.service-tech {
  position: relative;
  width: 100%;
  max-width: 1520px;
  min-height: 486px;
  padding: 165px 48px 56px;
  background: #ffffff;
  border-radius: 32px;
  box-sizing: border-box;
}

.service-tech__head {
  position: absolute;
  left: 50%;
  top: 48px;
  transform: translateX(-50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-tech__title {
  margin: 0;
  font-family: var(--font-hero-cn);
  font-size: 28px;
  font-weight: 700;
  color: #181818;
}

.service-tech__note {
  margin: 0;
  font-family: var(--font-hero-cn);
  font-size: 16px;
  font-weight: 400;
  color: #181818;
}

.service-tech__cols {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 96px;
}

.service-tech__col {
  flex: 0 0 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.service-tech__badge {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-tech__badge-img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  display: block;
}

.service-tech__label {
  margin: 0;
  margin-top: -50px;
  font-family: var(--font-hero-cn);
  font-size: 24px;
  font-weight: 500;
  opacity: 0.8;
  color: #181818;
  text-align: center;
}

.service-tech__col:first-child .service-tech__label {
  white-space: nowrap;
}

/* 整块以最长行为宽度并水平居中；多行时各行左对齐、与最长行左缘对齐 */
.service-tech__list {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 100%;
  margin: 8px auto 0;
  padding: 0;
}

/* 最后一列（游戏相关）：列表内各行整体水平居中 */
.service-tech__col:last-child .service-tech__list {
  align-items: center;
}

.service-tech__list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-family: var(--font-hero-cn);
  font-size: 16px;
  color: #181818;
  font-weight: 400;
}

.service-tech__list-note {
  padding-left: 32px;
  opacity: 0.9;
}

/* 高于 .service-tech__list li 的字号，保证备注为 12px；各语言单行不换行 */
.service-tech__list li.service-tech__list-note {
  font-size: 12px;
  justify-content: center;
  white-space: nowrap;
}

.service-tech__col:last-child .service-tech__list-note {
  padding-left: 0;
}

.service-tech__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.service-flow {
  width: 100%;
  max-width: 1520px;
  padding: 48px 0 0;
  border-radius: 32px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
  box-sizing: border-box;
}

.service-flow__title {
  margin: 0 0 40px;
  font-family: var(--font-hero-cn);
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: #181818;
}

.service-flow__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  margin-bottom: 32px;
  padding: 0 116px;
  box-sizing: border-box;
}

.service-flow__step {
  flex: 0 1 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.service-flow__num-wrap {
  position: relative;
  width: 36px;
  height: 58px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
}

.service-flow__num-img {
  width: 36px;
  height: 58px;
  object-fit: contain;
  display: block;
}

.service-flow__label {
  margin: 0;
  font-family: var(--font-hero-cn);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0.8;
  color: #181818;
}

.service-flow__label--stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
}

.service-flow__label--stack .service-flow__stack-line {
  margin: 0;
  line-height: 32px;
}

.service-flow__dots {
  flex: 0 0 46px;
  width: 46px;
  height: 6px;
  margin-top: 26px;
  flex-shrink: 0;
  position: relative;
}

.service-flow__dots::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #EAE9FF;
  box-shadow:
    10px 0 0 0 #EAE9FF,
    20px 0 0 0 #EAE9FF,
    30px 0 0 0 #EAE9FF,
    40px 0 0 0 #EAE9FF;
}

.service-deliver {
  width: 100%;
  margin-top: 8px;
}

.service-deliver__inner {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 0 48px 36px 56px;
  min-height: 180px;
  box-sizing: border-box;
  border-radius: 16px 16px 24px 24px;
  overflow: hidden;
  background-color: #3486ff;
  background-image: url(../images/process_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.service-deliver__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
}

.service-deliver__title {
  margin: 0;
  font-family: var(--font-hero-cn);
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
}

.service-deliver__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 64px;
}

.service-deliver__list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-family: var(--font-hero-cn);
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
}

.service-deliver__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

/* 合作方式 303:1770 */
.service-coop {
  padding: 64px 0 64px;
  background: #ffffff;
  scroll-margin-top: 96px;
}

.service-coop__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-coop__title {
  margin: 0;
  font-family: var(--font-hero-cn);
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  color: #181818;
}

.service-coop__sub {
  margin: 0 0 40px;
  font-family: var(--font-hero-cn);
  font-size: 20px;
  font-weight: 400;
  color: #181818;
  opacity: 0.4;
  text-align: center;
}

.service-coop__card {
  width: 100%;
  max-width: 1520px;
  margin-top: 40px;
  padding: 48px 48px 56px;
  background: #ffffff;
  border-radius: 32px;
  box-shadow: 0 0 80px rgba(24, 24, 24, 0.05);
  box-sizing: border-box;
}

.service-coop__row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px 64px;
}

.service-coop__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.service-coop__dot {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.service-coop__text {
  font-family: var(--font-hero-cn);
  font-size: 24px;
  font-weight: 400;
  color: #181818;
  white-space: nowrap;
}

.service-coop__note {
  margin: 24px 0 0;
  font-family: var(--font-hero-cn);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  color: #181818;
  opacity: 0.8;
}

/* 底部 CTA 303:1789 */
.service-end {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-end__bg {
  position: absolute;
  inset: 0;
  background-image: url(../images/diversification_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.service-end__inner {
  position: relative;
  z-index: 1;
  padding: 72px 24px;
  text-align: center;
}

.service-end__title {
  margin: 0;
  font-family: var(--font-hero-cn);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.35;
}

.service-end__title-part {
  color: #181818;
}

.service-end__title-accent {
  background: linear-gradient(90deg, #378AFF 0%, #58BFF7 60%, #4EA4FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 1440px) {
  .service-showcase__title,
  .service-process__page-title,
  .service-coop__title,
  .service-end__title {
    font-size: 40px;
  }

  .service-tech__cols {
    gap: 48px;
    flex-wrap: wrap;
  }

  .service-flow__track {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 28px;
  }

  .service-flow__dots {
    display: none;
  }

  .service-deliver__list {
    gap: 24px 40px;
  }

  .contact-panel__name-ja {
    font-size: 34px;
  }

  .contact-panel__name-en {
    font-size: 20px;
  }

  .contact-panel__details p {
    font-size: 18px;
  }

  .contact-panel__wrap {
    min-height: 640px;
  }

  .contact-panel__figure {
    width: 480px;
    height: 480px;
  }

  .contact-panel__bg {
    height: 480px;
  }

  .contact-panel__main {
    left: 520px; /* 480 + 40 gap */
    top: 132px;
    width: calc(100% - 520px);
    max-width: 560px;
  }

  .contact-panel__details {
    width: 100%;
    max-width: 340px;
  }
}

/* =========================================
   11. 联系我们页（PC / Figma 303:1140）
   ========================================= */

.contact-page__main {
  padding-top: 0;
}

/* fixed 顶栏占位：与 body.company-page / body.service-page 一致，首屏由 .page-hero 承担 */
body.contact-page {
  padding-top: calc(var(--header-bar-height) + env(safe-area-inset-top, 0px));
}

.contact-page .site-header {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.contact-page .site-header--company-scroll {
  box-shadow: 0 8px 24px rgba(24, 39, 75, 0.08);
}

.contact-page .site-header__link {
  color: #181818;
}

.contact-page .site-header__link:hover {
  color: #181818;
  opacity: 0.82;
}

.contact-page .site-header__link--active {
  color: #1f6fdb;
  opacity: 1;
}

.contact-page .site-header__link--active:hover {
  color: #1f6fdb;
  opacity: 0.92;
}

.contact-page .site-footer {
  background: #f5f7fa;
}

/* 联系页首屏：与 .page-hero 同结构，仅换背景图（Figma 465:6720 contact_top_bg.png） */
.contact-page .page-hero {
  background-image: url(../images/contact_top_bg.png);
}

.contact-panel {
  position: relative;
  min-height: 700px;
  padding: 0;
  background: #ffffff;
}

.contact-panel__wrap {
  position: relative;
  width: 100%;
  min-height: 700px;
}

.contact-panel__bg {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 520px;
  background: #f1f7ff;
  border-radius: 48px;
  box-sizing: border-box;
}

.contact-panel__figure {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 588px;
  height: 568px;
  border-radius: 24px;
  overflow: hidden;
}

.contact-panel__figure-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-panel__main {
  position: absolute;
  left: 640px; /* 840 - 200 (container left) */
  top: 154px;
  width: 621px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.contact-panel__brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #181818;
  width: 100%;
}

.contact-panel__name-ja {
  margin: 0;
  font-family: var(--font-hero-cn);
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  width: 100%;
}

.contact-panel__name-en {
  margin: 0;
  font-family: var(--font-hero-cn);
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  opacity: 0.3;
  width: 100%;
}

.contact-panel__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.contact-panel__details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 340px;
  font-family: var(--font-hero-cn);
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  color: #181818;
}

.contact-panel__details p {
  margin: 0;
}

@media (min-width: 769px) {
  body[data-page="contact"] .contact-panel__details p:first-child {
    white-space: nowrap;
  }
}

.contact-panel__map-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-hero-cn);
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  background: linear-gradient(90deg, #378aff 0%, #4ea4ff 100%);
  transition: background-image 0.2s ease;
}

.contact-panel__map-btn:hover,
.contact-panel__map-btn:active {
  background-image: linear-gradient(rgba(24, 24, 24, 0.05), rgba(24, 24, 24, 0.05)),
    linear-gradient(90deg, #378aff 0%, #4ea4ff 100%);
}

.contact-strip {
  margin-top: 48px;
  padding: 0;
  width: 100%;
  min-height: 300px;
  background-color: #e9eef5;
  background-image: url(../images/contact_con_bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* =========================================
   12. 招聘页（PC / Figma 303:1217 Career）
   ========================================= */

.careers-page__main {
  padding-top: 0;
}

/* fixed 顶栏占位：与 body.company-page / body.service-page 一致，首屏由 .page-hero 承担 */
body.careers-page {
  padding-top: calc(var(--header-bar-height) + env(safe-area-inset-top, 0px));
}

.careers-page .site-header {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.careers-page .site-header--company-scroll {
  box-shadow: 0 8px 24px rgba(24, 39, 75, 0.08);
}

.careers-page .site-header__link {
  color: #181818;
}

.careers-page .site-header__link:hover {
  color: #181818;
  opacity: 0.82;
}

.careers-page .site-header__link--active {
  color: #1f6fdb;
  opacity: 1;
}

.careers-page .site-header__link--active:hover {
  color: #1f6fdb;
  opacity: 0.92;
}

.careers-page .site-footer {
  background: #f5f7fa;
}

/* 招聘页首屏：与 .page-hero 同结构，仅换背景图（Figma 303:1218 career_top_bg.png） */
.careers-page .page-hero {
  background-image: url(../images/career_top_bg.png);
  background-position: right center;
}

/* Join + 职缺 303:1266 */
.career-join {
  padding: 96px 0 96px;
  background: #ffffff;
}

.career-join__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 64px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.career-join__title {
  margin: 0;
  font-family: var(--font-hero-cn);
  font-size: 48px;
  font-weight: 700;
  line-height: normal;
  color: #181818;
}

.career-join__lead {
  margin: 0;
  font-family: var(--font-hero-cn);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #181818;
}

.careers-page .careers--subpage {
  padding: 0;
  margin: 0;
  background: transparent;
}

/* 福利待遇 303:1296 */
.career-benefits {
  padding: 64px 0;
  background: #f1f7ff;
}

.career-benefits__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.career-benefits__title {
  margin: 0 0 64px;
  font-family: var(--font-hero-cn);
  font-size: 48px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  color: #181818;
}

.career-benefits__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 1148px;
}

.career-benefits__row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  width: 100%;
}

.career-benefits__card {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #ffffff;
  border-radius: 16px;
  box-sizing: border-box;
}

.career-benefits__card--simple {
  gap: 24px;
  padding: 20px 32px;
  justify-content: center;
}

.career-benefits__card--detail {
  gap: 24px;
  padding: 16px 32px;
  justify-content: center;
}

.career-benefits__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

.career-benefits__label {
  margin: 0;
  font-family: var(--font-hero-cn);
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  color: #181818;
  overflow-wrap: break-word;
  word-break: normal;
}

.career-benefits__detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.career-benefits__detail-title {
  margin: 0;
  font-family: var(--font-hero-cn);
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  color: #181818;
  overflow-wrap: break-word;
  word-break: normal;
}

.career-benefits__detail-sub {
  margin: 0;
  font-family: var(--font-hero-cn);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  color: #181818;
  opacity: 0.6;
  overflow-wrap: break-word;
  word-break: normal;
}

/* PC + 英文：福利待遇区仅收紧左右留白、取消栅格上限、略缩卡片间距，争取横向空间以保持两行各三张（不改卡片 padding/排版；≤768px 不命中） */
@media (min-width: 769px) {
  html:lang(en) body.careers-page .career-benefits__inner.container {
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
  }

  html:lang(en) body.careers-page .career-benefits__grid {
    max-width: none;
    width: 100%;
    gap: 24px;
  }

  html:lang(en) body.careers-page .career-benefits__row {
    gap: 20px;
  }
}

/* 环境照片 303:1383 */
.career-env {
  padding: 64px 0;
  background: #ffffff;
}

.career-env__gallery {
  display: grid;
  grid-template-columns: minmax(0, 960fr) minmax(0, 592fr);
  gap: 0;
  align-items: stretch;
}

.career-env__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

.career-env__img + .career-env__img {
  position: relative;
  z-index: 1;
}

/* 应聘方式 303:1362 */
.career-apply {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}

.career-apply__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #e9eef5;
  background-image: url(../images/career_info_bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.career-apply__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 45px 0;
  max-width: 672px;
  margin: 0 auto;
  box-sizing: border-box;
}

.career-apply__title {
  margin: 0;
  font-family: var(--font-hero-cn);
  font-size: 48px;
  font-weight: 700;
  line-height: normal;
  color: #181818;
}

.career-apply__copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  width: 100%;
}

.career-apply__line {
  margin: 0;
  font-family: var(--font-hero-cn);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #181818;
}

.career-apply__email {
  color: #1f6fdb;
  text-decoration: none;
  font-weight: 400;
}

.career-apply__email:hover {
  text-decoration: underline;
}

.career-apply__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  margin-top: 18px;
  border-radius: 8px;
  background: linear-gradient(90deg, #378aff 0%, #4ea4ff 100%);
  color: #ffffff;
  font-family: var(--font-hero-cn);
  font-size: 18px;
  font-weight: 500;
  transition: background-image 0.2s ease;
}

.career-apply__btn:hover,
.career-apply__btn:active {
  background-image: linear-gradient(rgba(24, 24, 24, 0.05), rgba(24, 24, 24, 0.05)),
    linear-gradient(90deg, #378aff 0%, #4ea4ff 100%);
}

@media (max-width: 1440px) {
  .career-env__gallery {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================================
   13. 隐私政策弹窗（Figma 303:1386）
   ========================================= */

.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}

.privacy-modal.is-open {
  display: flex;
}

/* PC 端隐私弹窗（Figma 303:1386）；H5 见 privacy-modal-h5.css，避免共用一套尺寸 */
@media (min-width: 769px) {
  .privacy-modal__backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(17, 17, 17, 0.6);
    cursor: pointer;
  }

  .privacy-modal__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 780px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    box-sizing: border-box;
    padding: 64px 48px 48px;
    border-radius: 24px;
    background: #ffffff;
  }

  .privacy-modal__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .privacy-modal__close img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
  }

  .privacy-modal__title {
    margin: 0 0 64px;
    font-family: var(--font-hero-cn);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    color: #1f6fdb;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .privacy-modal__body {
    font-family: var(--font-hero-cn);
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: #181818;
    max-width: 700px;
    margin: 0 auto;
    overflow-wrap: break-word;
    word-break: normal;
    font-weight: 400;
  }

  .privacy-modal__para {
    margin: 0 0 8px;
  }

  .privacy-modal__list {
    margin: 0 0 8px;
    padding-left: 10px;
    list-style: none;
  }

  .privacy-modal__list li {
    position: relative;
    padding-left: 16px;
    line-height: 1.6;
  }

  .privacy-modal__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    top: calc(0.5lh - 3px);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #181818;
  }
}

/* =========================================
   5b. 服务内容 H5（Figma 847:6147 Service_390，≤768px；PC 不受影响）
   ========================================= */
@media (max-width: 768px) {
  .service-showcase {
    padding: 32px 0;
    background: #f1f7ff;
  }

  .service-page .service-showcase {
    padding: 32px 0 48px;
    background: #ffffff;
  }

  .service-page .service-showcase__intro {
    margin-bottom: 24px;
  }

  .service-showcase__intro {
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-bottom: 24px;
  }

  .service-showcase__label {
    display: inline-flex;
    flex-direction: column;
    width: fit-content;
    margin: 0 auto;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    gap: 8px;
  }

  .service-showcase__kicker {
    width: auto;
    text-align: left;
  }

  .service-showcase__label-line {
    display: none;
  }

  .service-showcase__label-rule {
    display: inline-block;
    width: 60px;
    height: 8px;
    background-image: url('../images/label_divider.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
  }

  .service-showcase__label-rule::before {
    content: none;
  }

  .service-showcase__label-rule::after {
    content: none;
  }

  .service-showcase__title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }

  .service-showcase__title-br {
    display: block;
  }

  .service-showcase__grid {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    row-gap: 56px;
    column-gap: 0;
    padding-left: 20px;
    padding-right: 20px;
    max-width: none;
    width: 100%;
  }

  .service-showcase__grid.container {
    margin-top: 0.65rem;
  }

  /* H5：surface 不参与布局（等价去掉包装层），视觉与定位改由 .service-card 承担；PC 不变 */
  .service-card {
    flex: none;
    width: 100%;
    max-width: 350px;
    min-height: 250px;
    cursor: default;
    overflow: visible;
    border-radius: 17.5px 17.5px 17.5px 46.67px;
  }

  .service-card__surface {
    display: contents;
  }

  .service-card:hover .service-card__icon-wrap {
    transform: none;
  }

  .service-showcase__grid.container .service-card:hover .service-card__title,
  .service-showcase__grid.container .service-card:hover .service-card__desc {
    color: #181818;
  }

  .service-card__bg,
  .service-card__bg-hover,
  .service-card::before {
    display: none !important;
  }

  .service-card__bg--mobile {
    display: block !important;
    z-index: 0;
    object-position: center;
  }

  .service-card__content {
    padding: 96px 24px 28px 24px;
    max-width: none;
    gap: 16px;
    align-items: flex-start;
    text-align: left;
  }

  .service-card--01 .service-card__content {
    padding-left: 24px;
    padding-right: 24px;
  }

  html[lang='ja'] .service-card--02 .service-card__content {
    gap: 16px;
  }

  .service-card__title {
    font-size: 20px;
    font-weight: 700;
  }

  .service-card__desc {
    font-size: 16px;
    line-height: 24px;
  }

  .service-card__icon-wrap {
    top: -22px;
    right: 0;
    width: 250px;
    height: auto;
    max-width: none;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 0;
  }

  .service-card--01 .service-card__icon-wrap {
    top: -28px;
    right: 0;
  }

  .service-card--02 .service-card__icon-wrap {
    top: -35px;
    right: 0;
  }

  .service-card--03 .service-card__icon-wrap {
    top: -44px;
    right: 0;
  }

  .service-card--04 .service-card__icon-wrap {
    top: -40px;
    right: 0;
  }

  .service-card--05 .service-card__icon-wrap {
    top: -48px;
    right: 0;
  }

  .service-card--01 .service-card__icon,
  .service-card--02 .service-card__icon,
  .service-card--03 .service-card__icon,
  .service-card--04 .service-card__icon,
  .service-card--05 .service-card__icon {
    width: 250px;
    height: auto;
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: top right;
  }

  .service-card--01 .service-card__icon--mobile {
    width: 154px;
  }

  .service-card--02 .service-card__icon--mobile {
    width: 122px;
  }

  .service-card--03 .service-card__icon--mobile {
    width: 120px;
  }

  .service-card--04 .service-card__icon--mobile {
    width: 121px;
  }

  .service-card--05 .service-card__icon--mobile {
    width: 108px;
  }

  .service-showcase__actions {
    margin-top: 32px;
  }

  .service-showcase__more {
    min-height: 48px;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 8px;
  }

  .service-showcase__more-icon {
    width: 24px;
    height: 24px;
  }

  /* —— 服务内容页 remainder：Figma 847:6147（仅 .service-page，不影响首页 service-showcase） —— */
  .service-page .page-hero {
    min-height: 230px;
    background-color: #ffffff;
    background-image: none;
  }

  .service-page .page-hero__inner {
    min-height: 230px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
    align-items: center;
    justify-content: flex-start;
  }

  .service-page .page-hero__bg-h5 {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url(../images/mobile/server_top_bg.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
  }

  .service-page .page-hero__visual-h5 {
    display: block;
    position: absolute;
    z-index: 1;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 226px;
    height: 226px;
    pointer-events: none;
  }

  .service-page .page-hero__visual-h5 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .service-page .page-hero__copy {
    position: relative;
    z-index: 2;
    flex: 0 1 auto;
    max-width: 52%;
    min-width: 0;
  }

  .service-page .page-hero__title {
    font-size: 40px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: normal;
    color: #1f6fdb;
  }

  .service-page .service-process__shell.container {
    max-width: 390px;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }

  .service-page .service-process {
    padding: 32px 0 40px;
    background: #f1f7ff;
  }

  .service-page .service-process__shell {
    gap: 28px;
  }

  .service-page .service-process__page-title {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
  }

  .service-page .service-tech {
    width: 100%;
    max-width: 350px;
    min-height: 0;
    margin: 0 auto;
    padding: 24px 24px 32px;
    border-radius: 24px;
    box-shadow: 0 0 80px rgba(24, 24, 24, 0.05);
    box-sizing: border-box;
  }

  .service-page .service-tech__head {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    padding: 0 0 26px;
    gap: 4px;
  }

  .service-page .service-tech__title {
    font-size: 24px;
    font-weight: 700;
  }

  .service-page .service-tech__note {
    font-size: 16px;
    font-weight: 400;
  }

  .service-page .service-tech__cols {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 32px;
    width: 100%;
    margin-top: 8px;
  }

  .service-page .service-tech__col {
    flex: none;
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: 120px 1fr;
    grid-template-rows: auto auto;
    column-gap: 48px;
    row-gap: 0;
    align-items: start;
  }

  .service-page .service-tech__badge {
    grid-column: 1;
    grid-row: 1;
    width: 120px;
    height: 120px;
    justify-self: start;
  }

  .service-page .service-tech__badge-img {
    width: 120px;
    height: 120px;
  }

  .service-page .service-tech__label {
    grid-column: 1;
    grid-row: 2;
    margin-top: -30px;
    margin-left: 0;
    font-size: 18px;
    font-weight: 500;
    width: 120px;
    text-align: center;
    justify-self: start;
  }

  .service-page .service-tech__list {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    margin: 0;
    gap: 12px;
  }

  .service-page .service-tech__list li {
    font-size: 16px;
  }

  .service-page .service-tech__col:last-child .service-tech__list {
    align-items: flex-start;
  }

  .service-page .service-tech__col:last-child .service-tech__list-note {
    font-size: 12px;
    font-weight: 400;
    margin-top: -5px;
  }

  .service-page .service-tech__list li.service-tech__list-note {
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .service-page .service-flow {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    margin-top: -12px;
    padding: 0 0 0;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 0 80px rgba(24, 24, 24, 0.05);
    box-sizing: border-box;
  }

  .service-page .service-flow__title {
    margin: 24px 0 20px;
    font-size: 24px;
    font-weight: 700;
  }

  .service-page .service-flow__track {
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    margin: 0 0 0;
    padding: 0 16px 32px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .service-page .service-flow__track::-webkit-scrollbar {
    display: none;
  }

  .service-page .service-flow__step {
    flex: 0 0 auto;
    width: 120px;
    gap: 6px;
  }

  .service-page .service-flow__num-img {
    width: 30px;
    height: 48px;
  }

  .service-page .service-flow__label {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.35;
  }

  .service-page .service-flow__label--stack .service-flow__stack-line {
    line-height: 1.35;
  }

  .service-page .service-flow__dots {
    display: flex;
    flex: 0 0 46px;
    margin-top: 22px;
  }

  .service-page .service-deliver {
    margin-top: 0;
    width: 100%;
  }

  .service-page .service-deliver__inner {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    min-height: 0;
    padding: 24px 13px 28px;
    border-radius: 0;
    background: url(../images/mobile/process_bg.png) no-repeat center / cover;
  }

  .service-page .service-deliver__copy {
    gap: 20px;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .service-page .service-deliver__title {
    font-size: 24px;
    font-weight: 500;
  }

  .service-page .service-deliver__list {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .service-page .service-deliver__list li {
    font-size: 16px;
    line-height: normal;
    text-align: left;
  }

  .service-page .service-deliver__icon {
    width: 16px;
    height: 16px;
  }

  .service-page .service-coop {
    padding: 32px 0 40px;
    scroll-margin-top: calc(var(--header-bar-height) + 12px);
  }

  .service-page .service-coop__title {
    font-size: 30px;
    font-weight: 700;
  }

  .service-page .service-coop__card {
    max-width: 350px;
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
    padding: 24px 24px 28px;
    border-radius: 24px;
    box-sizing: border-box;
  }

  .service-page .service-coop__sub {
    margin: 0 0 24px;
    font-size: 16px;
    font-weight: 400;
  }

  .service-page .service-coop__row {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
  }

  .service-page .service-coop__item {
    gap: 24px;
  }

  .service-page .service-coop__text {
    font-size: 16px;
    white-space: normal;
    text-align: left;
  }

  .service-page .service-coop__note {
    margin-top: 24px;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
  }

  .service-page .service-end {
    min-height: 232px;
    background: #ffffff;
  }

  .service-page .service-end__bg {
    background-image: url(../images/mobile/img_end_banner.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
  }

  .service-page .service-end__inner {
    padding: 56px 20px 48px;
  }

  .service-page .service-end__title {
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
  }

  .service-page .service-end__title-part,
  .service-page .service-end__title-accent {
    display: block;
  }

  .careers__title-br,
  .cta-banner__title-br,
  .cta-banner__sub-br {
    display: block;
  }

  /* Footer H5（Figma 818:1691；独立间距，不复用 PC/900px 页脚排版） */
  .site-footer,
  .contact-page .site-footer,
  .careers-page .site-footer {
    background: #f8f9fa;
    color: #181818;
  }

  .site-footer > .site-footer__top.container {
    box-sizing: border-box;
    max-width: 390px;
    width: 100%;
    margin: 0 auto;
    padding: 34px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    align-content: flex-start;
    gap: 0;
    border-bottom: none;
  }

  .site-footer__brand {
    flex: none;
    align-self: center;
    margin: 0;
    padding: 0;
  }

  .site-footer__logo--mobile {
    width: auto;
    height: auto;
    max-width: 198px;
    margin: 0 auto;
  }

  .site-footer__nav {
    flex: none;
    flex-grow: 0;
    flex-shrink: 0;
    min-height: 0;
    order: 0;
    width: 100%;
    max-width: 342px;
    margin: 0.2rem 0 0;
    padding: 0;
    align-self: center;
    align-items: flex-start;
    justify-content: center;
    font-family: var(--font-hero-cn);
  }

  .site-footer__menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
    gap: 0.12rem;
    row-gap: 0.12rem;
    column-gap: 0.12rem;
    width: 100%;
    max-width: 342px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .site-footer__menu li {
    margin: 0;
    padding: 0;
  }

  .site-footer__menu a {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-family: var(--font-hero-cn);
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    color: #181818;
    opacity: 0.8;
    white-space: nowrap;
  }

  #footer-top-h5-placeholder.site-footer__top .site-footer__contact-block {
    flex: none;
    flex-grow: 0;
    flex-shrink: 0;
    min-height: 0;
    order: 0;
    width: 100%;
    max-width: 255px;
    margin: 0.32rem 0 0;
    padding: 0;
    text-align: center;
    font-family: var(--font-hero-cn);
  }

  .site-footer__contact-title {
    display: none;
    margin: 0;
    padding: 0;
  }

  .site-footer__contact-lines {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: var(--font-hero-cn);
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: #181818;
    opacity: 0.8;
    text-align: center;
  }

  .site-footer__contact-lines li {
    margin: 0;
    padding: 0;
  }

  .site-footer__contact-lines li + li {
    margin-top: 0;
  }

  /* 页脚联系：地址、工作时间等 H5 单行 + 整行水平居中 */
  .site-footer .site-footer__contact-lines li[data-i18n="footer.contact.lineAddr"],
  .site-footer .site-footer__contact-lines li.site-footer__contact-line--nowrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    white-space: nowrap;
    text-align: center;
  }

  /* 联系页主内容区（非页脚）仍允许工作时间等换行 */
  .contact-panel__details .site-footer__contact-line--nowrap {
    white-space: normal;
  }

  .site-footer__bottom {
    margin: 0;
    padding: 0 0 32px;
  }

  .site-footer__bottom > .container.site-footer__bottom-inner {
    box-sizing: border-box;
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
    padding: 16px 0 0;
    border-top: 1px solid rgba(24, 24, 24, 0.08);
    text-align: center;
  }

  .site-footer__copy {
    margin: 0 0 4px;
    padding: 0;
    font-family: var(--font-hero-cn);
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #181818;
    opacity: 0.6;
  }

  .site-footer__credit {
    margin: 0;
    padding: 0;
    font-family: var(--font-hero-cn);
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #181818;
    opacity: 0.6;
  }
}

@media (max-width: 768px) {
  .hero-banner__slide-img--pc,
  .hero-banner__thumb-img--pc,
  .philosophy__img--pc,
  .service-card__icon--pc,
  .careers__tab-icon--pc,
  .cta-banner__bg-img--pc,
  .site-footer__logo--pc {
    display: none;
  }

  .hero-banner__slide-img--mobile,
  .hero-banner__thumb-img--mobile,
  .philosophy__img--mobile,
  .service-card__bg--mobile,
  .service-card__icon--mobile,
  .careers__tab-icon--mobile,
  .cta-banner__bg-img--mobile,
  .site-footer__logo--mobile {
    display: block;
  }

  .service-card__icon.service-card__icon--mobile {
    display: block;
  }

  /* Footer Top H5 独立覆盖：仅作用于 h5 placeholder，避免与 PC 规则互相影响 */
  #footer-top-h5-placeholder.site-footer__top .site-footer__nav {
    margin-top: 0.2rem !important;
    height: auto !important;
    min-height: 0 !important;
    display: block !important;
  }

  #footer-top-h5-placeholder.site-footer__top .site-footer__menu {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-content: flex-start !important;
    align-items: center !important;
    gap: 0.08rem 0.16rem !important;
    row-gap: 0.16rem !important;
    column-gap: 0.16rem !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  #footer-top-h5-placeholder.site-footer__top .site-footer__menu li {
    flex: 0 0 auto !important;
    height: auto !important;
    min-height: 0 !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

/* =========================================
   H5：全页面 site-header 去除阴影（收口覆盖）
   ========================================= */
@media (max-width: 768px) {
  .site-header,
  .site-header--solid,
  .site-header--home-scroll,
  .company-page .site-header,
  .company-page .site-header--company-scroll,
  .service-page .site-header,
  .service-page .site-header--company-scroll,
  .contact-page .site-header,
  .contact-page .site-header--company-scroll,
  .careers-page .site-header,
  .careers-page .site-header--company-scroll {
    box-shadow: none !important;
  }
}
