/* roulang page: index */
/* ========== 设计变量 ========== */
:root {
  --primary: #0c1f3d;
  --primary-dark: #071326;
  --primary-light: #17325c;
  --accent: #c9a662;
  --accent-light: #e8d09a;
  --accent-dark: #a8863f;
  --bg-light: #f3f5fa;
  --bg-white: #ffffff;
  --text-main: #152238;
  --text-muted: #6a7891;
  --border-color: #e4e8f0;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-md: 0 8px 30px rgba(12, 31, 61, 0.08);
  --shadow-lg: 0 20px 50px rgba(12, 31, 61, 0.16);
  --transition: all 0.3s ease;
}

/* ========== 基础 Reset ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "PingFang SC", "Microsoft YaHei", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg-white);
  color: var(--text-main);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}
a:hover {
  color: var(--accent);
}
ul,
ol {
  list-style: none;
}
button,
input {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}
.container {
  max-width: 1280px;
  padding-left: 24px;
  padding-right: 24px;
}

/* ========== 导航 ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: rgba(12, 31, 61, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header .navbar {
  padding: 14px 0;
}
.brand-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--primary-dark);
  font-size: 14px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(201, 166, 98, 0.4);
}
.brand-text {
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.brand-sub {
  display: block;
  font-size: 11px;
  color: var(--accent-light);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.site-header .navbar-nav {
  gap: 4px;
}
.site-header .nav-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.site-header .nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.site-header .nav-link.active {
  color: #fff;
  background: rgba(201, 166, 98, 0.15);
}
.site-header .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  border-radius: 3px;
  background: var(--accent);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-search {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 40px;
  padding: 4px 6px 4px 16px;
  transition: var(--transition);
}
.header-search:focus-within {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.16);
}
.header-search input {
  background: transparent;
  color: #fff;
  font-size: 13px;
  width: 130px;
}
.header-search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.header-search button {
  color: var(--accent);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}
.header-search button:hover {
  background: rgba(201, 166, 98, 0.2);
}
.btn-highlight {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 22px;
  border-radius: 40px;
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(201, 166, 98, 0.35);
}
.btn-highlight:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 166, 98, 0.45);
  color: var(--primary-dark);
}
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
  padding: 6px 10px;
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(201, 166, 98, 0.3);
}
.navbar-toggler-icon {
  filter: invert(1);
}
@media (max-width: 991.98px) {
  .site-header .navbar-collapse {
    background: var(--primary-dark);
    border-radius: 16px;
    padding: 16px;
    margin-top: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .site-header .nav-link {
    padding: 12px 14px;
  }
  .header-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 14px;
  }
  .header-search {
    width: 100%;
  }
  .header-search input {
    flex: 1;
    width: auto;
  }
  .btn-highlight {
    text-align: center;
  }
}

/* ========== Hero 首屏 ========== */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background-image: url('/assets/images/backpic/back-1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(7, 19, 38, 0.92) 0%, rgba(12, 31, 61, 0.78) 55%, rgba(12, 31, 61, 0.45) 100%);
  z-index: -1;
}
.hero-content {
  max-width: 660px;
  padding: 80px 0;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 166, 98, 0.16);
  border: 1px solid rgba(201, 166, 98, 0.4);
  color: var(--accent-light);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 24px;
}
.hero-tag i {
  font-size: 12px;
}
.hero h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.hero h1 .text-accent {
  color: var(--accent);
}
.hero-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(201, 166, 98, 0.4);
}
.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(201, 166, 98, 0.5);
  color: var(--primary-dark);
}
.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}
.btn-outline-custom:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.hero-stat-item {
  text-align: left;
}
.hero-stat-item .num {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.hero-stat-item .num small {
  font-size: 18px;
  color: var(--accent);
  margin-left: 2px;
}
.hero-stat-item .label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}
@media (max-width: 768px) {
  .hero {
    min-height: 520px;
  }
  .hero h1 {
    font-size: 34px;
  }
  .hero-desc {
    font-size: 15px;
  }
  .hero-content {
    padding: 60px 0;
  }
  .hero-stats {
    gap: 24px;
    margin-top: 36px;
  }
  .hero-stat-item .num {
    font-size: 26px;
  }
}

/* ========== 数据统计 ========== */
.stats-section {
  padding: 70px 0;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}
.stat-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  height: 100%;
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.stat-card .stat-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(201, 166, 98, 0.2), rgba(201, 166, 98, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  color: var(--accent-dark);
}
.stat-card .stat-num {
  font-size: 34px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}
.stat-card .stat-num small {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  margin-left: 2px;
}
.stat-card .stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ========== 核心服务 ========== */
.services-section {
  padding: 90px 0;
  background: var(--bg-white);
}
.section-head {
  margin-bottom: 50px;
}
.section-head .section-tag {
  display: inline-block;
  background: rgba(201, 166, 98, 0.12);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 30px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
.section-head p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 620px;
}
.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover::before {
  opacity: 1;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 166, 98, 0.3);
}
.service-card .service-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(12, 31, 61, 0.18);
}
.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.7;
}
.service-card .service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card .service-link i {
  transition: transform 0.3s ease;
}
.service-card .service-link:hover i {
  transform: translateX(4px);
}

