/* ============================================
   Judy 个人招募网站 · 样式
   北欧极简 · 鼠尾草绿 · 赭石棕 · 雾霾蓝
   ============================================ */

:root {
  --c-green-deep: #2C3A35;
  --c-green: #5B7B6E;
  --c-green-soft: #8FA89C;
  --c-green-bg: #E8EDE9;
  --c-clay: #C27B58;
  --c-blue: #7B94A8;

  --c-bg: #F8F5F0;
  --c-bg-soft: #F0EBE0;
  --c-line: #E5DFD3;
  --c-text: #2C3A35;
  --c-text-soft: #6B6F6B;
  --c-text-mute: #9CA39B;
  --c-white: #FFFFFF;

  --f-serif: "Noto Serif SC", "Source Han Serif SC", "PingFang SC", serif;
  --f-sans: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", -apple-system, sans-serif;
  --f-num: "Inter", -apple-system, sans-serif;

  --space-section: 88px;
  --container: 1080px;
  --container-narrow: 760px;
  --radius: 16px;
  --radius-sm: 10px;
  --nav-height: 64px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-text);
  background: var(--c-bg);
  font-weight: 300;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-weight: 500; line-height: 1.4; color: var(--c-text); margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
strong { font-weight: 500; color: var(--c-green); }
.serif-accent { font-family: var(--f-serif); font-weight: 500; color: var(--c-green); font-style: italic; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: var(--container-narrow); }

/* ============ 导航栏 ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-height);
  background: rgba(248, 245, 240, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--c-line);
}
.navbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  font-family: var(--f-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--c-green);
  letter-spacing: 0.5px;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.navbar-links a {
  font-size: 14px;
  color: var(--c-text);
  font-weight: 400;
  transition: color 0.2s;
}
.navbar-links a:hover { color: var(--c-green); }
.navbar-cta {
  background: var(--c-green);
  color: var(--c-white) !important;
  padding: 9px 20px;
  border-radius: 20px;
  font-weight: 500 !important;
  transition: background 0.2s;
}
.navbar-cta:hover { background: var(--c-green-deep); }

/* 分享按钮：次要 CTA，低调不抢眼 */
.navbar-share {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--c-line);
  color: var(--c-text);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.navbar-share:hover {
  background: var(--c-green-soft);
  border-color: var(--c-green);
  color: var(--c-green);
}
.navbar-share svg { flex-shrink: 0; }

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.navbar-toggle span {
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 1px;
  transition: all 0.3s;
}

/* ============ 通用 section ============ */
.section { padding: var(--space-section) 0; position: relative; }
.section.light { background: var(--c-bg-soft); }

