/* ========== 基础重置 ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --green: #2d6a4f;
  --green-dark: #1b4332;
  --green-light: #d8f3dc;
  --warm: #e76f51;
  --warm-dark: #c8553d;
  --cream: #faf7f2;
  --bg: #fffdf9;
  --bg-alt: #f4efe6;
  --text: #2b2118;
  --text-light: #7a6e62;
  --border: #e8e0d4;
  --white: #fff;
  --shadow: 0 10px 30px rgba(45,106,79,.12);
  --radius: 18px;
}
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 780px; }

/* ========== 按钮 ========== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: 999px;
  font-weight: 600; font-size: 15px; cursor: pointer;
  border: none; transition: all .25s ease; white-space: nowrap;
}
.btn-green {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; box-shadow: 0 8px 20px rgba(45,106,79,.3);
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(45,106,79,.4); }
.btn-warm {
  background: var(--warm); color: #fff;
  box-shadow: 0 8px 20px rgba(231,111,81,.3);
}
.btn-warm:hover { background: var(--warm-dark); transform: translateY(-2px); }
.btn-lg { padding: 15px 32px; font-size: 16px; }

/* ========== 导航栏 ========== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,253,249,.92); backdrop-filter: blur(12px);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.06); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { width: 38px; height: 38px; border-radius: 9px; }
.brand-name { font-size: 20px; font-weight: 800; color: var(--green-dark); letter-spacing: 1px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 15px; color: var(--text-light); font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--green); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--text); border-radius: 2px; transition: .3s; }

/* ========== Hero ========== */
.hero {
  padding: 130px 0 80px; position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--bg) 100%);
}
.hero-leaf {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; z-index: 0;
}
.leaf1 { width: 380px; height: 380px; background: var(--green-light); top: -80px; left: -80px; }
.leaf2 { width: 300px; height: 300px; background: #fdd8cc; bottom: -60px; right: -60px; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.hero-badge {
  display: inline-block; padding: 6px 16px; border-radius: 999px;
  background: var(--green-light); color: var(--green-dark);
  font-size: 13px; font-weight: 600; margin-bottom: 20px;
}
.hero-text h1 { font-size: 56px; line-height: 1.1; font-weight: 900; color: var(--green-dark); letter-spacing: 2px; }
.hero-sub { font-size: 19px; color: var(--warm); margin: 14px 0; font-weight: 600; }
.hero-desc { margin: 0 0 30px; font-size: 16px; color: var(--text-light); max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* 手机浮动 */
.hero-visual { display: flex; justify-content: center; align-items: center; min-height: 460px; }
.phone-float {
  position: absolute; border-radius: 24px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.15);
  border: 6px solid #fff;
}
.phone-float img { width: 100%; height: 100%; object-fit: cover; }
.pf1 { width: 200px; height: 400px; transform: rotate(-6deg); z-index: 1; left: 10%; animation: float 4s ease-in-out infinite; }
.pf2 { width: 220px; height: 440px; z-index: 2; right: 10%; animation: float 4s ease-in-out infinite 1s; }
@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

/* ========== 数据条 ========== */
.stats { background: linear-gradient(135deg, var(--green), var(--green-dark)); color: #fff; padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-num { display: block; font-size: 34px; font-weight: 800; }
.stat-label { font-size: 14px; opacity: .9; }

/* ========== 通用 Section ========== */
.section { padding: 90px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 600px; margin: 0 auto 50px; }
.section-tag {
  display: inline-block; font-size: 12px; letter-spacing: 4px; font-weight: 700;
  color: var(--warm); margin-bottom: 12px;
}
.section-head h2 { font-size: 36px; font-weight: 800; margin-bottom: 14px; color: var(--green-dark); }
.section-head p { color: var(--text-light); font-size: 16px; }

/* ========== 特色卡片 ========== */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-card {
  background: #fff; padding: 32px 24px; border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0,0,0,.04); transition: transform .25s, box-shadow .25s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-icon {
  width: 56px; height: 56px; border-radius: 16px; font-size: 28px;
  background: var(--green-light); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 18px; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-light); }

/* ========== 界面预览 ========== */
.screens-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 880px; margin: 0 auto; }
.screen-shot {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.1); background: #fff;
  transition: transform .3s;
}
.screen-shot:hover { transform: translateY(-6px); }
.screen-shot img { width: 100%; aspect-ratio: 9/16; object-fit: cover; }
.screen-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 14px 12px; text-align: center;
  background: linear-gradient(transparent, rgba(27,67,50,.8));
  color: #fff; font-size: 14px; font-weight: 600;
}

/* ========== 下载 CTA ========== */
.download-band {
  background: linear-gradient(135deg, var(--green-dark), #0f2e22);
  padding: 90px 0;
}
.download-inner { display: flex; justify-content: center; }
.download-card { text-align: center; color: #fff; max-width: 560px; }
.download-icon { width: 88px; height: 88px; border-radius: 20px; margin: 0 auto 22px; box-shadow: 0 10px 30px rgba(0,0,0,.3); }
.download-card h2 { font-size: 36px; margin-bottom: 14px; letter-spacing: 2px; }
.download-card p { opacity: .8; margin-bottom: 26px; font-size: 16px; }
.download-tip { display: block; margin-top: 16px; font-size: 13px; opacity: .6; }

/* ========== FAQ ========== */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 24px; font-size: 16px; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; color: var(--text);
}
.faq-arrow { transition: transform .3s; font-size: 22px; color: var(--warm); }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 24px 20px; color: var(--text-light); font-size: 15px; }

/* ========== 页脚 ========== */
.footer { background: #1b2e22; color: #8aa896; padding: 50px 0 0; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo { width: 46px; height: 46px; border-radius: 10px; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; max-width: 280px; }
.footer-links { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.footer-links a { font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { text-align: center; padding: 20px 0; font-size: 13px; opacity: .7; }

/* ========== 回到顶部 ========== */
.back-top {
  position: fixed; right: 24px; bottom: 24px; width: 46px; height: 46px;
  border-radius: 50%; border: none; cursor: pointer; font-size: 20px;
  background: var(--green); color: #fff;
  box-shadow: 0 6px 18px rgba(45,106,79,.4);
  opacity: 0; pointer-events: none; transition: .3s; z-index: 99;
}
.back-top.show { opacity: 1; pointer-events: auto; }

/* ========== 响应式 ========== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text h1 { font-size: 42px; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { min-height: 440px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .screens-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .nav-links {
    position: fixed; top: 68px; left: 0; right: 0;
    background: #fff; flex-direction: column; gap: 0;
    max-height: 0; overflow: hidden; transition: max-height .3s;
    box-shadow: 0 10px 20px rgba(0,0,0,.06);
  }
  .nav-links a { padding: 16px 24px; border-top: 1px solid var(--border); }
  .nav-links.open { max-height: 400px; }
  .nav-toggle { display: flex; }
  .nav-download { display: none; }
}
@media (max-width: 560px) {
  .hero-text h1 { font-size: 34px; }
  .features-grid { grid-template-columns: 1fr; }
  .screens-grid { grid-template-columns: 1fr; }
  .phone-float.pf1 { left: 5%; }
  .phone-float.pf2 { right: 5%; }
  .section-head h2 { font-size: 28px; }
  .download-card h2 { font-size: 26px; }
}