/* ========== 资讯列表 ========== */
.news-section {
  padding: 90px 0;
  background: var(--bg-light);
}
.news-card {
  display: block;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  padding: 26px 26px 22px;
  transition: var(--transition);
  height: 100%;
  margin-bottom: 24px;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 166, 98, 0.35);
}
.news-card .news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.badge-cat {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
}
.news-card .news-date {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.news-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.5;
  margin-bottom: 10px;
  transition: var(--transition);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card:hover h3 {
  color: var(--accent-dark);
}
.news-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
}
.news-card .read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.news-card:hover .read-more {
  gap: 8px;
}
.news-empty {
  text-align: center;
  padding: 40px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px dashed var(--border-color);
  color: var(--text-muted);
  font-size: 15px;
}

/* ========== 服务流程 ========== */
.process-section {
  padding: 90px 0;
  background: var(--bg-white);
}
.process-section .process-bg {
  background-image: url('/assets/images/backpic/back-2.png');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.process-section .process-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 19, 38, 0.94), rgba(12, 31, 61, 0.86));
  z-index: -1;
}
.process-section .section-head h2 {
  color: #fff;
}
.process-section .section-head p {
  color: rgba(255, 255, 255, 0.7);
}
.process-step {
  position: relative;
  padding: 0 10px 0 0;
  z-index: 2;
}
.process-step .step-num {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary-dark);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 0 0 6px rgba(201, 166, 98, 0.15);
}
.process-step h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.process-step p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}
.process-step::after {
  content: "";
  position: absolute;
  top: 30px;
  right: -30px;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.process-step:last-child::after {
  display: none;
}
@media (max-width: 768px) {
  .process-section .process-bg {
    padding: 40px 24px;
  }
  .process-step::after {
    display: none;
  }
  .process-step {
    margin-bottom: 32px;
  }
}

/* ========== 优势特点 ========== */
.features-section {
  padding: 90px 0;
  background: var(--primary);
  background-image: url('/assets/images/backpic/back-3.png');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  position: relative;
  isolation: isolate;
}
.features-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 19, 38, 0.85);
  z-index: 0;
}
.features-section .container {
  position: relative;
  z-index: 2;
}
.features-section .section-head h2 {
  color: #fff;
}
.features-section .section-head p {
  color: rgba(255, 255, 255, 0.7);
}
.feature-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  height: 100%;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 166, 98, 0.4);
  transform: translateY(-6px);
}
.feature-card .feature-icon {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 16px;
}
.feature-card h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
}
.feature-card .feature-tag {
  display: inline-block;
  background: rgba(201, 166, 98, 0.18);
  border: 1px solid rgba(201, 166, 98, 0.3);
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 14px;
}

/* ========== FAQ ========== */
.faq-section {
  padding: 90px 0;
  background: var(--bg-white);
}
.faq-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md) !important;
  margin-bottom: 16px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.accordion-button {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  background: var(--bg-white);
  padding: 18px 24px;
  border-radius: var(--radius-md) !important;
}
.accordion-button:not(.collapsed) {
  color: var(--accent-dark);
  background: rgba(201, 166, 98, 0.06);
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(201, 166, 98, 0.2);
}
.accordion-body {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

/* ========== CTA ========== */
.cta-section {
  background-image: url('/assets/images/coverpic/cover-1.png');
  background-size: cover;
  background-position: center;
  padding: 90px 0;
  position: relative;
  isolation: isolate;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(7, 19, 38, 0.92), rgba(12, 31, 61, 0.76));
  z-index: -1;
}
.cta-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.cta-content h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 14px;
}
.cta-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  margin-bottom: 30px;
}

