/* ============================================
   Company Page Styles
   ============================================ */

:root {
  --site-max-width: 1920px;
}

/* ============================================
   Title Focus Animation - 对焦动画
   ============================================ */
.title-focus-animate {
  opacity: 0;
  filter: blur(10px);
  transform: scale(0.975);
  transition: opacity 0.5s ease-out, filter 0.5s ease-out, transform 0.5s ease-out;
}

.title-focus-animate.in-view {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

/* ============================================
   Card Fade In Animation - 卡片淡入动画
   ============================================ */
.card-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.card-fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* 为每张卡片添加延迟 */
.card-fade-in:nth-child(1) {
  transition-delay: 0.1s;
}

.card-fade-in:nth-child(2) {
  transition-delay: 0.2s;
}

.card-fade-in:nth-child(3) {
  transition-delay: 0.3s;
}

.card-fade-in:nth-child(4) {
  transition-delay: 0.4s;
}

/* ============================================
   List Slide In Animation - 列表滑入动画
   ============================================ */
.list-slide-in li {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.list-slide-in.in-view li {
  opacity: 1;
  transform: translateX(0);
}

/* 为每个列表项添加递增延迟 */
.list-slide-in.in-view li:nth-child(1) { transition-delay: 0.05s; }
.list-slide-in.in-view li:nth-child(2) { transition-delay: 0.1s; }
.list-slide-in.in-view li:nth-child(3) { transition-delay: 0.15s; }
.list-slide-in.in-view li:nth-child(4) { transition-delay: 0.2s; }
.list-slide-in.in-view li:nth-child(5) { transition-delay: 0.25s; }
.list-slide-in.in-view li:nth-child(6) { transition-delay: 0.3s; }
.list-slide-in.in-view li:nth-child(7) { transition-delay: 0.35s; }
.list-slide-in.in-view li:nth-child(8) { transition-delay: 0.4s; }
.list-slide-in.in-view li:nth-child(9) { transition-delay: 0.45s; }
.list-slide-in.in-view li:nth-child(10) { transition-delay: 0.5s; }
.list-slide-in.in-view li:nth-child(11) { transition-delay: 0.55s; }
.list-slide-in.in-view li:nth-child(12) { transition-delay: 0.6s; }

/* ============================================
   Hero Section
   ============================================ */
.company-page {
  overflow-x: hidden;
}

.company-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #ffffff;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  z-index: 10;
}

.company-hero__pixel-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  background: #ffffff;
}

.company-hero__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 50px 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
}

/* ============================================
   Left Content - Title & Description
   ============================================ */
.company-hero__left {
  flex: 1;
  max-width: 680px;
}

.company-hero__title {
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.4;
  color: #111111;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
}

.company-hero__desc {
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: #666666;
  margin: 0 0 32px 0;
  max-width: 560px;
}

/* Buttons - 使用组件库样式 */
.company-hero__buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 深色圆角矩形按钮 */
.company-hero .btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 28px;
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: #111;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.company-hero .btn-solid:hover {
  background: #333;
}

.company-hero .btn-solid:active {
  transform: scale(0.98);
}

/* 黑色边框按钮 */
.company-hero .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 28px;
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  background: transparent;
  border: 1.5px solid #111;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.company-hero .btn-outline:hover {
  background: #111;
  color: #fff;
}

.company-hero .btn-outline:active {
  transform: scale(0.98);
}

/* ============================================
   Right Content - Badge & Logos
   ============================================ */
