/* Global homepage (overseas) - Figma design tokens & section layout */
.g-home-page {
  background: var(--g-color-bg);
  
  
}
.g-home-page .container {
  /* width: 100%;
  height: 100%; */
}
/* 首页：菜单栏 fixed 盖在轮播上方，同屏叠放 */
.g-home-page .pc-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.25s ease, backdrop-filter 0.25s ease;
}
.g-home-page .pc-nav:hover{
  background: rgba(255, 255, 255, 0.6);
}

.g-home-page .pc-nav.nav-scrolled {
  background: rgba(255, 255, 255, 0.7);
}

.g-main {

  background: var(--g-color-bg);
}

:root {
  --g-color-primary: #f5a200;
  --g-color-dark: #424558;
  --g-color-text: #0d0d0d;
  --g-color-text-secondary: #2b2b2b;
  --g-color-text-muted: #7e7e7e;
  --g-color-bg: #f8f8f8;
  --g-color-bg-section: #efefef;
  --g-container-max: 86.25vw;
  --g-container-padding: 6.88vw;
  --g-radius: 12px;
  --g-radius-sm: 8px;
}

/* Section common */
.g-section {
  width: 100%;
  background: var(--g-color-bg);
}

.g-container {
  max-width: var(--g-container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 5vw, 4.17vw);
  padding-right: clamp(16px, 5vw, 4.17vw);
}

.g-section-title {
  font-family: 'Exo','Noto Sans JP', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1.04vw, 3vw, 2.08vw);
  line-height: 1.2;
  color: var(--g-color-dark);
  letter-spacing: 0.04em;
  margin: 0 0 1.04vw 0;
}

/* Hero */
.g-hero {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: clamp(30%, 50vw, 35.3%);
  
  max-height: 35.31vw;
  overflow: hidden;
}

/* Swiper carousel styles */
.g-hero__swiper {
  width: 100%;
  height: 100%;
}

.g-hero__slide {
  position: relative;
  width: 100%;
  height: 100%;
}

/* 分页器容器 - 底部居中定位 */
.g-hero .swiper-pagination {
  position: absolute;
  bottom: clamp(10px, 3vw, 2.08vw) !important;
  left: 50% !important;
  transform: translateX(-50%);
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  z-index: 100;
  /* debug: border: 1px solid red; */
}

/* 分页器样式 - 48x4px */
.g-hero .swiper-pagination .swiper-pagination-bullet,
.g-hero .swiper-pagination-bullet {
  width: 2.5vw;
  height: 4px;
  border-radius: 2px;
  background: rgba(197, 197, 197, 0.7) !important;
  opacity: 1 !important;
  margin: 0 4px !important;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

/* 激活状态 - 白色填充 70% */
.g-hero .swiper-pagination .swiper-pagination-bullet-active,
.g-hero .swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 0.7) !important;
}

/* 左右切换按钮 - Figma 样式参考 */
.g-hero .swiper-button-next,
.g-hero .swiper-button-prev {
  color: #fff;
  width: clamp(1.56vw, 5vw, 2.08vw);
  height: clamp(2.6vw, 8vw, 3.44vw);
  border-radius: 6px;
  background: rgba(182, 182, 182, 0.75);
  transition: all 0.3s ease;
  top: 50%;

  transform: translateY(-50%);
  margin-top: 0;
}

.g-hero .swiper-button-next {
  right: 1.04vw;
}

.g-hero .swiper-button-prev {
  left: 1.04vw;
}

.g-hero .swiper-button-next:after,
.g-hero .swiper-button-prev:after {
  font-size: 0.94vw;
  font-weight: 600;
}

/* 按钮悬停效果 */
.g-hero .swiper-button-next:hover,
.g-hero .swiper-button-prev:hover {
  background: rgba(182, 182, 182, 0.9);
  transform: translateY(-50%);
}
.g-customers__nav--next img{
  width: 1.67vw;
  height: 1.67vw;
}
.g-customers__nav--prev img{
  width: 1.67vw;
  height: 1.67vw;
}
/* 当前索引数字显示 */
.g-hero__pagination {
  font-family: 'Exo','Noto Sans JP', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
}

/* 首页首屏：轮播与菜单同屏叠放，高度与 Figma 一致 678px */
.g-home-page .g-hero {
  height: auto;
  aspect-ratio: 1920 / 678;
  max-height: none;
  padding-bottom: 0;
}
.g-home-page .g-hero .g-hero__bg {
  background-size: cover;
  background-position: center;
}

.g-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.g-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
    -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.g-hero__overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to top, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%); */
  pointer-events: none;
  z-index: 1;
}



.g-hero__content {
  position: absolute;
  left: 0;
  top: 30%;
  padding: 0 clamp(8%, 3vw, 9%);
  /* padding: clamp(12%, 5vw, 19%); */
  max-width: 25vw;
}
@media (max-width: 1023.98px) {
  .g-stats__card {
    padding: 0;
  }
}
.g-hero__title {
  font-family: 'Exo','Noto Sans JP', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1.25vw, 2.5vw, 2.08vw);
  line-height: 1.1;
  color: var(--g-color-text);
  letter-spacing: 0.6px;
  margin: 0 0 8.00px 0;
  
  white-space: nowrap;
}

.g-hero__subtitle {
  font-family: 'Exo','Noto Sans JP', system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 1.5vw, 1.25vw);
  color: var(--g-color-text-secondary);
  margin: 2rm 0 2.5vw 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
 
 
}