.section-head { margin-bottom: 40px; }
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--c-clay);
  letter-spacing: 2px;
  margin-bottom: 14px;
  padding-left: 16px;
  position: relative;
}
.section-tag::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 10px; height: 1px;
  background: var(--c-clay);
}
.section-tag.light-tag { color: var(--c-green-soft); }
.section-tag.light-tag::before { background: var(--c-green-soft); }
.section-title {
  font-family: var(--f-serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.35;
  margin-bottom: 16px;
}
.section-title.light-title { color: var(--c-white); }
.section-subtitle {
  font-size: 15px;
  color: var(--c-text-soft);
  line-height: 1.7;
}
.why-me .section-subtitle { color: rgba(255, 255, 255, 0.72); }
.big-num { font-family: var(--f-num); font-weight: 500; color: var(--c-clay); font-size: 1.1em; }

/* ============ ① Hero ============ */
.hero {
  padding: calc(var(--nav-height) + 72px) 0 72px;
  background: linear-gradient(180deg, var(--c-bg) 0%, #FCF9F2 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.hero-photo {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(91, 123, 110, 0.18);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-tag {
  display: inline-block;
  font-size: 12px;
  color: var(--c-clay);
  font-weight: 500;
  letter-spacing: 1px;
  padding: 6px 14px;
  background: rgba(194, 123, 88, 0.1);
  border-radius: 20px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.hero-title {
  font-family: var(--f-serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 18px;
}
.hero-subtitle {
  font-size: 15px;
  color: var(--c-text-soft);
  margin-bottom: 28px;
  font-weight: 400;
}
.btn-primary {
  display: inline-block;
  background: var(--c-green);
  color: var(--c-white);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 34px;
  border-radius: 28px;
  letter-spacing: 1px;
  transition: all 0.25s;
  box-shadow: 0 8px 24px rgba(91, 123, 110, 0.22);
}
.btn-primary:hover {
  background: var(--c-green-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(91, 123, 110, 0.28);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--c-line);
}
.stat-num {
  font-family: var(--f-num);
  font-size: 26px;
  font-weight: 500;
  color: var(--c-green);
  line-height: 1.1;
}
.stat-unit { font-size: 14px; color: var(--c-text-soft); font-weight: 400; margin-left: 2px; }
.stat-label { font-size: 12px; color: var(--c-text-soft); margin-top: 6px; line-height: 1.5; }

/* ============ ② 关于我 ============ */
.bio-lead {
  font-size: 17px;
  line-height: 1.9;
  color: var(--c-text);
  margin: 0 0 48px;
  padding: 26px 30px;
  background: var(--c-green-bg);
  border-radius: var(--radius);
  border-left: 3px solid var(--c-green);
}
.bio-h3 {
  font-family: var(--f-serif);
  font-size: 20px;
  font-weight: 500;
  margin: 44px 0 14px;
  color: var(--c-green);
}
.bio-note { color: var(--c-text-soft); font-size: 14px; margin-bottom: 28px; }

/* 时间轴 */
.timeline { position: relative; margin: 28px 0 40px; padding: 20px 0; }
.timeline-axis {
  position: absolute;
  top: 70px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: var(--c-green);
  opacity: 0.35;
}
.timeline-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.timeline-item { text-align: center; }
.timeline-dot {
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--c-green);
  margin: 0 auto 14px;
  box-shadow: 0 0 0 4px var(--c-bg), 0 0 0 5px var(--c-green);
  position: relative;
  z-index: 1;
}
.timeline-month {
  font-family: var(--f-num);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-clay);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.timeline-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  padding: 18px 14px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.timeline-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(91, 123, 110, 0.12); }
.timeline-role { font-family: var(--f-serif); font-size: 15px; font-weight: 500; margin-bottom: 6px; }
.timeline-team { font-size: 13px; color: var(--c-green); font-weight: 500; margin-bottom: 5px; }
.timeline-sub { font-size: 12px; color: var(--c-text-mute); line-height: 1.5; }

.bio-line { font-size: 15px; color: var(--c-text-soft); line-height: 1.85; margin: 12px 0; }
.bio-line strong { color: var(--c-green); }

.bio-list { margin: 14px 0; }
.bio-list li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: 15px;
  color: var(--c-text-soft);
  line-height: 1.7;
}
.bio-list li::before {
  content: "";
  position: absolute;
  left: 8px; top: 19px;
  width: 8px; height: 1px;
  background: var(--c-clay);
}

.method-box {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 30px 26px;
  margin: 14px 0 28px;
}
.method-name {
  font-family: var(--f-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--c-green);
  margin-bottom: 18px;
  text-align: center;
}
.method-chain {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.method-step {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text);
  padding: 5px 12px;
  background: var(--c-green-bg);
  border-radius: 16px;
}
.method-step--last { background: var(--c-clay); color: var(--c-white); }
.method-arrow { color: var(--c-text-mute); font-size: 13px; }
.method-note { text-align: center; font-size: 13px; color: var(--c-text-soft); }

.bio-credentials li {
  position: relative;
  padding: 11px 0 11px 26px;
  font-size: 15px;
  color: var(--c-text);
  line-height: 1.7;
  border-bottom: 1px dashed var(--c-line);
}
.bio-credentials li:last-child { border-bottom: none; }
.bio-credentials li::before {
  content: "·";
  position: absolute;
  left: 8px; top: 8px;
  font-size: 22px;
  color: var(--c-clay);
  line-height: 1.4;
}

/* ============ ③ 你的时刻 ============ */
.moment-list { margin: 0 0 32px; }
.moment-list li {
  position: relative;
  padding: 17px 20px 17px 52px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-text);
  background: var(--c-white);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(91, 123, 110, 0.04);
}
.moment-list li::before {
  content: "";
  position: absolute;
  left: 22px; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 1px;
  background: var(--c-clay);
}
.moment-close {
  font-family: var(--f-serif);
  font-size: 20px;
  text-align: left;
  color: var(--c-text);
  margin-top: 24px;
  line-height: 1.7;
}

