
    /* 4. 各区块样式 */
    /* Hero区块 */
    .hero {
      padding: 100px 0;
      background: linear-gradient(180deg, #fff, #f6f9ff);
    }

    .hero-grid {
      display: grid;
      gap: 40px;
      align-items: center;
    }

    .hero-img {
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    /* Features区块 */
    #features {
      background: #fff;
    }

    .features-desc {
      max-width: 700px;
      margin-bottom: 2.5rem;
    }

    /* Solutions区块（重构+图标） */
    #solutions {
      background: var(--bg);
    }

    .solutions-desc {
      max-width: 700px;
      margin-bottom: 2.5rem;
    }

    .solution-icon {
      font-size: 28px;
      color: var(--brand);
      margin-bottom: 1rem;
    }

    .solution-card h3 {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    /* Measure区块 */
    #measure {
      background: #fff;
    }

    /* Pricing区块 */
    #pricing {
      background: var(--bg);
    }

    .pricing-card {
      text-align: center;
    }

    .pricing-card h3 {
      font-size: 22px;
      color: var(--brand);
    }

    .pricing-tag {
      font-size: 28px;
      font-weight: 700;
      color: var(--ink);
      margin: 1rem 0;
    }

    .pricing-note {
      font-size: 14px;
      color: var(--muted);
      margin-top: 1.5rem;
    }

    /* Cases区块 */
    #cases {
      background: #fff;
    }

    .case-card p {
      color: var(--ink);
    }

    /* FAQ区块 */
    #faq {
      background: var(--bg);
    }

    .faq-card {
      cursor: pointer;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .faq-card.active .faq-answer {
      max-height: 200px;
      margin-top: 1rem;
    }

    /* Contact区块 */
    #contact {
      background: #fff;
    }

    .contact-card {
      max-width: 600px;
      margin: 0 auto;
      text-align: center;
      padding: 40px;
    }
    /* 应用商店按钮容器 */
.app-downloads {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center; /* 居中对齐 */
}

/* 按钮样式 */
.app-btn {
  display: inline-block;
  transition: var(--transition);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.app-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.app-btn img {
  width: 160px; /* 统一按钮宽度 */
  height: auto;
  display: block; /* 去除图片底部间隙 */
}

/* 移动端适配 */
@media (max-width: 768px) {
  .app-downloads {
    gap: 12px;
    margin-top: 18px;
  }
  
  .app-btn img {
    width: 150px; /* 移动端缩小按钮 */
  }
}
