/**
 * ============================================
 * 星辰星联 - 页面布局样式 (pages.css)
 * ============================================
 * 包含：子页面通用样式、Hero区域、章节样式、页面特定布局、响应式断点
 * 以及百度智能云风格首页样式
 * 适用范围：所有页面
 */

/* ============================================
   Pixso Frame 通用样式
   ============================================ */

/* 通用 frame-content 样式 */
[class^="frame-content-"] {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: relative;
}

/* 通用 stroke-wrapper 样式 */
[class^="stroke-wrapper-"] {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* 通用 stroke 样式 */
[class^="stroke-"] {
  position: absolute;
  pointer-events: none;
}

/* 通用 Pixso-paragraph 样式 */
[class^="Pixso-paragraph-"] {
  margin: 0;
  padding: 0;
}

/* 通用 Pixso-vector 样式 */
[class^="Pixso-vector-"] {
  width: 100%;
  height: 100%;
}

/* 通用 Pixso-rectangle 样式 */
[class^="Pixso-rectangle-"] {
  width: 100%;
  height: 100%;
}

/* ============================================
   Section 基础样式
   ============================================ */

.section {
  width: 100%;
  height: auto;
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: var(--container-max);
  padding: 80px 110px;
  margin: 0 auto;
  position: relative;
}

.section-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  padding: 80px 110px;
}

/* 章节头部 */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 60px;
}

.section-tag,
.section-label {
  font-size: 14px;
  font-family: var(--font-regular);
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-label {
  font-size: 12px;
  font-family: var(--font-semibold);
  font-weight: 500;
  color: rgba(0, 25, 255, 1);
}

.section-title {
  font-size: 40px;
  font-family: var(--font-bold);
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 16px;
}

.section-title-blue {
  font-size: 40px;
  font-family: var(--font-bold);
  font-weight: 700;
  color: rgba(0, 25, 255, 1);
}

.section-desc,
.section-subtitle {
  font-size: 16px;
  font-family: var(--font-regular);
  font-weight: 400;
  color: var(--text-secondary);
  text-align: center;
  max-width: 600px;
  line-height: 1.6;
}

/* ============================================
   Main Content
   ============================================ */
.main-content {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ============================================
   Hero 区域样式
   ============================================ */

/* 通用 Hero */
.hero {
  width: 100%;
  min-height: 500px;
  margin-top: var(--header-height);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #000930 0%, #1a2d4a 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 80px 110px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 44px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
  font-family: var(--font-bold);
  font-weight: 700;
  line-height: 1.3;
}

.hero-content .subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

.hero-cta {
  display: flex;
  gap: 16px;
}

/* 页面 Hero (浅色背景) */
.page-hero {
  width: 100%;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 160px 110px 80px 110px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20viewBox%3D'0%200%201440%20750'%20preserveAspectRatio%3D'none'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%0A%20%20%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D'grad'%20gradientUnits%3D'objectBoundingBox'%20x1%3D'0'%20y1%3D'0.5'%20x2%3D'1'%20y2%3D'0.5'%20gradientTransform%3D'matrix(0.0000%2C%20-1.0000%2C%201.0000%2C%200.0000%2C%20-0.0000%2C%201.0000)'%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D'rgba(199%2C222%2C255%2C1)'%20offset%3D'0'%2F%3E%3Cstop%20stop-color%3D'rgba(255%2C255%2C255%2C1)'%20offset%3D'1'%2F%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%20%20%3Crect%20width%3D'100%25'%20height%3D'100%25'%20fill%3D'url(%23grad)'%2F%3E%0A%20%20%20%20%3C%2Fsvg%3E");
}

.page-hero .hero-content {
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

/* Page Header (解决方案页) */
.page-header {
  width: 100%;
  height: auto;
  min-height: 400px;
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, rgba(0, 54, 252, 0.95) 0%, rgba(0, 25, 255, 0.9) 100%);
}

.page-header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 880px;
  padding: 80px 20px;
  position: relative;
}

/* Hero 标签 */
.hero-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-medium);
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: var(--text-primary);
}