.g-hero__btn {
  display: inline-flex;
  align-items: center;

  padding: clamp(12px, 2vw, 14px) clamp(13px, 4vw, 1.25vw);
  font-family: 'Exo','Noto Sans JP', system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 2vw, 16px);
  color: var(--g-color-text-secondary);
  background: #fff;
  border: none;
  border-radius: 52.03vw;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 1.25vw;
}

.g-hero__btn:hover {
  opacity: 0.92;
}

/* Key metrics / stats - 6 cards above OUR CUSTOMERS */
.g-stats {
  padding: clamp(2.5vw, 4vw, 2.5vw) 0;
  background: var(--g-color-bg);
}

.g-stats > .container {
  box-sizing: border-box;
  padding-inline: clamp(12px, 5vw, 5.21vw);
  
}

.g-stats__card {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  align-items: center;
  gap: clamp(8px, 2vw, 16px);
  padding: clamp(12px, 2vw, 16px);
  height: 100%;
}

.g-stats__icon {
  width: clamp(3.13vw, 8vw, 3.75vw);
  height: clamp(3.13vw, 8vw, 3.75vw);
  border-radius: var(--g-radius);
  display: flex;
  margin-left: clamp(2px, 2vw, 20%);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.g-stats__icon--solid {
  background: var(--g-color-primary);
}
.g-stats__icon--outline{
  background: #FFEFDA;
}

.g-stats__icon--solid img {
  width: clamp(1.67vw, 5vw, 2.08vw);
  height: clamp(1.67vw, 5vw, 2.08vw);
  object-fit: contain;
}

.g-stats__icon--outline img {
  width: clamp(1.67vw, 35vw, 2.08vw);
  height: clamp(1.67vw, 35vw, 2.08vw);
  object-fit: contain;
}

.g-stats__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0; /* 允许文本截断 */
}

.g-stats__value {
  font-family: 'Exo','Noto Sans JP', system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(1.25vw, 2vw, 1.88vw);
  line-height: 1.2;
  color: var(--g-color-text);
  margin: 0;
  white-space: nowrap;
}

.g-stats__value-num {
  font: inherit;
  color: inherit;
  font-weight: 550;
}

.g-stats__value-num sup {
  font-size: 0.55em;
  vertical-align: -webkit-baseline-middle;
  vertical-align: sub;
  margin-left: 2px;
  line-height: 1;
}

.g-stats__subdescription {
  font-family: 'Exo','Noto Sans JP', system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 2.5vw, 0.94vw);
  color: var(--g-color-text);
  margin: 0;
  line-height: 1.4;
  white-space: nowrap;
}

.g-stats__subdescription--5 {
  font-size: 14px;
  position: relative;
  left: -0.94vw;
}

.g-stats__subdescription--6 {
  position: relative;
  left: -4px;
}

.g-stats__label {
  font-family: 'Exo','Noto Sans JP', system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(12px, 2vw, 0.94vw);
  color: var(--g-color-text-muted);
  margin: 0;
}

/* 移动端优化：确保 2 列布局 */
@media (max-width: 575.98px) {
  .g-home-page .g-main {
    margin-top: 3.13vw;
  }
  
  .g-hero__btn {
    display: none;
  }

 

  .g-hero .swiper-button-next,
  .g-hero .swiper-button-prev {
    display: none;
  }

  .g-hero .swiper-pagination .swiper-pagination-bullet,
  .g-hero .swiper-pagination-bullet {
    width: 1.25vw;
  }

  .g-stats__card {
    padding: 4px;
    gap: 8px;
  }
  
  .g-stats__icon {
    width: 2.6vw;
    height: 2.6vw;
    margin-left: 0;
  }
  
  .g-stats__icon img {
    width: clamp(1.67vw, 15vw, 1.56vw);
    height: clamp(1.67vw, 15vw, 1.56vw);
  }
  
  .g-stats__value {
    font-size: 1.04vw;
  }
  
  .g-stats__label {
    font-size: 12px;
  }
}

@media (max-width: 1236px) {
  .g-stats > .container {
    padding-inline: 0;
   
  }

  .g-news__right {
    aspect-ratio: 420 / 397;
  }

  .g-news__card-arrow {
    width: clamp(2.5vw, 2vw, 2.92vw);
    height: clamp(2.5vw, 2vw, 2.92vw);
  }

  .g-news__prev,
  .g-news__next {
    display: none;
  }

  .g-events__swiper {
    display: none;
  }

  .g-events__list--mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .g-events__list--mobile > a:nth-child(n+5) {
    display: none;
  }

  .g-events__item-mobile {
    display: flex;
    flex-direction: row;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: var(--g-radius);
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .g-events__item-mobile-date {
    width: 2.5vw;
    height: 2.5vw;
    background: var(--g-color-primary);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 12px;
  }

  .g-events__item-mobile-day {
    font-size: 0.94vw;
    font-weight: 600;
    color: #fff;
    line-height: 1;
  }

  .g-events__item-mobile-month {
    font-size: 10px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
  }

  .g-events__item-mobile-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .g-events__item-mobile-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0 0 4px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: flex;
    align-items: center;
  }

  .g-events__item-mobile-arrow {
    flex-shrink: 0;
  }

  .g-events__item-mobile-arrow img {
    width: 14px;
    height: 14px;
  }

  .g-events__item-mobile-meta {
    font-size: 12px;
    color: #888;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .g-events__item-mobile-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 4px;
  }

  .g-events__item-mobile-meta-item img {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
  }

  .g-events__item {
    padding: 10px;
    height: 100%;
  }

  .g-events__swiper {
    height: 13.02vw !important;
  }

  .g-events__date-block {
    width: 3.75vw;
    height: 3.75vw;
  }

  .g-events__date-num {
    font-size: 1.67vw;
  }

  .g-events__meta {
    flex-direction: column;
    gap: 4px;
  }

  .g-events__title {
    font-size: 16px;
  }
}

