/* 导入 Inter 字体 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');

/* 重置默认样式 */

[data-animate="text-by-char"] span {
  display: inline-block;
}

/* 客户 logo 区域 */
.clients-section {
  padding: 2rem 0;
  width: 100%;
}

.line-separator {
  width: 100%;
  height: 1px;
  background-color: #F1F6FA;
  margin: 0;
  border: none;
}

.clients-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  padding: 2rem 0;
  flex-wrap: wrap;
}

.client-logo {
  height: 132px;
  object-fit: contain;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.client-logo:hover {
  opacity: 1;
}

/* 特性部分 */
.features-section {
  background-color: #FFFFFF;
  padding: 80px 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  border-bottom: #F1F6FA 1px solid;
}

.features-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 768px;
  text-align: center;
}

.features-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.222;
  letter-spacing: -0.02em;
  color: #181D27;
}

.features-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: #535862;
}

.advantages-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  width: 100%;
  flex-wrap: wrap;
}

.advantage-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 350px;
  box-shadow: 0px 12px 30px 17px rgba(84, 54, 203, 0.12);
}

.advantage-icon {
  width: 48px;
  height: 48px;
  padding: 14px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage-icon img {
  width: 24px;
  height: 24px;
}

.advantage-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.advantage-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  color: #181D27;
}

.advantage-description {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #9497A1;
}

/* 产品展示部分 */
.products-section {
  background-color: #FFFFFF;
  padding: 96px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.products-container {
  max-width: 1280px;
  /* padding: 0 32px; */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.products-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 768px;
  margin: 0 auto;
}

.products-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.222;
  letter-spacing: -0.02em;
  color: #181D27;
  text-align: center;
}

.products-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: #535862;
  text-align: center;
}

.products-badge-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.products-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 10px 4px 4px;
  background: rgba(113, 77, 255, 0.1);
  border-radius: 16px;
}



.badge-text {
  padding: 2px 10px;
  border: 1px solid #714DFF;
  border-radius: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #714DFF;
  background-color: #FFFFFF;
}

.view-more {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #714DFF;
  text-decoration: none;
}

.view-more img {
  width: 9px;
  height: 9px;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.product-card {
  width: 296px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.product-image {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  object-fit: cover;
}

.product-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.product-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-tag {
  align-self: flex-start;
  padding: 8px 20px;
  background: rgba(113, 77, 255, 0.1);
  border: 2px solid #FFFFFF;
  border-radius: 21px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: #714DFF;
}

.product-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: left;
  width: 100%;
}

.product-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  color: #181D27;
  width: 100%;
}

.product-description {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #535862;
  width: 100%;
}

.learn-more-btn {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: #714DFF;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.learn-more-btn img {
  width: 20px;
  height: 20px;
}

/* 数据指标部分 */
.metrics-section {
  background-color: rgba(245, 245, 245, 0.5);
  padding: 96px 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 64px;
}

.metrics-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.metrics-header {
  /* padding: 0 32px; */
  max-width: 768px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.metrics-subheading {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: #714DFF;
}

.metrics-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.222;
  letter-spacing: -0.02em;
  color: #181D27;
}

.metrics-description {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: #535862;
}

.metrics-content {
  display: flex;
  align-items: center;
  gap: 96px;
  max-width: 1280px;
  margin: 0 auto;
}

.metrics-data {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.metrics-row {
  display: flex;
  justify-content: stretch;
  gap: 32px;
  width: 100%;
}

.metric-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.metric-number {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 60px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #714DFF;
  text-align: center;
}

.metric-text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.metric-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.556;
  color: #181D27;
  text-align: center;
}

.metric-description {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #535862;
  text-align: center;
}

.testimonial-card {
  background: rgba(153, 153, 153, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 32px;
  width: 384px;
  box-shadow: 0px 4px 6px -2px rgba(10, 13, 18, 0.03), 0px 12px 16px -4px rgba(10, 13, 18, 0.08);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 16px;
}

.testimonial-name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.714;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.testimonial-title {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.667;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.testimonial-text {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.714;
  color: #FFFFFF;
}

/* Hero Section */
.hero-section {
  padding: 80px 0;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  background: url(/assets/hero-bg.png) no-repeat center center;
  background-size: cover;
  border-bottom: #F1F6FA 1px solid;
}

.hero-image {
  margin-top: 139px;
}

.hero-content {
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: #181D27;
  max-width: 800px;
  width: 400px;
}

.hero-description {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: #535862;
  max-width: 800px;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.hero-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.556;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hero-button-outline {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  color: #181D27;
  box-shadow: 0px 1px 2px rgba(10, 13, 18, 0.05);
}

.hero-button-outline:hover {
  background: #F9FAFB;
}

.hero-button-primary {
  background: #714DFF;
  border: 1px solid #714DFF;
  color: #FFFFFF;
  box-shadow: 0px 1px 2px rgba(10, 13, 18, 0.05);
}

.hero-button-primary:hover {
  background: #5F3FE6;
}

.button-icon {
  width: 24px;
  height: 24px;
}

.cta-container {
  height: 480px;
  padding: 0 32px;
  margin-top: 100px;
  background: url(/assets/cta-bg.png) no-repeat center center;
  background-size: cover;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.cta-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 768px;
}

.cta-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.22;
  letter-spacing: -0.02em;
  text-align: center;
  color: #181D27;
  width: 100%;
}

.cta-description {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  color: #535862;
  width: 100%;
}

.cta-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.cta-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.cta-button-outline {
  background-color: #FFFFFF;
  color: #181D27;
  border: 1px solid #E5E7EB;
  box-shadow: 0px 1px 2px rgba(10, 13, 18, 0.05);
}

.cta-button-outline:hover {
  background-color: #F9FAFB;
}

.cta-button-primary {
  background-color: #714DFF;
  color: #FFFFFF;
  border: 1px solid #714DFF;
  box-shadow: 0px 1px 2px rgba(10, 13, 18, 0.05);
}

.cta-button-primary:hover {
  background-color: #5F3FE6;
  border-color: #5F3FE6;
}

.hero-image {
  max-width: 768px;
  width: 768px;
  height: 440px;
  position: relative;
}

.hero-image img {
  position: absolute;
  left: 80px;
  top: 0;
  width: 100%;
  height: 100%;
}