@charset "UTF-8";
/* ── HERO ── */
@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes float-up-down {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
/* ── HERO FEATURE BAR ── */
.hero-feature-bar {
  position: relative;
  z-index: 20;
  margin-top: -95px;
  padding: 0 80px;
  display: flex;
  gap: 12px;
  align-items: stretch;
}
@media (max-width: 1280px) {
  .hero-feature-bar {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .hero-feature-bar {
    padding: 0 16px;
    margin-top: -24px;
    flex-direction: column;
  }
}

.hfb-left {
  flex-shrink: 0;
  width: 380px;
  min-height: 120px;
  border-radius: 16px;
  overflow: hidden;
  background: hsla(0, 0%, 100%, 0.4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid #ededee;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s;
}
.hfb-left:hover {
  background: hsla(0, 0%, 100%, 0.55);
  transform: translateY(-2px);
}
@media (max-width: 1280px) {
  .hfb-left {
    width: 300px;
  }
}
@media (max-width: 768px) {
  .hfb-left {
    width: 100%;
    min-height: 120px;
    border-radius: 12px;
  }
}

.hfb-left-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hfb-left-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px;
}

.hfb-left-logo {
  width: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.hfb-left-slogan {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  line-height: 1.5;
}

.hfb-right {
  flex: 1;
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  background: hsla(0, 0%, 100%, 0.4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid #ededee;
}
@media (max-width: 768px) {
  .hfb-right {
    flex-direction: column;
    border-radius: 12px;
  }
}

.hfb-right-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s;
  position: relative;
}
.hfb-right-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(0, 0, 0, 0.1);
}
.hfb-right-item:hover {
  background: rgba(255, 255, 255, 0.12);
}
.hfb-right-item:hover .hfb-right-title {
  color: #1366EC;
}
@media (max-width: 1280px) {
  .hfb-right-item {
    padding: 16px 18px;
  }
}
@media (max-width: 768px) {
  .hfb-right-item::after {
    display: none;
  }
  .hfb-right-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .hfb-right-item:last-child {
    border-bottom: none;
  }
}

.hfb-right-icon {
  width: 36px;
  height: 78px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hfb-right-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.hfb-icon-emoji {
  font-size: 18px;
  line-height: 1;
}

.hfb-right-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.hfb-right-title {
  font-size: 16px;
  font-weight: 500;
  color: #181c1f;
  transition: color 0.2s;
  white-space: nowrap;
}

.hfb-right-desc {
  font-size: 12px;
  color: #646a73;
  line-height: 1.5;
  white-space: normal;
}

.hero-section {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #dce9ff 0%, #e8d5f5 50%, #cfe0ff 100%);
  margin-top: -70px;
  transition: background 0.35s ease;
}
@media (max-width: 1600px) {
  .hero-section {
    min-height: 720px;
  }
}
@media (max-width: 1280px) {
  .hero-section {
    min-height: 680px;
  }
}
@media (max-width: 768px) {
  .hero-section {
    min-height: 540px;
  }
}

@keyframes hero-skeleton-shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
.hero-section:not(.is-ready):not(.has-cache) {
  background: linear-gradient(105deg, #dce9ff 0%, #dce9ff 30%, #eef2ff 45%, #f0e8ff 50%, #dce9ff 65%, #dce9ff 100%);
  background-size: 200% 100%;
  animation: hero-skeleton-shimmer 1.8s ease-in-out infinite;
}

.hero-section:not(.is-ready) .hero-banners,
.hero-section:not(.is-ready) .hero-indicators {
  opacity: 0;
  pointer-events: none;
}

.hero-banner-cache {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-banners {
  position: absolute;
  inset: 0;
  transition: opacity 0.35s ease;
}

.hero-banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-banner-slide.active {
  opacity: 1;
}

.hero-banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.25) 50%, transparent 80%);
  z-index: 1;
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1.5px, transparent 1.5px);
  background-size: 40px 40px;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero-dots {
    display: none;
  }
}

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

.hero-dot {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s;
}
.hero-dot.active {
  background: #333;
  width: 48px;
}
.hero-dot:hover:not(.active) {
  background: rgba(0, 0, 0, 0.4);
}

.hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 156px 60px 96px 220px;
  display: flex;
  align-items: center;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
@media (max-width: 1600px) {
  .hero-body {
    padding: 148px 56px 88px 100px;
  }
}
@media (max-width: 1200px) {
  .hero-body {
    padding: 140px 40px 80px 40px;
  }
}
@media (max-width: 768px) {
  .hero-body {
    padding: 110px 20px 72px 20px;
  }
}

.hero-body.is-hidden {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.hero-content {
  flex: 0 0 auto;
  width: 52%;
  max-width: 760px;
}
@media (max-width: 1024px) {
  .hero-content {
    width: 62%;
    max-width: none;
  }
}
@media (max-width: 768px) {
  .hero-content {
    width: 100%;
    text-align: center;
  }
}

.hero-heading {
  transform: translateY(-16px);
}
@media (max-width: 1024px) {
  .hero-heading {
    transform: translateY(-12px);
  }
}
@media (max-width: 768px) {
  .hero-heading {
    transform: translateY(-8px);
  }
}

.hero-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  color: #1a1a2e;
}
.hero-title .hero-title-highlight {
  background: linear-gradient(90deg, #5C99FF 20%, #1366EC 52%, #856EFA 82%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 1600px) {
  .hero-title {
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 30px;
  }
}

.hero-title-sub {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 24px;
  letter-spacing: -0.5px;
  color: rgba(26, 26, 46, 0.88);
}
@media (max-width: 1600px) {
  .hero-title-sub {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .hero-title-sub {
    font-size: 26px;
    margin-bottom: 18px;
  }
}

.hero-desc, .hero-description {
  max-width: 980px;
  font-size: 20px;
  color: #2d3238;
  line-height: 1.9;
  margin-bottom: 34px;
}
@media (max-width: 1600px) {
  .hero-desc, .hero-description {
    max-width: 900px;
    font-size: 17px;
    line-height: 1.85;
  }
}
@media (max-width: 768px) {
  .hero-desc, .hero-description {
    font-size: 14px;
  }
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  /* 移动端隐藏 Banner 区大按钮（头部已有「立即咨询」入口） */
  .hero-btns {
    display: none;
  }
}

.btn-consult {
  height: 48px !important;
  padding: 0 36px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  background: linear-gradient(40deg, #686BFD 30%, #2488FA 100%) !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35) !important;
  color: #fff !important;
  transition: all 0.25s ease !important;
}
.btn-consult:hover {
  background: linear-gradient(90deg, #4f52d9 0%, #6366f1 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.45) !important;
}

.btn-outline-dark {
  height: 48px !important;
  padding: 0 32px !important;
  font-size: 16px !important;
  border-radius: 4px !important;
  background: transparent !important;
  border-color: rgba(0, 0, 0, 0.3) !important;
  color: #333 !important;
}
.btn-outline-dark:hover {
  background: rgba(0, 0, 0, 0.06) !important;
  border-color: #333 !important;
  color: #1a1a2e !important;
}

.hero-stats {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  margin-top: 50px;
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 2px 12px rgba(100, 100, 200, 0.06);
  padding: 18px 2px;
  width: fit-content;
}
@media (max-width: 768px) {
  .hero-stats {
    flex-wrap: wrap;
    padding: 8px 2px;
    margin-top: 22px;
  }
}

.h-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2px 22px;
  position: relative;
}
.h-stat:not(:last-child) {
  border-right: 1px solid rgba(160, 150, 230, 0.3);
}

.h-stat-num {
  display: flex;
  align-items: baseline;
  gap: 1px;
}

.h-stat-val {
  font-size: 28px;
  font-weight: 800;
  color: #6366f1;
  line-height: 1;
  letter-spacing: -0.5px;
}

.h-stat-unit {
  font-size: 14px;
  color: #6366f1;
  font-weight: 700;
}

.h-stat-label {
  font-size: 12px;
  color: #333;
  margin-top: 4px;
  text-align: center;
  white-space: nowrap;
}

/* ── SECTION HEADER ── */
@keyframes tag-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(24, 144, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(24, 144, 255, 0);
  }
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .s-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(24, 144, 255, 0.12), rgba(114, 46, 209, 0.08));
  color: #1890ff;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(24, 144, 255, 0.3);
  animation: tag-pulse 2s ease-in-out infinite;
  transition: all 0.3s;
}
.section-header .s-tag:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(24, 144, 255, 0.2), rgba(114, 46, 209, 0.15));
}
.section-header h2 {
  font-size: 40px;
  font-weight: 400;
  color: #1a1a2e;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d3748 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 23px;
  }
}
.section-header p {
  font-size: 20px;
  color: #666;
  max-width: 1180px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── AI+营销场景 (Card Grid) ── */
@keyframes ai-card-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.ai-section {
  background: #fff;
  padding: 60px 0;
}

/* ── YUNQIANZAI ── */
.yqz-section {
  padding: 48px 0 52px;
  background: url("../img/yqz.png") center center/cover no-repeat;
}
.yqz-section > .container {
  max-width: 1880px;
  padding: 0 24px;
}

.yqz-section-header {
  margin-bottom: 28px;
}
.yqz-section-header h2 {
  font-size: 40px;
  font-weight: 400;
  color: #101828;
  -webkit-text-fill-color: initial;
  background: none;
}
.yqz-section-header p {
  color: #5f6b85;
}

.yqz-layout {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(520px, 1fr) minmax(240px, 320px);
  align-items: stretch;
  gap: 56px;
  min-height: 450px;
  padding: 20px 84px 12px;
  position: relative;
  justify-content: center;
}

.yqz-side {
  display: grid;
  align-content: center;
  gap: 44px;
  position: relative;
  z-index: 1;
}

.yqz-side--left {
  justify-items: start;
  transform: translateX(115px);
}

.yqz-side--right {
  justify-items: end;
  transform: translateX(248px);
}

.yqz-card {
  padding: 14px 16px 12px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(249, 252, 255, 0.9) 0%, rgba(214, 231, 252, 0.88) 100%);
  border: 1px solid rgba(223, 236, 255, 0.96);
  box-shadow: 0 12px 24px rgba(139, 172, 226, 0.1);
  min-height: 118px;
  width: 100%;
  max-width: 228px;
}
.yqz-card h3 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: #121826;
}
.yqz-card p {
  margin: 0;
  font-size: 11px;
  line-height: 1.68;
  color: #465d89;
}

.yqz-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px 26px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-right: 210px;
  padding-top: 20px;
}

