/* ===================================================
   花页 LP — lp.css
   新色系：象牙白 × 深森绿 × 藕粉
   参考：Bloom & Wild / Afloral / 日系花艺美学
   主色 --sage    深森绿  #2D4A3E  → CTA、品牌
   辅色 --blush   藕粉    #C8A09A  → 点缀、强调
   底色 --ivory   象牙白  #F7F3EE  → 页面背景
   文字 --ink     墨色    #1C1C1E  → 主文字
   =================================================== */

:root {
  /* ── 核心品牌色 ── */
  --sage:         #2D4A3E;   /* 深森绿 — 主CTA、品牌色 */
  --sage-mid:     #4A7A68;   /* 中绿 — hover状态 */
  --sage-light:   #8BB5A6;   /* 浅绿 — 辅助 */
  --sage-pale:    #EAF2EF;   /* 极浅绿 — 背景/hover */
  --sage-border:  rgba(45,74,62,0.14);

  --blush:        #C8A09A;   /* 藕粉 — 点缀强调 */
  --blush-dark:   #A67870;   /* 深藕粉 */
  --blush-pale:   #F5EDEB;   /* 极浅藕粉 — 卡片背景 */
  --blush-border: rgba(200,160,154,0.22);

  --gold:         #B8960C;   /* 暖金 — 徽章/会员 */
  --gold-pale:    #FDF8E7;

  /* ── 中性色 ── */
  --ivory:        #F7F3EE;   /* 象牙白 — 页面主背景 */
  --ivory-dark:   #EDE7DE;   /* 深象牙 — 分区背景 */
  --white:        #FFFFFF;
  --ink:          #1C1C1E;   /* 墨色 — 主文字 */
  --ink-mid:      #3D3D3F;   /* 中墨 */
  --muted:        #6E6E73;   /* 次要文字 */
  --muted-light:  #AEAEB2;   /* 禁用/placeholder */
  --line:         rgba(28,28,30,0.10); /* 分割线 */

  /* ── 功能色 ── */
  --green-ok:     #2D6A4F;
  --red-err:      #C0392B;

  /* ── 组合 ── */
  --bg:           var(--ivory);
  --card-bg:      var(--white);
  --card-shadow:  0 2px 16px rgba(28,28,30,0.07), 0 1px 4px rgba(28,28,30,0.05);
  --card-shadow-hover: 0 8px 32px rgba(45,74,62,0.14), 0 2px 8px rgba(28,28,30,0.06);

  /* ── 间距 & 形状 ── */
  --radius-xl:    24px;
  --radius-lg:    18px;
  --radius-md:    12px;
  --radius-sm:    8px;
  --radius-pill:  999px;
  --nav-h:        64px;
  --transition:   0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* 固定顶栏下锚点滚动不把标题挡在栏后 */
  scroll-padding-top: calc(var(--nav-h) + 12px);
}
body {
  font-family: "Georgia", "Times New Roman", ui-serif, serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
/* sans-serif 用于 UI 元素 */
nav, button, input, select, textarea, label, .btn, .tag-pill,
.section-kicker, .lp-hero__kicker, .lp-nav__links, .feature-card__badge,
.gallery-card__meta, .video-card__links, .lp-footer__col-title,
.lp-footer__links, .lp-cta__methods {
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }

/* ── Utility ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ── NAV ── */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(247,243,238,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--transition);
}
.lp-nav.scrolled { box-shadow: 0 1px 20px rgba(45,74,62,0.10); }
.lp-nav__inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.lp-nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: "Georgia", ui-serif, serif;
  font-weight: 700; font-size: 17px; letter-spacing: 0.2px;
  color: var(--sage);
}
.lp-nav__logo-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--sage);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
}
.lp-nav__links {
  display: flex; align-items: center; gap: 2px; list-style: none;
}
.lp-nav__links a {
  padding: 7px 13px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 500; letter-spacing: 0.1px; color: var(--muted);
  transition: color var(--transition), background var(--transition);
}
.lp-nav__links a:hover { color: var(--sage); background: var(--sage-pale); }
.lp-nav__ctas { display: flex; align-items: center; gap: 8px; }
.lp-nav__lang {
  font-size: 12px; padding: 6px 10px; border-radius: var(--radius-sm);
  border: 1px solid var(--line); color: var(--muted); cursor: pointer;
  background: transparent; transition: border-color var(--transition);
}
.lp-nav__lang:hover { border-color: var(--sage); color: var(--sage); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 11px 24px; border-radius: var(--radius-pill);
  font-size: 13.5px; font-weight: 600; cursor: pointer;
  border: none; transition: all var(--transition);
  white-space: nowrap; text-decoration: none; letter-spacing: 0.2px;
}
.btn-primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(45,74,62,0.22);
}
.btn-primary:hover {
  background: var(--sage-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(45,74,62,0.30);
}
.btn-outline {
  background: var(--white); color: var(--sage);
  border: 1.5px solid var(--sage-border);
}
.btn-outline:hover { border-color: var(--sage); background: var(--sage-pale); }
.btn-ghost {
  background: transparent; color: var(--muted);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { background: var(--ivory-dark); color: var(--ink); border-color: transparent; }
.btn-blush {
  background: var(--blush); color: var(--white);
  box-shadow: 0 2px 12px rgba(200,160,154,0.25);
}
.btn-blush:hover { background: var(--blush-dark); transform: translateY(-1px); }
.btn-sm { padding: 8px 18px; font-size: 12.5px; }

/* ── HERO ── */
.lp-hero {
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 88px;
  background: var(--ivory);
  overflow: hidden;
  position: relative;
}
/* 大面积留白纹理感背景装饰 */
.lp-hero__bg-blur {
  position: absolute; top: -60px; right: -60px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,160,154,0.12) 0%, transparent 68%);
  pointer-events: none;
}
.lp-hero__bg-blur2 {
  position: absolute; bottom: 0; left: -80px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,74,62,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.lp-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.lp-hero__kicker {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--sage);
  background: var(--sage-pale); border: 1px solid var(--sage-border);
  padding: 5px 13px; border-radius: var(--radius-pill);
  margin-bottom: 22px;
}
.lp-hero__title {
  font-family: "Georgia", "Times New Roman", ui-serif, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.22; letter-spacing: -0.2px;
  color: var(--ink); margin-bottom: 20px;
}
.lp-hero__title em {
  font-style: italic;
  color: var(--sage);
}
.lp-hero__desc {
  font-size: 16px; color: var(--muted); line-height: 1.78;
  margin-bottom: 34px; max-width: 460px;
  font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
}
.lp-hero__ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.lp-hero__stats {
  display: flex; flex-wrap: wrap; gap: 24px;
  border-top: 1px solid var(--line); padding-top: 26px;
}
.lp-hero__stat-num {
  font-family: "Georgia", ui-serif, serif;
  font-size: 22px; font-weight: 700; color: var(--sage); line-height: 1;
}
.lp-hero__stat-label {
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 11px; color: var(--muted); margin-top: 4px; letter-spacing: 0.2px;
}

/* Hero 视频面板 */
.lp-hero__video-wrap {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 24px 60px rgba(28,28,30,0.14);
  aspect-ratio: 16/10;
  background: var(--ink);
  border: 1px solid var(--line);
}
.lp-hero__video-wrap video,
.lp-hero__video-wrap .video-placeholder {
  width: 100%; height: 100%; object-fit: cover;
}
.video-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  background: linear-gradient(160deg, #1C1C1E 0%, #2D4A3E 100%);
  color: rgba(255,255,255,0.55); font-size: 13px;
  font-family: ui-sans-serif, sans-serif;
}
.video-placeholder__icon { font-size: 52px; }
.lp-hero__play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(247,243,238,0.15); backdrop-filter: blur(10px);
  border: 1.5px solid rgba(247,243,238,0.30);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition);
  color: white; font-size: 20px;
}
.lp-hero__play-btn:hover {
  background: var(--ivory); color: var(--sage);
  transform: translate(-50%, -50%) scale(1.08);
  border-color: var(--ivory);
}
.lp-hero__video-badge {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(28,28,30,0.65); backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.9); font-size: 11.5px;
  padding: 5px 12px; border-radius: var(--radius-pill);
  display: flex; align-items: center; gap: 6px;
  font-family: ui-sans-serif, sans-serif; letter-spacing: 0.2px;
}
.lp-hero__video-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80; animation: pulse 1.6s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

/* ── SECTION 通用 ── */
.lp-section { padding: 88px 0; }
.lp-section--alt { background: var(--ivory-dark); }
.lp-section--dark { background: var(--sage); color: var(--ivory); }
.section-kicker {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--blush-dark); margin-bottom: 12px;
}
.section-title {
  font-family: "Georgia", "Times New Roman", ui-serif, serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700; line-height: 1.22; letter-spacing: -0.1px;
  margin-bottom: 14px; color: var(--ink);
}
.lp-section--dark .section-title { color: var(--ivory); }
.section-title em {
  font-style: italic; color: var(--sage);
}
.lp-section--dark .section-title em { color: var(--blush); }
.section-desc {
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 15px; color: var(--muted); max-width: 540px; line-height: 1.76;
}
.section-header { margin-bottom: 52px; }
.section-header--center { text-align: center; }
.section-header--center .section-desc { margin: 0 auto; }

/* ── GALLERY ── */
.lp-gallery__tabs {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px;
}
.gallery-tab {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 8px 18px; border-radius: var(--radius-pill); font-size: 12.5px; font-weight: 500;
  cursor: pointer; border: 1.5px solid var(--line);
  background: var(--white); color: var(--muted);
  transition: all var(--transition); letter-spacing: 0.1px;
}
.gallery-tab.active, .gallery-tab:hover {
  background: var(--sage); color: var(--white); border-color: var(--sage);
  box-shadow: 0 2px 10px rgba(45,74,62,0.22);
}
.lp-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-card {
  background: var(--card-bg); border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}