.company-hero__right {
  flex-shrink: 0;
  width: 630px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Badge */
.company-hero__badge {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 8px;
  position: relative;
  cursor: pointer;
}

.company-hero__badge-icon {
  height: 56px;
  width: auto;
}

.company-hero__badge-title {
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #111111;
}

/* 协会图片浮动元素 */
.company-hero__badge-popup {
  position: fixed;
  width: 400px;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
  background: #fff;
}

.company-hero__badge-popup.show {
  opacity: 1;
  pointer-events: auto;
}

.company-hero__badge-popup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 白色遮罩层 */
.company-hero__badge-popup::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

/* 鼠标提示 */
.company-hero__badge-tooltip {
  position: fixed;
  padding: 8px 16px;
  background: rgba(17, 17, 17, 0.9);
  color: #ffffff;
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 13px;
  font-weight: 400;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1001;
  white-space: nowrap;
}

.company-hero__badge-tooltip.show {
  opacity: 1;
}

/* Clients Text */
.company-hero__clients-text {
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  margin: 0 0 20px 0;
  letter-spacing: 0.02em;
}

.company-hero__clients-text strong {
  font-weight: 600;
  color: #111111;
}

/* Logo Marquee */
.company-hero__logos {
  width: 100%;
  overflow: hidden;
  margin-bottom: -30px;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.company-hero__logos-track {
  display: flex;
  width: max-content;
  animation: logoMarquee 25s linear infinite;
}

.company-hero__logos-content {
  display: flex;
  align-items: center;
  gap: 0;
  padding-right: 0;
}

.company-hero__logo {
  height: 90px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.company-hero__logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes logoMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================
   Showcase Section - Image Slider
   ============================================ */
.company-showcase {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  z-index: 10;
  background: #000;
}

.company-showcase__slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.company-showcase__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.company-showcase__img.active {
  opacity: 1;
}

/* ============================================
   Stats Section - Three Columns
   ============================================ */
.company-stats {
  position: relative;
  width: 100%;
  background: #ffffff;
  z-index: 10;
  padding: 80px 0;
}

.company-stats__container {
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  justify-content: flex-start;
}

.company-stats__item {
  flex: 1;
  padding: 0 40px;
  border-left: 1px solid #e5e5e5;
}

.company-stats__item:first-child {
  border-left: none;
  padding-left: 0;
}

.company-stats__item:last-child {
  padding-right: 0;
}

.company-stats__number {
  display: block;
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #111111;
  line-height: 1.2;
  margin-bottom: 4px;
}

.company-stats__label {
  display: none;
}

.company-stats__desc {
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #888888;
  margin: 0;
  letter-spacing: 0.02em;
}

/* ============================================
   Services Section - 服务领域
   ============================================ */
.company-services {
  position: relative;
  width: 100%;
  background: #ffffff;
  z-index: 10;
  padding-top: 40px;
}

.company-services__container {
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 0 50px;
}

.company-services .section-header {
  margin-bottom: 48px;
}

.company-services .section-header-label {
  display: block;
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  margin-bottom: 16px;
}

.company-services .section-header-title {
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  color: #111111;
  margin: 0;
}

.company-services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* 服务领域卡片样式 */
.company-services .card-forum {
  position: relative;
  min-height: 400px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: #f5f5f5;
  isolation: isolate;
}

.company-services .card-forum-image {
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 15px;
  overflow: hidden;
}

.company-services .card-forum-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

/* 遮罩层 - 使用单一渐变，默认左右都是100%不透明 */
.company-services .card-forum-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to right, rgba(245,245,245,1) 0%, rgba(245,245,245,1) 100%);
  transition: background 0.5s ease;
}

/* 展开时：右侧变为50%透明 */
.company-services .card-forum.is-expanded .card-forum-overlay {
  background: linear-gradient(to right, rgba(245,245,245,1) 0%, rgba(245,245,245,0.5) 100%);
}

.company-services .card-forum-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.company-services .card-forum-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.4s ease;
}

.company-services .card-forum.is-expanded .card-forum-header {
  transform: translateX(20px);
}

.company-services .card-forum-tag {
  display: inline-block;
  width: fit-content;
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  background: #111111;
  padding: 6px 12px;
  border-radius: 4px;
  transition: opacity 0.4s ease;
}

.company-services .card-forum.is-expanded .card-forum-tag {
  opacity: 0;
  pointer-events: none;
}

/* 标题容器 */
.company-services .card-forum-title-wrap {
  position: relative;
  transition: transform 0.4s ease;
}

.company-services .card-forum.is-expanded .card-forum-title-wrap {
  transform: translateY(-44px);
}

/* 返回按钮 */
.company-services .card-forum-back {
  position: absolute;
  left: -32px;
  top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  padding: 0;
}

.company-services .card-forum.is-expanded .card-forum-back {
  opacity: 1;
  transform: translateX(0);
}

.company-services .card-forum-back:hover svg {
  color: #333333;
}