.yqz-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8d6cf8 0%, #6e56f6 45%, #5e8dff 100%);
  box-shadow: 0 12px 24px rgba(108, 97, 246, 0.18);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
}

.yqz-more-btn {
  min-width: 132px;
  height: 42px;
  padding: 0 22px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #6366f1 0%, #818cf8 100%);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.yqz-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(76, 126, 246, 0.28);
}

@media (max-width: 1280px) {
  .yqz-section > .container {
    padding: 0 20px;
  }
  .yqz-layout {
    grid-template-columns: minmax(220px, 260px) minmax(420px, 1fr) minmax(220px, 260px);
    min-height: 400px;
    gap: 20px;
    padding: 16px 32px 8px;
  }
  .yqz-side {
    gap: 20px;
  }
  .yqz-actions {
    padding-right: 64px;
  }
  .yqz-side--right {
    transform: translateX(64px);
  }
  .yqz-card {
    padding: 14px 16px 12px;
    min-height: 118px;
  }
  .yqz-card h3 {
    font-size: 14px;
  }
  .yqz-card p {
    font-size: 11px;
    line-height: 1.68;
  }
}
@media (max-width: 960px) {
  .yqz-section {
    padding: 44px 0 48px;
  }
  .yqz-section > .container {
    padding: 0 20px;
  }
  .yqz-section-header {
    margin-bottom: 24px;
  }
  .yqz-section-header h2 {
    font-size: 26px;
  }
  .yqz-section-header p {
    font-size: 14px;
  }
  .yqz-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
    padding: 160px 14px 20px;
  }
  .yqz-side {
    gap: 20px;
    justify-items: stretch;
  }
  .yqz-side--left,
  .yqz-side--right {
    justify-items: stretch;
    transform: none;
  }
  .yqz-card {
    max-width: none;
  }
  .yqz-actions {
    gap: 10px;
    justify-content: center;
    padding-right: 0;
  }
  .yqz-tag {
    min-width: 132px;
    height: 42px;
    font-size: 18px;
  }
  .yqz-more-btn {
    min-width: 116px;
    height: 38px;
    font-size: 14px;
  }
}
/* ── BILEI SCRM ── */
.bl-section {
  padding: 56px 0 64px;
  background: url("../img/bl.png") center center/cover no-repeat;
}
.bl-section > .container {
  max-width: 1680px;
  padding: 0 32px;
}

.bl-section-header {
  margin-bottom: 34px;
}
.bl-section-header h2 {
  font-size: 40px;
  font-weight: 400;
  color: #111827;
  -webkit-text-fill-color: initial;
  background: none;
}
.bl-section-header p {
  color: #5f6b85;
}

.bl-layout {
  display: grid;
  grid-template-columns: minmax(320px, 440px) minmax(540px, 1fr);
  align-items: end;
  gap: 28px;
  min-height: 520px;
  padding: 28px 12px 20px;
}

.bl-content {
  display: grid;
  gap: 22px;
  max-width: 420px;
  transform: translateX(28px);
}

.bl-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
}
.bl-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #55657f;
}

.bl-more-btn {
  width: fit-content;
  min-width: 128px;
  height: 40px;
  margin-top: 12px;
  padding: 0 22px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #6366f1 0%, #818cf8 100%);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
}

.bl-visual-spacer {
  min-height: 1px;
}

.bl-tags {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.bl-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 144px;
  height: 34px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8f74fa 0%, #8a67f4 55%, #6c8fff 100%);
  box-shadow: 0 10px 20px rgba(117, 101, 246, 0.16);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 1280px) {
  .bl-layout {
    grid-template-columns: minmax(300px, 380px) minmax(420px, 1fr);
    gap: 20px;
    min-height: 420px;
    padding: 16px 0 12px;
  }
  .bl-card h3 {
    font-size: 17px;
  }
  .bl-card p {
    font-size: 13px;
  }
  .bl-content {
    gap: 18px;
    transform: translateX(16px);
  }
}
@media (max-width: 960px) {
  .bl-section {
    padding: 44px 0 48px;
  }
  .bl-section > .container {
    padding: 0 20px;
  }
  .bl-section-header {
    margin-bottom: 24px;
  }
  .bl-section-header h2 {
    font-size: 28px;
  }
  .bl-section-header p {
    font-size: 15px;
  }
  .bl-layout {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: auto;
    padding: 180px 0 0;
  }
  .bl-content {
    order: 1;
    max-width: none;
    transform: none;
  }
  .bl-tag {
    min-width: 124px;
    height: 32px;
    font-size: 13px;
  }
}
/* ── XUEXIAO ── */
.xx-section {
  padding: 56px 0 64px;
  background: url("../img/xx.png") center center/cover no-repeat;
}
.xx-section > .container {
  max-width: 1680px;
  padding: 0 32px;
}

.xx-section-header {
  margin-bottom: 48px;
  transform: translateY(-12px);
}
.xx-section-header h2 {
  font-size: 40px;
  font-weight: 400;
  color: #111827;
  -webkit-text-fill-color: initial;
  background: none;
}
.xx-section-header p {
  color: #5f6b85;
}

.xx-layout {
  display: grid;
  grid-template-columns: minmax(620px, 1fr) minmax(320px, 430px);
  align-items: center;
  gap: 28px;
  min-height: 420px;
  padding: 12px 20px 8px;
}

.xx-visual-spacer {
  min-height: 1px;
}

.xx-content {
  display: grid;
  gap: 18px;
  max-width: 410px;
  justify-self: end;
}

.xx-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: #141b2b;
}
.xx-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: #5f6b85;
}

.xx-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  padding: 10px 18px 0 260px;
}

.xx-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-right: auto;
}

.xx-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 146px;
  height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8f74fa 0%, #8964f3 52%, #6694ff 100%);
  box-shadow: 0 10px 20px rgba(116, 102, 246, 0.16);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.xx-more-btn {
  min-width: 128px;
  height: 40px;
  padding: 0 22px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #6366f1 0%, #818cf8 100%);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 1280px) {
  .xx-layout {
    grid-template-columns: minmax(460px, 1fr) minmax(280px, 360px);
    min-height: 360px;
    gap: 18px;
    padding: 8px 0 0;
  }
  .xx-content {
    max-width: 360px;
  }
  .xx-card h3 {
    font-size: 16px;
  }
  .xx-card p {
    font-size: 13px;
  }
  .xx-actions {
    padding: 10px 24px 0 180px;
  }
}
@media (max-width: 960px) {
  .xx-section {
    padding: 44px 0 48px;
  }
  .xx-section > .container {
    padding: 0 20px;
  }
  .xx-section-header {
    margin-bottom: 32px;
    transform: none;
  }
  .xx-section-header h2 {
    font-size: 28px;
  }
  .xx-section-header p {
    font-size: 15px;
  }
  .xx-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 20px;
    padding: 180px 0 0;
  }
  .xx-content {
    max-width: none;
    justify-self: stretch;
  }
  .xx-actions {
    flex-direction: column;
    align-items: center;
    padding: 8px 0 0;
  }
  .xx-tags {
    justify-content: center;
  }
  .xx-tag {
    min-width: 126px;
    height: 32px;
    font-size: 13px;
  }
}
.yqz-capability-section {
  padding: 52px 0 60px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.yqz-capability-section > .container {
  max-width: 1280px;
  padding: 0 24px;
}

.yqz-capability-header {
  margin-bottom: 34px;
}
.yqz-capability-header h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.28;
  color: #181c1f;
  background: none;
  -webkit-text-fill-color: initial;
}

.yqz-capability-nav-shell {
  position: relative;
  z-index: 4;
  margin-bottom: 24px;
}

.yqz-capability-wrap {
  position: relative;
}

.yqz-capability-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  align-items: stretch;
}

.yqz-capability-nav-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 20px 20px 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 12px 48px rgba(35, 64, 124, 0.12);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.yqz-capability-panel-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 14px;
  background: transparent;
  color: #b0b7c3;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.22s ease, color 0.22s ease;
}
.yqz-capability-panel-close:hover {
  background: rgba(243, 246, 255, 0.96);
  color: #7c68f8;
}

.yqz-capability-panel-close__chevron {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(225deg);
  margin-top: 4px;
}

.yqz-capability-panel-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 4px;
  padding-right: 52px;
}

.yqz-capability-panel-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0 0 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 8px;
}

