/* roulang page: index */
:root {
  --primary: #1E3A2F;
  --primary-light: #2A4D3F;
  --accent: #B48C4A;
  --accent-dark: #9A7438;
  --bg: #F5F2EC;
  --white: #FFFFFF;
  --text: #1A1A18;
  --muted: #6B6B66;
  --light-muted: #9C9C94;
  --border: #E5DFD6;
  --radius-lg: 16px;
  --radius-md: 8px;
  --radius-pill: 999px;
  --shadow-card: 0 2px 8px rgba(30,58,47,0.06);
  --shadow-hover: 0 8px 24px rgba(30,58,47,0.10);
  --spacing-section: 80px;
  --spacing-mobile: 48px;
  --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  --font-serif: Georgia, "Didot", "Times New Roman", serif;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .25s ease, background .25s ease, border-color .25s ease; }
a:hover { color: var(--accent); }
button { font-family: inherit; cursor: pointer; }
input, button { font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px; padding: 0 28px; border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 500; line-height: 1; white-space: nowrap;
  border: 1px solid transparent; transition: all .25s ease; gap: 8px;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--accent); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(180, 140, 74, 0.25); }
.btn-outline { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn-outline:hover { background: rgba(30,58,47,0.06); border-color: var(--primary); color: var(--primary); }
.btn-light { background: #fff; color: var(--primary); }
.btn-light:hover { background: var(--bg); color: var(--primary); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,0.10); }
.btn-sm { height: 38px; padding: 0 20px; font-size: 13px; }
.btn-block { width: 100%; }
.btn:focus-visible, a:focus-visible, .tab:focus-visible, .faq-question:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px;
}

/* Header 双层导航 */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--white); box-shadow: 0 1px 4px rgba(30,58,47,0.04); border-bottom: 1px solid var(--border); }
.header-top { background: var(--white); }
.header-top-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.brand-text { font-size: 20px; font-weight: 700; color: var(--primary); letter-spacing: 0.5px; }
.header-right { display: flex; align-items: center; gap: 16px; }
.search-wrap { position: relative; }
.search-input { height: 40px; width: 220px; border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 0 42px 0 18px; font-size: 14px; background: var(--bg); color: var(--text); transition: all .25s ease; }
.search-input::placeholder { color: var(--light-muted); }
.search-input:focus { outline: none; border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 3px rgba(30,58,47,0.10); }
.search-btn { position: absolute; right: 4px; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; border: none; background: transparent; color: var(--primary); border-radius: 50%; font-size: 14px; transition: all .25s ease; }
.search-btn:hover { background: rgba(30,58,47,0.08); color: var(--accent); }
.btn-header { margin-left: 8px; }
.nav-toggle { display: none; width: 40px; height: 40px; border: 1px solid var(--border); background: var(--white); border-radius: 8px; color: var(--primary); font-size: 18px; align-items: center; justify-content: center; transition: all .25s ease; }
.nav-toggle:hover { background: var(--bg); color: var(--accent); border-color: var(--accent); }

.header-nav { background: var(--white); border-top: 1px solid var(--border); }
.channel-tabs { display: flex; align-items: center; overflow-x: auto; scrollbar-width: none; height: 48px; }
.channel-tabs::-webkit-scrollbar { display: none; }
.tab { position: relative; display: inline-flex; align-items: center; height: 48px; padding: 0 22px; font-size: 15px; font-weight: 500; color: var(--muted); white-space: nowrap; border-bottom: 2px solid transparent; transition: all .25s ease; }
.tab:hover { color: var(--primary); background: rgba(30,58,47,0.05); }
.tab.active { color: var(--primary); font-weight: 600; border-bottom-color: var(--accent); }
.mobile-menu { display: none; background: var(--white); border-top: 1px solid var(--border); padding: 16px 0 20px; }
.mobile-menu.open { display: block; }
.mobile-menu .search-wrap { margin-bottom: 12px; }
.mobile-menu .search-input { width: 100%; }