/* ============ ④ 为什么是健康美丽 ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0 0 44px;
}
.why-item {
  background: var(--c-white);
  border-radius: var(--radius-sm);
  padding: 26px 22px;
  border: 1px solid var(--c-line);
  transition: all 0.3s;
}
.why-item:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(91, 123, 110, 0.08); }
.why-num {
  font-family: var(--f-num);
  font-size: 12px;
  font-weight: 500;
  color: var(--c-clay);
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.why-item h3 { font-family: var(--f-serif); font-size: 17px; margin-bottom: 8px; }
.why-item p { font-size: 13px; color: var(--c-text-soft); }

.do-dont {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 0;
}
.do-block, .dont-block { padding: 26px 22px; border-radius: var(--radius); }
.do-block { background: #FAEEDA; border: 1px solid #EFD0AA; }
.dont-block { background: var(--c-green-bg); border: 1px solid var(--c-green-soft); }
.do-dont-label {
  font-family: var(--f-serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-clay);
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.dont-block .do-dont-label { color: var(--c-green); }
.do-block ul li, .dont-block ul li {
  position: relative;
  padding: 6px 0 6px 20px;
  font-size: 14px;
  color: var(--c-text);
}
.do-block ul li::before {
  content: "×";
  position: absolute;
  left: 0; top: 6px;
  color: var(--c-clay);
  font-weight: 500;
}
.dont-block ul li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 5px;
  color: var(--c-green);
  font-weight: 500;
}

/* ============ ⑤ 路径四步 ============ */
.path-steps { margin: 0 0 24px; }
.path-step {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 26px 28px;
  border: 1px solid var(--c-line);
  transition: all 0.3s;
}
.path-step:hover { border-color: var(--c-green-soft); transform: translateY(-2px); }
.path-num {
  font-family: var(--f-num);
  font-size: 12px;
  font-weight: 500;
  color: var(--c-clay);
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.path-step h3 { font-family: var(--f-serif); font-size: 20px; margin-bottom: 8px; }
.path-step h3 .serif-accent { font-style: normal; }
.path-step p { font-size: 13px; color: var(--c-text-soft); }
.path-arrow { text-align: center; font-size: 16px; color: var(--c-green-soft); margin: 10px 0; }
.path-close { font-size: 15px; text-align: left; color: var(--c-text-soft); margin-top: 16px; line-height: 1.85; }
.path-close strong { color: var(--c-green); }

/* ============ ⑥ 三层收益 ============ */
.gain-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin: 0 0 28px; }
.gain-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: all 0.3s;
}
.gain-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(91, 123, 110, 0.08); }
.gain-card--highlight { background: var(--c-green-bg); border-color: var(--c-green-soft); }
.gain-num {
  font-family: var(--f-serif);
  font-size: 30px;
  font-weight: 500;
  color: var(--c-clay);
  margin-bottom: 8px;
  line-height: 1;
}
.gain-card h3 {
  font-family: var(--f-serif);
  font-size: 19px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gain-tag {
  font-size: 11px;
  color: var(--c-clay);
  background: rgba(194, 123, 88, 0.15);
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 500;
}
.gain-card p { font-size: 14px; color: var(--c-text-soft); line-height: 1.8; margin-bottom: 8px; }
.gain-card p:last-child { margin-bottom: 0; }
.gain-card strong { color: var(--c-green); }

.light-banner {
  margin-top: 24px;
  padding: 18px 20px;
  background: var(--c-white);
  border-radius: var(--radius);
  border: 1px dashed var(--c-green-soft);
}
.light-banner strong {
  color: var(--c-green);
  font-family: var(--f-serif);
  font-size: 15px;
  letter-spacing: 1px;
  margin-right: 8px;
}
.light-banner span { color: var(--c-text-soft); font-size: 13px; }

/* ============ ⑦ 适合谁来 ============ */
.audience-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.audience-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: all 0.3s;
}
.audience-card:hover { transform: translateY(-3px); border-color: var(--c-green-soft); box-shadow: 0 12px 28px rgba(91, 123, 110, 0.08); }
.audience-icon {
  display: inline-block;
  font-family: var(--f-num);
  font-size: 12px;
  font-weight: 500;
  color: var(--c-clay);
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.audience-card h3 { font-family: var(--f-serif); font-size: 17px; margin-bottom: 10px; }
.audience-state { font-size: 14px; color: var(--c-text); margin-bottom: 8px; }
.audience-block {
  font-size: 13px;
  color: var(--c-clay);
  padding: 8px 12px;
  background: rgba(194, 123, 88, 0.08);
  border-radius: 6px;
  margin-bottom: 8px;
  border-left: 2px solid var(--c-clay);
}
.audience-give { font-size: 14px; color: var(--c-green); }

/* ============ ⑧ 为什么跟我做 ============ */
.why-me { background: var(--c-green-deep); color: var(--c-white); }
.why-me .group-title {
  font-family: var(--f-serif);
  font-size: 20px;
  color: var(--c-white);
  margin-bottom: 18px;
}
.why-me .group-sub { font-size: 14px; color: rgba(255, 255, 255, 0.6); margin-bottom: 28px; }

.awards-group, .cases-group, .lecture-group, .group-group, .sunset-group { margin-bottom: 72px; }
.awards-group:last-child, .cases-group:last-child, .lecture-group:last-child, .group-group:last-child, .sunset-group:last-child { margin-bottom: 0; }

.awards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.award-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s;
}
.award-card:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, 0.16); }
.award-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.award-caption { padding: 18px 20px; }
.award-name { font-family: var(--f-serif); font-size: 17px; font-weight: 500; color: var(--c-white); margin-bottom: 4px; }
.award-title { font-size: 13px; color: rgba(255, 255, 255, 0.7); margin-bottom: 8px; }
.award-tag {
  display: inline-block;
  font-size: 11px;
  color: var(--c-clay);
  background: rgba(194, 123, 88, 0.18);
  padding: 3px 10px;
  border-radius: 10px;
}

