/* roulang page: index */
:root {
  --brand: #0D7A46;
  --brand-light: #1FA95E;
  --orange: #FF6A2C;
  --ink: #0A0F0D;
  --paper: #F5F3EE;
  --card: #FFFFFF;
  --line: #E6E2D8;
  --muted: #6B7280;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --radius-sm: 0.5rem;
  --shadow-hover: 0 20px 40px -15px rgba(0,0,0,0.15);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; }
input, select, textarea, button { font: inherit; }
.container { max-width: 80rem; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }
.brand-gradient {
  background: linear-gradient(135deg, #0D7A46 0%, #1FA95E 55%, #FF6A2C 130%);
}
.text-brand { color: var(--brand); }
.text-orange { color: var(--orange); }
.bg-brand { background: var(--brand); }
.bg-paper { background: var(--paper); }
.text-muted { color: var(--muted); }

/* ===== Header 导航 ===== */
.site-header { position: sticky; top: 0; z-index: 50; }
.top-brand-bar {
  background: #0A0F0D;
  color: #cfd8d3;
  height: 38px;
  display: flex;
  align-items: center;
}
.top-brand-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}
.top-brand-name {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: #9fd4b5;
  white-space: nowrap;
}
.top-search {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 2px 4px 2px 14px;
  width: 220px;
  height: 26px;
}
.top-search input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.72rem;
  width: 100%;
}
.top-search input::placeholder { color: #9cadb5; }
.top-search button {
  background: var(--orange);
  color: #fff;
  font-size: 0.68rem;
  border-radius: 999px;
  padding: 2px 10px;
  height: 20px;
  line-height: 1;
  transition: background 0.2s;
}
.top-search button:hover { background: #e55a1f; }
.top-tags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: #9fd4b5;
}
.top-tags a { transition: color 0.2s; }
.top-tags a:hover { color: var(--orange); }
.main-nav-wrap {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s;
}
.site-header.scrolled .main-nav-wrap {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.main-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1.5rem;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0D7A46 0%, #1FA95E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 10px rgba(13, 122, 70, 0.3);
}
.logo-text {
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
}
.logo-text small {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}
.main-menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  height: 100%;
}
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 68px;
  padding: 0 1.1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #3c4650;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-link:hover { color: var(--brand); }
.nav-link.active {
  color: var(--brand);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--orange);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--ink);
  transition: background 0.2s;
}
.menu-toggle:hover { background: #f0efe9; }
.mobile-menu {
  display: none;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--line);
}
.mobile-menu a {
  display: block;
  padding: 0.9rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid #f2f1ec;
  color: var(--ink);
}
.mobile-menu a:hover { color: var(--brand); }
.mobile-menu a.active { color: var(--brand); font-weight: 800; }
@media (max-width: 768px) {
  .main-menu { display: none; }
  .menu-toggle { display: flex; }
  .main-nav-inner { height: 56px; }
  .logo-text { font-size: 1.05rem; }
  .top-search { width: 160px; }
  .top-tags { display: none; }
}

/* ===== Hero ===== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #0A0F0D 0%, #123528 60%, #1a4a37 100%);
  color: #fff;
  overflow: hidden;
  padding: 5rem 0 7.5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
  opacity: 0.28;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 46rem;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 106, 44, 0.2);
  border: 1px solid rgba(255, 106, 44, 0.5);
  color: #ffb494;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
.hero-title {
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.hero-title .highlight {
  color: #6fdba0;
}
.hero-desc {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #c2d8cc;
  margin-bottom: 2rem;
  max-width: 40rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #0D7A46 0%, #1FA95E 55%, #FF6A2C 130%);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  min-height: 48px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(13, 122, 70, 0.4);
}
.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 122, 70, 0.5);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-primary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  min-height: 48px;
  transition: all 0.25s ease;
}
.btn-secondary:hover {
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.btn-secondary:active { transform: translateY(0); }
.btn-secondary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}
.hero-badges {
  position: absolute;
  right: 2rem;
  bottom: 5rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.hb-item {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 1rem;
  padding: 0.7rem 1.2rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  box-shadow: 4px 4px 0 var(--ink);
  min-width: 130px;
}
.hb-item strong {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
}
.hb-item span {
  font-size: 0.75rem;
  color: #555;
  font-weight: 500;
}
.scroll-indicator {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  animation: bounceDown 2s infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
@media (max-width: 1024px) {
  .hero-badges { display: none; }
}
@media (max-width: 640px) {
  .hero-section { padding: 3.5rem 0 5rem; }
  .hero-title { font-size: 1.8rem; }
  .hero-desc { font-size: 0.92rem; }
  .btn-primary, .btn-secondary { width: 100%; }
  .hero-actions { flex-direction: column; }
}

/* ===== 数据徽章条 ===== */
.stats-strip {
  position: relative;
  z-index: 10;
  margin-top: -2.5rem;
  padding: 0 1rem;
}
.stats-strip-inner {
  background: var(--card);
  border-radius: 1.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  padding: 1.6rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-cell {
  text-align: center;
  padding: 0.5rem 0.5rem;
  position: relative;
}
.stat-cell + .stat-cell::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--line);
}
.stat-cell .num {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.stat-cell .label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.2rem;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .stat-cell + .stat-cell::before { display: none; }
  .stat-cell { border-left: none !important; }
}

/* ===== 板块标题 ===== */
.section-title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.section-title {
  position: relative;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  padding-left: 1rem;
  line-height: 1.3;
}
.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8%;
  bottom: 8%;
  width: 5px;
  border-radius: 4px;
  background: linear-gradient(180deg, #0D7A46, #FF6A2C);
}
.section-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s;
  min-height: 44px;
}
.section-link:hover { color: var(--orange); }

/* ===== 时间线 ===== */
.timeline-section { position: relative; }
.timeline-track {
  position: relative;
  padding: 1rem 0;
}
.timeline-track::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e0ded5;
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
  width: 50%;
  padding-right: 2.5rem;
  margin-bottom: 2.2rem;
}
.timeline-item:nth-child(even) {
  margin-left: 50%;
  padding-right: 0;
  padding-left: 2.5rem;
}
.tl-dot {
  position: absolute;
  right: -7px;
  top: 28px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 8px rgba(13, 122, 70, 0.12);
  z-index: 2;
}
.timeline-item:nth-child(even) .tl-dot {
  right: auto;
  left: -7px;
}
.tl-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}
.tl-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.tl-date {
  display: inline-flex;
  align-items: baseline;
  background: #fff;
  border: 2px solid var(--orange);
  border-radius: 0.7rem;
  padding: 0.2rem 0.8rem;
  font-weight: 900;
  color: var(--orange);
  font-size: 1.3rem;
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.6rem;
}
.tl-date small { font-size: 0.7rem; font-weight: 600; margin-left: 0.2rem; }
.tl-name { font-weight: 800; font-size: 1.05rem; margin-bottom: 0.2rem; }
.tl-place { font-size: 0.85rem; color: var(--muted); }
.tl-status {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 999px;
  margin-top: 0.5rem;
}
.tl-status.open { background: #e6f7ee; color: var(--brand); }
.tl-status.soon { background: #fff4e8; color: #d95a1d; }
.tl-status.booking { background: #edf2ff; color: #2b5bd7; }
@media (max-width: 768px) {
  .timeline-track::before { left: 8px; }
  .timeline-item, .timeline-item:nth-child(even) {
    width: 100%;
    margin-left: 0;
    padding: 0 0 0 2rem;
  }
  .timeline-item { padding-left: 2rem; padding-right: 0; }
  .tl-dot, .timeline-item:nth-child(even) .tl-dot {
    left: 1px;
    right: auto;
  }
}

/* ===== 亮点大卡 ===== */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.feature-main {
  grid-row: span 2;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-main:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
}
.feature-main-img {
  position: absolute;
  inset: 0;
}
.feature-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-main-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.85) 100%);
}
.feature-main-body {
  position: relative;
  z-index: 2;
  padding: 2rem;
  color: #fff;
}
.feature-main-body h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.feature-main-body p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 420px;
}
.feature-main-body a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: #7fe3a8;
  margin-top: 0.8rem;
  min-height: 44px;
  transition: color 0.2s;
}
.feature-main-body a:hover { color: var(--orange); }
.feature-card {
  background: var(--card);
  border-radius: 1.2rem;
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.feature-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: rgba(13, 122, 70, 0.2);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(13, 122, 70, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}
.feature-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.3rem; }
.feature-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; flex: 1; }
.feature-metric {
  margin-top: 0.8rem;
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}
.feature-metric strong {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
}
.feature-metric span { font-size: 0.78rem; color: var(--muted); }
@media (max-width: 768px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-main { min-height: 300px; grid-row: auto; }
}

