/* roulang page: index */
:root {
  --ze-bg: #F3EEE2;
  --ze-card: #FFFDF7;
  --ze-green: #1F4632;
  --ze-dark: #12281E;
  --ze-green-2: #3C6B4A;
  --ze-gold: #D9A441;
  --ze-bronze: #B56A3A;
  --ze-line: #E2D8C3;
  --ze-ink: #21332A;
  --ze-muted: #5A6B5D;
  --ze-radius: 20px;
  --ze-radius-sm: 12px;
  --ze-shadow: 0 12px 30px rgba(24, 53, 38, 0.06);
  --ze-shadow-lg: 0 22px 48px rgba(24, 53, 38, 0.10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ze-bg);
  color: var(--ze-ink);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
body.has-bottom-bar { padding-bottom: 116px; }
img { max-width: 100%; height: auto; display: inline-block; }
a { color: inherit; text-decoration: none; transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0 0 .45em; line-height: 1.25; font-weight: 700; }
p { margin: 0 0 1em; }
button, input, textarea, select, option { font-family: inherit; font-size: inherit; }
a:hover, a:focus-visible { color: var(--ze-bronze); }
:focus-visible { outline: 2px solid var(--ze-gold); outline-offset: 3px; border-radius: 6px; }
.grid-container { max-width: 1240px; }

.ze-section { padding: 92px 0; }
.ze-section--sand { background: #EDE5D5; }
.ze-section--cardbg { background: #FFFDF7; }
.ze-muted { color: var(--ze-muted); }
.ze-center { text-align: center; }

.ze-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  line-height: 1.2;
  transition: all .25s ease;
}
.ze-btn i { font-size: .85em; }
.ze-btn--gold {
  background: var(--ze-gold);
  color: #1e251f;
  border-color: var(--ze-gold);
  box-shadow: 0 10px 24px rgba(217, 164, 65, 0.26);
}
.ze-btn--gold:hover, .ze-btn--gold:focus {
  background: #E4BB62;
  color: #13241B;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(217, 164, 65, 0.32);
}
.ze-btn--outline-light {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-color: rgba(255,255,255,0.68);
}
.ze-btn--outline-light:hover, .ze-btn--outline-light:focus {
  background: rgba(255,255,255,0.14);
  color: #fff;
  transform: translateY(-2px);
  border-color: #fff;
}
.ze-btn--green {
  background: var(--ze-green);
  color: #fff;
  border-color: var(--ze-green);
}
.ze-btn--green:hover, .ze-btn--green:focus {
  background: #2C5A42;
  color: #fff;
  transform: translateY(-2px);
}
.ze-icon-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ze-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: var(--ze-bg);
  padding: 12px 0 8px;
  transition: box-shadow .3s ease;
}
.ze-header.is-scrolled { box-shadow: 0 10px 28px rgba(24, 53, 38, 0.08); }
.ze-header__grid { position: relative; }
.ze-navpanel {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 253, 247, .94);
  border: 1px solid var(--ze-line);
  border-radius: 22px;
  padding: 10px 14px;
  box-shadow: var(--ze-shadow);
  backdrop-filter: blur(8px);
}
.ze-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  margin-right: 4px;
}
.ze-brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--ze-green);
  color: var(--ze-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 6px 15px rgba(31, 70, 50, 0.24);
}
.ze-brand-copy { display: inline-flex; flex-direction: column; line-height: 1.2; }
.ze-brand-copy strong { font-size: 1.2rem; letter-spacing: .02em; white-space: nowrap; }
.ze-brand-copy small { font-size: .72rem; color: var(--ze-green-2); letter-spacing: .04em; }
.ze-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 8px;
  flex-wrap: wrap;
}
.ze-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: .95rem;
  color: var(--ze-ink);
  border: 1px solid transparent;
  white-space: nowrap;
  font-weight: 500;
}
.ze-nav-link .nav-i { color: var(--ze-green-2); width: 20px; text-align: center; font-size: .9em; }
.ze-nav-link:hover, .ze-nav-link:focus-visible {
  background: #F5EDDE;
  border-color: var(--ze-line);
  color: var(--ze-green);
}
.ze-nav-link.is-current {
  background: var(--ze-green);
  color: #fff;
  box-shadow: 0 8px 20px rgba(31, 70, 50, 0.2);
}
.ze-nav-link.is-current .nav-i { color: var(--ze-gold); }
.ze-header__cta { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.ze-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--ze-line);
  background: var(--ze-card);
  color: var(--ze-green);
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
}
.ze-menu-toggle:focus-visible { outline: 2px solid var(--ze-gold); }
.ze-mobile-nav { display: none; }
.ze-mobile-nav.is-open { display: block; padding: 18px 0 8px; }
.ze-mobile-nav__list a {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--ze-card);
  border: 1px solid var(--ze-line);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
  font-weight: 600;
}
.ze-mobile-nav__list a.is-current { background: var(--ze-green); color: #fff; }
.ze-mobile-nav__list a.is-current i { color: var(--ze-gold); }
.ze-mobile-nav__list .ze-btn { width: 100%; justify-content: center; margin-top: 4px; }

.ze-hero {
  position: relative;
  color: #fff;
  background: linear-gradient(115deg, rgba(18, 40, 30, .96) 0%, rgba(31, 70, 50, .9) 48%, rgba(56, 74, 54, .84) 100%), url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
  border-radius: 0 0 34px 34px;
  overflow: hidden;
}
.ze-hero__inner { padding: 86px 0 104px; }
.ze-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: #F0D59B;
  border: 1px solid rgba(217, 164, 65, .4);
  background: rgba(255, 255, 255, .05);
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.ze-eyebrow i { font-size: .82rem; }
.ze-hero__title {
  font-size: clamp(2.05rem, 4.4vw, 3.7rem);
  line-height: 1.14;
  letter-spacing: .01em;
  max-width: 15em;
  margin-bottom: .5em;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.18);
}
.ze-hero__lead {
  max-width: 35em;
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  color: #E9EEE3;
  line-height: 1.85;
  margin-bottom: 30px;
}
.ze-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.ze-hero-points { display: flex; flex-wrap: wrap; gap: 12px 22px; color: #E1E8DC; font-size: .96rem; }
.ze-hero-points li { display: inline-flex; align-items: center; gap: 8px; }
.ze-hero-points i { color: var(--ze-gold); }

.ze-stats-panel {
  background: rgba(12, 28, 21, .44);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 26px;
  padding: clamp(24px, 3vw, 32px);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
}
.ze-stats-panel__head {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,.14);
  padding-bottom: 16px;
  margin-bottom: 14px;
  color: #F4E7CD;
  font-weight: 600;
}
.ze-stat-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: rgba(255, 255, 255, 0.08); border-radius: 18px; overflow: hidden; }
.ze-stat-cell { background: rgba(20, 42, 31, .72); padding: 20px 18px; min-height: 126px; display: flex; flex-direction: column; justify-content: space-between; }
.ze-stat-cell strong { font-size: clamp(1.7rem, 2.4vw, 2.2rem); color: var(--ze-gold); line-height: 1.1; display: block; }
.ze-stat-cell span { font-size: .9rem; color: #E5EADF; margin-top: 6px; display: block; line-height: 1.5; }
.ze-stats-note { font-size: .84rem; color: #CFD9C8; margin-top: 16px; display: flex; gap: 8px; align-items: flex-start; }

.ze-section-head { margin-bottom: 52px; }
.ze-section-head--center { text-align: center; max-width: 900px; margin-left: auto; margin-right: auto; }
.ze-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(31, 70, 50, .09);
  border: 1px solid rgba(31, 70, 50, .14);
  color: var(--ze-green);
  font-size: .86rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.ze-h2 { font-size: clamp(1.6rem, 2.6vw, 2.4rem); color: #142b20; letter-spacing: .01em; }
.ze-section-intro { max-width: 860px; color: var(--ze-muted); font-size: 1.05rem; margin-top: 14px; }

.ze-card-cell { display: flex; }
.ze-feature-card {
  background: var(--ze-card);
  border: 1px solid var(--ze-line);
  border-radius: 22px;
  box-shadow: var(--ze-shadow);
  padding: 30px 26px 24px;
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  transition: transform .25s ease, border-color .3s ease, box-shadow .3s ease;
}
.ze-feature-card:hover, .ze-feature-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--ze-green);
  box-shadow: var(--ze-shadow-lg);
}
.ze-feature-card__icon {
  width: 54px;
  height: 54px;
  background: rgba(31, 70, 50, .08);
  color: var(--ze-green);
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 20px;
}
.ze-feature-card__title { font-size: 1.35rem; margin-bottom: 10px; color: #18321f; }
.ze-feature-card__desc { color: var(--ze-muted); font-size: .98rem; margin-bottom: 18px; flex: 0 0 auto; }
.ze-feature-card__list { margin-bottom: 20px; flex: 1 1 auto; }
.ze-feature-card__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: #46594a;
  font-size: .95rem;
}
.ze-feature-card__list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ze-gold);
  font-size: .88rem;
}
.ze-feature-card__stat {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: rgba(31, 70, 50, .06);
  border: 1px dashed rgba(31, 70, 50, .25);
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 18px;
}
.ze-feature-card__stat strong { color: var(--ze-green); font-size: 1.15rem; }
.ze-feature-card__stat span { color: var(--ze-muted); font-size: .92rem; }
.ze-feature-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--ze-green);
}
.ze-feature-card__link i { transition: transform .2s ease; }
.ze-feature-card__link:hover i { transform: translateX(4px); }