/* Our Customers（稿：浅底、白卡片圆角阴影、左右浅橙箭头） */
.g-customers {
  padding: 2.5vw 0 3.33vw;
  background: var(--g-color-bg, #f8f8f8);
}

/* 箭头在轨道外侧，不占 .g-customers__slider 宽度 */
.g-customers .container {
  overflow: visible;
  
}

.g-customers__slider-outer {
  position: relative;
  margin-top: 1.67vw;
  overflow: visible;

}

.g-customers__slider {
  width: 100%;
  min-width: 0;
}

.g-customers__nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.08vw;
  height: 2.08vw;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: rgba(248, 157, 27, 0.85);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 0.2s ease, background 0.2s ease;
}

.g-customers__nav--prev {
  right: 100%;
  margin-right: clamp(6px, 1.5vw, 14px);
}

.g-customers__nav--next {
  left: 100%;
}

@media (max-width: 1044px) {
  .g-customers__nav--next {
    display: none;
  }
  .g-customers__nav--prev {
    display: none;
}
}

.g-customers__nav:hover {
  color: var(--g-color-primary, #f5a200);
  
}

.g-customers__nav:focus-visible {
  outline: 2px solid var(--g-color-primary, #f5a200);
  outline-offset: 2px;
}

/* 与 about-us 相同：2 行 × 多列网格，轨道 translateX（home-customers-carousel.js） */
.g-customers__swiper {
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  touch-action: pan-y;
  cursor: grab;
}

.g-customers__swiper.is-dragging {
  cursor: grabbing;
}

.g-customers__track {
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform 0.4s ease;
  will-change: transform;
  box-sizing: border-box;
  row-gap: 14px;
  column-gap: 14px;
  
}

.g-customers__slide {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 ;
  background-color: #fff;
  border-radius: 8px;
}

.g-customers__card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 11.35vw;
  min-height: 7.08vw;
  padding: 10px 12px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}



.g-customers__card--link {
  text-decoration: none;
  cursor: pointer;
}



.g-customers__logo {
  display: block;
  width: 100%;
  max-width: 9.9vw;
  height: auto;
  max-height: 5.83vw;
  object-fit: contain;
  object-position: center;
  -webkit-user-drag: none;
  user-select: none;
}

@media (max-width: 995px) {
  .g-customers__nav {
    display: none;
  }

  .g-customers__nav svg {
    width: 0.94vw;
    height: 0.94vw;
  }
}

@media (max-width: 575.98px) {
  .g-customers__nav {
    display: none;
  }

  .g-customers__nav svg {
    width: 0.94vw;
    height: 0.94vw;
  }

  .g-customers__card {
    width: min(10.42vw, 38vw);
    min-height: 4.79vw;
    padding: 8px;
  }

  .g-customers__logo {
    max-width: 8.75vw;
    max-height: 4.58vw;
  }

  .g-customers__track {
    row-gap: 14px;
    column-gap: 14px;
  }
}

.g-customers__placeholder {
  width: 100%;
  padding: 2.5vw;
  text-align: center;
  color: var(--g-color-text-muted);
  font-size: 16px;
  background: rgba(66, 69, 88, 0.05);
  border-radius: var(--g-radius);
}

/* Business Areas */
.g-business {
  padding: 0 0 3.33vw;
}

.g-business__tabs {
  display: inline-flex;

  gap: clamp(12px, 2vw, 2.29vw);
  margin-bottom: 1.58vw;
  border-bottom: 2px solid rgba(66,69,88,0.1);
  flex-wrap: wrap;
  position: relative;
}

.g-business__tab-slider {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--g-color-text);
  transition: left 0.3s ease, width 0.3s ease;
  pointer-events: none;
}

.g-business__tab {
  font-family: 'Exo','Noto Sans JP', system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 3vw, 1.25vw);
  color: var(--g-color-text-muted);
  background: none;
  border: none;
  padding: clamp(8px, 1.5vh, 12px) 0;
  cursor: pointer;
  position: relative;
  min-height: 2.29vw;
}

.g-business__tab.active {
  color: var(--g-color-text);
}

.g-business__tab.active::after {
  display: none;
}

/* 业务区域面板：Swiper 轮播（仅 autoplay，无箭头/分页） */
.g-business__panels.g-business__swiper.swiper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.g-business__swiper .swiper-wrapper {
  align-items: flex-start;
}

.g-business__swiper .swiper-slide.g-business__panel {
  display: block;
  box-sizing: border-box;
  width: 100%;
  border-radius: var(--g-radius);
  overflow: hidden;
}

/* Swiper 未加载时的回退：仅显示当前 is-active 一屏 */
.g-business__swiper--fallback .swiper-wrapper {
  display: block;
}

.g-business__swiper--fallback .swiper-slide.g-business__panel {
  display: none;
}

.g-business__swiper--fallback .swiper-slide.g-business__panel.is-active {
  display: block;
}