.gallery-card__visual {
  position: relative; overflow: hidden;
}
.gallery-card__imgs {
  display: grid; grid-template-columns: 1fr 1fr;
}
.gallery-card__img-wrap {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  background: var(--ivory-dark);
}
.gallery-card__img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-card:hover .gallery-card__img-wrap img { transform: scale(1.04); }
.gallery-card__img-label {
  position: absolute; bottom: 7px; left: 7px;
  background: rgba(28,28,30,0.62); backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.92); font-size: 10px; font-weight: 500;
  padding: 3px 8px; border-radius: var(--radius-pill);
  letter-spacing: 0.2px;
  pointer-events: none; /* 允许点击穿透到下方图片 */
}
.gallery-card__arrow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--white); box-shadow: 0 2px 10px rgba(28,28,30,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--sage); z-index: 2;
  pointer-events: none; /* 允许点击穿透到下方图片，触发灯箱 */
}
.gallery-card__body { padding: 16px; }
.gallery-card__title {
  font-family: "Georgia", ui-serif, serif;
  font-weight: 700; font-size: 14px; margin-bottom: 5px; color: var(--ink);
}
.gallery-card__meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--muted); margin-bottom: 10px;
}
.gallery-card__tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 12px; }
.tag-pill {
  font-size: 11px; padding: 3px 9px; border-radius: var(--radius-pill);
  background: var(--sage-pale); color: var(--sage);
  border: 1px solid var(--sage-border);
}
.gallery-card__actions {
  display: flex; gap: 7px;
}

/* ── VIDEOS ── */
.lp-videos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.lp-videos__state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  color: var(--muted);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.65;
}
.lp-videos__state-icon {
  font-size: 40px;
  margin-bottom: 10px;
  line-height: 1;
}
.video-card {
  background: var(--card-bg); border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.video-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
}
.video-card__thumb {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
  background: linear-gradient(160deg, var(--ink) 0%, var(--sage) 100%);
  cursor: pointer;
}
.video-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-card__overlay {
  position: absolute; inset: 0;
  background: rgba(28,28,30,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.video-card:hover .video-card__overlay { background: rgba(28,28,30,0.10); }
.video-card__play {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.20); backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.45);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: white;
  transition: all var(--transition);
}
.video-card:hover .video-card__play {
  background: var(--blush); border-color: var(--blush);
  transform: scale(1.1);
}
.video-card__duration {
  position: absolute; bottom: 8px; right: 10px;
  background: rgba(28,28,30,0.65); color: white;
  font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 4px;
}
.video-card__body { padding: 16px; }
.video-card__title {
  font-family: "Georgia", ui-serif, serif;
  font-weight: 700; font-size: 14px; margin-bottom: 5px; line-height: 1.4; color: var(--ink);
}
.video-card__desc { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 12px; }
.video-card__links { display: flex; gap: 8px; flex-wrap: wrap; }

/* 「即将上线」视频占位卡 */
.video-card--coming-soon { opacity: 0.65; pointer-events: none; }
.video-card--coming-soon:hover { transform: none; box-shadow: var(--card-shadow); }
.video-card__thumb--placeholder { cursor: default; }
.video-card__overlay--muted {
  position: absolute; inset: 0;
  background: rgba(28,28,30,0.50);
  display: flex; align-items: center; justify-content: center;
}
.video-card__play-icon { font-size: 36px; opacity: 0.55; }
.video-ext-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 500;
  padding: 5px 12px; border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  color: var(--muted); background: var(--white);
  transition: all var(--transition);
}
.video-ext-link:hover { border-color: var(--blush); color: var(--sage); background: var(--blush-pale); }
.video-card__tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 10px; }

/* ── HOW IT WORKS ── */
.lp-how__steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  position: relative;
}
.lp-how__steps::before {
  content: '';
  position: absolute; top: 40px; left: calc(16.67% + 16px); right: calc(16.67% + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--sage-border) 0%, var(--blush-border) 100%);
  opacity: 0.6;
}
.how-step {
  text-align: center; position: relative;
}
.how-step__num {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  background: var(--ivory-dark);
  border: 2px solid var(--sage-border);
  position: relative; z-index: 1;
  transition: all var(--transition);
}
.how-step:hover .how-step__num {
  background: var(--sage); border-color: transparent;
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(45,74,62,0.28);
}
.how-step__title {
  font-family: "Georgia", ui-serif, serif;
  font-weight: 700; font-size: 16px; margin-bottom: 8px; color: var(--ink);
}
.how-step__desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── FEATURES ── */
.lp-features__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.feature-card {
  background: var(--card-bg); border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 26px 24px;
  box-shadow: var(--card-shadow);
  transition: all var(--transition);
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--sage-border);
  box-shadow: var(--card-shadow-hover);
}
.feature-card__icon {
  font-size: 36px; margin-bottom: 14px;
}
.feature-card__title {
  font-family: "Georgia", ui-serif, serif;
  font-weight: 700; font-size: 15px; margin-bottom: 8px; color: var(--ink);
}
.feature-card__desc { font-size: 13.5px; color: var(--muted); line-height: 1.65; }
.feature-card__badge {
  display: inline-block; margin-top: 12px;
  font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: var(--radius-pill);
  background: rgba(52,211,153,0.10); color: #047857;
  border: 1px solid rgba(52,211,153,0.18);
}

/* ── FEATURES: 设计师工作流（三阶段 + 顶栏动线）── */
.lp-features-workflow-root {
  max-width: 1100px;
  margin: 0 auto;
}
.lp-features-workflow-intro {
  text-align: center;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 720px;
  margin: 0 auto 28px;
}
.lp-fw-track {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px 12px;
  margin-bottom: 36px;
  padding: 16px 12px 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, var(--ivory-dark) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
}
.lp-fw-track__seg {
  flex: 1;
  min-width: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.lp-fw-track__dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  background: var(--sage);
  border: 2px solid rgba(255,255,255,0.85);
  box-shadow: 0 4px 14px rgba(45,74,62,0.22);
}
.lp-fw-track__cap {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  max-width: 140px;
}
.lp-fw-track__conn {
  flex: 0 0 24px;
  align-self: center;
  height: 3px;
  margin-top: 14px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--sage-border), var(--blush-border));
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 0.55;
  transition: transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}
.lp-features-workflow-root--visible .lp-fw-track__conn {
  transform: scaleX(1);
}
.lp-fw-phases {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}
.lp-fw-phase__head {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.lp-fw-phase__title {
  font-family: Georgia, ui-serif, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.3;
}
.lp-fw-phase__sub {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.lp-fw-phase__cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-fw-phase .feature-card {
  padding: 18px 16px;
}
.lp-fw-phase .feature-card__icon {
  font-size: 28px;
  margin-bottom: 10px;
}
.lp-fw-phase .feature-card__title {
  font-size: 14px;
}
.lp-fw-phase .feature-card__desc {
  font-size: 12.5px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── PRICING ── */
.lp-pricing__hero-wrap {
  margin-top: 8px;
}
.lp-pricing__free-note {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 760px;
  margin: 0 auto 22px;
}
.lp-pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
}
@media (min-width: 1080px) {
  .lp-pricing__grid--hero {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.lp-pricing__enterprise {
  margin-top: 20px;
  padding: 22px 22px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--card-shadow);
}
.lp-pricing__enterprise-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-pricing__enterprise-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.lp-pricing__enterprise-head-text {
  flex: 1;
  min-width: min(100%, 280px);
}
.lp-pricing__enterprise-title {
  font-family: Georgia, ui-serif, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.3;
}
.lp-pricing__enterprise-tagline {
  font-size: 13px;
  color: var(--sage);
  font-weight: 600;
  margin: 0;
  line-height: 1.45;
}
.lp-pricing__enterprise-cta {
  flex-shrink: 0;
  align-self: center;
}
.lp-pricing__enterprise-for {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}
.lp-pricing__enterprise-list {
  margin: 0;
  padding: 0 0 0 1.15rem;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}
.lp-pricing__enterprise-list li {
  margin-bottom: 6px;
}
.lp-pricing__enterprise-list li:last-child {
  margin-bottom: 0;
}
.lp-pricing__enterprise-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.lp-pricing__enterprise-copy strong {
  font-family: "Georgia", ui-serif, serif;
  font-size: 17px;
  color: var(--ink);
}
.lp-pricing__enterprise-sub {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .lp-pricing__enterprise-head {
    flex-direction: column;
    align-items: stretch;
  }
  .lp-pricing__enterprise-cta {
    width: 100%;
    text-align: center;
  }
}
.lp-plan-card__trial-badge,
.lp-plan__trial-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  margin: 0 0 10px;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  background: rgba(201, 149, 108, 0.16);
  color: #6b4a2d;
  border: 1px solid rgba(201, 149, 108, 0.4);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.lp-plan-card__trial-badge:hover,
.lp-plan__trial-badge:hover {
  background: rgba(201, 149, 108, 0.28);
  border-color: rgba(201, 149, 108, 0.55);
}
.lp-plan-card__per-img,
.lp-plan__per-img {
  font-size: 11px;
  font-weight: 600;
  color: var(--sage);
  margin-top: 6px;
  line-height: 1.4;
}
.lp-plan-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
}
.lp-plan-card--featured {
  border-color: var(--sage);
  box-shadow: 0 14px 36px rgba(45,74,62,0.20);
}
.lp-plan-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--sage);
  background: var(--sage-pale);
  border: 1px solid var(--sage-border);
  border-radius: var(--radius-pill);
  padding: 3px 9px;
}
.lp-plan-card__name {
  font-family: "Georgia", ui-serif, serif;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 6px;
}
.lp-plan-card__price {
  font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--sage);
  line-height: 1.15;
}
.lp-plan-card__annual,
.lp-plan-card__quota,
.lp-plan__quota {
  font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.45;
}
.lp-plan-card__for {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin: 14px 0 12px;
  min-height: 44px;
}
.lp-plan-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-plan-card__list li {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}
.lp-plan-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-ok);
  font-weight: 700;
}
.lp-pricing__addons {
  margin-top: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.lp-pricing__addons-title {
  font-family: "Georgia", ui-serif, serif;
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--ink);
}
.lp-pricing__addon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lp-pricing__addon {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--sage-border);
  background: var(--sage-pale);
  color: var(--sage);
  font-size: 12.5px;
  font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
}
.lp-pricing__rate-note {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--ink-mid);
}
.lp-pricing__rate-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.lp-pricing__rate-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--card-bg);
  color: var(--ink-mid);
  font-size: 13px;
}
.lp-pricing__rate-row strong {
  color: var(--sage);
  font-weight: 700;
}
.lp-pricing__cta {
  margin-top: 16px;
  text-align: right;
}