.cases-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.case-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s;
}
.case-card:hover { transform: translateY(-3px); border-color: rgba(255, 255, 255, 0.16); }
.case-photo {
  width: 110px; height: 110px;
  border-radius: 50%;
  margin: 0 auto 14px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.15);
}
.case-photo img { width: 100%; height: 100%; object-fit: cover; }
.case-name { font-family: var(--f-serif); font-size: 19px; font-weight: 500; color: var(--c-white); margin-bottom: 6px; }
.case-achievement { font-size: 14px; color: rgba(255, 255, 255, 0.75); line-height: 1.6; }
.case-achievement .big-num { color: var(--c-clay); }

.lecture-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.lecture-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #000;
}
.lecture-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 100%;
}
.lecture-text { display: flex; flex-direction: column; justify-content: center; padding: 6px 0; }
.lecture-text p { font-size: 15px; line-height: 1.85; color: rgba(255, 255, 255, 0.85); margin-bottom: 8px; }
.lecture-text strong { color: var(--c-clay); }

.group-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 22px;
  background: #4A5751;
}
.group-img-mosaic {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  filter: blur(3px);
  transform: scale(1.03);
}
.mosaic-caption {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.35);
  padding: 5px 14px;
  border-radius: 12px;
  white-space: nowrap;
}
.group-text { text-align: left; font-size: 15px; color: rgba(255, 255, 255, 0.85); line-height: 1.85; }
.group-text strong { color: var(--c-clay); }

.sunset-img {
  width: 100%;
  aspect-ratio: 3/4;
  max-width: 400px;
  margin: 0 0 22px;
  border-radius: var(--radius);
  overflow: hidden;
}
.sunset-img img { width: 100%; height: 100%; object-fit: cover; }
.sunset-quote {
  font-family: var(--f-serif);
  font-size: 17px;
  color: var(--c-white);
  line-height: 1.85;
}

/* ============ ⑨ 怎么开始 ============ */
.start-reassure {
  background: var(--c-green-bg);
  border-left: 3px solid var(--c-green);
  padding: 22px 26px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--c-text);
  line-height: 1.85;
  margin-bottom: 40px;
}
.start-reassure strong { color: var(--c-green); font-family: var(--f-serif); font-size: 16px; margin-right: 6px; }

.start-steps { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 28px; }
.start-step {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
  transition: all 0.3s;
}
.start-step:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(91, 123, 110, 0.08); }
.start-num {
  position: absolute;
  top: 22px; right: 22px;
  font-family: var(--f-serif);
  font-size: 30px;
  font-weight: 500;
  color: var(--c-clay);
  opacity: 0.5;
  line-height: 1;
}
.start-step h3 { font-family: var(--f-serif); font-size: 19px; margin-bottom: 12px; padding-right: 36px; }
.start-step p { font-size: 14px; color: var(--c-text-soft); line-height: 1.8; margin-bottom: 8px; }
.start-step p:last-of-type { margin-bottom: 16px; }
.start-step strong { color: var(--c-green); }
.start-price {
  display: inline-block;
  font-size: 13px;
  color: var(--c-clay);
  background: rgba(194, 123, 88, 0.1);
  padding: 6px 14px;
  border-radius: 16px;
  font-weight: 500;
}