.ze-flow-panel {
  background: var(--ze-card);
  border: 1px solid var(--ze-line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--ze-shadow);
  padding: 0;
}
.ze-flow-media {
  position: relative;
  height: 100%;
  min-height: 420px;
  background: url('/assets/images/coverpic/cover-2.png') center/cover no-repeat, linear-gradient(120deg, #17391F, #355B3D);
}
.ze-flow-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(18, 40, 30, .14), rgba(18, 40, 30, .48));
}
.ze-flow-media__badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  background: rgba(18, 40, 30, .78);
  color: #F4E7CD;
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 14px 18px;
  font-weight: 600;
  line-height: 1.5;
}
.ze-flow-content { padding: clamp(28px, 4vw, 54px); }
.ze-flow-content .ze-h2 { margin-bottom: 30px; }
.ze-step-card { padding: 18px 0 16px 20px; border-left: 2px solid rgba(217, 164, 65, .55); margin-bottom: 6px; }
.ze-step-card__num {
  color: var(--ze-bronze);
  font-weight: 800;
  font-size: 1.18rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.ze-step-card__title { font-weight: 700; font-size: 1.1rem; margin-bottom: 4px; color: #1B3422; }
.ze-step-card__desc { color: var(--ze-muted); font-size: .95rem; }

.ze-proof {
  background: linear-gradient(130deg, #10271E 0%, #183C2A 58%, #24452F 100%);
  color: #E9EEE2;
  padding: 88px 0;
}
.ze-proof .ze-kicker { color: #E6C17B; border-color: rgba(217, 164, 65, .28); background: rgba(217, 164, 65, .08); }
.ze-proof .ze-h2 { color: #fff; }
.ze-proof__intro { color: #C6D3C5; max-width: 840px; }
.ze-proof__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 46px;
}
.ze-proof-stat {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 22px;
  padding: 24px 20px;
  min-height: 150px;
}
.ze-proof-stat strong {
  display: block;
  color: var(--ze-gold);
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
  margin-bottom: 8px;
}
.ze-proof-stat span { color: #D9E2D5; line-height: 1.55; display: block; }
.ze-proof-route {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}
.ze-proof-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  padding: 9px 17px;
  color: #DDE7DA;
  font-size: .9rem;
}
.ze-proof-tag i { color: var(--ze-gold); font-size: .8rem; }

.ze-post-cell { display: flex; }
.ze-post-card {
  background: var(--ze-card);
  border: 1px solid var(--ze-line);
  border-radius: 20px;
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ze-post-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ze-shadow-lg);
  border-color: var(--ze-green-2);
}
.ze-post-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.ze-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(31, 70, 50, .07);
  border: 1px solid rgba(31, 70, 50, .18);
  color: var(--ze-green);
  font-size: .8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.ze-post-card__time { font-size: .85rem; color: var(--ze-muted); }
.ze-post-card h3 {
  font-size: 1.18rem;
  line-height: 1.45;
  color: #1E3A28;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.2em;
  margin-bottom: 10px;
}
.ze-post-card__summary {
  color: var(--ze-muted);
  font-size: .96rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.2em;
}
.ze-post-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ze-green);
  font-weight: 700;
  font-size: .95rem;
  padding-top: 16px;
  border-top: 1px solid var(--ze-line);
  margin-top: 20px;
}
.ze-post-card__link i { transition: transform .2s ease; }
.ze-post-card__link:hover i { transform: translateX(4px); }
.ze-empty-state {
  border: 1px dashed #C8BCA2;
  background: #FAF5EA;
  color: var(--ze-muted);
  border-radius: 20px;
  text-align: center;
  padding: 52px 20px;
  grid-column: 1 / -1;
}
.ze-empty-state i { font-size: 1.9rem; color: var(--ze-gold); display: block; margin-bottom: 10px; }

.ze-faq-wrap { max-width: 940px; margin: 0 auto; }
.ze-faq {
  background: transparent;
  list-style: none;
}
.ze-faq-item {
  background: var(--ze-card);
  border: 1px solid var(--ze-line);
  border-radius: 18px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.ze-faq-item.is-active {
  border-color: var(--ze-green-2);
  box-shadow: 0 10px 24px rgba(31, 70, 50, .08);
}
.ze-faq .accordion-title.ze-faq-title {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 0;
}
.ze-faq-title {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 20px 24px !important;
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--ze-ink);
  position: relative;
  cursor: pointer;
  border: 0 !important;
  border-radius: 18px !important;
}
.ze-faq-title:hover, .ze-faq-title:focus { color: var(--ze-green); }
.ze-faq-title::before, .ze-faq-title::after { content: none !important; }
.ze-faq-title .ze-faq-q { color: var(--ze-gold); }
.ze-faq-chevron {
  margin-left: auto;
  color: var(--ze-green);
  font-size: 1.05rem;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(31, 70, 50, .2);
  transition: transform .3s ease, background .3s ease, color .3s ease;
  flex: 0 0 auto;
}
.ze-faq-item.is-active .ze-faq-chevron {
  transform: rotate(45deg);
  background: var(--ze-green);
  color: var(--ze-gold);
  border-color: var(--ze-green);
}
.ze-faq .accordion-content.ze-faq-content {
  display: none;
  padding: 0 26px 24px;
  background: transparent;
  border-top: 0;
  color: #536151;
}
.ze-faq .accordion-item.is-active .accordion-content.ze-faq-content {
  display: block;
  border-top: 1px solid var(--ze-line);
}
.ze-faq-content p { margin-bottom: 0; line-height: 1.85; }
.ze-faq-content strong { color: var(--ze-green); }

.ze-final-cta {
  background: linear-gradient(120deg, rgba(18, 40, 30, .96) 0%, rgba(31, 70, 50, .9) 60%, rgba(42, 70, 49, .9) 100%), url('/assets/images/backpic/back-3.webp') center/cover no-repeat;
  padding: 100px 0;
  color: #fff;
}
.ze-cta-card {
  background: rgba(255, 253, 247, .95);
  border-radius: 28px;
  padding: clamp(28px, 4.4vw, 52px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  color: var(--ze-ink);
}
.ze-cta-card .ze-h2 { color: #173120; }
.ze-cta-card__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--ze-line);
  font-size: 1.02rem;
}
.ze-cta-card__benefits li:last-child { border-bottom: 0; }
.ze-cta-card__benefits i { color: var(--ze-bronze); margin-top: 5px; }

.ze-form-card {
  background: var(--ze-card);
  border: 1px solid var(--ze-line);
  border-radius: 24px;
  padding: clamp(22px, 3vw, 32px);
  box-shadow: var(--ze-shadow);
}
.form-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 18px; }
.ze-form-field { margin-bottom: 18px; }
.ze-form-field label {
  display: block;
  font-weight: 700;
  margin-bottom: 7px;
  color: #273d2c;
  font-size: .95rem;
}
.ze-form-field input,
.ze-form-field textarea {
  width: 100%;
  border: 1px solid #D6CBB4;
  background: #FFFDF7;
  border-radius: 13px;
  padding: 14px 15px;
  color: var(--ze-ink);
  min-height: 52px;
  font-size: 1rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.ze-form-field textarea { min-height: 92px; resize: vertical; }
.ze-form-field input:focus,
.ze-form-field textarea:focus {
  outline: none;
  border-color: var(--ze-green);
  box-shadow: 0 0 0 3px rgba(31, 70, 50, .12);
}
.ze-form-submit { width: 100%; margin-top: 8px; }
.ze-form-submit .ze-btn { width: 100%; }
.ze-form-footnote { font-size: .82rem; color: var(--ze-muted); margin-top: 12px; }
.ze-form-status { display: none; margin-top: 12px; padding: 12px 14px; border-radius: 12px; font-size: .96rem; }
.ze-form-status.is-success { display: block; background: rgba(63, 107, 78, .1); border: 1px solid rgba(63, 107, 78, .25); color: var(--ze-green); }
.ze-form-status.is-error { display: block; background: rgba(181, 106, 58, .1); border: 1px solid rgba(181, 106, 58, .25); color: var(--ze-bronze); }

.ze-footer {
  background: var(--ze-dark);
  color: #CBD6C7;
  padding: 64px 0 0;
  border-top: 4px solid rgba(217, 164, 65, .5);
}
.ze-footer__brand p { margin-top: 14px; font-size: .96rem; color: #B9C9B6; max-width: 420px; line-height: 1.8; }
.ze-footer .ze-brand-copy small { color: #B9C9B6; }
.ze-footer-logo { margin-bottom: 8px; }
.ze-footer-col h4 {
  color: #E6C17B;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.ze-footer-col ul li { margin-bottom: 10px; }
.ze-footer-col ul a { color: #BFD0C1; font-size: .95rem; display: inline-flex; align-items: center; gap: 8px; }
.ze-footer-col ul a:hover, .ze-footer-col ul a:focus-visible { color: var(--ze-gold); }
.ze-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
  color: #C5D4C2;
  font-size: .95rem;
  line-height: 1.65;
}
.ze-footer-contact i { color: var(--ze-gold); margin-top: 4px; }
.ze-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 36px;
  padding: 18px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  color: #A7BBA6;
  font-size: .88rem;
}

.ze-fbar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 980px;
  z-index: 130;
  display: flex;
  align-items: center;
  background: var(--ze-dark);
  border: 1px solid rgba(217, 164, 65, .35);
  border-radius: 999px;
  padding: 10px 14px 10px 26px;
  box-shadow: 0 18px 48px rgba(10, 24, 16, .3);
}
.ze-fbar__text { color: #F0E6CE; margin: 0; font-size: 1rem; }
.ze-fbar__text span { color: var(--ze-gold); font-weight: 600; }
.ze-fbar__actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.ze-fbar__actions .ze-btn { padding: 10px 20px; font-size: .95rem; }
.ze-fbar__close {
  background: transparent;
  border: 0;
  color: rgba(255,255,255,.55);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ze-fbar__close:hover { color: #fff; background: rgba(255,255,255,.1); }

@media screen and (max-width: 1100px) {
  .ze-nav-links { gap: 4px; }
  .ze-nav-link { padding: 8px 12px; font-size: .9rem; }
}
@media screen and (max-width: 1023px) {
  .ze-nav-links { display: none; }
  .ze-header__cta .ze-btn { display: none; }
  .ze-menu-toggle { display: inline-flex; }
  .ze-hero__inner { padding: 62px 0 82px; }
  .ze-stats-panel { max-width: 620px; margin-top: 28px; }
  .ze-proof__stats { grid-template-columns: repeat(2, 1fr); }
  .ze-flow-media { min-height: 320px; }
}
@media screen and (max-width: 767px) {
  .ze-section { padding: 66px 0; }
  .ze-navpanel { padding: 10px 12px; gap: 8px; border-radius: 18px; }
  .ze-brand-copy small { display: none; }
  .ze-brand-mark { width: 38px; height: 38px; }
  .ze-hero__actions .ze-btn { width: 100%; }
  .ze-hero-points { flex-direction: column; gap: 8px; }
  .ze-proof { padding: 62px 0; }
  .ze-fbar {
    bottom: 10px;
    width: calc(100% - 22px);
    border-radius: 999px;
    padding: 10px 10px 10px 16px;
  }
  .ze-fbar__text { font-size: .9rem; }
  .has-bottom-bar { padding-bottom: 92px; }
}
@media screen and (max-width: 520px) {
  .ze-header { padding-top: 8px; }
  .ze-proof__stats { grid-template-columns: 1fr; gap: 12px; }
  .ze-feature-card { padding: 22px 18px 18px; }
  .ze-cta-card { padding: 24px 18px; }
  .ze-faq-title { font-size: 1rem; padding: 16px 18px !important; }
  .ze-faq .accordion-content.ze-faq-content { padding: 0 18px 18px; }
  .ze-fbar { flex-wrap: wrap; border-radius: 22px; }
  .ze-fbar__actions { width: 100%; margin-left: 0; }
  .ze-fbar__actions .ze-btn { flex: 1; }
  .ze-footer-bottom { flex-direction: column; }
}

/* roulang page: article */
:root {
      --ze-bg: #F3EEE2;
      --ze-bg-soft: #E9E0CE;
      --ze-card: #FFFDF7;
      --ze-green: #1F4632;
      --ze-green-dark: #12281E;
      --ze-green-mid: #3C6B4A;
      --ze-gold: #D9A441;
      --ze-copper: #B56A3A;
      --ze-ink: #21332A;
      --ze-muted: #66776C;
      --ze-line: #E2D8C3;
      --ze-radius-lg: 28px;
      --ze-radius-md: 18px;
      --ze-radius-sm: 10px;
      --ze-shadow-card: 0 12px 30px rgba(24, 53, 38, 0.06);
      --ze-shadow-hover: 0 18px 42px rgba(24, 53, 38, 0.13);
      --ze-font: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
      --ze-space: clamp(56px, 8vw, 104px);
    }

    *,
    *::before,
    *::after { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      background: var(--ze-bg);
      color: var(--ze-ink);
      font-family: var(--ze-font);
      font-size: 16px;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    img { max-width: 100%; height: auto; display: block; }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    textarea,
    select { font-family: inherit; }

    :focus-visible {
      outline: 3px solid var(--ze-gold);
      outline-offset: 3px;
      border-radius: 6px;
    }

    .grid-container {
      max-width: 1240px;
      padding-left: 20px;
      padding-right: 20px;
    }

    .ze-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 46px;
      padding: 12px 26px;
      border-radius: 999px;
      font-size: 0.95rem;
      font-weight: 700;
      line-height: 1;
      border: 1px solid transparent;
      cursor: pointer;
      transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
      white-space: nowrap;
    }

    .ze-btn--gold {
      background: var(--ze-gold);
      color: var(--ze-green-dark);
      box-shadow: 0 10px 22px rgba(217, 164, 65, 0.2);
    }
    .ze-btn--gold:hover {
      background: #E7B653;
      color: #0F2419;
      transform: translateY(-2px);
      box-shadow: 0 14px 26px rgba(217, 164, 65, 0.3);
    }
    .ze-btn--gold:active { transform: translateY(0); }

    .ze-btn--line {
      border-color: rgba(255, 255, 255, 0.72);
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
    }
    .ze-btn--line:hover {
      background: rgba(255, 255, 255, 0.16);
      border-color: #fff;
      transform: translateY(-2px);
    }

    .ze-btn--dark {
      background: var(--ze-green);
      color: #fff;
      border-color: var(--ze-green);
    }
    .ze-btn--dark:hover {
      background: var(--ze-green-dark);
      transform: translateY(-2px);
      box-shadow: 0 14px 28px rgba(18, 40, 30, 0.18);
    }

    /* Header */
    .ze-header {
      position: sticky;
      top: 0;
      z-index: 80;
      padding: 14px 0 8px;
    }

    .ze-nav-panel {
      display: flex;
      align-items: center;
      background: var(--ze-card);
      border: 1px solid var(--ze-line);
      border-radius: 22px;
      box-shadow: 0 12px 32px rgba(24, 53, 38, 0.07);
      padding: 12px 18px;
      gap: 18px;
    }

    .ze-brand {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      flex-shrink: 0;
    }

    .ze-brand-mark {
      width: 46px;
      height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--ze-green);
      color: #fff;
      border-radius: 14px;
      font-size: 1.25rem;
      box-shadow: 0 6px 14px rgba(31, 70, 50, 0.18);
    }

    .ze-brand-copy { display: inline-flex; flex-direction: column; line-height: 1.2; }
    .ze-brand-copy strong { font-size: 1.12rem; font-weight: 800; color: var(--ze-green); letter-spacing: 0.02em; }
    .ze-brand-copy small { font-size: 12px; color: var(--ze-muted); letter-spacing: 0.12em; margin-top: 4px; }

    .ze-nav-main {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-left: auto;
    }

    .ze-nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
      flex-wrap: wrap;
    }

    .ze-nav-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 17px;
      border-radius: 999px;
      color: var(--ze-green);
      font-size: 0.9rem;
      font-weight: 700;
      border: 1px solid transparent;
      transition: background 0.22s ease, color 0.22s ease, transform 0.2s ease;
    }

    .ze-nav-link .nav-i {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.88rem;
    }

    .ze-nav-link:hover {
      background: rgba(31, 70, 50, 0.08);
      color: var(--ze-green);
      transform: translateY(-1px);
    }

    .ze-nav-link.is-current {
      background: var(--ze-green);
      color: #fff;
      box-shadow: 0 10px 20px rgba(31, 70, 50, 0.18);
    }

    .ze-nav-link.is-current:hover {
      background: var(--ze-green-dark);
      color: #fff;
    }

    .ze-nav-cta {
      margin-left: 6px;
      min-height: 42px;
      padding: 9px 22px;
      font-size: 0.9rem;
    }

    .ze-nav-toggle,
    .ze-burger-label { display: none; }

    .ze-burger-label {
      margin-left: auto;
      width: 44px;
      height: 44px;
      border-radius: 14px;
      background: var(--ze-green);
      color: #fff;
      align-items: center;
      justify-content: center;
      font-size: 1.15rem;
      cursor: pointer;
      transition: background 0.2s ease;
    }
    .ze-burger-label:hover { background: var(--ze-green-dark); }

    /* Article Banner */
    .ze-article-banner {
      position: relative;
      color: #fff;
      padding: clamp(60px, 8vw, 96px) 0 74px;
      background:
        linear-gradient(110deg, rgba(18, 40, 30, 0.96), rgba(31, 70, 50, 0.85), rgba(181, 106, 58, 0.46)),
        url('/assets/images/backpic/back-2.webp') center / cover no-repeat;
    }

    .ze-article-banner .grid-container { position: relative; z-index: 2; }

    .ze-crumbs {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.74);
      margin-bottom: 24px;
    }

    .ze-crumbs a {
      color: rgba(255, 255, 255, 0.9);
      transition: color 0.2s ease;
    }
    .ze-crumbs a:hover { color: var(--ze-gold); }
    .ze-crumbs i { font-size: 12px; color: rgba(255, 255, 255, 0.6); }
    .ze-crumbs-current { color: rgba(255, 255, 255, 0.65); }

    .ze-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      background: rgba(255, 255, 255, 0.14);
      border: 1px solid rgba(255, 255, 255, 0.26);
      border-radius: 999px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      margin-bottom: 18px;
      color: #fff;
    }

    .ze-article-banner h1 {
      font-size: clamp(1.85rem, 4.2vw, 3.05rem);
      line-height: 1.25;
      margin: 0 0 18px;
      max-width: 940px;
      color: #fff;
      font-weight: 800;
    }

    .ze-post-meta {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      font-size: 0.92rem;
      color: rgba(255, 255, 255, 0.82);
    }

    .ze-post-meta span {
      display: inline-flex;
      align-items: center;
      gap: 7px;
    }

    .ze-post-meta i { color: var(--ze-gold); }

    /* Article Main */
    .ze-article-main {
      padding: 0 0 calc(var(--ze-space) * 0.8);
      position: relative;
      z-index: 3;
    }

    .ze-article-main .grid-container {
      max-width: 1060px;
      padding-left: 20px;
      padding-right: 20px;
    }

    .ze-article-card {
      background: var(--ze-card);
      border: 1px solid var(--ze-line);
      border-radius: var(--ze-radius-lg);
      box-shadow: var(--ze-shadow-card);
      margin-top: -48px;
      padding: clamp(28px, 6vw, 58px);
      position: relative;
    }

    .ze-article-content {
      max-width: 780px;
      margin: 0 auto;
    }

    .ze-article-content > p {
      font-size: 1.03rem;
      line-height: 1.88;
      margin: 0 0 1.4em;
      color: #2A3D32;
    }

    .ze-article-content h2 {
      font-size: 1.7rem;
      font-weight: 800;
      color: var(--ze-green);
      margin: 2.2em 0 0.8em;
      padding-left: 14px;
      border-left: 5px solid var(--ze-gold);
      line-height: 1.4;
    }

    .ze-article-content h3 {
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--ze-green);
      margin: 1.9em 0 0.7em;
      line-height: 1.45;
    }

    .ze-article-content h4 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--ze-ink);
      margin: 1.6em 0 0.55em;
    }

    .ze-article-content p strong { color: var(--ze-green); }

    .ze-article-content ul,
    .ze-article-content ol {
      padding-left: 1.3em;
      margin: 0 0 1.6em;
    }

    .ze-article-content li {
      margin-bottom: 0.55em;
      line-height: 1.85;
      padding-left: 0.25em;
    }

    .ze-article-content blockquote {
      margin: 1.8em 0;
      padding: 20px 24px;
      background: #F5EEDD;
      border-left: 5px solid var(--ze-gold);
      border-radius: 0 12px 12px 0;
      color: var(--ze-ink);
    }

    .ze-article-content img {
      width: 100%;
      border-radius: 18px;
      margin: 1.8em 0;
      border: 1px solid var(--ze-line);
    }

    .ze-article-content a {
      color: var(--ze-copper);
      text-decoration: underline;
      text-underline-offset: 3px;
      word-break: break-word;
      transition: color 0.2s ease;
    }

    .ze-article-content a:hover { color: var(--ze-green); }

    .ze-article-content table {
      width: 100%;
      border-collapse: collapse;
      margin: 1.8em 0;
      background: #fff;
      overflow: hidden;
      border-radius: 12px;
    }

    .ze-article-content th,
    .ze-article-content td {
      border: 1px solid var(--ze-line);
      padding: 12px 14px;
      text-align: left;
      vertical-align: top;
    }

    .ze-article-content th {
      background: var(--ze-green);
      color: #fff;
      font-weight: 700;
    }

    .ze-article-content code,
    .ze-article-content pre {
      font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
      font-size: 0.95em;
      word-break: break-word;
    }

    .ze-article-content pre {
      background: var(--ze-green-dark);
      color: #F5EEDD;
      padding: 20px;
      border-radius: 14px;
      overflow-x: auto;
      line-height: 1.7;
      margin: 1.8em 0;
    }

    .ze-article-footer {
      margin-top: 34px;
      padding-top: 24px;
      border-top: 1px solid var(--ze-line);
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: space-between;
    }

    .ze-article-footer .ze-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #F1ECDF;
      color: var(--ze-muted);
      font-size: 0.82rem;
      padding: 7px 13px;
      border-radius: 999px;
    }

    /* Related */
    .ze-related {
      padding: calc(var(--ze-space) * 0.55) 0 var(--ze-space);
      background: linear-gradient(180deg, var(--ze-bg) 0%, rgba(233, 224, 206, 0.6) 100%);
    }

    .ze-related-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 28px;
    }

    .ze-related-header h2 {
      font-size: clamp(1.55rem, 2.6vw, 2rem);
      font-weight: 800;
      color: var(--ze-green-dark);
      margin: 0 0 6px;
    }

    .ze-related-header p {
      margin: 0;
      color: var(--ze-muted);
      font-size: 0.95rem;
    }

    .ze-related-header a {
      color: var(--ze-copper);
      font-weight: 700;
      font-size: 0.92rem;
      white-space: nowrap;
      transition: color 0.2s ease;
    }

    .ze-related-header a:hover { color: var(--ze-green); }

    .ze-related-card {
      display: flex;
      flex-direction: column;
      height: 100%;
      background: var(--ze-card);
      border: 1px solid var(--ze-line);
      border-radius: 22px;
      overflow: hidden;
      box-shadow: var(--ze-shadow-card);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .ze-related-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--ze-shadow-hover);
      border-color: rgba(31, 70, 50, 0.4);
    }

    .ze-related-card .thumb {
      height: 178px;
      overflow: hidden;
      position: relative;
      background: var(--ze-bg-soft);
    }

    .ze-related-card .thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .ze-related-card:hover .thumb img { transform: scale(1.05); }

    .ze-related-card .body {
      padding: 22px 22px 24px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .ze-related-card .cat {
      font-size: 0.78rem;
      color: var(--ze-copper);
      font-weight: 700;
      margin-bottom: 10px;
    }

    .ze-related-card h3 {
      font-size: 1.18rem;
      line-height: 1.5;
      margin: 0 0 12px;
      color: var(--ze-green-dark);
      font-weight: 700;
    }

    .ze-related-card p {
      margin: 0 0 16px;
      color: var(--ze-muted);
      font-size: 0.92rem;
      line-height: 1.7;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .ze-related-card .more {
      margin-top: auto;
      color: var(--ze-green);
      font-size: 0.9rem;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .ze-related-card .more i { transition: transform 0.2s ease; }
    .ze-related-card:hover .more i { transform: translateX(4px); }

    .ze-back-actions {
      padding: 0 0 calc(var(--ze-space) * 0.9);
      text-align: center;
    }

    .ze-back-actions a {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 50px;
      padding: 15px 32px;
      border-radius: 999px;
      background: var(--ze-green);
      color: #fff;
      font-weight: 700;
      box-shadow: 0 10px 24px rgba(31, 70, 50, 0.16);
      transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    }

    .ze-back-actions a:hover {
      background: var(--ze-green-dark);
      transform: translateY(-2px);
    }

    /* Empty State */
    .ze-empty {
      background: var(--ze-card);
      border: 1.6px dashed var(--ze-copper);
      border-radius: var(--ze-radius-lg);
      text-align: center;
      padding: clamp(44px, 7vw, 84px) 26px;
      margin: 36px auto 60px;
    }

    .ze-empty i {
      font-size: 3.4rem;
      color: var(--ze-gold);
      margin-bottom: 20px;
    }

    .ze-empty h1 {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--ze-green-dark);
      margin: 0 0 12px;
    }

    .ze-empty p {
      color: var(--ze-muted);
      margin: 0 0 24px;
      font-size: 1rem;
    }

    .ze-empty a {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: var(--ze-gold);
      color: var(--ze-green-dark);
      padding: 14px 30px;
      border-radius: 999px;
      font-weight: 700;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .ze-empty a:hover { background: #E7B653; transform: translateY(-2px); }

    /* Footer */
    .ze-footer {
      background: var(--ze-green-dark);
      color: rgba(255, 255, 255, 0.82);
      padding: 56px 0 30px;
      border-top: 4px solid var(--ze-gold);
    }

    .ze-footer .ze-brand-copy strong { color: #fff; }
    .ze-footer .ze-brand-copy small { color: rgba(255, 255, 255, 0.58); }

    .ze-footer p {
      font-size: 0.96rem;
      line-height: 1.8;
      margin: 20px 0 0;
      color: rgba(255, 255, 255, 0.68);
    }

    .ze-footer h4 {
      font-size: 0.98rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      margin: 0 0 18px;
      color: #fff;
      position: relative;
      padding-bottom: 10px;
    }

    .ze-footer h4::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 30px;
      height: 3px;
      background: var(--ze-gold);
      border-radius: 4px;
    }

    .ze-footer ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .ze-footer ul li {
      margin-bottom: 10px;
      font-size: 0.93rem;
    }

    .ze-footer ul a {
      color: rgba(255, 255, 255, 0.76);
      display: inline-flex;
      align-items: flex-start;
      gap: 7px;
      transition: color 0.2s ease;
    }

    .ze-footer ul a i {
      color: var(--ze-gold);
      font-size: 0.82rem;
      margin-top: 5px;
    }

    .ze-footer ul a:hover { color: var(--ze-gold); }

    .ze-footer-contact li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      line-height: 1.55;
      color: rgba(255, 255, 255, 0.74);
    }

    .ze-footer-contact i {
      color: var(--ze-gold);
      margin-top: 4px;
      font-size: 0.92rem;
    }

    .ze-footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.13);
      margin-top: 40px;
      padding-top: 22px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.5);
    }

    .ze-footer-bottom span:first-child { color: rgba(255, 255, 255, 0.78); }

    /* Responsive */
    @media screen and (max-width: 1023px) {
      .ze-nav-links {
        gap: 2px;
      }
      .ze-nav-link {
        padding: 9px 13px;
        font-size: 0.85rem;
      }
      .ze-footer-bottom { flex-direction: column; text-align: center; }
    }

    @media screen and (max-width: 767px) {
      .ze-header {
        padding: 10px 0 8px;
      }

      .ze-nav-panel {
        flex-wrap: wrap;
        padding: 12px 12px;
        gap: 10px;
        border-radius: 18px;
      }

      .ze-nav-main {
        display: none;
        width: 100%;
        margin-left: 0;
        flex-direction: column;
        gap: 12px;
        background: rgba(255, 253, 247, 0.98);
        border: 1px solid var(--ze-line);
        border-radius: 16px;
        padding: 14px;
        margin-top: 4px;
      }

      .ze-nav-toggle:checked ~ .ze-nav-main {
        display: flex;
      }

      .ze-nav-links {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
      }

      .ze-nav-link {
        justify-content: center;
        width: 100%;
        border: 1px solid var(--ze-line);
        padding: 12px 10px;
      }

      .ze-nav-cta {
        width: 100%;
        margin-left: 0;
      }

      .ze-burger-label {
        display: inline-flex;
      }

      .ze-nav-toggle { display: none; }

      .ze-brand-copy strong { font-size: 1rem; }
      .ze-brand-copy small { font-size: 10px; }

      .ze-article-card {
        margin-top: -28px;
        padding: 24px 20px;
        border-radius: 20px;
      }

      .ze-article-content p,
      .ze-article-content li { font-size: 1rem; }
      .ze-article-content h2 { font-size: 1.42rem; }
      .ze-article-content h3 { font-size: 1.18rem; }
      .ze-article-banner { padding-bottom: 60px; }

      .ze-article-banner h1 { font-size: 1.85rem; }

      .ze-related-header {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media screen and (max-width: 520px) {
      .ze-brand-mark { width: 40px; height: 40px; font-size: 1.05rem; }

      .ze-nav-panel { padding: 9px 10px; }
      .ze-nav-link { font-size: 0.82rem; padding: 10px 6px; }

      .ze-article-banner h1 { font-size: 1.6rem; }
      .ze-post-meta { font-size: 0.85rem; }

      .ze-related-card h3 { font-size: 1.06rem; }
      .ze-article-content pre {
        font-size: 0.85rem;
        padding: 14px;
      }
      .ze-footer-bottom span {
        font-size: 0.78rem;
      }
    }

/* roulang page: category2 */
/* ========== 设计变量 ========== */
:root {
  --ze-bg: #F3EEE2;
  --ze-bg-deep: #ECE4D3;
  --ze-brand: #1F4632;
  --ze-brand-deep: #12281E;
  --ze-brand-mid: #3C6B4A;
  --ze-gold: #D9A441;
  --ze-gold-deep: #B8862E;
  --ze-copper: #B56A3A;
  --ze-card: #FFFDF7;
  --ze-line: #E2D8C3;
  --ze-text: #21332A;
  --ze-text-light: #60746A;
  --ze-text-soft: #82938A;
  --ze-radius-lg: 24px;
  --ze-radius-md: 16px;
  --ze-radius-sm: 10px;
  --ze-shadow: 0 12px 30px rgba(24, 53, 38, .06);
  --ze-shadow-hover: 0 16px 40px rgba(24, 53, 38, .1);
  --ze-font: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", "Source Han Sans SC", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
/* ========== Reset / Base ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ze-font);
  background: var(--ze-bg);
  color: var(--ze-text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; border: 0; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--ze-brand-mid); }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; outline: none; }
.grid-container { max-width: 1240px; padding-left: 20px; padding-right: 20px; }
body.ze-page-main { padding-top: 0; }
::selection { background: rgba(217, 164, 65, .25); }
:focus-visible { outline: 2px solid var(--ze-gold); outline-offset: 3px; border-radius: 4px; }
/* ========== Header 导航 ========== */
.ze-header-panel {
  position: sticky;
  top: 18px;
  z-index: 100;
  padding: 0 20px;
  margin: 18px auto 0;
  width: 100%;
  max-width: 1280px;
}
.ze-header-inner {
  background: var(--ze-card);
  border: 1px solid var(--ze-line);
  border-radius: 18px;
  box-shadow: var(--ze-shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  transition: box-shadow .3s ease, background .3s ease;
}
.ze-header-inner:hover { box-shadow: var(--ze-shadow-hover); }
.is-topbar-pinned { position: fixed; left: 0; right: 0; top: 0; margin: 0 auto; border-radius: 0; max-width: 100%; background: rgba(255,253,247,.92); backdrop-filter: blur(16px); }
.ze-brand { display: inline-flex; align-items: center; gap: 12px; font-size: 1.15rem; letter-spacing: .5px; }
a.ze-brand:hover { color: inherit; }
.ze-brand-mark {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ze-brand);
  color: #fff;
  border-radius: 13px;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 6px 15px rgba(31, 70, 50, .22);
}
.ze-brand-copy { display: inline-flex; flex-direction: column; line-height: 1.4; }
.ze-brand-copy strong { font-size: 1.18rem; font-weight: 800; color: var(--ze-text); letter-spacing: .2px; }
.ze-brand-copy small { font-size: .75rem; color: var(--ze-text-light); font-weight: 400; letter-spacing: 1.2px; }
/* 导航卡片 */
.ze-nav-links { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.ze-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: 999px;
  background: transparent;
  color: var(--ze-text);
  font-size: .92rem;
  font-weight: 500;
  line-height: 1;
  border: 1px solid transparent;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.ze-nav-link .nav-i { font-size: .8rem; opacity: .82; width: 18px; text-align: center; }
.ze-nav-link:hover { background: rgba(31,70,50,.07); color: var(--ze-brand); border-color: rgba(31,70,50,.12); }
.ze-nav-link.is-current {
  background: var(--ze-brand);
  color: #fff;
  border-color: var(--ze-brand);
  box-shadow: 0 8px 20px rgba(31,70,50,.24);
}
.ze-nav-link.is-current:hover { background: var(--ze-brand-mid); color: #fff; }
.ze-header-cta { flex-shrink: 0; margin-left: 6px; }
/* ========== 按钮 ========== */
.ze-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--ze-gold);
  color: var(--ze-text);
  font-weight: 700;
  font-size: .97rem;
  padding: 12px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(217, 164, 65, .3);
  transition: background .25s ease, transform .2s ease, box-shadow .25s ease, color .25s, border-color .25s;
}
.ze-btn:hover { background: var(--ze-gold-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(184,134,46,.35); }
.ze-btn:active { transform: translateY(0); background: var(--ze-gold-deep); }
.ze-btn.is-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.65); box-shadow: none; }
.ze-btn.is-ghost:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
.ze-btn.is-dark { background: var(--ze-brand); color: #fff; box-shadow: 0 10px 26px rgba(31,70,50,.25); }
.ze-btn.is-dark:hover { background: var(--ze-brand-mid); color: #fff; }
.ze-btn.is-sm { padding: 9px 16px; font-size: .88rem; box-shadow: 0 4px 14px rgba(217,164,65,.28); }
/* ========== 面包屑 ========== */
.ze-crumb { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; font-size: .85rem; color: var(--ze-text-soft); margin-bottom: 18px; }
.ze-crumb a { display: inline-flex; align-items: center; gap: 8px; transition: color .2s; }
.ze-crumb a:hover { color: var(--ze-brand-mid); }
.ze-crumb .ze-crumb-i { color: var(--ze-gold-deep); font-size: .75rem; }
/* ========== 分类页Hero/页头 ========== */
.ze-area-head {
  background: var(--ze-brand);
  background: linear-gradient(135deg, #1F4632 0%, #143328 52%, #12281E 100%);
  border-radius: 28px;
  color: #fff;
  padding: 64px 24px 56px;
  position: relative;
  overflow: hidden;
  margin-bottom: 64px;
}
.ze-area-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/', assets/images/backpic/back-2.webp);
  background-size: cover;
  background-position: center 40%;
  opacity: .16;
  z-index: 0;
}
.ze-area-head::after {
  content: "";
  position: absolute;
  top: -160px;
  right: -110px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(217,164,65,.08);
  border: 2px dashed rgba(217,164,65,.22);
  z-index: 0;
}
.ze-area-head .grid-container { position: relative; z-index: 2; }
.ze-area-head .ze-badge-eu { display: inline-flex; align-items: center; gap: 8px; background: rgba(217,164,65,.16); color: #F5D78A; font-size: .85rem; border-radius: 999px; padding: 8px 16px; margin-bottom: 18px; border: 1px solid rgba(217,164,65,.24); }
.ze-area-head h1 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); font-weight: 800; line-height: 1.45; margin-bottom: 16px; letter-spacing: .6px; }
.ze-area-head h1 .ze-head-mark { color: var(--ze-gold); }
.ze-area-head p.lead { font-size: 1.1rem; color: rgba(255,255,255,.82); max-width: 860px; margin-bottom: 22px; line-height: 1.8; }
/* ========== 板块 / 标题 ========== */
.ze-section { padding: 32px 0 44px; }
.ze-section-tight { padding: 20px 0 48px; }
.ze-sec-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.ze-sec-head .ze-eyebrow { font-size: .86rem; letter-spacing: 1.6px; color: var(--ze-gold-deep); font-weight: 700; text-transform: uppercase; margin-bottom: 6px; }
.ze-sec-head h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 800; line-height: 1.35; color: var(--ze-text); letter-spacing: .3px; }
.ze-sec-head p.ze-sec-desc { color: var(--ze-text-light); max-width: 680px; margin-top: 8px; font-size: 1rem; }
/* 卡片通用 */
.ze-card { background: var(--ze-card); border: 1px solid var(--ze-line); border-radius: var(--ze-radius-md); padding: 26px; box-shadow: var(--ze-shadow); transition: transform .3s ease, box-shadow .25s ease, border-color .25s ease; }
.ze-card:hover { transform: translateY(-4px); box-shadow: var(--ze-shadow-hover); border-color: rgba(31,70,50,.26); }
body.ze-scrolled .ze-header-inner { box-shadow: 0 14px 30px rgba(24,53,38,.1); }
/* 顶部数据徽章 */
.ze-attn-strip { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 2; }
.ze-attn-chip { background: rgba(255,255,255,.08); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.16); border-radius: 999px; padding: 12px 22px; display: flex; align-items: center; gap: 14px; }
.ze-attn-chip .z-num { font-size: 1.65rem; font-weight: 800; color: var(--ze-gold); line-height: 1; }
.ze-attn-chip .z-lab { font-size: .82rem; color: rgba(255,255,255,.78); letter-spacing: .4px; }
/* 分类专属大卡 */
.ze-info-feature { display: grid; grid-template-columns: 1.1fr .9fr; gap: 34px; background: var(--ze-card); border: 1px solid var(--ze-line); border-radius: var(--ze-radius-lg); padding: 20px 28px; align-items: center; box-shadow: var(--ze-shadow); margin-bottom: 44px; overflow: hidden; }
.ze-info-feature .media-wrap { border-radius: 22px; overflow: hidden; }
.ze-info-feature .media-wrap img { width: 100%; min-height: 270px; object-fit: cover; }
.ze-feature-copy { padding: 28px 20px 28px 22px; }
.ze-feature-copy h3 { font-size: 1.6rem; font-weight: 800; color: var(--ze-brand); margin-bottom: 14px; line-height: 1.4; }
.ze-feature-copy p { color: var(--ze-text); margin-bottom: 16px; }
.ze-feature-list { display: grid; gap: 12px; margin: 16px 0 22px; }
.ze-feature-list li { display: flex; gap: 10px; align-items: flex-start; color: var(--ze-text); }
.ze-feature-list i { color: var(--ze-gold-deep); margin-top: 6px; font-size: .9rem; }
/* 两步内容小卡 */
.ze-sub-card { border: 1px solid var(--ze-line); background: var(--ze-card); border-radius: var(--ze-radius-md); padding: 28px 24px; box-shadow: var(--ze-shadow); transition: border-color .3s ease, box-shadow .3s ease; height: 100%; }
.ze-sub-card:hover { border-color: rgba(217,164,65,.4); box-shadow: var(--ze-shadow-hover); }
.ze-sub-card .ze-step-id { display: inline-flex; align-items: center; gap: 8px; color: var(--ze-gold-deep); background: rgba(217,164,65,.1); padding: 7px 14px; border-radius: 999px; font-size: .9rem; font-weight: 700; margin-bottom: 20px; }
.ze-sub-card h3 { font-size: 1.32rem; font-weight: 800; color: var(--ze-text); margin-bottom: 12px; }
.ze-sub-card p { color: var(--ze-text-light); font-size: .98rem; }
/* 流程步骤 */
.ze-flow-wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 24px 0 12px; }
.ze-flow-item { background: rgba(255,253,247,.5); border: 1px dashed rgba(217,164,65,.45); border-radius: 16px; padding: 26px 20px; text-align: center; }
.ze-flow-item .flow-id { display: inline-block; font-size: 1.1rem; width: 44px; height: 44px; line-height: 44px; border-radius: 50%; background: var(--ze-brand); color: #FFF; font-weight: 800; margin-bottom: 14px; }
.ze-flow-item h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.ze-flow-item p { font-size: .86rem; color: var(--ze-text-light); }
/* 相关推荐卡片 */
.ze-article-card { background: var(--ze-card); border: 1px solid var(--ze-line); border-radius: var(--ze-radius-md); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--ze-shadow); transition: transform .25s ease, box-shadow .25s ease; height: 100%; }
.ze-article-card:hover { transform: translateY(-5px); box-shadow: var(--ze-shadow-hover); }
.ze-article-card__thumb { height: 160px; overflow: hidden; }
.ze-article-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ze-article-card:hover .ze-article-card__thumb img { transform: scale(1.04); }
.ze-article-card__body { padding: 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.ze-article-card .meta-line { display: flex; justify-content: space-between; align-items: center; color: var(--ze-text-soft); font-size: .78rem; }
.ze-article-card .meta-line .z-cat { background: rgba(31,70,50,.1); color: var(--ze-brand); border-radius: 999px; padding: 4px 11px; font-size: .78rem; }
.ze-article-card h3 { font-size: 1.05rem; font-weight: 700; line-height: 1.6; color: var(--ze-text); }
.ze-article-card p { font-size: .88rem; color: var(--ze-text-light); line-height: 1.6; }
.ze-article-card .more-link { margin-top: auto; padding-top: 8px; display: inline-flex; align-items: center; gap: 6px; color: var(--ze-brand); font-weight: 600; font-size: .93rem; }
/* FAQ */
.ze-faq-wrap { max-width: 980px; margin: 0 auto; }
.ze-faq-item { background: var(--ze-card); border: 1px solid var(--ze-line); border-radius: 18px; margin-bottom: 16px; overflow: hidden; box-shadow: var(--ze-shadow); transition: border-color .25s ease; }
.ze-faq-item.is-open { border-color: rgba(31,70,50,.4); box-shadow: 0 14px 36px rgba(31,70,50,.08); }
.ze-faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 22px 58px 22px 26px; cursor: pointer; position: relative; display: block; color: var(--ze-text); font-weight: 700; font-size: 1.03rem; line-height: 1.7; border-radius: 18px; transition: background .25s ease; }
.ze-faq-q .qx { position: absolute; right: 24px; top: 50%; transform: translateY(-50%); width: 30px; height: 30px; border-radius: 50%; background: rgba(31,70,50,.1); display: flex; align-items: center; justify-content: center; font-size: .9rem; transition: all .3s; color: var(--ze-brand); }
.ze-faq-item.is-open .ze-faq-q .qx { background: var(--ze-gold); color: var(--ze-text); }
.ze-faq-item.is-open .ze-faq-q .qx .fa-plus { display: none; }
.ze-faq-item .qx .fa-minus { display: none; }
.ze-faq-item.is-open .qx .fa-minus { display: block; }
.ze-faq-item.is-open .qx .fa-plus { display: none; }
.ze-faq-a { display: none; padding: 0 30px 24px 26px; border-left: 4px solid var(--ze-gold); background: rgba(217,164,65,.02); margin-left: 26px; margin-right: 26px; border-radius: 0 14px 14px 14px; }