.yqz-panel-btn {
  height: 38px;
  padding: 0 18px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.yqz-panel-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.yqz-panel-btn--primary {
  background: linear-gradient(90deg, #6366f1 0%, #818cf8 100%);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
  color: #fff;
}
.yqz-panel-btn--link {
  background: transparent;
  color: #6366f1;
  font-weight: 500;
}

/* 展开动画 */
.yqz-expand-enter-active,
.yqz-expand-leave-active {
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.yqz-expand-enter-from,
.yqz-expand-leave-to {
  opacity: 0;
  transform: translateY(-8px);
}

/* 浮层显隐过渡（替代官网 Vue transition name="yqz-expand"） */
.yqz-capability-nav-panel {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
  pointer-events: none;
}
.yqz-capability-nav-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: auto;
}

.yqz-capability-more {
  flex: 0 0 44px;
  align-self: center;
  justify-self: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 14px;
  background: transparent;
  color: #b0b7c3;
  cursor: pointer;
  transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
.yqz-capability-more:hover {
  background: rgba(243, 246, 255, 0.96);
  color: #7c68f8;
}
.yqz-capability-more.is-expanded .yqz-capability-more__chevron {
  transform: rotate(180deg);
}

.yqz-capability-more__chevron {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.22s ease;
}

.yqz-capability-tab {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 0 0 125px;
  min-height: 116px;
  padding: 14px 12px 16px;
  border: none;
  border-radius: 24px;
  background: transparent;
  color: #384146;
  cursor: pointer;
  transition: transform 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
}
.yqz-capability-tab:hover {
  transform: translateY(-2px);
  background: rgba(240, 244, 255, 0.72);
}
.yqz-capability-tab.is-active {
  background: linear-gradient(180deg, #f3f5fb 0%, #eceff8 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 127, 255, 0.06);
}

.yqz-capability-tab--compact {
  min-height: 132px;
  padding: 14px 10px 16px;
}

.yqz-capability-tab__badge {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 52px;
  height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(159, 119, 255, 0.45);
  background: rgba(255, 255, 255, 0.9);
  color: #7c68f8;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
}

.yqz-capability-tab__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-top: 8px;
}

.yqz-capability-tab__icon {
  max-width: 52px;
  max-height: 52px;
  object-fit: contain;
}

.yqz-capability-tab__label {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #181c1f;
  text-align: center;
}

.yqz-capability-panel {
  display: grid;
  grid-template-columns: minmax(360px, 440px) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.yqz-capability-copy,
.yqz-capability-visual {
  min-height: 420px;
  max-height: 560px;
  border-radius: 28px;
}

.yqz-capability-copy {
  display: flex;
  flex-direction: column;
  padding: 28px 34px 26px;
  background: linear-gradient(180deg, #f7f8fc 0%, #f4f7ff 100%);
}
.yqz-capability-copy h3 {
  margin: 14px 0 22px;
  font-size: 26px;
  line-height: 1.35;
  font-weight: 700;
  color: #181c1f;
}
.yqz-capability-copy .yqz-heading-highlight {
  background: linear-gradient(90deg, #5C99FF 20%, #1366EC 52%, #856EFA 82%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.yqz-capability-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}
.yqz-capability-copy li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.6;
  color: #4c5157;
}
.yqz-capability-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, #97b4ff 0%, #7c68f8 100%);
}

.yqz-capability-copy__mark {
  width: 40px;
  height: 40px;
}

.yqz-capability-copy__mark-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.yqz-capability-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 26px;
}

.yqz-capability-btn {
  height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.yqz-capability-btn:hover {
  transform: translateY(-1px);
}

.yqz-capability-btn--primary {
  border: none;
  background: linear-gradient(40deg, #686BFD 30%, #2488FA 100%) !important;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
  color: #fff;
}

.yqz-capability-btn--secondary {
  border: 1px solid #2488FA;
  background: transparent;
  color: #2488FA;
}
.yqz-capability-btn--secondary:hover {
  background: rgba(36, 136, 250, 0.08);
}

.yqz-capability-visual {
  position: relative;
  overflow: hidden;
  padding: 0;
  /* background:
    var(--yqz-capability-bg, transparent),
    var(--yqz-capability-visual-bg-image) center center / cover no-repeat,
    #ffffff; */
  transition: background 0.4s ease;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.yqz-capability-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.yqz-capability-visual__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.yqz-capability-visual__media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* 无背景图时的默认流动渐变 */
/* .yqz-capability-visual--default-bg {
  background: linear-gradient(110deg, #fafbff 0%, #f9f9fa 33%, #fff9fb 66%, #fafbff 100%);
  animation: yqz-visual-aurora 8s ease-in-out infinite !important;
} */
@keyframes yqz-visual-aurora {
  0% {
    background: linear-gradient(110deg, #fafbff 0%, #f9f9fa 33%, #fff9fb 66%, #fafbff 100%);
  }
  33% {
    background: linear-gradient(110deg, #f9f9fa 0%, #fff9fb 33%, #fafbff 66%, #f9f9fa 100%);
  }
  66% {
    background: linear-gradient(110deg, #fff9fb 0%, #fafbff 33%, #f9f9fa 66%, #fff9fb 100%);
  }
  100% {
    background: linear-gradient(110deg, #fafbff 0%, #f9f9fa 33%, #fff9fb 66%, #fafbff 100%);
  }
}
/* 体验按钮外层定位容器 */
.yqz-capability-experience-mask {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 雷达脉冲环 */
.yqz-capability-experience-ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
  animation: experience-ring-pulse 1.5s ease-out infinite;
}

.yqz-capability-experience-ring--1 {
  animation-delay: 0s;
}

.yqz-capability-experience-ring--2 {
  animation-delay: 0.5s;
}

.yqz-capability-experience-ring--3 {
  animation-delay: 1s;
}

@keyframes experience-ring-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
/* 按钮本体 */
.yqz-capability-experience-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #6366f1 0%, #818cf8 100%);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 0 3px rgba(255, 255, 255, 0.08), 0 0 18px 6px rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}
.yqz-capability-experience-btn:hover {
  transform: scale(1.06);
  background: rgba(20, 20, 30, 0.8);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 0 0 3px rgba(255, 255, 255, 0.14), 0 0 26px 8px rgba(255, 255, 255, 0.18);
}
.yqz-capability-experience-btn:active {
  transform: scale(0.97);
}
.yqz-capability-experience-btn {
  /* hover 时暂停脉冲环动画 */
}
.yqz-capability-experience-btn:hover ~ .yqz-capability-experience-ring, .yqz-capability-experience-btn:hover + .yqz-capability-experience-ring {
  animation-play-state: paused;
}

.yqz-capability-experience-btn__arrow {
  font-size: 18px;
  line-height: 1;
  letter-spacing: -1px;
  opacity: 0.9;
  animation: experience-arrow-flow 1.6s ease-in-out infinite;
}

@keyframes experience-arrow-flow {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.9;
  }
  50% {
    transform: translateX(4px);
    opacity: 0.55;
  }
}
@media (max-width: 1280px) {
  .yqz-capability-nav-panel {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .yqz-capability-panel {
    grid-template-columns: minmax(320px, 400px) minmax(0, 1fr);
  }
  .yqz-capability-copy,
  .yqz-capability-visual {
    min-height: 430px;
  }
}
@media (max-width: 960px) {
  .yqz-capability-section {
    padding: 52px 0 60px;
  }
  .yqz-capability-section > .container {
    padding: 0 20px;
  }
  .yqz-capability-header {
    margin-bottom: 24px;
  }
  .yqz-capability-header h2 {
    font-size: 28px;
  }
  .yqz-capability-nav-shell {
    margin-bottom: 24px;
  }
  .yqz-capability-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .yqz-capability-tab {
    flex: none;
  }
  .yqz-capability-nav-panel {
    position: static;
    margin-top: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }
  .yqz-capability-more {
    margin-top: 0;
  }
  .yqz-capability-tab {
    min-height: 124px;
    padding: 16px 10px;
    border-radius: 20px;
  }
  .yqz-capability-tab__label {
    font-size: 14px;
  }
  .yqz-capability-tab--compact {
    min-height: 124px;
  }
  .yqz-capability-panel {
    grid-template-columns: 1fr;
  }
  .yqz-capability-copy,
  .yqz-capability-visual {
    min-height: auto;
  }
  .yqz-capability-copy {
    padding: 26px 22px 24px;
  }
  .yqz-capability-copy h3 {
    margin: 16px 0 22px;
    font-size: 24px;
  }
  .yqz-capability-copy li {
    font-size: 16px;
  }
  .yqz-capability-visual {
    min-height: 280px;
    padding: 18px;
  }
  .yqz-capability-actions {
    padding-top: 28px;
  }
  .yqz-capability-btn {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .yqz-capability-section {
    padding: 36px 0 44px;
  }
  .yqz-capability-section > .container {
    padding: 0 16px;
  }
  .yqz-section-header h2 {
    font-size: 23px;
  }
  .yqz-section-header p {
    font-size: 14px;
  }
  .yqz-capability-nav-shell {
    margin-bottom: 16px;
  }
  .yqz-capability-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) 36px;
    gap: 8px;
  }
  .yqz-capability-tab {
    flex: none;
    min-height: 88px;
    gap: 8px;
    padding: 10px 6px 12px;
    border-radius: 16px;
  }
  .yqz-capability-tab__icon-wrap {
    width: 40px;
    height: 40px;
    margin-top: 8px;
  }
  .yqz-capability-tab__icon {
    max-width: 40px;
    max-height: 40px;
  }
  .yqz-capability-tab__label {
    font-size: 12px;
  }
  .yqz-capability-tab--compact {
    min-height: 88px;
  }
  .yqz-capability-tab__badge {
    font-size: 10px;
    height: 18px;
    top: 6px;
    min-width: 44px;
  }
  .yqz-capability-copy {
    padding: 20px 18px 20px;
  }
  .yqz-capability-copy h3 {
    margin: 12px 0 16px;
    font-size: 20px;
  }
  .yqz-capability-copy li {
    font-size: 14px;
  }
  .yqz-capability-visual {
    min-height: 220px;
    padding: 14px;
  }
  .yqz-capability-experience-btn {
    height: 40px;
    padding: 0 18px;
    font-size: 14px;
  }
  .yqz-capability-actions {
    padding-top: 20px;
  }
  .yqz-capability-btn {
    height: 38px;
    padding: 0 16px;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .yqz-capability-section {
    padding: 28px 0 36px;
  }
  .yqz-capability-section > .container {
    padding: 0 12px;
  }
  .yqz-section-header h2 {
    font-size: 20px;
  }
  .yqz-section-header p {
    font-size: 13px;
    margin-top: 6px;
  }
  .yqz-capability-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }
  .yqz-capability-tab {
    flex: none;
    min-height: 76px;
    gap: 6px;
    padding: 8px 4px 10px;
    border-radius: 14px;
  }
  .yqz-capability-tab__icon-wrap {
    width: 32px;
    height: 32px;
    margin-top: 4px;
  }
  .yqz-capability-tab__icon {
    max-width: 32px;
    max-height: 32px;
  }
  .yqz-capability-tab__label {
    font-size: 11px;
  }
  .yqz-capability-tab--compact {
    min-height: 76px;
  }
  .yqz-capability-copy {
    padding: 16px 14px 16px;
  }
  .yqz-capability-copy h3 {
    margin: 10px 0 14px;
    font-size: 18px;
  }
  .yqz-capability-copy li {
    font-size: 13px;
    padding-left: 18px;
  }
  .yqz-capability-visual {
    min-height: 180px;
    padding: 12px;
  }
  .yqz-capability-experience-btn {
    height: 36px;
    padding: 0 14px;
    font-size: 13px;
    gap: 5px;
  }
}
/* ── PRODUCT INNOVATION ── */
.pi-mobile-dots {
  display: none;
}

@keyframes pi-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes pi-glow {
  0%, 100% {
    opacity: 0.45;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}
.product-innovation-section {
  padding: 72px 0 44px;
  background: radial-gradient(circle at 15% 14%, rgba(99, 102, 241, 0.08), transparent 24%), radial-gradient(circle at 82% 18%, rgba(56, 189, 248, 0.08), transparent 22%), linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}
.product-innovation-section > .container {
  max-width: 1800px;
  padding: 0 80px;
}

.product-innovation-header {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}
.product-innovation-header h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 400;
  color: #111827;
}
.product-innovation-header p {
  max-width: 2000px;
  margin: 14px auto 0;
  font-size: 20px;
  line-height: 1.6;
  color: #5f6b85;
}

.product-innovation-header__halo {
  position: absolute;
  left: 50%;
  top: -30px;
  width: 180px;
  height: 180px;
  transform: translateX(-50%);
  background-image: radial-gradient(rgba(153, 170, 255, 0.45) 1.1px, transparent 1.1px);
  background-size: 10px 10px;
  opacity: 0.28;
  pointer-events: none;
}

.product-innovation-title-row {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 38px;
}

.product-innovation-title-arrow {
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
  color: #2f6dff;
}

.product-innovation-grid {
  display: grid;
  gap: 10px;
  align-items: stretch;
  transition: grid-template-columns 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.product-innovation-grid.active-0 {
  grid-template-columns: 1.85fr 1fr 1fr 1fr;
}
.product-innovation-grid.active-1 {
  grid-template-columns: 1fr 1.85fr 1fr 1fr;
}
.product-innovation-grid.active-2 {
  grid-template-columns: 1fr 1fr 1.85fr 1fr;
}
.product-innovation-grid.active-3 {
  grid-template-columns: 1fr 1fr 1fr 1.85fr;
}

.product-innovation-card {
  position: relative;
  height: 550px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(221, 231, 255, 0.95);
  background: linear-gradient(180deg, #edf4ff 0%, #e3eeff 100%);
  transition: box-shadow 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.product-innovation-card:hover {
  box-shadow: 0 16px 34px rgba(104, 131, 203, 0.14);
  border-color: rgba(117, 146, 255, 0.45);
}
.product-innovation-card.is-active {
  background: linear-gradient(#c2daff, #f3f7ff);
}
.product-innovation-card.is-active .product-innovation-card__reveal {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.product-innovation-card.is-active .product-innovation-card__link {
  opacity: 0;
  transform: translateX(8px);
}
.product-innovation-card.is-active .product-innovation-card__visual {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.product-innovation-card.is-active .product-innovation-card__ambient {
  opacity: 1;
}
.product-innovation-card.is-active .product-innovation-card__media {
  transform: translateY(0) scale(1);
  opacity: 1;
  filter: saturate(1.02) brightness(1.02);
}
.product-innovation-card.is-active .product-innovation-card__image--base {
  opacity: 0;
  transform: scale(1.008);
}
.product-innovation-card.is-active .product-innovation-card__image--hover {
  opacity: 1;
  transform: translateY(0);
}

.product-innovation-card--analytics,
.product-innovation-card--knowledge,
.product-innovation-card--studio {
  background: linear-gradient(180deg, #edf3ff 0%, #eef4ff 100%);
}

.product-innovation-card__ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0;
  transition: opacity 0.28s ease;
  animation: pi-glow 5.2s ease-in-out infinite;
}

.product-innovation-card__ambient.ambient-a {
  width: 180px;
  height: 180px;
  top: -36px;
  left: -34px;
  background: radial-gradient(circle, rgba(123, 181, 255, 0.55) 0%, rgba(123, 181, 255, 0) 72%);
}

.product-innovation-card__ambient.ambient-b {
  width: 220px;
  height: 220px;
  right: -60px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(165, 129, 255, 0.35) 0%, rgba(165, 129, 255, 0) 74%);
  animation-delay: 1.2s;
}

.product-innovation-card__content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 24px 16px 0;
  display: flex;
  flex-direction: column;
}

.product-innovation-card__text {
  position: relative;
  z-index: 2;
  min-height: 286px;
  display: flex;
  flex-direction: column;
}

.product-innovation-card__name {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #1c2434;
}

.product-innovation-card h3 {
  margin: 14px 0 0;
  font-size: 21px;
  line-height: 1.42;
  font-weight: 500;
  color: #1c2434;
}

.product-innovation-card p {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.85;
  color: #4d5d7c;
}

.product-innovation-card__reveal {
  margin-top: 18px;
  min-height: 142px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.product-innovation-card__features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-innovation-card__features li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  line-height: 1.65;
  color: #3f5073;
}
.product-innovation-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #367bff 0%, #8a63ff 100%);
  box-shadow: 0 0 0 4px rgba(54, 123, 255, 0.08);
}

.product-innovation-card__btn {
  margin-top: 18px;
  width: 124px;
  height: 40px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(40deg, #686BFD 30%, #2488FA 100%) !important;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: box-shadow 0.22s ease;
}
.product-innovation-card__btn:hover {
  box-shadow: 0 18px 32px rgba(84, 121, 255, 0.26);
}
.product-innovation-card__btn--secondary {
  background: transparent !important;
  border: 1px solid #2488FA;
  color: #2488FA;
  box-shadow: none;
  margin-left: 12px;
}
.product-innovation-card__btn--secondary:hover {
  background: rgba(36, 136, 250, 0.08) !important;
  box-shadow: none;
}

.product-innovation-card__link {
  margin-top: 14px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #2f6dff;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.product-innovation-card__visual {
  position: relative;
  margin-top: auto;
  height: 202px;
  transform: translateY(4px) scale(0.995);
  opacity: 0.96;
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.28s ease;
}

.product-innovation-card__media {
  position: absolute;
  inset: 0;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  background: transparent;
  transform: translateY(4px) scale(0.985);
  opacity: 0.82;
  filter: saturate(0.9) brightness(1.02);
  transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.32s ease, filter 0.32s ease;
}
.product-innovation-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 0;
}

.product-innovation-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.product-innovation-card__image--base {
  z-index: 0;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transform: scale(1);
  transition: transform 0.22s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.14s ease;
}

.product-innovation-card__image--hover {
  z-index: 1;
  object-fit: contain;
  object-position: center bottom;
  padding: 14px 10px 0;
  opacity: 0;
  transform: translateY(112%) scale(0.985);
  transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.18s ease;
}

.product-innovation-card__chips {
  position: absolute;
  left: 12px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 3;
}
.product-innovation-card__chips span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  height: 32px;
  padding: 0 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(196, 214, 255, 0.9);
  box-shadow: 0 8px 18px rgba(110, 140, 206, 0.12);
  color: #45577d;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(10px);
  animation: pi-float 5.2s ease-in-out infinite;
}
.product-innovation-card__chips span:nth-child(2) {
  animation-delay: 0.8s;
}
.product-innovation-card__chips span:nth-child(3) {
  animation-delay: 1.6s;
}

.product-innovation-card__badge {
  position: absolute;
  right: 16px;
  bottom: 18px;
  z-index: 3;
  height: 34px;
  padding: 0 16px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(196, 214, 255, 0.9);
  box-shadow: 0 8px 18px rgba(110, 140, 206, 0.12);
  color: #4a5d86;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.pi-workspace-tags {
  position: absolute;
  left: 10px;
  bottom: 68px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 3;
}
.pi-workspace-tags span {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(162, 196, 255, 0.7);
  box-shadow: 0 8px 18px rgba(110, 140, 206, 0.16);
  color: #45577d;
  font-size: 12px;
  font-weight: 700;
  animation: pi-float 4.8s ease-in-out infinite;
}
.pi-workspace-tags span:nth-child(2) {
  animation-delay: 0.8s;
}
.pi-workspace-tags span:nth-child(3) {
  animation-delay: 1.6s;
}

.pi-workspace-window {
  position: absolute;
  right: 12px;
  bottom: 0;
  width: calc(100% - 82px);
  height: 212px;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  border: 1px solid rgba(177, 205, 255, 0.82);
  background: rgba(245, 249, 255, 0.92);
  box-shadow: 0 22px 48px rgba(91, 122, 188, 0.18);
}

.pi-workspace-window__top {
  height: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  background: rgba(194, 220, 255, 0.7);
}
.pi-workspace-window__top i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.9;
}

.pi-workspace-window__body {
  display: grid;
  grid-template-columns: 72px 1fr;
  height: calc(100% - 28px);
}

.pi-workspace-sidebar {
  padding: 14px 10px;
  background: rgba(232, 240, 255, 0.7);
}
.pi-workspace-sidebar span {
  display: block;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(98, 136, 255, 0.34), rgba(149, 102, 255, 0.34));
  margin-bottom: 12px;
}

.pi-workspace-main {
  padding: 16px 16px 0;
}

.pi-workspace-main__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.pi-workspace-main__stats b {
  display: block;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(210, 223, 255, 0.86);
}

.pi-workspace-main__hero {
  height: 58px;
  margin-top: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(171, 193, 255, 0.5), rgba(209, 220, 255, 0.88));
}

.pi-workspace-main__rows {
  margin-top: 14px;
}
.pi-workspace-main__rows i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(175, 190, 225, 0.42);
  margin-bottom: 8px;
}
.pi-workspace-main__rows i:nth-child(1) {
  width: 92%;
}
.pi-workspace-main__rows i:nth-child(2) {
  width: 74%;
}
.pi-workspace-main__rows i:nth-child(3) {
  width: 86%;
}

.pi-workspace-popup {
  position: absolute;
  right: 0;
  bottom: 16px;
  width: 124px;
  padding: 12px 12px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(196, 215, 255, 0.86);
  box-shadow: 0 16px 32px rgba(88, 107, 162, 0.18);
  z-index: 4;
}
.pi-workspace-popup em {
  display: block;
  width: 58px;
  height: 10px;
  border-radius: 999px;
  background: rgba(120, 144, 255, 0.35);
  margin-bottom: 10px;
}
.pi-workspace-popup span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(225, 233, 248, 0.88);
  margin-top: 8px;
}

.pi-analytics-stack {
  position: absolute;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(228, 239, 255, 0.78), rgba(198, 221, 255, 0.5));
  box-shadow: inset 0 0 0 1px rgba(194, 214, 255, 0.7);
}

.pi-analytics-stack.stack-back {
  left: 22px;
  bottom: 28px;
  width: 58%;
  height: 110px;
  transform: rotate(-7deg);
}

.pi-analytics-stack.stack-mid {
  left: 46px;
  bottom: 40px;
  width: 54%;
  height: 96px;
  transform: rotate(8deg);
}

.pi-analytics-core {
  position: absolute;
  left: 74px;
  right: 28px;
  bottom: 28px;
  height: 132px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(111, 176, 255, 0.7), rgba(84, 145, 255, 0.38));
  border: 1px solid rgba(173, 213, 255, 0.78);
  box-shadow: 0 18px 36px rgba(86, 125, 198, 0.2);
  backdrop-filter: blur(10px);
}

.pi-analytics-core__thumb {
  position: absolute;
  left: 22px;
  top: 24px;
  width: 80px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(209, 225, 255, 0.68));
}

.pi-analytics-core__chart {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 120px;
  height: 68px;
  display: flex;
  align-items: end;
  gap: 10px;
}
.pi-analytics-core__chart i {
  flex: 1;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.52));
  animation: pi-float 5s ease-in-out infinite;
}
.pi-analytics-core__chart i:nth-child(1) {
  height: 36px;
}
.pi-analytics-core__chart i:nth-child(2) {
  height: 58px;
  animation-delay: 0.5s;
}
.pi-analytics-core__chart i:nth-child(3) {
  height: 44px;
  animation-delay: 1s;
}
.pi-analytics-core__chart i:nth-child(4) {
  height: 64px;
  animation-delay: 1.5s;
}

.pi-analytics-float {
  position: absolute;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(212, 225, 255, 0.72));
  box-shadow: 0 14px 28px rgba(110, 138, 199, 0.18);
  animation: pi-float 4.6s ease-in-out infinite;
}

.pi-analytics-float.float-a {
  width: 48px;
  height: 48px;
  right: 34px;
  top: 42px;
}

.pi-analytics-float.float-b {
  width: 34px;
  height: 34px;
  right: 76px;
  top: 18px;
  animation-delay: 1.2s;
}

.pi-knowledge-card {
  position: absolute;
  border-radius: 16px;
}

.pi-knowledge-card.layer-back {
  left: 30px;
  right: 46px;
  bottom: 78px;
  height: 112px;
  background: linear-gradient(180deg, rgba(173, 219, 255, 0.52), rgba(121, 185, 255, 0.2));
  transform: rotate(-10deg);
}

.pi-knowledge-card.layer-main {
  left: 54px;
  right: 34px;
  bottom: 54px;
  height: 128px;
  background: linear-gradient(180deg, rgba(119, 174, 255, 0.88), rgba(77, 131, 255, 0.55));
  border: 1px solid rgba(177, 210, 255, 0.8);
  box-shadow: 0 18px 40px rgba(89, 118, 191, 0.2);
  transform: rotate(12deg);
  overflow: hidden;
}

.pi-knowledge-card__dots {
  display: flex;
  gap: 8px;
  padding: 18px 18px 0;
}
.pi-knowledge-card__dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
}