/* ===== 票种对比 ===== */
.ticket-scroll { overflow-x: auto; padding-bottom: 0.5rem; }
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  min-width: 900px;
}
.ticket-card {
  background: var(--card);
  border-radius: 1.3rem;
  padding: 1.6rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.ticket-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px -8px rgba(0, 0, 0, 0.12);
}
.ticket-card.highlight {
  transform: scale(1.04);
  border: 2px solid var(--orange);
  box-shadow: 0 20px 40px -10px rgba(255, 106, 44, 0.25);
  z-index: 2;
}
.ticket-card.highlight:hover {
  transform: scale(1.05) translateY(-2px);
}
.ticket-flag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 14px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.ticket-name { font-weight: 800; font-size: 1.05rem; }
.ticket-price {
  margin: 0.7rem 0 0.8rem;
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}
.ticket-price .cur { font-size: 0.9rem; font-weight: 700; color: var(--muted); }
.ticket-price .amt {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.ticket-price .unit { font-size: 0.78rem; color: var(--muted); }
.ticket-features {
  list-style: none;
  margin: 0.8rem 0 1.2rem;
  flex: 1;
}
.ticket-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 0.4rem;
  color: #455;
}
.ticket-features li svg {
  flex-shrink: 0;
  margin-top: 3px;
}
.ticket-note {
  font-size: 0.72rem;
  color: #aaa;
  margin-top: 0.5rem;
  text-align: center;
  line-height: 1.4;
}
.ticket-cta {
  margin-top: 1rem;
  display: flex;
}
.btn-ticket {
  width: 100%;
  min-height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  transition: all 0.25s ease;
}
.btn-ticket-brand {
  background: linear-gradient(135deg, #0D7A46 0%, #1FA95E 55%, #FF6A2C 130%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(13, 122, 70, 0.3);
}
.btn-ticket-brand:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-ticket-brand:active { transform: translateY(0); }
.btn-ticket-ghost {
  background: #fff;
  border: 1px solid #ddd;
  color: var(--ink);
}
.btn-ticket-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-ticket-ghost:active { transform: scale(0.98); }
.btn-ticket:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .ticket-grid { min-width: 700px; }
}
@media (max-width: 640px) {
  .ticket-grid { min-width: 590px; }
}

/* ===== 报名CTA ===== */
.cta-panel {
  background: var(--card);
  border-radius: 1.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.cta-contact h3 {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 0.8rem;
}
.cta-contact p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }
.cta-phone {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
  margin: 1rem 0;
  font-family: -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
}
.cta-qr {
  width: 120px;
  height: 120px;
  border: 2px dashed #cbd5ce;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aab5af;
  font-size: 0.8rem;
  text-align: center;
  background: #fafbf9;
}
.cta-form { display: flex; flex-direction: column; gap: 1rem; }
.cta-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.3rem;
}
.cta-form input,
.cta-form select,
.cta-form textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 0.8rem;
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(13, 122, 70, 0.12);
}
.cta-form textarea { resize: vertical; min-height: 90px; }
.cta-submit {
  width: 100%;
  min-height: 50px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0D7A46 0%, #1FA95E 55%, #FF6A2C 130%);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(13, 122, 70, 0.3);
}
.cta-submit:hover { filter: brightness(1.1); transform: translateY(-2px); }
.cta-submit:active { transform: translateY(0); }
.cta-submit:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .cta-panel { grid-template-columns: 1fr; padding: 1.8rem; }
  .cta-qr { margin: 0 auto; }
  .cta-contact { text-align: center; }
}

/* ===== 资讯列表 ===== */
.news-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem;
}
.news-featured {
  background: var(--card);
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.news-featured:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.news-featured-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #D9E3DC;
}
.news-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.news-featured:hover .news-featured-img img { transform: scale(1.04); }
.news-featured-cat {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: var(--brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 999px;
  z-index: 2;
}
.news-featured-body { padding: 1.2rem 1.4rem; display: flex; flex-direction: column; gap: 0.3rem; }
.news-featured-body h4 { font-size: 1.15rem; font-weight: 800; line-height: 1.4; }
.news-featured-body p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.news-featured-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.78rem;
  color: #aaa;
  margin-top: auto;
}
.news-list { display: flex; flex-direction: column; gap: 0.8rem; }
.news-list-item {
  display: flex;
  gap: 1rem;
  background: var(--card);
  border-radius: 1rem;
  padding: 0.8rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
  align-items: flex-start;
}
.news-list-item:hover {
  background: #fafdf8;
  border-color: rgba(13, 122, 70, 0.2);
  transform: translateX(4px);
}
.news-thumb {
  width: 84px;
  height: 64px;
  border-radius: 0.7rem;
  object-fit: cover;
  flex-shrink: 0;
  background: #D9E3DC;
}
.news-list-body { flex: 1; min-width: 0; }
.news-list-body h5 {
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s;
}
.news-list-item:hover .news-list-body h5 { color: var(--brand); }
.news-list-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: #aaa;
  margin-top: 0.25rem;
}
.news-list-meta .cat-pill {
  background: #eff5f0;
  color: var(--brand);
  font-weight: 600;
  padding: 1px 8px;
  border-radius: 999px;
}
.news-empty {
  grid-column: 1 / -1;
  border: 2px dashed #ccd5cf;
  border-radius: 1.2rem;
  padding: 3rem 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  background: #fafbf9;
}
@media (max-width: 900px) {
  .news-layout { grid-template-columns: 1fr; }
}

