    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Helvetica, sans-serif;
      background-color: #ffffff;
      color: #111111;
      line-height: 1.5;
      scroll-behavior: smooth;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* header */
    .header {
      background-color: #ffffff;
      border-bottom: 1px solid #e5e7eb;
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(0px);
    }

    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      padding: 18px 0;
    }

    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #25D366, #128C7E);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-decoration: none;
    }
	
	.logo img{
		width: 131px;
		height: 30px;
	}

    .nav-links {
      display: flex;
      gap: 32px;
      align-items: center;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      font-weight: 500;
      color: #1f2937;
      transition: color 0.2s;
      font-size: 1rem;
    }

    .nav-links a:hover {
      color: #25D366;
    }

    .nav-links .active {
      color: #128C7E;
      font-weight: 600;
    }

    .btn-outline {
      border: 1px solid #25D366;
      background: transparent;
      padding: 8px 20px;
      border-radius: 40px;
      font-weight: 600;
      color: #128C7E;
      transition: all 0.2s;
    }

    .btn-outline:hover {
      background: #25D36610;
      border-color: #128C7E;
    }

    /* button */
    .btn-primary {
      display: inline-block;
      background-color: #25D366;
      color: white;
      font-weight: 600;
      padding: 12px 32px;
      border-radius: 40px;
      text-decoration: none;
      transition: background 0.2s, transform 0.1s;
      border: none;
      font-size: 1rem;
    }

    .btn-primary:hover {
      background-color: #128C7E;
    }

    /* hero */
    .hero {
      padding: 80px 0 64px;
      background: linear-gradient(145deg, #f9fafb 0%, #ffffff 100%);
    }

    .hero-grid {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 48px;
    }

    .hero-content {
      flex: 1;
    }

    .hero-content h1 {
      font-size: 3.3rem;
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #1f2b3c, #075e54);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 20px;
    }

    .hero-content p {
      font-size: 1.2rem;
      color: #374151;
      max-width: 540px;
      margin-bottom: 32px;
    }

    .hero-badge {
      background: #e9f9ef;
      display: inline-block;
      padding: 6px 14px;
      border-radius: 30px;
      font-size: 0.85rem;
      font-weight: 500;
      color: #075e54;
      margin-bottom: 24px;
    }

    .hero-image {
      flex: 1;
      text-align: center;
    }

    .hero-image svg {
      max-width: 100%;
      height: auto;
    }

    /* features section */
    .features {
      padding: 80px 0;
      background: #ffffff;
    }

    .section-title {
      text-align: center;
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .section-desc {
      text-align: center;
      color: #4b5563;
      max-width: 640px;
      margin: 0 auto 56px;
      font-size: 1.1rem;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 40px;
    }

    .feature-card {
      background: #f9fafb;
      border-radius: 32px;
      padding: 32px 24px;
      text-align: center;
      transition: all 0.25s;
      border: 1px solid #edf2f7;
    }

    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.08);
      border-color: #cbf0da;
    }

    .feature-icon {
      font-size: 2.8rem;
      margin-bottom: 20px;
    }

    .feature-card h3 {
      font-size: 1.5rem;
      margin-bottom: 12px;
      font-weight: 600;
    }

    .feature-card p {
      color: #4b5563;
    }

    /* cta 下载区 */
    .cta-section {
      background: linear-gradient(120deg, #eef9f2, #ffffff);
      border-radius: 48px;
      margin: 32px 0 80px;
      padding: 64px 48px;
      text-align: center;
    }

    .cta-section h2 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .cta-buttons {
      margin-top: 32px;
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-secondary {
      background: white;
      border: 1px solid #cfdde6;
      padding: 12px 28px;
      border-radius: 40px;
      font-weight: 600;
      text-decoration: none;
      color: #1f2a3e;
      transition: 0.2s;
    }

    .btn-secondary:hover {
      border-color: #25D366;
      background: #f0fdf4;
    }

    /* footer */
    .footer {
      border-top: 1px solid #eaeef3;
      padding: 48px 0 32px;
      background: #fafcff;
    }

    .footer-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 32px;
      margin-bottom: 40px;
    }

    .footer-col {
      min-width: 140px;
    }

    .footer-col h4 {
      font-weight: 600;
      margin-bottom: 18px;
      color: #111827;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col li {
      margin-bottom: 12px;
    }

    .footer-col a {
      text-decoration: none;
      color: #4b5563;
      font-size: 0.9rem;
    }

    .footer-col a:hover {
      color: #128C7E;
    }

    .copyright {
      text-align: center;
      padding-top: 28px;
      border-top: 1px solid #e5e7eb;
      font-size: 0.8rem;
      color: #6c757d;
    }

    @media (max-width: 768px) {
      .nav {
        flex-direction: column;
        gap: 16px;
      }
      .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
      }
      .hero-content h1 {
        font-size: 2.3rem;
      }
      .cta-section {
        padding: 40px 24px;
      }
      .hero-grid {
        flex-direction: column;
      }
    }