.pi-knowledge-card__sheet {
  width: 76px;
  height: 58px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  margin: 22px auto 0;
}

.pi-knowledge-card__flame {
  position: absolute;
  right: 20px;
  bottom: 18px;
  width: 34px;
  height: 48px;
  border-radius: 22px 22px 20px 20px;
  background: radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.2) 30%, transparent 31%), linear-gradient(180deg, #76d2ff 0%, #5f8fff 45%, #6d5dff 100%);
  transform: rotate(8deg);
}

.pi-knowledge-search {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 46px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(204, 219, 255, 0.88);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 0 16px;
  box-shadow: 0 12px 30px rgba(100, 118, 173, 0.12);
}
.pi-knowledge-search span {
  width: 62%;
  height: 12px;
  border-radius: 999px;
  background: rgba(194, 204, 230, 0.52);
}
.pi-knowledge-search b {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f85ff 0%, #714dff 100%);
}

.pi-studio-folder {
  position: absolute;
  left: 24px;
  right: 28px;
  bottom: 34px;
  height: 138px;
}

.pi-studio-folder__tab {
  width: 96px;
  height: 32px;
  margin-left: 22px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(180deg, rgba(112, 149, 255, 0.86), rgba(133, 176, 255, 0.6));
}

.pi-studio-folder__body {
  height: calc(100% - 18px);
  margin-top: -6px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(93, 138, 255, 0.9), rgba(126, 170, 255, 0.56));
  box-shadow: 0 18px 40px rgba(95, 120, 188, 0.2);
  border: 1px solid rgba(166, 201, 255, 0.78);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
}