.start-aside {
  background: linear-gradient(135deg, #FAEEDA 0%, #F0E0CC 100%);
  border-radius: var(--radius);
  padding: 30px 26px;
  margin: 28px 0;
  border: 1px solid #E8C9A8;
}
.start-aside h3 { font-family: var(--f-serif); font-size: 17px; color: var(--c-clay); margin-bottom: 12px; }
.start-aside p { font-size: 15px; color: var(--c-text); line-height: 1.85; margin-bottom: 8px; }
.start-emphasis {
  font-family: var(--f-serif);
  font-size: 17px !important;
  font-weight: 500 !important;
  color: var(--c-clay) !important;
  background: var(--c-white);
  padding: 12px 16px;
  border-radius: 8px;
  margin: 12px 0 !important;
  text-align: center;
}
.start-close { text-align: left; font-size: 16px; color: var(--c-text-soft); margin-top: 24px; line-height: 1.85; }
.start-close strong { color: var(--c-green); font-family: var(--f-serif); font-size: 17px; }

/* ============ ⑩ CTA ============ */
.cta { background: var(--c-green); color: var(--c-white); }
.cta .section-title { color: var(--c-white); }
.cta .section-head { text-align: center; }
.cta-sub { font-size: 15px; color: rgba(255, 255, 255, 0.8); margin: 12px auto 0; text-align: center; }
.qr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 560px;
  margin: 40px auto 0;
}
.qr-card {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  color: var(--c-text);
  transition: all 0.3s;
}
.qr-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12); }
.qr-img {
  width: 150px; height: 150px;
  margin: 0 auto 14px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--c-bg);
  padding: 8px;
}
.qr-img img { width: 100%; height: 100%; object-fit: contain; }
.qr-name { font-family: var(--f-serif); font-size: 15px; font-weight: 500; color: var(--c-green); margin-bottom: 6px; }
.qr-note { font-size: 13px; color: var(--c-text-soft); }
.qr-note strong { color: var(--c-clay); }