/* ── TESTIMONIALS ── */
.lp-testimonials__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.testimonial-card {
  background: var(--card-bg); border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 24px; box-shadow: var(--card-shadow);
  display: flex; flex-direction: column; gap: 16px;
}
.testimonial-card__quote {
  font-size: 14px; line-height: 1.72; color: var(--text);
  position: relative; padding-left: 18px;
}
.testimonial-card__quote::before {
  content: '\201C';
  position: absolute; left: 0; top: -4px;
  font-size: 36px; line-height: 1; color: var(--blush);
  font-family: Georgia, serif;
}
.testimonial-card__author {
  display: flex; align-items: center; gap: 12px; margin-top: auto;
}
.testimonial-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: white;
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 600; font-size: 14px; color: var(--ink); }
.testimonial-card__role { font-size: 12px; color: var(--muted); }
.testimonial-card__sns-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--sage); margin-top: 2px;
  transition: opacity var(--transition);
}
.testimonial-card__sns-link:hover { opacity: 0.75; }

/* ── SNS BAR ── */
.lp-sns {
  background: linear-gradient(160deg, var(--ink) 0%, var(--sage) 100%);
  padding: 60px 0;
}
.lp-sns__title {
  font-family: "Georgia", ui-serif, serif;
  font-size: 22px; font-weight: 700; color: white;
  text-align: center; margin-bottom: 10px;
}
.lp-sns__desc {
  text-align: center; font-size: 14px; color: rgba(255,255,255,0.60);
  margin-bottom: 40px;
}
.lp-sns__grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
  max-width: 840px; margin: 0 auto 40px;
}
.sns-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 18px 12px; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer; transition: all var(--transition); text-decoration: none;
}
.sns-card:hover {
  background: rgba(200,160,154,0.25); border-color: rgba(200,160,154,0.50);
  transform: translateY(-3px);
}
.sns-card__icon { font-size: 28px; }
.sns-card__label { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.75); }

/* WX QR 弹窗 */
.lp-sns__qr-hint {
  text-align: center; font-size: 13px; color: rgba(255,255,255,0.50);
}
#wechatQrModal {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(28,28,30,0.60); backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
}
#wechatQrModal.open { display: flex; }
.qr-modal-box {
  background: white; border-radius: var(--radius-lg);
  padding: 32px; max-width: 300px; width: 90%;
  text-align: center; position: relative;
}
.qr-modal-box__close {
  position: absolute; top: 12px; right: 14px;
  background: none; border: none; font-size: 22px; cursor: pointer; color: var(--muted);
}
.qr-modal-box__placeholder {
  width: 200px; height: 200px; margin: 0 auto 16px;
  background: var(--sage-pale); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 70px;
}
.qr-modal-box__title { font-family: Georgia, serif; font-weight: 700; font-size: 16px; margin-bottom: 6px; color: var(--ink); }
.qr-modal-box__desc { font-size: 13px; color: var(--muted); }

/* ── CTA SECTION ── */
.lp-cta {
  background: linear-gradient(160deg, var(--sage) 0%, #1e3a30 60%, var(--ink) 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.lp-cta::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(200,160,154,0.10);
  pointer-events: none;
}
.lp-cta__title {
  font-family: "Georgia", ui-serif, serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700; color: white; line-height: 1.2;
  margin-bottom: 14px; position: relative;
}
.lp-cta__desc {
  font-size: 16px; color: rgba(255,255,255,0.80);
  max-width: 500px; margin: 0 auto 36px; line-height: 1.7;
}
.lp-cta__form {
  display: flex; gap: 10px; max-width: 480px; margin: 0 auto 24px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  border-radius: var(--radius-pill); padding: 6px 6px 6px 20px;
  border: 1px solid rgba(255,255,255,0.22);
}
.lp-cta__input {
  flex: 1; background: none; border: none; outline: none;
  color: white; font-size: 14px; min-width: 0;
}
.lp-cta__input::placeholder { color: rgba(255,255,255,0.50); }
.lp-cta__form .btn-white {
  background: var(--ivory); color: var(--sage);
  padding: 10px 22px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 14px;
  border: none; cursor: pointer; white-space: nowrap;
  transition: all var(--transition);
}
.lp-cta__form .btn-white:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(0,0,0,0.20);
  background: white;
}
.lp-cta__methods {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 12px; color: rgba(255,255,255,0.60); flex-wrap: wrap;
}
.lp-cta__method-sep { opacity: 0.4; }
.lp-cta__or-login {
  margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.60);
}
.lp-cta__or-login a { color: rgba(255,255,255,0.90); text-decoration: underline; }

/* ── FOOTER ── */
.lp-footer {
  background: var(--ink); color: rgba(255,255,255,0.65);
  padding: 56px 0 32px;
}
.lp-footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.lp-footer__brand {
  font-family: "Georgia", ui-serif, serif;
  font-size: 20px; font-weight: 700; color: white; margin-bottom: 10px;
}
.lp-footer__tagline { font-size: 13px; line-height: 1.7; max-width: 240px; margin-bottom: 18px; }
.lp-footer__sns-row { display: flex; gap: 10px; }
.footer-sns-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer;
  transition: all var(--transition); text-decoration: none;
}
.footer-sns-icon:hover { background: rgba(200,160,154,0.28); border-color: rgba(200,160,154,0.45); }
.lp-footer__col-title {
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85); margin-bottom: 14px;
  text-transform: uppercase; letter-spacing: 0.8px;
}
.lp-footer__links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.lp-footer__links a {
  font-size: 13.5px; color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.lp-footer__links a:hover { color: var(--blush); }
.lp-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12px;
}
.lp-footer__seo-keywords {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 11px; color: rgba(255,255,255,0.20); line-height: 1.8;
}

/* ── REGISTER MODAL ── */
.reg-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(28,28,30,0.55); backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
}
.reg-modal-overlay.open { display: flex; }
.reg-modal {
  background: white; border-radius: var(--radius-lg);
  width: 90%; max-width: 440px;
  padding: 36px 32px; position: relative;
  box-shadow: 0 30px 80px rgba(28,28,30,0.30);
  animation: modalIn 0.25s cubic-bezier(0.4,0,0.2,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.reg-modal__close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; font-size: 24px; cursor: pointer; color: var(--muted);
  line-height: 1; transition: color var(--transition);
}
.reg-modal__close:hover { color: var(--text); }
.reg-modal__logo { font-size: 28px; text-align: center; margin-bottom: 8px; }
.reg-modal__title {
  font-family: "Georgia", ui-serif, serif;
  font-size: 20px; font-weight: 700; text-align: center; margin-bottom: 4px; color: var(--ink);
}
.reg-modal__subtitle { font-size: 13px; color: var(--muted); text-align: center; margin-bottom: 24px; }
.reg-modal__hint {
  font-size: 12px; color: var(--sage); font-weight: 500;
  text-align: center; background: var(--sage-pale);
  border-radius: var(--radius-sm); padding: 8px 12px; margin-bottom: 22px;
  border: 1px solid var(--sage-border);
}
.reg-form label { font-size: 13px; font-weight: 600; display: block; margin-bottom: 5px; color: var(--text); }
.reg-form input {
  width: 100%; padding: 11px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line); font-size: 14px;
  outline: none; transition: border-color var(--transition), box-shadow var(--transition);
  margin-bottom: 14px; background: var(--white); color: var(--ink);
}
.reg-form input:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(45,74,62,0.08); }
.reg-form__note {
  font-size: 12px; color: var(--muted); margin-top: -10px; margin-bottom: 14px;
  padding-left: 2px; line-height: 1.5;
}
.reg-form .btn-primary { width: 100%; justify-content: center; padding: 13px; font-size: 15px; }
.reg-modal__privacy {
  font-size: 11.5px; color: var(--muted); text-align: center;
  margin-top: 12px; line-height: 1.6;
}
.reg-modal__privacy a { color: var(--sage); text-decoration: underline; }
.reg-modal__divider {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--muted); margin: 16px 0;
}
.reg-modal__divider::before, .reg-modal__divider::after {
  content: ''; flex: 1; height: 1px; background: var(--line);
}
.reg-modal__wx-btn {
  width: 100%; padding: 11px; border-radius: var(--radius-sm);
  background: #07C160; color: white; font-weight: 600; font-size: 14px;
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all var(--transition);
}
.reg-modal__wx-btn:hover { background: #06a050; }
.reg-modal__wx-privacy {
  font-size: 11px; color: var(--muted); text-align: center;
  margin-top: 8px; line-height: 1.5;
}
.reg-modal__wx-privacy a { color: var(--sage); text-decoration: underline; }
.reg-modal__login { text-align: center; font-size: 13px; color: var(--muted); margin-top: 16px; }
.reg-modal__login a { color: var(--sage); font-weight: 600; }

/* ── VIDEO LIGHTBOX ── */
.video-lightbox {
  display: none; position: fixed; inset: 0; z-index: 250;
  background: rgba(0,0,0,0.88); backdrop-filter: blur(10px);
  align-items: center; justify-content: center;
}
.video-lightbox.open { display: flex; }
.video-lightbox__wrap {
  position: relative; width: 90%; max-width: 900px;
  aspect-ratio: 16/9;
}
.video-lightbox__iframe {
  width: 100%; height: 100%; border-radius: var(--radius-lg); border: none;
}
.video-lightbox__close {
  position: absolute; top: -40px; right: 0;
  background: none; border: none; color: white; font-size: 28px; cursor: pointer;
  transition: opacity var(--transition);
}
.video-lightbox__close:hover { opacity: 0.7; }
.video-lightbox__local {
  width: 100%; height: 100%; border-radius: var(--radius-lg); outline: none;
}

/* ── IMAGE LIGHTBOX ── */
.img-lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 260;
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(14px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  animation: imgLbFadeIn 0.22s ease;
}
.img-lightbox.open { display: flex; }
@keyframes imgLbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* 关闭按钮 */
.img-lightbox__close {
  position: fixed; top: 18px; right: 22px; z-index: 10;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: none;
  color: #fff; font-size: 22px; line-height: 1;
  cursor: pointer; transition: background 0.18s;
  display: flex; align-items: center; justify-content: center;
}
.img-lightbox__close:hover { background: rgba(255,255,255,0.26); }

/* 左右翻页按钮 */
.img-lightbox__nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 48px; height: 64px;
  background: rgba(255,255,255,0.10); border: none;
  color: #fff; font-size: 36px; line-height: 1;
  cursor: pointer; border-radius: 8px;
  transition: background 0.18s, opacity 0.18s;
  display: flex; align-items: center; justify-content: center;
}
.img-lightbox__nav:hover { background: rgba(255,255,255,0.22); }
.img-lightbox__nav--prev { left: 12px; }
.img-lightbox__nav--next { right: 12px; }
.img-lightbox__nav[disabled] { opacity: 0.2; pointer-events: none; }