.g-business__banner {
  position: relative;
  width: 100%;
  aspect-ratio: 1656 / 476;
  max-height: clamp(15.63vw, 50vh, 24.79vw);
  border-radius: var(--g-radius);
  overflow: hidden;
  margin-bottom: clamp(0.92vw, 3vw, 1.25vw);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.g-business__banner-img {
  display: none;
}

.g-business__banner-text {
  position: absolute;
  left: clamp(5%, 2vw, 8%);
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 100%;
}

.g-business__banner-title {
  font-family: 'Exo','Noto Sans JP', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1.25vw, 4vw, 2.08vw);
  margin: 0 0 4.00px 0;
}

.g-business__banner-desc {
  font-family: 'Exo','Noto Sans JP', system-ui, sans-serif;
  font-size: clamp(16px, 2.5vw, 1.25vw);
  margin: 0;
  max-width: 30.21vw;
  margin-top: 10px;
  opacity: 0.95;
 
  
}

/* Grid 布局：最多5列，最小1列，屏幕自适应 */
.g-business__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 3vw, 1.25vw);
}

@media (min-width: 768px) {
  .g-business__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .g-business__cards {
    grid-template-columns: repeat(4, 1fr);
  }
 
}

@media (min-width: 1500px) {
  .g-business__cards {
    grid-template-columns: repeat(5, 1fr);
  }
}

.g-business__card {
  position: relative;
  border-radius: var(--g-radius);
  overflow: hidden;
  aspect-ratio: 312 / 420;
  text-decoration: none;
  color: inherit;
  display: block;
}

.g-business__card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.55s ease;
}

.g-business__card:hover .g-business__card-img,
.g-business__card:focus-visible .g-business__card-img {
  transform: scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
  .g-business__card-img {
    transition: none;
  }

  .g-business__card:hover .g-business__card-img,
  .g-business__card:focus-visible .g-business__card-img {
    transform: scale(1);
  }
}

.g-business__card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 76%;
  background: linear-gradient(180deg, rgba(66,69,88,0) 22%, var(--g-color-dark) 83%);
  pointer-events: none;
}

.g-business__card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(12px, 2vw, 16px);
}

.g-business__card-title {
  font-family: 'Exo','Noto Sans JP', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 3vw, 1.15vw);
  color: #fff;
  white-space: nowrap;
  margin: 0;
  letter-spacing: 0px;
}

.g-business__card-desc {
  font-family: 'Exo','Noto Sans JP', system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(14px, 2.5vw, 16px);
  color: rgba(255,255,255,0.9);
  letter-spacing: 1px;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  line-height: 1.2;
  margin-top: 12px;
}


/* About Us - 移动端优先，使用 clamp() 实现平滑响应式 */
.g-about {
  padding: 0 0 clamp(2.5vw, 4vw, 2.5vw);
}

.g-about__wrap {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  border-radius: var(--g-radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 4.17vw 6.77vw 3.02vw 3.02vw;
}

.g-about__cirplay-wrap {
  flex:1;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 991px) and (max-width: 1235px) {
  .g-about__cirplay-wrap {
    flex: 0.2;
    
  }
  .g-about__stat-label{
    font-size: 14px;
  }
  .g-about__stat-value{
    font-size: 0.94vw;
  }
  .g-about__wrap{
    padding-right:1.04vw;
  }
}
@media (max-width:  991px) {
 .g-about__wrap{
    padding-right:1.04vw;
  }
}
.g-about__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height:100%;
  object-fit: fill;
  opacity: 0.3;
}

.g-about__content {
  position: relative;
  flex: 1;
  min-width: 0;
}

.g-about__bottom-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25vw;
  margin-top: 1.77vw;
  
  padding-right: 16px;
}

.g-about__offices {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.g-about__offices > p {
  margin: 0;
  font-family: 'Exo','Noto Sans JP', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(0.94vw, 2vw, 1.04vw);
  color: var(--g-color-primary);
}

.g-about__offices-items {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.g-about__office-item {
  font-family: 'Exo','Noto Sans JP', system-ui, sans-serif;
  font-weight: normal;
  font-size: 0.94vw;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.g-about__office-item:hover {
  color: var(--g-color-primary);
}

.g-about__content-horizontalline{
  width:5vw;
  height:4px;
  background: var(--g-color-primary);
  margin-bottom: 1.88vw;
 
}

.g-about__heading {
  font-family: 'Exo','Noto Sans JP', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1.04vw, 3vw, 2.08vw);
  line-height: 1.2;
  color: #fff;
  letter-spacing: 0.04em;
  margin: 0;
}

.g-about__stats {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: clamp(12px, 2vw, 16px);
  margin-bottom: clamp(1.67vw, 2.5vw, 1.25vw);
}

.g-about__stat {
  padding: clamp(12.00px, 1.5vw, 16.00px);
  padding-left: 0;
}

.g-about__stat-value {
  font-family: 'Exo','Noto Sans JP', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1.04vw, 3vw, 1.67vw);
  color: var(--g-color-primary);
  margin: 0 0 clamp(4px, 1vw, 14px) 0;
}

.g-about__stat-value-second {
  color: #fff;
  font-size: 0.94vw;
  font-family: 'Exo','Noto Sans JP', system-ui, sans-serif;
  font-weight: normal;
}

@media (max-width: 1220px) {
  .g-about__stat-value-second {
    font-size: 16px;
  }
}

.g-about__stat-label {
  font-family: 'Exo','Noto Sans JP', system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.94vw;
  color: #e1e1e1;
  margin: 0;
}

.g-about__link {
  font-family: 'Exo','Noto Sans JP', system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 2.5vw, 0.94vw);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: clamp(6px, 1.5vw, 8px);
  
  display: flex;
  align-items: flex-end;
}