/* 倒计时条 */
.countdown-bar { background: var(--primary); }
.countdown-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 20px; }
.countdown-left { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.countdown-label { color: rgba(255,255,255,0.85); font-size: 14px; }
.countdown-timer { display: flex; align-items: center; gap: 4px; }
.timer-num { font-family: var(--font-serif); font-size: 32px; color: var(--accent); font-weight: 700; letter-spacing: 1px; line-height: 1; min-width: 44px; text-align: center; font-feature-settings: "tnum"; }
.timer-unit { font-size: 13px; color: rgba(255,255,255,0.70); margin-right: 8px; }
.timer-unit:last-child { margin-right: 0; }
.countdown-link { color: #fff; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 2px; transition: all .25s ease; white-space: nowrap; }
.countdown-link:hover { color: var(--accent); border-color: var(--accent); }

/* Hero */
.hero { padding: 72px 0 64px; background: var(--bg); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(180,140,74,0.12); color: var(--accent-dark); font-size: 13px; font-weight: 600; padding: 4px 14px; border-radius: var(--radius-pill); margin-bottom: 20px; }
.hero h1 { font-size: 48px; font-weight: 700; color: var(--primary); line-height: 1.2; letter-spacing: 1px; margin-bottom: 16px; }
.hero-subtitle { font-size: 17px; color: var(--muted); line-height: 1.8; max-width: 460px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-meta { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-meta span { font-size: 13px; color: var(--light-muted); display: flex; align-items: center; gap: 6px; }
.hero-meta span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; }
.hero-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.hero-image img { width: 100%; height: 400px; object-fit: cover; transition: transform 3s linear; }
.hero-image:hover img { transform: scale(1.03); }
.hero-badge-corner { position: absolute; top: 18px; right: 18px; background: rgba(30,58,47,0.88); color: #fff; font-size: 13px; padding: 6px 16px; border-radius: var(--radius-pill); letter-spacing: 1px; }

/* 板块通用 */
.section-head { margin-bottom: 40px; max-width: 640px; }
.section-head h2 { font-size: 30px; font-weight: 600; color: var(--text); line-height: 1.3; margin-bottom: 10px; }
.section-head p { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* 卖点区 */
.features { padding: var(--spacing-section) 0; background: var(--white); }
.features .section-head { margin-bottom: 48px; }
.features-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.feature-item { padding: 32px 36px; position: relative; }
.feature-item:not(:last-child) { border-right: 1px solid var(--border); }
.feature-num { font-family: var(--font-serif); font-size: 24px; color: var(--accent); font-weight: 700; display: block; margin-bottom: 16px; }
.feature-item h3 { font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 12px; }
.feature-item p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* 图墙 */
.gallery { padding: var(--spacing-section) 0; background: var(--bg); }
.gallery-grid { display: grid; grid-template-columns: 1.2fr 0.9fr 0.9fr; gap: 16px; }
.gallery-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); min-height: 240px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 3s linear; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-overlay { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 20px 16px; background: linear-gradient(to top, rgba(26,26,24,0.7), transparent); color: #fff; display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; }
.gallery-overlay p { font-size: 16px; font-weight: 600; color: #fff; }
.gallery-overlay span { font-size: 13px; color: rgba(255,255,255,0.8); }
.gallery-large { grid-column: span 2; min-height: 300px; }

/* CTA 区 */
.cta-section { position: relative; padding: 72px 0; background-color: var(--accent); background-image: url('/assets/images/backpic/back-3.png'); background-size: cover; background-position: center; background-blend-mode: multiply; }
.cta-section::before { content: "03"; position: absolute; right: 40px; top: 50%; transform: translateY(-50%); font-family: var(--font-serif); font-size: 180px; color: rgba(255,255,255,0.08); font-weight: 700; line-height: 1; pointer-events: none; }
.cta-content { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-content h2 { font-size: 32px; font-weight: 600; color: var(--primary); margin-bottom: 8px; }
.cta-content p { font-size: 15px; color: rgba(26,26,24,0.75); max-width: 420px; }
.cta-content .btn { flex-shrink: 0; }

/* 最新资讯 */
.latest-news { padding: var(--spacing-section) 0; background: var(--white); }
.news-list { border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-card); border: 1px solid var(--border); overflow: hidden; }
.news-item { display: flex; gap: 24px; padding: 24px 28px; border-bottom: 1px solid var(--border); transition: background .25s ease; }
.news-item:last-child { border-bottom: none; }
.news-item:hover { background: #FAF8F3; }
.news-thumb { flex-shrink: 0; width: 160px; height: 100px; border-radius: var(--radius-md); overflow: hidden; }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 3s linear; }
.news-item:hover .news-thumb img { transform: scale(1.03); }
.news-content { flex: 1; min-width: 0; }
.news-content h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; line-height: 1.5; }
.news-content h3 a { color: var(--text); }
.news-content h3 a:hover { color: var(--primary); }
.news-summary { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 10px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.news-meta { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--light-muted); }
.news-category { background: rgba(180,140,74,0.12); color: var(--accent-dark); padding: 2px 10px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 500; }
.news-more { color: var(--primary); font-size: 13px; font-weight: 500; }
.news-more:hover { color: var(--accent); }
.news-empty { padding: 48px 28px; text-align: center; color: var(--muted); font-size: 15px; line-height: 1.8; }

/* FAQ */
.faq-section { padding: var(--spacing-section) 0; background: var(--bg); }
.faq-grid { display: grid; grid-template-columns: 300px 1fr; gap: 48px; }
.faq-sidebar { position: sticky; top: 140px; align-self: start; }
.faq-sidebar h2 { font-size: 30px; font-weight: 600; color: var(--text); margin-bottom: 12px; }
.faq-sidebar p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: all .25s ease; border-left: 3px solid transparent; }
.faq-item:hover { border-color: rgba(30,58,47,0.15); }
.faq-item.active { background: #FAF8F3; border-left-color: var(--accent); box-shadow: var(--shadow-card); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; background: none; border: none; font-size: 16px; font-weight: 500; color: var(--text); text-align: left; transition: color .25s ease; }
.faq-question:hover { color: var(--primary); }
.faq-icon { font-size: 18px; color: var(--accent); transition: transform .3s ease; font-style: normal; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer-inner { padding: 0 24px 18px; font-size: 14px; color: var(--muted); line-height: 1.8; }

/* 页脚 */
.site-footer { background: var(--primary); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand .brand-icon { background: rgba(255,255,255,0.12); color: var(--accent); }
.footer-brand .brand-text { color: #fff; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 14px; transition: all .25s ease; }
.footer-social a:hover { color: var(--accent); border-color: var(--accent); background: rgba(255,255,255,0.05); }
.footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.45); margin-bottom: 16px; font-weight: 600; }
.footer-col a { display: block; color: rgba(255,255,255,0.7); font-size: 14px; line-height: 2.2; transition: color .25s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-col p { font-size: 14px; line-height: 2; }
.footer-bottom { border-top: 1px solid rgba(180,140,74,0.2); padding: 18px 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.4); }

/* 滚动渐显 */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .45s ease-out, transform .45s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* 响应式 */
@media screen and (max-width: 1024px) {
  .hero h1 { font-size: 40px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-large { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-section::before { font-size: 120px; }
}
@media screen and (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-image img { height: 280px; }
  .features-list { grid-template-columns: 1fr; }
  .feature-item { padding: 24px 0; border-right: none; border-bottom: 1px solid var(--border); }
  .feature-item:last-child { border-bottom: none; }
  .gallery-grid { grid-template-columns: 1fr; gap: 12px; }
  .gallery-large { grid-column: span 1; }
  .gallery-item { min-height: 200px; }
  .countdown-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .faq-grid { grid-template-columns: 1fr; gap: 24px; }
  .faq-sidebar { position: static; }
  .cta-content { flex-direction: column; align-items: flex-start; }
  .news-item { flex-direction: column; padding: 20px; }
  .news-thumb { width: 100%; height: 180px; }
}
@media screen and (max-width: 640px) {
  .container { padding: 0 16px; }
  .header-top-inner { height: 56px; }
  .brand-text { font-size: 17px; }
  .brand-icon { width: 32px; height: 32px; font-size: 14px; }
  .search-wrap { display: none; }
  .btn-header { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu .search-wrap { display: block; }
  .channel-tabs { height: 44px; }
  .tab { height: 44px; padding: 0 16px; font-size: 14px; }
  .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: 32px; }
  .hero-subtitle { font-size: 15px; }
  .hero-actions .btn { flex: 1; }
  .section-head h2 { font-size: 24px; }
  .countdown-label { font-size: 13px; }
  .timer-num { font-size: 24px; min-width: 32px; }
  .cta-content h2 { font-size: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { justify-content: center; text-align: center; }
  .news-thumb { height: 140px; }
  .news-meta { flex-wrap: wrap; }
  .faq-question { font-size: 15px; padding: 14px 18px; }
  .faq-answer-inner { padding: 0 18px 16px; }
}
@media screen and (max-width: 520px) {
  .hero-actions .btn { width: 100%; }
  .countdown-timer { flex-wrap: wrap; }
  .gallery-item { min-height: 180px; }
  .gallery-overlay { padding-top: 30px; }
  .gallery-overlay p { font-size: 14px; }
  .cta-section { padding: 48px 0; }
  .cta-content .btn { width: 100%; }
}

/* roulang page: category1 */
/* ============ 设计变量 ============ */
:root {
  --primary: #1E3A2F;
  --primary-light: rgba(30, 58, 47, 0.08);
  --accent: #B48C4A;
  --accent-light: rgba(180, 140, 74, 0.12);
  --bg-warm: #F5F2EC;
  --bg-white: #FFFFFF;
  --text-dark: #1A1A18;
  --text-gray: #6B6B66;
  --text-light: #9C9C94;
  --border: #E5DFD6;
  --border-dark: #D8D2C6;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(30, 58, 47, 0.06);
  --shadow-md: 0 8px 24px rgba(30, 58, 47, 0.10);
  --ease: 0.25s ease;
  --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  --font-serif: Georgia, "Times New Roman", "Songti SC", serif;
}

/* ============ Reset / Base ============ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-warm);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--ease);
}

a:hover {
  color: var(--accent);
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (max-width: 640px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ============ 双层导航 ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-warm);
  box-shadow: 0 1px 0 var(--border);
}

.header-top {
  background: var(--primary);
  height: 64px;
  display: flex;
  align-items: center;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}

.brand-text {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-search {
  position: relative;
}

.header-search input {
  width: 0;
  height: 36px;
  padding: 0;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.header-search input.show {
  width: 220px;
  padding: 0 16px;
  opacity: 1;
  pointer-events: auto;
}

.header-search input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.header-search .search-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background var(--ease);
}

.header-search .search-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--ease);
}

.btn-primary:hover {
  background: #a0793d;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(180, 140, 74, 0.3);
}

.channel-tabs {
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.channel-tabs::-webkit-scrollbar {
  display: none;
}

.channel-tabs .tab {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-gray);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all var(--ease);
  flex-shrink: 0;
}

.channel-tabs .tab:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.channel-tabs .tab.active {
  color: var(--primary);
  font-weight: 600;
  border-bottom-color: var(--accent);
}

/* ============ 分类横幅 ============ */
.category-banner {
  position: relative;
  background: var(--primary);
  overflow: hidden;
  padding: 64px 0;
}

.category-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  background-image: url('/assets/images/backpic/back-1.png');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.category-banner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  background: linear-gradient(90deg, var(--primary) 0%, rgba(30, 58, 47, 0.2) 60%, rgba(30, 58, 47, 0) 100%);
}

.banner-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 180px;
}

.banner-content {
  max-width: 640px;
}

.banner-content h1 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 16px;
  line-height: 1.25;
}

.banner-content .banner-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  line-height: 1.8;
  max-width: 540px;
}

.banner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.banner-tags span {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: #fff;
  backdrop-filter: blur(4px);
}

.breadcrumb {
  padding: 16px 0;
  font-size: 13px;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--text-gray);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb .sep {
  margin: 0 8px;
  color: var(--text-light);
}

.breadcrumb .current {
  color: var(--text-dark);
  font-weight: 500;
}

/* ============ 赛程焦点 ============ */
.fixture-section {
  padding: 48px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section-head h2 {
  font-size: 30px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 1px;
}

.section-head .lead {
  font-size: 14px;
  color: var(--text-gray);
}

.fixture-grid {
  display: flex;
  gap: 24px;
}

.fixture-card {
  flex: 1;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}

.fixture-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
  opacity: 0;
  transition: opacity var(--ease);
}

.fixture-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.fixture-card:hover::before {
  opacity: 1;
}

.fixture-tag {
  display: inline-block;
  font-size: 12px;
  padding: 4px 12px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: var(--radius-pill);
  font-weight: 600;
  margin-bottom: 16px;
}

.fixture-date {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.fixture-match {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 8px;
}

.fixture-info {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

.fixture-stat {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.fixture-stat .stat-item {
  font-size: 13px;
  color: var(--text-light);
}

.fixture-stat .stat-item strong {
  display: block;
  font-size: 20px;
  font-family: var(--font-serif);
  color: var(--primary);
}

/* ============ 热门资讯卡片 ============ */
.hot-section {
  padding: 48px 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hot-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--ease);
}

.hot-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.hot-card .card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.hot-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hot-card:hover .card-img img {
  transform: scale(1.05);
}

.hot-card .card-img .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hot-card .card-body {
  padding: 20px 22px 22px;
}

.hot-card .card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 10px;
  transition: color var(--ease);
}

.hot-card .card-title a {
  color: inherit;
}

.hot-card .card-title a:hover {
  color: var(--primary);
}

.hot-card .card-desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hot-card .card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-light);
}

.hot-card .card-meta .meta-cat {
  background: var(--primary-light);
  color: var(--primary);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-size: 12px;
}

/* ============ 特色横栏 ============ */
.feature-section {
  padding: 48px 0;
}

.feature-bar {
  display: flex;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.feature-bar .feature-img {
  flex: 0 0 50%;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.feature-bar .feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.feature-bar:hover .feature-img img {
  transform: scale(1.03);
}

.feature-bar .feature-content {
  flex: 1;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-bar .feature-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-bar .feature-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 16px;
}

.feature-bar .feature-text {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ============ 专题推荐 ============ */
.topic-section {
  padding: 48px 0;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.topic-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 260px;
  cursor: pointer;
  transition: all var(--ease);
}

.topic-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.topic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.topic-card:hover img {
  transform: scale(1.06);
}

.topic-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(26, 26, 24, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.topic-card .overlay .topic-text {
  color: #fff;
}

.topic-card .overlay .topic-tag {
  display: inline-block;
  font-size: 12px;
  background: var(--accent);
  padding: 2px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.topic-card .overlay .topic-title {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
}

.topic-card .overlay .topic-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
  transition: color var(--ease);
}

.topic-card .overlay .topic-link:hover {
  color: var(--accent);
}

/* ============ FAQ ============ */
.faq-section {
  padding: 48px 0;
}

.faq-layout {
  display: flex;
  gap: 40px;
}

.faq-sidebar {
  flex: 0 0 260px;
}

.faq-sidebar h2 {
  font-size: 30px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.faq-sidebar p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}

.faq-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--ease);
}

.faq-item.open {
  border-left: 3px solid var(--accent);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  user-select: none;
  transition: background var(--ease);
}

.faq-question:hover {
  background: #FAF8F3;
}

.faq-question .faq-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 14px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.8;
  border-top: 1px solid transparent;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-item.open .faq-answer-inner {
  border-top-color: var(--border);
  padding-top: 14px;
}

/* ============ CTA ============ */
.cta-section {
  padding: 56px 0;
}

.cta-box {
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-box::after {
  content: "2026";
  position: absolute;
  right: -16px;
  bottom: -36px;
  font-family: var(--font-serif);
  font-size: 140px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  pointer-events: none;
}

.cta-box .cta-copy {
  position: relative;
  z-index: 1;
}

.cta-box .cta-copy h3 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.cta-box .cta-copy p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.cta-box .cta-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  transition: all var(--ease);
  white-space: nowrap;
}

.cta-box .cta-btn:hover {
  background: #132a22;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 47, 0.25);
}

/* ============ 页脚 ============ */
.site-footer {
  background: var(--primary);
  padding-top: 56px;
  margin-top: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.footer-brand .brand-text {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
}

.footer-brand p {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all var(--ease);
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(180, 140, 74, 0.1);
}

.footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  padding: 5px 0;
  transition: all var(--ease);
}

.footer-col a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-col p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(180, 140, 74, 0.2);
  padding: 18px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

/* ============ 滚动渐显 ============ */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ 响应式 ============ */
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .topic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .category-banner {
    padding: 48px 0;
  }
  .category-banner::before {
    width: 70%;
  }
  .category-banner::after {
    width: 70%;
  }
}

@media (max-width: 768px) {
  .header-top {
    height: auto;
    padding: 12px 0;
  }
  .header-actions .btn-primary span {
    display: none;
  }
  .header-actions .btn-primary {
    padding: 0 14px;
  }
  .header-search input.show {
    width: 160px;
  }
  .category-banner::before,
  .category-banner::after {
    width: 100%;
    opacity: 0.2;
  }
  .banner-content h1 {
    font-size: 32px;
  }
  .fixture-grid {
    flex-direction: column;
  }
  .feature-bar {
    flex-direction: column;
  }
  .feature-bar .feature-img {
    height: 240px;
    min-height: 0;
  }
  .feature-bar .feature-content {
    padding: 28px 24px;
  }
  .faq-layout {
    flex-direction: column;
    gap: 24px;
  }
  .cta-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 36px 28px;
  }
  .cta-box::after {
    font-size: 100px;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .section-head h2 {
    font-size: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom .container {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .topic-grid {
    grid-template-columns: 1fr;
  }
  .header-search input.show {
    width: 120px;
    font-size: 13px;
  }
  .header-actions {
    gap: 8px;
  }
  .brand-text {
    font-size: 17px;
  }
  .brand-icon {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
  .channel-tabs .tab {
    padding: 0 18px;
    font-size: 14px;
  }
  .banner-content h1 {
    font-size: 28px;
  }
  .banner-content .banner-desc {
    font-size: 15px;
  }
  .banner-tags {
    gap: 8px;
  }
  .banner-tags span {
    font-size: 12px;
    padding: 4px 12px;
  }
  .fixture-card {
    padding: 20px 16px;
  }
  .hot-card .card-img {
    height: 180px;
  }
  .cta-box .cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .header-top-inner {
    flex-wrap: wrap;
    gap: 8px;
  }
  .header-actions {
    width: 100%;
    justify-content: flex-end;
  }
  .header-search {
    display: none;
  }
  .category-banner {
    padding: 40px 0;
  }
  .banner-content h1 {
    font-size: 26px;
  }
}

/* ============ 打印 ============ */
@media print {
  .site-header,
  .site-footer,
  .cta-section {
    display: none;
  }
}

/* ============ 焦点状态 ============ */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* roulang page: article */
:root {
  --primary: #1E3A2F;
  --primary-dark: #163027;
  --accent: #B48C4A;
  --accent-dark: #9A7440;
  --bg-warm: #F5F2EC;
  --bg-white: #FFFFFF;
  --text-dark: #1A1A18;
  --text-gray: #6B6B66;
  --text-light: #9C9C94;
  --border: #E5DFD6;
  --border-dark: #D8D2C6;
  --radius-lg: 16px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(30,58,47,.06);
  --shadow-hover: 0 8px 24px rgba(30,58,47,.10);
  --font-sans: "PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans SC",sans-serif;
  --font-serif: Georgia,"Times New Roman",Didot,serif;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--font-sans);
  background:var(--bg-warm);
  color:var(--text-dark);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{max-width:100%;display:block}
a{color:var(--primary);text-decoration:none;transition:color .25s ease}
a:hover{color:var(--accent-dark)}
button,input,select,textarea{font-family:inherit}
.container{max-width:1200px;margin:0 auto;padding:0 24px}
.container.narrow{max-width:720px}
.grid-x{display:flex;flex-flow:row wrap}
.grid-margin-x>.cell{margin-left:12px;margin-right:12px}
.grid-margin-x{margin-left:-12px;margin-right:-12px}

.cms-tdk-hidden{display:none}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  height:48px;padding:0 28px;
  border-radius:var(--radius-pill);
  font-size:15px;font-weight:600;
  border:none;cursor:pointer;
  transition:background .25s ease,color .25s ease,transform .25s ease,box-shadow .25s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{background:var(--primary);color:#fff}
.btn-primary:hover{background:var(--accent);color:#fff;box-shadow:0 6px 20px rgba(180,140,74,.35)}
.btn-gold{background:var(--accent);color:var(--primary);box-shadow:0 4px 16px rgba(180,140,74,.25)}
.btn-gold:hover{background:#D6A85A;color:var(--primary-dark)}
.btn-outline{background:transparent;border:1px solid var(--primary);color:var(--primary)}
.btn-outline:hover{background:rgba(30,58,47,.06);box-shadow:none}
.btn-sm{height:40px;padding:0 20px;font-size:14px}

.site-header{
  position:sticky;top:0;z-index:100;
  background:var(--bg-warm);
  box-shadow:0 2px 12px rgba(30,58,47,.08);
}
.header-top{background:var(--primary)}
.header-row{
  display:flex;align-items:center;justify-content:space-between;
  height:64px;gap:16px;
}
.brand{
  display:inline-flex;align-items:center;gap:10px;
  color:#fff;white-space:nowrap;
}
.brand-icon{
  width:36px;height:36px;border-radius:50%;
  background:var(--accent);color:var(--primary);
  display:flex;align-items:center;justify-content:center;
  font-size:16px;flex-shrink:0;
}
.brand-text{font-size:20px;font-weight:700;letter-spacing:.5px}
.header-actions{display:flex;align-items:center;gap:12px}
.search-box{
  display:flex;align-items:center;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  border-radius:var(--radius-pill);
  height:40px;padding:0 6px 0 16px;
  transition:border-color .25s ease,background .25s ease;
}
.search-box:focus-within{background:rgba(255,255,255,.2);border-color:var(--accent)}
.search-box input{
  background:transparent;border:none;outline:none;
  color:#fff;font-size:14px;width:180px;
  transition:width .3s ease;
}
.search-box input::placeholder{color:rgba(255,255,255,.55)}
.search-box button{
  background:var(--accent);color:var(--primary);
  width:28px;height:28px;border:none;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;font-size:12px;flex-shrink:0;
  transition:background .25s ease,transform .25s ease;
}
.search-box button:hover{background:#D6A85A;transform:scale(1.05)}
.header-cta-btn{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--accent);color:var(--primary);
  height:40px;padding:0 20px;border-radius:var(--radius-pill);
  font-size:14px;font-weight:600;white-space:nowrap;
  transition:background .25s ease,color .25s ease,transform .25s ease,box-shadow .25s ease;
}
.header-cta-btn:hover{background:#D6A85A;color:var(--primary-dark);transform:translateY(-1px)}

.channel-tabs{background:var(--bg-warm);border-bottom:1px solid var(--border)}
.channel-tabs .container{display:flex;align-items:center;min-width:0}
.channel-tabs .tab{
  display:inline-flex;align-items:center;
  height:48px;padding:0 20px;
  font-size:14px;font-weight:500;
  color:var(--text-gray);
  border-bottom:2px solid transparent;
  transition:color .25s ease,background .25s ease,border-color .25s ease;
  white-space:nowrap;
}
.channel-tabs .tab:hover{background:rgba(30,58,47,.06);color:var(--primary)}
.channel-tabs .tab.active{color:var(--primary);font-weight:600;border-bottom-color:var(--accent)}

.breadcrumb{
  padding:20px 0 0;
  font-size:13px;color:var(--text-gray);
  display:flex;flex-wrap:wrap;align-items:center;
}
.breadcrumb a{color:var(--text-gray);transition:color .2s}
.breadcrumb a:hover{color:var(--primary)}
.breadcrumb .sep{margin:0 8px;color:var(--text-light)}
.breadcrumb .current{color:var(--text-dark);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:320px}

.article-section{padding:28px 0 56px}
.category-pill{
  display:inline-block;
  background:rgba(180,140,74,.14);
  color:var(--accent-dark);
  border-radius:var(--radius-pill);
  padding:5px 16px;
  font-size:13px;font-weight:500;
  margin-bottom:14px;
}
.article-title{
  font-size:36px;line-height:1.3;
  color:var(--primary);
  font-weight:700;
  margin:0 0 16px;
  letter-spacing:-.2px;
}
.article-meta{
  display:flex;flex-wrap:wrap;gap:20px;
  color:var(--text-gray);font-size:13px;
  padding-bottom:28px;
  border-bottom:1px solid var(--border);
  margin-bottom:36px;
}
.meta-item{display:inline-flex;align-items:center;gap:6px}
.meta-item i{color:var(--accent)}

.article-body{
  font-size:16px;line-height:1.85;color:var(--text-dark);
  word-break:break-word;
}
.article-body p{margin-bottom:1.5em}
.article-body h2{
  color:var(--primary);font-size:24px;font-weight:600;
  margin:36px 0 16px;line-height:1.4;
}
.article-body h3{
  color:var(--primary);font-size:20px;font-weight:600;
  margin:28px 0 12px;line-height:1.4;
}
.article-body h4{
  color:var(--primary);font-size:17px;font-weight:600;
  margin:24px 0 10px;
}
.article-body ul,.article-body ol{margin:0 0 1.5em 1.4em}
.article-body li{margin-bottom:.5em}
.article-body img{border-radius:8px;margin:28px auto}
.article-body blockquote{
  border-left:3px solid var(--accent);
  background:#FAF8F3;
  padding:18px 24px;
  margin:28px 0;
  border-radius:0 8px 8px 0;
  color:var(--text-gray);
  font-style:normal;
}
.article-body blockquote p{margin-bottom:0}
.article-body a{text-decoration:underline;text-underline-offset:3px;text-decoration-color:rgba(180,140,74,.5)}
.article-body a:hover{color:var(--accent-dark)}
.article-body code{
  background:#F0EDE6;
  padding:2px 8px;
  border-radius:4px;
  font-size:.9em;
}

.not-found{
  text-align:center;
  padding:72px 24px;
  background:var(--bg-white);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
}
.not-found i{font-size:52px;color:var(--accent)}
.not-found h2{font-size:24px;color:var(--primary);margin:20px 0 10px}
.not-found p{color:var(--text-gray);margin-bottom:28px}

.article-tags{
  display:flex;flex-wrap:wrap;gap:10px;
  margin-top:36px;padding-top:24px;
  border-top:1px solid var(--border);
}
.tag{
  display:inline-flex;align-items:center;
  background:var(--bg-white);
  border:1px solid var(--border);
  border-radius:var(--radius-pill);
  padding:6px 16px;
  font-size:13px;
  color:var(--primary);
  transition:border-color .25s ease,background .25s ease,color .25s ease;
}
.tag:hover{border-color:var(--accent);color:var(--accent-dark);background:rgba(180,140,74,.06)}

.related-section{
  padding:64px 0;
  background:var(--bg-white);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section-title{
  font-size:30px;font-weight:600;
  color:var(--primary);
  margin-bottom:36px;
  letter-spacing:-.2px;
}
.related-card{
  display:block;
  background:var(--bg-white);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  overflow:hidden;
  height:100%;
  box-shadow:var(--shadow-sm);
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.related-card:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow-hover);
  border-color:rgba(30,58,47,.25);
}
.related-card-img{
  width:100%;height:180px;object-fit:cover;
  transition:transform 3s ease;
}
.related-card:hover .related-card-img{transform:scale(1.03)}
.related-card-body{padding:20px;position:relative}
.related-card-body h3{
  font-size:17px;font-weight:600;line-height:1.45;
  color:var(--text-dark);
  margin-bottom:12px;
  transition:color .25s ease;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.related-card:hover .related-card-body h3{color:var(--primary)}
.related-date{
  font-size:13px;color:var(--text-light);
  display:block;margin-bottom:12px;
}
.related-link{
  font-size:13px;color:var(--primary);
  display:inline-flex;align-items:center;gap:6px;
  font-weight:500;
  transition:color .25s ease,gap .25s ease;
}
.related-card:hover .related-link{color:var(--accent-dark)}
.related-link i{transition:transform .25s ease}
.related-card:hover .related-link i{transform:translateX(3px)}

.cta-band{
  padding:80px 0;
  background-size:cover;
  background-position:center;
  position:relative;
}
.cta-band::before{
  content:'';
  position:absolute;inset:0;
  background:rgba(30,58,47,.88);
}
.cta-inner{
  position:relative;z-index:1;
  display:flex;align-items:center;justify-content:space-between;
  gap:32px;flex-wrap:wrap;
}
.cta-text h2{
  color:#fff;font-size:30px;font-weight:600;
  margin-bottom:10px;line-height:1.3;
}
.cta-text p{
  color:rgba(255,255,255,.72);
  font-size:15px;max-width:520px;
}
.cta-band .btn-gold{
  box-shadow:0 8px 30px rgba(0,0,0,.25);
}

.back-entry{
  text-align:center;
  padding:48px 24px;
}
.back-entry .btn-outline{
  gap:10px;
  padding:0 32px;
}

.site-footer{
  background:var(--primary);
  color:rgba(255,255,255,.72);
  padding:56px 0 0;
  font-size:14px;
}
.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:40px;
  padding-bottom:40px;
}
.footer-brand .brand{margin-bottom:16px;display:inline-flex}
.footer-brand p{
  font-size:14px;line-height:1.7;
  color:rgba(255,255,255,.6);
  margin-bottom:20px;
  max-width:300px;
}
.footer-social{display:flex;gap:12px}
.footer-social a{
  width:36px;height:36px;border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,.7);
  transition:background .25s ease,border-color .25s ease,color .25s ease;
}
.footer-social a:hover{background:var(--accent);border-color:var(--accent);color:var(--primary)}
.footer-col h4{
  color:rgba(255,255,255,.9);
  font-size:14px;font-weight:600;
  margin-bottom:16px;
  letter-spacing:.5px;
}
.footer-col a{
  display:block;
  color:rgba(255,255,255,.6);
  font-size:14px;
  padding:4px 0;
  transition:color .25s ease,padding-left .25s ease;
}
.footer-col a:hover{color:var(--accent);padding-left:4px}
.footer-col p{
  font-size:14px;
  color:rgba(255,255,255,.5);
  margin-bottom:6px;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding:20px 0;
}
.footer-bottom .container{
  display:flex;justify-content:space-between;align-items:center;
  flex-wrap:wrap;gap:8px;
}
.footer-bottom p{
  font-size:13px;
  color:rgba(255,255,255,.45);
  margin:0;
}

.card-anim{
  opacity:0;
  transform:translateY(12px);
  transition:opacity .45s ease-out,transform .45s ease-out;
}
.card-anim.visible{opacity:1;transform:translateY(0)}

@media (max-width: 1024px){
  .footer-grid{grid-template-columns:1fr 1fr;gap:32px}
  .search-box input{width:140px}
}
@media (max-width: 768px){
  .header-row{height:auto;padding:12px 0;flex-wrap:wrap}
  .brand-text{font-size:18px}
  .channel-tabs .tab{height:44px;padding:0 16px}
  .article-title{font-size:30px}
  .section-title{font-size:26px}
  .cta-inner{flex-direction:column;text-align:center}
  .cta-text p{margin:0 auto}
  .breadcrumb .current{max-width:240px}
}
@media (max-width: 640px){
  .container{padding:0 16px}
  .search-box{display:none}
  .header-cta-btn .cta-text{display:none}
  .header-cta-btn{width:40px;padding:0;justify-content:center}
  .channel-tabs .container{overflow-x:auto;flex-wrap:nowrap}
  .channel-tabs .tab{font-size:14px;padding:0 14px}
  .channel-tabs .container::-webkit-scrollbar{display:none}
  .channel-tabs .container{scrollbar-width:none;-ms-overflow-style:none}
  .article-title{font-size:26px}
  .article-body{font-size:15px}
  .article-meta{gap:12px;flex-direction:column;align-items:flex-start}
  .footer-grid{grid-template-columns:1fr}
  .related-card-body{padding:16px}
  .related-card-img{height:150px}
  .cta-band{padding:56px 0}
  .footer-bottom .container{flex-direction:column;text-align:center}
}
@media (max-width: 480px){
  .brand-icon{width:32px;height:32px}
  .brand-text{font-size:16px}
  .article-title{font-size:22px}
  .section-title{font-size:22px}
  .related-grid .cell{margin-bottom:16px}
}

/* roulang page: category2 */
:root {
      --primary: #1E3A2F;
      --primary-dark: #162D24;
      --primary-soft: rgba(30, 58, 47, 0.06);
      --secondary: #B48C4A;
      --secondary-light: #C9A45E;
      --bg: #F5F2EC;
      --white: #FFFFFF;
      --text: #1A1A18;
      --text-light: #6B6B66;
      --text-muted: #9C9C94;
      --border: #E5DFD6;
      --border-dark: #D8D2C6;
      --radius-large: 16px;
      --radius-medium: 12px;
      --radius-small: 8px;
      --radius-pill: 999px;
      --shadow-sm: 0 2px 8px rgba(30, 58, 47, 0.06);
      --shadow-md: 0 8px 24px rgba(30, 58, 47, 0.10);
      --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      --font-serif: Georgia, "Times New Roman", "Songti SC", serif;
      --space-section: 80px;
      --space-section-mobile: 48px;
    }

    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      font-family: var(--font-sans);
      font-size: 15px;
      line-height: 1.7;
      color: var(--text);
      background: var(--bg);
      -webkit-font-smoothing: antialiased;
    }

    img {
      max-width: 100%;
      display: block;
      height: auto;
    }

    a {
      color: var(--primary);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    a:hover {
      color: var(--secondary);
    }

    button {
      font-family: inherit;
      cursor: pointer;
      border: none;
      background: none;
    }

    input {
      font-family: inherit;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .section {
      padding: var(--space-section) 0;
    }

    .section-head {
      max-width: 640px;
      margin-bottom: 48px;
    }

    .section-head h2 {
      font-size: 30px;
      font-weight: 600;
      color: var(--primary);
      line-height: 1.3;
      margin-bottom: 12px;
    }

    .section-head p {
      font-size: 15px;
      color: var(--text-light);
      line-height: 1.7;
    }

    .section-head.center {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 48px;
      padding: 0 32px;
      border-radius: var(--radius-pill);
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.02em;
      text-align: center;
      transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
      border: 1px solid transparent;
      line-height: 1;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--primary);
      color: var(--white);
      box-shadow: 0 2px 10px rgba(30, 58, 47, 0.18);
    }

    .btn-primary:hover {
      background: var(--secondary);
      color: var(--white);
      box-shadow: 0 6px 20px rgba(180, 140, 74, 0.28);
      transform: translateY(-1px);
    }

    .btn-primary:focus-visible,
    .btn-outline:focus-visible,
    .btn-light:focus-visible {
      outline: 3px solid rgba(180, 140, 74, 0.4);
      outline-offset: 2px;
    }

    .btn-outline {
      background: transparent;
      border-color: var(--primary);
      color: var(--primary);
    }

    .btn-outline:hover {
      background: var(--primary-soft);
      color: var(--primary);
      transform: translateY(-1px);
    }

    .btn-light {
      background: var(--white);
      color: var(--primary);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }

    .btn-light:hover {
      background: var(--secondary);
      color: var(--white);
      transform: translateY(-1px);
    }

    .btn-sm {
      height: 40px;
      padding: 0 24px;
      font-size: 14px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      height: 28px;
      padding: 0 16px;
      border-radius: var(--radius-pill);
      background: rgba(180, 140, 74, 0.14);
      color: var(--secondary);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.02em;
      white-space: nowrap;
    }

    .badge-dark {
      background: rgba(255, 255, 255, 0.16);
      color: var(--white);
    }

    /* ===== Header ===== */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--white);
      box-shadow: 0 1px 0 var(--border);
    }

    .header-top {
      background: var(--white);
      border-bottom: 1px solid rgba(229, 223, 214, 0.6);
    }

    .header-top-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      gap: 20px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .brand-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--primary);
      color: var(--white);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }

    .brand-text {
      font-size: 20px;
      font-weight: 700;
      color: var(--primary);
      letter-spacing: 0.02em;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-shrink: 0;
    }

    .search-box {
      display: flex;
      align-items: center;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-pill);
      height: 40px;
      padding: 0 14px;
      width: 240px;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .search-box:focus-within {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(30, 58, 47, 0.12);
    }

    .search-box input {
      flex: 1;
      border: none;
      background: transparent;
      font-size: 13px;
      color: var(--text);
      outline: none;
      min-width: 0;
    }

    .search-box input::placeholder {
      color: var(--text-muted);
    }

    .search-btn {
      color: var(--text-light);
      font-size: 14px;
      padding: 4px;
      transition: color 0.2s;
    }

    .search-btn:hover {
      color: var(--primary);
    }

    .channel-tabs-wrap {
      background: var(--white);
    }

    .channel-tabs {
      display: flex;
      align-items: center;
      gap: 4px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      height: 48px;
      overflow-x: auto;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
    }

    .channel-tabs::-webkit-scrollbar {
      display: none;
    }

    .channel-tabs .tab {
      display: inline-flex;
      align-items: center;
      height: 48px;
      padding: 0 20px;
      font-size: 15px;
      font-weight: 500;
      color: var(--text);
      border-bottom: 2px solid transparent;
      white-space: nowrap;
      transition: color 0.2s, background 0.2s, border-color 0.2s;
      flex-shrink: 0;
    }

    .channel-tabs .tab:hover {
      color: var(--primary);
      background: var(--primary-soft);
    }

    .channel-tabs .tab.active {
      color: var(--primary);
      font-weight: 600;
      border-bottom-color: var(--secondary);
    }

    /* ===== Page Hero ===== */
    .page-hero {
      position: relative;
      background: var(--primary);
      background-image: linear-gradient(90deg, rgba(30, 58, 47, 0.94) 0%, rgba(30, 58, 47, 0.78) 60%, rgba(30, 58, 47, 0.36) 100%), url('/assets/images/backpic/back-2.webp');
      background-size: cover;
      background-position: center 40%;
      color: var(--white);
      padding: 88px 0 80px;
      position: relative;
      overflow: hidden;
    }

    .page-hero::after {
      content: '';
      position: absolute;
      right: -80px;
      bottom: -100px;
      width: 380px;
      height: 380px;
      border-radius: 50%;
      border: 1px solid rgba(180, 140, 74, 0.3);
      pointer-events: none;
    }

    .page-hero .container {
      position: relative;
      z-index: 2;
    }

    .hero-content {
      max-width: 620px;
      animation: heroFade 0.6s ease-out both;
    }

    .hero-content .badge {
      margin-bottom: 20px;
    }

    .hero-content h1 {
      font-size: 48px;
      font-weight: 700;
      line-height: 1.18;
      margin-bottom: 16px;
      color: var(--white);
      letter-spacing: 0.01em;
    }

    .hero-content .hero-desc {
      font-size: 16px;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 28px;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      margin-bottom: 32px;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.8);
    }

    .hero-meta span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .hero-meta i {
      color: var(--secondary);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .hero-actions .btn-outline {
      border-color: rgba(255, 255, 255, 0.6);
      color: var(--white);
    }

    .hero-actions .btn-outline:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: var(--white);
      color: var(--white);
    }

    @keyframes heroFade {
      from { opacity: 0; transform: translateY(14px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ===== Feature list ===== */
    .features {
      padding-top: var(--space-section);
      padding-bottom: var(--space-section);
    }

    .feature-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-bottom: 1px solid var(--border);
    }

    .feature-item {
      padding: 8px 32px 8px 0;
      border-left: 1px solid var(--border);
      padding-left: 32px;
      position: relative;
    }

    .feature-item:first-child {
      border-left: none;
      padding-left: 0;
    }

    .feature-num {
      display: block;
      font-family: var(--font-serif);
      font-size: 30px;
      color: var(--secondary);
      margin-bottom: 12px;
      line-height: 1;
      font-feature-settings: "tnum";
    }

    .feature-item h3 {
      font-size: 18px;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 10px;
    }

    .feature-item p {
      font-size: 14px;
      line-height: 1.7;
      color: var(--text-light);
      max-width: 300px;
    }

    /* ===== Feature split banner ===== */
    .feature-banner {
      background: var(--white);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .feature-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
    }

    .feature-image {
      border-radius: var(--radius-large);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    .feature-image img {
      width: 100%;
      height: 340px;
      object-fit: cover;
      transition: transform 3s linear;
    }

    .feature-image:hover img {
      transform: scale(1.03);
    }

    .feature-text .badge {
      margin-bottom: 16px;
    }

    .feature-text h2 {
      font-size: 30px;
      font-weight: 600;
      color: var(--primary);
      line-height: 1.3;
      margin-bottom: 16px;
    }

    .feature-text p {
      font-size: 15px;
      line-height: 1.8;
      color: var(--text-light);
      margin-bottom: 28px;
      max-width: 480px;
    }

    /* ===== Scenarios ===== */
    .scenario-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .scenario-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-large);
      padding: 32px 28px;
      transition: box-shadow 0.25s ease, transform 0.25s ease;
    }

    .scenario-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }

    .scenario-card .scenario-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: var(--primary-soft);
      color: var(--primary);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-bottom: 20px;
    }

    .scenario-card h3 {
      font-size: 18px;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 10px;
    }

    .scenario-card p {
      font-size: 14px;
      line-height: 1.7;
      color: var(--text-light);
    }

    /* ===== Process ===== */
    .process {
      background: var(--primary);
      color: var(--white);
    }

    .process .section-head h2 {
      color: var(--white);
    }

    .process .section-head p {
      color: rgba(255, 255, 255, 0.7);
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      counter-reset: process;
    }

    .process-step {
      position: relative;
      padding-top: 12px;
    }

    .process-step::before {
      content: '';
      position: absolute;
      top: 0;
      left: 34px;
      right: 0;
      height: 1px;
      background: rgba(180, 140, 74, 0.4);
    }

    .step-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--secondary);
      color: var(--white);
      font-family: var(--font-serif);
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 18px;
      position: relative;
    }

    .process-step h3 {
      font-size: 17px;
      font-weight: 600;
      margin-bottom: 10px;
      color: var(--white);
    }

    .process-step p {
      font-size: 14px;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.7);
    }

    /* ===== Recommend cards ===== */
    .card-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .topic-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-large);
      overflow: hidden;
      transition: box-shadow 0.25s ease, transform 0.25s ease;
      display: flex;
      flex-direction: column;
    }

    .topic-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }

    .topic-card .card-img {
      height: 200px;
      overflow: hidden;
    }

    .topic-card .card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 3s linear;
    }

    .topic-card:hover .card-img img {
      transform: scale(1.03);
    }

    .topic-card .card-body {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .topic-card .card-body .badge {
      align-self: flex-start;
      margin-bottom: 12px;
    }

    .topic-card .card-body h3 {
      font-size: 18px;
      font-weight: 600;
      color: var(--primary);
      line-height: 1.4;
      margin-bottom: 10px;
    }

    .topic-card .card-body p {
      font-size: 14px;
      color: var(--text-light);
      line-height: 1.7;
      margin-bottom: 18px;
      flex: 1;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .card-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 13px;
      color: var(--text-muted);
      border-top: 1px solid var(--border);
      padding-top: 14px;
      margin-top: auto;
    }

    .card-meta a {
      font-weight: 500;
      color: var(--primary);
      font-size: 13px;
    }

    .card-meta a:hover {
      color: var(--secondary);
    }

    .card-meta i {
      margin-right: 4px;
    }

    /* ===== FAQ ===== */
    .faq-section {
      background: var(--white);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .faq-layout {
      display: grid;
      grid-template-columns: 300px 1fr;
      gap: 64px;
      align-items: start;
    }

    .faq-sidebar h2 {
      font-size: 30px;
      font-weight: 600;
      color: var(--primary);
      line-height: 1.3;
      margin-bottom: 14px;
    }

    .faq-sidebar p {
      font-size: 14px;
      line-height: 1.7;
      color: var(--text-light);
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-medium);
      overflow: hidden;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .faq-item:hover {
      border-color: rgba(30, 58, 47, 0.3);
    }

    .faq-item.open {
      border-left: 3px solid var(--secondary);
      background: #FAF8F3;
    }

    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      min-height: 56px;
      padding: 0 24px;
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      text-align: left;
      transition: color 0.2s;
    }

    .faq-question:hover {
      color: var(--primary);
    }

    .faq-icon {
      flex-shrink: 0;
      font-size: 20px;
      color: var(--secondary);
      transition: transform 0.3s ease;
      font-family: var(--font-serif);
      line-height: 1;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      padding: 0 24px;
    }

    .faq-item.open .faq-answer {
      max-height: 300px;
      padding: 0 24px 18px;
    }

    .faq-answer p {
      font-size: 14px;
      line-height: 1.7;
      color: var(--text-light);
    }

    /* ===== CTA ===== */
    .cta-section {
      background: var(--secondary);
      padding: 72px 0;
    }

    .cta-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
      position: relative;
    }

    .cta-inner::before {
      content: '2026';
      position: absolute;
      right: 20px;
      top: -40px;
      font-family: var(--font-serif);
      font-size: 120px;
      color: rgba(255, 255, 255, 0.12);
      line-height: 1;
      font-weight: 700;
      pointer-events: none;
    }

    .cta-text {
      max-width: 560px;
    }

    .cta-text h2 {
      font-size: 30px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .cta-text p {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.85);
    }

    /* ===== Footer ===== */
    .site-footer {
      background: var(--primary);
      color: rgba(255, 255, 255, 0.7);
      font-size: 14px;
      line-height: 1.6;
    }

    .site-footer .container {
      padding-top: 56px;
      padding-bottom: 32px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
    }

    .footer-brand .brand {
      color: var(--white);
    }

    .footer-brand .brand-icon {
      background: var(--white);
      color: var(--primary);
    }

    .footer-brand .brand-text {
      color: var(--white);
    }

    .footer-brand p {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.6);
      margin: 16px 0 20px;
      max-width: 280px;
      line-height: 1.7;
    }

    .footer-social {
      display: flex;
      gap: 12px;
    }

    .footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      color: rgba(255, 255, 255, 0.7);
      font-size: 14px;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }

    .footer-social a:hover {
      border-color: var(--secondary);
      color: var(--secondary);
      background: transparent;
    }

    .footer-col h4 {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 18px;
      font-weight: 600;
    }

    .footer-col a {
      display: block;
      color: rgba(255, 255, 255, 0.7);
      font-size: 14px;
      margin-bottom: 10px;
      transition: color 0.2s;
    }

    .footer-col a:hover {
      color: var(--secondary);
    }

    .footer-col p {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 6px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(180, 140, 74, 0.2);
      padding: 18px 0;
    }

    .footer-bottom .container {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 8px;
      padding-top: 0;
      padding-bottom: 0;
    }

    .footer-bottom p {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.4);
    }

    /* ===== Scroll reveal ===== */
    .reveal {
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.45s ease-out, transform 0.45s ease-out;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== Responsive ===== */
    @media screen and (max-width: 1024px) {
      :root {
        --space-section: 64px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }

      .feature-split {
        gap: 32px;
      }

      .faq-layout {
        grid-template-columns: 220px 1fr;
        gap: 36px;
      }
    }

    @media screen and (max-width: 768px) {
      .header-top-inner {
        height: 56px;
      }

      .search-box {
        width: 170px;
      }

      .brand-text {
        font-size: 18px;
      }

      .page-hero {
        padding: 64px 0 56px;
      }

      .hero-content h1 {
        font-size: 36px;
      }

      .feature-list {
        grid-template-columns: 1fr;
      }

      .feature-item {
        border-left: none;
        padding-left: 0;
        padding: 24px 0;
        border-bottom: 1px solid var(--border);
      }

      .feature-item:first-child {
        padding-top: 0;
      }

      .feature-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
      }

      .feature-item p {
        max-width: 100%;
      }

      .feature-split {
        grid-template-columns: 1fr;
      }

      .feature-image img {
        height: 260px;
      }

      .scenario-grid,
      .card-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
      }

      .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
      }

      .faq-layout {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
      }
    }

    @media screen and (max-width: 520px) {
      .search-box {
        width: 40px;
        padding: 0 10px;
        border-radius: 50%;
        background: var(--bg);
      }

      .search-box input {
        display: none;
      }

      .search-box .search-btn {
        margin: 0 auto;
      }

      .header-actions .btn-sm {
        padding: 0 18px;
        font-size: 13px;
        height: 36px;
      }

      .section {
        --space-section: 48px;
      }

      .section-head h2 {
        font-size: 24px;
      }

      .hero-content h1 {
        font-size: 30px;
      }

      .hero-content .hero-desc {
        font-size: 15px;
      }

      .hero-meta {
        gap: 12px;
        flex-direction: column;
      }

      .scenario-grid,
      .card-grid {
        grid-template-columns: 1fr;
      }

      .process-steps {
        grid-template-columns: 1fr;
      }

      .cta-inner::before {
        font-size: 80px;
        top: -20px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .footer-bottom .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
    }