/* 主图区 */
.img-lightbox__stage {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  width: 100%; min-height: 0;
  padding: 56px 80px 12px;
  box-sizing: border-box;
}
.img-lightbox__stage img {
  max-width: 100%; max-height: calc(100vh - 180px);
  object-fit: contain; border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  transition: opacity 0.18s, transform 0.18s;
  cursor: zoom-in;
  display: block;
}
.img-lightbox__stage img.zoomed {
  cursor: zoom-out;
  transform: scale(1.7);
  transform-origin: var(--zoom-ox, 50%) var(--zoom-oy, 50%);
}
.img-lightbox__caption {
  margin-top: 12px; font-size: 13px;
  color: rgba(255,255,255,0.55); text-align: center;
  min-height: 20px;
}

/* 缩略图条 */
.img-lightbox__strip {
  display: flex; gap: 8px; padding: 10px 16px 20px;
  overflow-x: auto; max-width: 100%;
  scrollbar-width: none;
}
.img-lightbox__strip::-webkit-scrollbar { display: none; }
.img-lightbox__strip-thumb {
  flex-shrink: 0; width: 56px; height: 56px;
  border-radius: 6px; overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer; opacity: 0.55;
  transition: opacity 0.18s, border-color 0.18s;
}
.img-lightbox__strip-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.img-lightbox__strip-thumb:hover { opacity: 0.85; }
.img-lightbox__strip-thumb.active {
  border-color: var(--blush);
  opacity: 1;
}

/* Gallery 卡片图片可点击 */
.gallery-card__img-wrap img { cursor: zoom-in; }
/* Mosaic 图片可点击 */
.lp-mosaic__item img { cursor: zoom-in; }
/* BA 滑块图片可点击 */
.ba-slider__img { cursor: zoom-in; }

@media (max-width: 640px) {
  .img-lightbox__stage { padding: 52px 48px 8px; }
  .img-lightbox__nav { width: 36px; font-size: 26px; }
  .img-lightbox__nav--prev { left: 4px; }
  .img-lightbox__nav--next { right: 4px; }
}

/* ── BG STYLE SWITCHER ── */
.bg-switcher {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; align-items: center;
}
.bg-switcher__label { font-size: 13px; color: var(--muted); margin-right: 4px; }
.bg-chip {
  padding: 6px 14px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 500;
  cursor: pointer; border: 1.5px solid var(--line);
  background: var(--white); color: var(--muted);
  transition: all var(--transition);
}
.bg-chip.active, .bg-chip:hover {
  border-color: var(--sage); color: var(--sage); background: var(--sage-pale);
}

/* ── TOAST ── */
.lp-toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: white; padding: 12px 22px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 500; z-index: 400;
  opacity: 0; transition: all 0.3s ease; pointer-events: none; white-space: nowrap;
}
.lp-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.lp-wechat-pay-modal {
  position: fixed; inset: 0; z-index: 500;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.lp-wechat-pay-modal[hidden] { display: none !important; }
.lp-wechat-pay-modal__backdrop {
  position: absolute; inset: 0; background: rgba(28, 28, 30, 0.45);
}
.lp-wechat-pay-modal__box {
  position: relative; z-index: 1;
  max-width: 340px; width: 100%;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 24px 22px 20px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
  text-align: center;
}
.lp-wechat-pay-modal__close {
  position: absolute; top: 10px; right: 12px;
  width: 36px; height: 36px; border: none; border-radius: var(--radius-sm);
  background: transparent; font-size: 22px; line-height: 1; cursor: pointer;
  color: var(--muted);
}
.lp-wechat-pay-modal__close:hover { color: var(--ink); background: var(--cream); }
.lp-wechat-pay-modal__title {
  font-family: Georgia, ui-serif, serif;
  font-weight: 700; font-size: 18px; margin: 0 0 14px; color: var(--ink);
}
.lp-wechat-pay-modal__qr-wrap {
  display: flex; justify-content: center; margin-bottom: 12px;
}
.lp-wechat-pay-modal__qr {
  width: min(240px, 72vw); height: auto; border-radius: 8px;
  border: 1px solid var(--line);
}
.lp-wechat-pay-modal__amount {
  font-size: 15px; font-weight: 700; color: var(--sage); margin: 0 0 10px;
}
.lp-wechat-pay-modal__hint {
  font-size: 12px; color: var(--muted); margin: 0; line-height: 1.5;
}

/* ── RESPONSIVE ── */
/* ── Reviews CTA ── */
.lp-reviews-cta {
  text-align: center;
  margin-top: 48px;
  padding: 36px 24px;
  border-radius: var(--radius-xl);
  background: var(--sage-pale);
  border: 1px solid var(--sage-border);
}
.lp-reviews-cta__sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Nav: 联系独立页精简顶栏 ── */
.lp-nav--contact-slim .lp-nav__inner {
  justify-content: space-between;
}
.lp-nav__contact-slim-mid {
  flex: 1;
  display: flex;
  justify-content: center;
}
.lp-nav__back-home {
  font-size: 13px;
  font-weight: 600;
  color: var(--sage);
  padding: 7px 16px;
  border-radius: var(--radius-sm);
}
.lp-nav__back-home:hover {
  background: var(--sage-pale);
}
.lp-nav__ctas--solo-lang {
  min-width: 72px;
  justify-content: flex-end;
}

/* ── 首页联系浮窗 ── */
.contact-modal-box {
  max-width: 560px;
  width: calc(100% - 32px);
  max-height: min(90vh, 860px);
  overflow-y: auto;
}
.lp-contact-modal-form {
  text-align: left;
}

/* ── Contact page ── */
.lp-contact-page {
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 72px;
  min-height: 70vh;
}
.lp-contact__card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px 28px 36px;
  box-shadow: var(--card-shadow);
}
.lp-contact__card h1 {
  font-family: Georgia, ui-serif, serif;
  font-size: 1.75rem;
  margin-bottom: 8px;
  color: var(--ink);
}
.lp-contact__lead {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.lp-contact__qr-hint {
  font-size: 12px;
  color: var(--muted);
  margin: -12px 0 20px;
  line-height: 1.55;
  padding: 10px 12px;
  background: var(--sage-pale);
  border-radius: var(--radius-sm);
  border: 1px solid var(--sage-border);
}
.lp-form__row { margin-bottom: 16px; }
.lp-form__row label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-mid);
  margin-bottom: 6px;
}
.lp-form__row input,
.lp-form__row select,
.lp-form__row textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-size: 14px;
  background: var(--white);
}
.lp-form__row textarea { min-height: 72px; resize: vertical; }
.lp-form__privacy {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
  margin: 20px 0 12px;
  padding: 14px;
  background: var(--ivory-dark);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}
.lp-form__privacy strong {
  display: block;
  font-size: 12.5px;
  color: var(--ink);
  margin-bottom: 6px;
}
.lp-form__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-mid);
  margin-bottom: 20px;
}
.lp-form__check input { width: auto; margin-top: 3px; }
.lp-contact__success {
  text-align: center;
  padding: 24px 8px 8px;
}
.lp-contact__success h2 {
  font-family: Georgia, ui-serif, serif;
  font-size: 1.5rem;
  color: var(--sage);
  margin-bottom: 12px;
}
.lp-contact__success p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .lp-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .lp-features__grid { grid-template-columns: repeat(2, 1fr); }
  .lp-fw-phases { grid-template-columns: 1fr; gap: 32px; }
  .lp-fw-track { flex-wrap: wrap; justify-content: center; margin-bottom: 28px; }
  .lp-fw-track__conn { flex: 1 1 40%; max-width: 120px; margin-top: 18px; order: unset; }
  .lp-pricing__grid:not(.lp-pricing__grid--hero) { grid-template-columns: repeat(2, 1fr); }
  .lp-pricing__grid--hero { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp-sns__grid { grid-template-columns: repeat(3, 1fr); }
  .lp-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .lp-hero__inner { grid-template-columns: 1fr; }
  .lp-how__steps { grid-template-columns: 1fr; }
  .lp-how__steps::before { display: none; }
  .lp-videos__grid { grid-template-columns: 1fr; }
  .lp-gallery__grid { grid-template-columns: 1fr; }
  .lp-features__grid { grid-template-columns: 1fr; }
  .lp-fw-track { display: none; }
  .lp-features-workflow-intro { font-size: 14px; margin-bottom: 22px; }
  .lp-pricing__grid:not(.lp-pricing__grid--hero) { grid-template-columns: 1fr; }
  .lp-pricing__grid--hero { grid-template-columns: 1fr; }
  .lp-pricing__cta { text-align: left; }
  .lp-pricing__rate-list { grid-template-columns: 1fr; }
  .lp-testimonials__grid { grid-template-columns: 1fr; }
  .lp-sns__grid { grid-template-columns: repeat(3, 1fr); }
  .lp-footer__grid { grid-template-columns: 1fr; }
  .lp-nav__links { display: none; }
}
@media (max-width: 480px) {
  .lp-hero { padding-top: calc(var(--nav-h) + 36px); padding-bottom: 48px; }
  .lp-section { padding: 52px 0; }
  .lp-cta__form { flex-direction: column; border-radius: var(--radius-lg); padding: 14px; }
  .lp-cta__input { padding: 4px 0; }
  .lp-cta__form .btn-white { border-radius: var(--radius-sm); }
}