.g-about__link:hover {
  color: var(--g-color-primary);
}
.g-about__link:hover svg,
.g-about__link:hover img {
  animation: g-about-arrow-wiggle 0.4s ease-in-out infinite;
}
/* About Us 响应式 - 平板 */
@media (min-width: 768px) {
  .g-about {
    padding: 0 0 3.33vw;
  }
  

  
  .g-about__content {
    padding: 2.5vw;
    text-align: left;
  }
  
  .g-about__stats {
    grid-template-columns: 2fr 3fr 2fr;
  }
}

/* About Us 响应式 - 桌面（完美还原 Figma） */
@media (min-width: 992px) {
  .g-about {
    padding: 0 0 3.33vw;
  }



  .g-about__bg {
    opacity: 1;
  }



  .g-about__cirplay{
    box-sizing: border-box;
    display: inline-block;
    width: 3.75vw;
    height: 3.75vw;
    cursor: pointer;
    margin: 0;
    padding: 0;
    border: 0;
    background-color: transparent;
    background-image: url(/images/global/circle-play.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    appearance: none;
  }

  .g-about__cirplay:hover,
  .g-about__cirplay:focus-visible {
    background-image: url(/images/global/play-circle-active.png);
  }

  button.g-about__cirplay:focus:not(:focus-visible) {
    outline: none;
  }

  .g-about__content {
    padding: 0;
    max-width: clamp(23.44vw, 50vw, 40vw);
    text-align: left;
  }

  .g-about__heading {
    font-size: clamp(1.67vw, 1.3vw, 2.08vw);
    margin-bottom: clamp(1.25vw, 2vw, 2.5vw);
  }

  .g-about__stats {
    gap: clamp(14px, 2vw, 16px);
    margin-bottom: clamp(1.67vw, 1.5vw, 1.25vw);
  }

  .g-about__stat {
    padding: clamp(14.00px, 1vw, 16.00px);
    padding-left: 0;
  }

  .g-about__stat-value {
    font-size: clamp(0.94vw, 2vw, 1.67vw);
  }

  .g-about__stat-label {
    font-size: 0.94vw;
  }

  .g-about__link {
    font-size: clamp(16px, 2vw, 0.94vw);
    float: right;
    display: flex;
    align-items: center;
  }
}

@media (min-width: 1185px) and (max-width: 1236px) {
  .g-events__swiper {
    display: flex;
  }

  .g-events__list--mobile {
    display: none;
  }
}

/* About Us 响应式 - 平板和移动端优化 */
@media (max-width: 991.98px) {
  .g-about__cirplay-wrap {
    display: none;
  }

  .g-about__link {
    display: none;
  }

  .g-about__content-horizontalline {
    background: transparent;
  }
 
  .g-about__content {
    padding: clamp(1.25vw, 3vw, 2.5vw) clamp(14px, 3vw, 2.5vw);
  }
}



@media (max-width: 575.98px) {
  .g-about__stat-value {
    font-size: clamp(0.94vw, 4vw, 1.04vw);
  }

  .g-about__stat-label {
    font-size: clamp(12px, 2.5vw, 13px);
  }

  .g-business__banner {
    aspect-ratio: 2 / 1;
  }
}

/* News & Events - Swiper版 */
.g-news {
  padding: 0 0 3.33vw;
}

.g-news__wrap {
  display: flex;
  gap: 1.25vw;
  align-items: stretch;
}

/* Left: News Swiper */
.g-news__left {
  flex: 1;
  min-width: 0;
  align-self: stretch;
}

.g-news__swiper {
  width: 100%;
  height: 100%;
  border-radius: var(--g-radius);
  overflow: hidden;
}

.g-news__list--mobile {
  display: none;
}

.swiper-wrapper .g-news__slide {
  height: 100%;
}

/* 新闻轮播不等宽 slide（由 JS 动态加 class 控制） */
.g-news__slide--wide {
  width: 55%;
}

.g-news__slide--narrow {
  width: 45%;
}

@media (max-width: 767.98px) {
  .g-news__slide--wide,
  .g-news__slide--narrow {
    width: 100%;
  }
}

.g-news__card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--g-radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.g-news__card-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.g-news__card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.55s ease;
}

.g-news__card:hover .g-news__card-img,
.g-news__card:focus-visible .g-news__card-img {
  transform: scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
  .g-news__card-img {
    transition: none;
  }

  .g-news__card:hover .g-news__card-img,
  .g-news__card:focus-visible .g-news__card-img {
    transform: scale(1);
  }
}

.g-news__card-overlay {
  position: absolute;
  left: 0;
  right: 0;

  bottom: 0;
  background: rgba(0,0,0,0.6);
  border-radius: 0 0 var(--g-radius) var(--g-radius);
  padding: 1.25vw 1.25vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.g-news__card-date-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 6px;
  background: rgba(137,137,137,0.8);
  border-radius: 4px;
  font-family: 'Exo','Noto Sans JP', system-ui, sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.24px;
  margin-bottom: 10px;
  line-height: 100%;
}