.ze-faq-a p { color: var(--ze-text-light); font-size: .95rem; }
/* 双列 CTA 卡片 */
.ze-cta-block { border-radius: 30px; background: linear-gradient(120deg, #1F4632 0%, #12281E 100%); color: #fff; padding: 48px 44px; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; overflow: hidden; position: relative; margin-top: 10px; }
.ze-cta-block::after { content: ""; position: absolute; top: -80px; right: -60px; width: 260px; height: 260px; border-radius: 50%; border: 2px solid rgba(217,164,65,.3); }
.ze-cta-block h2 { font-size: clamp(1.4rem, 2.4vw, 1.95rem); font-weight: 800; letter-spacing: .4px; }
.ze-cta-block p { color: rgba(255,255,255,.78); margin-top: 8px; max-width: 560px; line-height: 1.8; }
.ze-cta-block .ze-cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
/* 页脚 */
.ze-footer { background: var(--ze-brand-deep); color: rgba(255,255,255,.82); margin-top: 20px; padding: 72px 0 30px; border-radius: 36px 36px 0 0; }
.ze-footer .ze-brand-copy strong { color: #FFF; }
.ze-footer .ze-brand-copy small { color: rgba(255,255,255,.6); }
.ze-footer h4 { color: var(--ze-gold); font-size: .9rem; font-weight: 700; letter-spacing: 1.6px; margin-bottom: 20px; }
.ze-footer a { color: rgba(255,255,255,.72); }
.ze-footer a:hover { color: var(--ze-gold); }
.ze-footer__brand p { color: rgba(255,255,255,.6); font-size: .92rem; margin-top: 18px; line-height: 1.8; max-width: 380px; }
.ze-footer-col h4 { margin-top: 0; }
.ze-footer-col ul { display: grid; gap: 10px; }
.ze-footer-col li { display: flex; align-items: center; gap: 6px; }
.ze-footer-col li i { color: var(--ze-gold); font-size: .9rem; }
.ze-footer-contact li { color: rgba(255,255,255,.68); font-size: .9rem; }
.ze-footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 50px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: rgba(255,255,255,.45); font-size: .8rem; }
/* 页面主要布局尺寸 */
.ze-main-main { padding: 32px 0 20px; }
.ze-wrapper { position: relative; z-index: 2; }
/* 移动端 */
.menu-trigger { display: none; background: transparent; border: 1px solid var(--ze-line); border-radius: 999px; width: 42px; height: 42px; align-items: center; justify-content: center; color: var(--ze-text); font-size: 1.2rem; cursor: pointer; }
@media (max-width: 960px) {
  .menu-trigger { display: flex; }
  .ze-nav-links { display: none; position: absolute; top: calc(100% + 12px); left: 0; right: 0; background: var(--ze-card); border: 1px solid var(--ze-line); box-shadow: var(--ze-shadow-hover); border-radius: 18px; padding: 16px 12px; z-index: 99; flex-direction: column; align-items: stretch; gap: 8px; }
  .ze-nav-links.is-visible { display: flex; }
  .ze-nav-link { padding: 12px 20px; width: 100%; font-size: 1rem; }
}
@media (max-width: 760px) {
  .ze-area-head { padding: 44px 12px 36px; }
  .ze-info-feature { display: block; padding: 20px; }
  .ze-feature-copy { padding: 20px 4px;}
  .ze-flow-wrap { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .ze-header-panel { top: 0; margin-top: 0; padding: 8px 8px; }
  .ze-header-inner { padding: 10px 12px; }
  .ze-brand-copy strong { font-size: 1.08rem;}
  .ze-btn.is-sm { display: none; }
  .ze-area-head h1 { font-size: 1.7rem; }
  .ze-section { padding: 8px 0 28px; }
  .ze-cta-block { padding: 34px 22px; }
  .ze-flow-wrap { grid-template-columns: 1fr; }
  .ze-footer { padding: 48px 0 20px; border-radius: 28px 28px 0 0; }
}
.ze-brand-copy small{display:block;}

/* roulang page: category1 */
:root{
  --bg:#F3EEE2;
  --green:#1F4632;
  --dark:#12281E;
  --green-2:#3C6B4A;
  --gold:#D9A441;
  --gold-deep:#B9892E;
  --copper:#B56A3A;
  --card:#FFFDF7;
  --line:#E2D8C3;
  --muted:#6A7C70;
  --text:#21332A;
  --radius-lg:24px;
  --radius-md:15px;
  --radius-sm:10px;
  --shadow:0 12px 30px rgba(24,53,38,.07);
  --shadow-lg:0 22px 50px rgba(24,53,38,.12);
  --container:1240px;
}
*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:"Noto Sans SC","PingFang SC","Microsoft YaHei","Hiragino Sans GB","Helvetica Neue",Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.8;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block;}
a{text-decoration:none;color:inherit;}
button,input,textarea{font:inherit;}
h1,h2,h3,h4,h5,p,ul,ol,figure{margin:0;}
ul{list-style:none;padding:0;}
:focus-visible{outline:2px solid var(--gold);outline-offset:3px;border-radius:6px;}

body{background:var(--bg);}
.grid-container{max-width:var(--container);}
a:hover{color:var(--green);}

/* 通用按钮 */
.ze-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  padding:12px 22px;border-radius:12px;font-weight:600;font-size:.95rem;
  transition:all .25s ease;cursor:pointer;line-height:1.4;
}
.ze-btn--gold{background:var(--gold);color:#1d2b21;border:1px solid var(--gold);}
.ze-btn--gold:hover{background:var(--gold-deep);border-color:var(--gold-deep);color:#fff;transform:translateY(-2px);box-shadow:0 12px 30px rgba(217,164,65,.4);}
.ze-btn--ghost{background:rgba(255,255,255,.05);color:#fff;border:1px solid rgba(255,255,255,.45);}
.ze-btn--ghost:hover{background:rgba(255,255,255,.15);color:#fff;border-color:#fff;transform:translateY(-2px);}
.ze-btn--dark{background:var(--dark);color:#fff;border:1px solid var(--dark);}
.ze-btn--dark:hover{background:var(--green);color:#fff;transform:translateY(-2px);box-shadow:0 12px 28px rgba(18,40,30,.2);}
.ze-btn--small{padding:8px 16px;font-size:.87rem;border-radius:10px;}

/* Header / Navigation */
.ze-header-wrap{position:sticky;top:12px;z-index:100;padding:12px 0 8px;}
.ze-nav-panel{
  display:flex;align-items:center;justify-content:space-between;gap:14px;
  background:rgba(255,253,247,.96);
  padding:10px 14px;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:0 10px 24px rgba(31,70,50,.08);
  position:relative;
}
.ze-brand{display:inline-flex;align-items:center;gap:10px;flex-shrink:0;}
.ze-brand-mark{
  width:40px;height:40px;border-radius:12px;
  background:linear-gradient(135deg,var(--green),var(--dark));
  color:#fff;display:flex;align-items:center;justify-content:center;font-size:1rem;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
}
.ze-brand-copy{line-height:1.1;}
.ze-brand-copy strong{display:block;font-size:1.06rem;color:var(--text);white-space:nowrap;}
.ze-brand-copy small{display:block;font-size:.74rem;color:var(--green-2);margin-top:3px;letter-spacing:.05em;}
.ze-nav-links{display:flex;align-items:center;gap:8px;}
.ze-nav-link{
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 14px;border-radius:12px;
  font-size:.87rem;font-weight:600;color:var(--text);
  border:1px solid transparent;
  transition:all .2s ease;white-space:nowrap;
}
.ze-nav-link .nav-i{display:inline-flex;align-items:center;color:var(--green-2);transition:color .2s;}
.ze-nav-link:hover{background:rgba(60,107,74,.08);color:var(--green);}
.ze-nav-link.is-current{background:var(--green);color:#fff;border-color:var(--green);box-shadow:0 8px 18px rgba(31,70,50,.2);}
.ze-nav-link.is-current .nav-i{color:#e8d9a8;}
.ze-nav-cta{margin-left:6px;}
.ze-burger{
  display:none;width:42px;height:42px;align-items:center;justify-content:center;
  border:1px solid var(--line);background:var(--card);border-radius:12px;
  color:var(--green);font-size:1rem;cursor:pointer;transition:all .2s;
}
.ze-burger:hover{background:var(--green);color:#fff;border-color:var(--green);}

/* Section base */
.ze-section{padding:88px 0;}
.ze-section--soft{background:#EAE3D5;}
.ze-section_title-wrap{max-width:860px;margin-bottom:46px;}
.ze-eyebrow{
  display:inline-block;margin-bottom:14px;
  font-size:.78rem;font-weight:700;letter-spacing:.1em;color:var(--green);
  background:rgba(60,107,74,.1);padding:6px 14px;border-radius:999px;
}
.ze-h2{
  font-size:clamp(1.6rem,2.6vw,2.3rem);
  line-height:1.25;color:var(--text);font-weight:800;margin-bottom:14px;
}
.ze-section-desc{font-size:1rem;color:var(--muted);max-width:760px;}
.ze-h3{font-size:1.15rem;line-height:1.5;font-weight:700;color:var(--text);margin-bottom:10px;}

.text-gold{color:var(--gold);}

/* 分类页 Hero */
.ze-cate-hero{
  margin-top:18px;
  background:linear-gradient(110deg,rgba(18,40,30,.94),rgba(31,70,50,.86) 60%,rgba(60,107,74,.84)),url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
  border-radius:30px;
  padding:72px 24px 80px;
  overflow:hidden;position:relative;
  color:#fff;
}
.ze-cate-hero::after{
  content:"";position:absolute;right:-160px;top:40px;width:420px;height:420px;border-radius:50%;
  background:radial-gradient(circle,rgba(217,164,65,.18),transparent 66%);
  pointer-events:none;
}
.ze-breadcrumb{
  position:relative;z-index:2;font-size:.86rem;color:rgba(255,255,255,.7);
  display:flex;align-items:center;gap:8px;margin-bottom:30px;
}
.ze-breadcrumb a{color:rgba(255,255,255,.82);}
.ze-breadcrumb a:hover{color:var(--gold);}
.ze-breadcrumb span{opacity:.6;}
.ze-hero-h1{
  position:relative;z-index:2;
  font-size:clamp(2rem,4vw,3.4rem);line-height:1.18;font-weight:800;
  color:#fff;letter-spacing:-.01em;margin-bottom:18px;
}
.ze-hero-h1 .muted-dot{color:var(--gold);}
.ze-hero-lead{
  position:relative;z-index:2;max-width:640px;
  font-size:clamp(1rem,1.6vw,1.18rem);line-height:1.9;color:rgba(255,255,255,.92);
  margin-bottom:34px;
}
.ze-hero-actions{position:relative;z-index:2;display:flex;gap:14px;flex-wrap:wrap;}

.ze-hero-stats{
  position:relative;z-index:2;
  display:grid;grid-template-columns:repeat(3,1fr);gap:12px;
  margin-top:40px;max-width:760px;
}
.ze-stat-card{
  background:rgba(255,255,255,.09);border:1px solid rgba(255,255,255,.16);
  border-radius:18px;padding:18px 18px;
  backdrop-filter:blur(6px);
}
.ze-stat-card strong{
  display:block;font-size:clamp(1.5rem,2.4vw,2rem);line-height:1.2;color:#fff;
  font-weight:800;margin-bottom:4px;
}
.ze-stat-card strong em{font-style:normal;color:var(--gold);font-size:.75em;margin-left:60px;display:inline-block;margin-left:4px;}
.ze-stat-card span{display:block;font-size:.8rem;color:rgba(255,255,255,.8);line-height:1.6;}

/* 线路导览组合卡片 */
.ze-lines-section{padding:100px 0 80px;}
.ze-line-feature{
  background:var(--card);border:1px solid var(--line);border-radius:22px;
  overflow:hidden;box-shadow:var(--shadow);position:relative;
  display:flex;flex-direction:column;height:100%;min-height:100%;
}
.ze-combi-grid{margin-left:-12px;margin-right:-12px;display:flex;flex-wrap:wrap;}
.ze-line-feature .text-col{padding:32px;flex:1 1 auto;}
.ze-line-feature .img-col{background:#EAE3D5;min-height:220px;}
.ze-line-feature .img-col img{width:100%;height:100%;object-fit:cover;}
.ze-card-tag{
  display:inline-flex;align-items:center;gap:6px;
  background:rgba(60,107,74,.1);color:var(--green);font-size:.76rem;font-weight:700;
  border-radius:999px;padding:5px 12px;margin-bottom:16px;
}
.ze-line-feature h3{font-size:clamp(1.2rem,1.8vw,1.55rem);font-weight:700;line-height:1.4;margin-bottom:14px;}
.ze-line-feature p{color:var(--muted);font-size:.98rem;max-width:560px;}
.ze-list-mini{margin-top:18px;display:grid;gap:8px;}
.ze-list-mini li{position:relative;padding-left:24px;font-size:.93rem;color:var(--text);}
.ze-list-mini li i{position:absolute;left:0;top:3px;color:var(--gold-deep);font-size:.85rem;}
.ze-stack-item{
  background:var(--card);border:1px solid var(--line);border-radius:20px;
  padding:26px;box-shadow:var(--shadow);margin-bottom:22px;transition:all .25s ease;
}
.ze-stack-item:last-child{margin-bottom:0;}
.ze-stack-item:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg);border-color:var(--green-2);}
.ze-stack-icon{
  width:42px;height:42px;border-radius:11px;color:#fff;
  background:var(--green);display:flex;align-items:center;justify-content:center;
  font-size:1rem;margin-bottom:14px;
}
.ze-stack-item h4{font-size:1.08rem;font-weight:700;margin-bottom:8px;color:var(--text);}
.ze-stack-item p{color:var(--muted);font-size:.9rem;line-height:1.7;}
.cell.large-5 .ze-stack-item{height:calc(50% - 11px);}
.cell.large-5{display:flex;flex-direction:column;}

/* 班列产品 */
.ze-product-section{background:linear-gradient(180deg,#EAE3D5,#F3EEE2);}
.ze-product-grid{margin-bottom:60px;}
.ze-product-card{
  background:var(--card);border:1px solid var(--line);border-radius:22px;
  padding:34px 28px;box-shadow:var(--shadow);height:100%;
  display:flex;flex-direction:column;transition:all .25s ease;position:relative;overflow:hidden;
}
.ze-product-card::before{
  content:"";position:absolute;left:0;right:15%;top:0;height:4px;border-radius:0 0 8px 8px;
  background:linear-gradient(90deg,var(--green),var(--gold));opacity:0;transition:opacity .25s;
}
.ze-product-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg);}
.ze-product-card:hover::before{opacity:1;}
.ze-product-icon{
  width:50px;height:50px;border-radius:14px;font-size:1.2rem;
  background:var(--green);color:#fff;display:flex;align-items:center;justify-content:center;
  margin-bottom:18px;
}
.ze-product-card h3{font-size:1.22rem;color:var(--text);margin-bottom:10px;font-weight:700;}
.ze-product-card p{color:var(--muted);font-size:.93rem;flex:1;}
.ze-product-note{margin-top:20px;font-size:.82rem;color:var(--green-2);border-top:1px dashed var(--line);padding-top:12px;}
.ze-product-note i{margin-right:4px;color:var(--gold-deep);}

/* 流程 */
.ze-flow-band{
  background:var(--dark);border-radius:28px;padding:60px 32px 46px;
  color:#fff;position:relative;overflow:hidden;
}
.ze-flow-band::before{
  content:"";position:absolute;top:-140px;right:-140px;width:360px;height:360px;border-radius:50%;
  background:radial-gradient(circle,rgba(217,164,65,.2),transparent 60%);
}
.ze-flow-step{position:relative;counter-reset:none;padding:0 8px;}
.ze-step-card{
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.14);
  padding:26px 20px;border-radius:20px;height:100%;transition:all .25s ease;position:relative;
}
.ze-step-card:hover{background:rgba(255,255,255,.1);transform:translateY(-3px);}
.ze-step-num{
  display:block;text-align:right;font-weight:800;font-size:2.2rem;line-height:1;color:var(--gold);
  margin-bottom:14px;opacity:.9;
}
.ze-step-card h4{color:#fff;font-size:1.1rem;margin-bottom:8px;font-weight:700;}
.ze-step-card p{color:rgba(255,255,255,.74);font-size:.9rem;line-height:1.7;}
.ze-flow-note{
  display:flex;justify-content:space-between;align-items:center;gap:24px;
  margin-top:34px;padding-top:24px;border-top:1px solid rgba(255,255,255,.14);
  font-size:.88rem;color:rgba(255,255,255,.74);
}
.ze-flow-note span{display:inline-flex;align-items:center;gap:9px;}
.ze-flow-note i{color:var(--gold);}

/* 时效 */
.ze-time-wrap{
  background:var(--card);border:1px solid var(--line);border-radius:26px;
  padding:38px 30px;box-shadow:var(--shadow);
}
.ze-time-panel{
  background:linear-gradient(135deg,var(--dark),var(--green));
  padding:28px 26px;border-radius:18px;color:#fff;min-height:100%;
  box-shadow:var(--shadow);
}
.ze-time-panel .ze-panel-h{display:flex;align-items:center;gap:10px;font-weight:700;margin-bottom:12px;color:#fff;}
.ze-time-panel .ze-panel-h i{color:var(--gold);}
.ze-time-panel p{color:rgba(255,255,255,.8);font-size:.93rem;line-height:1.8;}
.ze-time-tips{margin-top:18px;display:flex;flex-direction:column;gap:9px;}
.ze-time-tips li{color:rgba(255,255,255,.72);font-size:.85rem;line-height:1.5;padding-left:20px;position:relative;}
.ze-time-tips li::before{content:"";width:7px;height:7px;border-radius:50%;background:var(--gold);position:absolute;left:0;top:7px;}
.ze-time-visual{background:#F0E9DC;border-radius:18px;overflow:hidden;height:100%;min-height:300px;}
.ze-time-visual img{width:100%;height:100%;object-fit:cover;}
.ze-time-chips{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:28px;}
.ze-time-chip{
  border:1px solid var(--line);background:var(--card);border-radius:16px;padding:16px 16px;
  text-align:left;transition:all .2s ease;
}
.ze-time-chip:hover{border-color:var(--green-2);transform:translateY(-2px);}
.ze-time-chip strong{display:block;font-size:1.15rem;color:var(--text);line-height:1.3;font-weight:800;margin-bottom:5px;}
.ze-time-chip span{font-size:.86rem;color:var(--muted);line-height:1.5;}

/* FAQ */
.ze-faq-wrap{max-width:900px;margin:0 auto;}
.ze-faq-list{list-style:none;}
.ze-faq-list li{
  background:var(--card);border:1px solid var(--line);border-radius:19px;
  margin-bottom:14px;overflow:hidden;transition:border-color .2s,box-shadow .2s;
}
.ze-faq-list li.is-active{border-color:var(--green);box-shadow:var(--shadow);}
.ze-faq-list .accordion-title{
  position:relative;display:flex;align-items:center;justify-content:space-between;gap:20px;
  padding:20px 24px;background:transparent;color:var(--text);
  font-weight:700;font-size:1rem;line-height:1.5;border-bottom:0;
}
.ze-faq-list .accordion-title::before{display:none;}
.ze-faq-list .accordion-title:hover{background:rgba(60,107,74,.04);color:var(--green);}
.ze-faq-list .accordion-title .fa-plus{
  color:var(--green-2);flex-shrink:0;font-size:.9rem;width:28px;height:28px;
  background:rgba(60,107,74,.1);border-radius:9px;
  display:flex;align-items:center;justify-content:center;
  transition:transform .25s ease,background .25s;
}
.ze-faq-list li.is-active .accordion-title .fa-plus{transform:rotate(135deg);color:#fff;background:var(--gold);}
.ze-faq-list .accordion-content{
  border-top:1px solid var(--line);padding:20px 24px 24px;background:var(--card);
  color:var(--muted);font-size:.95rem;line-height:1.9;
}
.ze-faq-list .accordion-content:not([aria-hidden="true"]){display:block;}
/* Foundation sometimes adds arrows; adjust layout */
.ze-faq-list .accordion-item .accordion-content{display:none;}
.ze-faq-list .accordion-item.is-active .accordion-content{display:block;}

/* CTA */
.ze-cta-band{padding-top:0;}
.ze-cta-card{
  background:linear-gradient(120deg,var(--dark),var(--green) 70%,#315b3f);
  border-radius:30px;padding:48px 42px;display:flex;align-items:center;justify-content:space-between;gap:32px;
  color:#fff;box-shadow:var(--shadow-lg);position:relative;overflow:hidden;
}
.ze-cta-card::after{
  content:"";position:absolute;right:-60px;bottom:-70px;width:240px;height:240px;border-radius:50%;
  background:radial-gradient(circle,rgba(217,164,65,.28),transparent 62%);
}
.ze-cta-copy{position:relative;z-index:1;max-width:700px;}
.ze-cta-copy h2{color:#fff;font-size:clamp(1.4rem,2vw,2rem);font-weight:800;margin-bottom:12px;}
.ze-cta-copy p{color:rgba(255,255,255,.82);font-size:.98rem;}
.ze-cta-actions{position:relative;z-index:1;display:flex;flex-wrap:wrap;gap:12px;}
.ze-cta-mail{
  display:inline-flex;align-items:center;gap:10px;background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.2);padding:12px 20px;border-radius:14px;
  color:#fff;font-size:.9rem;margin-top:16px;transition:all .2s;
}
.ze-cta-mail:hover{background:rgba(255,255,255,.16);color:#fff;}

/* Related */
.ze-related-card{
  background:var(--card);border:1px solid var(--line);border-radius:20px;
  overflow:hidden;height:100%;display:flex;flex-direction:column;
  box-shadow:var(--shadow);transition:all .25s ease;
}
.ze-related-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);}
.ze-related-thumb{aspect-ratio:16/9;background:#DAD2BF;overflow:hidden;position:relative;}
.ze-related-thumb img{width:100%;height:100%;object-fit:cover;}
.ze-related-body{padding:24px 22px 20px;display:flex;flex-direction:column;flex:1;}
.ze-related-meta{display:flex;align-items:center;gap:12px;font-size:.78rem;color:var(--muted);margin-bottom:8px;}
.ze-related-meta span{background:rgba(60,107,74,.1);color:var(--green);padding:3px 10px;border-radius:999px;font-weight:600;}
.ze-related-body h3{font-size:1.04rem;font-weight:700;line-height:1.55;margin-bottom:10px;}
.ze-related-body p{font-size:.86rem;color:var(--muted);line-height:1.75;flex:1;}
.ze-related-more{display:inline-flex;align-items:center;gap:6px;color:var(--green);font-size:.86rem;font-weight:600;margin-top:16px;transition:gap .2s;}
.ze-related-more:hover{gap:10px;}
.ze-related-more:hover i{color:var(--gold-deep);}
/* back link */
.ze-back-link{display:inline-flex;align-items:center;gap:8px;margin-top:36px;font-size:.88rem;font-weight:600;}
.ze-back-link i{color:var(--gold-deep);}

/* Footer */
.ze-footer{
  background:#12281E;color:rgba(255,255,255,.76);padding:68px 0 30px;
  margin-top:100px;
  background-image:linear-gradient(135deg,#0E211A,#183B2A);border-radius:34px 34px 0 0;
  margin-left:0;margin-right:0;
}
.ze-footer .grid-container{max-width:var(--container);}
.ze-footer-logo{margin-bottom:16px;}
.ze-footer-logo .ze-brand-mark{background:rgba(255,255,255,.1);color:var(--gold);box-shadow:none;}
.ze-footer-logo .ze-brand-copy strong{color:#fff;display:inline;}
.ze-footer-logo .ze-brand-copy small{color:rgba(255,255,255,.6);}
.ze-footer-col h4{
  font-size:.8rem;color:#fff;letter-spacing:.15em;text-transform:uppercase;font-weight:700;
  margin-bottom:14px;
}
.ze-footer-col ul{display:grid;gap:4px;}
.ze-footer-col li{color:rgba(255,255,255,.66);line-height:1.6;}
.ze-footer-col a{color:rgba(255,255,255,.7);transition:color .2s,padding-left .2s;display:inline-flex;align-items:center;gap:6px;}
.ze-footer-col a:hover{color:var(--gold);padding-left:3px;}
.ze-footer-brand p{margin-top:10px;font-size:.85rem;line-height:1.8;color:rgba(255,255,255,.6);}
.ze-footer-contact li{display:flex;align-items:flex-start;gap:8px;line-height:1.6;margin-bottom:4px;}
.ze-footer-contact i{color:var(--gold);margin-top:6px;font-size:.8rem;}
.ze-footer-bottom{
  margin-top:38px;padding-top:26px;border-top:1px solid rgba(255,255,255,.12);
  display:flex;flex-direction:column;gap:8px;justify-content:space-between;
  color:rgba(255,255,255,.48);font-size:.82rem;
}
.ze-footer-brand p strong{color:#fff;}

@media screen and (max-width: 1100px){
  .ze-nav-links{
    position:absolute;top:calc(100% + 14px);left:0;right:0;z-index:50;
    background:var(--card);border:1px solid var(--line);border-radius:18px;
    box-shadow:var(--shadow-lg);padding:16px;
    flex-direction:column;align-items:stretch;display:none;
  }
  .ze-nav-links.is-open{display:flex;}
  .ze-burger{display:inline-flex;}
  .ze-nav-link{padding:13px 14px;justify-content:flex-start;border-radius:12px;}
  .ze-nav-link:hover{background:rgba(31,70,50,.06);}
  .ze-header-wrap{top:8px;}
}
@media screen and (max-width: 900px){
  .ze-cate-hero{padding:52px 18px 58px;border-radius:22px;}
  .ze-section{padding:66px 0;}
  .ze-cta-card{padding:34px 26px;flex-direction:column;align-items:flex-start;}
  .ze-footer{margin-top:70px;}
}
@media screen and (max-width: 740px){
  .ze-nav-panel{padding:8px 10px;}
  .ze-brand-copy strong{font-size:.96rem;}
  .ze-brand-copy small{display:none;}
  .ze-brand-mark{width:36px;height:36px;font-size:.9rem;}
  .ze-nav-cta span{display:none;}
  .ze-nav-cta{padding:9px 12px;font-size:.82rem;}
  .ze-nav-links{background:var(--card);}
  .ze-hero-stats{grid-template-columns:1fr;gap:10px;}
  .ze-stat-card strong{font-size:1.6rem;}
  .ze-product-card{padding:26px 20px;}
  .ze-flow-band{margin-left:-14px;margin-right:-14px;border-radius:20px;padding:42px 20px 32px;}
  .ze-time-wrap{padding:22px 16px;}
  .ze-time-chips{grid-template-columns:1fr;}
  .ze-cta-card{padding:30px 20px;}
  .ze-cta-actions .ze-btn{width:100%;}
  .ze-related-body{padding:20px;}
  .ze-footer{padding-top:50px;border-radius:26px 26px 0 0;}
  .ze-footer-bottom{align-items:flex-start;}
}
@media screen and (max-width: 520px){
  .ze-section{padding:52px 0;}
  .ze-hero-h1{font-size:2rem;}
  .ze-hero-actions .ze-btn{width:100%;}
  .ze-time-visual{min-height:220px;}
  .ze-stack-item{padding:22px 18px;}
  .ze-card-tag{margin-bottom:10px;}
}

/* roulang page: category3 */
:root{
      --ze-green-950:#0E2018;
      --ze-green-900:#12281E;
      --ze-green-800:#1F4632;
      --ze-green-600:#3C6B4A;
      --ze-gold:#D9A441;
      --ze-gold-light:#E9C47A;
      --ze-sand:#F3EEE2;
      --ze-warm:#FFFDF7;
      --ze-line:#E2D8C3;
      --ze-text:#21332A;
      --ze-muted:#6B7C72;
      --ze-copper:#B56A3A;
      --ze-radius-lg:26px;
      --ze-radius-md:16px;
      --ze-radius-sm:10px;
      --ze-shadow-soft:0 12px 30px rgba(24,53,38,.06);
      --ze-shadow-hover:0 20px 44px rgba(18,40,30,.13);
      --ze-trans:all .22s ease;
    }

    *,*::before,*::after{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      background:var(--ze-sand);
      color:var(--ze-text);
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans CJK SC","Source Han Sans SC",-apple-system,BlinkMacSystemFont,sans-serif;
      font-size:1rem;
      line-height:1.8;
      -webkit-font-smoothing:antialiased;
    }
    img{display:block;max-width:100%;}
    a{color:inherit;text-decoration:none;transition:var(--ze-trans);}
    ul,ol,li{list-style:none;margin:0;padding:0;}
    h1,h2,h3,h4,h5,p{margin:0 0 1em;}
    button,input,textarea,select{font-family:inherit;}
    .grid-container{max-width:1240px;}
    .ze-section{padding:88px 20px;}
    .ze-section--compact{padding:48px 20px 86px;}

    ::selection{background:var(--ze-gold);color:var(--ze-green-950);}

    :focus-visible{
      outline:2px solid var(--ze-gold);
      outline-offset:3px;
      border-radius:8px;
    }

    .ze-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      padding:13px 21px;
      border-radius:var(--ze-radius-sm);
      font-weight:700;
      font-size:.94rem;
      line-height:1.2;
      border:2px solid transparent;
      cursor:pointer;
      transition:var(--ze-trans);
      color:var(--ze-green-950);
    }
    .ze-btn:hover{
      transform:translateY(-2px);
      box-shadow:0 10px 22px rgba(24,53,38,.13);
    }
    .ze-btn:active{
      transform:translateY(1px);
      box-shadow:none;
    }
    .ze-btn--gold{background:var(--ze-gold);}
    .ze-btn--gold:hover{background:var(--ze-gold-light);}
    .ze-btn--ghost-light{background:transparent;border-color:rgba(255,255,255,.75);color:#fff;}
    .ze-btn--ghost-light:hover{background:rgba(255,255,255,.11);border-color:#fff;color:#fff;}
    .ze-btn--dark-green{background:var(--ze-green-800);color:#fff;}
    .ze-btn--dark-green:hover{background:var(--ze-green-950);color:#fff;}

    /* Header */
    .ze-header{
      position:sticky;
      top:10px;
      z-index:90;
      width:calc(100% - 24px);
      max-width:1280px;
      margin:12px auto 24px;
      background:var(--ze-green-900);
      border-radius:22px;
      box-shadow:0 22px 50px rgba(18,40,30,.24);
      border:1px solid rgba(255,255,255,.06);
    }
    .ze-header-inner{
      position:relative;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 16px 12px 20px;
    }
    .ze-brand{
      display:inline-flex;
      align-items:center;
      gap:11px;
      min-width:0;
    }
    .ze-brand-mark{
      width:42px;
      height:42px;
      border-radius:13px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(135deg,var(--ze-gold) 0%,#EDC982 100%);
      color:var(--ze-green-950);
      font-size:1.3rem;
      box-shadow:0 6px 14px rgba(0,0,0,.18);
    }
    .ze-brand-copy{display:flex;flex-direction:column;line-height:1.2;min-width:0;}
    .ze-brand-copy strong{
      font-size:1.16rem;
      color:#fff;
      letter-spacing:.01em;
      white-space:nowrap;
    }
    .ze-brand-copy small{
      color:rgba(255,255,255,.65);
      font-size:.78rem;
      letter-spacing:.08em;
      margin-top:4px;
      white-space:nowrap;
    }
    .ze-nav-links{
      display:flex;
      align-items:center;
      gap:6px;
      justify-content:center;
      flex-wrap:nowrap;
      flex:1;
    }
    .ze-nav-link{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:9px 15px;
      border-radius:999px;
      color:rgba(255,255,255,.87);
      font-size:.9rem;
      font-weight:600;
      border:1px solid transparent;
      letter-spacing:.02em;
    }
    .ze-nav-link .nav-i{font-size:.82rem;color:var(--ze-gold);}
    .ze-nav-link:hover{
      background:rgba(255,255,255,.08);
      color:#fff;
    }
    .ze-nav-link.is-current{
      background:var(--ze-gold);
      color:var(--ze-green-950);
    }
    .ze-nav-link.is-current .nav-i{color:var(--ze-green-900);}
    .ze-header-cta{
      flex-shrink:0;
      font-size:.88rem;
      padding:11px 17px;
    }
    .ze-burger{
      display:none;
      width:42px;
      height:42px;
      border-radius:12px;
      border:1px solid rgba(255,255,255,.18);
      background:rgba(255,255,255,.04);
      color:#fff;
      font-size:1.1rem;
      align-items:center;
      justify-content:center;
      cursor:pointer;
    }
    .ze-burger:hover{
      background:var(--ze-gold);
      color:var(--ze-green-950);
    }

    /* Hero / category page banner */
    .ze-page-hero{
      padding:40px 20px 0;
    }
    .ze-page-hero-inner{
      position:relative;
      border-radius:30px;
      overflow:hidden;
      padding:58px 46px 54px;
      background:linear-gradient(115deg,rgba(18,40,30,.97) 0%,rgba(31,70,50,.92) 45%,rgba(14,32,24,.86) 100%),url('/assets/images/backpic/back-2.webp');
      background-size:cover;
      background-position:center;
      color:#fff;
    }
    .ze-page-hero-inner:after{
      content:"";
      position:absolute;
      right:-80px;
      bottom:-100px;
      width:320px;
      height:320px;
      border-radius:50%;
      border:45px solid rgba(217,164,65,.08);
      pointer-events:none;
    }
    .ze-crumb{
      position:relative;
      z-index:1;
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:4px;
      font-size:.85rem;
      color:rgba(255,255,255,.7);
      margin-bottom:30px;
    }
    .ze-crumb a{color:rgba(255,255,255,.82);}
    .ze-crumb a:hover{color:var(--ze-gold);}
    .ze-page-hero h1{
      z-index:1;
      position:relative;
      margin:0 0 18px;
      font-size:clamp(2rem,4.3vw,3.2rem);
      font-weight:800;
      letter-spacing:-.02em;
      color:#fff;
      max-width:15em;
    }
    .ze-hero-lead{
      z-index:1;
      position:relative;
      max-width:780px;
      font-size:clamp(1.02rem,1.6vw,1.18rem);
      line-height:1.9;
      color:rgba(255,255,255,.88);
      margin:0;
    }
    .ze-hero-tags{
      z-index:1;
      position:relative;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:28px;
    }
    .ze-hero-tags span{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:9px 15px;
      border-radius:999px;
      background:rgba(255,255,255,.1);
      border:1px solid rgba(255,255,255,.18);
      color:#fff;
      font-size:.83rem;
      font-weight:600;
    }
    .ze-hero-tags i{
      color:var(--ze-gold);
    }

    /* Generic section headings */
    .ze-eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--ze-green-600);
      font-size:.84rem;
      font-weight:700;
      letter-spacing:.14em;
      margin:0 0 12px;
      text-transform:uppercase;
    }
    .ze-eyebrow i{color:var(--ze-gold);}
    .ze-section-head{
      margin:0 auto 42px;
      max-width:720px;
      text-align:center;
    }
    .ze-section-head h2{
      margin:0 0 14px;
      font-size:clamp(1.55rem,2.5vw,2.2rem);
      font-weight:800;
      letter-spacing:-.01em;
      color:var(--ze-green-900);
    }
    .ze-section-head p{
      color:var(--ze-muted);
      font-size:1.02rem;
      margin:0;
    }

    /* Cards */
    .ze-card{
      background:var(--ze-warm);
      border:1px solid var(--ze-line);
      border-radius:var(--ze-radius-lg);
      transition:var(--ze-trans);
    }
    .ze-card:hover{
      transform:translateY(-3px);
      box-shadow:var(--ze-shadow-hover);
      border-color:rgba(31,70,50,.4);
    }
    .ze-col-stretch{
      display:flex;
    }
    .ze-col-stretch > .ze-card{
      width:100%;
    }
    .ze-feature-layout{
      display:flex;
      align-items:stretch;
      height:100%;
      gap:26px;
      flex-wrap:wrap;
    }
    .ze-feature-media{
      flex:0 1 44%;
      min-width:230px;
      min-height:250px;
      border-radius:20px;
      overflow:hidden;
      position:relative;
      background:var(--ze-line);
    }
    .ze-feature-media img{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:cover;
    }
    .ze-feature-media:after{
      content:"\f0d1";
      font-family:"Font Awesome 6 Free";
      font-weight:900;
      position:absolute;
      left:16px;
      bottom:16px;
      width:50px;
      height:50px;
      border-radius:15px;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:1.1rem;
      color:var(--ze-green-950);
      background:var(--ze-gold);
    }
    .ze-feature-body{
      flex:1 1 46%;
      display:flex;
      flex-direction:column;
      justify-content:center;
      padding:8px 8px 8px 2px;
    }
    .ze-feature-body h3{
      font-size:1.34rem;
      line-height:1.45;
      margin:0 0 14px;
      color:var(--ze-green-900);
    }
    .ze-feature-body p{
      color:var(--ze-muted);
      font-size:.98rem;
      margin:0 0 16px;
    }
    .ze-dot-list{
      display:grid;
      gap:9px;
      margin:0 0 18px;
    }
    .ze-dot-list li{
      position:relative;
      padding-left:18px;
      font-size:.95rem;
      color:var(--ze-text);
    }
    .ze-dot-list li:before{
      content:"";
      position:absolute;
      left:0;
      top:11px;
      width:7px;
      height:7px;
      background:var(--ze-gold);
      border-radius:50%;
    }

    .ze-sm-card{
      padding:26px;
      display:flex;
      flex-direction:column;
      height:100%;
    }
    .ze-sm-card .ze-sm-icon{
      width:54px;
      height:54px;
      border-radius:16px;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:1.35rem;
      color:var(--ze-green-900);
      background:var(--ze-sand);
      border:1px solid var(--ze-line);
      margin-bottom:20px;
    }
    .ze-sm-card h3{
      font-size:1.15rem;
      line-height:1.45;
      color:var(--ze-green-900);
      margin:0 0 10px;
    }
    .ze-sm-card p{
      color:var(--ze-muted);
      font-size:.93rem;
      margin:0 0 14px;
    }
    .ze-sm-list{
      margin-top:8px;
      display:grid;
      gap:10px;
      border-top:1px dashed var(--ze-line);
      padding-top:16px;
    }
    .ze-sm-list li{
      display:flex;
      gap:9px;
      font-size:.91rem;
      color:var(--ze-text);
      line-height:1.55;
    }
    .ze-sm-list i{
      color:var(--ze-green-600);
      margin-top:4px;
      font-size:.82rem;
    }

    /* Steps */
    .ze-steps{
      background:var(--ze-warm);
      padding:88px 20px;
      border-top:1px solid var(--ze-line);
      border-bottom:1px solid var(--ze-line);
    }
    .ze-steps .ze-card{
      height:100%;
      padding:27px;
      border-radius:22px;
      position:relative;
      overflow:hidden;
    }
    .ze-step-num{
      font-size:2rem;
      font-weight:800;
      color:var(--ze-gold);
      letter-spacing:-.04em;
      margin-bottom:10px;
      display:flex;
      align-items:center;
      gap:10px;
    }
    .ze-step-num small{
      font-size:.78rem;
      font-weight:600;
      color:var(--ze-green-600);
      background:var(--ze-sand);
      padding:4px 10px;
      border-radius:999px;
      letter-spacing:.05em;
    }
    .ze-steps .ze-card h3{
      font-size:1.14rem;
      line-height:1.5;
      color:var(--ze-green-900);
      margin:0 0 9px;
    }
    .ze-steps .ze-card p{
      color:var(--ze-muted);
      font-size:.91rem;
      margin:0;
    }

    /* Compliance audit band */
    .ze-audit-band{
      padding:0 20px 88px;
    }
    .ze-audit-panel{
      border-radius:30px;
      background:linear-gradient(125deg,var(--ze-green-950) 0%,var(--ze-green-900) 45%,#1E4A33 100%);
      padding:52px 44px;
      color:#fff;
      box-shadow:0 24px 52px rgba(18,40,30,.17);
      position:relative;
      overflow:hidden;
    }
    .ze-audit-panel:before{
      content:"";
      position:absolute;
      left:-80px;
      top:-80px;
      width:210px;
      height:210px;
      border-radius:50%;
      background:rgba(217,164,65,.09);
    }
    .ze-audit-copy{
      position:relative;
      z-index:1;
      padding-right:12px;
    }
    .ze-audit-copy .ze-eyebrow{
      color:var(--ze-gold);
    }
    .ze-audit-copy h2{
      color:#fff;
      font-size:clamp(1.5rem,2.4vw,2.1rem);
      font-weight:800;
      line-height:1.4;
      letter-spacing:-.01em;
      margin:0 0 14px;
    }
    .ze-audit-copy > p{
      color:rgba(255,255,255,.76);
      font-size:.98rem;
    }
    .ze-tag-cloud{
      display:flex;
      flex-wrap:wrap;
      gap:9px;
      margin-top:22px;
    }
    .ze-tag-cloud span{
      display:inline-block;
      padding:7px 13px;
      border:1px solid rgba(255,255,255,.2);
      background:rgba(255,255,255,.04);
      border-radius:999px;
      color:rgba(255,255,255,.88);
      font-size:.8rem;
      transition:var(--ze-trans);
    }
    .ze-tag-cloud span:hover{
      background:var(--ze-gold);
      border-color:var(--ze-gold);
      color:var(--ze-green-950);
      transform:translateY(-1px);
    }
    .ze-check-list{
      background:var(--ze-warm);
      border-radius:20px;
      padding:10px 20px 16px;
      display:grid;
      gap:2px;
      box-shadow:0 18px 34px rgba(0,0,0,.13);
      color:var(--ze-text);
    }
    .ze-check-list li{
      display:flex;
      gap:14px;
      align-items:flex-start;
      padding:14px 0;
      border-bottom:1px solid var(--ze-line);
      font-size:.91rem;
      line-height:1.75;
    }
    .ze-check-list li:last-child{
      border-bottom:0;
    }
    .ze-check-list b{
      font-weight:800;
      color:var(--ze-green-900);
    }
    .ze-check-num{
      flex:0 0 33px;
      width:33px;
      height:33px;
      border-radius:11px;
      background:var(--ze-green-900);
      color:var(--ze-gold);
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:.82rem;
      font-weight:800;
      margin-top:3px;
    }

    /* Related article cards */
    .ze-related{
      padding:88px 20px;
    }
    .ze-article-card{
      border:1px solid var(--ze-line);
      background:var(--ze-warm);
      border-radius:24px;
      overflow:hidden;
      display:flex;
      flex-direction:column;
      height:100%;
      transition:var(--ze-trans);
    }
    .ze-article-card:hover{
      border-color:var(--ze-green-600);
      transform:translateY(-4px);
      box-shadow:var(--ze-shadow-hover);
    }
    .ze-article-media{
      height:172px;
      overflow:hidden;
      background:var(--ze-line);
    }
    .ze-article-media img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:transform .55s ease;
    }
    .ze-article-card:hover .ze-article-media img{
      transform:scale(1.05);
    }
    .ze-article-body{
      padding:22px 22px 21px;
      display:flex;
      flex-direction:column;
      flex:1;
    }
    .ze-article-meta{
      display:flex;
      align-items:center;
      gap:9px;
      font-size:.78rem;
      color:var(--ze-muted);
      margin-bottom:12px;
    }
    .ze-tag{
      display:inline-block;
      padding:4px 10px;
      font-size:.75rem;
      font-weight:700;
      border-radius:999px;
      background:var(--ze-sand);
      border:1px solid var(--ze-line);
      color:var(--ze-green-800);
      letter-spacing:.02em;
    }
    .ze-article-body h3{
      font-size:1.06rem;
      font-weight:700;
      line-height:1.6;
      margin:0 0 10px;
      color:var(--ze-green-900);
    }
    .ze-article-body p{
      font-size:.87rem;
      line-height:1.75;
      color:var(--ze-muted);
      margin:0 0 14px;
      display:-webkit-box;
      -webkit-line-clamp:2;
      -webkit-box-orient:vertical;
      overflow:hidden;
    }
    .ze-readmore{
      margin-top:auto;
      display:inline-flex;
      align-items:center;
      gap:7px;
      font-weight:700;
      font-size:.9rem;
      color:var(--ze-green-800);
    }
    .ze-readmore i{
      font-size:.65rem;
      transition:var(--ze-trans);
    }
    .ze-article-card:hover .ze-readmore{
      color:var(--ze-gold);
    }
    .ze-article-card:hover .ze-readmore i{
      transform:translateX(4px);
      color:var(--ze-gold);
    }

    /* FAQ */
    .ze-faq-section{
      padding:0 20px 88px;
    }
    .ze-accordion{
      background:transparent;
      display:grid;
      gap:14px;
      margin:36px 0 0;
      max-width:920px;
      margin-left:auto;
      margin-right:auto;
    }
    .ze-accordion .accordion-item{
      background:var(--ze-warm);
      border:1px solid var(--ze-line);
      border-radius:18px;
      overflow:hidden;
      padding:0 22px 0 0;
      transition:border-color .25s ease;
    }
    .ze-accordion .accordion-item.is-active{
      border-color:var(--ze-green-800);
      box-shadow:var(--ze-shadow-soft);
    }
    .ze-accordion .accordion-title{
      background:var(--ze-warm);
      border:0;
      color:var(--ze-text);
      font-size:1rem;
      font-weight:700;
      padding:18px 20px 18px 22px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      border-radius:18px;
      position:relative;
    }
    .ze-accordion .accordion-title:hover{
      background:var(--ze-warm);
      color:var(--ze-green-800);
    }
    .ze-accordion .accordion-title:before{
      content:"";
      position:absolute;
      left:0;
      top:20px;
      bottom:20px;
      width:4px;
      border-radius:4px;
      background:var(--ze-gold);
      opacity:.6;
      transition:var(--ze-trans);
    }
    .ze-accordion .accordion-title:after{
      content:"\f107";
      font-family:"Font Awesome 6 Free";
      font-weight:900;
      font-size:1rem;
      color:var(--ze-green-800);
      width:32px;
      height:32px;
      border-radius:50%;
      background:var(--ze-sand);
      border:1px solid var(--ze-line);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      transition:var(--ze-trans);
    }
    .ze-accordion .accordion-item.is-active .accordion-title:after{
      transform:rotate(180deg);
      background:var(--ze-gold);
      border-color:var(--ze-gold);
      color:var(--ze-green-950);
    }
    .ze-accordion .accordion-content{
      background:var(--ze-warm);
      padding:0 44px 10px 48px;
      border-top:0;
      color:var(--ze-muted);
      font-size:.94rem;
      line-height:1.8;
    }
    .ze-accordion .accordion-content p{
      margin:0;
    }

    /* CTA */
    .ze-cta{
      padding:0 20px 90px;
    }
    .ze-cta-card{
      max-width:1120px;
      margin:0 auto;
      border-radius:30px;
      background:linear-gradient(115deg,#EAD7AA 0%,var(--ze-gold-light) 35%,#D5A85A 100%);
      padding:46px 46px 46px 52px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:28px;
      flex-wrap:wrap;
      box-shadow:0 24px 54px rgba(138,92,34,.18);
      color:var(--ze-green-950);
      position:relative;
      overflow:hidden;
    }
    .ze-cta-card:after{
      content:"";
      position:absolute;
      right:-55px;
      top:-55px;
      width:180px;
      height:180px;
      border-radius:50%;
      border:30px solid rgba(18,40,30,.05);
    }
    .ze-cta-card h2{
      font-size:clamp(1.4rem,2.2vw,1.85rem);
      font-weight:800;
      letter-spacing:-.01em;
      margin:0 0 8px;
      max-width:520px;
      position:relative;
      z-index:1;
    }
    .ze-cta-card p{
      font-size:.95rem;
      font-weight:500;
      color:rgba(18,40,30,.75);
      max-width:580px;
      margin:0;
      position:relative;
      z-index:1;
    }
    .ze-cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
      position:relative;
      z-index:1;
    }

    /* Footer */
    .ze-footer{
      background:var(--ze-green-950);
      color:rgba(255,255,255,.72);
      padding:70px 20px 28px;
    }
    .ze-footer-logo{
      margin-bottom:18px;
    }
    .ze-footer p{
      font-size:.87rem;
      line-height:1.85;
      margin:0 0 10px;
      max-width:380px;
    }
    .ze-footer-col h4{
      color:#fff;
      font-size:.86rem;
      letter-spacing:.16em;
      text-transform:uppercase;
      margin-bottom:16px;
      font-weight:700;
    }
    .ze-footer-col ul{
      display:grid;
      gap:8px;
      font-size:.86rem;
    }
    .ze-footer-col li{
      line-height:1.9;
      color:rgba(255,255,255,.7);
    }
    .ze-footer-col a:hover{
      color:var(--ze-gold);
    }
    .ze-footer-col a i{
      margin-right:6px;
      font-size:.74rem;
      color:var(--ze-gold);
    }
    .ze-footer-contact i{
      width:20px;
      color:var(--ze-gold);
    }
    .ze-footer-bottom{
      border-top:1px solid rgba(255,255,255,.12);
      margin-top:50px;
      padding-top:22px;
      display:flex;
      flex-wrap:wrap;
      justify-content:space-between;
      gap:12px;
      font-size:.8rem;
      color:rgba(255,255,255,.45);
    }
    .ze-footer-copy p{
      color:rgba(255,255,255,.62);
    }

    /* Responsive */
    @media screen and (max-width:1023px){
      .ze-section{padding:64px 16px;}
      .ze-steps{padding:64px 16px;}
      .ze-related{padding:64px 16px;}
      .ze-audit-band{padding:0 16px 64px;}
      .ze-cta{padding:0 16px 70px;}
      .ze-faq-section{padding:0 16px 70px;}
      .ze-header{
        width:calc(100% - 16px);
        margin:8px auto 16px;
      }
      .ze-nav-links{
        display:none;
        position:absolute;
        top:calc(100% + 12px);
        left:12px;
        right:12px;
        flex-direction:column;
        align-items:stretch;
        background:var(--ze-green-900);
        padding:14px;
        gap:8px;
        border-radius:20px;
        box-shadow:0 24px 46px rgba(18,40,30,.34);
        border:1px solid rgba(255,255,255,.08);
      }
      .ze-header.is-open .ze-nav-links{
        display:flex;
      }
      .ze-nav-link{
        border-radius:13px;
        padding:12px 14px;
        font-size:.95rem;
      }
      .ze-header-cta{
        display:none;
      }
      .ze-burger{
        display:flex;
      }
      .ze-header-inner{
        padding:10px 12px 10px 16px;
      }
    }

    @media screen and (max-width:767px){
      .ze-page-hero-inner{
        padding:38px 24px 42px;
      }
      .ze-page-hero{
        padding-left:12px;
        padding-right:12px;
      }
      .ze-feature-layout{
        flex-direction:column;
      }
      .ze-feature-media{
        flex:1 1 230px;
        min-width:100%;
        min-height:220px;
      }
      .ze-audit-panel{
        padding:36px 24px;
      }
      .ze-cta-card{
        padding:34px 24px;
      }
      .ze-cta-actions .ze-btn{
        width:100%;
      }
      .ze-section-head,.ze-section-head--start{
        margin-bottom:28px;
      }
      .ze-footer{
        padding:56px 20px 26px;
      }
      .ze-footer-bottom{
        display:block;
      }
      .ze-footer-bottom span{
        display:block;
        margin-bottom:6px;
      }
      .ze-brand-copy strong{
        font-size:1.06rem;
      }
    }

    @media screen and (max-width:520px){
      body{
        font-size:.96rem;
      }
      .ze-section{
        padding:50px 12px;
      }
      .ze-steps,
      .ze-related{
        padding:50px 12px;
      }
      .ze-audit-band,
      .ze-faq-section,
      .ze-cta{
        padding-left:12px;
        padding-right:12px;
      }
      .ze-page-hero-inner{
        padding:32px 20px 36px;
        border-radius:22px;
      }
      .ze-hero-tags span{
        padding:7px 11px;
        font-size:.78rem;
      }
      .ze-accordion .accordion-title{
        padding:15px 14px 15px 18px;
      }
      .ze-accordion .accordion-content{
        padding-left:38px;
      }
      .ze-brand-copy small{
        font-size:.68rem;
      }
    }