.hero-tag-text {
  font-size: 13px;
  font-family: var(--font-regular);
  font-weight: 400;
  color: var(--text-primary);
}

.page-tag {
  font-size: 14px;
  font-family: var(--font-regular);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Hero 标题 */
.hero-title {
  font-size: 60px;
  font-family: var(--font-bold);
  font-weight: 700;
  line-height: 120%;
  color: rgba(0, 25, 255, 1);
}

.page-title {
  font-size: 48px;
  font-family: var(--font-bold);
  font-weight: 700;
  color: var(--text-white);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* Hero 副标题 */
.hero-subtitle {
  font-size: 18px;
  font-family: var(--font-regular);
  font-weight: 400;
  line-height: 170%;
  color: var(--text-primary);
  max-width: 800px;
}

.page-subtitle {
  font-size: 18px;
  font-family: var(--font-regular);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  line-height: 1.6;
}

/* Hero 按钮组 */
.hero-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}

/* ============================================
   按钮补充样式
   ============================================ */

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--text-white);
  font-size: var(--text-base);
  font-family: var(--font-regular);
  font-weight: 400;
  text-decoration: none;
  border: 1px solid var(--text-white);
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-light);
  color: var(--primary-light);
}

/* ============================================
   章节背景色
   ============================================ */

/* 浅色背景章节 */
.bg-light,
.features-section,
.pain-points,
.scenes-section {
  background-color: var(--bg-light);
}

/* 深色背景章节 */
.bg-dark,
.advantages {
  background-color: var(--bg-dark);
}

.advantages .section-tag {
  color: var(--primary-light);
}

.advantages .section-title {
  color: var(--text-white);
}

.advantages .section-desc {
  color: var(--text-muted);
}

/* 白色背景章节 */
.solution-features,
.specs-section {
  background-color: #FFFFFF;
}

/* 深色模式 - 白色背景章节变为深色 */
[data-theme="dark"] .solution-features,
[data-theme="dark"] .specs-section {
  background-color: #000930 !important;
}

/* ============================================
   网格布局
   ============================================ */

/* 特性网格 */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* 解决方案页特性网格 */
.solution-features .features-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  width: 100%;
}

/* 痛点网格 */
.pain-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  width: 100%;
}

/* 优势网格 */
.advantages-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  width: 100%;
}

/* 功能列表网格 */
.feature-list-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  width: 100%;
}

/* 关于页优势网格 */
.advantages-grid-compact {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  width: 100%;
}

/* ============================================
   关于我们页面特定样式
   ============================================ */