.g-news__card-title {
  font-family: 'Exo','Noto Sans JP', system-ui, sans-serif;
  font-weight: 500;
  font-size: 1.15vw;
  line-height: 1.2;
  color: #fff;
  letter-spacing: 0.44px;
  margin: 0;
  padding-right: 6.25vw;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.g-news__card-arrow {
  position: absolute;
  right: 1.25vw;
  top: 50%;
  transform: translateY(-50%);
  width: 3.75vw;
  height: 3.75vw;
  background: var(--g-color-primary);
  border-radius: var(--g-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.g-news__card-arrow img {
  width: 1.88vw;
  height: 1.88vw;
}

.g-news__card:hover .g-news__card-arrow {
  filter: brightness(1.03);
}

/* News Swiper 分页器 */
.g-news__pagination {
  bottom: 1.04vw !important;
  left: 1.25vw !important;
  width: auto !important;
}

.g-news__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.5);
  opacity: 1;
  margin: 0 4px !important;
}

.g-news__pagination .swiper-pagination-bullet-active {
  background: var(--g-color-primary);
}

/* News Swiper 导航按钮 */
.g-news__prev,
.g-news__next {
  width: 2.5vw!important;
  height: 2.5vw!important;
  background: #fff;
  border-radius: 50%;
  color: #000!important;
  font-size: 14px!important;
  top: 50%;
  margin-top: -1.25vw; 
  font-weight: 600;
  --swiper-navigation-size:0.94vw;
}

.g-news__prev {
  left: 1.04vw;
  opacity: 0;
  visibility: hidden;
}

.g-news__prev.show {
  opacity: 1;
  visibility: visible;
}

.g-news__next {
  right: 1.04vw;
}

.g-news__prev:hover,
.g-news__next:hover {
  background: #f0f0f0;
  transform: scale(1.05);
}

.g-news__prev::after,
.g-news__next::after {
 
  margin: auto;
}



/* Right: Events Vertical Swiper */
.g-news__right {
  width: 22.29vw;
  flex-shrink: 0;
  background: var(--g-color-dark);
  border-radius: var(--g-radius);
  padding: 1.25vw;
  padding-right: 12px;
  display: flex;
  flex-direction: column;
  aspect-ratio: 420 / 524;
  box-sizing: border-box;
}

@media (max-width: 976px)  {
  .g-news__right{
    aspect-ratio: initial!important;
    padding:15px;
  }
}

.g-events__swiper {
  flex: 1;
  width: 100%;
  height: 23.65vw !important;
  overflow: hidden;
}

.g-events__list--mobile {
  display: none;
}



.g-events__slide {

  width: calc(100% - 1.04vw);
  max-height:6.25vw;
}

.g-events__item {
  display: flex;
  gap: 1.04vw;
  min-height: 5.63vw;
  padding: 16px;
  background: rgba(255,255,255,0.95);
  border-radius: var(--g-radius-sm);
  text-decoration: none;
  align-items: center;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(0,0,0,0.08);
}

.g-events__item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.g-events__date-block {
  width: 4.17vw;
  height: 4.17vw;
  background: var(--g-color-primary);
  border-radius: var(--g-radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.g-events__date-weekday {
  font-family: 'Exo','Noto Sans JP', system-ui, sans-serif;
  font-weight: 500;
  font-size: 11px;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.g-events__date-line {
  display: inline-block;
  width: 12px;
  height: 1px;
  background-color: #fff;
}

.g-events__date-num {
  font-family: 'MiSans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 2.08vw;
  color: #fff;
  line-height: 1;
}

.g-events__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.g-events__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.g-events__title {
  font-family: 'Exo','Noto Sans JP', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.94vw;
  color: #000;
  letter-spacing: 0.36px;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

.g-events__arrow {
  color: var(--g-color-primary);
  flex-shrink: 0;
  font-size: 0.94vw;
}

.g-events__meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}

.g-events__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Exo','Noto Sans JP', system-ui, sans-serif;
  font-weight: 500;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;

  font-size: 13px;
  color: #333;
  letter-spacing: 0.28px;
}
.g-events__meta-item img{
  width: 16px;
  height: 16px;
}
.g-events__meta-item .iconify {
  color: #333;
  width: 16px;
  height: 16px;
}

/* 垂直滚动条样式 */
.g-events__scrollbar {
  background: transparent;
  border-radius: 5.16vw;
  width: 8px !important;
  right: 4px !important;
}

.g-events__scrollbar .swiper-scrollbar-drag {
  background: rgba(255,255,255,0.4);
  border-radius: 5.16vw;
}
.g-news__learn-more-wrap{
  height: 5.73vw;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
/* Learn More Button */
.g-news__learn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 14px 1.04vw;
  margin-top: 1.82vw;
  background: var(--g-color-primary);
  color: #fff;
  font-family: 'Exo','Noto Sans JP', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: 52.03vw;
  text-decoration: none;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.g-news__learn-more:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .g-news__learn-more:hover {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 1200px) {
 

  .g-news__left {
    flex:auto;
    width: 100%;
  }

  .g-news__right {

    height: auto;
    min-height: 20.83vw;
  }

  .g-events__swiper {
    display: none;
  }

  .g-events__list--mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .g-news__card-title {
    font-size: 1.04vw;
    padding-right: 3.65vw;
  }

  .g-news__card-arrow {
    width: clamp(2.5vw, 2vw, 3.33vw);
    height: clamp(2.5vw, 2.5vw, 3.33vw);
  }
}

@media (min-width: 754px) and (max-width: 1221px) {
  .g-news__wrap {
    flex-direction: column;
  }

  .g-news__left {
    height: auto;
    width: 100%;
    min-height: auto;
  }

  .g-news__swiper {
    height: 22.66vw;
  }

  .g-news__right {
    width: 100%;
    height: auto;
    min-height: auto;
    aspect-ratio: unset;
   
  }
}

@media (max-width: 767.98px) {
  .g-news__wrap {
    flex-direction: column;
  }

  .g-news__left {
    height: auto;
    width: 100%;
    display: block;
    flex: auto;
  }

  .g-news__right {
    width: 100%;
    height: auto;
    min-height: auto;
  }

  .g-news__swiper {
    display: none;
  }

  .g-news__list--mobile {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .g-news__card-mobile {
    display: flex;
    flex-direction: row;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: var(--g-radius);
    overflow: hidden;

  }

  .g-news__card-mobile-img-wrap {
    width: 6.25vw;
    height: 4.69vw;
    flex-shrink: 0;
    overflow: hidden;
  }

  .g-news__card-mobile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .g-news__card-mobile-content {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
  }

  .g-news__card-mobile-date {
    font-size: 12px;
    color: #888;
    margin-bottom: 4px;
  }

  .g-news__card-mobile-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .g-news__card-mobile-summary {
    font-size: 12px;
    color: #666;
    margin: 4px 0 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .g-news__card-title {
    font-size: 0.94vw;
    padding-right: 3.13vw;
  }

  .g-news__card-arrow {
    width: 2.92vw;
    height: 2.92vw;
  }

  .g-news__prev,
  .g-news__next {
    display: none;
  }
}

/* Contactus - Figma design */
.g-contactus {
  background: var(--g-color-bg);
  padding: 0 0 3.33vw;
  max-width: 100%;
}

.g-contactus .g-section-title {
  color: var(--g-color-dark);

}

.g-contactus__wrap {
  display: flex;
  background: var(--g-color-dark);
  border-radius: var(--g-radius);
  overflow: hidden;
  min-height: 26.04vw;
  position: relative;
}

/* Left: Newsletter */
.g-contactus__left {
  width: 28%;
  padding: 5.21vw 2.08vw;
 
  display: flex;
  align-items: flex-start;
}

.g-contactus__middle-divider {
  width: 2px;
  background: #9D9D9D33;
  align-self: center;
  height: 20.83vw;
 
}

.g-contactus__left-inner {
  max-width: 16.67vw;
}

.g-contactus__left h3 {
  font-family: 'Exo','Noto Sans JP', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1.04vw, 1.5vw, 1.46vw);
  color: #fff;
  margin: 0 0 2.5vw 0;
  line-height: 1.3;
}

@media (max-width: 1236px) {
  .g-contactus__left h3 {
    margin-bottom: 1.04vw;
  }
}

.g-contactus__divider {
  width: 2.08vw;
  height: 3px;
  background: #fff;
  margin-bottom: 2.5vw;
}

@media (max-width: 1236px) {
  .g-contactus__divider {
    margin-bottom: 1.04vw;
  }
}

.g-contactus__left p {
  font-family: 'Exo','Noto Sans JP', system-ui, sans-serif;
  font-weight: 400;
  font-size: 0.94vw;
  color: rgba(255,255,255,1);
  margin: 0;
  line-height: 1.6;
  
}

/* Right: Contact Form */
.g-contactus__right {
  flex: 1;
  padding: 2.08vw 2.5vw 10px 2.5vw;
}

.g-contactus__right-title {
  font-family: 'Exo','Noto Sans JP', system-ui, sans-serif;
  font-weight: 500;
  font-size: 1.46vw;
  color: #fff;
  margin: 0 0 1.25vw 0;
}

@media (max-width: 1236px) {
  .g-contactus__right-title {
    margin-bottom: 16px;
  }
}

.g-contactus__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.g-contactus__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.22vw;
}

.g-contactus__form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.g-contactus__form-group label {
  font-family: 'Exo','Noto Sans JP', system-ui, sans-serif;
  font-weight: 400;
  font-size: 0.94vw;
  color: #fff;
  margin: 0;
  margin-bottom: 12px;
  margin-top: 12px;
}

.g-contactus__form-group input {
  width: 100%;
  padding: 14px 14px;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  background: #fff;
  box-sizing: border-box;
  font-family: 'Exo','Noto Sans JP', system-ui, sans-serif;
}

.g-contactus__form-group input:focus {
  outline: none;
  
}

.g-contactus__form-submit {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.g-contactus__submit-btn {
  padding: 10px 1.46vw;
  font-family: 'Exo','Noto Sans JP', system-ui, sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--g-color-dark);
  background: #fff;
  border: none;
  border-radius: 52.03vw;
  cursor: pointer;
  transition: all 0.2s ease;
}

.g-contactus__submit-btn:hover {
  background: var(--g-color-primary);
  color: #fff;
}

/* Responsive：平板 / 手机为上下堆叠，中间分隔由竖线改为全宽横线 */
@media (max-width: 991.98px) {
  .g-contactus {
    padding: 0 0 2.5vw;
  }
.g-contactus__form-group label {
  
  margin-bottom: 6px;
  margin-top: 6px;
}
  .g-contactus .g-section-title {
    margin-bottom: 1.67vw;
    padding: 0 ;
    font-size: 1.35vw;
  }

  .g-contactus__wrap {
    flex-direction: column;
    min-height: 0;
    border-radius: clamp(8px, 2vw, var(--g-radius));
  }

  .g-contactus__left {
    width: 100%;
    border-right: none;
    border-bottom: none;
    padding: clamp(1.46vw, 5vw, 2.08vw) clamp(1.04vw, 4vw, 1.46vw);
    box-sizing: border-box;

  }

  .g-contactus__middle-divider {
    width: 100%;
    height: 2px;
    min-height: 2px;
    max-height: 2px;
    align-self: stretch;
    flex-shrink: 0;
    margin: 0;
  }

  .g-contactus__left-inner {
    max-width: none;
  }

  .g-contactus__right {
    padding: clamp(1.46vw, 5vw, 2.08vw) clamp(1.04vw, 4vw, 1.46vw);
  }

  .g-contactus__right-title {
    font-size: clamp(1.04vw, 2.5vw, 1.46vw);
  }
}

@media (max-width: 767.98px) {
  .g-contactus__form-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .g-contactus__left h3 {
    font-size: clamp(1.04vw, 1.5vw, 1.46vw);
  }

  .g-contactus__left p {
    font-size: 16px;
  }

  .g-contactus__form-group label {
    font-size: 16px;
  }

  .g-contactus__form-submit {
    justify-content: stretch;
  }

  .g-contactus__submit-btn {
    width: 100%;
    text-align: center;
  }
  .g-contactus__submit-btn{
    padding:15px 1.46vw;
  }
}

/* ---------- 首页联系表单：右上角 SweetAlert 风格提示 ---------- */
.g-contact-toast-host {
  position: fixed;
  top: max(0.92vw, env(safe-area-inset-top, 0px));
  right: max(16.00px, env(safe-area-inset-right, 0px));
  z-index: 10050;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10.40px;
  pointer-events: none;
  max-width: min(18.33vw, calc(100vw - 1.25vw));
}

.g-contact-toast {
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: 13.60px;
  padding: 16.00px 10.40px 16.00px 1.25vw;
  border-radius: 14px;
  background: #fff;
  box-shadow:
    0 1.15vw 2.6vw rgba(15, 23, 42, 0.16),
    0 0 0 1px rgba(15, 23, 42, 0.06);
  opacity: 0;
  transform: translateX(calc(100% + 1.25vw));
  transition:
    opacity 0.3s ease,
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.g-contact-toast--show {
  opacity: 1;
  transform: translateX(0);
}

.g-contact-toast--success {
  border-left: 4px solid #22c55e;
}

.g-contact-toast--error {
  border-left: 4px solid #ef4444;
}

.g-contact-toast__icon {
  flex-shrink: 0;
  width: 2.29vw;
  height: 2.29vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.g-contact-toast--success .g-contact-toast__icon {
  background: rgba(34, 197, 94, 0.14);
  color: #16a34a;
}

.g-contact-toast--error .g-contact-toast__icon {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
}

.g-contact-toast__body {
  flex: 1;
  min-width: 0;
  padding-top: 2.40px;
}

.g-contact-toast__title {
  font-family: 'Exo','Noto Sans JP', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.46vw;
  color: var(--g-color-dark);
  line-height: 1.25;
  margin-bottom: 6px;
}

.g-contact-toast__msg {
  font-size: 0.94vw;
  line-height: 1.5;
  color: var(--g-color-text-secondary);
}

/* 仅成功提示：只显示配置文案，无标题 */
.g-contact-toast__msg--solo {
  font-size: 1.04vw;
  font-weight: 500;
  line-height: 1.55;
  color: var(--g-color-dark);
  padding-top: 3.20px;
}

.g-contact-toast__close {
  flex-shrink: 0;
  width: 1.67vw;
  height: 1.67vw;
  margin: -2px -2px 0 0;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--g-color-text-muted);
  font-size: 1.17vw;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.g-contact-toast__close:hover {
  background: rgba(0, 0, 0, 0.06);
  color: var(--g-color-text);
}

@keyframes g-about-arrow-wiggle {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(4px);
  }
  75% {
    transform: translateX(-4px);
  }
}

@keyframes g-contactus-spin {
  to {
    transform: rotate(360deg);
  }
}

.g-contactus__submit-btn.is-loading {
  position: relative;
  pointer-events: none;
  color: transparent !important;
}

.g-contactus__submit-btn.is-loading::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.94vw;
  height: 0.94vw;
  margin: -9px 0 0 -9px;
  border: 2px solid var(--g-color-primary);
  border-top-color: transparent;
  border-radius: 50%;
  animation: g-contactus-spin 0.65s linear infinite;
}


.g-stats .row{
  margin-right: 0;
  margin-left: 0;
}

@media (max-width: 767.98px) {
  .g-about__bottom-row{
    padding-left: 12px;
  }
  .g-stats {
    padding-bottom: 0;
    padding-top: 1.56vw;
  }
  .g-customers{
    padding-bottom: 1.56vw;
  }
  .g-business{
    padding-bottom: 2.08vw;
  }
  .g-about{
    padding-bottom: 1.56vw;
  }
  .g-news{
    padding-bottom: 1.67vw;
  }
  .g-about__wrap {
    padding: 10px;
  }

  .g-about__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .g-about__stat {
    padding: 12px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
  }

  .g-about__content-horizontalline {
    background: transparent;
  }

  .g-about__cirplay-wrap {
    display: none;
  }
  .g-hero__title{
    font-size: 14px;
  }
  .g-hero__subtitle{
      font-size: 12px;
  }
  .g-contactus__form-group input{
  padding-top: 10px;
  padding-bottom: 10px;
}
}