/* 佛系修行 · 佛教数字化修行平台专题 */
.fojiao-page {
  --fj-primary: #8B4513;
  --fj-gold: #B8860B;
  --fj-bg: #FFFBF5;
  --fj-text: #3D3229;
  --fj-muted: #8B7355;
  --fj-card: #fff;
  --fj-border: #EDE6DC;
  background: var(--fj-bg);
  color: var(--fj-text);
  line-height: 1.7;
}
.fojiao-page .page-main { padding-top: 0; }
.fojiao-page a.fj-link { color: var(--fj-primary); text-decoration: none; }
.fojiao-page a.fj-link:hover { text-decoration: underline; }
.fojiao-wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

.fj-hero {
  background: linear-gradient(135deg, #5A4020 0%, var(--fj-primary) 45%, var(--fj-gold) 100%);
  color: #fff;
  padding: 56px 24px 72px;
  text-align: center;
  margin-bottom: 0;
}
.fj-hero-badge {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1px;
  opacity: 0.9;
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 20px;
}
.fj-hero h1 { font-size: clamp(28px, 5vw, 42px); font-weight: 700; margin-bottom: 16px; }
.fj-hero .fj-sub {
  font-size: clamp(15px, 2.5vw, 18px);
  max-width: 720px;
  margin: 0 auto 32px;
  opacity: 0.92;
  line-height: 1.8;
}
.fj-hero-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.fj-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 28px;
  font-size: 15px;
  font-weight: 600;
  transition: transform .15s, box-shadow .15s;
  text-decoration: none;
}
.fj-btn:hover { transform: translateY(-1px); text-decoration: none; }
.fj-btn--primary { background: #fff; color: var(--fj-primary); box-shadow: 0 4px 16px rgba(0,0,0,.15); }
.fj-btn--outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.6); }

.fj-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin: -36px auto 40px;
  max-width: 900px;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.fj-stat {
  background: var(--fj-card);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(139,69,19,.1);
  border: 1px solid var(--fj-border);
}
.fj-stat-num { font-size: 32px; font-weight: 700; color: var(--fj-primary); display: block; }
.fj-stat-label { font-size: 13px; color: var(--fj-muted); margin-top: 4px; display: block; }

.fj-sec { padding: 48px 0; }
.fj-sec-title { font-size: 26px; font-weight: 700; text-align: center; margin-bottom: 8px; color: var(--fj-primary); }
.fj-sec-desc { text-align: center; color: var(--fj-muted); margin-bottom: 36px; font-size: 15px; }

.fj-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.fj-card {
  background: var(--fj-card);
  border: 1px solid var(--fj-border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: box-shadow .2s;
}
.fj-card:hover { box-shadow: 0 8px 24px rgba(139,69,19,.08); }
.fj-card-icon { font-size: 36px; margin-bottom: 12px; display: block; }
.fj-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--fj-primary); }
.fj-card p { font-size: 14px; color: var(--fj-muted); }
.fj-card ul { margin-top: 12px; padding-left: 18px; font-size: 13px; color: var(--fj-muted); }
.fj-card li { margin-bottom: 4px; }

.fj-flow {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 8px; font-size: 14px; color: var(--fj-muted); padding: 24px;
  background: var(--fj-card); border-radius: 12px; border: 1px solid var(--fj-border);
}
.fj-flow span { white-space: nowrap; }
.fj-flow .fj-arrow { color: var(--fj-gold); font-weight: bold; }

.fj-tech-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.fj-tag {
  background: rgba(139,69,19,.08);
  color: var(--fj-primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  border: 1px solid rgba(139,69,19,.15);
}

.fj-users { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.fj-user-card {
  text-align: center; padding: 28px 20px;
  background: linear-gradient(135deg, #fff, #FAF6F0);
  border-radius: 12px; border: 1px solid var(--fj-border);
}
.fj-user-card .fj-emoji { font-size: 40px; margin-bottom: 12px; display: block; }
.fj-user-card h4 { font-size: 16px; margin-bottom: 8px; }
.fj-user-card p { font-size: 13px; color: var(--fj-muted); }

.fj-cta {
  background: linear-gradient(135deg, var(--fj-primary), #5A4020);
  color: #fff;
  text-align: center;
  padding: 56px 24px;
  border-radius: 16px;
  margin: 48px 0 24px;
}
.fj-cta h2 { font-size: 24px; margin-bottom: 12px; color: #fff; }
.fj-cta p { opacity: 0.9; margin-bottom: 24px; max-width: 560px; margin-left: auto; margin-right: auto; }
.fj-cta-note { margin-top: 20px; font-size: 13px; opacity: .75; }

@media (max-width: 600px) {
  .fj-hero { padding: 40px 16px 56px; }
  .fj-sec { padding: 32px 0; }
}
