<style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', 'Noto Sans', 'PingFang SC', 'Microsoft YaHei', sans-serif;
      background: #f8fafc;
      color: #1e293b;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .card, .version-card, .faq-item, .testimonial-card, .step-card, .feature-card {
      background: #ffffff;
      border-radius: 20px;
      box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.02);
      border: 1px solid rgba(226, 232, 240, 0.8);
      transition: all 0.3s ease;
    }
    .card:hover, .version-card:hover, .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 25px 40px -12px rgba(0, 102, 204, 0.12);
      border-color: rgba(0, 102, 204, 0.15);
    }
    a {
      text-decoration: none;
      color: inherit;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
      color: #ffffff;
      font-weight: 600;
      padding: 13px 30px;
      border-radius: 40px;
      transition: all 0.25s;
      letter-spacing: 0.3px;
      box-shadow: 0 8px 20px rgba(0, 102, 204, 0.25);
      border: none;
      cursor: pointer;
      font-size: 1rem;
    }
    .btn:hover {
      background: linear-gradient(135deg, #0077e6 0%, #004b8c 100%);
      box-shadow: 0 14px 28px rgba(0, 102, 204, 0.35);
      transform: translateY(-1px);
    }
    .btn-outline {
      background: transparent;
      border: 2px solid #0066cc;
      color: #0066cc;
      box-shadow: none;
      font-weight: 600;
    }
    .btn-outline:hover {
      background: #0066cc;
      color: #ffffff;
    }
    h1, h2, h3 {
      font-weight: 650;
      letter-spacing: -0.3px;
    }
    h1 {
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      line-height: 1.2;
    }
    h2 {
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      margin-bottom: 1.8rem;
    }
    h3 {
      font-size: 1.25rem;
    }
    .section-title {
      text-align: center;
      margin-bottom: 3rem;
      color: #0f172a;
    }
    header {
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(18px);
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid rgba(0, 102, 204, 0.06);
    }
    .nav-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 0;
      flex-wrap: wrap;
      gap: 18px;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      font-size: 1.7rem;
      color: #0066cc;
    }
    .logo-icon {
      background: linear-gradient(135deg, #0066cc, #004b8c);
      color: #fff;
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      font-weight: 700;
      box-shadow: 0 4px 10px rgba(0,102,204,0.3);
    }
    .nav-links {
      display: flex;
      gap: 24px;
      align-items: center;
      flex-wrap: wrap;
    }
    .nav-links a {
      font-weight: 500;
      color: #334155;
      padding: 6px 2px;
      border-bottom: 2px solid transparent;
      transition: 0.2s;
    }
    .nav-links a:hover {
      color: #0066cc;
      border-bottom-color: #0066cc;
    }
    .nav-download-btn {
      background: linear-gradient(135deg, #0066cc, #004b8c);
      color: #fff !important;
      padding: 10px 22px;
      border-radius: 30px;
      font-weight: 600;
      box-shadow: 0 6px 16px rgba(0,102,204,0.25);
      border-bottom: none !important;
      transition: all 0.25s;
    }
    .nav-download-btn:hover {
      background: #0077e6;
      box-shadow: 0 10px 22px rgba(0,102,204,0.4);
      color: #fff !important;
    }
    footer {
      background: #f1f5f9;
      padding: 55px 0 30px;
      margin-top: 70px;
      border-top: 1px solid #e2e8f0;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
      gap: 35px;
    }
    .footer-grid h4 {
      margin-bottom: 12px;
      color: #0f172a;
    }
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }
    .grid-6 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    @media (max-width: 768px) {
      .grid-6 { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 500px) {
      .grid-6 { grid-template-columns: 1fr; }
    }
    .banner {
      padding: 70px 0 60px;
      background: radial-gradient(circle at 30% 30%, #eaf2ff, #ffffff 80%);
    }
    .banner-inner {
      display: flex;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }
    .banner-left {
      flex: 1 1 450px;
      text-align: left;
    }
    .banner-right {
      flex: 1 1 300px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .core-feature-item {
      background: rgba(255,255,255,0.8);
      backdrop-filter: blur(8px);
      border-radius: 16px;
      padding: 20px 15px;
      text-align: center;
      border: 1px solid rgba(0,102,204,0.1);
      transition: 0.2s;
    }
    .core-feature-item:hover {
      background: #fff;
      box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    .stars {
      color: #fbbf24;
      letter-spacing: 2px;
    }
    .checklist {
      list-style: none;
      margin-top: 18px;
    }
    .checklist li {
      padding: 6px 0;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    details.faq-item {
      padding: 20px 24px;
      margin-bottom: 10px;
      border-radius: 16px;
      background: #fff;
      border: 1px solid #e9eef3;
      transition: all 0.2s;
    }
    details.faq-item[open] {
      border-color: #0066cc20;
      box-shadow: 0 8px 20px rgba(0,102,204,0.06);
    }
    details.faq-item summary {
      font-weight: 600;
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 1.05rem;
    }
    details.faq-item summary::-webkit-details-marker {
      display: none;
    }
    details.faq-item p {
      margin-top: 14px;
      color: #475569;
      line-height: 1.7;
    }
    .faq-number {
      background: #eef2ff;
      color: #0066cc;
      width: 28px;
      height: 28px;
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      margin-right: 12px;
      font-size: 0.9rem;
    }
    .faq-arrow {
      font-size: 1.2rem;
      color: #94a3b8;
      transition: 0.2s;
    }
    details[open] .faq-arrow {
      transform: rotate(180deg);
    }
  </style>