.about-intro {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.about-text {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.about-text .label {
  font-size: 12px;
  font-family: var(--font-semibold);
  font-weight: 500;
  letter-spacing: 2px;
  color: rgba(0, 25, 255, 1);
}

.about-text .title {
  font-size: 36px;
  font-family: var(--font-bold);
  font-weight: 700;
  line-height: 130%;
  color: var(--text-primary);
}

.about-text .desc {
  font-size: 15px;
  font-family: var(--font-regular);
  font-weight: 400;
  line-height: 180%;
  color: rgba(74, 85, 104, 1);
}

.about-tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

.about-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}

.about-image {
  max-width: 640px;
  width: 100%;
  height: auto;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../image/about-us.webp);
  border-radius: var(--radius-2xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* ============================================
   CTA 区域
   ============================================ */

/* ============================================
   场景区域
   ============================================ */

.scenes-content {
  text-align: center;
}

.scenes-content h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-family: var(--font-semibold);
}

.scenes-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   Platform 页面样式
   ============================================ */

.platform-showcase {
  padding: 80px 110px;
  background: var(--bg-white);
}

.platform-slider-container {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
}

.more-features-section {
  padding: 80px 110px;
  background: var(--bg-light);
}

.feature-list-item {
  width: calc(25% - 15px);
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  background-color: var(--bg-white);
  transition: transform var(--transition-base),
              box-shadow var(--transition-base),
              border-color var(--transition-base);
}

.feature-list-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.feature-list-item h4 {
  font-size: var(--text-lg);
  font-family: var(--font-semibold);
  font-weight: 500;
  color: var(--text-primary);
}

.feature-list-item p {
  font-size: var(--text-sm);
  font-family: var(--font-regular);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   Process 页面样式
   ============================================ */

.process-detail-section {
  padding: 80px 110px;
  background: var(--bg-white);
}

.process-timeline {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.process-step-card {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px;
  background: var(--bg-light);
  border-radius: var(--radius-2xl);
  transition: all var(--transition-base);
}

.process-step-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.step-number {
  font-size: 48px;
  font-family: var(--font-bold);
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  line-height: 1;
  min-width: 80px;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: var(--text-2xl);
  font-family: var(--font-bold);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-content p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.step-features li {
  padding: 6px 14px;
  background: rgba(0, 54, 252, 0.08);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--primary);
  font-weight: 500;
}

/* Why Us Section */
.why-us-section {
  padding: 80px 110px;
  background: var(--bg-light);
}

.why-us-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-us-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.why-us-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary);
}

.why-us-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(0, 54, 252, 0.1) 0%, rgba(0, 54, 252, 0.1) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.why-us-icon svg {
  width: 32px;
  height: 32px;
}

.why-us-card h3 {
  font-size: var(--text-lg);
  font-family: var(--font-semibold);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.why-us-card p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   About 页面样式
   ============================================ */

.company-intro-section {
  padding: 80px 110px;
  background: var(--bg-white);
}

.intro-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.intro-text .section-tag {
  text-align: left;
}

.intro-text h2 {
  font-size: 36px;
  font-family: var(--font-bold);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.intro-text p {
  font-size: var(--text-md);
  color: var(--text-secondary);
  line-height: 1.8;
}

.cert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.cert-tag {
  padding: 8px 16px;
  background: rgba(0, 54, 252, 0.08);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--primary);
  font-weight: 500;
}

.intro-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e8f4ff 0%, #c7deff 100%);
  border-radius: var(--radius-2xl);
  box-shadow: 0 20px 60px rgba(0, 54, 252, 0.1);
}

/* Company Stats Section */
.company-stats-section {
  padding: 60px 110px;
  background: linear-gradient(135deg, rgba(0, 54, 252, 0.95) 0%, rgba(0, 25, 255, 0.9) 100%);
}

.stats-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-card {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card .stat-number {
  display: block;
  font-size: 48px;
  font-family: var(--font-bold);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.stat-card .stat-label {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.8);
}

/* Values Section */
.values-section {
  padding: 80px 110px;
  background: var(--bg-light);
}

.values-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(0, 54, 252, 0.1) 0%, rgba(0, 54, 252, 0.1) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.value-icon svg {
  width: 32px;
  height: 32px;
}

.value-card h3 {
  font-size: var(--text-lg);
  font-family: var(--font-semibold);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.value-card p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 80px 110px;
  background: var(--bg-white);
}

.contact-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.contact-card {
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary);
}

.contact-card .contact-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(0, 54, 252, 0.1) 0%, rgba(0, 54, 252, 0.1) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.contact-card .contact-icon svg {
  width: 28px;
  height: 28px;
}

.contact-card h3 {
  font-size: var(--text-lg);
  font-family: var(--font-semibold);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
}

.contact-time {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ============================================
   Pixso 特定样式
   ============================================ */

/* Pixso 画布 */
.Pixso-canvas-0_1 {
  width: 100%;
  height: auto;
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

/* Pixso 框架 */
.Pixso-frame-2_1 {
  width: 100%;
  height: auto;
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: var(--bg-white);
}

.frame-content-2_1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  position: relative;
}

/* Pixso Hero 区域 */
.Pixso-frame-2_20 {
  width: 100%;
  min-height: 600px;
  max-height: 750px;
  margin: 0 auto;
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
}

.frame-content-2_20 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}

/* Hero 内容区域 */
.Pixso-frame-2_25 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  max-width: 800px;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.frame-content-2_25 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

/* 渐变背景 */
.fill-线性渐变-78_2 {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20viewBox%3D'0%200%201440%20750'%20preserveAspectRatio%3D'none'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%0A%20%20%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D'grad'%20gradientUnits%3D'objectBoundingBox'%20x1%3D'0'%20y1%3D'0.5'%20x2%3D'1'%20y2%3D'0.5'%20gradientTransform%3D'matrix(0.0000%2C%20-1.0000%2C%201.0000%2C%200.0000%2C%20-0.0000%2C%201.0000)'%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D'rgba(199%2C222%2C255%2C1)'%20offset%3D'0'%2F%3E%3Cstop%20stop-color%3D'rgba(255%2C255%2C255%2C1)'%20offset%3D'1'%2F%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%20%20%3Crect%20width%3D'100%25'%20height%3D'100%25'%20fill%3D'url(%23grad)'%2F%3E%0A%20%20%20%20%3C%2Fsvg%3E");
}

.Pixso-frame-78_4 {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

/* ============================================
   响应式断点 - 子页面样式
   ============================================ */

/* 平板设备 (1024px) */
@media (max-width: 1024px) {
  /* Section 内边距 */
  .section-content,
  .section-inner {
    padding: 60px 40px;
  }

  /* Hero */
  .hero-inner {
    padding: 60px 40px;
    flex-direction: column;
  }

  .page-hero {
    padding: 140px 40px 60px 40px;
  }

  .page-header-content {
    padding: 60px 40px;
  }

  /* 标题字号 */
  .hero-title {
    font-size: 36px;
  }

  .page-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-title,
  .section-title-blue {
    font-size: 32px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  /* 网格调整 */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 关于页 */
  .about-intro {
    flex-direction: column;
    gap: 40px;
  }

  .about-text {
    max-width: 100%;
  }

  .about-image {
    max-width: 100%;
    min-height: 300px;
  }

  /* CTA */
  .cta-section {
    padding: 60px 40px;
  }

  .cta-title {
    font-size: 32px;
  }

  /* Platform page */
  .platform-showcase {
    padding: 60px 40px;
  }

  .more-features-section {
    padding: 60px 40px;
  }

  .feature-list-item {
    width: calc(50% - 10px);
  }

  /* Process page */
  .process-detail-section {
    padding: 60px 40px;
  }

  .process-step-card {
    flex-direction: column;
    gap: 16px;
  }

  .why-us-section {
    padding: 60px 40px;
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About page */
  .company-intro-section {
    padding: 60px 40px;
  }

  .intro-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .company-stats-section {
    padding: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-section {
    padding: 60px 40px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-section {
    padding: 60px 40px;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 移动设备 (768px) */
@media (max-width: 768px) {
  /* Section 内边距 */
  .section-content,
  .section-inner {
    padding: 40px 20px;
  }

  /* Hero */
  .hero-inner {
    padding: 40px 20px;
  }

  .page-hero {
    padding: 120px 20px 40px 20px;
  }

  .page-header-content {
    padding: 40px 20px;
  }

  /* 标题字号 */
  .hero-title {
    font-size: 28px;
  }

  .page-title {
    font-size: 28px;
  }

  .section-title,
  .section-title-blue {
    font-size: 26px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .about-text .title {
    font-size: 26px;
  }

  /* 网格调整为单列 */
  .features-grid {
    grid-template-columns: 1fr;
  }

  /* 按钮组垂直排列 */
  .hero-buttons,
  .hero-cta {
    flex-direction: column;
  }

  /* CTA */
  .cta-section {
    padding: 40px 20px;
  }

  .cta-title {
    font-size: 26px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  /* Platform page */
  .platform-showcase {
    padding: 40px 20px;
  }

  .more-features-section {
    padding: 40px 20px;
  }

  .feature-list-item {
    width: 100%;
  }

  /* Process page */
  .process-detail-section {
    padding: 40px 20px;
  }

  .why-us-section {
    padding: 40px 20px;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  /* About page */
  .company-intro-section {
    padding: 40px 20px;
  }

  .intro-text h2 {
    font-size: 26px;
  }

  .company-stats-section {
    padding: 30px 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .values-section {
    padding: 40px 20px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 40px 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* 移动端横屏 Hero 适配 */
@media (max-width: 768px) and (orientation: landscape) {
  .hero, .page-hero {
    min-height: auto;
    padding-top: calc(64px + env(safe-area-inset-top));
    padding-bottom: 30px;
  }
  .hero-content h1, .page-title {
    font-size: 24px;
  }
}

/* 小屏移动设备 (480px) */
@media (max-width: 480px) {
  /* Section 内边距 */
  .section-content,
  .section-inner {
    padding: 30px 16px;
  }

  /* Hero */
  .hero-inner {
    padding: 30px 16px;
  }

  .page-hero {
    padding: 100px 16px 30px 16px;
  }

  .page-header-content {
    padding: 30px 16px;
  }

  /* 标题字号 */
  .hero-title {
    font-size: 24px;
  }

  .page-title {
    font-size: 24px;
  }

  .section-title,
  .section-title-blue {
    font-size: 22px;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  /* CTA */
  .cta-section {
    padding: 30px 16px;
  }

  .cta-title {
    font-size: 24px;
  }

  /* Platform page */
  .platform-showcase {
    padding: 30px 16px;
  }

  .more-features-section {
    padding: 30px 16px;
  }

  /* Process page */
  .process-detail-section {
    padding: 30px 16px;
  }

  .why-us-section {
    padding: 30px 16px;
  }

  /* About page */
  .company-intro-section {
    padding: 30px 16px;
  }

  .company-stats-section {
    padding: 24px 16px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .values-section {
    padding: 30px 16px;
  }

  .contact-section {
    padding: 30px 16px;
  }

  /* 网格全部单列 */
  .features-grid,
  .why-us-grid,
  .values-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-list-item {
    width: 100%;
    min-width: auto;
  }
}

/* ============================================
   打印样式
   ============================================ */

@media print {
  .site-header,
  .header,
  .cta-section,
  .carousel-dots {
    display: none;
  }

  .section {
    page-break-inside: avoid;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }
}

/* ============================================
   Pixso Frame Styles (Auto-generated)
   ============================================ */

.Pixso-frame-2_26 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Pixso-frame-2_27 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Pixso-frame-2_43 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Pixso-frame-2_49 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 110px 40px;
  text-align: center;
}

.Pixso-frame-2_49 .Pixso-paragraph-2_51 {
  font-size: 14px;
  color: var(--primary-color);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.Pixso-frame-2_49 .Pixso-paragraph-2_52 {
  font-size: 36px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.Pixso-frame-2_49 .Pixso-paragraph-2_53 {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 700px;
}

.Pixso-frame-2_54 {
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 110px;
}

@media (max-width: 1200px) {
  .Pixso-frame-2_54 {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .Pixso-frame-2_54 {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

.Pixso-frame-2_65 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Pixso-frame-2_76 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Pixso-frame-2_89 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Pixso-frame-2_95 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Pixso-frame-2_104 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Pixso-frame-2_111 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Pixso-frame-2_118 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Pixso-frame-2_126 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Pixso-frame-2_131 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Pixso-frame-2_136 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Pixso-frame-2_141 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Pixso-frame-2_147 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Pixso-frame-2_152 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Pixso-frame-2_157 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Pixso-frame-2_162 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Pixso-frame-2_167 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Pixso-frame-2_172 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Pixso-frame-2_177 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Pixso-frame-2_182 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Pixso-frame-2_187 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Pixso-frame-2_193 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Pixso-frame-2_201 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Pixso-frame-2_213 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Pixso-frame-2_222 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Pixso-frame-2_228 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Pixso-frame-2_233 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Pixso-frame-2_238 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Pixso-frame-2_243 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Pixso-frame-2_248 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Pixso-frame-44_1 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Pixso-frame-2_32 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_37 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_40 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_46 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_50 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_55 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_56 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_66 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_77 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_90 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_96 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_105 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_112 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_119 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_120 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_137 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_142 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_144 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_149 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_154 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_159 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_164 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_169 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_174 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_179 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_188 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_194 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_195 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_205 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_223 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_229 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_234 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_239 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_244 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_249 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_256 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_262 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_265 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_267 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_269 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_271 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_272 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_274 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_287 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_290 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_291 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_293 {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.Pixso-frame-2_34 {
  width: 100%;
  display: grid;
  gap: 24px;
  position: relative;
}

.Pixso-frame-2_36 {
  width: 100%;
  display: grid;
  gap: 24px;
  position: relative;
}

.frame-content-2_20 {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}

.frame-content-2_25 {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}

.Pixso-frame-78_4 {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.Pixso-frame-79_1 {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.Pixso-frame-76_2 {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.Pixso-frame-2_257 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 20px;
}

/* ============================================
   百度智能云风格页面样式 (首页专用)
   ============================================ */

/* ============================================
   Hero Section - 百度智能云风格
   ============================================ */
.hero-section-baidu {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-section-baidu::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 54, 252, 0.03) 0%, rgba(0, 54, 252, 0.05) 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left {
  padding: 40px 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #0036FC;
  margin-bottom: 20px;
  font-weight: 500;
}

.tag-dot {
  width: 8px;
  height: 8px;
  background: #0036FC;
  border-radius: 50%;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary-baidu {
  background: linear-gradient(135deg, #0036FC 0%, #0036FC 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 54, 252, 0.3);
}

.btn-primary-baidu:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 54, 252, 0.4);
}

.btn-secondary-baidu {
  background: #fff;
  color: #1a1a2e;
  border: 1px solid #e2e8f0;
}

.btn-secondary-baidu:hover {
  border-color: #0036FC;
  color: #0036FC;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-placeholder {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 54, 252, 0.15);
}

/* 统计数据 */
.hero-stats-baidu {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.hero-stats-baidu .stat-item {
  text-align: center;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.hero-stats-baidu .stat-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, #0036FC 0%, #0036FC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.hero-stats-baidu .stat-label {
  font-size: 14px;
  color: #64748b;
}

/* ============================================
   Quick Links Section - 快捷入口
   ============================================ */
.quick-links-section {
  padding: 40px 24px;
  background: #fff;
}

.quick-links-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.quick-link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.quick-link-card:hover {
  border-color: #0036FC;
  box-shadow: 0 4px 20px rgba(0, 54, 252, 0.1);
}

.quick-link-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(0, 54, 252, 0.1) 0%, rgba(0, 54, 252, 0.1) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0036FC;
  flex-shrink: 0;
}

.quick-link-content {
  flex: 1;
}

.quick-link-content h3 {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.quick-link-content p {
  font-size: 13px;
  color: #64748b;
}

.quick-link-arrow {
  color: #94a3b8;
  font-size: 18px;
  transition: all 0.3s ease;
}

.quick-link-card:hover .quick-link-arrow {
  color: #0036FC;
  transform: translateX(4px);
}

/* ============================================
   Section Header - 百度智能云风格
   ============================================ */
.section-header-baidu {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  padding: 0 24px;
}

.section-title-baidu {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.section-subtitle-baidu {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
}

/* ============================================
   Solutions Section - 百度智能云风格
   ============================================ */
.solutions-section-baidu {
  padding: 80px 24px;
  background: #f8fafc;
}

.solutions-grid-baidu {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.solution-card-baidu {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.solution-card-baidu:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 54, 252, 0.1);
  border-color: #0036FC;
}

.solution-icon-baidu {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0, 54, 252, 0.1) 0%, rgba(0, 54, 252, 0.1) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0036FC;
  margin-bottom: 20px;
}

.solution-card-baidu h3 {
  font-size: 18px;
  font-weight: 500;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.solution-card-baidu p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
}

.solution-link {
  font-size: 14px;
  color: #0036FC;
  font-weight: 500;
}

.section-footer-baidu {
  text-align: center;
  margin-top: 40px;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #1a1a2e;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-view-all:hover {
  border-color: #0036FC;
  color: #0036FC;
}

/* ============================================
   Products Section - 百度智能云风格
   ============================================ */
.products-section-baidu {
  padding: 80px 24px;
  background: #fff;
}

.products-grid-baidu {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card-baidu {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.product-card-baidu:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 54, 252, 0.1);
  border-color: #0036FC;
}

.product-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  border-radius: 20px;
}

.product-tag.new {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.product-icon-baidu {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 54, 252, 0.1) 0%, rgba(0, 54, 252, 0.1) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0036FC;
  margin: 0 auto 20px;
}

.product-card-baidu h3 {
  font-size: 17px;
  font-weight: 500;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.product-card-baidu p {
  font-size: 14px;
  color: #64748b;
}

/* ============================================
   Platform Section - 百度智能云风格
   ============================================ */
.platform-section-baidu {
  padding: 80px 24px;
  background: #f8fafc;
}

.platform-showcase-baidu {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.platform-image-baidu {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 54, 252, 0.1);
}

.platform-image-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #e8f4ff 0%, #c7deff 100%);
}

.platform-features-baidu {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.platform-feature-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.platform-feature-item:hover {
  box-shadow: 0 4px 20px rgba(0, 54, 252, 0.1);
}

.platform-feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(0, 54, 252, 0.1) 0%, rgba(0, 54, 252, 0.1) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0036FC;
  flex-shrink: 0;
}

.platform-feature-content h3 {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.platform-feature-content p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

/* ============================================
   Process Section - 百度智能云风格
   ============================================ */
.process-section-baidu {
  padding: 80px 24px;
  background: #fff;
}

.process-steps-baidu {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.process-step-baidu {
  text-align: center;
  padding: 28px 20px;
  background: #f8fafc;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.process-step-baidu:hover {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 54, 252, 0.1);
}

.step-number-baidu {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #0036FC 0%, #0036FC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.process-step-baidu h3 {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.process-step-baidu p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

/* ============================================
   About Section - 百度智能云风格
   ============================================ */
.about-section-baidu {
  padding: 80px 24px;
  background: #f8fafc;
}

.about-container-baidu {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-left-baidu .section-title-baidu {
  text-align: left;
  margin-bottom: 20px;
}

.about-left-baidu p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-tags-baidu {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.tag-baidu {
  padding: 8px 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  font-size: 14px;
  color: #1a1a2e;
}

.about-buttons-baidu {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

.about-image-baidu {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e8f4ff 0%, #c7deff 100%);
  border-radius: 16px;
}

/* ============================================
   CTA Section - 百度智能云风格
   ============================================ */
.cta-section-baidu {
  padding: 80px 24px;
  background: linear-gradient(135deg, #000930 0%, #1a2a4a 100%);
  position: relative;
  overflow: hidden;
}

.cta-section-baidu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(0, 54, 252, 0.3) 0%, transparent 50%);
}

.cta-container-baidu {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-container-baidu h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.cta-container-baidu p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.cta-buttons-baidu {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.cta-buttons-baidu .btn-secondary-baidu {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.cta-buttons-baidu .btn-secondary-baidu:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Responsive Design - 百度智能云风格
   ============================================ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-left {
    order: 1;
  }

  .hero-right {
    order: 0;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-stats-baidu {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-links-grid,
  .solutions-grid-baidu {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid-baidu {
    grid-template-columns: repeat(2, 1fr);
  }

  .platform-showcase-baidu {
    grid-template-columns: 1fr;
  }

  .process-steps-baidu {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-container-baidu {
    grid-template-columns: 1fr;
  }

  .about-right-baidu {
    order: -1;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-stats-baidu {
    grid-template-columns: 1fr;
  }

  .quick-links-grid,
  .solutions-grid-baidu,
  .products-grid-baidu,
  .process-steps-baidu {
    grid-template-columns: 1fr;
  }

  .section-title-baidu {
    font-size: 24px;
  }

  .cta-container-baidu h2 {
    font-size: 28px;
  }

  .hero-buttons,
  .cta-buttons-baidu {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