/* ================================================================
   ✦ MOTION & ANIMATION SYSTEM
   参考: Bloom&Wild scroll-reveal / Linear.app entrance animations
   ================================================================ */

/* ── Scroll Reveal (JS 动态加 .revealed 类) ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1),
              transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
/* 交错延迟 */
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.42s; }
.reveal-delay-5 { transition-delay: 0.54s; }

/* ── Hero 视差图片 ── */
.lp-hero__photo-reel {
  position: relative; overflow: hidden;
  border-radius: var(--radius-xl);
  aspect-ratio: 4/5;
  box-shadow: 0 24px 64px rgba(28,28,30,0.22);
}
.lp-hero__photo-reel img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.lp-hero__photo-reel img.active { opacity: 1; }
.lp-hero__photo-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 10;
}
.lp-hero__photo-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.45); transition: all 0.3s ease;
  cursor: pointer;
}
.lp-hero__photo-dot.active {
  background: white; width: 18px; border-radius: 3px;
}
/* 浮动徽章 */
.lp-hero__badge-float {
  position: absolute; z-index: 10;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 6px 24px rgba(28,28,30,0.12);
  animation: floatBadge 3.5s ease-in-out infinite;
}
.lp-hero__badge-float:nth-child(2) { animation-delay: 1.2s; }
.lp-hero__badge-float--tl { top: 18px; left: -24px; }
.lp-hero__badge-float--br { bottom: 60px; right: -24px; }
.lp-hero__badge-float__icon { font-size: 22px; }
.lp-hero__badge-float__text strong { display: block; font-size: 13px; font-weight: 700; color: var(--ink); }
.lp-hero__badge-float__text span { font-size: 11px; color: var(--muted); }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── 无限滚动 Ticker ── */
.lp-ticker {
  background: var(--sage); color: white;
  padding: 11px 0; overflow: hidden;
  white-space: nowrap;
}
.lp-ticker__track {
  display: inline-flex; gap: 0;
  animation: ticker 28s linear infinite;
}
.lp-ticker__track:hover { animation-play-state: paused; }
.lp-ticker__item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 28px; font-size: 13px; font-weight: 500;
  letter-spacing: 0.1px; opacity: 0.90;
}
.lp-ticker__item::after {
  content: '✦'; font-size: 9px; opacity: 0.55; margin-left: 28px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── 数字计数器 ── */
.stat-num {
  font-family: "Georgia", ui-serif, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700; color: var(--sage);
  line-height: 1;
  display: inline-block;
}
.lp-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; margin: 48px 0;
}
.lp-stat {
  background: var(--white);
  padding: 32px 24px; text-align: center;
}
.lp-stat__label {
  font-size: 12.5px; color: var(--muted); margin-top: 6px; letter-spacing: 0.2px;
}

/* ── Before / After 交互式 Slider ── */
.lp-demo-section {
  background: var(--ivory-dark); padding: 80px 0;
}
.lp-demo__title-area { text-align: center; margin-bottom: 48px; }
.lp-demo__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; align-items: start;
}
.lp-demo__left { position: relative; }
.lp-demo__right {
  display: flex; flex-direction: column; gap: 20px; justify-content: center;
}
/* Slider 组件 */
.ba-slider {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 1/1;
  cursor: ew-resize;
  user-select: none;
  box-shadow: 0 16px 48px rgba(28,28,30,0.18);
}
.ba-slider__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.ba-slider__img--after {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.02s linear;
}
.ba-slider__divider {
  position: absolute; top: 0; bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 3px; background: white;
  display: flex; align-items: center; justify-content: center;
  z-index: 10; pointer-events: none;
}
.ba-slider__handle {
  width: 40px; height: 40px; border-radius: 50%;
  background: white; box-shadow: 0 2px 14px rgba(28,28,30,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; position: relative; z-index: 11; color: var(--sage);
}
.ba-slider__label {
  position: absolute; bottom: 12px;
  background: rgba(28,28,30,0.65); backdrop-filter: blur(6px);
  color: white; font-size: 11px; font-weight: 500;
  padding: 4px 10px; border-radius: var(--radius-pill); z-index: 5;
}
.ba-slider__label--left  { left: 12px; }
.ba-slider__label--right { right: 12px; }
/* 缩略图选择器 */
.ba-thumbs {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.ba-thumb {
  width: 72px; height: 72px; border-radius: var(--radius-sm);
  overflow: hidden; cursor: pointer;
  border: 2.5px solid transparent;
  transition: all var(--transition);
  flex-shrink: 0;
}
.ba-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ba-thumb.active { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(45,74,62,0.18); }
.ba-thumb:hover:not(.active) { border-color: var(--blush); }
/* 右侧说明 */
.lp-demo__feature {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 20px; border-radius: var(--radius-md);
  background: var(--white); border: 1px solid var(--line);
  transition: all var(--transition); cursor: pointer;
}
.lp-demo__feature:hover { border-color: var(--sage-border); box-shadow: var(--card-shadow); }
.lp-demo__feature.active { border-color: var(--sage); background: var(--sage-pale); }
.lp-demo__feature__icon { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.lp-demo__feature__title {
  font-family: "Georgia", ui-serif, serif;
  font-weight: 700; font-size: 14.5px; color: var(--ink); margin-bottom: 4px;
}
.lp-demo__feature__desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.lp-demo__cta {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: 8px;
}

/* ── 无需注册即可体验的提示标签 ── */
.try-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; color: var(--sage);
  background: var(--sage-pale); border: 1px solid var(--sage-border);
  padding: 5px 12px; border-radius: var(--radius-pill);
}

/* ── 图片网格 Masonry-like 展示 ── */
.lp-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 8px; border-radius: var(--radius-lg); overflow: hidden;
}
.lp-mosaic__item {
  overflow: hidden; position: relative; cursor: pointer;
}
.lp-mosaic__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s ease;
}
.lp-mosaic__item:hover img { transform: scale(1.06); }
.lp-mosaic__item--tall {
  grid-row: span 2;
}
.lp-mosaic__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,28,30,0.55) 0%, transparent 50%);
  opacity: 0; transition: opacity var(--transition);
}
.lp-mosaic__item:hover .lp-mosaic__overlay { opacity: 1; }

/* ── Hero 统计区（行内版） ── */
.lp-hero__stats {
  display: flex; gap: 24px; flex-wrap: wrap; margin-top: 28px;
}
.lp-hero__stat { text-align: left; }
.lp-hero__stat__num {
  font-family: "Georgia", ui-serif, serif;
  font-size: 22px; font-weight: 700; color: var(--sage); line-height: 1;
}
.lp-hero__stat__label { font-size: 11.5px; color: var(--muted); margin-top: 2px; }

/* ── 动效 Responsive ── */
@media (max-width: 768px) {
  .lp-demo__grid { grid-template-columns: 1fr; }
  .lp-stats { grid-template-columns: repeat(2, 1fr); }
  .lp-hero__badge-float--tl { left: 6px; top: 10px; }
  .lp-hero__badge-float--br { right: 6px; bottom: 52px; }
  .lp-mosaic { grid-template-rows: repeat(2, 140px); }
}
@media (max-width: 480px) {
  .lp-mosaic { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 130px); }
  .lp-mosaic__item--tall { grid-row: span 2; }
  .lp-stats { grid-template-columns: repeat(2, 1fr); }
  .ba-thumbs { gap: 7px; }
  .ba-thumb { width: 58px; height: 58px; }
}


/* ═══════════════════════════════════════════════════════════════════
   SHARE PAGE  lp/share.html
   ═══════════════════════════════════════════════════════════════════ */

/* ── 页面布局 ── */
.lp-share-body { background: var(--cream); min-height: 100vh; }
.lp-share-page {
  max-width: 720px;
  padding: 32px 16px 64px;
}

/* ── 加载 / 错误状态 ──
   [hidden] 的浏览器默认 display:none 会被下方 .lp-share-loading 的 display:flex
   覆盖（同特异性时作者样式优先生效），导致「已 hidden 仍占屏」与错误区同现。 */
.lp-share-page [hidden] {
  display: none !important;
}

/* ── 加载 / 错误状态 ── */
.lp-share-loading {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  min-height: 40vh; gap: 18px;
  color: var(--muted); font-size: 15px;
}
.lp-share-loading__spinner {
  width: 40px; height: 40px; border-radius: 50%;
  border: 3px solid var(--sage-pale);
  border-top-color: var(--sage);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.lp-share-error {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  min-height: 40vh; gap: 16px; text-align: center; padding: 32px;
}
.lp-share-error__icon { font-size: 48px; line-height: 1; }
.lp-share-error h2 { font-size: 22px; color: var(--ink); }
.lp-share-error p  { color: var(--muted); font-size: 15px; max-width: 360px; }

/* ── Before / After 滑动对比 ── */
.lp-share-hero { margin-bottom: 28px; }

.lp-ba-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 4 / 3;
  user-select: none;
  -webkit-user-select: none;
  cursor: col-resize;
  box-shadow: 0 8px 32px rgba(28,28,30,0.18);
}