.company-services .card-forum-back svg {
  color: #111111;
  width: 20px;
  height: 20px;
}

.company-services .card-forum-title {
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  color: #111111;
  margin: 0;
  transition: color 0.4s ease;
}

/* 描述文字 */
.company-services .card-forum-desc {
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: #111111;
  margin: 16px 0 0 0;
  max-width: 480px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.company-services .card-forum.is-expanded .card-forum-desc {
  opacity: 1;
  transform: translateY(0);
}

.company-services .card-forum-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.4s ease;
}

.company-services .card-forum.is-expanded .card-forum-footer {
  transform: translateX(20px);
}

/* 深色边框按钮 */
.company-services .btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 32px 2px;
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #111111;
  background: transparent;
  border: 1.5px solid #111111;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.company-services .btn-outline-dark:hover {
  background: #111111;
  color: #ffffff;
}

.company-services .btn-outline-dark:active {
  transform: scale(0.98);
}

/* 下划线链接 - 右下角 */
.company-services .card-forum-link {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.company-services .card-forum-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
}

.company-services .card-forum-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.company-services .card-forum-link:hover::before {
  width: 100%;
}

.company-services .card-forum.is-expanded .card-forum-link {
  color: #111111;
}

.company-services .card-forum.is-expanded .card-forum-link::after {
  background: rgba(0, 0, 0, 0.2);
}

.company-services .card-forum.is-expanded .card-forum-link::before {
  background: #111111;
}

/* ============================================
   Capabilities Section - 设计能力
   ============================================ */
.company-capabilities {
  position: relative;
  width: 100%;
  background: #ffffff;
  z-index: 10;
  padding: 100px 0;
}