.pi-studio-folder__avatar {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.92) 0 10px, transparent 11px), radial-gradient(circle at 50% 62%, rgba(255, 255, 255, 0.92) 0 22px, transparent 23px), rgba(255, 255, 255, 0.22);
}

.pi-studio-folder__controls {
  display: flex;
  gap: 10px;
}
.pi-studio-folder__controls i {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.28);
  position: relative;
}
.pi-studio-folder__controls i:first-child::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 11px;
  border-left: 14px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.pi-studio-wave {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 8px;
  height: 52px;
  background: radial-gradient(circle at center, rgba(96, 132, 255, 0.2) 0, rgba(96, 132, 255, 0.02) 66%, transparent 67%);
  background-size: 16px 16px;
  opacity: 0.78;
}

.pi-studio-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 26px rgba(103, 126, 183, 0.14);
  animation: pi-float 5.1s ease-in-out infinite;
}

.pi-studio-bubble.bubble-a {
  width: 42px;
  height: 42px;
  right: 26px;
  top: 40px;
}

.pi-studio-bubble.bubble-b {
  width: 18px;
  height: 18px;
  right: 70px;
  top: 68px;
  animation-delay: 1.3s;
}

@media (max-width: 1600px) {
  .product-innovation-card {
    height: 460px;
  }
  .product-innovation-card h3 {
    font-size: 20px;
  }
  .product-innovation-card p {
    line-height: 1.75;
  }
}
@media (max-width: 1280px) {
  .product-innovation-section {
    padding: 56px 0 28px;
  }
  .product-innovation-grid {
    gap: 14px;
  }
  .product-innovation-grid.active-0, .product-innovation-grid.active-1, .product-innovation-grid.active-2, .product-innovation-grid.active-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-innovation-card {
    height: 384px;
  }
  .product-innovation-card__text {
    min-height: auto;
  }
  .product-innovation-card__reveal {
    opacity: 1;
    transform: translateY(0);
    min-height: auto;
    pointer-events: auto;
  }
  .product-innovation-card__link {
    display: none;
  }
}
@media (max-width: 768px) {
  .product-innovation-section > .container {
    padding: 0;
  }
  .product-innovation-header {
    margin-bottom: 28px;
    padding: 0 20px;
  }
  .product-innovation-header h2 {
    font-size: 23px;
  }
  .product-innovation-header p {
    font-size: 14px;
    line-height: 1.75;
  }
  .product-innovation-title-row {
    gap: 18px;
  }
  .product-innovation-title-arrow {
    font-size: 28px;
  }
  /* 移动端：水平滑动轮播 */
  .product-innovation-grid {
    display: flex !important;
    gap: 12px;
    padding: 0 20px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .product-innovation-grid::-webkit-scrollbar {
    display: none;
  }
  .product-innovation-grid.active-0, .product-innovation-grid.active-1, .product-innovation-grid.active-2, .product-innovation-grid.active-3 {
    grid-template-columns: unset;
  }
  .product-innovation-card {
    flex: 0 0 80vw;
    min-width: 80vw;
    min-height: 280px;
    height: auto;
    scroll-snap-align: center;
    border-radius: 14px;
  }
  .product-innovation-card__content {
    padding: 20px 16px 0;
  }
  .product-innovation-card__text {
    min-height: auto;
  }
  .product-innovation-card__reveal {
    opacity: 1;
    transform: translateY(0);
    min-height: auto;
    pointer-events: auto;
  }
  .product-innovation-card__link {
    display: none;
  }
  .product-innovation-card__visual {
    height: 160px;
  }
  /* 移动端指示器 */
  .pi-mobile-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px 0 0;
  }
  .pi-mobile-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(100, 130, 200, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .pi-mobile-dot.active {
    width: 22px;
    border-radius: 4px;
    background: linear-gradient(135deg, #5C99FF, #1366EC);
  }
}
.ai-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) {
  .ai-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .ai-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.ai-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 32px 28px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.ai-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(24, 144, 255, 0.03), rgba(114, 46, 209, 0.02));
  opacity: 0;
  transition: opacity 0.4s;
}
.ai-card:hover {
  border-color: #1890ff;
  box-shadow: 0 8px 32px rgba(24, 144, 255, 0.12);
  transform: translateY(-4px);
}
.ai-card:hover::before {
  opacity: 1;
}
.ai-card:hover .ai-card-icon img {
  transform: scale(1.1);
  filter: brightness(1.1) drop-shadow(0 4px 12px rgba(24, 144, 255, 0.3));
}

/* ── AGENT MODULES ── */
.agent-mobile-dots {
  display: none;
}

@keyframes agent-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes agent-glow {
  0%, 100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}
@keyframes agent-slide {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(8px);
  }
  100% {
    transform: translateX(0);
  }
}
.agent-section {
  padding: 72px 0 56px;
  background: radial-gradient(circle at 12% 20%, rgba(128, 103, 255, 0.08), transparent 26%), radial-gradient(circle at 88% 16%, rgba(56, 189, 248, 0.09), transparent 24%), linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.agent-section > .container {
  max-width: 1800px;
  padding: 0 80px;
}

.agent-section-header {
  margin-bottom: 36px;
}
.agent-section-header h2 {
  font-size: 38px;
  font-weight: 400;
  color: #111827;
  background: none;
  -webkit-text-fill-color: initial;
}
.agent-section-header p {
  max-width: 2000px;
  color: #667085;
}

.agent-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}
@media (max-width: 1600px) {
  .agent-layout {
    grid-template-columns: 280px minmax(0, 1fr);
  }
}
@media (max-width: 1200px) {
  .agent-layout {
    grid-template-columns: 1fr;
  }
}

.agent-feature-panel {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(180deg, #f4f8ff 0%, #eef4ff 100%);
  border: 1px solid rgba(215, 228, 255, 0.95);
  box-shadow: 0 12px 40px rgba(96, 116, 160, 0.09);
  padding: 24px 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.agent-feature-panel__bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?w=900&h=1200&fit=crop&q=80") center bottom/cover no-repeat;
  opacity: 1;
  pointer-events: none;
}

.agent-feature-panel__content,
.agent-feature-panel__figure {
  position: relative;
  z-index: 1;
}

.agent-feature-panel__content {
  max-width: 220px;
  z-index: 3;
}
.agent-feature-panel__content h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 900;
  color: #111827;
}
.agent-feature-panel__content p {
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.72;
  color: #7b8798;
}

.agent-feature-panel__btn {
  position: relative;
  z-index: 4;
  margin-top: 20px;
  min-width: 140px;
  height: 46px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(40deg, #686BFD 30%, #2488FA 100%) !important;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.agent-feature-panel__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(47, 140, 255, 0.3);
}

.agent-feature-panel__figure {
  margin-top: 20px;
  min-height: 200px;
  display: flex;
  align-items: end;
  justify-content: center;
  pointer-events: none;
}
.agent-feature-panel__figure img {
  width: 150px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 50px rgba(99, 102, 241, 0.18));
}

.agent-feature-panel__halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  animation: agent-float 6s ease-in-out infinite;
}

.agent-feature-panel__halo.halo-a {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(153, 113, 255, 0.18) 0%, rgba(153, 113, 255, 0) 72%);
  bottom: 80px;
}

.agent-feature-panel__halo.halo-b {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.16) 0%, rgba(59, 130, 246, 0) 74%);
  bottom: 10px;
}