/* ===== FAQ ===== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.faq-item {
  background: var(--card);
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item:hover { box-shadow: var(--shadow-hover); }
.faq-item details summary {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.1rem 1.3rem;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.faq-item details summary::-webkit-details-marker { display: none; }
.faq-item details[open] summary { color: var(--brand); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item details[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 1.3rem 1.1rem 3.4rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ===== Footer ===== */
.site-footer {
  background: #0A0F0D;
  color: #a8b5af;
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-text small { color: #7a8a82; }
.footer-desc { font-size: 0.85rem; color: #8ba296; margin-top: 0.8rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.87rem;
  color: #8ba296;
  padding: 0.3rem 0;
  transition: color 0.2s, padding-left 0.2s;
  min-height: 32px;
}
.footer-col a:hover { color: #7fe3a8; padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.82rem;
  color: #6f8379;
}
.footer-bottom a { color: #6f8379; }
.footer-bottom a:hover { color: #7fe3a8; }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== 通用卡片 ===== */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* ===== Section spacing ===== */
.section-py { padding: 4rem 0; }
@media (min-width: 1024px) { .section-py { padding: 5rem 0; } }

/* ===== 移动端菜单显示 ===== */
.mobile-menu.open { display: block; }

/* roulang page: article */
:root {
  --brand-green: #0D7A46;
  --brand-green-light: #1FA95E;
  --brand-orange: #FF6A2C;
  --ink: #0A0F0D;
  --paper: #F5F3EE;
  --card-bg: #FFFFFF;
  --neutral-line: #E6E2D8;
  --gradient-brand: linear-gradient(135deg, #0D7A46 0%, #1FA95E 55%, #FF6A2C 130%);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }
.site-container { max-width: 80rem; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .site-container { padding: 0 2rem; } }
@media (min-width: 1024px) { .site-container { padding: 0 2.5rem; } }

/* 吸顶导航 */
.site-header { position: sticky; top: 0; z-index: 50; }
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  height: 36px;
  display: flex;
  align-items: center;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; width: 100%; }
.topbar-brand { font-weight: 700; color: #fff; letter-spacing: 0.05em; white-space: nowrap; }
.topbar-brand img { display: inline-block; vertical-align: middle; margin-right: 4px; }
.topbar-right { display: flex; align-items: center; gap: 0.5rem; flex: 1; justify-content: flex-end; }
.top-search {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 4px 12px;
  min-width: 180px;
  max-width: 280px;
  width: 100%;
}
.top-search input {
  background: transparent; border: none; outline: none;
  color: #fff; font-size: 0.78rem; width: 100%;
}
.top-search input::placeholder { color: rgba(255,255,255,0.5); }
.top-search .icon { color: rgba(255,255,255,0.6); font-size: 0.75rem; margin-left: 4px; flex-shrink: 0; }
.hot-tags { display: none; align-items: center; gap: 0.35rem; white-space: nowrap; }
@media (min-width: 768px) { .hot-tags { display: flex; } }
.hot-tags a {
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.08);
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  transition: background 0.2s, color 0.2s;
}
.hot-tags a:hover { background: rgba(255,106,44,0.85); color: #fff; }

/* 主栏 */
.main-nav {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.main-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 1rem; }
.brand-logo { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon {
  width: 38px; height: 38px;
  background: var(--gradient-brand);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  box-shadow: 0 2px 8px rgba(13,122,70,0.35);
}
.logo-text { font-weight: 800; font-size: 1.25rem; color: var(--ink); line-height: 1.1; letter-spacing: 0.01em; }
.logo-text small { display: block; font-size: 0.6rem; font-weight: 600; color: #7a8a80; letter-spacing: 0.18em; }
.main-menu { display: flex; align-items: center; gap: 2px; }
.main-menu .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #37453e;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
  min-width: 44px;
}
.main-menu .nav-link:hover { color: var(--brand-green); background: rgba(13,122,70,0.06); }
.main-menu .nav-link.active { color: var(--brand-green); font-weight: 700; }
.main-menu .nav-link.active::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 3px;
  height: 2px;
  background: var(--brand-orange);
  border-radius: 2px;
}
.menu-toggle {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  border: 1px solid var(--neutral-line);
  background: #fff;
}
.menu-toggle:focus-visible { outline: 2px solid var(--brand-orange); outline-offset: 2px; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.menu-actions { display: flex; align-items: center; gap: 0.5rem; }
/* 移动端菜单折叠 */
@media (max-width: 1023.98px) {
  .main-menu {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--neutral-line);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1.25rem;
    gap: 0.25rem;
  }
  .main-menu.open { display: flex; }
  .main-menu .nav-link { justify-content: flex-start; border-radius: 12px; padding: 0.75rem 1rem; }
  .main-menu .nav-link.active::after { left: 1rem; right: auto; width: 26px; top: 50%; bottom: auto; transform: translateY(-50%); height: 3px; }
}

/* 面包屑 */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #6f8379;
  padding: 1.25rem 0 0.5rem;
}
.breadcrumb a { color: #6f8379; text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--brand-green); }
.breadcrumb .sep { color: #c2ccc6; user-select: none; }
.breadcrumb .current { color: #45584f; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 220px; }
@media (min-width: 640px) { .breadcrumb .current { max-width: 420px; } }

/* 文章主体 */
.article-page { padding-bottom: 4rem; }
.article-main { max-width: 54rem; margin: 0 auto; padding-top: 1rem; }

.article-heading { padding: 1.25rem 0 1.5rem; }
.category-pill {
  display: inline-flex;
  align-items: center;
  background: var(--gradient-brand);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(13,122,70,0.25);
}
.article-heading h1 {
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.25rem;
  word-break: break-word;
}
@media (min-width: 768px) { .article-heading h1 { font-size: 2.6rem; line-height: 1.2; } }
.article-summary {
  border-left: 4px solid var(--brand-green);
  padding: 0.35rem 0 0.35rem 1.25rem;
  font-size: 1.05rem;
  color: #4f6158;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  background: rgba(13,122,70,0.035);
  border-radius: 0 12px 12px 0;
}
.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  color: #84968c;
  font-size: 0.82rem;
  border-top: 1px solid var(--neutral-line);
  padding-top: 1.1rem;
}
.meta-item { display: inline-flex; align-items: center; gap: 0.4rem; }
.meta-item .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--brand-orange); display: inline-block; }

.article-cover {
  margin: 1.5rem 0 2rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  background: #D9E3DC;
}
.article-cover img { width: 100%; height: 260px; object-fit: cover; }
@media (min-width: 768px) { .article-cover img { height: 380px; } }

.article-body-wrap { max-width: 46rem; margin: 0 auto; }
.article-body { font-size: 1.02rem; color: #223129; line-height: 1.9; }
.article-body > * + * { margin-top: 1.35rem; }
.article-body h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-top: 2.2rem;
  margin-bottom: -0.4rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.article-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 1.8rem;
  color: var(--ink);
}
.article-body h4 { font-size: 1.05rem; font-weight: 700; margin-top: 1.5rem; color: var(--ink); }
.article-body p { color: #37453e; }
.article-body a { color: var(--brand-green); text-decoration: underline; text-underline-offset: 4px; }
.article-body img { border-radius: 1.25rem; margin: 1.8rem 0; box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.article-body ul, .article-body ol { padding-left: 1.4rem; }
.article-body ul li, .article-body ol li { margin-top: 0.5rem; }
.article-body ul li::marker { color: var(--brand-orange); }
.article-body ol li::marker { color: var(--brand-green); font-weight: 700; }
.article-body blockquote {
  border-left: 4px solid var(--brand-orange);
  background: rgba(255,106,44,0.06);
  padding: 1rem 1.25rem;
  border-radius: 0 1rem 1rem 0;
  font-style: italic;
  color: #5a4a3a;
}
.article-body table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.article-body th, .article-body td { border: 1px solid var(--neutral-line); padding: 0.75rem 0.9rem; text-align: left; }
.article-body th { background: rgba(13,122,70,0.08); font-weight: 700; }

/* 标签 */
.article-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--neutral-line);
}
.tag-label { font-weight: 700; color: #5f7168; font-size: 0.85rem; margin-right: 0.3rem; }
.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: #fff;
  border: 1px solid var(--neutral-line);
  border-radius: 999px;
  font-size: 0.8rem;
  color: #4f6158;
  font-weight: 500;
  transition: all 0.2s;
  min-height: 36px;
}
.tag:hover { border-color: var(--brand-green); color: var(--brand-green); background: rgba(13,122,70,0.04); }

/* 内容未找到 */
.not-found {
  text-align: center;
  padding: 4rem 2rem;
  border: 2px dashed var(--neutral-line);
  border-radius: 1.5rem;
  color: #84968c;
  font-size: 1rem;
}
.not-found a { color: var(--brand-green); font-weight: 700; margin-left: 0.25rem; text-decoration: underline; }

/* 相关阅读 */
.related-section { max-width: 54rem; margin: 3.5rem auto 0; }
.related-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.related-head h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.related-head h2::before {
  content: "";
  width: 5px;
  height: 1.3rem;
  background: var(--gradient-brand);
  border-radius: 3px;
  display: inline-block;
}
.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .related-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.related-card {
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.related-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,0.1); }
.related-cover { aspect-ratio: 16 / 10; overflow: hidden; background: #D9E3DC; }
.related-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.related-card:hover .related-cover img { transform: scale(1.05); }
.related-info { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.6rem; }
.related-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand-green);
  background: rgba(13,122,70,0.08);
  padding: 4px 12px;
  border-radius: 999px;
}
.related-info h3 { font-size: 1rem; font-weight: 700; line-height: 1.5; color: var(--ink); letter-spacing: -0.01em; }
.related-card:hover .related-info h3 { color: var(--brand-green); }
.related-info p { font-size: 0.84rem; color: #84968c; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.related-date { font-size: 0.76rem; color: #a5b3ac; font-variant-numeric: tabular-nums; }

/* 返回按钮 */
.back-zone { text-align: center; margin-top: 2.5rem; }
.back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 2rem;
  background: #fff;
  border: 1px solid var(--neutral-line);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  transition: all 0.25s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.back-btn:hover { border-color: var(--brand-green); color: var(--brand-green); transform: translateY(-2px); box-shadow: 0 8px 16px rgba(13,122,70,0.1); }
.back-btn:active { transform: translateY(0); }
.back-btn:focus-visible { outline: 2px solid var(--brand-orange); outline-offset: 3px; }

/* 页脚 */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 1.75rem;
  margin-top: 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 2rem; } }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-top: 0.9rem; max-width: 26rem; }
.footer-brand .brand-logo { margin-bottom: 0; }
.footer-col h4 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.footer-col a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s, padding-left 0.2s;
}
.footer-col a:hover { color: var(--brand-orange); padding-left: 4px; }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--brand-orange); }