/* ============ ⑩ CTA · 两条路 ============ */
.qr-grid.dual-path {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 720px;
  margin: 40px auto 0;
  align-items: stretch;
}
.qr-card-emphasis {
  border: 2px solid var(--c-white);
  background: linear-gradient(180deg, #FAFCFA 0%, #F4F8F2 100%);
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.qr-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 14px;
  background: var(--c-bg-soft, #F4EFE6);
  color: var(--c-text-soft);
  margin-bottom: 14px;
  font-weight: 500;
}
.qr-tag-primary {
  background: var(--c-green);
  color: #fff;
}
.qr-or {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  letter-spacing: 2px;
  padding: 4px 0;
}
.qr-or::before, .qr-or::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  vertical-align: middle;
  margin: 0 12px;
}
/* 长图（Oriflame 官方码 1280x2498）适配 */
.qr-img-tall {
  width: 200px;
  height: 380px;
  background: transparent;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.cta-foot {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin: 32px auto 0;
  max-width: 520px;
  line-height: 1.7;
}
.cta-foot strong {
  color: #fff;
  font-weight: 500;
}

/* 桌面端：双路径并排，"或" 居中竖排 */
@media (min-width: 768px) {
  .qr-grid.dual-path {
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
  }
  .qr-or {
    writing-mode: vertical-rl;
    text-orientation: upright;
    padding: 0 4px;
  }
  .qr-or::before, .qr-or::after {
    width: 1px;
    height: 24px;
    margin: 12px 0;
  }
}

/* ============ ⑪ Footer ============ */
.footer {
  background: var(--c-green-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 52px 0 24px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-name { font-family: var(--f-serif); font-size: 18px; font-weight: 500; color: var(--c-white); margin-bottom: 8px; }
.footer-brand p { line-height: 1.7; }
.footer-col h4 { font-size: 13px; font-weight: 500; color: var(--c-white); letter-spacing: 1px; margin-bottom: 12px; }
.footer-col ul li { padding: 4px 0; }
.footer-bottom { padding-top: 20px; text-align: center; font-size: 12px; color: rgba(255, 255, 255, 0.4); }

/* ============ 滚动揭示 ============ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============ 响应式 - 桌面 ============ */
@media (min-width: 768px) {
  :root { --space-section: 120px; }
  .hero { padding: calc(var(--nav-height) + 96px) 0 96px; }
  .hero-grid { grid-template-columns: 320px 1fr; gap: 56px; }
  .hero-photo { max-width: 100%; margin: 0; }
  .hero-title { font-size: 40px; }
  .section-title { font-size: 38px; }
  .why-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .audience-card:last-child { grid-column: span 2; }
  .lecture-block { grid-template-columns: 5fr 6fr; gap: 28px; padding: 24px; }
  .footer-grid { grid-template-columns: 2fr 1fr; }
  .gain-grid { grid-template-columns: 1fr 1.2fr 1fr; gap: 18px; }
  .start-steps { grid-template-columns: 1fr 1fr; gap: 18px; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 46px; }
  .section-title { font-size: 42px; }
  .audience-card:last-child { grid-column: auto; }
  .audience-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============ 移动端导航 ============ */
@media (max-width: 767px) {
  .navbar-toggle { display: flex; }
  .navbar-links {
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--c-bg);
    border-bottom: 1px solid var(--c-line);
    padding: 8px 24px 20px;
    display: none;
  }
  .navbar-links.open { display: flex; }
  .navbar-links a {
    padding: 14px 0;
    font-size: 16px;
    width: 100%;
    border-bottom: 1px solid var(--c-line);
  }
  .navbar-links a:last-child { border-bottom: none; }
  .navbar-cta { margin-top: 12px; text-align: center; border-radius: 24px; }
  .navbar-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .navbar-toggle.open span:nth-child(2) { opacity: 0; }
  .navbar-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ============ 分享按钮 toast 提示 ============ */
.toast {
  position: fixed;
  left: 50%;
  bottom: 80px;
  transform: translate(-50%, 16px);
  background: rgba(44, 58, 53, 0.95);
  color: #fff;
  padding: 12px 22px;
  border-radius: 24px;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 200;
  max-width: calc(100vw - 32px);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ============ 移动端：分享按钮在展开菜单里的样式 ============ */
@media (max-width: 768px) {
  /* 移动端：让分享按钮的视觉风格和菜单项一致（无边框、左对齐、全宽） */
  .navbar-share {
    border: none;
    background: transparent;
    padding: 14px 0;
    font-size: 16px;
    justify-content: flex-start;
    width: 100%;
    border-radius: 0;
    color: var(--c-text);
  }
  .navbar-share:hover {
    background: transparent;
    color: var(--c-green);
  }
  .navbar-share .share-label { display: inline; }
  /* 菜单项之间都有分割线，最后一个没有 */
  .navbar-links > * {
    padding: 14px 0;
    border-bottom: 1px solid var(--c-line);
  }
  .navbar-links > *:last-child { border-bottom: none; }
}

/* ============ 分享弹层 ============ */
.share-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.share-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.share-modal-mask {
  position: absolute;
  inset: 0;
  background: rgba(28, 36, 32, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.share-modal-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px 28px;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.25s ease;
}
.share-modal.is-open .share-modal-card {
  transform: translateY(0) scale(1);
}
.share-modal-card h3 {
  font-family: var(--f-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--c-text);
  margin-bottom: 8px;
  text-align: center;
}
.share-modal-hint {
  font-size: 13px;
  color: var(--c-text-soft);
  text-align: center;
  margin-bottom: 18px;
  line-height: 1.5;
}
.share-modal-url {
  background: var(--c-bg-soft, #F4EFE6);
  border: 1px dashed var(--c-line);
  border-radius: 10px;
  padding: 14px 12px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--c-text);
  word-break: break-all;
  user-select: all;
  -webkit-user-select: all;
  margin-bottom: 16px;
  font-family: var(--f-mono, "SF Mono", "Menlo", "Consolas", monospace);
  text-align: center;
  max-height: 120px;
  overflow-y: auto;
}
.share-modal-copy {
  display: block;
  width: 100%;
  background: var(--c-green);
  color: #fff;
  border: none;
  padding: 13px 20px;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
}
.share-modal-copy:hover { background: var(--c-green-deep); }
.share-modal-copy:active { transform: scale(0.98); }
.share-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  color: var(--c-text-soft);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.share-modal-close:hover {
  background: var(--c-bg-soft, #F4EFE6);
  color: var(--c-text);
}