/* ========== 页脚 ========== */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 70px 0 30px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.footer-logo .brand-icon {
  width: 38px;
  height: 38px;
  font-size: 13px;
}
.footer-logo .brand-text {
  font-size: 17px;
  color: #fff;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-left: 14px;
}
.footer-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: var(--accent);
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover {
  color: var(--accent);
  transform: translateX(4px);
}
.footer-links a i {
  font-size: 12px;
  color: var(--accent);
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
}
.footer-contact li i {
  color: var(--accent);
  margin-top: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 50px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  margin: 0;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

/* ========== 通用响应式 ========== */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 40px;
  }
  .section-head h2 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 0;
  }
  .hero h1 {
    font-size: 30px;
  }
  .hero-btns .btn-primary-custom,
  .hero-btns .btn-outline-custom {
    padding: 11px 22px;
    font-size: 14px;
  }
  .section-head h2 {
    font-size: 26px;
  }
  .services-section,
  .news-section,
  .process-section,
  .faq-section,
  .cta-section {
    padding: 60px 0;
  }
  .cta-content h2 {
    font-size: 28px;
  }
}
@media (max-width: 520px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero-content {
    padding: 44px 0;
  }
  .hero-stats {
    gap: 18px;
  }
  .hero-stat-item .num {
    font-size: 22px;
  }
  .stat-card .stat-num {
    font-size: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* roulang page: category1 */
:root {
            --primary: #0b1f3a;
            --primary-light: #142e52;
            --secondary: #e8a33d;
            --accent: #f0b95c;
            --bg: #f4f6fb;
            --bg-alt: #eef1f7;
            --dark-section: #0b1f3a;
            --text: #1a2333;
            --text-muted: #5a6b85;
            --border: #dfe5ef;
            --radius: 18px;
            --radius-sm: 10px;
            --shadow: 0 10px 30px rgba(11, 31, 58, 0.08);
            --shadow-lg: 0 20px 50px rgba(11, 31, 58, 0.14);
            --transition: all .3s ease;
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            font-size: 16px;
            line-height: 1.75;
            color: var(--text);
            background: var(--bg);
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input {
            font-family: inherit;
        }

        .container {
            max-width: 1200px;
            padding-left: 24px;
            padding-right: 24px;
        }

        /* Header / Nav */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(11, 31, 58, 0.08);
            box-shadow: 0 2px 20px rgba(11, 31, 58, 0.05);
        }

        .site-header .navbar {
            padding: 12px 0;
        }

        .brand-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .brand-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--primary) 0%, #1a3f6e 100%);
            color: #fff;
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 1px;
            box-shadow: 0 4px 12px rgba(11, 31, 58, 0.3);
            flex-shrink: 0;
        }

        .brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.25;
            font-weight: 800;
            font-size: 18px;
            color: var(--primary);
        }

        .brand-sub {
            font-size: 11px;
            font-weight: 500;
            color: var(--text-muted);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-top: 2px;
        }

        .navbar-nav {
            gap: 4px;
        }

        .nav-link {
            font-weight: 600;
            font-size: 15px;
            color: var(--text);
            padding: 8px 18px !important;
            border-radius: 50px;
            transition: var(--transition);
        }

        .nav-link:hover {
            color: var(--primary);
            background: rgba(11, 31, 58, 0.06);
        }

        .nav-link.active {
            color: #fff;
            background: var(--primary);
            box-shadow: 0 4px 14px rgba(11, 31, 58, 0.25);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .header-search {
            display: flex;
            align-items: center;
            background: var(--bg-alt);
            border: 1px solid var(--border);
            border-radius: 50px;
            padding: 4px 6px 4px 16px;
            transition: var(--transition);
        }

        .header-search:focus-within {
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(232, 163, 61, 0.15);
            background: #fff;
        }

        .header-search input {
            border: none;
            outline: none;
            background: transparent;
            font-size: 14px;
            color: var(--text);
            width: 120px;
        }

        .header-search button {
            border: none;
            background: var(--primary);
            color: #fff;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            transition: var(--transition);
        }

        .header-search button:hover {
            background: var(--secondary);
        }

        .btn-highlight {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            color: var(--primary);
            font-weight: 700;
            font-size: 14px;
            padding: 9px 22px;
            border-radius: 50px;
            border: none;
            box-shadow: 0 4px 16px rgba(232, 163, 61, 0.35);
            transition: var(--transition);
        }

        .btn-highlight:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(232, 163, 61, 0.45);
            color: var(--primary);
        }

        .navbar-toggler {
            border: none;
            padding: 6px;
            border-radius: 8px;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(232, 163, 61, 0.3);
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230b1f3a' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* Page Hero */
        .page-hero {
            position: relative;
            padding: 100px 0 120px;
            background: linear-gradient(135deg, rgba(11, 31, 58, 0.92), rgba(20, 46, 82, 0.82)), url('/assets/images/backpic/back-1.png') center center / cover no-repeat;
            color: #fff;
            overflow: hidden;
        }

        .page-hero::after {
            content: '';
            position: absolute;
            bottom: -60px;
            right: -60px;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            background: rgba(232, 163, 61, 0.15);
            filter: blur(60px);
        }

        .page-hero .container {
            position: relative;
            z-index: 2;
        }

        .page-hero .breadcrumb {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            padding: 6px 16px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 24px;
        }

        .page-hero h1 {
            font-size: 44px;
            font-weight: 800;
            line-height: 1.3;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .page-hero h1 span {
            color: var(--accent);
        }

        .page-hero .lead {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.85);
            max-width: 600px;
            font-weight: 400;
        }

        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            max-width: 500px;
        }

        .hero-stats .stat-item .num {
            font-size: 32px;
            font-weight: 800;
            color: var(--accent);
            line-height: 1.2;
        }

        .hero-stats .stat-item .label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 4px;
        }

        /* Section Common */
        .section-padding {
            padding: 90px 0;
        }

        .section-alt {
            background: #fff;
        }

        .section-head {
            margin-bottom: 50px;
        }

        .section-head .tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 700;
            color: var(--secondary);
            background: rgba(232, 163, 61, 0.12);
            padding: 5px 16px;
            border-radius: 50px;
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }

        .section-head h2 {
            font-size: 34px;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.3;
            margin-bottom: 12px;
        }

        .section-head p {
            color: var(--text-muted);
            font-size: 15px;
            max-width: 640px;
        }

        .section-head.light h2 {
            color: #fff;
        }

        .section-head.light p {
            color: rgba(255, 255, 255, 0.7);
        }

        /* Service Cards */
        .service-card {
            background: #fff;
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            height: 100%;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(232, 163, 61, 0.4);
        }

        .service-card .card-cover {
            height: 180px;
            overflow: hidden;
            position: relative;
        }

        .service-card .card-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s ease;
        }

        .service-card:hover .card-cover img {
            transform: scale(1.05);
        }

        .service-card .card-cover::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 30%, rgba(11, 31, 58, 0.6));
        }

        .service-card .card-body {
            padding: 28px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .service-card .icon-wrap {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: var(--accent);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 18px;
            box-shadow: 0 6px 16px rgba(11, 31, 58, 0.25);
        }

        .service-card h3 {
            font-size: 21px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .service-card p {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.7;
            flex: 1;
        }

        .service-card .card-link {
            font-weight: 700;
            font-size: 14px;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 16px;
            border-bottom: 2px solid transparent;
            padding-bottom: 2px;
            transition: var(--transition);
        }

        .service-card .card-link:hover {
            color: var(--secondary);
            border-bottom-color: var(--secondary);
        }

        .service-card .card-link i {
            font-size: 12px;
            transition: transform .3s;
        }

        .service-card .card-link:hover i {
            transform: translateX(4px);
        }

        /* Guide Sections */
        .guide-wrapper {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .guide-box {
            background: #fff;
            border-radius: var(--radius);
            padding: 32px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            display: flex;
            gap: 20px;
            transition: var(--transition);
        }

        .guide-box:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }

        .guide-box .guide-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            background: rgba(232, 163, 61, 0.12);
            color: var(--secondary);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
        }

        .guide-box h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .guide-box p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.65;
            margin: 0;
        }

        /* Process Section */
        .process-section {
            background: linear-gradient(135deg, var(--dark-section) 0%, #0d2442 100%);
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .process-section::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -100px;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: rgba(232, 163, 61, 0.08);
            filter: blur(50px);
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .process-step {
            padding: 36px 28px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius);
            text-align: center;
            transition: var(--transition);
        }

        .process-step:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(232, 163, 61, 0.4);
            transform: translateY(-6px);
        }

        .process-step .step-num {
            font-size: 42px;
            font-weight: 800;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 14px;
            font-family: 'Arial Black', sans-serif;
        }

        .process-step h3 {
            font-size: 19px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .process-step p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.65;
            margin: 0;
        }

        /* Category Cards */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .category-card {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            min-height: 220px;
            display: flex;
            align-items: flex-end;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .category-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-6px);
        }

        .category-card img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .category-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(11, 31, 58, 0.05) 30%, rgba(11, 31, 58, 0.88) 100%);
            z-index: 2;
        }

        .category-card .card-content {
            position: relative;
            z-index: 3;
            padding: 30px;
            color: #fff;
        }

        .category-card .card-content .tag {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 6px;
            display: block;
        }

        .category-card .card-content h3 {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 6px;
        }

        .category-card .card-content p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 14px;
        }

        .category-card .card-content .btn-sm-light {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 6px 16px;
            border-radius: 50px;
            color: #fff;
            transition: var(--transition);
        }

        .category-card .card-content .btn-sm-light:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: var(--primary);
        }

        /* FAQ */
        .faq-wrap {
            max-width: 800px;
            margin: 0 auto;
        }

        .accordion-item {
            border: 1px solid var(--border) !important;
            border-radius: 14px !important;
            margin-bottom: 16px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(11, 31, 58, 0.04);
        }

        .accordion-button {
            font-weight: 700;
            font-size: 16px;
            color: var(--primary);
            padding: 20px 26px;
            background: #fff;
            border: none;
        }

        .accordion-button:not(.collapsed) {
            background: rgba(232, 163, 61, 0.06);
            color: var(--primary);
        }

        .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(232, 163, 61, 0.2);
            border: none;
        }

        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230b1f3a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .accordion-body {
            padding: 20px 26px;
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.8;
            background: #fff;
            border-top: 1px solid rgba(11, 31, 58, 0.05);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, #1a3f6e 100%);
            border-radius: var(--radius);
            padding: 60px;
            margin: 90px 0;
            position: relative;
            overflow: hidden;
            box-shadow: 0 24px 60px rgba(11, 31, 58, 0.3);
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 240px;
            height: 240px;
            border-radius: 50%;
            background: rgba(232, 163, 61, 0.15);
            filter: blur(50px);
        }

        .cta-section h3 {
            font-size: 30px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 12px;
            position: relative;
            z-index: 2;
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 15px;
            max-width: 560px;
            position: relative;
            z-index: 2;
        }

        .cta-section .btn-group-cta {
            position: relative;
            z-index: 2;
        }

        .btn-primary-lg {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent);
            color: var(--primary);
            font-weight: 700;
            font-size: 16px;
            padding: 14px 36px;
            border-radius: 50px;
            border: none;
            box-shadow: 0 6px 20px rgba(232, 163, 61, 0.4);
            transition: var(--transition);
        }

        .btn-primary-lg:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 28px rgba(232, 163, 61, 0.5);
            color: var(--primary);
            background: #f4bd6a;
        }

        .btn-outline-light-lg {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            padding: 12px 28px;
            border-radius: 50px;
            background: transparent;
            transition: var(--transition);
        }

        .btn-outline-light-lg:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #fff;
            color: #fff;
        }

        /* Footer */
        .site-footer {
            background: var(--dark-section);
            color: rgba(255, 255, 255, 0.7);
            padding: 70px 0 0;
        }

        .site-footer .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .site-footer .footer-logo .brand-icon {
            width: 44px;
            height: 44px;
            font-size: 14px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--accent);
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: none;
        }

        .site-footer .footer-logo .brand-text {
            color: #fff;
            font-size: 20px;
            font-weight: 800;
        }

        .footer-desc {
            font-size: 14px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.65);
            max-width: 400px;
        }

        .footer-contact ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-contact ul li {
            font-size: 14px;
            padding: 5px 0;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-contact ul li i {
            color: var(--accent);
            width: 24px;
            text-align: center;
            margin-right: 6px;
        }

        .footer-title {
            color: #fff;
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 22px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 3px;
            border-radius: 3px;
            background: var(--secondary);
        }

        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 4px;
        }

        .footer-links a i {
            font-size: 11px;
            color: var(--accent);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 22px 0;
            margin-top: 50px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 8px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-bottom a:hover {
            color: var(--accent);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .page-hero {
                padding: 70px 0 90px;
            }

            .page-hero h1 {
                font-size: 36px;
            }

            .process-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .guide-wrapper {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding-left: 20px;
                padding-right: 20px;
            }

            .header-search {
                display: none;
            }

            .navbar-nav {
                padding: 12px 0;
            }

            .nav-link {
                padding: 10px 16px !important;
            }

            .header-actions {
                margin-top: 10px;
            }

            .page-hero {
                padding: 50px 0 70px;
                text-align: left;
            }

            .page-hero h1 {
                font-size: 28px;
            }

            .hero-stats {
                gap: 20px;
                margin-top: 30px;
            }

            .hero-stats .stat-item .num {
                font-size: 26px;
            }

            .section-padding {
                padding: 60px 0;
            }

            .section-head h2 {
                font-size: 26px;
            }

            .service-card .card-cover {
                height: 150px;
            }

            .category-grid {
                grid-template-columns: 1fr;
            }

            .process-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .process-step {
                padding: 26px 20px;
            }

            .cta-section {
                padding: 40px 24px;
                margin: 60px 0;
            }

            .cta-section h3 {
                font-size: 24px;
            }

            .btn-primary-lg,
            .btn-outline-light-lg {
                padding: 12px 22px;
                font-size: 14px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 520px) {
            .brand-text {
                font-size: 15px;
            }

            .brand-sub {
                font-size: 10px;
            }

            .brand-icon {
                width: 36px;
                height: 36px;
                font-size: 12px;
            }

            .page-hero h1 {
                font-size: 24px;
            }

            .page-hero .lead {
                font-size: 15px;
            }

            .section-head h2 {
                font-size: 22px;
            }

            .guide-box {
                flex-direction: column;
                padding: 24px;
            }

            .hero-stats {
                flex-wrap: wrap;
                gap: 16px;
            }

            .btn-highlight {
                padding: 8px 16px;
                font-size: 13px;
            }
        }

/* roulang page: article */
:root {
  --primary: #14315c;
  --primary-dark: #0b1f3f;
  --primary-light: #1e4278;
  --accent: #c9a86a;
  --accent-dark: #a9884b;
  --accent-light: #e3c891;
  --bg-light: #f6f8fb;
  --bg-white: #ffffff;
  --bg-dark: #0e1e34;
  --text-main: #1e2a3a;
  --text-muted: #6b7a8f;
  --text-light: #a7b4c4;
  --border: #e3e8ef;
  --border-light: #eef1f6;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-xs: 0 1px 3px rgba(16, 42, 80, .04);
  --shadow-sm: 0 2px 8px rgba(16, 42, 80, .06);
  --shadow-md: 0 6px 20px rgba(16, 42, 80, .10);
  --shadow-lg: 0 12px 32px rgba(16, 42, 80, .14);
  --font-base: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  --font-head: "Noto Serif SC", "Songti SC", "SimSun", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-main);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color .2s ease; }
a:hover { color: var(--accent-dark); }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea { font-family: inherit; outline: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
.container { max-width: 1200px; padding-left: 20px; padding-right: 20px; }

/* 导航 */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.navbar { padding: 14px 0; }
.navbar-brand { display: flex; align-items: center; gap: 12px; padding: 0; margin-right: 24px; }
.brand-wrap { display: flex; align-items: center; gap: 12px; }
.brand-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--accent-light) !important;
  font-size: 14px; font-weight: 700; letter-spacing: 1px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(20, 49, 92, .3);
  flex-shrink: 0;
}
.brand-text {
  display: flex; flex-direction: column; line-height: 1.2;
  font-size: 19px; font-weight: 800; color: var(--primary-dark) !important;
  letter-spacing: .5px;
}
.brand-sub { font-size: 10px; font-weight: 600; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; }
.navbar-nav { gap: 4px; }
.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main) !important;
  padding: 9px 16px !important;
  border-radius: 999px;
  transition: all .25s ease;
  position: relative;
}
.nav-link:hover { color: var(--primary) !important; background: rgba(20, 49, 92, .05); }
.nav-link.active { color: var(--primary) !important; background: rgba(20, 49, 92, .08); font-weight: 700; }
.nav-link.active::after {
  content: "";
  position: absolute; left: 16px; right: 16px; bottom: 4px;
  height: 2px; border-radius: 2px;
  background: var(--accent);
}
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-search {
  display: flex; align-items: center;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 6px 6px 16px;
  transition: all .25s ease;
}
.header-search:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(201,168,106,.18); background: #fff; }
.header-search input {
  border: none; background: transparent;
  font-size: 14px; color: var(--text-main);
  width: 140px; padding: 4px 0;
}
.header-search input::placeholder { color: var(--text-muted); }
.header-search button {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: var(--primary); color: #fff;
  border-radius: 50%;
  transition: all .25s ease;
}
.header-search button:hover { background: var(--primary-light); transform: scale(1.05); }
.btn-highlight {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff !important;
  font-size: 14px; font-weight: 700;
  padding: 10px 24px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(201, 168, 106, .35);
  transition: all .3s ease;
  white-space: nowrap;
}
.btn-highlight:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(201, 168, 106, .45); color: #fff !important; }
.navbar-toggler { border: none; padding: 6px; }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(20,49,92,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

/* 页脚 */
.site-footer {
  background: var(--bg-dark);
  color: #aab7c9;
  padding: 70px 0 0;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .5;
}
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-logo .brand-icon { width: 40px; height: 40px; font-size: 13px; }
.footer-logo .brand-text { font-size: 18px; color: #fff !important; }
.footer-desc { font-size: 14px; line-height: 1.9; color: #8b9ab0; max-width: 400px; margin-bottom: 24px; }
.footer-contact ul li {
  font-size: 14px; color: #aab7c9;
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.footer-contact ul li i { color: var(--accent); width: 16px; text-align: center; }
.footer-title {
  font-size: 16px; font-weight: 700; color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 30px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px; color: #8b9ab0;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .25s ease;
}
.footer-links a i { font-size: 12px; color: var(--accent); transition: transform .2s ease; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-links a:hover i { transform: translateX(4px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  margin-top: 50px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 13px; color: #7a8aa0; margin: 0; }
.footer-bottom a { color: var(--accent); }
.footer-bottom a:hover { color: var(--accent-light); }

/* 页面主 Banner */
.page-hero {
  position: relative;
  padding: 92px 0 72px;
  background: linear-gradient(135deg, rgba(11,31,63,.96) 0%, rgba(20,49,92,.90) 50%, rgba(11,31,63,.96) 100%), url("/assets/images/backpic/back-2.png") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(180deg, transparent, rgba(246,248,251,1));
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb-nav { margin-bottom: 26px; }
.breadcrumb {
  background: rgba(255,255,255,.08);
  display: inline-flex;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.12);
}
.breadcrumb a { color: var(--accent-light); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { margin: 0 10px; color: rgba(255,255,255,.6); }
.breadcrumb-current { color: #fff; }
.page-hero-content { max-width: 900px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(201,168,106,.18);
  border: 1px solid rgba(201,168,106,.4);
  color: var(--accent-light);
  font-size: 13px; font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero-badge i { font-size: 12px; }
.page-hero h1 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 16px;
  letter-spacing: 1px;
  font-family: var(--font-head);
}
.page-hero .hero-desc {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,.82);
  max-width: 760px;
  margin: 0 0 24px;
}
.hero-meta { display: flex; flex-wrap: wrap; gap: 18px; }
.hero-meta span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: rgba(255,255,255,.75);
}
.hero-meta i { color: var(--accent); }

/* 文章主体区域 */
.article-body-section { padding: 60px 0; background: var(--bg-light); }
.main-article {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  overflow: hidden;
  padding: 36px;
}
.article-cover {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
  position: relative;
}
.article-cover img { width: 100%; }
.article-cover::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11,31,63,.25));
  pointer-events: none;
}
.article-title-inline {
  font-size: 22px;
  font-weight: 750;
  line-height: 1.5;
  color: var(--primary-dark);
  margin: 0 0 10px;
  display: none;
}
.article-info-row {
  display: flex; flex-wrap: wrap; gap: 18px;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}
.article-info-row span { font-size: 13px; color: var(--text-muted); display: inline-flex; align-items: center; gap: 6px; }
.article-info-row i { color: var(--accent); }
.article-text { font-size: 16px; line-height: 2; color: var(--text-main); }
.article-text h2, .article-text h3 { font-family: var(--font-head); color: var(--primary-dark); margin: 28px 0 14px; }
.article-text h2 { font-size: 24px; }
.article-text h3 { font-size: 19px; }
.article-text p { margin: 0 0 18px; }
.article-text img { border-radius: var(--radius); margin: 20px 0; }
.article-text ul, .article-text ol { margin: 0 0 18px; padding-left: 22px; }
.article-text ul { list-style: disc; }
.article-text ol { list-style: decimal; }
.article-text li { margin-bottom: 6px; }
.article-text blockquote {
  border-left: 4px solid var(--accent);
  background: var(--bg-light);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
  color: var(--text-muted);
  font-style: normal;
}
.article-text a { color: var(--primary); border-bottom: 1px solid var(--accent); }
.article-tags {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  padding-top: 28px;
  margin-top: 30px;
  border-top: 1px solid var(--border-light);
}
.article-tags span { font-size: 14px; color: var(--text-muted); font-weight: 600; }
.article-tags a {
  display: inline-flex;
  font-size: 13px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: 999px;
  transition: all .25s ease;
}
.article-tags a:hover {
  background: rgba(20,49,92,.06);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}
.not-found {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 70px 40px;
  text-align: center;
}
.not-found i { font-size: 56px; color: var(--accent); margin-bottom: 20px; }
.not-found h2 { font-size: 28px; color: var(--primary-dark); margin-bottom: 12px; }
.not-found p { color: var(--text-muted); margin-bottom: 30px; }
.btn-solid {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary);
  color: #fff !important;
  font-size: 15px; font-weight: 600;
  padding: 12px 30px;
  border-radius: 999px;
  transition: all .3s ease;
  box-shadow: 0 4px 16px rgba(20,49,92,.25);
}
.btn-solid:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(20,49,92,.35); }

/* 侧边栏 */
.article-sidebar .sidebar-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  margin-bottom: 20px;
}
.sidebar-card h4 {
  font-size: 16px; font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bg-light);
  position: relative;
}
.sidebar-card h4::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0;
  width: 34px; height: 2px;
  background: var(--accent);
}
.sidebar-card ul li {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border-light);
  color: var(--text-muted);
}
.sidebar-card ul li:last-child { border-bottom: none; }
.sidebar-card ul li span { color: var(--text-main); font-weight: 600; }
.sidebar-cta { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important; border: none !important; }
.sidebar-cta h4 { color: #fff; border-bottom-color: rgba(255,255,255,.15); }
.sidebar-cta h4::after { background: var(--accent); }
.sidebar-cta p { font-size: 14px; color: rgba(255,255,255,.75); margin-bottom: 18px; }
.sidebar-cta a {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent);
  color: var(--primary-dark) !important;
  font-weight: 700; font-size: 14px;
  padding: 10px 24px;
  border-radius: 999px;
  transition: all .3s ease;
}
.sidebar-cta a:hover { background: var(--accent-light); transform: translateY(-2px); }