.lp-ba-slider__track { position: absolute; inset: 0; }

.lp-ba-slider__pane {
  position: absolute; inset: 0;
}
.lp-ba-slider__pane--after {
  clip-path: inset(0 0 0 50%);
  transition: clip-path 0s;
}

.lp-ba-slider__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.lp-ba-slider__img--placeholder {
  object-fit: contain;
  background: var(--sage-pale);
}

/* 标签 */
.lp-ba-label {
  position: absolute; bottom: 12px;
  background: rgba(28,28,30,0.62);
  color: white; font-size: 12px; font-weight: 600;
  padding: 4px 10px; border-radius: var(--radius-sm);
  pointer-events: none;
  backdrop-filter: blur(6px);
}
.lp-ba-label--before { left: 12px; }
.lp-ba-label--after  { right: 12px; }

/* 手柄 */
.lp-ba-slider__handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 44px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  cursor: col-resize;
  z-index: 10;
}
.lp-ba-slider__handle-line {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; margin-left: -1px;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 0 6px rgba(0,0,0,0.4);
}
.lp-ba-slider__handle-knob {
  width: 38px; height: 38px; border-radius: 50%;
  background: white;
  box-shadow: 0 2px 12px rgba(28,28,30,0.30);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  color: var(--sage);
  transition: transform 0.15s, box-shadow 0.15s;
}
.lp-ba-slider__handle:hover .lp-ba-slider__handle-knob,
.lp-ba-slider__handle:focus .lp-ba-slider__handle-knob {
  transform: scale(1.12);
  box-shadow: 0 4px 18px rgba(28,28,30,0.22);
}
.lp-ba-slider__handle:focus { outline: none; }
.lp-ba-slider__handle:focus-visible .lp-ba-slider__handle-knob {
  outline: 3px solid var(--sage); outline-offset: 2px;
}