.agent-feature-panel__badge {
  position: absolute;
  right: 42px;
  bottom: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2f8cff 0%, #725bff 100%);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(99, 102, 241, 0.22);
}

.agent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 24px;
  overflow: hidden;
  width: 100%;
  padding: 0 28px;
}
@media (max-width: 1200px) {
  .agent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }
}
@media (max-width: 640px) {
  .agent-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
}

.agent-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(215, 228, 255, 0.9);
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 10px 40px rgba(96, 116, 160, 0.08);
  backdrop-filter: blur(10px);
  min-width: 0;
}
.agent-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, 0.28);
  box-shadow: 0 18px 50px rgba(86, 104, 170, 0.16);
}
.agent-card:hover .agent-cover-image {
  transform: scale(1.05);
}

.agent-cover {
  position: relative;
  height: 168px;
  overflow: hidden;
  background: linear-gradient(135deg, #eff5ff 0%, #f7fbff 100%);
}

.agent-cover-picture {
  position: absolute;
  inset: 0;
  display: block;
}

.agent-cover-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, opacity 0.22s ease;
}

.agent-cover-video {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.agent-card.is-previewing .agent-cover-image {
  opacity: 0;
  transform: scale(1.02);
}
.agent-card.is-previewing .agent-cover-video {
  opacity: 1;
  pointer-events: auto;
}

.agent-visual {
  position: relative;
  height: 188px;
  padding: 14px;
  overflow: hidden;
}

.agent-visual-ambient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(240, 247, 255, 0.82)), linear-gradient(180deg, rgba(96, 104, 255, 0.08), rgba(72, 202, 228, 0.08));
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.agent-card--data .agent-visual {
  background: linear-gradient(135deg, #eef1ff 0%, #eef8ff 54%, #f4f0ff 100%);
}

.agent-card--security .agent-visual {
  background: linear-gradient(135deg, #eef2ff 0%, #eff7ff 45%, #effcff 100%);
}

.agent-card--service .agent-visual {
  background: linear-gradient(135deg, #eff7ff 0%, #eef2ff 50%, #f8ecff 100%);
}

.agent-card--qa .agent-visual {
  background: linear-gradient(135deg, #f0fbff 0%, #eef6ff 52%, #f1f0ff 100%);
}

.agent-data-layout,
.agent-shield-layout,
.agent-service-layout,
.agent-qa-layout {
  position: relative;
  z-index: 1;
  height: 100%;
}

.agent-data-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.agent-data-panel {
  width: 72%;
  height: 78%;
  border-radius: 28px;
  padding: 14px 14px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.agent-data-panel__top {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}
.agent-data-panel__top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(129, 140, 248, 0.3);
}

.agent-bars {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 54px;
  margin-bottom: 12px;
}
.agent-bars i {
  width: 16px;
  border-radius: 12px 12px 6px 6px;
  background: linear-gradient(180deg, #92a3ff 0%, #6f7cff 100%);
  animation: agent-float 5s ease-in-out infinite;
  transition: height 0.45s ease, transform 0.45s ease, box-shadow 0.45s ease;
}
.agent-bars i:nth-child(1) {
  height: 34px;
  animation-delay: 0s;
}
.agent-bars i:nth-child(2) {
  height: 44px;
  animation-delay: 0.5s;
}
.agent-bars i:nth-child(3) {
  height: 38px;
  animation-delay: 1s;
}
.agent-bars i:nth-child(4) {
  height: 52px;
  animation-delay: 1.5s;
}

.agent-lines {
  display: grid;
  gap: 10px;
}
.agent-lines b {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.16), rgba(99, 102, 241, 0.04));
}
.agent-lines b:nth-child(1) {
  width: 88%;
}
.agent-lines b:nth-child(2) {
  width: 68%;
}
.agent-lines b:nth-child(3) {
  width: 78%;
}

.agent-orb,
.agent-shield-core,
.agent-qa-core {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: transform 0.35s ease;
}

.agent-orb {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #9ec5ff 0%, #6475ff 48%, #7c3aed 100%);
  box-shadow: 0 14px 40px rgba(99, 102, 241, 0.28);
  animation: agent-float 5s ease-in-out infinite;
}

.agent-side-chips {
  position: absolute;
  right: 2px;
  top: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.agent-side-chips span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #5b5f97;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(116, 130, 180, 0.12);
  animation: agent-slide 4.2s ease-in-out infinite;
  transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}
.agent-side-chips span:nth-child(2) {
  animation-delay: 0.8s;
}
.agent-side-chips span:nth-child(3) {
  animation-delay: 1.6s;
}

.agent-shield-layout {
  display: flex;
  align-items: center;
  justify-content: center;
}

.agent-code-rain {
  position: absolute;
  inset: 16px 16px auto;
  display: grid;
  gap: 10px;
  opacity: 0.46;
}
.agent-code-rain span {
  font-size: 12px;
  color: rgba(118, 142, 188, 0.8);
  letter-spacing: 0.08em;
  transition: transform 0.4s ease, opacity 0.4s ease, color 0.4s ease;
}

.agent-shield-core {
  width: 106px;
  height: 124px;
  clip-path: polygon(50% 0%, 86% 18%, 86% 64%, 50% 100%, 14% 64%, 14% 18%);
  background: linear-gradient(180deg, #a8bbff 0%, #6f72ff 54%, #5bc0ff 100%);
  box-shadow: 0 18px 44px rgba(99, 102, 241, 0.24);
  animation: agent-float 5.5s ease-in-out infinite;
  transition: transform 0.45s ease, box-shadow 0.45s ease, filter 0.45s ease;
}

.agent-shield-core__glow,
.agent-qa-core__glow {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 114, 255, 0.35) 0%, rgba(120, 114, 255, 0) 72%);
  animation: agent-glow 4s ease-in-out infinite;
}

.agent-service-layout {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.agent-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}
.agent-chip-grid span {
  padding: 12px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: #53588f;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 10px 26px rgba(123, 136, 190, 0.12);
  transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.agent-input-bar,
.agent-search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(116, 130, 180, 0.16);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}
.agent-input-bar span,
.agent-search-bar span {
  flex: 1;
  font-size: 12px;
  color: #8b8fa9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.agent-input-bar button,
.agent-search-bar button {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #6e7bff 0%, #7c3aed 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.agent-qa-layout {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.agent-qa-core {
  width: 96px;
  height: 96px;
  margin: 8px auto 0;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #bfd4ff 0%, #6e78ff 48%, #8367ff 100%);
  box-shadow: 0 16px 46px rgba(107, 114, 255, 0.28);
  animation: agent-float 5s ease-in-out infinite;
}

.agent-card--data:hover .agent-data-panel {
  transform: translateY(-6px) rotate(-1deg);
  border-color: rgba(129, 140, 248, 0.24);
  box-shadow: 0 20px 42px rgba(129, 140, 248, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.88);
}
.agent-card--data:hover .agent-bars i:nth-child(1) {
  height: 54px;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(99, 102, 241, 0.22);
}
.agent-card--data:hover .agent-bars i:nth-child(2) {
  height: 82px;
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(99, 102, 241, 0.22);
}
.agent-card--data:hover .agent-bars i:nth-child(3) {
  height: 68px;
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(99, 102, 241, 0.22);
}
.agent-card--data:hover .agent-bars i:nth-child(4) {
  height: 98px;
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(99, 102, 241, 0.22);
}
.agent-card--data:hover .agent-side-chips span:nth-child(1) {
  transform: translateX(-8px);
}
.agent-card--data:hover .agent-side-chips span:nth-child(2) {
  transform: translateX(-14px);
  background: rgba(255, 255, 255, 0.9);
}
.agent-card--data:hover .agent-side-chips span:nth-child(3) {
  transform: translateX(-10px);
}

.agent-card--security:hover .agent-code-rain span:nth-child(1) {
  transform: translateX(10px);
  opacity: 0.92;
  color: rgba(99, 102, 241, 0.82);
}
.agent-card--security:hover .agent-code-rain span:nth-child(2) {
  transform: translateX(-8px);
  opacity: 0.78;
}
.agent-card--security:hover .agent-code-rain span:nth-child(3) {
  transform: translateX(12px);
  opacity: 0.88;
  color: rgba(56, 189, 248, 0.82);
}
.agent-card--security:hover .agent-shield-core {
  filter: saturate(1.12) brightness(1.04);
  box-shadow: 0 26px 54px rgba(99, 102, 241, 0.3);
}
.agent-card--security:hover .agent-shield-core__glow {
  opacity: 1;
  transform: scale(1.14);
}

.agent-card--service:hover .agent-chip-grid span:nth-child(1) {
  transform: translateY(-8px);
}
.agent-card--service:hover .agent-chip-grid span:nth-child(2) {
  transform: translateY(-4px);
}
.agent-card--service:hover .agent-chip-grid span:nth-child(3) {
  transform: translateY(-2px);
}
.agent-card--service:hover .agent-chip-grid span:nth-child(4) {
  transform: translateY(-10px);
}
.agent-card--service:hover .agent-chip-grid span:nth-child(1),
.agent-card--service:hover .agent-chip-grid span:nth-child(4) {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 32px rgba(123, 136, 190, 0.16);
}
.agent-card--service:hover .agent-input-bar {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(116, 130, 180, 0.18);
}

.agent-card--qa:hover .agent-qa-core {
  box-shadow: 0 24px 56px rgba(107, 114, 255, 0.34);
}
.agent-card--qa:hover .agent-qa-core__glow {
  opacity: 1;
  transform: scale(1.16);
}
.agent-card--qa:hover .agent-search-bar {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 34px rgba(116, 130, 180, 0.2);
}

.agent-content {
  padding: 10px 12px 12px;
}
.agent-content h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #111827;
}
.agent-content p {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: #5f6779;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 1601px) {
  .agent-section {
    padding: 72px 0 74px;
  }
  .agent-layout {
    gap: 18px;
  }
  .agent-feature-panel {
    padding: 30px 24px 24px;
  }
  .agent-feature-panel__figure {
    margin-top: 32px;
    min-height: 252px;
  }
  .agent-feature-panel__figure img {
    width: 172px;
  }
  .agent-feature-panel__badge {
    bottom: 36px;
    width: 64px;
    height: 64px;
    font-size: 28px;
  }
  .agent-grid {
    gap: 26px;
    padding: 0 24px;
  }
  .agent-cover {
    height: 204px;
  }
  .agent-content {
    padding: 14px 16px 16px;
  }
  .agent-content h3 {
    font-size: 15px;
  }
  .agent-content p {
    margin-top: 8px;
    line-height: 1.55;
  }
}
.agent-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(221, 230, 247, 0.9);
  font-size: 12px;
  color: #6b7280;
}
.agent-meta span:first-child {
  color: #4f46e5;
  font-weight: 700;
}
.agent-meta span:last-child {
  color: #111827;
  font-weight: 600;
}

.ai-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(24, 144, 255, 0.08), rgba(114, 46, 209, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.ai-card-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: all 0.4s;
}

.ai-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .ai-card h3 {
    font-size: 18px;
  }
}