/* 数据保障深色区块 */
.assurance-section {
  background: linear-gradient(135deg, #0b1f3f 0%, #14315c 60%, #0e2340 100%);
  color: #fff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.assurance-section::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(201,168,106,.08);
  filter: blur(30px);
}
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title-white {
  font-size: 30px; font-weight: 800;
  font-family: var(--font-head);
  color: #fff;
  line-height: 1.4;
  margin-bottom: 10px;
}
.section-title-white span { color: var(--accent); }
.section-sub-white { color: rgba(255,255,255,.7); font-size: 15px; max-width: 680px; }
.stat-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
  transition: all .35s ease;
}
.stat-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); border-color: rgba(201,168,106,.35); }
.stat-num { font-size: 42px; font-weight: 800; color: var(--accent-light); line-height: 1.2; display: block; }
.stat-num span { font-size: 18px; font-weight: 700; margin-left: 2px; }
.stat-label { display: block; font-size: 14px; color: rgba(255,255,255,.75); margin-top: 6px; letter-spacing: 1px; }
.assure-grid { margin-top: 40px; }
.assure-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px;
  height: 100%;
  transition: all .35s ease;
}
.assure-card:hover { background: rgba(255,255,255,.08); transform: translateY(-4px); border-color: rgba(201,168,106,.3); }
.assure-card i { font-size: 28px; color: var(--accent); margin-bottom: 14px; }
.assure-card h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.assure-card p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.8; margin: 0; }