.company-capabilities__container {
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 0 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.company-capabilities__title {
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.3;
  color: #111111;
  margin: 0;
}

.company-capabilities__right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.company-capabilities__text {
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: #666666;
  margin: 0;
}

.company-capabilities__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 48px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.company-capabilities__list li {
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.company-capabilities__list li::before {
  content: '—';
  color: #999999;
  font-size: 12px;
}

/* ============================================
   Clients Logo Marquee Section - 客户Logo滚动
   ============================================ */
.company-clients {
  position: relative;
  width: 100%;
  background: #ffffff;
  z-index: 10;
  padding: 0 0 80px;
  margin-bottom: var(--footer-h, 80vh);
  overflow: hidden;
}

.company-clients__marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.company-clients__track {
  display: flex;
  width: max-content;
  animation: clientsMarquee 30s linear infinite;
}

.company-clients__content {
  display: flex;
  align-items: center;
  gap: 0;
  padding-right: 0;
}

.company-clients__logo {
  height: 100px;
  width: auto;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

.company-clients__logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

@keyframes clientsMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 1200px) {
  .company-hero__container {
    padding: 0 40px 60px;
    gap: 40px;
  }
  
  .company-hero__title {
    font-size: 36px;
  }
  
  .company-hero__right {
    width: 400px;
  }
}

@media (max-width: 991px) {
  .company-hero {
    min-height: 100vh;
    padding-top: 120px;
  }
  
  .company-hero__container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px 50px;
    gap: 50px;
  }
  
  .company-hero__left {
    max-width: 100%;
  }
  
  .company-hero__title {
    font-size: 32px;
  }
  
  .company-hero__desc {
    max-width: 100%;
  }
  
  .company-hero__right {
    width: 100%;
    max-width: 400px;
    flex-shrink: 1;
  }
  
  /* Showcase */
  .company-showcase {
    height: 50vh;
  }
  
  /* Stats */
  .company-stats {
    padding: 60px 0;
  }
  
  .company-stats__container {
    padding: 0 20px;
  }
  
  .company-stats__number {
    font-size: 40px;
  }
  
  /* Services */
  .company-services__container {
    padding: 0 20px;
  }
  
  .company-services .section-header-title {
    font-size: 32px;
  }
  
  .company-services .card-forum {
    min-height: 340px;
  }
  
  .company-services .card-forum-title {
    font-size: 24px;
  }
  
  /* Capabilities */
  .company-capabilities {
    padding: 80px 0;
  }
  
  .company-capabilities__container {
    padding: 0 20px;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .company-capabilities__title {
    font-size: 32px;
  }
  
  /* Clients */
  .company-clients {
    padding: 0 0 60px;
    margin-bottom: var(--footer-h, 70vh);
  }
  
  .company-clients__logo {
    height: 150px;
  }
  
  .company-hero__logo {
    height: 135px;
  }
}

/* iPad 适配 (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .company-hero {
    padding-top: 120px;
  }

  .company-hero__container {
    padding: 0 32px 60px;
    gap: 40px;
  }

  .company-hero__title {
    font-size: 32px;
  }

  .company-capabilities__container {
    padding: 0 32px;
  }

  .company-clients {
    margin-bottom: var(--footer-h, 75vh);
  }
}

@media (max-width: 768px) {
  .company-hero {
    min-height: 100vh;
    padding-top: 100px;
  }
  
  .company-hero__container {
    padding: 0 20px 40px;
    gap: 36px;
  }
  
  .company-hero__title {
    font-size: 26px;
    margin-bottom: 16px;
  }
  
  .company-hero__desc {
    font-size: 14px;
    margin-bottom: 24px;
  }
  
  .company-hero__buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  
  .company-hero .btn-solid,
  .company-hero .btn-outline {
    width: 100%;
    justify-content: center;
  }
  
  .company-hero__right {
    max-width: 100%;
  }
  
  .company-hero__badge-icon {
    height: 44px;
  }
  
  .company-hero__badge-title {
    font-size: 13px;
  }
  
  .company-hero__logo {
    height: 70px;
  }
  
  /* Showcase */
  .company-showcase {
    height: 40vh;
    min-height: 240px;
  }
  
  /* Stats */
  .company-stats {
    padding: 48px 0;
  }
  
  .company-stats__container {
    padding: 0 20px;
    flex-direction: column;
    gap: 32px;
  }
  
  .company-stats__item {
    padding: 0;
    border-left: none;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 24px;
  }
  
  .company-stats__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .company-stats__number {
    font-size: 36px;
  }
  
  .company-stats__desc {
    font-size: 13px;
  }
  
  /* Services */
  .company-services {
    padding-top: 24px;
  }
  
  .company-services__container {
    padding: 0 20px;
  }
  
  .company-services .section-header {
    margin-bottom: 32px;
  }
  
  .company-services .section-header-label {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .company-services .section-header-title {
    font-size: 28px;
  }
  
  .company-services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .company-services .card-forum {
    min-height: 280px;
  }
  
  .company-services .card-forum-content {
    padding: 24px;
  }
  
  .company-services .card-forum-title {
    font-size: 22px;
  }
  
  .company-services .card-forum-desc {
    font-size: 13px;
    max-width: 100%;
  }
  
  .company-services .btn-outline-dark {
    height: 42px;
    padding: 0 24px 2px;
    font-size: 14px;
  }
  
  /* 移动端卡片：默认展示全部内容，不需要展开交互 */
  .company-services .card-forum {
    min-height: auto;
  }
  
  .company-services .card-forum-image {
    position: absolute;
  }
  
  .company-services .card-forum-overlay {
    background: linear-gradient(to bottom, rgba(245,245,245,0.92) 0%, rgba(245,245,245,0.85) 100%);
  }
  
  .company-services .card-forum-content {
    position: relative;
    height: auto;
    padding: 24px;
  }
  
  .company-services .card-forum-tag {
    margin-bottom: 4px;
  }
  
  .company-services .card-forum-title {
    font-size: 20px;
  }
  
  .company-services .card-forum-title br {
    display: none;
  }
  
  .company-services .card-forum-desc {
    opacity: 1;
    transform: none;
    margin: 12px 0 0;
    font-size: 13px;
    line-height: 1.7;
    max-width: 100%;
    color: #444;
  }
  
  .company-services .card-forum-header {
    gap: 8px;
  }
  
  .company-services .card-forum-title-wrap {
    transform: none !important;
  }
  
  .company-services .card-forum-back {
    display: none;
  }
  
  .company-services .card-forum-footer {
    margin-top: 16px;
  }
  
  .company-services .card-forum.is-expanded .card-forum-tag {
    opacity: 1;
    pointer-events: auto;
  }
  
  .company-services .card-forum.is-expanded .card-forum-header {
    transform: none;
  }
  
  .company-services .card-forum.is-expanded .card-forum-footer {
    transform: none;
  }
  
  .company-services .card-forum-detail {
    pointer-events: auto;
  }
  
  /* 隐藏协会弹出层（移动端无hover） */
  .company-hero__badge-popup,
  .company-hero__badge-tooltip {
    display: none !important;
  }
  
  /* Capabilities */
  .company-capabilities {
    padding: 60px 0;
  }
  
  .company-capabilities__container {
    padding: 0 20px;
    gap: 32px;
  }
  
  .company-capabilities__title {
    font-size: 26px;
  }
  
  .company-capabilities__text {
    font-size: 14px;
  }
  
  .company-capabilities__list {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  
  .company-capabilities__list li {
    font-size: 13px;
    padding: 5px 0;
  }
  
  /* Clients */
  .company-clients {
    padding: 0 0 48px;
    margin-bottom: var(--footer-h, 70vh);
  }
  
  .company-clients__logo {
    height: 105px;
  }
  
  .company-hero__logo {
    height: 105px;
  }
}

@media (max-width: 480px) {
  .company-hero {
    min-height: 100vh;
    padding-top: 80px;
  }
  
  .company-hero__container {
    padding: 0 16px 24px;
    gap: 28px;
  }
  
  .company-hero__title {
    font-size: 22px;
    margin-bottom: 12px;
  }
  
  .company-hero__desc {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .company-hero .btn-solid,
  .company-hero .btn-outline {
    height: 40px;
    font-size: 13px;
    border-radius: 6px;
  }
  
  .company-hero__badge-icon {
    height: 36px;
  }
  
  .company-hero__badge-title {
    font-size: 12px;
  }
  
  .company-hero__clients-text {
    font-size: 12px;
  }
  
  .company-hero__logo {
    height: 60px;
  }
  
  /* Showcase */
  .company-showcase {
    height: 32vh;
    min-height: 200px;
  }
  
  /* Stats */
  .company-stats {
    padding: 36px 0;
  }
  
  .company-stats__container {
    padding: 0 16px;
    gap: 24px;
  }
  
  .company-stats__item {
    padding-bottom: 20px;
  }
  
  .company-stats__number {
    font-size: 32px;
  }
  
  .company-stats__desc {
    font-size: 12px;
  }
  
  /* Services */
  .company-services {
    padding-top: 16px;
  }
  
  .company-services__container {
    padding: 0 16px;
  }
  
  .company-services .section-header {
    margin-bottom: 24px;
  }
  
  .company-services .section-header-label {
    font-size: 13px;
    margin-bottom: 8px;
  }
  
  .company-services .section-header-title {
    font-size: 24px;
  }
  
  .company-services__grid {
    gap: 12px;
  }
  
  .company-services .card-forum-content {
    padding: 18px;
  }
  
  .company-services .card-forum-tag {
    font-size: 12px;
    padding: 4px 10px;
  }
  
  .company-services .card-forum-title {
    font-size: 18px;
  }
  
  .company-services .card-forum-desc {
    font-size: 12px;
    line-height: 1.7;
    margin: 10px 0 0;
  }
  
  .company-services .card-forum-footer {
    margin-top: 12px;
  }
  
  .company-services .btn-outline-dark {
    height: 36px;
    padding: 0 18px 2px;
    font-size: 13px;
    border-radius: 6px;
  }
  
  /* Capabilities */
  .company-capabilities {
    padding: 48px 0;
  }
  
  .company-capabilities__container {
    padding: 0 16px;
    gap: 24px;
  }
  
  .company-capabilities__title {
    font-size: 22px;
  }
  
  .company-capabilities__text {
    font-size: 13px;
  }
  
  .company-capabilities__right {
    gap: 24px;
  }
  
  .company-capabilities__list {
    gap: 2px;
  }
  
  .company-capabilities__list li {
    font-size: 12px;
    padding: 4px 0;
  }
  
  /* Clients */
  .company-clients {
    padding: 0 0 36px;
    margin-bottom: var(--footer-h, 60vh);
  }
  
  .company-clients__logo {
    height: 90px;
  }
  
  .company-hero__logo {
    height: 90px;
  }
}