/* 拖动提示 */
.lp-ba-hint {
  text-align: center; font-size: 12px;
  color: var(--muted); margin: 10px 0 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

/* ── 作品信息 ── */
.lp-share-info {
  display: flex; flex-direction: column; gap: 20px;
}
.lp-share-info__tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.lp-share-info__title {
  font-family: "Georgia", ui-serif, serif;
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 700; line-height: 1.25;
  color: var(--ink); margin: 4px 0 0;
}
.lp-share-info__meta {
  display: flex; gap: 14px; flex-wrap: wrap;
  font-size: 14px; color: var(--muted);
}
.lp-share-info__designer::before { content: "🎨 "; }
.lp-share-info__style::before    { content: "🏷 "; }

/* ── CTA 按钮行 ── */
.lp-share-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.lp-share-cta__try  { flex: 1 1 180px; }
.lp-share-cta__copy { flex: 0 1 auto; }

/* ── 社媒分享 ── */
.lp-share-social {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.lp-share-social__label {
  font-size: 13px; color: var(--muted); white-space: nowrap;
}
.lp-share-social__btns {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.lp-share-social__btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600;
  border: 1.5px solid var(--line);
  background: var(--card-bg);
  color: var(--ink-mid);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
}
.lp-share-social__btn:hover { transform: translateY(-1px); box-shadow: var(--card-shadow); }

.lp-share-social__btn--wechat { border-color: #07c160; color: #07c160; }
.lp-share-social__btn--wechat:hover { background: #07c160; color: white; }

.lp-share-social__btn--xhs { border-color: #fe2c55; color: #fe2c55; }
.lp-share-social__btn--xhs:hover { background: #fe2c55; color: white; }

.lp-share-social__btn--ig { border-color: #e1306c; color: #e1306c; }
.lp-share-social__btn--ig:hover { background: linear-gradient(135deg,#fd5949,#d6249f,#285AEB); color: white; border-color: transparent; }

.lp-share-social__btn--pin { border-color: #e60023; color: #e60023; }
.lp-share-social__btn--pin:hover { background: #e60023; color: white; }

/* 微信提示气泡 */
.lp-share-wechat-tip {
  width: 100%;
  background: var(--sage-pale);
  border: 1px solid var(--sage-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 14px; color: var(--sage);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  animation: fadeIn 0.2s ease;
}
.lp-share-wechat-tip__close {
  background: none; border: none; cursor: pointer;
  color: var(--sage); font-size: 16px; line-height: 1;
  padding: 0 4px;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* ── 平台推广条 ── */
.lp-share-promo {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-top: 8px;
}
.lp-share-promo__inner {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.lp-share-promo__icon { font-size: 32px; flex-shrink: 0; }
.lp-share-promo__text { flex: 1; min-width: 180px; }
.lp-share-promo__headline {
  color: white; font-weight: 700; font-size: 15px; margin-bottom: 4px;
}
.lp-share-promo__sub {
  color: rgba(255,255,255,0.75); font-size: 13px;
}
.lp-share-promo__cta {
  background: white !important; color: var(--sage) !important;
  border-color: white !important; white-space: nowrap; flex-shrink: 0;
}
.lp-share-promo__cta:hover {
  background: var(--sage-pale) !important;
}

/* ── 相关作品 ── */
.lp-share-related { margin-top: 40px; }
.lp-share-related__title {
  font-size: 18px; font-weight: 700; margin-bottom: 16px; color: var(--ink);
}
.lp-share-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.lp-share-related__card {
  text-decoration: none; color: inherit;
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card-bg);
  transition: transform var(--transition), box-shadow var(--transition);
  display: block;
}
.lp-share-related__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
}
.lp-share-related__thumb {
  aspect-ratio: 1; overflow: hidden;
  background: var(--sage-pale);
}
.lp-share-related__thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.lp-share-related__label {
  padding: 8px 10px; font-size: 12px;
  font-weight: 600; color: var(--ink-mid);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ── 响应式 ── */
@media (max-width: 480px) {
  .lp-share-page { padding: 20px 12px 48px; }
  .lp-ba-slider  { aspect-ratio: 3 / 4; border-radius: var(--radius-md); }
  .lp-share-related__grid { grid-template-columns: repeat(2, 1fr); }
  .lp-share-promo__inner  { flex-direction: column; text-align: center; }
  .lp-share-cta { flex-direction: column; }
  .lp-share-cta__try, .lp-share-cta__copy { width: 100%; text-align: center; }
}


/* ═══════════════════════════════════════════════════════════════════
   SHARE PAGE v2  —  三段式体验页 & 创作者分享弹窗
   ═══════════════════════════════════════════════════════════════════ */

/* ── 步骤进度条 ── */
.lp-share-steps-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 28px;
}
.lp-share-steps-bar__item {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  min-width: 80px;
}
.lp-share-steps-bar__num {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  background: var(--line); color: var(--muted);
  border: 2px solid var(--line);
  transition: all 0.3s;
}
.lp-share-steps-bar__label {
  font-size: 11px; color: var(--muted);
  white-space: nowrap; transition: color 0.3s;
}
.lp-share-steps-bar__line {
  flex: 1; height: 2px;
  background: var(--line); margin-bottom: 17px;
  min-width: 24px;
}
.lp-share-steps-bar__item--active .lp-share-steps-bar__num {
  background: var(--sage); color: white; border-color: var(--sage);
}
.lp-share-steps-bar__item--active .lp-share-steps-bar__label { color: var(--sage); font-weight: 600; }
.lp-share-steps-bar__item--done .lp-share-steps-bar__num {
  background: var(--sage-pale); color: var(--sage); border-color: var(--sage-mid);
}
.lp-share-steps-bar__item--done .lp-share-steps-bar__label { color: var(--sage-mid); }

/* ── 步骤容器 ── */
.lp-share-step { display: flex; flex-direction: column; gap: 24px; }

/* ── 进入体验 CTA ── */
.lp-share-next-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 8px 0 4px;
}
.lp-share-next-btn { min-width: 240px; font-size: 16px; padding: 14px 32px; }
.lp-share-next-btn--disabled,
.lp-share-next-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  filter: grayscale(0.15);
}
.lp-share-next-hint { font-size: 12px; color: var(--muted); }
.lp-share-trial-exhausted {
  font-size: 13px; color: var(--muted);
  text-align: center;
  max-width: 360px;
  margin: 0;
  line-height: 1.5;
}

/* ── 平台价值条（分享页 Step1） ── */
.lp-share-platform { margin-bottom: 8px; }
.lp-share-platform__inner {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px;
  padding: 16px 18px;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
}
.lp-share-platform__icon { font-size: 28px; line-height: 1; flex-shrink: 0; }
.lp-share-platform__text { flex: 1 1 200px; min-width: 0; }
.lp-share-platform__kicker {
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 4px;
}
.lp-share-platform__tagline {
  font-size: 14px; color: var(--ink-mid); line-height: 1.55; margin: 0;
}
.lp-share-platform__link { flex-shrink: 0; white-space: nowrap; }

/* ── 提示词 / BOM 折叠区 ── */
.lp-share-details {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0 14px 12px;
}
.lp-share-details__summary {
  font-size: 14px; font-weight: 600; color: var(--sage);
  cursor: pointer;
  padding: 12px 0 8px;
  list-style: none;
}
.lp-share-details__summary::-webkit-details-marker { display: none; }
.lp-share-details__summary::before {
  content: "▸"; display: inline-block; margin-right: 8px;
  transition: transform 0.2s;
  color: var(--muted);
}
.lp-share-details[open] .lp-share-details__summary::before { transform: rotate(90deg); }
.lp-share-prompt {
  font-size: 14px; color: var(--ink-mid); line-height: 1.65;
  margin: 0 0 4px; padding-left: 4px;
  white-space: pre-wrap; word-break: break-word;
}
.lp-share-bom-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.lp-share-bom {
  width: 100%; border-collapse: collapse;
  font-size: 13px; font-family: ui-sans-serif, system-ui, sans-serif;
}
.lp-share-bom th {
  text-align: left; font-weight: 600; color: var(--muted);
  padding: 8px 10px 8px 4px; border-bottom: 1px solid var(--line);
}
.lp-share-bom td {
  padding: 10px 10px 10px 4px; border-bottom: 1px solid rgba(28,28,30,0.06);
  vertical-align: top;
}
.lp-share-bom tr:last-child td { border-bottom: none; }
.lp-share-bom__qty { text-align: right; white-space: nowrap; color: var(--ink); font-variant-numeric: tabular-nums; }
.lp-share-bom__empty { color: var(--muted); font-style: italic; text-align: center; padding: 16px 8px !important; }

/* ── 双 CTA ── */
.lp-share-cta-row {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: stretch; justify-content: center;
  width: 100%; max-width: 520px;
}
.lp-share-cta-register {
  min-width: 140px; text-align: center; padding: 12px 22px;
  display: inline-flex; align-items: center; justify-content: center;
}
.lp-share-cta-register--solo {
  flex: 1 1 100%; max-width: 320px;
}

/* ── 试验区标题 ── */
.lp-trial-header { text-align: center; }
.lp-trial-header__title {
  font-family: "Georgia", ui-serif, serif;
  font-size: clamp(20px, 4vw, 26px); font-weight: 700;
  color: var(--ink); margin-bottom: 8px;
}
.lp-trial-header__sub { font-size: 14px; color: var(--muted); max-width: 480px; margin: 0 auto; line-height: 1.6; }
.lp-trial-header__sub strong { color: var(--sage); }

/* ── 上传格 ── */
.lp-trial-upload-zone {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.lp-trial-slot {
  position: relative; cursor: pointer;
  border: 2px dashed var(--line);
  border-radius: var(--radius-lg);
  aspect-ratio: 1; overflow: hidden;
  background: var(--cream);
  transition: border-color 0.2s, background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.lp-trial-slot:hover,
.lp-trial-slot:focus-within { border-color: var(--sage); background: var(--sage-pale); }
.lp-trial-slot__input {
  position: absolute; inset: 0; opacity: 0;
  width: 100%; height: 100%; cursor: pointer; z-index: 2;
}
.lp-trial-slot__placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  pointer-events: none;
}
.lp-trial-slot__icon { font-size: 28px; }
.lp-trial-slot__label { font-size: 12px; color: var(--muted); }
.lp-trial-slot__num {
  position: absolute; top: 8px; left: 8px;
  background: var(--sage); color: white;
  font-size: 11px; font-weight: 700;
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.lp-trial-slot--optional .lp-trial-slot__icon { color: var(--muted); }
.lp-trial-slot__preview {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0; z-index: 1;
}
.lp-trial-slot__remove {
  position: absolute; top: 6px; right: 6px; z-index: 3;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(28,28,30,0.65); color: white; border: none;
  cursor: pointer; font-size: 11px;
  display: flex; align-items: center; justify-content: center;
}
.lp-trial-upload-hint { text-align: center; font-size: 12px; color: var(--muted); }

/* ── 生成按钮区 ── */
.lp-trial-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.lp-trial-generate-btn { min-width: 200px; font-size: 15px; padding: 13px 28px; }
.lp-trial-back-btn { padding: 13px 20px; }
.lp-trial-generate-btn:disabled {
  opacity: 0.5; cursor: not-allowed;
  filter: grayscale(0.3);
}

/* ── AI 处理中动画 ── */
.lp-trial-processing {
  display: flex; flex-direction: column; align-items: center;
  gap: 20px; padding: 32px 0;
}
.lp-trial-processing__anim {
  position: relative; width: 72px; height: 72px;
}
.lp-trial-processing__ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 4px solid var(--sage-pale);
  border-top-color: var(--sage);
  animation: spin 0.9s linear infinite;
}
.lp-trial-processing__icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.12); } }
.lp-trial-processing__title {
  font-size: 16px; font-weight: 600; color: var(--ink); min-height: 1.4em;
}
.lp-trial-processing__steps {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center;
  font-size: 12px; color: var(--muted);
}
.lp-trial-proc-step { padding: 3px 10px; border-radius: var(--radius-pill); background: var(--line); }
.lp-trial-proc-step--done { background: var(--sage-pale); color: var(--sage); font-weight: 600; }
.lp-trial-proc-sep { color: var(--sage-light); font-weight: 700; }

/* ── 结果页 ── */
.lp-result-header { text-align: center; }
.lp-result-header__badge {
  display: inline-block;
  background: var(--sage-pale); color: var(--sage);
  font-size: 12px; font-weight: 700;
  padding: 4px 14px; border-radius: var(--radius-pill);
  margin-bottom: 10px;
}
.lp-result-header__title {
  font-family: "Georgia", ui-serif, serif;
  font-size: clamp(22px, 5vw, 30px); font-weight: 700;
  color: var(--ink); margin-bottom: 6px;
}
.lp-result-header__sub { font-size: 14px; color: var(--muted); }

/* 结果图展示 */
.lp-result-display { display: flex; flex-direction: column; gap: 16px; }
.lp-result-img-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 8px 32px rgba(28,28,30,0.15);
}
.lp-result-img { width: 100%; display: block; }
.lp-result-img--placeholder {
  object-fit: contain;
  background: var(--ivory-dark);
  min-height: 220px;
}
.lp-result-img-overlay {
  position: absolute; top: 12px; right: 12px;
  background: rgba(28,28,30,0.55);
  backdrop-filter: blur(6px);
  color: white; font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: var(--radius-sm);
  pointer-events: none;
}

/* 参考图缩略展示（下方小图） */
.lp-result-refs {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap;
}
.lp-result-ref-thumb {
  width: 60px; height: 60px; object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid var(--line);
}
.lp-result-ref-sep, .lp-result-ref-arrow {
  font-size: 18px; color: var(--sage); font-weight: 700;
}

/* 注册转化盒 */
.lp-result-cta-box {
  background: linear-gradient(135deg, #f7f3ef 0%, var(--sage-pale) 100%);
  border: 1.5px solid var(--sage-border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 16px;
}
.lp-result-cta-box__title {
  font-family: "Georgia", ui-serif, serif;
  font-size: 20px; font-weight: 700; color: var(--ink); margin: 0;
}
.lp-result-cta-box__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.lp-result-cta-box__list li { font-size: 14px; color: var(--ink-mid); }
.lp-result-cta-box__btns {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.lp-result-cta-box__primary  { flex: 1 1 180px; text-align: center; text-decoration: none; }
.lp-result-cta-box__secondary { flex: 0 1 auto; text-decoration: none; }
.lp-result-cta-box__trial-note {
  font-size: 12px; color: var(--muted); text-align: center; margin: 0;
}

/* 再分享行 */
.lp-result-reshare {
  display: flex; flex-direction: column; gap: 10px; align-items: center;
}
.lp-result-reshare__label { font-size: 13px; color: var(--muted); }


/* ═══════════════════════════════════════════════════════════════════
   创作者分享弹窗  #lpShareModal
   ═══════════════════════════════════════════════════════════════════ */
.lp-share-modal-backdrop {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(28,28,30,0.55);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  animation: fadeIn 0.18s ease;
}
.lp-share-modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  width: 100%; max-width: 400px;
  box-shadow: 0 24px 64px rgba(28,28,30,0.22);
  display: flex; flex-direction: column; gap: 18px;
  animation: slideUp 0.22s ease;
}
@keyframes slideUp { from { transform: translateY(12px); opacity: 0; } to { transform: none; opacity: 1; } }

.lp-share-modal__header {
  display: flex; align-items: center; justify-content: space-between;
}
.lp-share-modal__title {
  font-size: 17px; font-weight: 700; color: var(--ink); margin: 0;
}
.lp-share-modal__close {
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 18px; line-height: 1;
  padding: 4px 6px; border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.lp-share-modal__close:hover { color: var(--ink); background: var(--cream); }

.lp-share-modal__work-title {
  font-size: 13px; color: var(--muted); margin: -10px 0 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* 二维码区 */
.lp-share-modal__qr-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 16px;
  background: var(--sage-pale);
  border-radius: var(--radius-lg);
}
.lp-share-modal__qr {
  width: 160px; height: 160px;
  border-radius: var(--radius-md);
  background: white;
  display: block;
}
.lp-share-modal__qr-err { font-size: 13px; color: var(--muted); text-align: center; }
.lp-share-modal__qr-hint { font-size: 12px; color: var(--sage); font-weight: 600; }
.lp-share-modal__qr-dl {
  font-size: 12px; color: var(--sage);
  text-decoration: underline; text-underline-offset: 2px;
}
.lp-share-modal__qr-dl:hover { color: var(--sage-mid); }

/* URL 输入 + 复制 */
.lp-share-modal__url-row {
  display: flex; gap: 8px;
}
.lp-share-modal__url-input {
  flex: 1; font-size: 12px; color: var(--ink-mid);
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 8px 12px;
  cursor: text; min-width: 0;
}
.lp-share-modal__copy-btn { flex-shrink: 0; padding: 8px 18px; font-size: 13px; }

/* 社媒 */
.lp-share-modal__sns {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.lp-share-modal__sns-label { font-size: 12px; color: var(--muted); white-space: nowrap; }

/* ── 响应式补丁 ── */
@media (max-width: 480px) {
  .lp-trial-upload-zone { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .lp-trial-actions { flex-direction: column; }
  .lp-trial-generate-btn, .lp-trial-back-btn { width: 100%; }
  .lp-result-cta-box__btns { flex-direction: column; }
  .lp-result-cta-box__primary, .lp-result-cta-box__secondary { text-align: center; }
  .lp-share-steps-bar__label { font-size: 10px; }
}


/* ═══════════════════════════════════════════════════════════════════
   CHECKOUT PAGE  lp/checkout.html  &  SUCCESS PAGE  lp/success.html
   ═══════════════════════════════════════════════════════════════════ */

/* ── 页面基础 ── */
.lp-checkout-body { background: var(--cream); }

/* ── 双栏布局 ── */
.lp-checkout {
  padding: 82px 16px 64px;
  max-width: 960px;
}
.lp-checkout__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

/* ── 试用横幅 ── */
.lp-checkout__trial-banner {
  display: flex; align-items: center; gap: 10px;
  background: var(--sage-pale);
  border: 1px solid var(--sage-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 14px; color: var(--sage); font-weight: 600;
  margin-bottom: 4px;
}
.lp-checkout__trial-icon { font-size: 20px; }

/* ── Section 块 ── */
.lp-checkout__section {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
}
.lp-checkout__section--terms {
  padding: 16px 24px;
  background: var(--cream);
  border-color: var(--line);
}
.lp-checkout__section-title {
  font-size: 16px; font-weight: 700; color: var(--ink);
  margin: 0 0 18px; display: flex; align-items: center; gap: 10px;
}
.lp-checkout__section-num {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--sage); color: white;
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.lp-checkout-plan-overview {
  border: 2px solid var(--sage-border);
  border-radius: var(--radius-md);
  padding: 4px 4px 2px;
  background: var(--sage-pale);
}
.lp-checkout-plan-overview__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(45, 74, 62, 0.12);
}
.lp-checkout-plan-overview__row:last-child { border-bottom: none; }
.lp-checkout-plan-overview__label { color: var(--muted); flex-shrink: 0; }
.lp-checkout-plan-overview__value {
  font-weight: 700;
  color: var(--ink);
  text-align: right;
  line-height: 1.35;
}

/* ── 支付 Tabs ── */
.lp-pay-tabs {
  display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap;
}
.lp-pay-tab {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--line);
  background: var(--cream); color: var(--ink-mid);
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: all 0.18s;
}
.lp-pay-tab img { width: 18px; height: 18px; object-fit: contain; }
.lp-pay-tab:hover { border-color: var(--sage); color: var(--sage); background: var(--sage-pale); }
.lp-pay-tab--active {
  border-color: var(--sage); background: var(--sage); color: white;
}
.lp-pay-tab--active:hover { background: var(--sage-mid); }

/* ── 支付面板 ── */
.lp-pay-panel { animation: fadeIn 0.18s ease; }

/* ── 二维码面板（支付宝 / 微信） ── */
.lp-qr-panel {
  display: flex; gap: 24px; align-items: flex-start; flex-wrap: wrap;
}
.lp-qr-panel__qr-wrap {
  width: 160px; height: 160px; flex-shrink: 0;
  border: 2px solid var(--line); border-radius: var(--radius-md);
  overflow: hidden; background: white;
  display: flex; align-items: center; justify-content: center;
}
.lp-qr-panel__qr { width: 100%; height: 100%; object-fit: contain; display: block; }
.lp-qr-panel__placeholder {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; padding: 12px; text-align: center;
}
.lp-qr-panel__placeholder-icon { font-size: 32px; }

/* 微信「即将开通」占位 */
.lp-qr-panel__qr-wrap--coming {
  background: linear-gradient(135deg, #e8f5e8 0%, #f0faf0 100%);
  border-color: #a8d5a8;
}
.lp-qr-panel__coming { text-align: center; padding: 12px; }
.lp-qr-panel__coming-icon { font-size: 32px; margin-bottom: 8px; }
.lp-qr-panel__coming-title { font-size: 13px; font-weight: 700; color: #2e7d32; }
.lp-qr-panel__coming-sub  { font-size: 11px; color: #558b57; margin-top: 4px; line-height: 1.5; }

.lp-qr-panel__info { flex: 1; min-width: 180px; display: flex; flex-direction: column; gap: 10px; }
.lp-qr-panel__brand {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 700; color: var(--ink);
}
.lp-qr-panel__brand-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.lp-qr-panel__brand-dot--alipay { background: #1677ff; }
.lp-qr-panel__brand-dot--wechat { background: #07c160; }
.lp-qr-panel__instruction { font-size: 13px; color: var(--muted); line-height: 1.6; }
.lp-qr-panel__amount-tag {
  display: inline-block;
  background: var(--sage-pale); color: var(--sage);
  font-size: 14px; font-weight: 700;
  padding: 6px 14px; border-radius: var(--radius-pill);
}
.lp-qr-panel__confirm-btn { width: 100%; }
.lp-qr-panel__note { font-size: 11px; color: var(--muted); }

/* ── Stripe 信用卡 ── */
.lp-card-form { display: flex; flex-direction: column; gap: 4px; }
.lp-stripe-element {
  border: 1.5px solid var(--line); border-radius: var(--radius-md);
  padding: 13px 14px; background: white;
  transition: border-color 0.2s;
  min-height: 48px;
  display: flex; align-items: center; gap: 10px;
}
.lp-stripe-element:focus-within { border-color: var(--sage); }
.lp-stripe-placeholder { display: flex; align-items: center; gap: 10px; width: 100%; }
.lp-stripe-error {
  color: #C0392B; font-size: 13px; padding: 4px 2px;
}
.lp-card-form__submit-wrap { margin-top: 8px; }
.lp-card-form__submit { width: 100%; font-size: 16px; padding: 14px; position: relative; }
.lp-card-form__spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: white;
  animation: spin 0.8s linear infinite;
  position: absolute; right: 20px; top: 50%; margin-top: -9px;
}
.lp-stripe-trust {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 12px; color: var(--muted); justify-content: center;
  margin-top: 6px;
}

/* ── 右栏：订单摘要 ── */
.lp-checkout__right { position: sticky; top: 80px; }
.lp-order-summary {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex; flex-direction: column; gap: 16px;
}
.lp-order-summary__title {
  font-size: 16px; font-weight: 700; color: var(--ink); margin: 0;
}
.lp-order-summary__plan-name {
  display: flex; align-items: center; gap: 8px;
  font-size: 18px; font-weight: 800; color: var(--ink); margin-bottom: 10px;
}
.lp-order-summary__plan-tag {
  font-size: 11px; background: var(--sage); color: white;
  padding: 2px 8px; border-radius: var(--radius-pill);
}
.lp-order-summary__plan-features {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.lp-order-summary__plan-features li {
  font-size: 13px; color: var(--muted); padding-left: 14px; position: relative;
}
.lp-order-summary__plan-features li::before {
  content: "✓"; position: absolute; left: 0; color: var(--sage); font-weight: 700;
}
.lp-order-summary__divider { border: none; border-top: 1px solid var(--line); margin: 0; }
.lp-order-summary__pricing { display: flex; flex-direction: column; gap: 8px; }
.lp-order-summary__row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; color: var(--muted);
}
.lp-order-summary__total {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 15px; font-weight: 700; color: var(--ink);
}
.lp-order-summary__total-amount {
  font-size: 28px; font-weight: 800; color: var(--sage);
}
.lp-order-summary__total-note {
  font-size: 11px; color: var(--muted); margin: -8px 0 0; text-align: right;
}
.lp-order-summary__pay-btn { width: 100%; font-size: 16px; padding: 14px; }
.lp-order-summary__trust {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 7px;
}
.lp-order-summary__trust li { font-size: 13px; color: var(--muted); }

/* ── 支付成功页 ── */
.lp-success {
  max-width: 560px; padding: 48px 16px 80px;
}
.lp-success__card {
  background: white; border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  padding: 40px 32px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  text-align: center;
}
.lp-success__icon { margin-bottom: 4px; }

/* SVG 打勾动画 */
.lp-success__check-circle {
  stroke: var(--sage); stroke-width: 2;
  stroke-dasharray: 166; stroke-dashoffset: 166;
  animation: dash-circle 0.6s ease forwards 0.2s;
}
.lp-success__check-mark {
  stroke: var(--sage); stroke-width: 3;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 48; stroke-dashoffset: 48;
  animation: dash-check 0.4s ease forwards 0.8s;
}
@keyframes dash-circle { to { stroke-dashoffset: 0; } }
@keyframes dash-check  { to { stroke-dashoffset: 0; } }

.lp-success__title { font-size: 26px; font-weight: 800; color: var(--ink); margin: 0; }
.lp-success__plan  { font-size: 14px; color: var(--sage); font-weight: 600; margin: -12px 0 0; }
.lp-success__lead  { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 400px; }

.lp-success__steps { width: 100%; text-align: left; }
.lp-success__steps-title { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.lp-success__steps-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 16px;
}
.lp-success__steps-list li {
  display: flex; gap: 14px; align-items: flex-start;
}
.lp-success__step-num {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--sage); color: white;
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.lp-success__steps-list li strong { font-size: 14px; color: var(--ink); }
.lp-success__steps-list li p     { font-size: 13px; color: var(--muted); margin: 3px 0 0; }

.lp-success__btns {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; width: 100%;
}
.lp-success__btn-main { min-width: 160px; }
.lp-success__footer-note { font-size: 12px; color: var(--muted); }

/* ── 响应式 ── */
@media (max-width: 700px) {
  .lp-checkout__layout {
    grid-template-columns: 1fr;
  }
  .lp-checkout__right { position: static; }
  /* 右栏摘要移到左栏下方 */
  .lp-checkout__right { order: -1; }
  .lp-qr-panel { flex-direction: column; align-items: center; }
  .lp-qr-panel__info { width: 100%; }
  .lp-success__card { padding: 28px 20px; }
  .lp-success__btns { flex-direction: column; }
}