/* 通用 focus 可见性 */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 2px;
}

/* roulang page: category1 */
:root {
            --brand-green: #0D7A46;
            --brand-green-light: #1FA95E;
            --brand-orange: #FF6A2C;
            --ink: #0A0F0D;
            --paper: #F5F3EE;
            --card-bg: #FFFFFF;
            --neutral-line: #E6E2D8;
            --text-weak: #6B7770;
            --brand-gradient: linear-gradient(135deg, #0D7A46 0%, #1FA95E 55%, #FF6A2C 130%);
            --radius-lg: 1.5rem;
            --radius-md: 1rem;
            --radius-sm: 0.75rem;
            --shadow-card: 0 1px 2px rgba(10, 15, 13, 0.04), 0 1px 3px rgba(10, 15, 13, 0.06);
            --shadow-hover: 0 12px 32px rgba(10, 15, 13, 0.10), 0 4px 12px rgba(10, 15, 13, 0.06);
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            background: var(--paper);
            color: var(--ink);
            font-size: 16px;
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
        }
        .container {
            max-width: 80rem;
            margin: 0 auto;
            padding-left: 1rem;
            padding-right: 1rem;
        }
        @media (min-width: 768px) {
            .container {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
        }
        @media (min-width: 1280px) {
            .container {
                padding-left: 2rem;
                padding-right: 2rem;
            }
        }
        .section-padding {
            padding-top: 4rem;
            padding-bottom: 4rem;
        }
        @media (min-width: 768px) {
            .section-padding {
                padding-top: 5rem;
                padding-bottom: 5rem;
            }
        }
        .text-gradient {
            background: var(--brand-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.875rem 1.75rem;
            border-radius: 9999px;
            background: var(--brand-gradient);
            color: #fff;
            font-weight: 700;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            min-height: 44px;
            box-shadow: 0 4px 14px rgba(13, 122, 70, 0.25);
        }
        .btn-primary:hover {
            filter: brightness(1.08);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(13, 122, 70, 0.32);
        }
        .btn-primary:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(13, 122, 70, 0.2);
        }
        .btn-primary:focus-visible,
        .btn-secondary:focus-visible,
        .main-menu a:focus-visible,
        .nav-link:focus-visible,
        .pagination a:focus-visible,
        .hot-item:focus-visible {
            outline: none;
            box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--brand-orange);
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.875rem 1.75rem;
            border-radius: 9999px;
            background: #fff;
            color: var(--ink);
            font-weight: 700;
            font-size: 0.95rem;
            border: 1px solid var(--neutral-line);
            cursor: pointer;
            transition: all 0.3s ease;
            min-height: 44px;
        }
        .btn-secondary:hover {
            border-color: var(--brand-green);
            color: var(--brand-green);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(10, 15, 13, 0.08);
        }
        .btn-secondary:active {
            transform: translateY(0);
        }
        .btn-orange {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            padding: 0.6rem 1.25rem;
            border-radius: 9999px;
            background: #fff;
            color: var(--brand-orange);
            font-weight: 700;
            font-size: 0.88rem;
            border: 1px solid rgba(255, 106, 44, 0.35);
            cursor: pointer;
            transition: all 0.3s ease;
            min-height: 40px;
        }
        .btn-orange:hover {
            background: var(--brand-orange);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(255, 106, 44, 0.25);
        }
        .btn-orange:active {
            transform: translateY(0);
        }
        /* Header */
        .site-header {
            position: relative;
            z-index: 50;
        }
        .header-top {
            background: var(--ink);
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.8rem;
            padding: 0.35rem 0;
        }
        .header-top-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .header-top-brand {
            font-weight: 700;
            letter-spacing: 0.04em;
            color: #fff;
            white-space: nowrap;
        }
        .header-top-right {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            flex-wrap: wrap;
        }
        .header-search {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.12);
            border-radius: 9999px;
            padding: 0.2rem 0.5rem 0.2rem 0.9rem;
            transition: background 0.2s;
        }
        .header-search input {
            background: transparent;
            border: none;
            outline: none;
            color: #fff;
            font-size: 0.8rem;
            width: 9rem;
            padding: 0.2rem 0;
        }
        .header-search input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        .header-search button {
            background: rgba(255, 255, 255, 0.15);
            border: none;
            border-radius: 9999px;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            cursor: pointer;
            transition: background 0.2s;
        }
        .header-search button:hover {
            background: var(--brand-orange);
        }
        .hot-tag {
            font-size: 0.75rem;
            padding: 0.15rem 0.6rem;
            border-radius: 9999px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.7);
            cursor: pointer;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .hot-tag:hover {
            border-color: var(--brand-orange);
            color: var(--brand-orange);
        }
        .header-main {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 40;
        }
        .header-main.scrolled {
            box-shadow: 0 4px 20px rgba(10, 15, 13, 0.08);
        }
        .header-main-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            height: 4rem;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-shrink: 0;
        }
        .logo-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: var(--brand-gradient);
            color: #fff;
            font-weight: 900;
            font-size: 0.85rem;
            letter-spacing: -0.02em;
            box-shadow: 0 2px 8px rgba(13, 122, 70, 0.25);
        }
        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
            font-weight: 900;
            font-size: 1.2rem;
            color: var(--ink);
            letter-spacing: -0.01em;
        }
        .logo-text small {
            font-size: 0.6rem;
            font-weight: 600;
            letter-spacing: 0.18em;
            color: var(--text-weak);
            text-transform: uppercase;
        }
        .main-menu {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .nav-link {
            position: relative;
            padding: 0.5rem 1rem;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--ink);
            border-radius: 9999px;
            transition: all 0.25s;
            min-height: 40px;
            display: inline-flex;
            align-items: center;
        }
        .nav-link:hover {
            color: var(--brand-green);
            background: rgba(13, 122, 70, 0.06);
        }
        .nav-link.active {
            color: var(--brand-green);
            font-weight: 700;
        }
        .nav-link.active::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 16px;
            height: 3px;
            border-radius: 9999px;
            background: var(--brand-orange);
        }
        .menu-toggle {
            display: none;
            width: 44px;
            height: 44px;
            border: none;
            border-radius: 12px;
            background: transparent;
            color: var(--ink);
            font-size: 1.2rem;
            cursor: pointer;
            align-items: center;
            justify-content: center;
        }
        .menu-toggle:hover {
            background: rgba(13, 122, 70, 0.06);
        }
        /* Mobile menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--paper);
            z-index: 100;
            padding: 2rem 1.5rem;
            flex-direction: column;
            gap: 1rem;
            overflow-y: auto;
        }
        .mobile-menu.open {
            display: flex;
        }
        .mobile-menu-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .mobile-menu-close {
            width: 44px;
            height: 44px;
            border: none;
            border-radius: 12px;
            background: rgba(13, 122, 70, 0.06);
            color: var(--ink);
            font-size: 1.2rem;
            cursor: pointer;
        }
        .mobile-menu a {
            padding: 0.9rem 1rem;
            border-radius: 14px;
            font-weight: 700;
            font-size: 1.05rem;
            background: #fff;
            border: 1px solid var(--neutral-line);
        }
        .mobile-menu a.active {
            background: var(--brand-gradient);
            color: #fff;
            border-color: transparent;
        }
        /* Hero */
        .hero-category {
            position: relative;
            background: linear-gradient(135deg, #0A0F0D 0%, #123528 100%);
            color: #fff;
            overflow: hidden;
            padding-top: 5rem;
            padding-bottom: 6rem;
        }
        .hero-category::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.3;
        }
        .hero-category::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 60px;
            background: linear-gradient(to bottom, transparent, var(--paper));
        }
        .hero-category-inner {
            position: relative;
            z-index: 2;
            max-width: 80rem;
            margin: 0 auto;
            padding-left: 1rem;
            padding-right: 1rem;
            display: flex;
            align-items: center;
            gap: 3rem;
        }
        @media (min-width: 768px) {
            .hero-category-inner {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
        }
        @media (min-width: 1280px) {
            .hero-category-inner {
                padding-left: 2rem;
                padding-right: 2rem;
            }
        }
        .hero-category-content {
            flex: 1.2;
        }
        .hero-category-side {
            flex: 0.8;
            display: none;
        }
        @media (min-width: 1024px) {
            .hero-category-side {
                display: block;
            }
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: var(--brand-orange);
            color: #fff;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            padding: 0.3rem 0.9rem;
            border-radius: 9999px;
            text-transform: uppercase;
            margin-bottom: 1.2rem;
        }
        .hero-category h1 {
            font-size: 2.5rem;
            line-height: 1.15;
            font-weight: 900;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }
        @media (min-width: 768px) {
            .hero-category h1 {
                font-size: 3.5rem;
            }
        }
        .hero-category p {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 34rem;
            margin-bottom: 1.8rem;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .hero-stats-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.8rem;
            margin-top: 2rem;
        }
        @media (min-width: 768px) {
            .hero-stats-cards {
                margin-top: 0;
            }
        }
        .hero-stat-card {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(8px);
            border-radius: 1rem;
            padding: 0.9rem;
            text-align: center;
        }
        .hero-stat-card strong {
            font-size: 1.6rem;
            font-weight: 900;
            color: #fff;
            display: block;
            line-height: 1.2;
            font-variant-numeric: tabular-nums;
        }
        .hero-stat-card span {
            font-size: 0.72rem;
            color: rgba(255, 255, 255, 0.65);
        }
        /* Data bar */
        .data-bar {
            position: relative;
            z-index: 5;
            margin-top: -1.5rem;
        }
        .data-bar-inner {
            background: #fff;
            border-radius: 1.25rem;
            box-shadow: var(--shadow-card);
            border: 1px solid rgba(0, 0, 0, 0.04);
            padding: 1.5rem 1rem;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        @media (min-width: 768px) {
            .data-bar-inner {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        .data-item {
            text-align: center;
            padding: 0.5rem;
        }
        .data-item .num {
            font-size: 2rem;
            font-weight: 900;
            color: var(--brand-green);
            font-variant-numeric: tabular-nums;
            line-height: 1.2;
        }
        .data-item .label {
            font-size: 0.8rem;
            color: var(--text-weak);
        }
        /* News section */
        .category-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        @media (min-width: 1024px) {
            .category-layout {
                grid-template-columns: 1fr 340px;
                gap: 2.5rem;
            }
        }
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }
        .news-card {
            background: var(--card-bg);
            border-radius: 1.25rem;
            border: 1px solid rgba(0, 0, 0, 0.04);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        .news-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .news-card.image-card {
            flex-direction: column;
        }
        @media (min-width: 640px) {
            .news-card.image-card {
                flex-direction: row;
            }
        }
        .news-card-image {
            position: relative;
            background: #D9E3DC;
            flex-shrink: 0;
            overflow: hidden;
        }
        .news-card.image-card .news-card-image {
            width: 100%;
            aspect-ratio: 16/9;
        }
        @media (min-width: 640px) {
            .news-card.image-card .news-card-image {
                width: 280px;
                aspect-ratio: 3/2;
            }
        }
        .news-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .news-card:hover .news-card-image img {
            transform: scale(1.04);
        }
        .news-card-body {
            padding: 1.4rem;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
            flex: 1;
        }
        .news-card-meta {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        .tag-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(13, 122, 70, 0.08);
            color: var(--brand-green);
            font-size: 0.76rem;
            font-weight: 700;
            padding: 0.22rem 0.7rem;
            border-radius: 9999px;
        }
        .tag-badge.orange {
            background: rgba(255, 106, 44, 0.1);
            color: var(--brand-orange);
        }
        .news-card-time {
            font-size: 0.76rem;
            color: var(--text-weak);
            font-variant-numeric: tabular-nums;
        }
        .news-card-views {
            font-size: 0.76rem;
            color: var(--text-weak);
            margin-left: auto;
        }
        .news-card h3 {
            font-size: 1.1rem;
            font-weight: 800;
            line-height: 1.4;
            transition: color 0.2s;
        }
        .news-card:hover h3 {
            color: var(--brand-green);
        }
        .news-card p {
            font-size: 0.9rem;
            color: var(--text-weak);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .text-card {
            background: var(--card-bg);
            border-radius: 1.25rem;
            border: 1px solid rgba(0, 0, 0, 0.04);
            box-shadow: var(--shadow-card);
            padding: 1.4rem 1.6rem;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }
        .text-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
            border-color: rgba(13, 122, 70, 0.2);
        }
        .text-card .news-card-meta {
            margin-bottom: 0.1rem;
        }
        .text-card h3 {
            font-size: 1.05rem;
            font-weight: 800;
            line-height: 1.45;
            transition: color 0.2s;
        }
        .text-card:hover h3 {
            color: var(--brand-green);
        }
        .text-card p {
            font-size: 0.9rem;
            color: var(--text-weak);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        /* Sidebar */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 1.25rem;
            border: 1px solid rgba(0, 0, 0, 0.04);
            box-shadow: var(--shadow-card);
            padding: 1.5rem;
        }
        .sidebar-card h3 {
            font-size: 1rem;
            font-weight: 800;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sidebar-card h3 .icon-badge {
            width: 28px;
            height: 28px;
            border-radius: 8px;
            background: var(--brand-gradient);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
        }
        .hot-list {
            list-style: none;
            display: flex;
            flex-direction: column;
        }
        .hot-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.65rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
            transition: all 0.2s;
            cursor: pointer;
            border-radius: 0.5rem;
            padding-left: 0.3rem;
            padding-right: 0.3rem;
        }
        .hot-item:last-child {
            border-bottom: none;
        }
        .hot-item:hover {
            background: rgba(13, 122, 70, 0.04);
            padding-left: 0.6rem;
        }
        .hot-rank {
            font-size: 1.1rem;
            font-weight: 900;
            color: var(--brand-green);
            font-variant-numeric: tabular-nums;
            width: 1.6rem;
            text-align: center;
        }
        .hot-rank.top1 {
            color: var(--brand-orange);
            font-size: 1.3rem;
        }
        .hot-item-text {
            flex: 1;
            font-size: 0.88rem;
            font-weight: 600;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .hot-item:hover .hot-item-text {
            color: var(--brand-green);
        }
        .hot-item-views {
            font-size: 0.75rem;
            color: var(--text-weak);
            white-space: nowrap;
        }
        .subscribe-card {
            background: linear-gradient(135deg, #0D7A46 0%, #123528 100%);
            color: #fff;
            border-radius: 1.25rem;
            padding: 1.8rem;
        }
        .subscribe-card h3 {
            color: #fff;
        }
        .subscribe-card p {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1rem;
        }
        .subscribe-input {
            display: flex;
            background: rgba(255, 255, 255, 0.12);
            border-radius: 9999px;
            padding: 0.3rem;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        .subscribe-input input {
            flex: 1;
            background: transparent;
            border: none;
            outline: none;
            color: #fff;
            font-size: 0.85rem;
            padding: 0.3rem 0.9rem;
            min-width: 0;
        }
        .subscribe-input input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        .subscribe-input button {
            background: var(--brand-orange);
            border: none;
            border-radius: 9999px;
            color: #fff;
            font-weight: 700;
            font-size: 0.8rem;
            padding: 0.45rem 1rem;
            cursor: pointer;
            white-space: nowrap;
            transition: filter 0.2s;
        }
        .subscribe-input button:hover {
            filter: brightness(1.1);
        }
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2.5rem;
            flex-wrap: wrap;
        }
        .pagination a,
        .pagination span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            font-weight: 700;
            font-size: 0.9rem;
            background: #fff;
            border: 1px solid var(--neutral-line);
            color: var(--ink);
            transition: all 0.25s;
        }
        .pagination a:hover {
            border-color: var(--brand-green);
            color: var(--brand-green);
            transform: translateY(-2px);
        }
        .pagination .current {
            background: var(--brand-green);
            border-color: var(--brand-green);
            color: #fff;
            box-shadow: 0 4px 12px rgba(13, 122, 70, 0.25);
        }
        .pagination .ellipsis {
            border-color: transparent;
            background: transparent;
        }
        /* CTA */
        .cta-section {
            margin-top: 2rem;
        }
        .cta-card {
            background: var(--ink);
            border-radius: 1.75rem;
            overflow: hidden;
            position: relative;
            color: #fff;
        }
        .cta-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-2.png');
            background-size: cover;
            background-position: center;
            opacity: 0.2;
        }
        .cta-inner {
            position: relative;
            z-index: 2;
            padding: 3rem 1.5rem;
            display: grid;
            gap: 2rem;
        }
        @media (min-width: 768px) {
            .cta-inner {
                grid-template-columns: 1.2fr 0.8fr;
                padding: 3.5rem 2.5rem;
                align-items: center;
            }
        }
        .cta-left h2 {
            font-size: 2rem;
            font-weight: 900;
            line-height: 1.25;
            margin-bottom: 0.8rem;
        }
        .cta-left p {
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 1.2rem;
        }
        .cta-phone {
            font-size: 1.4rem;
            font-weight: 900;
            font-variant-numeric: tabular-nums;
            color: var(--brand-orange);
        }
        .cta-right {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .cta-qr {
            width: 110px;
            height: 110px;
            border: 2px dashed rgba(255, 255, 255, 0.4);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.75rem;
            background: rgba(255, 255, 255, 0.05);
        }
        /* FAQ */
        .faq-section {
            margin-top: 2rem;
        }
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .faq-item {
            background: #fff;
            border-radius: 1.25rem;
            border: 1px solid rgba(0, 0, 0, 0.04);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: box-shadow 0.25s;
        }
        .faq-item:hover {
            box-shadow: var(--shadow-hover);
        }
        .faq-item summary {
            padding: 1.2rem 1.5rem;
            font-weight: 700;
            font-size: 0.98rem;
            cursor: pointer;
            list-style: none;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            transition: background 0.2s;
            border-radius: 1.25rem;
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item summary::before {
            content: "+";
            display: flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(255, 106, 44, 0.12);
            color: var(--brand-orange);
            font-weight: 900;
            font-size: 1.1rem;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }
        .faq-item[open] summary::before {
            transform: rotate(45deg);
            background: var(--brand-orange);
            color: #fff;
        }
        .faq-item[open] summary {
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        .faq-answer {
            padding: 0.5rem 1.5rem 1.3rem 4rem;
            font-size: 0.92rem;
            color: var(--text-weak);
            line-height: 1.7;
        }
        /* Footer */
        .site-footer {
            background: var(--ink);
            color: rgba(255, 255, 255, 0.8);
            margin-top: 4rem;
            padding: 3.5rem 0 1.5rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr 1fr;
            }
        }
        .footer-brand .brand-logo {
            margin-bottom: 1rem;
        }
        .footer-brand .logo-text {
            color: #fff;
        }
        .footer-brand .logo-text small {
            color: rgba(255, 255, 255, 0.5);
        }
        .footer-desc {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
            max-width: 24rem;
        }
        .footer-col h4 {
            color: #fff;
            font-size: 0.9rem;
            font-weight: 800;
            margin-bottom: 0.9rem;
        }
        .footer-col a {
            display: block;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            padding: 0.3rem 0;
            transition: all 0.2s;
        }
        .footer-col a:hover {
            color: var(--brand-orange);
            padding-left: 0.3rem;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.4);
        }
        @media (min-width: 768px) {
            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
            }
        }
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.5);
        }
        @media (max-width: 767px) {
            .header-top-right .hot-tag {
                display: none;
            }
            .main-menu {
                display: none;
            }
            .menu-toggle {
                display: flex;
            }
        }
        @media (min-width: 768px) {
            .menu-toggle {
                display: none;
            }
        }

/* roulang page: category2 */
:root {
            --brand-green: #0D7A46;
            --brand-green-light: #1FA95E;
            --brand-orange: #FF6A2C;
            --ink: #0A0F0D;
            --paper: #F5F3EE;
            --card-bg: #FFFFFF;
            --neutral-line: #E6E2D8;
            --radius-lg: 1rem;
            --radius-xl: 1.5rem;
            --radius-2xl: 2rem;
            --shadow-sm: 0 1px 2px rgba(10, 15, 13, .04);
            --shadow-md: 0 4px 20px rgba(10, 15, 13, .07);
            --shadow-lg: 0 16px 40px rgba(10, 15, 13, .12);
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            margin: 0;
            font-family: -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            font-size: 16px;
            line-height: 1.7;
            color: var(--ink);
            background: var(--paper);
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
        }
        input,
        textarea,
        select {
            font-family: inherit;
            font-size: 1rem;
        }
        .container {
            max-width: 80rem;
            margin: 0 auto;
            padding-left: 1rem;
            padding-right: 1rem;
        }
        @media(min-width:768px) {
            .container {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
        }
        @media(min-width:1024px) {
            .container {
                padding-left: 2rem;
                padding-right: 2rem;
            }
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible,
        textarea:focus-visible,
        summary:focus-visible {
            outline: 2px solid var(--brand-orange);
            outline-offset: 2px;
            border-radius: 4px;
        }

        /* ===== Header ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .top-bar {
            background: #0B1E16;
            color: rgba(255, 255, 255, .85);
            font-size: .8rem;
        }
        .top-bar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 36px;
            gap: .75rem;
        }
        .top-brand {
            font-weight: 600;
            letter-spacing: .02em;
            white-space: nowrap;
        }
        .top-search {
            display: flex;
            align-items: center;
            gap: .3rem;
        }
        .top-search input[type="search"] {
            background: rgba(255, 255, 255, .12);
            border: none;
            border-radius: 9999px;
            padding: .25rem .9rem;
            font-size: .78rem;
            color: #fff;
            width: 168px;
            transition: background .3s;
        }
        .top-search input[type="search"]::placeholder {
            color: rgba(255, 255, 255, .65);
        }
        .top-search input[type="search"]:focus {
            background: rgba(255, 255, 255, .22);
            outline: none;
        }
        .hot-keywords {
            display: none;
            gap: .4rem;
            align-items: center;
            margin-left: .5rem;
        }
        .hot-keywords a {
            color: rgba(255, 255, 255, .7);
            padding: .1rem .55rem;
            border-radius: 9999px;
            background: rgba(255, 255, 255, .08);
            font-size: .7rem;
            transition: background .3s, color .3s;
        }
        .hot-keywords a:hover {
            background: var(--brand-orange);
            color: #fff;
        }
        @media(min-width:900px) {
            .hot-keywords {
                display: inline-flex;
            }
            .top-search input[type="search"] {
                width: 240px;
            }
        }
        .main-bar {
            background: rgba(255, 255, 255, .92);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(10, 15, 13, .06);
            transition: box-shadow .3s;
        }
        .main-bar.scrolled {
            box-shadow: 0 6px 30px rgba(10, 15, 13, .08);
        }
        .main-bar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 66px;
            gap: 1.5rem;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: .6rem;
            flex-shrink: 0;
        }
        .logo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: linear-gradient(135deg, #0D7A46 0%, #1FA95E 55%, #FF6A2C 130%);
            color: #fff;
            font-weight: 900;
            font-size: .95rem;
            letter-spacing: -0.02em;
        }
        .logo-text {
            font-size: 1.35rem;
            font-weight: 900;
            color: var(--ink);
            letter-spacing: -.02em;
            line-height: 1.1;
        }
        .logo-text small {
            display: block;
            font-size: .6rem;
            font-weight: 600;
            letter-spacing: .18em;
            color: var(--brand-green);
            text-transform: uppercase;
        }
        .main-menu {
            display: flex;
            align-items: center;
            gap: .2rem;
        }
        .nav-link {
            display: inline-flex;
            align-items: center;
            min-height: 44px;
            padding: 0 .85rem;
            font-weight: 600;
            font-size: .95rem;
            color: #3d4a44;
            border-radius: 10px;
            position: relative;
            transition: color .3s, background .3s;
        }
        .nav-link:hover {
            color: var(--brand-green);
            background: rgba(13, 122, 70, .05);
        }
        .nav-link.active {
            color: var(--brand-green);
        }
        .nav-link.active::after {
            content: "";
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 22px;
            height: 3px;
            border-radius: 3px;
            background: var(--brand-orange);
        }
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            padding: 8px;
            background: rgba(13, 122, 70, .06);
        }
        .menu-toggle span {
            display: block;
            height: 2px;
            border-radius: 2px;
            background: var(--brand-green);
            transition: transform .3s, opacity .3s;
        }
        .menu-toggle.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .menu-toggle.open span:nth-child(2) {
            opacity: 0;
        }
        .menu-toggle.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }
        .mobile-dropdown {
            display: none;
            background: #fff;
            border-bottom: 1px solid var(--neutral-line);
            padding: .75rem 1rem .75rem;
        }
        .mobile-dropdown a {
            display: block;
            padding: .75rem .9rem;
            border-radius: 12px;
            font-weight: 600;
            color: var(--ink);
            font-size: .95rem;
        }
        .mobile-dropdown a:hover {
            background: rgba(13, 122, 70, .06);
            color: var(--brand-green);
        }
        .mobile-dropdown a.active {
            color: var(--brand-green);
            background: rgba(13, 122, 70, .08);
        }
        @media(max-width:768px) {
            .main-menu {
                display: none;
            }
            .menu-toggle {
                display: flex;
            }
            .top-search input[type="search"] {
                width: 130px;
            }
        }

        /* ===== Buttons ===== */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
            padding: .65rem 1.75rem;
            border-radius: 9999px;
            background: linear-gradient(135deg, #0D7A46 0%, #1FA95E 55%, #FF6A2C 130%);
            color: #fff;
            font-weight: 700;
            font-size: .95rem;
            transition: filter .3s, box-shadow .3s, transform .2s;
            box-shadow: 0 4px 16px rgba(13, 122, 70, .25);
        }
        .btn-primary:hover {
            filter: brightness(1.08);
            box-shadow: 0 10px 30px rgba(13, 122, 70, .35);
            transform: translateY(-2px);
        }
        .btn-primary:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(13, 122, 70, .25);
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
            padding: .65rem 1.75rem;
            border-radius: 9999px;
            background: #fff;
            color: var(--ink);
            font-weight: 600;
            font-size: .95rem;
            border: 1px solid rgba(10, 15, 13, .12);
            transition: border-color .3s, color .3s, box-shadow .3s;
        }
        .btn-secondary:hover {
            border-color: var(--brand-green);
            color: var(--brand-green);
            box-shadow: 0 4px 14px rgba(13, 122, 70, .1);
        }
        .btn-secondary:active {
            transform: translateY(1px);
        }

        /* ===== Badge / Tag ===== */
        .tag {
            display: inline-flex;
            align-items: center;
            padding: .22rem .75rem;
            border-radius: 9999px;
            font-size: .73rem;
            font-weight: 700;
            letter-spacing: .02em;
            background: rgba(13, 122, 70, .08);
            color: var(--brand-green);
        }
        .tag-orange {
            background: rgba(255, 106, 44, .12);
            color: #d85012;
        }
        .badge {
            display: inline-flex;
            align-items: center;
            padding: .15rem .55rem;
            border-radius: 9999px;
            font-size: .7rem;
            font-weight: 600;
            background: var(--paper);
            color: #4e5a54;
            border: 1px solid rgba(10, 15, 13, .06);
        }

        /* ===== Page Hero ===== */
        .page-hero {
            position: relative;
            background: linear-gradient(135deg, #0A0F0D 0%, #123528 70%, #1A4A36 100%);
            padding: 4.5rem 0 5.5rem;
            overflow: hidden;
            isolation: isolate;
        }
        .page-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            opacity: .3;
            z-index: -1;
        }
        .page-hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(10, 15, 13, .82) 0%, rgba(10, 15, 13, .25) 100%);
            z-index: -1;
        }
        .page-hero-content {
            position: relative;
            z-index: 1;
            max-width: 48rem;
        }
        .page-hero h1 {
            font-size: clamp(2.2rem, 5vw, 3.6rem);
            font-weight: 900;
            letter-spacing: -.03em;
            color: #fff;
            margin: .6rem 0 .5rem;
            line-height: 1.1;
        }
        .page-hero .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: .4rem;
            background: var(--brand-orange);
            color: #fff;
            font-weight: 700;
            font-size: .78rem;
            padding: .3rem 1rem;
            border-radius: 9999px;
            letter-spacing: .04em;
        }
        .page-hero p {
            color: rgba(255, 255, 255, .86);
            font-size: 1.05rem;
            max-width: 34rem;
            line-height: 1.7;
        }
        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
            margin-top: 1.8rem;
        }
        .hero-stat {
            background: rgba(255, 255, 255, .1);
            border-radius: 1rem;
            padding: .7rem 1.1rem;
            backdrop-filter: blur(6px);
            border: 1px solid rgba(255, 255, 255, .14);
        }
        .hero-stat .num {
            font-size: 1.6rem;
            font-weight: 900;
            color: #fff;
            font-variant-numeric: tabular-nums;
            line-height: 1.2;
        }
        .hero-stat .lbl {
            font-size: .75rem;
            color: rgba(255, 255, 255, .7);
            display: block;
            margin-top: .1rem;
        }

        /* ===== Section ===== */
        .section {
            padding: 4rem 0;
        }
        .section-head {
            margin-bottom: 2.5rem;
        }
        .section-head h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            letter-spacing: -.02em;
            position: relative;
            padding-left: 1rem;
            margin: 0 0 .5rem;
        }
        .section-head h2::before {
            content: "";
            position: absolute;
            left: 0;
            top: .2rem;
            bottom: .2rem;
            width: 4px;
            border-radius: 4px;
            background: linear-gradient(180deg, var(--brand-green), var(--brand-orange));
        }
        .section-head p {
            color: #5c6b64;
            font-size: .98rem;
            margin: 0;
            padding-left: 1rem;
        }

        /* ===== Waterfall ===== */
        .waterfall-grid {
            columns: 1;
            column-gap: 1.5rem;
        }
        @media(min-width:768px) {
            .waterfall-grid {
                columns: 2;
            }
        }
        @media(min-width:1024px) {
            .waterfall-grid {
                columns: 3;
            }
        }
        .waterfall-card {
            break-inside: avoid;
            margin-bottom: 1.5rem;
            background: #fff;
            border-radius: 1.5rem;
            border: 1px solid rgba(10, 15, 13, .05);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            transition: box-shadow .4s, transform .3s;
        }
        .waterfall-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
        }
        .waterfall-card .card-img {
            aspect-ratio: 16/10;
            background: #D9E3DC;
            overflow: hidden;
        }
        .waterfall-card .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s ease;
        }
        .waterfall-card:hover .card-img img {
            transform: scale(1.04);
        }
        .waterfall-card .card-body {
            padding: 1.3rem 1.4rem 1.5rem;
        }
        .waterfall-card h3 {
            font-size: 1.12rem;
            font-weight: 800;
            margin: .6rem 0 .35rem;
            letter-spacing: -.01em;
        }
        .waterfall-card p {
            font-size: .9rem;
            color: #5c6b64;
            line-height: 1.65;
            margin: 0 0 .8rem;
        }
        .card-meta {
            display: flex;
            flex-wrap: wrap;
            gap: .4rem;
            margin-top: .4rem;
        }
        .text-link {
            font-weight: 700;
            color: var(--brand-green);
            font-size: .9rem;
            display: inline-flex;
            align-items: center;
            gap: .2rem;
            transition: color .3s;
        }
        .text-link:hover {
            color: var(--brand-orange);
        }
        .no-image {
            background: linear-gradient(160deg, #f0f7f2 0%, #fff 60%);
        }

        /* ===== Member Plans ===== */
        .member-plans {
            background: #fff;
            border-top: 1px solid var(--neutral-line);
            border-bottom: 1px solid var(--neutral-line);
        }
        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.2rem;
        }
        .plan-card {
            background: #fff;
            border-radius: 1.5rem;
            border: 1px solid rgba(10, 15, 13, .06);
            padding: 1.6rem 1.4rem;
            transition: box-shadow .4s, transform .3s, border-color .3s;
            position: relative;
        }
        .plan-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
            border-color: rgba(13, 122, 70, .3);
        }
        .plan-card.highlight {
            border-color: var(--brand-orange);
            box-shadow: 0 12px 30px rgba(255, 106, 44, .15);
        }
        .plan-card.highlight::before {
            content: "最受欢迎";
            position: absolute;
            top: -10px;
            right: 16px;
            background: var(--brand-orange);
            color: #fff;
            font-size: .7rem;
            font-weight: 700;
            padding: .2rem .7rem;
            border-radius: 9999px;
            letter-spacing: .03em;
        }
        .plan-name {
            font-size: 1rem;
            font-weight: 800;
            margin: 0 0 .2rem;
        }
        .plan-price {
            font-size: 2rem;
            font-weight: 900;
            font-variant-numeric: tabular-nums;
            color: var(--brand-green);
            line-height: 1.1;
            margin: .4rem 0 .6rem;
        }
        .plan-price small {
            font-size: .8rem;
            font-weight: 600;
            color: #8a9a91;
        }
        .plan-features {
            list-style: none;
            margin: 0 0 1.1rem;
            padding: 0;
        }
        .plan-features li {
            font-size: .85rem;
            color: #4e5a54;
            padding: .3rem 0;
            display: flex;
            align-items: center;
            gap: .45rem;
        }
        .plan-features li::before {
            content: "✓";
            color: var(--brand-green);
            font-weight: 800;
            width: 1.1em;
            flex-shrink: 0;
        }
        .plan-card .btn-primary,
        .plan-card .btn-secondary {
            width: 100%;
            font-size: .88rem;
            min-height: 44px;
            padding: .5rem 1rem;
        }

        /* ===== FAQ ===== */
        .faq-wrap {
            max-width: 46rem;
            margin: 0 auto;
        }
        .faq-item {
            background: #fff;
            border-radius: 1.25rem;
            border: 1px solid rgba(10, 15, 13, .05);
            margin-bottom: .8rem;
            overflow: hidden;
            transition: box-shadow .3s;
        }
        .faq-item:hover {
            box-shadow: var(--shadow-md);
        }
        .faq-item summary {
            display: flex;
            align-items: center;
            gap: .8rem;
            padding: 1.1rem 1.3rem;
            cursor: pointer;
            list-style: none;
            font-weight: 700;
            font-size: .96rem;
            min-height: 48px;
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item .faq-plus {
            flex-shrink: 0;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: var(--brand-orange);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.1rem;
            transition: transform .35s ease;
            line-height: 1;
        }
        .faq-item[open] .faq-plus {
            transform: rotate(45deg);
        }
        .faq-answer {
            padding: 0 1.3rem 1.1rem 3.2rem;
            font-size: .9rem;
            color: #5c6b64;
            line-height: 1.75;
        }
        .faq-answer p {
            margin: 0;
        }

        /* ===== CTA ===== */
        .cta-section {
            background: linear-gradient(135deg, #0A0F0D 0%, #123528 70%);
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }
        .cta-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-2.png') center/cover no-repeat;
            opacity: .18;
            z-index: -1;
        }
        .cta-inner {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: center;
        }
        @media(min-width:900px) {
            .cta-inner {
                grid-template-columns: 1.1fr .9fr;
            }
        }
        .cta-left h2 {
            color: #fff;
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 900;
            margin: 0 0 .6rem;
            letter-spacing: -.02em;
        }
        .cta-left p {
            color: rgba(255, 255, 255, .82);
            font-size: .96rem;
            line-height: 1.7;
            max-width: 30rem;
        }
        .cta-phone {
            font-size: 1.5rem;
            font-weight: 900;
            color: #fff;
            font-variant-numeric: tabular-nums;
            letter-spacing: .02em;
            margin: 1rem 0 .8rem;
            display: inline-flex;
            align-items: center;
            gap: .5rem;
        }
        .qr-placeholder {
            width: 110px;
            height: 110px;
            border: 2px dashed rgba(255, 255, 255, .4);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, .5);
            font-size: .75rem;
            text-align: center;
            line-height: 1.3;
            margin-top: .8rem;
        }
        .cta-form-wrap {
            background: #fff;
            border-radius: 1.75rem;
            padding: 1.6rem;
            box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
        }
        .cta-form-wrap label {
            font-size: .85rem;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: .25rem;
            display: block;
        }
        .cta-form-wrap input,
        .cta-form-wrap select,
        .cta-form-wrap textarea {
            width: 100%;
            border: 1px solid rgba(10, 15, 13, .12);
            border-radius: .8rem;
            padding: .65rem .9rem;
            font-size: .9rem;
            background: #fafaf8;
            transition: border-color .3s, box-shadow .3s;
            margin-bottom: .8rem;
        }
        .cta-form-wrap input:focus,
        .cta-form-wrap select:focus,
        .cta-form-wrap textarea:focus {
            outline: none;
            border-color: var(--brand-green);
            box-shadow: 0 0 0 3px rgba(13, 122, 70, .1);
        }

        /* ===== Footer ===== */
        .site-footer {
            background: #0A0F0D;
            color: rgba(255, 255, 255, .7);
            padding: 3.5rem 0 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, .08);
        }
        @media(min-width:768px) {
            .footer-grid {
                grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
            }
        }
        .footer-brand .brand-logo {
            margin-bottom: .8rem;
        }
        .footer-brand .logo-text {
            color: #fff;
        }
        .footer-brand .logo-text small {
            color: rgba(255, 255, 255, .6);
        }
        .footer-desc {
            font-size: .86rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, .55);
            max-width: 20rem;
        }
        .footer-col h4 {
            font-size: .9rem;
            font-weight: 700;
            color: #fff;
            margin: 0 0 .8rem;
            letter-spacing: .02em;
        }
        .footer-col a {
            display: block;
            padding: .3rem 0;
            font-size: .86rem;
            color: rgba(255, 255, 255, .6);
            transition: color .3s, padding-left .3s;
        }
        .footer-col a:hover {
            color: #fff;
            padding-left: .25rem;
        }
        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: .5rem;
            padding: 1.2rem 0;
            font-size: .8rem;
            color: rgba(255, 255, 255, .4);
        }
        .footer-bottom a {
            color: rgba(255, 255, 255, .55);
        }
        .footer-bottom a:hover {
            color: #fff;
        }

        /* ===== Misc ===== */
        .section-divider {
            border: none;
            border-top: 1px solid var(--neutral-line);
            margin: 0;
        }
        .text-neutral-mid {
            color: #5c6b64;
        }
        .num-tabular {
            font-variant-numeric: tabular-nums;
        }