/* 相关资讯 */
.related-section { padding: 70px 0; background: var(--bg-light); }
.section-label-dark { color: var(--accent-dark); }
.section-title {
  font-size: 30px; font-weight: 800;
  font-family: var(--font-head);
  color: var(--primary-dark);
  line-height: 1.4;
  margin-bottom: 10px;
}
.section-title span { color: var(--accent-dark); }
.section-sub { color: var(--text-muted); font-size: 15px; max-width: 680px; }
.article-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .35s ease;
  height: 100%;
  box-shadow: var(--shadow-xs);
}
.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,106,.4);
}
.article-card-cover {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-light);
}
.article-card-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.article-card:hover .article-card-cover img { transform: scale(1.06); }
.article-card-cover::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11,31,63,.3));
}
.article-card-badge {
  position: absolute;
  top: 12px; left: 12px; z-index: 2;
  background: rgba(255,255,255,.92);
  color: var(--primary);
  font-size: 12px; font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.article-card-body { padding: 20px; }
.article-card-body h3 {
  font-size: 16px; font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.5;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s ease;
}
.article-card:hover .article-card-body h3 { color: var(--accent-dark); }
.article-card-body p {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card-meta { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.article-card-meta i { color: var(--accent); font-size: 12px; }
.related-empty {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}

/* FAQ 区块 */
.faq-section { padding: 70px 0; background: #fff; }
.faq-list { max-width: 860px; }
.faq-item {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 16px;
  transition: all .3s ease;
  position: relative;
  padding-left: 70px;
}
.faq-item::before {
  content: "Q";
  position: absolute;
  left: 24px; top: 24px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--accent-light);
  font-size: 14px; font-weight: 800;
  border-radius: 8px;
}
.faq-item:hover { border-color: rgba(201,168,106,.4); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.faq-item h3 { font-size: 17px; font-weight: 700; color: var(--primary-dark); margin: 0 0 8px; }
.faq-item p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin: 0; }

/* CTA 区块 */
.cta-section { padding: 70px 0; background: var(--bg-light); }
.cta-box {
  position: relative;
  background: linear-gradient(135deg, rgba(11,31,63,.97), rgba(20,49,92,.93)), url("/assets/images/backpic/back-3.png") center/cover no-repeat;
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-box::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(201,168,106,.15);
  filter: blur(20px);
}
.cta-box::after {
  content: "";
  position: absolute;
  bottom: -80px; left: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(201,168,106,.1);
  filter: blur(20px);
}
.cta-box h2 { font-size: 30px; font-weight: 800; color: #fff; margin: 0 0 12px; font-family: var(--font-head); }
.cta-box p { font-size: 16px; color: rgba(255,255,255,.75); margin: 0 0 32px; }
.cta-box .btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff !important;
  font-size: 15px; font-weight: 700;
  padding: 14px 36px;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(201,168,106,.4);
  transition: all .3s ease;
}
.cta-box .btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(201,168,106,.5); }
.cta-box .btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff !important;
  font-size: 15px; font-weight: 600;
  padding: 13px 32px;
  border-radius: 999px;
  margin-left: 14px;
  transition: all .3s ease;
}
.cta-box .btn-ghost:hover { background: rgba(255,255,255,.15); border-color: var(--accent); transform: translateY(-3px); }

/* 区块头部通用 */
.section-head { margin-bottom: 36px; }
.section-head-center { text-align: center; }
.section-head-center .section-sub { margin-left: auto; margin-right: auto; }

/* 响应式 */
@media (max-width: 1024px) {
  .page-hero { padding: 70px 0 56px; }
  .page-hero h1 { font-size: 30px; }
  .stat-num { font-size: 34px; }
  .cta-box { padding: 45px 30px; }
}

@media (max-width: 768px) {
  .navbar { padding: 10px 0; }
  .brand-text { font-size: 16px; }
  .brand-sub { display: none; }
  .navbar-collapse {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 16px;
    margin-top: 12px;
    border: 1px solid var(--border-light);
  }
  .navbar-nav { gap: 2px; }
  .nav-link { padding: 10px 14px !important; border-radius: 10px; }
  .header-actions { flex-direction: column; align-items: stretch; margin-top: 12px; }
  .header-search { width: 100%; }
  .header-search input { width: 100%; flex: 1; }
  .btn-highlight { width: 100%; text-align: center; }
  .page-hero { padding: 56px 0 46px; }
  .page-hero h1 { font-size: 26px; }
  .hero-desc { font-size: 15px; }
  .article-body-section { padding: 40px 0; }
  .main-article { padding: 24px; }
  .article-title-inline { display: block; }
  .article-cover { margin-bottom: 20px; }
  .assurance-section { padding: 50px 0; }
  .section-title, .section-title-white { font-size: 24px; }
  .stat-card { padding: 20px 12px; }
  .stat-num { font-size: 28px; }
  .assure-card { padding: 22px; }
  .related-section, .faq-section, .cta-section { padding: 50px 0; }
  .faq-item { padding: 20px 20px 20px 60px; }
  .faq-item::before { left: 18px; top: 20px; width: 28px; height: 28px; font-size: 12px; }
  .cta-box { padding: 40px 24px; }
  .cta-box h2 { font-size: 24px; }
  .btn-ghost { margin-left: 0; margin-top: 14px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .page-hero h1 { font-size: 22px; }
  .page-hero { padding: 44px 0 40px; }
  .hero-meta { gap: 12px; flex-direction: column; }
  .main-article { padding: 18px; }
  .article-text { font-size: 15px; }
  .article-tags { flex-direction: column; align-items: flex-start; }
  .sidebar-card { padding: 22px; }
  .stat-num { font-size: 26px; }
  .section-title, .section-title-white { font-size: 22px; }
  .cta-box .btn-gold, .cta-box .btn-ghost { width: 100%; justify-content: center; }
  .footer-bottom { margin-top: 30px; }
}