.ai-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .ai-card p {
    font-size: 13px;
  }
}

/* ── SOLUTIONS (Marquee Cards) ── */
.sol-card-section {
  background: #fff;
  padding: 72px 0 60px;
}
.sol-card-section > .container {
  max-width: 1400px;
  padding: 0 80px;
}
.sol-card-section {
  /* 覆盖全局 section-header 居中样式：标题居中，副标题居中 */
}
.sol-card-section .section-header {
  text-align: center;
  margin-bottom: 32px;
}
.sol-card-section .section-header h2 {
  font-size: 36px;
  font-weight: 400;
  color: #0c0d0e;
  letter-spacing: -0.5px;
}
.sol-card-section .section-header p {
  font-size: 18px;
  color: #646a73;
  margin-top: 8px;
  line-height: 1.6;
}

.sol-marquee-outer {
  width: 100%;
  overflow: hidden;
  padding: 16px 0 20px;
}

.sol-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: sol-marquee 32s linear infinite;
}
.sol-marquee-track.is-paused {
  animation-play-state: paused;
}

@keyframes sol-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.sol-card {
  flex-shrink: 0;
  width: 360px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  z-index: 0;
}
.sol-card.is-hovered {
  transform: scale(1.05);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
  z-index: 10;
}

.sol-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.sol-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.sol-card.is-hovered .sol-card-image img {
  transform: scale(1.04);
}

.sol-card-info {
  padding: 20px 24px 24px;
  background: #fff;
}

.sol-card-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.sol-tag {
  font-size: 12px;
  color: #646a73;
  background: #f2f3f5;
  border-radius: 4px;
  padding: 2px 8px;
  line-height: 20px;
}

.sol-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #0c0d0e;
  margin: 0 0 10px;
  line-height: 1.35;
}

.sol-card-desc {
  font-size: 13px;
  color: #646a73;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .sol-card-section > .container {
    padding: 0 20px;
  }
  .sol-card {
    width: 280px;
  }
  .sol-card-image {
    height: 160px;
  }
  .sol-card-title {
    font-size: 18px;
  }
}
/* ── SOLUTIONS (Photo Cards - legacy commented) ── */
.sol-photo-section {
  background: #fff;
  padding: 0;
}

.sol-photo-row {
  display: flex;
  width: 100%;
  min-height: 400px;
}
@media (max-width: 768px) {
  .sol-photo-row {
    flex-direction: column;
    min-height: auto;
  }
}

.sol-photo-card {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 400px;
}
.sol-photo-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: #00c9c9;
  transition: width 0.4s;
}
.sol-photo-card:hover::after {
  width: 40px;
}
.sol-photo-card:hover .sol-photo-bg {
  transform: scale(1.1);
  filter: brightness(0.6);
}
.sol-photo-card:hover .sol-photo-content {
  transform: translateY(-10px);
}
.sol-photo-card:hover .sol-photo-icon {
  transform: scale(1.15);
  background: rgba(0, 201, 201, 0.3);
}
.sol-photo-card:hover .sol-photo-line {
  width: 40px;
  background: #00c9c9;
}
@media (max-width: 768px) {
  .sol-photo-card {
    min-height: 240px;
  }
}

.sol-photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.45);
}

.sol-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.sol-photo-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 48px 24px 32px;
  text-align: center;
  transition: transform 0.4s;
}
.sol-photo-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.4;
}

.sol-photo-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s;
}

.sol-photo-en {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
  max-width: 100%;
}

.sol-photo-line {
  width: 30px;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  transition: all 0.4s;
  margin-top: auto;
  flex-shrink: 0;
}

/* ── INDUSTRY SPLIT SECTION ── */
.ind-split-section {
  display: flex;
  min-height: 600px;
  /* 当只有1-3个卡片时，减小高度 */
}
.ind-split-section:has(.grid-count-1), .ind-split-section:has(.grid-count-2), .ind-split-section:has(.grid-count-3) {
  min-height: 450px;
}
@media (max-width: 900px) {
  .ind-split-section {
    flex-direction: column;
    min-height: auto;
  }
}

.ind-split-left {
  width: 35%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 900px) {
  .ind-split-left {
    width: 100%;
    min-height: 280px;
  }
}

.ind-split-left-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.92), rgba(13, 35, 72, 0.88)), url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=800&h=600&fit=crop&q=80");
  background-size: cover;
  background-position: center;
}

.ind-split-left-content {
  position: relative;
  z-index: 1;
  padding: 60px 48px;
  color: #fff;
}
.ind-split-left-content h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .ind-split-left-content h2 {
    font-size: 36px;
  }
}
@media (max-width: 900px) {
  .ind-split-left-content {
    padding: 40px 24px;
  }
}

.ind-split-en {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.ind-split-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  max-width: 320px;
}

.ind-split-right {
  flex: 1;
  background: #f7f9fc;
  padding: 32px;
  display: flex;
  align-items: center;
}
@media (max-width: 900px) {
  .ind-split-right {
    padding: 24px 16px;
  }
}

.ind-split-grid {
  display: grid;
  gap: 20px;
  width: 100%;
  /* 默认：4-6个卡片 */
  grid-template-columns: repeat(3, 1fr);
  /* 1个卡片 */
}
.ind-split-grid.grid-count-1 {
  grid-template-columns: minmax(280px, 400px);
  justify-content: center;
}
.ind-split-grid {
  /* 2个卡片 */
}
.ind-split-grid.grid-count-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ind-split-grid {
  /* 3个卡片 */
}
.ind-split-grid.grid-count-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1200px) {
  .ind-split-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ind-split-grid.grid-count-1 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .ind-split-grid {
    grid-template-columns: 1fr !important;
    justify-content: stretch !important;
  }
}

.ind-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.ind-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #00c9c9;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.ind-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}
.ind-card:hover::before {
  transform: scaleX(1);
}
.ind-card:hover .ind-card-icon {
  transform: scale(1.1);
}
.ind-card:hover .ind-card-more {
  color: #00c9c9;
  border-color: #00c9c9;
}
.ind-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}
.ind-card p {
  font-size: 13px;
  color: #888;
  line-height: 1.7;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ind-card-icon {
  margin-bottom: 16px;
  transition: transform 0.4s;
}

.ind-card-more {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #999;
  transition: all 0.3s;
  letter-spacing: 1px;
}

.sec-more {
  text-align: center;
  margin-top: 44px;
}

/* ── PARTNERS (Scrolling Logos) ── */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.partners-section {
  background: #fff;
  padding-top: 72px;
  padding-bottom: 80px;
  overflow: hidden;
}

.partners-scroll-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.partners-row {
  overflow: hidden;
  white-space: nowrap;
}

.partners-track {
  display: inline-flex;
  gap: 0;
  animation: scroll-left 40s linear infinite;
}
.partners-track:hover {
  animation-play-state: paused;
}

.partners-track-reverse {
  animation: scroll-right 45s linear infinite;
}

.partner-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 80px;
  padding: 0 32px;
  border: 1px solid #f0f0f0;
  border-radius: 0;
  background: #fff;
  transition: all 0.3s;
  flex-shrink: 0;
}
.partner-item:hover {
  border-color: #1890ff;
  box-shadow: 0 4px 20px rgba(24, 144, 255, 0.12);
  z-index: 1;
  position: relative;
}
.partner-item:hover span {
  color: #1890ff;
}
.partner-item span {
  font-size: 16px;
  font-weight: 600;
  color: #555;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: color 0.3s;
}

.partner-logo {
  max-height: 40px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 1;
  transition: all 0.3s;
}
.partner-item:hover .partner-logo {
  filter: grayscale(0%);
  opacity: 1;
}

