/* roulang page: index */
/* ===== CSS 设计变量 ===== */
:root {
  --color-primary: #A0522D;
  --color-primary-dark: #8B4513;
  --color-primary-light: #C4734A;
  --color-secondary: #4A7C59;
  --color-secondary-dark: #3A664A;
  --color-accent: #D4A574;
  --color-bg: #F7F3EC;
  --color-bg-alt: #FDFAF5;
  --color-bg-card: #FFFFFF;
  --color-heading: #2C1810;
  --color-text: #3A3A3A;
  --color-muted: #7A6E65;
  --color-border: rgba(0, 0, 0, 0.06);
  --gradient-brand: linear-gradient(135deg, #A0522D 0%, #D4A574 50%, #4A7C59 100%);
  --gradient-cta: linear-gradient(135deg, #B85C3A 0%, #D4A574 100%);
  --gradient-hero: linear-gradient(90deg, rgba(44, 24, 16, 0.88) 0%, rgba(160, 82, 45, 0.72) 50%, rgba(74, 124, 89, 0.35) 100%);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.07);
  --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --font-body: system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  background-color: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--color-primary-dark); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }texture
input { font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-header h2 { font-size: 30px; font-weight: 700; color: var(--color-heading); margin-bottom: 12px; line-height: 1.3; }
.section-header h2 .highlight { background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.section-header p { font-size: 16px; color: var(--color-muted); line-height: 1.7; }

/* ===== 按钮 ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-size: 15px; font-weight: 600; padding: 12px 28px; border-radius: var(--radius-pill); transition: all 0.3s ease; border: 1.5px solid transparent; }
.btn-primary { background: var(--gradient-cta); color: #fff; padding: 13px 32px; box-shadow: 0 4px 16px rgba(160, 82, 45, 0.3); }
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(160, 82, 45, 0.4); filter: brightness(1.05); }
.btn-primary:active { transform: scale(0.98); box-shadow: 0 2px 8px rgba(160, 82, 45, 0.3); }
.btn-primary:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; }
.btn-outline { border-color: var(--color-primary); color: var(--color-primary); background: transparent; }
.btn-outline:hover { background: rgba(160, 82, 45, 0.08); color: var(--color-primary-dark); transform: translateY(-2px); }
.btn-outline:active { transform: scale(0.98); }
.btn-outline:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; }

/* ===== 导航 ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08); }
.nav-wrap { display: flex; align-items: center; gap: 24px; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon {
  width: 38px; height: 38px; border-radius: 12px;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff; box-shadow: 0 4px 12px rgba(160, 82, 45, 0.3);
}
.logo-text { font-size: 19px; font-weight: 700; color: var(--color-heading); white-space: nowrap; }
.logo-text span { background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; align-items: center; gap: 4px; margin: 0 auto; }
.nav-links a {
  padding: 8px 18px; font-size: 15px; font-weight: 500; color: var(--color-text);
  border-radius: var(--radius-pill); transition: all 0.25s;
}
.nav-links a:hover { background: rgba(160, 82, 45, 0.08); color: var(--color-primary); }
.nav-links a.active { background: var(--gradient-brand); color: #fff; font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.search-box { position: relative; }
.search-box input {
  width: 180px; height: 38px; border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 0, 0, 0.1); background: rgba(255, 255, 255, 0.7);
  padding: 0 38px 0 16px; font-size: 14px; color: var(--color-text); outline: none;
  transition: all 0.25s;
}
.search-box input:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(160, 82, 45, 0.15); width: 220px; background: #fff; }
.search-box i { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--color-muted); font-size: 13px; }
.nav-login { font-size: 15px; font-weight: 500; color: var(--color-text); padding: 8px 4px; }
.nav-login:hover { color: var(--color-primary); }
.btn-nav { padding: 8px 18px; font-size: 14px; }
.nav-toggle { display: none; font-size: 22px; color: var(--color-heading); padding: 8px; }
.mobile-drawer {
  display: none; position: fixed; top: 0; right: -300px; width: 280px; height: 100vh;
  background: #fff; z-index: 200; box-shadow: -20px 0 60px rgba(0, 0, 0, 0.2);
  transition: right 0.35s ease; padding: 80px 24px 24px;
}
.mobile-drawer.open { right: 0; }
.drawer-mask { display: none; position: fixed; inset: 0; background: rgba(0, 0, 0, 0.5); z-index: 150; }
.drawer-mask.open { display: block; }
.mobile-drawer a { display: block; padding: 14px 8px; font-size: 16px; color: var(--color-text); border-bottom: 1px solid var(--color-border); font-weight: 500; }
.mobile-drawer a:hover { color: var(--color-primary); }
.mobile-drawer .drawer-btns { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.mobile-drawer .btn { width: 100%; }

/* ===== Hero 首屏 ===== */
.hero {
  position: relative;
  padding: 0;
  min-height: 620px;
  display: flex;
  align-items: center;
  background-image: url('/assets/images/backpic/back-1.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gradient-hero);
}
.hero .container { position: relative; z-index: 2; padding: 100px 24px; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center; }
.hero-content { max-width: 620px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px); color: #FCEAD8;
  font-size: 14px; font-weight: 500; padding: 6px 18px; border-radius: var(--radius-pill); margin-bottom: 20px;
}
.hero h1 { font-size: 42px; font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 18px; letter-spacing: 0.02em; }
.hero h1 .text-gradient { background: linear-gradient(90deg, #F5C99A, #E8A87C, #A8D5A2); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: 17px; color: rgba(255, 255, 255, 0.92); line-height: 1.7; margin-bottom: 30px; max-width: 520px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-btns .btn-primary { background: #fff; color: var(--color-primary-dark); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25); }
.hero-btns .btn-primary:hover { filter: brightness(0.97); transform: translateY(-2px); }
.hero-btns .btn-outline { border-color: rgba(255, 255, 255, 0.7); color: #fff; }
.hero-btns .btn-outline:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.stat-badge { display: flex; flex-direction: column; }
.stat-badge .num { font-size: 32px; font-weight: 700; color: #fff; line-height: 1.1; }
.stat-badge .num small { font-size: 18px; color: #F5C99A; }
.stat-badge .label { font-size: 13px; color: rgba(255, 255, 255, 0.7); margin-top: 4px; }
.hero-visual { position: relative; }
.hero-card {
  background: rgba(255, 255, 255, 0.12); backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25); border-radius: var(--radius-lg);
  padding: 32px 28px; box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}
.hero-card-title { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.hero-card-title i { font-size: 24px; color: #F5C99A; width: 46px; height: 46px; border-radius: 14px; background: rgba(255, 255, 255, 0.15); display: flex; align-items: center; justify-content: center; }
.hero-card-title h3 { font-size: 17px; color: #fff; font-weight: 600; }
.hero-card-title span { display: block; font-size: 12px; color: rgba(255, 255, 255, 0.6); margin-top: 2px; }
.hero-card-list { list-style: none; }
.hero-card-list li { padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12); font-size: 14px; color: rgba(255, 255, 255, 0.85); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.hero-card-list li:last-child { border-bottom: none; }
.hero-card-list .meta { font-size: 12px; color: #F5C99A; flex-shrink: 0; }
.hero-badge-float {
  position: absolute; bottom: -20px; left: -24px;
  background: var(--gradient-cta); color: #fff;
  border-radius: var(--radius-md); padding: 16px 22px;
  box-shadow: 0 12px 32px rgba(160, 82, 45, 0.45);
  display: flex; align-items: center; gap: 14px; font-size: 14px;
}
.hero-badge-float i { font-size: 22px; }
.hero-badge-float b { font-size: 22px; display: block; line-height: 1.1; }

/* ===== 板块通用 ===== */
.card { background: var(--color-bg-card); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 32px; transition: transform 0.35s ease, box-shadow 0.35s ease; }

/* ===== 卖点三连 ===== */
.features { background: var(--color-bg); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card { text-align: left; padding: 36px 30px; position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--gradient-brand); opacity: 0; transition: opacity 0.35s; }
.feature-card:hover::before { opacity: 1; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.feature-icon { width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(135deg, rgba(160, 82, 45, 0.12), rgba(74, 124, 89, 0.12)); display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--color-primary); margin-bottom: 20px; transition: all 0.3s; }
.feature-card:hover .feature-icon { background: var(--gradient-brand); color: #fff; transform: scale(1.05); }
.feature-card h3 { font-size: 20px; font-weight: 600; color: var(--color-heading); margin-bottom: 10px; }
.feature-card p { font-size: 15px; color: var(--color-muted); line-height: 1.65; margin-bottom: 18px; }
.feature-tag {
  display: inline-block; background: rgba(74, 124, 89, 0.1); color: var(--color-secondary-dark);
  font-size: 13px; font-weight: 600; padding: 4px 14px; border-radius: var(--radius-pill);
}

/* ===== 场景演示 ===== */
.scenes { background: var(--color-bg-alt); }
.scene-block { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 72px; }
.scene-block:last-child { margin-bottom: 0; }
.scene-block.reverse .scene-img { order: 2; }
.scene-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); height: 420px; }
.scene-img img { width: 100%; height: 100%; object-fit: cover; }
.scene-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(44, 24, 16, 0.4), transparent 50%); }
.scene-float-badge {
  position: absolute; bottom: 20px; left: 20px; z-index: 2;
  background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px);
  display: flex; align-items: center; gap: 10px; padding: 12px 20px;
  border-radius: var(--radius-md); font-size: 13px; font-weight: 600; color: var(--color-heading);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.scene-float-badge i { color: var(--color-primary); }
.scene-body h3 { font-size: 24px; font-weight: 700; color: var(--color-heading); margin-bottom: 14px; line-height: 1.4; }
.scene-body p { font-size: 15px; color: var(--color-muted); line-height: 1.75; margin-bottom: 20px; }
.scene-data {
  display: flex; gap: 28px; margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--color-border);
}
.scene-data .item b { display: block; font-size: 22px; color: var(--color-heading); }
.scene-data .item span { font-size: 13px; color: var(--color-muted); }
.scene-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--color-secondary-dark); }
.scene-link i { transition: transform 0.3s; }
.scene-link:hover i { transform: translateX(4px); }

/* ===== 社会认同 ===== */
.testimonials { background: var(--color-bg); }
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  background: var(--gradient-brand); border-radius: var(--radius-lg);
  padding: 48px 40px; margin-bottom: 56px; box-shadow: 0 16px 48px rgba(160, 82, 45, 0.3);
}
.stats-bar .stat { text-align: center; }
.stats-bar .stat .num { font-size: 40px; font-weight: 700; color: #fff; line-height: 1.2; }
.stats-bar .stat .label { font-size: 14px; color: rgba(255, 255, 255, 0.85); margin-top: 6px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { padding: 28px; display: flex; flex-direction: column; }
.stars { color: #E8A23D; font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: 15px; color: var(--color-text); line-height: 1.7; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testimonial-author img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.author-meta b { display: block; font-size: 14px; color: var(--color-heading); }
.author-meta span { font-size: 12px; color: var(--color-muted); }

/* ===== 资讯区 ===== */
.news { background: var(--color-bg-alt); }
.news-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 28px; }
.news-list { display: flex; flex-direction: column; gap: 12px; }
.news-item {
  display: flex; align-items: center; gap: 16px; padding: 18px 20px;
  background: var(--color-bg-card); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); transition: all 0.3s; border-left: 3px solid var(--color-secondary);
}
.news-item:hover { box-shadow: var(--shadow-hover); transform: translateX(4px); border-left-color: var(--color-primary); }
.news-item .date { flex-shrink: 0; text-align: center; padding: 8px 12px; background: var(--color-bg); border-radius: var(--radius-sm); }
.news-item .date b { display: block; font-size: 20px; color: var(--color-primary); line-height: 1.2; }
.news-item .date span { font-size: 12px; color: var(--color-muted); }
.news-item .news-title { font-size: 15px; font-weight: 600; color: var(--color-heading); line-height: 1.5; flex: 1; }
.news-item .news-title a { color: inherit; }
.news-item .news-title a:hover { color: var(--color-primary); }
.news-item .news-tag { font-size: 12px; color: var(--color-secondary-dark); background: rgba(74, 124, 89, 0.1); padding: 3px 12px; border-radius: var(--radius-pill); flex-shrink: 0; }
.news-hot { background: var(--color-bg-card); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.news-hot h3 { font-size: 18px; font-weight: 700; color: var(--color-heading); margin-bottom: 16px; }
.news-hot-item { display: flex; flex-direction: column; gap: 4px; padding: 14px 0; border-bottom: 1px solid var(--color-border); }
.news-hot-item:last-child { border-bottom: none; }
.news-hot-item a { font-size: 14px; font-weight: 500; color: var(--color-text); line-height: 1.5; }
.news-hot-item a:hover { color: var(--color-primary); }
.news-hot-item .meta { font-size: 12px; color: var(--color-muted); }

/* ===== 新手入门流程 ===== */
.guide { background: var(--color-bg); }
.guide-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.guide-card { text-align: center; padding: 36px 24px; position: relative; }
.guide-card::before {
  counter-increment: step; content: "0" counter(step);
  position: absolute; top: 20px; right: 24px;
  font-size: 40px; font-weight: 800; opacity: 0.1; color: var(--color-primary);
}
.guide-icon { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; background: linear-gradient(135deg, rgba(160, 82, 45, 0.1), rgba(74, 124, 89, 0.1)); display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--color-primary); }
.guide-card h3 { font-size: 17px; font-weight: 600; color: var(--color-heading); margin-bottom: 8px; }
.guide-card p { font-size: 14px; color: var(--color-muted); line-height: 1.6; }

/* ===== 平台保障 ===== */
.assurance { background: var(--color-bg-alt); }
.assurance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.assurance-card { display: flex; gap: 18px; padding: 28px 24px; background: var(--color-bg); border-radius: var(--radius-md); border: 1px solid rgba(0, 0, 0, 0.04); }
.assurance-card i { font-size: 28px; color: var(--color-secondary); width: 52px; height: 52px; flex-shrink: 0; border-radius: 14px; background: rgba(74, 124, 89, 0.1); display: flex; align-items: center; justify-content: center; }
.assurance-card h3 { font-size: 16px; font-weight: 600; color: var(--color-heading); margin-bottom: 6px; }
.assurance-card p { font-size: 14px; color: var(--color-muted); line-height: 1.6; }

/* ===== FAQ ===== */
.faq { background: var(--color-bg); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--color-bg-card); border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.06); margin-bottom: 14px; overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.active { border-color: var(--color-primary); box-shadow: var(--shadow-md); }
.faq-q { padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; font-size: 16px; font-weight: 600; color: var(--color-heading); }
.faq-q i { color: var(--color-muted); transition: transform 0.35s; flex-shrink: 0; }
.faq-item.active .faq-q i { transform: rotate(180deg); color: var(--color-primary); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { padding: 0 24px 20px; font-size: 15px; color: var(--color-muted); line-height: 1.7; }
.faq-item.active .faq-a { max-height: 400px; }

/* ===== 底部 CTA ===== */
.cta-section { background: linear-gradient(120deg, #2C1810 0%, #6E3B1F 50%, #4A7C59 100%); padding: 72px 0; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: url('/assets/images/backpic/back-2.jpg'); background-size: cover; background-position: center; opacity: 0.15; }
.cta-content { position: relative; text-align: center; }
.cta-content h2 { font-size: 32px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.cta-content p { font-size: 16px; color: rgba(255, 255, 255, 0.85); max-width: 560px; margin: 0 auto 32px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-btns .btn-primary { background: #fff; color: var(--color-primary-dark); }
.cta-btns .btn-primary:hover { filter: brightness(0.96); }
.cta-btns .btn-outline { border-color: rgba(255, 255, 255, 0.7); color: #fff; }
.cta-btns .btn-outline:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }

/* ===== 固定转化条 ===== */
.fixed-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: linear-gradient(90deg, #2C1810, #6E3B1F, #4A7C59);
  padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2); transform: translateY(0); transition: transform 0.4s;
}
.fixed-cta-bar.hidden { transform: translateY(120%); }
.fixed-cta-text { color: #fff; font-size: 16px; font-weight: 500; display: flex; align-items: center; gap: 12px; }
.fixed-cta-text i { font-size: 20px; color: #F5C99A; }
.fixed-cta-text .small { font-size: 13px; color: rgba(255, 255, 255, 0.7); display: block; }
.fixed-cta-btns { display: flex; align-items: center; gap: 14px; }
.fixed-cta-btns .btn { background: #fff; color: var(--color-primary-dark); padding: 10px 24px; font-size: 14px; }
.fixed-cta-btns .btn:hover { background: #F5EDE4; }
.fixed-cta-close { width: 32px; height: 32px; border-radius: 50%; background: rgba(255, 255, 255, 0.15); display: flex; align-items: center; justify-content: center; color: rgba(255, 255, 255, 0.8); font-size: 14px; flex-shrink: 0; }
.fixed-cta-close:hover { background: rgba(255, 255, 255, 0.3); color: #fff; }
body.has-fixed-bar { padding-bottom: 72px; }

/* ===== 页脚 ===== */
.site-footer { background: #201510; color: rgba(255, 255, 255, 0.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 40px; }
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-text span { background: linear-gradient(90deg, #F5C99A, #E8A87C); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255, 255, 255, 0.55); max-width: 280px; }
.footer-col h4 { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255, 255, 255, 0.6); font-size: 14px; display: inline-flex; align-items: center; gap: 8px; }
.footer-col ul a:hover { color: #F5C99A; }
.footer-col ul a i { font-size: 12px; color: var(--color-accent); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0; display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: rgba(255, 255, 255, 0.45); flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: rgba(255, 255, 255, 0.45); }
.footer-bottom a:hover { color: #F5C99A; }

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .nav-links { gap: 0; }
  .nav-links a { padding: 8px 12px; font-size: 14px; }
  .search-box input { width: 130px; }
  .search-box input:focus { width: 160px; }
  .hero .container { grid-template-columns: 1fr; padding: 80px 24px; }
  .hero-visual { max-width: 560px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .scene-block { grid-template-columns: 1fr; gap: 36px; }
  .scene-block.reverse .scene-img { order: 0; }
  .scene-img { height: 340px; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .guide-steps { grid-template-columns: repeat(2, 1fr); }
  .assurance-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .container { padding: 0 16px; }
  .nav-links, .nav-right .search-box, .nav-right .nav-login, .nav-right .btn-nav { display: none; }
  .nav-toggle { display: block; }
  .nav-wrap { height: 64px; }
  .logo-text { font-size: 17px; }
  .hero { min-height: auto; background-attachment: scroll; }
  .hero .container { padding: 64px 16px; gap: 40px; }
  .hero h1 { font-size: 30px; }
  .hero-sub { font-size: 15px; }
  .hero-stats { gap: 20px; }
  .stat-badge .num { font-size: 26px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 32px; padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .fixed-cta-bar { padding: 14px 16px; flex-wrap: wrap; }
  .fixed-cta-text { font-size: 15px; }
  .fixed-cta-text .small { display: none; }
  .fixed-cta-btns .btn { padding: 9px 18px; font-size: 13px; }
}

@media (max-width: 520px) {
  .features-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .guide-steps { grid-template-columns: 1fr; }
  .assurance-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .scene-img { height: 260px; }
  .scene-block { margin-bottom: 48px; }
  .stats-bar { gap: 24px; }
  .news-item { flex-wrap: wrap; }
  .news-item .news-tag { display: none; }
  .cta-btns { flex-direction: column; }
  .cta-btns .btn { width: 100%; }
  .fix-bar-text { font-size: 14px; }
}

/* roulang page: category1 */
:root {
  --primary: #B4552D;
  --primary-dark: #8F3D1F;
  --primary-light: #D4A24E;
  --secondary: #6B8E5A;
  --secondary-dark: #4F7041;
  --secondary-light: #E8F0E4;
  --bg: #F7F3EC;
  --bg-card: #FFFFFF;
  --text: #2E2620;
  --text-light: #6E6257;
  --text-lighter: #9B8F82;
  --border: rgba(46, 38, 32, 0.08);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --gradient: linear-gradient(135deg, #B4552D 0%, #D4A24E 100%);
  --shadow-sm: 0 4px 20px rgba(46, 38, 32, 0.06);
  --shadow-md: 0 8px 28px rgba(46, 38, 32, 0.10);
  --shadow-lg: 0 16px 40px rgba(46, 38, 32, 0.14);
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button,
input {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(46, 38, 32, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: 0 4px 14px rgba(180, 85, 45, 0.3);
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.logo-text span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
  background: rgba(180, 85, 45, 0.06);
}

.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
  background: rgba(180, 85, 45, 0.08);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.search-box {
  position: relative;
}

.search-box input {
  width: 170px;
  height: 38px;
  border-radius: 20px;
  background: #EFEAE2;
  border: 1px solid transparent;
  padding: 0 38px 0 16px;
  font-size: 13px;
  color: var(--text);
  transition: var(--transition);
}

.search-box input::placeholder {
  color: var(--text-lighter);
}

.search-box input:focus {
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(180, 85, 45, 0.12);
  width: 200px;
}

.search-box i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: var(--text-lighter);
  pointer-events: none;
}

.nav-login {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  padding: 8px 14px;
  border-radius: 8px;
}

.nav-login:hover {
  color: var(--primary);
  background: rgba(180, 85, 45, 0.06);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 22px;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 16px rgba(180, 85, 45, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(180, 85, 45, 0.36);
  filter: brightness(1.05);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-primary:focus-visible,
.btn-outline:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(180, 85, 45, 0.25);
}

.btn-nav {
  padding: 8px 18px;
  font-size: 13px;
  border-radius: 10px;
}

.btn-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(180, 85, 45, 0.08);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  font-size: 18px;
  color: var(--text);
  background: #EFEAE2;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ===== Page Banner ===== */
.page-banner {
  position: relative;
  background: linear-gradient(120deg, rgba(180, 85, 45, 0.92), rgba(180, 85, 45, 0.75)), url('/assets/images/backpic/back-1.webp') center/cover;
  padding: 60px 0 56px;
  color: #fff;
  overflow: hidden;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb i {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
}

.page-banner h1 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.page-banner h1 span {
  color: #FFE3B3;
}

.banner-desc {
  max-width: 640px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;
}

.banner-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.badge-stat {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 40px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.badge-stat strong {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

/* ===== Filter Bar ===== */
.filter-section {
  padding: 28px 0 0;
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
}

.filter-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  margin-right: 4px;
}

.filter-tag {
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  background: #F1ECE4;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.filter-tag:hover {
  color: var(--primary);
  border-color: rgba(180, 85, 45, 0.25);
}

.filter-tag.active {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 3px 12px rgba(180, 85, 45, 0.3);
}

/* ===== Content Layout ===== */
.content-section {
  padding: 40px 0;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

.content-main {
  min-width: 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-head h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.section-head p {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 4px;
}

.section-link {
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.section-link:hover {
  gap: 10px;
}

/* Review Cards */
.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.review-card-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.review-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.review-card:hover .review-card-img img {
  transform: scale(1.03);
}

.review-card-img .card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.review-card-img .card-score {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gradient);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(180, 85, 45, 0.3);
}

.review-card-body {
  padding: 20px 20px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.review-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
  transition: var(--transition);
}

.review-card-body h3 a:hover {
  color: var(--primary);
}

.review-card-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: var(--text-lighter);
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.review-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.review-meta i {
  font-size: 12px;
}

.meta-score {
  margin-left: auto;
  background: var(--secondary-light);
  color: var(--secondary-dark);
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 16px;
  font-size: 12px;
}

/* ===== Sidebar ===== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 96px;
}

.sidebar-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.sidebar-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  position: relative;
}

.sidebar-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--gradient);
}

.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.topic-tag {
  font-size: 12px;
  padding: 6px 14px;
  background: #F1ECE4;
  border-radius: 20px;
  color: var(--text-light);
  transition: var(--transition);
}

.topic-tag:hover {
  background: var(--secondary-light);
  color: var(--secondary-dark);
}

.hot-list {
  display: flex;
  flex-direction: column;
}

.hot-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.hot-item:last-child {
  border-bottom: none;
}

.hot-item img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.hot-item-info {
  min-width: 0;
}

.hot-item-info h4 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hot-item-info h4 a:hover {
  color: var(--primary);
}

.hot-item-info span {
  font-size: 12px;
  color: var(--text-lighter);
}

.sidebar-cta {
  background: var(--gradient);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  color: #fff;
  text-align: center;
  box-shadow: 0 8px 24px rgba(180, 85, 45, 0.25);
}

.sidebar-cta h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.sidebar-cta p {
  font-size: 13px;
  opacity: 0.92;
  line-height: 1.6;
  margin-bottom: 18px;
}

.btn-white {
  background: #fff;
  color: var(--primary);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* ===== Pagination ===== */
.pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 6px;
}

.page-link {
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.page-link:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.page-link.active {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 3px 12px rgba(180, 85, 45, 0.28);
}

.page-link.next {
  padding: 0 16px;
  gap: 6px;
}

/* ===== Process Section ===== */
.process-section {
  padding: 70px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 44px;
}

.process-header .eyebrow {
  display: inline-block;
  background: var(--secondary-light);
  color: var(--secondary-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.process-header h2 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.process-header p {
  font-size: 15px;
  color: var(--text-light);
  margin-top: 8px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-num {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  border-radius: 12px;
  background: var(--gradient);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(180, 85, 45, 0.25);
}

.process-step h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== FAQ Section ===== */
.faq-section {
  padding: 70px 0;
}

.faq-container {
  max-width: 820px;
  margin: 0 auto;
}

.faq-head {
  text-align: center;
  margin-bottom: 36px;
}

.faq-head h2 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.faq-head p {
  color: var(--text-light);
  font-size: 15px;
  margin-top: 6px;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: rgba(180, 85, 45, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question i {
  font-size: 14px;
  color: var(--text-lighter);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.active .faq-question {
  color: var(--primary);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary);
}

.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-light);
  line-height: 1.75;
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 70px 0;
  background: linear-gradient(120deg, rgba(180, 85, 45, 0.9), rgba(107, 142, 90, 0.85)), url('/assets/images/backpic/back-2.jpg') center/cover;
  color: #fff;
  text-align: center;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.cta-inner p {
  font-size: 16px;
  opacity: 0.92;
  line-height: 1.7;
  margin-bottom: 28px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Footer ===== */
.site-footer {
  background: #2B221C;
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 44px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 14px;
}

.footer-brand .logo-icon {
  background: var(--gradient);
  color: #fff;
}

.footer-brand .logo-text {
  color: #fff;
}

.footer-brand .logo-text span {
  color: var(--primary-light);
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-col ul li a i {
  font-size: 10px;
  color: var(--primary-light);
}

.footer-col ul li a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a:hover {
  color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .nav-links {
    gap: 0;
  }

  .nav-links a {
    padding: 8px 12px;
    font-size: 13px;
  }

  .search-box input {
    width: 130px;
  }

  .search-box input:focus {
    width: 160px;
  }

  .content-layout {
    grid-template-columns: 1fr 290px;
    gap: 24px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-wrap {
    height: 64px;
    gap: 12px;
  }

  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(247, 243, 236, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    display: none;
    box-shadow: 0 12px 24px rgba(46, 38, 32, 0.12);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 16px;
    font-size: 15px;
  }

  .nav-right {
    margin-left: auto;
  }

  .search-box {
    display: none;
  }

  .nav-login {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .btn-nav {
    padding: 8px 14px;
    font-size: 12px;
  }

  .page-banner {
    padding: 44px 0 40px;
  }

  .page-banner h1 {
    font-size: 28px;
  }

  .banner-desc {
    font-size: 14px;
  }

  .badge-stat {
    padding: 8px 16px;
    font-size: 12px;
  }

  .badge-stat strong {
    font-size: 18px;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    order: 2;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .cta-section {
    padding: 50px 0;
  }

  .cta-inner h2 {
    font-size: 26px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 16px;
  }

  .logo-text {
    font-size: 17px;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .btn-nav {
    padding: 6px 12px;
    font-size: 12px;
  }

  .page-banner h1 {
    font-size: 24px;
  }

  .banner-badges {
    gap: 10px;
  }

  .badge-stat {
    padding: 6px 14px;
  }

  .badge-stat strong {
    font-size: 16px;
  }

  .filter-bar {
    padding: 14px 14px;
  }

  .filter-tag {
    padding: 6px 14px;
    font-size: 12px;
  }

  .review-card-body h3 {
    font-size: 16px;
  }

  .review-meta {
    flex-wrap: wrap;
    gap: 8px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .pagination-wrap {
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .pagination {
    flex-wrap: nowrap;
  }

  .page-link {
    min-width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .cta-btns .btn {
    width: 100%;
  }
}