/* ── CTA ── */
@keyframes cta-glow {
  0%, 100% {
    box-shadow: 0 0 40px rgba(24, 144, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 80px rgba(24, 144, 255, 0.5);
  }
}
@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes float-up-down {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.cta-section {
  background: url("../img/footer-bg.png") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.cta-inner {
  position: relative;
  z-index: 1;
  padding: 50px 20px;
  text-align: center;
  color: #111827;
}
.cta-inner h2 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #111827;
  animation: float-up-down 6s ease-in-out infinite;
}
@media (max-width: 768px) {
  .cta-inner h2 {
    font-size: 32px;
  }
}
.cta-inner p {
  font-size: 18px;
  color: rgba(17, 24, 39, 0.76);
  margin-bottom: 48px;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btns .n-button {
  height: 52px !important;
  padding: 0 40px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  transition: all 0.3s !important;
  background: linear-gradient(40deg, #686BFD 30%, #2488FA 100%) !important;
  border: none !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35) !important;
}
.cta-btns .n-button[type=primary] {
  animation: cta-glow 3s ease-in-out infinite;
}
.cta-btns .n-button[type=primary]:hover {
  transform: translateY(-3px) scale(1.05);
}
.cta-btns .n-button:not([type=primary]):hover {
  background: linear-gradient(90deg, #4f52d9 0%, #6366f1 100%) !important;
  border-color: transparent !important;
  color: #fff !important;
  transform: translateY(-3px);
}

/* ── NEWS 行业动态（左大图轮播+右分组）── */
.news-section {
  background: #fff;
  padding: 48px 0 60px;
}

.news-outer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.news-outer > .section-header {
  margin-bottom: 28px;
}

.news-dynamic-content {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .news-dynamic-content {
    flex-direction: column;
  }
}

/* 左侧大图轮播 */
.news-feature-wrap {
  position: relative;
  flex: 0 0 62%;
  min-width: 0;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 900px) {
  .news-feature-wrap {
    flex: unset;
    width: 100%;
  }
}

.news-feature-slides {
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  background: #f0f2f8;
}

.news-feature-slide {
  display: none;
}
.news-feature-slide.active {
  display: block;
}

.news-feature-cover {
  width: 100%;
  height: 380px;
  max-height: 380px;
  flex-shrink: 0;
  overflow: hidden;
}
.news-feature-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.news-feature-cover .news-cover-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-feature-cover .news-fallback-logo {
  color: rgba(255, 255, 255, 0.85);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
}

.news-feature-wrap:hover .news-feature-cover img {
  transform: scale(1.04);
}

.news-feature-body {
  padding: 14px 16px 30px;
  background: #fff;
  border: 1px solid #eef0f5;
  border-top: none;
  border-radius: 0 0 12px 12px;
  position: relative;
  cursor: pointer;
}

.news-feature-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.news-feature-tag {
  font-size: 13px;
  color: #0066ff;
  background: rgba(0, 102, 255, 0.08);
  border-radius: 4px;
  padding: 2px 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.news-feature-tag-title {
  font-size: 18px;
  font-weight: 500;
  color: #111f2c;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-feature-desc {
  font-size: 14px;
  color: rgba(17, 31, 44, 0.6);
  line-height: 1.75;
  margin: 0 0 12px;
  min-height: 49px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-feature-date {
  font-size: 13px;
  color: rgba(17, 31, 44, 0.35);
  display: block;
  margin-top: 10px;
}

/* 跳转箭头 */
.news-feature-arrows {
  position: absolute;
  bottom: 25px;
  right: 17px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.news-feature-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(17, 31, 44, 0.15);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.news-feature-arrow:hover {
  border-color: #0066ff;
  color: #0066ff;
}
.news-feature-arrow.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* 右侧分组 */
.news-groups-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.news-groups-wrap .news-group-card {
  flex: 1;
}

.news-group-card {
  background: #f7f8fc;
  border-radius: 8px;
  padding: 20px 20px 16px;
}

.news-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eaecf0;
}

.news-group-title {
  font-size: 15px;
  font-weight: 700;
  color: #111f2c;
}

.news-group-more {
  font-size: 13px;
  color: #0066ff;
  cursor: pointer;
}
.news-group-more:hover {
  text-decoration: underline;
}

.news-group-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.news-group-item {
  display: flex;
  gap: 12px;
  cursor: pointer;
  align-items: flex-start;
}
.news-group-item:hover .news-group-item-title {
  color: #0066ff;
}

.news-group-thumb {
  width: 112px;
  height: 64px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.news-group-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.news-group-thumb .news-group-thumb-fallback {
  width: 100%;
  height: 100%;
}

.news-group-item:hover .news-group-thumb img {
  transform: scale(1.06);
}

.news-group-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.news-group-item-title {
  font-size: 13px;
  font-weight: 500;
  color: #111f2c;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
  margin: 0;
}

.news-group-item-date {
  font-size: 12px;
  color: rgba(17, 31, 44, 0.35);
  margin-top: 6px;
  display: block;
}

/* ══════════════════════════════════════════════
   移动端适配 (max-width: 768px)
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* ── 全局 section 间距 ── */
  .section {
    padding: 40px 0;
  }
  .section-header {
    margin-bottom: 28px;
  }
  .section-header p {
    font-size: 14px;
    line-height: 1.6;
    padding: 0 4px;
  }
  .container {
    padding: 0 16px;
  }
  /* ── Hero Feature Bar ── */
  .hero-feature-bar {
    gap: 10px;
  }
  .hfb-left {
    min-height: 100px;
  }
  .hfb-right {
    border-radius: 12px;
  }
  .hfb-right-item {
    padding: 14px 16px;
    gap: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .hfb-right-item:last-child {
    border-bottom: none;
  }
  .hfb-right-icon {
    width: 30px;
    height: 56px;
  }
  .hfb-right-icon img {
    width: 18px;
    height: 32px;
  }
  .hfb-icon-emoji {
    font-size: 16px;
  }
  .hfb-right-title {
    font-size: 13px;
  }
  .hfb-right-desc {
    font-size: 11px;
  }
  /* ── Product Innovation ── */
  .product-innovation-section {
    padding: 32px 0 24px;
  }
  .product-innovation-card {
    height: auto;
    min-height: 240px;
  }
  .product-innovation-card__text {
    min-height: auto;
  }
  .product-innovation-card__name {
    font-size: 15px;
  }
  .product-innovation-card h3 {
    font-size: 17px;
    margin-top: 6px;
  }
  .product-innovation-card p {
    font-size: 12px;
    margin-top: 6px;
  }
  .product-innovation-card__visual {
    height: 120px;
  }
  .product-innovation-card__reveal {
    min-height: auto;
    margin-top: 10px;
  }
  .product-innovation-card__features li {
    font-size: 12px;
  }
  .product-innovation-card__btn {
    margin-top: 10px;
    height: 34px;
    width: 100px;
    font-size: 13px;
  }
  .product-innovation-card__btn--secondary {
    margin-left: 8px;
  }
  /* ── Agent Section ── */
  .agent-section {
    padding: 40px 0 32px;
  }
  .agent-section > .container {
    padding: 0 16px;
  }
  .agent-section-header {
    margin-bottom: 20px;
  }
  .agent-section-header h2 {
    font-size: 23px;
  }
  .agent-section-header p {
    font-size: 14px;
  }
  .agent-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .agent-feature-panel {
    display: none;
  }
  .agent-feature-panel__content {
    max-width: 100%;
  }
  .agent-feature-panel__content h3 {
    font-size: 20px;
  }
  .agent-feature-panel__content p {
    font-size: 13px;
    margin-top: 12px;
  }
  .agent-feature-panel__btn {
    margin-top: 14px;
    height: 40px;
    min-width: 120px;
    font-size: 14px;
  }
  .agent-feature-panel__figure {
    margin-top: 14px;
    min-height: 120px;
  }
  .agent-feature-panel__figure img {
    width: 100px;
  }
  .agent-feature-panel__halo.halo-a {
    width: 140px;
    height: 140px;
  }
  .agent-feature-panel__halo.halo-b {
    width: 180px;
    height: 180px;
  }
  /* 移动端：Agent卡片水平滑动轮播 */
  .agent-grid {
    display: flex !important;
    gap: 12px;
    padding: 0 16px 8px;
    margin: 0 -16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .agent-grid::-webkit-scrollbar {
    display: none;
  }
  .agent-grid {
    grid-template-columns: unset;
  }
  .agent-card {
    flex: 0 0 80vw;
    min-width: 80vw;
    border-radius: 16px;
    scroll-snap-align: center;
  }
  .agent-cover {
    height: 200px;
  }
  .agent-content {
    padding: 10px 12px;
  }
  .agent-content h3 {
    font-size: 14px;
  }
  .agent-content p {
    font-size: 12px;
  }
  /* Agent移动端指示器 */
  .agent-mobile-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px 0 0;
  }
  .agent-mobile-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(100, 130, 200, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .agent-mobile-dot.active {
    width: 22px;
    border-radius: 4px;
    background: linear-gradient(135deg, #5C99FF, #1366EC);
  }
  /* ── Solutions Marquee ── */
  .sol-card-section {
    padding: 40px 0 36px;
  }
  .sol-card-section .section-header {
    margin-bottom: 20px;
  }
  .sol-card-section .section-header h2 {
    font-size: 23px;
  }
  .sol-card-section .section-header p {
    font-size: 13px;
    margin-top: 6px;
  }
  .sol-card {
    width: 260px;
    border-radius: 12px;
  }
  .sol-card-image {
    height: 148px;
  }
  .sol-card-info {
    padding: 14px 16px 18px;
  }
  .sol-card-title {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .sol-card-desc {
    font-size: 12px;
  }
  .sol-tag {
    font-size: 11px;
    padding: 1px 6px;
  }
  /* ── News Section ── */
  .news-section {
    padding: 36px 0 40px;
  }
  .news-outer {
    padding: 0 16px;
  }
  .news-outer > .section-header {
    margin-bottom: 20px;
  }
  .news-outer > .section-header h2 {
    font-size: 23px;
  }
  .news-outer > .section-header p {
    font-size: 13px;
  }
  .news-feature-cover {
    height: 220px;
    max-height: 220px;
  }
  .news-feature-body {
    padding: 12px 14px 24px;
  }
  .news-feature-tag-title {
    font-size: 15px;
  }
  .news-feature-desc {
    font-size: 13px;
    min-height: auto;
  }
  .news-feature-arrow {
    width: 34px;
    height: 34px;
  }
  .news-feature-arrows {
    bottom: 18px;
    right: 14px;
  }
  .news-group-card {
    padding: 14px 14px 12px;
    border-radius: 8px;
  }
  .news-group-head {
    margin-bottom: 12px;
    padding-bottom: 10px;
  }
  .news-group-title {
    font-size: 14px;
  }
  .news-group-thumb {
    width: 88px;
    height: 52px;
  }
  .news-group-item-title {
    font-size: 13px;
  }
  /* ── Partners ── */
  .partners-section {
    padding-top: 40px;
    padding-bottom: 48px;
  }
  .partners-section .section-header {
    margin-bottom: 24px;
  }
  .partners-section .section-header h2 {
    font-size: 23px;
  }
  .partners-section .section-header p {
    font-size: 13px;
  }
  .partners-scroll-area {
    gap: 12px;
  }
  .partner-item {
    min-width: 130px;
    height: 60px;
    padding: 0 20px;
  }
  .partner-logo {
    max-height: 30px;
    max-width: 100px;
  }
  /* ── CTA ── */
  .cta-inner {
    padding: 36px 16px;
  }
  .cta-inner h2 {
    font-size: 24px;
    margin-bottom: 14px;
  }
  .cta-inner p {
    font-size: 14px;
    margin-bottom: 28px;
  }
  .cta-btns {
    gap: 12px;
  }
  .cta-btns .n-button {
    height: 44px !important;
    padding: 0 28px !important;
    font-size: 14px !important;
  }
}
/* ══════════════════════════════════════════════
   小屏手机适配 (max-width: 480px)
   ══════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-feature-bar {
    margin-top: -18px;
    padding: 0 12px;
  }
  .hfb-left {
    min-height: 80px;
  }
  .hfb-right-item {
    padding: 12px 12px;
  }
  .sol-card {
    width: 220px;
  }
  .sol-card-image {
    height: 128px;
  }
  .news-feature-cover {
    height: 180px;
    max-height: 180px;
  }
  .cta-inner {
    padding: 28px 12px;
  }
  .cta-inner h2 {
    font-size: 20px;
  }
  .partner-item {
    min-width: 110px;
    height: 52px;
    padding: 0 14px;
  }
}
/* ══════════════════════════════════════════════
   WP 适配补丁（原 Nuxt 由组件库/JS 提供的行为）
   ══════════════════════════════════════════════ */
a.btn-consult {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* 移动端 banner：视频隐藏，展示封面图 */
.hero-banner-mobile-img {
  display: none;
}

.hero-section.is-mobile video.hero-banner-video {
  display: none;
}
.hero-section.is-mobile .hero-banner-mobile-img {
  display: block;
}
