/* roulang page: index */
:root {
  --brand: #EA4B2B;
  --brand-dark: #D13A1F;
  --brand-soft: #FDEEE8;
  --green: #27A36A;
  --ink: #242120;
  --muted: #6E6763;
  --bg: #F7F5F3;
  --surface: #FFFFFF;
  --line: #E7E1DD;
  --dark: #1E1B1A;
  --dark-soft: #2C2725;
  --bs-primary: var(--brand);
  --bs-link-color: var(--brand);
  --bs-link-hover-color: var(--brand-dark);
  --body-font: system-ui, -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  --shadow-sm: 0 6px 20px rgba(30, 20, 15, .06);
  --shadow-hover: 0 18px 36px rgba(30, 20, 15, .12);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --section-pad-lg: 88px;
  --section-pad-md: 64px;
  --section-pad-sm: 44px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input {
  font-family: inherit;
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 6px;
}

.container-xxl {
  max-width: 1320px;
  padding-left: 22px;
  padding-right: 22px;
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding-top: var(--section-pad-lg);
  padding-bottom: var(--section-pad-lg);
}

.section-white {
  background: var(--surface);
}

.section-light {
  background: var(--bg);
}

.section-head {
  margin-bottom: 38px;
}

.section-head h2 {
  font-size: 34px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin: 0 0 8px;
  color: var(--ink);
}

.section-head .section-sub {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-weight: 600;
  background: var(--brand-soft);
  border-radius: 999px;
  padding: 7px 14px;
  margin-bottom: 18px;
  font-size: 14px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 50%;
  display: inline-block;
}

.small-label {
  display: inline-block;
  font-size: 13px;
  background: #F3EEEB;
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 999px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 5px 22px rgba(30, 20, 15, .05);
}

.site-header .navbar {
  min-height: 72px;
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-toggler {
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 44px;
  height: 40px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--surface);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(234, 75, 43, .18);
}

.toggler-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 4px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.brand-logo:hover {
  color: var(--ink);
  text-decoration: none;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: var(--brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(234, 75, 43, .28);
}

.logo-mark svg {
  width: 23px;
  height: 23px;
}

.navbar-nav {
  gap: 4px;
}

.navbar-nav .nav-link {
  padding: 9px 14px;
  color: #3A3532;
  font-weight: 500;
  font-size: 15px;
  border-radius: 999px;
  white-space: nowrap;
}

.navbar-nav .nav-link:hover {
  color: var(--brand-dark);
  background: var(--brand-soft);
  text-decoration: none;
}

.navbar-nav .nav-link.active {
  color: var(--brand);
  background: var(--brand-soft);
  font-weight: 700;
  position: relative;
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 16px;
  height: 3px;
  border-radius: 2px;
  background: var(--brand);
  transform: translateX(-50%);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-box {
  position: relative;
  width: 198px;
}

.search-box svg {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #8A817B;
  pointer-events: none;
}

.search-box input {
  width: 100%;
  height: 42px;
  border: 1px solid transparent;
  background: #F2EEEA;
  border-radius: 999px;
  padding: 0 14px 0 38px;
  font-size: 14px;
  color: var(--ink);
  transition: .2s;
}

.search-box input:focus {
  outline: none;
  border-color: rgba(234, 75, 43, .55);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(234, 75, 43, .14);
}

.btn-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
  border-radius: 999px;
  padding: 11px 24px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  transition: all .22s ease;
}

.btn-brand:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(234, 75, 43, .3);
}

.btn-brand:active {
  transform: translateY(1px);
  box-shadow: none;
}

.btn-outline-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: var(--brand);
  border: 1.5px solid var(--brand);
  border-radius: 999px;
  padding: 10px 23px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  transition: all .22s ease;
}

.btn-outline-brand:hover {
  background: rgba(234, 75, 43, .07);
  color: var(--brand-dark);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-outline-brand:active {
  transform: translateY(1px);
}

.btn-light-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: var(--dark);
  border: none;
  border-radius: 999px;
  padding: 13px 26px;
  font-weight: 700;
  font-size: 16px;
  transition: .2s;
}

.btn-light-large:hover {
  background: #F5F0EC;
  color: var(--dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .18);
}

.btn-pill-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.2);
  color: #fff;
}

.hero {
  background: var(--surface);
  padding-top: 72px;
  padding-bottom: 74px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.16;
  margin: 0 0 18px;
  max-width: 700px;
  color: var(--ink);
}

.hero h1 .hero-highlight {
  color: var(--brand);
}

.hero-lead {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 540px;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  color: var(--muted);
  font-size: 14px;
  padding-top: 22px;
  border-top: 1px solid #F0EBE7;
}

.hero-stat-row strong {
  color: var(--ink);
  font-weight: 700;
}

.hero-stat-row span {
  padding-left: 20px;
  position: relative;
}

.hero-stat-row span:first-child {
  padding-left: 0;
}

.hero-stat-row span:first-child::before {
  display: none;
}

.hero-stat-row span::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 50%;
  width: 4px;
  height: 4px;
  background: var(--brand);
  border-radius: 50%;
  transform: translateY(-50%);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 460px;
  padding: 26px 10px 20px;
}

.hero-ring-a {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(234, 75, 43, .10);
  top: 20px;
  right: 5%;
  z-index: 0;
  animation: pulse-soft 5s ease-in-out infinite;
}

.hero-ring-b {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 14px solid rgba(39, 163, 106, .18);
  bottom: 30px;
  left: 0;
  z-index: 0;
}

@keyframes pulse-soft {
  0%, 100% { transform: scale(1); opacity: .6; }
  50% { transform: scale(1.06); opacity: 1; }
}

.tv-card {
  position: relative;
  z-index: 2;
  width: min(335px, 88%);
  background: var(--surface);
  border-radius: 24px;
  padding: 12px 12px 16px;
  box-shadow: 0 24px 55px rgba(30, 20, 15, .16);
  border: 1px solid rgba(231,225,221,.9);
}

.tv-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 6px 10px;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
}

.live-pill i {
  width: 7px;
  height: 7px;
  background: var(--brand);
  border-radius: 50%;
  display: inline-block;
  animation: blink 1.2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .45; }
}

.tv-cat {
  font-size: 13px;
  color: var(--muted);
  background: #F6F1EE;
  padding: 4px 10px;
  border-radius: 999px;
}

.tv-cover {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #EDE4DF;
}

.tv-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tv-mask {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px 16px 14px;
  background: linear-gradient(to top, rgba(30,20,15,.78), rgba(30,20,15,0));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  color: #fff;
  font-size: 15px;
}

.tv-duration {
  background: rgba(0,0,0,.58);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 7px;
  padding: 2px 7px;
  font-size: 12px;
  letter-spacing: .3px;
  white-space: nowrap;
  color: #fff;
}

.play-center {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  color: #D1381D;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(0,0,0,.18);
  transition: .2s;
}

.play-center svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
}

.tv-bottom {
  padding: 12px 6px 0;
}

.tv-title-line {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 9px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.progress-wrap {
  background: #EAE2DC;
  height: 5px;
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-inner {
  width: 66%;
  height: 100%;
  background: var(--brand);
  border-radius: 99px;
}

.tv-icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8E8580;
  font-size: 13px;
}

.tv-icons svg {
  width: 17px;
  height: 17px;
  color: #77706C;
}

.hot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hot-card {
  background: var(--surface);
  border: 1px solid #EDE6E2;
  border-radius: var(--radius-lg);
  padding: 10px;
  transition: all .25s ease;
}

.hot-card .hot-cover {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 1/1.08;
  background: #EBE1DD;
}

.hot-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hot-card .hot-cover img {
  transition: transform .4s ease;
}

.hot-card:hover .hot-cover img {
  transform: scale(1.05);
}

.card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 48%, rgba(0,0,0,.55) 100%);
}

.hot-time {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(0,0,0,.68);
  color: #fff;
  font-size: 12px;
  padding: 3px 7px;
  border-radius: 7px;
  letter-spacing: .3px;
}

.card-label {
  position: absolute;
  left: 10px;
  top: 10px;
  background: rgba(255,255,255,.9);
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
}

.hot-card-body {
  padding: 13px 6px 7px;
}

.hot-card-body h3 {
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.hot-metrics {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--muted);
}

.hot-metrics svg {
  width: 14px;
  height: 14px;
  color: #A29A95;
  margin-right: 4px;
  vertical-align: -2px;
}

.hot-card-link {
  color: inherit;
}

.hot-card-link:hover .hot-card-body h3 {
  color: var(--brand);
}

.hot-card-link:hover {
  text-decoration: none;
}

.advantage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 56px;
  align-items: center;
}

.adv-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.adv-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 20px 18px;
  transition: all .2s ease;
}

.adv-item:hover {
  border-color: rgba(234, 75, 43, .5);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.adv-num {
  font-size: 28px;
  font-weight: 800;
  color: #DAD2CD;
  line-height: 1;
  min-width: 36px;
  font-variant-numeric: tabular-nums;
}

.adv-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.adv-icon svg {
  width: 23px;
  height: 23px;
}

.adv-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
}

.adv-content p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}

.adv-btn {
  border: 1px dashed #CFC6C0;
  border-radius: 14px;
  color: var(--brand);
  background: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  font-weight: 600;
  transition: .2s;
}

.adv-btn:hover {
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(234,75,43,.22);
}

.adv-btn svg {
  width: 16px;
  height: 16px;
}

.visual-panel {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  aspect-ratio: 4/4.4;
}

.visual-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,15,12,.86), rgba(20,15,12,0) 60%);
}

.visual-badges {
  position: absolute;
  left: 22px;
  top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vbadge {
  background: rgba(255,255,255,.9);
  color: var(--dark);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
}

.vbadge.active {
  background: var(--brand);
  color: #fff;
}

.visual-text {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: #fff;
  z-index: 2;
}

.visual-text h3 {
  font-size: 23px;
  line-height: 1.35;
  font-weight: 700;
}

.visual-text p {
  color: rgba(255,255,255,.88);
  font-size: 14px;
  margin-bottom: 18px;
}

.visual-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--dark);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 14px;
}

.visual-link-btn:hover {
  background: var(--brand-soft);
  color: var(--dark);
  text-decoration: none;
}

.review-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.review-card {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 20px 18px;
  transition: all .2s ease;
}

.review-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.review-stars {
  color: #F2A044;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.review-text {
  font-size: 14px;
  line-height: 1.8;
  color: #38322F;
  min-height: 100px;
  margin-bottom: 14px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #F1ECE8;
  padding-top: 12px;
}

.review-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.review-user strong {
  font-size: 14px;
  color: var(--ink);
  display: block;
}

.review-user small {
  font-size: 12px;
  color: var(--muted);
  display: block;
}

.cms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.cms-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 24px 20px;
  transition: all .2s ease;
}

.cms-card:hover {
  border-color: rgba(234,75,43,.5);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.cms-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--muted);
}

.cms-meta span {
  color: var(--brand);
  background: var(--brand-soft);
  font-weight: 600;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
}

.cms-card h3 {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 700;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cms-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cms-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 600;
}

.cms-more svg {
  width: 14px;
  height: 14px;
}

.cms-empty {
  text-align: center;
  border: 1px dashed #CFC6C0;
  background: #FBF8F6;
  border-radius: 16px;
  padding: 50px 28px;
  color: var(--muted);
  font-size: 15px;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid #E5DEDA;
  border-radius: 14px !important;
  overflow: hidden;
  margin-bottom: 12px;
  background: #fff;
}

.accordion-button {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  border: none;
  padding: 16px 22px;
  min-height: 56px;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: var(--brand-soft);
  color: var(--ink);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(234,75,43,.15);
  border-radius: 12px;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a14d3f'%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 {
  font-size: 15px;
  color: #504A47;
  line-height: 1.85;
  padding: 4px 24px 22px;
  background: var(--brand-soft);
}

.news-link {
  display: inline-block;
  border-bottom: 1px solid rgba(234,75,43,.4);
  font-weight: 600;
}

.cta-panel {
  position: relative;
  border-radius: 28px;
  background:
    linear-gradient(115deg, rgba(28,23,21,.94), rgba(45,35,30,.85)),
    url("/assets/images/backpic/back-3.webp") center center / cover no-repeat;
  padding: 76px 64px;
  overflow: hidden;
}

.cta-panel::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 280px;
  height: 280px;
  border: 50px solid rgba(234,75,43,.22);
  border-radius: 50%;
  pointer-events: none;
}

.cta-panel h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.3;
  margin: 0 0 14px;
  max-width: 720px;
}

.cta-panel p {
  color: rgba(255,255,255,.8);
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 28px;
  max-width: 580px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.cta-note {
  color: rgba(255,255,255,.55);
  font-size: 13px;
  margin: 14px 0 0;
}

.cta-icon-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
}

.cta-icon-pill svg {
  width: 15px;
  height: 15px;
  color: #FFCFC0;
}

.site-footer {
  background: var(--dark);
  color: #B8B1AD;
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .9fr .9fr 1.3fr;
  gap: 40px;
  padding-bottom: 44px;
}

.footer-brand {
  color: #fff;
  font-size: 21px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand:hover {
  color: #fff;
  text-decoration: none;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 320px;
}

.footer-col-title {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #B8B1AD;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: "·";
  color: var(--brand);
  font-weight: 700;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-contact p {
  margin: 0 0 12px;
  font-size: 14px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  color: #EA8B74;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  font-size: 13px;
  color: #8C8480;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  margin: 0;
}

.bg-deco-starline {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  pointer-events: none;
  background-image: repeating-linear-gradient(120deg, rgba(255,255,255,.025) 0, rgba(255,255,255,.025) 1px, transparent 1px, transparent 24px);
}

a[aria-current="page"] {
  text-decoration: none;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hot-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .navbar-nav .nav-link {
    padding-left: 10px;
    padding-right: 10px;
  }

  .search-box {
    width: 170px;
  }

  .review-track {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .hero h1 {
    font-size: 45px;
  }
}

@media (max-width: 991.98px) {
  .site-header .navbar {
    min-height: 64px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .navbar-collapse {
    background: #FFFDFB;
    border-radius: 18px;
    padding: 14px;
    margin-top: 10px;
    box-shadow: 0 16px 38px rgba(30,20,10,.12);
    border: 1px solid var(--line);
  }

  .navbar-nav {
    gap: 2px;
    margin-bottom: 14px !important;
  }

  .navbar-nav .nav-link {
    display: block;
    padding: 10px 14px;
  }

  .navbar-nav .nav-link.active::after {
    left: 18px;
    bottom: 6px;
    transform: none;
  }

  .header-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .search-box {
    width: 100%;
  }

  .header-cta {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 10px;
  }

  .tv-card {
    width: min(310px, 78%);
  }

  .hot-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .advantage-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .review-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .cms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .cta-panel {
    padding: 56px 32px;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding-top: var(--section-pad-sm);
    padding-bottom: var(--section-pad-sm);
  }

  .brand-logo {
    font-size: 18px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    width: calc(50% - 5px);
    padding-left: 12px;
    padding-right: 12px;
    font-size: 15px;
  }

  .tv-card {
    width: min(300px, 64%);
  }

  .section-head h2 {
    font-size: 27px;
  }

  .section-head .section-sub {
    font-size: 14px;
  }

  .hot-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }

  .hot-card-body h3 {
    -webkit-line-clamp: 2;
  }

  .review-track {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .review-text {
    min-height: auto;
  }

  .cms-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cta-panel {
    padding: 42px 24px;
  }

  .cta-panel h2 {
    font-size: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 30px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  .container-xxl {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .tv-card {
    width: min(300px, 86%);
  }

  .hero-stat-row {
    flex-direction: column;
    gap: 8px;
  }

  .adv-item {
    flex-wrap: wrap;
    padding: 16px;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* roulang page: article */
:root {
            --brand: #EA4B2B;
            --brand-dark: #D13A1F;
            --brand-soft: #FCEFE9;
            --accent: #27A36A;
            --accent-soft: #E8F6EF;
            --dark: #1E1B1A;
            --ink: #242120;
            --muted: #6E6763;
            --border: #E7E1DD;
            --surface: #FFFFFF;
            --bg: #F7F5F3;
            --disabled-text: #BFB6B0;
            --shadow-sm: 0 6px 20px rgba(30, 20, 15, .06);
            --shadow-lg: 0 18px 36px rgba(30, 20, 15, .12);
            --radius-sm: 10px;
            --radius-md: 16px;
            --radius-lg: 20px;
            --font-stack: system-ui, -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: var(--font-stack);
            font-size: 15px;
            line-height: 1.75;
            background: var(--bg);
            color: var(--ink);
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: var(--brand);
            text-decoration: none;
            transition: color .2s ease;
        }

        a:hover {
            color: var(--brand-dark);
            text-decoration: underline;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        button,
        input,
        optgroup,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        .container-xxl {
            max-width: 1320px;
            padding-left: 24px;
            padding-right: 24px;
            margin-right: auto;
            margin-left: auto;
            width: 100%;
        }

        .site-header {
            background: #fff;
            border-bottom: 1px solid var(--border);
            box-shadow: 0 2px 12px rgba(30, 20, 15, .03);
            position: sticky;
            top: 0;
            z-index: 1030;
        }

        .site-header .navbar {
            min-height: 72px;
            padding: 0;
        }

        .brand-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 19px;
            letter-spacing: -0.3px;
            color: var(--ink);
            white-space: nowrap;
        }

        .brand-logo:hover {
            text-decoration: none;
        }

        .logo-mark {
            width: 36px;
            height: 36px;
            border-radius: 12px;
            background: var(--brand);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            flex: none;
        }

        .logo-mark svg {
            width: 22px;
            height: 22px;
        }

        .site-header .navbar-nav {
            gap: 4px;
        }

        .site-header .nav-link {
            font-size: 15px;
            font-weight: 600;
            color: #4b4643;
            padding: 9px 16px;
            border-radius: 999px;
            position: relative;
            transition: background .2s ease, color .2s ease;
        }

        .site-header .nav-link:hover {
            color: var(--brand);
            background: #FBF1ED;
        }

        .site-header .nav-link.active {
            color: var(--brand);
            background: var(--brand-soft);
        }

        .site-header .nav-link.active::after {
            content: "";
            width: 18px;
            height: 3px;
            background: var(--brand);
            border-radius: 20px;
            position: absolute;
            left: 50%;
            bottom: 2px;
            transform: translateX(-50%);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .search-box {
            width: 200px;
            height: 42px;
            border: 1px solid var(--border);
            border-radius: 999px;
            background: #F8F6F4;
            display: flex;
            align-items: center;
            padding: 0 8px 0 14px;
            transition: border-color .2s ease, box-shadow .2s ease;
        }

        .search-box:focus-within {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px rgba(234, 75, 43, .12);
        }

        .search-box svg {
            width: 18px;
            height: 18px;
            color: var(--muted);
            flex: none;
        }

        .search-box input {
            border: 0;
            outline: none;
            background: transparent;
            font-size: 14px;
            color: var(--ink);
            padding: 4px 6px 4px 8px;
            width: 100%;
        }

        .search-box input::placeholder {
            color: #A9A19C;
        }

        .btn-brand {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 42px;
            width: auto;
            padding: 0 22px;
            background: var(--brand);
            color: #fff;
            border-radius: 999px;
            border: 1px solid transparent;
            font-size: 15px;
            font-weight: 600;
            transition: background .2s, border-color .2s, box-shadow .25s, transform .15s;
            gap: 8px;
            white-space: nowrap;
        }

        .btn-brand:hover {
            background: var(--brand-dark);
            color: #fff;
            text-decoration: none;
            box-shadow: 0 8px 20px rgba(234, 75, 43, .24);
            transform: translateY(-1px);
        }

        .btn-brand:focus-visible {
            outline: none;
            box-shadow: 0 0 0 4px rgba(234, 75, 43, .25);
        }

        .btn-outline-brand {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 42px;
            padding: 0 22px;
            background: #fff;
            color: var(--brand);
            border: 1.5px solid var(--brand);
            border-radius: 999px;
            font-size: 15px;
            font-weight: 600;
            transition: all .2s ease;
        }

        .btn-outline-brand:hover {
            background: rgba(234, 75, 43, .07);
            color: var(--brand-dark);
            border-color: var(--brand-dark);
            text-decoration: none;
        }

        .btn-outline-brand:focus-visible {
            outline: none;
            box-shadow: 0 0 0 4px rgba(234, 75, 43, .2);
        }

        .navbar-toggler {
            border: none;
            background: none;
            padding: 10px;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(234, 75, 43, .25);
            outline: none;
        }

        .toggler-bar {
            width: 22px;
            height: 2px;
            background: var(--ink);
            border-radius: 2px;
            display: block;
        }

        .article-page {
            padding: 48px 0 80px;
        }

        .article-breadcrumb {
            margin-bottom: 24px;
        }

        .article-breadcrumb .breadcrumb {
            margin: 0;
            font-size: 13px;
        }

        .article-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
            color: #B9AFA9;
        }

        .article-breadcrumb a {
            color: var(--muted);
            text-decoration: none;
        }

        .article-breadcrumb a:hover {
            color: var(--brand);
        }

        .article-breadcrumb .active {
            color: var(--ink);
            font-weight: 500;
            display: inline-block;
            max-width: 280px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            vertical-align: bottom;
        }

        .article-wrap {
            max-width: 860px;
            margin: 0 auto;
        }

        .article-head {
            margin-bottom: 32px;
        }

        .article-title {
            font-size: clamp(30px, 4.2vw, 46px);
            letter-spacing: -0.8px;
            line-height: 1.3;
            font-weight: 800;
            color: var(--dark);
            margin: 0 0 20px;
            word-break: break-word;
        }

        .article-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 16px 22px;
            font-size: 13px;
            color: var(--muted);
            margin-bottom: 22px;
        }

        .article-meta span {
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }

        .article-meta svg {
            width: 16px;
            height: 16px;
            color: var(--brand);
        }

        .meta-divider {
            border: 0;
            border-top: 1px solid var(--border);
            margin: 0;
            opacity: 1;
        }

        .article-cover {
            display: block;
            width: 100%;
            aspect-ratio: 16 / 8.6;
            object-fit: cover;
            border-radius: var(--radius-lg);
            margin: 26px 0 36px;
            box-shadow: var(--shadow-sm);
        }

        .article-body {
            background: var(--surface);
            border: 1px solid rgba(231, 225, 221, .7);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            padding: clamp(24px, 5vw, 56px);
            margin-bottom: 40px;
            font-size: 17px;
            line-height: 1.85;
            color: #332E2C;
            overflow-wrap: break-word;
        }

        .article-body p {
            margin: 0 0 24px;
        }

        .article-body h2 {
            font-size: 26px;
            font-weight: 800;
            margin: 44px 0 18px;
            line-height: 1.4;
            letter-spacing: -0.4px;
            color: var(--dark);
            padding-top: 8px;
        }

        .article-body h2::before {
            content: "";
            display: block;
            width: 34px;
            height: 4px;
            background: var(--brand);
            border-radius: 20px;
            margin-bottom: 14px;
        }

        .article-body h3 {
            font-size: 21px;
            font-weight: 700;
            margin: 34px 0 14px;
            color: var(--dark);
            line-height: 1.5;
        }

        .article-body h4 {
            font-size: 18px;
            font-weight: 700;
            margin: 26px 0 12px;
            color: var(--dark);
        }

        .article-body ul,
        .article-body ol {
            margin: 0 0 24px;
            padding-left: 24px;
        }

        .article-body li {
            margin-bottom: 8px;
        }

        .article-body ul li::marker {
            color: var(--brand);
        }

        .article-body blockquote {
            border-left: 3px solid var(--brand);
            background: #FAF7F5;
            color: #4A4441;
            padding: 18px 24px;
            margin: 0 0 24px;
            border-radius: 0 14px 14px 0;
            font-size: 16px;
            line-height: 1.8;
        }

        .article-body blockquote p:last-child {
            margin-bottom: 0;
        }

        .article-body img {
            display: block;
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 8px 0 24px;
        }

        .article-body img + em {
            display: block;
            text-align: center;
            font-style: normal;
            font-size: 13px;
            color: var(--muted);
            margin-top: -14px;
            margin-bottom: 24px;
        }

        .article-body a {
            color: var(--brand);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .article-body a:hover {
            color: var(--brand-dark);
        }

        .article-body strong {
            color: var(--dark);
            font-weight: 700;
        }

        .article-actions {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            padding: 22px 0 34px;
            border-bottom: 1px solid var(--border);
            margin-bottom: 40px;
        }

        .article-action-group {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .article-action-group .btn-brand,
        .article-action-group .btn-outline-brand {
            height: 40px;
            font-size: 14px;
            padding: 0 18px;
        }

        .related-area {
            padding: 0 0 12px;
        }

        .related-head {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 24px;
        }

        .related-head h2 {
            font-size: 26px;
            font-weight: 800;
            color: var(--dark);
            letter-spacing: -0.4px;
            margin: 0;
        }

        .related-link {
            font-size: 14px;
            color: var(--muted);
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .related-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
            transition: box-shadow .25s, transform .25s, border-color .2s;
        }

        .related-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
            border-color: rgba(234, 75, 43, .3);
        }

        .related-card .rel-thumb {
            aspect-ratio: 16 / 10;
            overflow: hidden;
            display: block;
        }

        .related-card .rel-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .45s ease;
        }

        .related-card:hover .rel-thumb img {
            transform: scale(1.04);
        }

        .related-card .rel-body {
            padding: 18px 18px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .related-card h3 {
            font-size: 16px;
            font-weight: 700;
            line-height: 1.55;
            color: var(--dark);
            margin: 0 0 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .related-card h3 a {
            color: inherit;
        }

        .related-card h3 a:hover {
            color: var(--brand);
            text-decoration: none;
        }

        .rel-meta {
            margin-top: auto;
            font-size: 13px;
            color: var(--muted);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .rel-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            color: var(--brand);
            background: var(--brand-soft);
            border-radius: 999px;
            padding: 3px 12px;
            margin-bottom: 10px;
        }

        .not-found-main {
            padding: 100px 20px;
            display: flex;
            justify-content: center;
        }

        .not-found-box {
            background: var(--surface);
            border: 1px dashed #D8D0CB;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            text-align: center;
            padding: 70px 38px;
            max-width: 560px;
            width: 100%;
        }

        .not-found-picto {
            width: 66px;
            height: 66px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--brand-soft);
            color: var(--brand);
            margin-bottom: 22px;
        }

        .not-found-picto svg {
            width: 30px;
            height: 30px;
        }

        .not-found-box h1 {
            font-size: 28px;
            font-weight: 800;
            margin: 0 0 24px;
            letter-spacing: -0.4px;
            color: var(--dark);
        }

        .site-footer {
            background: var(--dark);
            color: #B9B2AD;
            padding: 72px 0 0;
            font-size: 14px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
            gap: 44px;
            padding-bottom: 48px;
        }

        .footer-brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #fff;
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 16px;
            letter-spacing: -0.2px;
        }

        .footer-brand svg {
            width: 20px;
            height: 20px;
        }

        .footer-brand:hover {
            color: #fff;
            text-decoration: none;
        }

        .footer-desc {
            font-size: 14px;
            line-height: 1.8;
            color: #A69E98;
            max-width: 280px;
            margin: 0;
        }

        .footer-col-title {
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 18px;
        }

        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-links a {
            color: #B9B2AD;
            text-decoration: none;
            transition: color .2s;
        }

        .footer-links a:hover {
            color: var(--brand);
            text-decoration: none;
        }

        .footer-contact p {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-bottom: 12px;
            color: #A69E98;
        }

        .footer-contact svg {
            width: 16px;
            height: 16px;
            color: var(--brand);
            flex: none;
            margin-top: 4px;
        }

        .footer-bottom {
            border-top: 1px solid #3d3734;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px 30px;
            padding: 20px 0;
            font-size: 13px;
            color: #89807A;
        }

        .footer-bottom p {
            margin: 0;
        }

        @media (max-width: 1199.98px) {
            .footer-grid {
                grid-template-columns: 1.4fr 1fr 1fr;
            }
            .footer-grid > div:last-child {
                grid-column: span 3;
            }
            .related-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 991.98px) {
            .site-header .navbar {
                min-height: auto;
                margin: 14px 0;
                padding: 0;
            }

            .site-header .navbar-collapse {
                background: #fff;
                border-radius: 16px;
                padding: 14px 14px 18px;
                margin-top: 8px;
                box-shadow: 0 12px 32px rgba(30, 20, 15, .08);
                border: 1px solid var(--border);
            }

            .site-header .navbar-nav {
                gap: 4px;
            }

            .header-actions {
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
                margin-top: 12px;
            }

            .search-box {
                width: 100%;
            }

            .site-header .nav-link.active::after {
                display: none;
            }

            .related-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 767.98px) {
            .article-page {
                padding: 28px 0 48px;
            }
            .article-wrap {
                margin: 0;
            }
            .article-meta {
                gap: 10px 18px;
            }
            .article-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
                content: "›";
            }
            .related-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 34px;
            }
            .footer-grid>div:last-child {
                grid-column: span 1;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 575.98px) {
            .article-page {
                padding: 20px 0 36px;
            }
            .container-xxl {
                padding-left: 16px;
                padding-right: 16px;
            }
            .article-cover {
                aspect-ratio: 16 / 11;
                margin: 20px 0 28px;
            }
            .article-body {
                padding: 20px 16px 28px;
                font-size: 16px;
                line-height: 1.85;
            }
            .article-title {
                font-size: 27px;
            }
            .article-actions {
                flex-direction: column;
                align-items: flex-start;
                gap: 14px;
            }
            .article-breadcrumb .active {
                max-width: 180px;
            }
        }

/* roulang page: category1 */
:root{
    --primary:#EA4B2B;
    --primary-dark:#D13A1F;
    --primary-soft:#FDF0EB;
    --success:#27A36A;
    --ink:#1E1B1A;
    --page-bg:#F7F5F3;
    --surface:#FFFFFF;
    --text:#242120;
    --muted:#6E6763;
    --border:#E7E1DD;
    --disabled:#BFB6B0;
    --radius-sm:10px;
    --radius-md:16px;
    --radius-lg:20px;
    --shadow-card:0 6px 20px rgba(30,20,15,.06);
    --shadow-hover:0 18px 36px rgba(30,20,15,.12);
    --font-family:system-ui,-apple-system,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
  }

  *{box-sizing:border-box}
  html{scroll-behavior:smooth}
  body{
    margin:0;
    font-family:var(--font-family);
    background:var(--page-bg);
    color:var(--text);
    font-size:15px;
    line-height:1.75;
    -webkit-font-smoothing:antialiased;
  }
  a{color:var(--primary);text-decoration:none;transition:color .2s ease}
  a:hover{color:var(--primary-dark);text-decoration:underline}
  img{max-width:100%;vertical-align:middle}
  p{margin:0 0 1rem}

  .site-header{
    background:var(--surface);
    border-bottom:1px solid var(--border);
    box-shadow:0 4px 20px rgba(36,33,32,.05);
    position:sticky;
    top:0;
    z-index:1050;
  }
  .site-header .navbar{
    padding:12px 0;
    min-height:72px;
  }
  .brand-logo{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-weight:800;
    font-size:1.25rem;
    color:var(--text);
    letter-spacing:-.3px;
    text-decoration:none;
    white-space:nowrap;
  }
  .brand-logo:hover{color:var(--text);text-decoration:none}
  .brand-logo .logo-mark{
    width:38px;
    height:38px;
    border-radius:12px;
    display:grid;
    place-items:center;
    background:var(--primary);
    color:#fff;
    flex:0 0 auto;
    box-shadow:0 6px 14px rgba(234,75,43,.28);
  }
  .logo-mark svg{width:22px;height:22px}
  .footer-brand .logo-mark{background:#fff;color:var(--primary);box-shadow:none}

  .navbar-nav{gap:2px}
  .nav-link{
    font-weight:600;
    font-size:15px;
    padding:.55rem .95rem !important;
    border-radius:999px;
    color:var(--text);
    position:relative;
  }
  .nav-link:hover{
    color:var(--primary);
    background:rgba(234,75,43,.07);
    text-decoration:none;
  }
  .nav-link.active{
    color:var(--primary);
    background:rgba(234,75,43,.09);
  }
  .nav-link.active::after{
    content:"";
    position:absolute;
    bottom:-2px;
    left:50%;
    transform:translateX(-50%);
    width:20px;
    height:3px;
    border-radius:999px;
    background:var(--primary);
  }

  .header-actions{
    display:flex;
    align-items:center;
    gap:12px;
  }
  .search-box{
    width:240px;
    height:44px;
    display:flex;
    align-items:center;
    gap:6px;
    background:#F4F1EF;
    border:1px solid var(--border);
    border-radius:999px;
    padding:0 10px 0 16px;
    transition:border-color .2s, box-shadow .2s;
  }
  .search-box:focus-within{
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(234,75,43,.12);
    background:#fff;
  }
  .search-box svg{width:17px;height:17px;color:var(--muted);flex:0 0 auto}
  .search-box input{
    flex:1;
    border:0;
    outline:0;
    background:transparent;
    min-width:0;
    font-size:14px;
    color:var(--text);
    font-family:inherit;
  }
  .search-box input::placeholder{color:#9A918B}
  .btn{font-family:inherit;font-weight:600;border-radius:999px;transition:all .25s ease}
  .btn-lg{padding:.72rem 1.6rem;font-size:16px}
  .btn-brand{
    background:var(--primary);
    border:1px solid var(--primary);
    color:#fff;
    padding:.6rem 1.5rem;
  }
  .btn-brand:hover,.btn-brand:active{
    background:var(--primary-dark);
    border-color:var(--primary-dark);
    color:#fff;
    box-shadow:0 8px 20px rgba(234,75,43,.25);
    transform:translateY(-1px);
  }
  .btn-brand-outline{
    background:transparent;
    border:1.5px solid var(--primary);
    color:var(--primary);
    padding:.6rem 1.5rem;
  }
  .btn-brand-outline:hover{
    background:var(--primary);
    border-color:var(--primary);
    color:#fff;
    text-decoration:none;
  }
  .btn-light{
    background:#fff;
    color:var(--text);
    border:1px solid var(--border);
  }
  .btn-light:hover{
    background:#F4F1EF;
    border-color:#D6CFC8;
    color:var(--text);
  }
  .btn:focus-visible,
  .btn-brand:focus-visible,
  .btn-brand-outline:focus-visible,
  .nav-link:focus-visible{
    outline:2px solid var(--primary);
    outline-offset:2px;
    box-shadow:none;
  }
  .header-cta{
    white-space:nowrap;
    font-size:14px;
    padding:.62rem 1.2rem;
    border-radius:999px;
  }

  .section{
    padding:88px 0;
  }
  .section-head{
    max-width:720px;
    margin-bottom:44px;
  }
  .section-head h2{
    font-size:32px;
    line-height:1.25;
    font-weight:800;
    color:var(--ink);
    letter-spacing:-.5px;
    margin-bottom:10px;
  }
  .section-head p{
    color:var(--muted);
    font-size:16px;
    margin:0;
  }
  .text-accent{color:var(--primary)}
  .text-muted{color:var(--muted)}

  .hero-category{
    position:relative;
    padding:74px 0 96px;
    overflow:hidden;
    background-color:var(--page-bg);
  }
  .hero-category::before{
    content:"";
    position:absolute;
    inset:0 0 0 55%;
    background:url('/assets/images/backpic/back-2.png') center center / cover no-repeat;
    opacity:.22;
    pointer-events:none;
  }
  .hero-category::after{
    content:"";
    position:absolute;
    width:230px;
    height:230px;
    border-radius:50%;
    border:36px solid rgba(234,75,43,.08);
    left:-80px;
    bottom:-80px;
    pointer-events:none;
  }
  .hero-row{
    position:relative;
    display:grid;
    grid-template-columns:minmax(0,1.1fr) minmax(290px,.6fr);
    gap:64px;
    align-items:center;
  }
  .hero-copy{
    max-width:660px;
    z-index:2;
  }
  .hero-copy .hero-kicker{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:var(--surface);
    border:1px solid var(--border);
    box-shadow:0 4px 14px rgba(30,20,15,.04);
    color:var(--muted);
    border-radius:999px;
    padding:.35rem 1rem;
    font-size:13px;
    font-weight:600;
    margin-bottom:28px;
  }
  .hero-copy .hero-kicker svg{width:15px;height:15px;color:var(--success)}
  .hero-copy h1{
    font-size:56px;
    font-weight:900;
    color:var(--ink);
    line-height:1.1;
    letter-spacing:-1px;
    margin:0 0 22px;
  }
  .hero-copy h1 em{
    font-style:normal;
    color:var(--primary);
  }
  .hero-copy .hero-desc{
    font-size:17px;
    line-height:1.85;
    color:var(--muted);
    max-width:560px;
    margin-bottom:36px;
  }
  .hero-btns{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
  }
  .hero-note{
    margin-top:26px;
    display:flex;
    gap:8px;
    align-items:center;
    color:#8A827B;
    font-size:13px;
  }
  .hero-note svg{width:16px;height:16px;color:var(--primary)}

  .hero-visual{
    display:flex;
    justify-content:center;
  }
  .hero-live-card{
    position:relative;
    width:280px;
    aspect-ratio:9/14.6;
    border-radius:22px;
    overflow:hidden;
    background:#20201F;
    box-shadow:0 30px 70px rgba(30,20,15,.22);
    transform:rotate(1.4deg);
  }
  .hero-live-card>img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:.9;
  }
  .hero-card-topbar{
    position:absolute;
    top:14px;
    left:14px;
    right:14px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    z-index:2;
  }
  .hero-card-topbar .live-tag{
    display:inline-flex;
    align-items:center;
    gap:6px;
    background:var(--primary);
    color:#fff;
    font-size:12px;
    font-weight:700;
    padding:.2rem .65rem;
    border-radius:999px;
  }
  .hero-card-topbar .live-tag::before{
    content:"";
    width:6px;
    height:6px;
    border-radius:50%;
    background:#fff;
    animation:blink 1.4s infinite;
  }
  .hero-card-topbar .focus-tag{
    background:rgba(30,27,26,.62);
    backdrop-filter:blur(6px);
    color:#fff;
    font-size:12px;
    font-weight:600;
    padding:.22rem .6rem;
    border-radius:999px;
  }
  .hero-card-body{
    position:absolute;
    left:14px;
    right:14px;
    bottom:14px;
    z-index:2;
    color:#fff;
    background:linear-gradient(180deg,transparent,rgba(20,15,10,.92));
    border-radius:16px;
    padding:54px 14px 14px;
  }
  .hero-card-body .card-title-line{
    font-size:15px;
    font-weight:700;
    margin-bottom:4px;
  }
  .hero-card-body .card-sub-line{
    font-size:12px;
    opacity:.78;
    margin-bottom:12px;
  }
  .hero-progress{
    height:4px;
    background:rgba(255,255,255,.3);
    border-radius:99px;
    overflow:hidden;
    margin-bottom:12px;
  }
  .hero-progress span{
    display:block;
    width:68%;
    height:100%;
    border-radius:99px;
    background:#fff;
  }
  .hero-card-actions{
    display:flex;
    align-items:center;
    gap:14px;
  }
  .hero-card-actions .action-item{
    display:inline-flex;
    align-items:center;
    gap:3px;
    font-size:12px;
    color:#fff;
    opacity:.92;
  }
  .hero-card-actions .action-item svg{width:15px;height:15px}

  @keyframes blink{
    0%,100%{opacity:1}
    50%{opacity:.35}
  }

  .feature-block{
    background:var(--surface);
  }
  .feature-grid{
    display:grid;
    grid-template-columns:minmax(0,1.15fr) minmax(0,.85fr);
    gap:48px;
    align-items:center;
  }
  .benefit-list{
    display:flex;
    flex-direction:column;
    gap:14px;
  }
  .benefit-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    background:var(--page-bg);
    border:1px solid var(--border);
    border-radius:18px;
    padding:22px 22px;
    transition:all .25s ease;
  }
  .benefit-item:hover{
    background:#fff;
    border-color:rgba(234,75,43,.5);
    box-shadow:var(--shadow-card);
    transform:translateY(-2px);
  }
  .benefit-item .benefit-icon{
    flex:0 0 48px;
    width:48px;
    height:48px;
    display:grid;
    place-items:center;
    background:var(--primary-soft);
    color:var(--primary);
    border-radius:14px;
  }
  .benefit-item .benefit-icon svg{width:24px;height:24px}
  .benefit-item h3{
    font-size:17px;
    font-weight:700;
    color:var(--ink);
    margin-bottom:4px;
  }
  .benefit-item p{
    font-size:14px;
    color:var(--muted);
    margin:0;
    line-height:1.7;
  }
  .feature-visual{
    position:relative;
    border-radius:22px;
    overflow:hidden;
    min-height:420px;
    box-shadow:var(--shadow-hover);
    background:#1F1C1A;
  }
  .feature-visual>img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:.72;
  }
  .feature-visual .visual-content{
    position:relative;
    z-index:2;
    padding:30px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    height:100%;
    min-height:420px;
    color:#fff;
  }
  .visual-chip{
    display:inline-flex;
    align-items:center;
    gap:6px;
    background:rgba(255,255,255,.16);
    backdrop-filter:blur(6px);
    padding:.25rem .8rem;
    border-radius:999px;
    font-size:13px;
    align-self:flex-start;
    margin-bottom:14px;
  }
  .visual-chip svg{width:14px;height:14px}
  .visual-content h3{
    font-size:26px;
    font-weight:800;
    letter-spacing:-.3px;
    margin-bottom:12px;
  }
  .visual-content p{
    font-size:14px;
    line-height:1.75;
    opacity:.88;
    margin-bottom:22px;
  }
  .visual-meta{
    display:flex;
    gap:22px;
    padding-top:16px;
    border-top:1px solid rgba(255,255,255,.22);
  }
  .visual-meta span{
    font-size:13px;
    color:#fff;
  }

  .channel-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:24px;
  }
  .channel-card{
    background:var(--surface);
    border-radius:var(--radius-lg);
    overflow:hidden;
    border:1px solid var(--border);
    box-shadow:var(--shadow-card);
    transition:box-shadow .28s,transform .28s;
    height:100%;
    display:flex;
    flex-direction:column;
  }
  .channel-card:hover{
    box-shadow:var(--shadow-hover);
    transform:translateY(-4px);
    border-color:rgba(234,75,43,.35);
  }
  .channel-cover{
    position:relative;
    aspect-ratio:4/3;
    overflow:hidden;
    background:#242120;
  }
  .channel-cover img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .45s ease;
  }
  .channel-card:hover .channel-cover img{
    transform:scale(1.04);
  }
  .channel-cover .channel-type{
    position:absolute;
    left:12px;
    top:12px;
    background:rgba(30,27,26,.58);
    backdrop-filter:blur(5px);
    color:#fff;
    border-radius:999px;
    padding:.15rem .6rem;
    font-size:12px;
  }
  .channel-card-body{
    padding:20px 20px 18px;
    flex:1;
    display:flex;
    flex-direction:column;
  }
  .channel-card-body h3{
    font-size:18px;
    font-weight:700;
    margin-bottom:8px;
    color:var(--ink);
    letter-spacing:-.2px;
  }
  .channel-card-body p{
    font-size:14px;
    color:var(--muted);
    line-height:1.7;
    flex:1;
    margin:0 0 16px;
  }
  .card-link{
    display:inline-flex;
    align-items:center;
    gap:5px;
    font-weight:600;
    font-size:14px;
    color:var(--primary);
  }
  .card-link:hover{text-decoration:none;color:var(--primary-dark)}
  .card-link svg{width:15px;height:15px;transition:transform .2s}
  .channel-card:hover .card-link svg{transform:translateX(3px)}

  .stats-band{
    position:relative;
    padding:78px 0;
    color:#fff;
    background:url('/assets/images/backpic/back-3.webp') center center / cover no-repeat;
    overflow:hidden;
  }
  .stats-band::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(95deg,rgba(30,27,26,.92),rgba(44,33,29,.88));
  }
  .stats-band .section-head h2{color:#fff}
  .stats-band .section-head p{color:rgba(255,255,255,.66)}
  .stats-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:24px;
  }
  .stat-card{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.14);
    border-radius:18px;
    padding:30px 26px;
    backdrop-filter:blur(8px);
    transition:background .25s;
  }
  .stat-card:hover{
    background:rgba(255,255,255,.13);
  }
  .stat-card .stat-big{
    display:block;
    font-size:30px;
    font-weight:900;
    color:var(--primary);
    color:#FF7B5E;
    margin-bottom:6px;
    letter-spacing:-.5px;
  }
  .stat-card .stat-label{
    font-weight:700;
    font-size:16px;
    margin-bottom:4px;
  }
  .stat-card .stat-text{
    font-size:13px;
    opacity:.75;
    margin:0;
    line-height:1.7;
  }

  .quote-section{
    background:var(--page-bg);
  }
  .quote-card{
    background:var(--surface);
    border-radius:20px;
    border:1px solid var(--border);
    box-shadow:var(--shadow-card);
    padding:22px 22px 18px;
    height:100%;
    transition:transform .25s,box-shadow .25s;
  }
  .quote-card:hover{
    box-shadow:var(--shadow-hover);
    transform:translateY(-3px);
  }
  .rating{
    color:#FFAD33;
    letter-spacing:2px;
    font-size:16px;
    margin-bottom:10px;
    display:block;
  }
  .quote-text{
    font-size:14px;
    line-height:1.8;
    color:var(--text);
    margin-bottom:18px;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }
  .quote-author{
    display:flex;
    align-items:center;
    gap:10px;
    padding-top:14px;
    border-top:1px solid var(--border);
  }
  .quote-avatar{
    width:36px;
    height:36px;
    border-radius:50%;
    background:var(--primary-soft);
    color:var(--primary);
    display:grid;
    place-items:center;
    font-size:13px;
    font-weight:800;
  }
  .quote-author .author-name{
    font-size:14px;
    font-weight:700;
    color:var(--text);
  }
  .quote-author .author-meta{
    font-size:12px;
    color:#948B84;
  }

  .faq-section{
    background:var(--surface);
  }
  .faq-wrap{
    max-width:880px;
    margin:0 auto;
  }
  .accordion-item{
    border:1px solid var(--border) !important;
    border-radius:16px !important;
    overflow:hidden;
    margin-bottom:14px;
    background:var(--surface);
  }
  .accordion-button{
    background:var(--surface);
    color:var(--text);
    font-weight:700;
    font-size:17px;
    padding:1.1rem 1.4rem;
    font-family:inherit;
    box-shadow:none !important;
  }
  .accordion-button:not(.collapsed){
    background:var(--primary-soft);
    color:var(--primary-dark);
  }
  .accordion-button:focus{
    box-shadow:0 0 0 4px rgba(234,75,43,.14) !important;
  }
  .accordion-button::after{
    background-size:1rem;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23242120' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 3v10M3 8h10'/%3E%3C/svg%3E");
  }
  .accordion-button:not(.collapsed)::after{
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23D13A1F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8h10'/%3E%3C/svg%3E");
    transform:rotate(0deg);
  }
  .accordion-body{
    color:var(--muted);
    padding:1.1rem 1.4rem 1.4rem;
    border-top:1px solid var(--border);
    font-size:15px;
    line-height:1.8;
  }

  .bottom-cta{
    padding:72px 0;
  }
  .cta-inner{
    position:relative;
    border-radius:26px;
    overflow:hidden;
    background:#1F1B19;
    padding:58px 44px;
    box-shadow:var(--shadow-hover);
  }
  .cta-inner::before{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:300px;
    height:300px;
    background:radial-gradient(circle,rgba(234,75,43,.5),transparent 70%);
    opacity:.55;
  }
  .cta-inner::after{
    content:"";
    position:absolute;
    bottom:-120px;
    left:-80px;
    width:240px;
    height:240px;
    border-radius:50%;
    border:56px solid rgba(255,255,255,.06);
    pointer-events:none;
  }
  .cta-row{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
  }
  .cta-copy h2{
    font-size:32px;
    line-height:1.32;
    color:#fff;
    margin-bottom:10px;
    font-weight:800;
    letter-spacing:-.5px;
  }
  .cta-copy p{
    color:rgba(255,255,255,.72);
    max-width:560px;
    margin:0;
  }
  .cta-buttons{
    display:flex;
    gap:14px;
    flex:0 0 auto;
    flex-wrap:wrap;
  }
  .btn-white{
    background:#fff;
    border:1px solid #fff;
    color:var(--primary);
    font-weight:700;
    border-radius:999px;
    padding:.7rem 1.6rem;
  }
  .btn-white:hover{
    background:#ffe9e2;
    border-color:#fff;
    color:var(--primary-dark);
    box-shadow:0 10px 24px rgba(255,255,255,.18);
    transform:translateY(-1px);
  }
  .btn-white-line{
    border:1.5px solid rgba(255,255,255,.75);
    color:#fff;
    padding:.7rem 1.6rem;
    border-radius:999px;
    font-weight:600;
    background:transparent;
  }
  .btn-white-line:hover{
    background:#fff;
    color:var(--ink);
    border-color:#fff;
    text-decoration:none;
  }

  .site-footer{
    background:#191615;
    color:#AAA19B;
    padding:62px 0 0;
  }
  .footer-grid{
    display:grid;
    grid-template-columns:1.2fr .9fr .9fr 1fr;
    gap:38px;
    padding-bottom:38px;
    border-bottom:1px solid rgba(255,255,255,.09);
  }
  .footer-brand{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-size:1.15rem;
    font-weight:800;
    color:#fff;
    margin-bottom:14px;
  }
  .footer-brand:hover{
    color:#fff;
    text-decoration:none;
  }
  .footer-desc{
    font-size:14px;
    line-height:1.8;
    margin:0;
    max-width:300px;
    color:#948C86;
  }
  .footer-col-title{
    color:#fff;
    font-weight:700;
    font-size:16px;
    margin-bottom:16px;
  }
  .footer-links{
    list-style:none;
    padding:0;
    margin:0;
  }
  .footer-links li{
    margin-bottom:10px;
  }
  .footer-links a{
    color:#AAA19B;
    font-size:14px;
    transition:color .2s;
  }
  .footer-links a:hover{
    color:var(--primary);
    text-decoration:none;
  }
  .footer-contact p{
    display:flex;
    align-items:flex-start;
    gap:8px;
    font-size:14px;
    margin-bottom:10px;
    color:#AAA19B;
    line-height:1.65;
  }
  .footer-contact svg{
    width:17px;
    height:17px;
    flex:0 0 auto;
    margin-top:3px;
    color:var(--primary);
  }
  .footer-bottom{
    padding:20px 0;
    display:flex;
    justify-content:space-between;
    gap:10px;
    font-size:13px;
    color:#7F776F;
    flex-wrap:wrap;
  }
  .footer-bottom p{margin:0}

  @media (max-width:1199px){
    .hero-copy h1{font-size:48px}
    .channel-grid{
      grid-template-columns:repeat(3,minmax(0,1fr));
    }
  }
  @media (max-width:991px){
    .section{padding:70px 0}
    .hero-copy h1{font-size:42px}
    .hero-row{
      grid-template-columns:1fr;
      gap:38px;
    }
    .hero-visual{
      order:-1;
    }
    .hero-live-card{
      width:210px;
      aspect-ratio:9/14;
    }
    .feature-grid{
      grid-template-columns:1fr;
    }
    .feature-visual{
      min-height:360px;
    }
    .feature-visual .visual-content{
      min-height:360px;
    }
    .channel-grid{
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:16px;
    }
    .cta-row{
      flex-direction:column;
      align-items:flex-start;
    }
    .footer-grid{
      grid-template-columns:1fr 1fr;
    }
    .navbar-collapse{
      padding:18px 0 8px;
    }
    .header-actions{
      flex-direction:column;
      align-items:stretch;
      width:100%;
      margin-top:14px;
      gap:10px;
    }
    .search-box{
      width:100%;
    }
    .header-cta{
      text-align:center;
    }
  }
  @media (max-width:767px){
    .section{padding:52px 0}
    .section-head h2{font-size:26px}
    .hero-category::before{inset:0}
    .hero-copy h1{
      font-size:36px;
    }
    .hero-btns .btn{
      width:100%;
    }
    .stats-grid{
      grid-template-columns:1fr;
    }
    .channel-grid{
      grid-template-columns:1fr;
    }
    .quote-card{
      margin-bottom:14px;
    }
    .cta-inner{
      padding:34px 24px;
    }
    .cta-copy h2{
      font-size:26px;
    }
    .cta-buttons .btn{
      width:100%;
    }
    .footer-grid{
      grid-template-columns:1fr;
      gap:26px;
    }
    .footer-bottom{
      flex-direction:column;
    }
    .nav-link.active::after{
      display:none;
    }
    .footer-brand .logo-mark{
      width:34px;
      height:34px;
    }
    .brand-logo .logo-mark{
      width:34px;
      height:34px;
    }
  }

/* roulang page: category2 */
:root {
            --jx-primary: #EA4B2B;
            --jx-primary-dark: #D13A1F;
            --jx-primary-soft: #FFF0EC;
            --jx-green: #27A36A;
            --jx-bg: #F7F5F3;
            --jx-surface: #FFFFFF;
            --jx-ink: #242120;
            --jx-heading: #1E1B1A;
            --jx-muted: #6E6763;
            --jx-border: #E7E1DD;
            --jx-light: #F0EAE7;
            --jx-disabled: #BFB6B0;
            --jx-font: system-ui, -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
            --jx-radius-sm: 10px;
            --jx-radius-md: 16px;
            --jx-radius-lg: 20px;
            --jx-shadow-sm: 0 6px 20px rgba(30, 20, 15, 0.06);
            --jx-shadow-lg: 0 18px 36px rgba(30, 20, 15, 0.12);
            --jx-nav-height: 72px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            background: var(--jx-bg);
            color: var(--jx-ink);
            font-family: var(--jx-font);
            font-size: 15px;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            margin: 0 0 10px 0;
            color: var(--jx-heading);
            font-weight: 700;
            letter-spacing: -0.3px;
            line-height: 1.3;
        }

        p {
            margin: 0 0 14px 0;
        }

        a {
            color: var(--jx-primary);
            text-decoration: none;
            transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
        }

        a:hover {
            color: var(--jx-primary-dark);
        }

        img {
            max-width: 100%;
            display: block;
        }

        ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        button,
        input {
            font-family: inherit;
        }

        :where(a, button, input, [tabindex]):focus-visible {
            outline: 3px solid rgba(234, 75, 43, 0.35);
            outline-offset: 2px;
            box-shadow: none;
        }

        .container-xxl {
            max-width: 1320px;
        }

        .section {
            padding: 88px 0;
        }

        .section-heading {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 38px;
        }

        .section-heading h2 {
            font-size: clamp(30px, 4vw, 40px);
            letter-spacing: -0.6px;
            margin-bottom: 0;
        }

        .heading-center {
            justify-content: center;
            text-align: center;
            flex-direction: column;
            align-items: center;
        }

        .heading-center .section-note {
            max-width: 620px;
        }

        .section-note {
            color: var(--jx-muted);
            max-width: 560px;
            font-size: 15px;
            margin: 0;
        }

        .section-tag {
            color: var(--jx-primary);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
            margin: 0 0 10px 0;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .section-tag::before {
            content: "";
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--jx-primary);
        }

        .btn-brand {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--jx-primary);
            color: #fff;
            border: 1px solid var(--jx-primary);
            border-radius: 999px;
            font-weight: 600;
            font-size: 15px;
            line-height: 1;
            padding: 13px 22px;
            min-height: 46px;
            transition: all 0.2s ease;
        }

        .btn-brand:hover {
            background: var(--jx-primary-dark);
            border-color: var(--jx-primary-dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 10px 22px rgba(234, 75, 43, 0.24);
        }

        .btn-brand:active {
            transform: translateY(0);
            box-shadow: none;
        }

        .btn-outline-white {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 999px;
            font-weight: 600;
            font-size: 15px;
            line-height: 1;
            padding: 13px 22px;
            min-height: 46px;
            transition: all 0.2s ease;
        }

        .btn-outline-white:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: #fff;
            color: #fff;
            transform: translateY(-2px);
        }

        .btn-outline-white:active {
            transform: translateY(0);
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background: rgba(255, 255, 255, 0.94);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--jx-border);
            box-shadow: 0 4px 18px rgba(30, 20, 15, 0.04);
        }

        .site-header .navbar {
            min-height: var(--jx-nav-height);
            padding-top: 10px;
            padding-bottom: 10px;
            flex-wrap: nowrap;
        }

        .brand-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 18px;
            font-weight: 700;
            line-height: 1.2;
            color: var(--jx-heading);
            white-space: nowrap;
            margin-right: 16px;
        }

        .brand-logo:hover {
            color: var(--jx-heading);
        }

        .logo-mark {
            width: 38px;
            height: 38px;
            border-radius: 12px;
            background: var(--jx-primary-soft);
            color: var(--jx-primary);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
        }

        .logo-mark svg {
            width: 22px;
            height: 22px;
        }

        .navbar-nav {
            gap: 2px;
        }

        .navbar-nav .nav-link {
            color: #4C4743;
            font-weight: 500;
            font-size: 15px;
            padding: 10px 2px;
            margin: 0 14px;
            border-radius: 0;
            position: relative;
        }

        .navbar-nav .nav-link:hover {
            color: var(--jx-primary);
        }

        .navbar-nav .nav-link.active {
            color: var(--jx-primary);
            font-weight: 600;
        }

        .navbar-nav .nav-link.active::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 2px;
            width: 22px;
            height: 3px;
            margin-left: -11px;
            border-radius: 999px;
            background: var(--jx-primary);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .search-box {
            display: flex;
            align-items: center;
            background: #F3EFEB;
            border: 1px solid transparent;
            border-radius: 999px;
            padding: 0 14px;
            height: 42px;
            width: 220px;
            transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }

        .search-box:focus-within {
            border-color: var(--jx-primary);
            box-shadow: 0 0 0 3px rgba(234, 75, 43, 0.16);
            background: #fff;
        }

        .search-box svg {
            width: 17px;
            height: 17px;
            color: var(--jx-muted);
            margin-right: 9px;
            flex: 0 0 auto;
        }

        .search-box input {
            border: 0;
            background: transparent;
            flex: 1;
            min-width: 0;
            color: var(--jx-ink);
            font-size: 14px;
            height: 100%;
            outline: none;
            padding: 0;
        }

        .search-box input::placeholder {
            color: #9A928D;
        }

        .header-cta {
            font-size: 14px;
            padding: 11px 20px;
            min-height: 42px;
        }

        .navbar-toggler {
            border: none;
            padding: 8px;
            width: 44px;
            height: 44px;
            display: inline-flex;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            background: transparent;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .toggler-bar {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--jx-heading);
            border-radius: 2px;
            margin: 0 auto;
            transition: 0.2s;
        }

        /* Hero */
        .cat-hero-highlights {
            position: relative;
            min-height: 600px;
            padding: 72px 0;
            display: flex;
            align-items: center;
            background: linear-gradient(0deg, rgba(24, 16, 12, 0.72), rgba(24, 16, 12, 0.62)), url('/assets/images/backpic/back-2.png') no-repeat center center / cover;
            color: #fff;
            isolation: isolate;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .cat-hero-highlights::before {
            content: "";
            position: absolute;
            width: 240px;
            height: 240px;
            right: -80px;
            top: 30px;
            border-radius: 50%;
            background: rgba(234, 75, 43, 0.22);
            filter: blur(10px);
            z-index: -1;
        }

        .cat-hero-highlights .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(255, 255, 255, 0.28);
            background: rgba(255, 255, 255, 0.08);
            color: #FFD9CF;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 600;
            padding: 7px 15px;
            margin-bottom: 24px;
        }

        .cat-hero-highlights h1 {
            color: #fff;
            font-size: clamp(48px, 7vw, 82px);
            line-height: 1.06;
            letter-spacing: -1.6px;
            margin-bottom: 18px;
        }

        .hero-summary {
            color: rgba(255, 255, 255, 0.85);
            font-size: 18px;
            line-height: 1.8;
            max-width: 520px;
            margin-bottom: 30px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 28px;
        }

        .hero-trust {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
        }

        .hero-trust span {
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }

        .hero-trust svg {
            width: 15px;
            height: 15px;
            color: #FFB39F;
        }

        .highlight-preview {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 24px;
            padding: 12px;
            box-shadow: 0 40px 90px rgba(0, 0, 0, 0.4);
            max-width: 560px;
            margin-left: auto;
            transform: rotate(0.6deg);
        }

        .preview-media {
            position: relative;
            border-radius: 18px;
            overflow: hidden;
        }

        .preview-media img {
            width: 100%;
            height: auto;
            aspect-ratio: 16 / 9;
            object-fit: cover;
        }

        .preview-media::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(0, 0, 0, 0.22), transparent 45%);
        }

        .preview-tag {
            position: absolute;
            left: 14px;
            top: 14px;
            z-index: 2;
            background: var(--jx-primary);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 999px;
            letter-spacing: 0.4px;
        }

        .preview-play {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.92);
            color: var(--jx-primary);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.26);
        }

        .preview-play svg {
            width: 26px;
            height: 26px;
            margin-left: 3px;
        }

        .preview-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 14px 8px 4px 8px;
        }

        .preview-footer p {
            color: #fff;
            font-weight: 600;
            margin-bottom: 4px;
            font-size: 15px;
        }

        .preview-footer span {
            color: rgba(255, 255, 255, 0.62);
            font-size: 13px;
        }

        .score-num {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.16);
            color: #fff;
            border-radius: 12px;
            font-weight: 700;
            font-size: 20px;
            padding: 6px 12px;
            text-align: center;
            font-variant-numeric: tabular-nums;
            white-space: nowrap;
        }

        /* Clip Gallery */
        .clip-gallery-section {
            background: var(--jx-bg);
        }

        .filter-strip {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 32px;
        }

        .filter-title {
            color: var(--jx-muted);
            font-size: 13px;
            font-weight: 600;
        }

        .filter-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .filter-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 40px;
            padding: 0 18px;
            border-radius: 999px;
            border: 1px solid var(--jx-border);
            background: #fff;
            color: #514B47;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .filter-pill:hover {
            color: var(--jx-primary);
            border-color: var(--jx-primary);
            transform: translateY(-2px);
        }

        .filter-pill.active {
            background: var(--jx-heading);
            border-color: var(--jx-heading);
            color: #fff;
            font-weight: 600;
        }

        .clip-card {
            background: var(--jx-surface);
            border: 1px solid var(--jx-border);
            border-radius: var(--jx-radius-lg);
            overflow: hidden;
            box-shadow: var(--jx-shadow-sm);
            transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .clip-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--jx-shadow-lg);
            border-color: rgba(234, 75, 43, 0.35);
        }

        .clip-media {
            position: relative;
            aspect-ratio: 4 / 3;
            overflow: hidden;
        }

        .clip-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .clip-card:hover .clip-media img {
            transform: scale(1.04);
        }

        .clip-time {
            position: absolute;
            right: 12px;
            bottom: 12px;
            z-index: 2;
            background: rgba(0, 0, 0, 0.78);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            border-radius: 6px;
            padding: 4px 8px;
            letter-spacing: 0.2px;
            line-height: 1.3;
        }

        .clip-tag {
            position: absolute;
            left: 12px;
            top: 12px;
            z-index: 2;
            background: rgba(255, 255, 255, 0.92);
            color: var(--jx-heading);
            font-size: 12px;
            font-weight: 600;
            border-radius: 6px;
            padding: 4px 10px;
        }

        .clip-play {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%) scale(0.85);
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.92);
            color: var(--jx-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            opacity: 0;
            transition: all 0.25s ease;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
        }

        .clip-play svg {
            width: 21px;
            height: 21px;
            margin-left: 2px;
        }

        .clip-card:hover .clip-play {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        .clip-content {
            padding: 18px 18px 20px 18px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            flex: 1;
        }

        .clip-content h3 {
            font-size: 16px;
            line-height: 1.45;
            margin-bottom: 0;
            letter-spacing: -0.2px;
        }

        .clip-content h3 a {
            color: var(--jx-heading);
        }

        .clip-content h3 a:hover {
            color: var(--jx-primary);
        }

        .clip-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid var(--jx-border);
            padding-top: 13px;
            margin-top: auto;
            color: var(--jx-muted);
            font-size: 13px;
        }

        .clip-meta span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .clip-meta svg {
            width: 14px;
            height: 14px;
        }

        /* Value section */
        .value-section {
            background: #fff;
        }

        .value-media {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--jx-shadow-lg);
            background: var(--jx-light);
            max-height: 580px;
        }

        .value-media img {
            width: 100%;
            height: 100%;
            min-height: 380px;
            object-fit: cover;
        }

        .value-media::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(18, 12, 9, 0.55), transparent 55%);
        }

        .value-note {
            position: absolute;
            left: 22px;
            right: 22px;
            bottom: 20px;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            background: rgba(255, 255, 255, 0.94);
            border-radius: 16px;
            padding: 14px 16px;
            box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
        }

        .value-note strong {
            color: var(--jx-heading);
            font-size: 14px;
            display: block;
            margin-bottom: 3px;
        }

        .value-note span {
            color: var(--jx-muted);
            font-size: 13px;
        }

        .value-section .section-heading {
            align-items: flex-start;
            margin-bottom: 26px;
        }

        .value-section .section-note {
            margin-bottom: 24px;
        }

        .value-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 30px;
        }

        .value-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            background: #FBF9F8;
            border: 1px solid var(--jx-border);
            border-radius: 16px;
            padding: 16px 18px;
            transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
        }

        .value-list li:hover {
            border-color: rgba(234, 75, 43, 0.32);
            background: #FFF8F5;
            transform: translateX(4px);
        }

        .value-icon {
            width: 42px;
            height: 42px;
            border-radius: 13px;
            background: var(--jx-primary-soft);
            color: var(--jx-primary);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
        }

        .value-icon svg {
            width: 21px;
            height: 21px;
        }

        .value-list strong {
            display: block;
            font-size: 16px;
            color: var(--jx-heading);
            margin-bottom: 5px;
        }

        .value-list p {
            margin: 0;
            color: var(--jx-muted);
            font-size: 14px;
            line-height: 1.7;
        }

        /* Process */
        .process-section {
            background: var(--jx-bg);
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .process-card {
            background: #fff;
            border: 1px solid var(--jx-border);
            border-radius: 20px;
            padding: 30px 26px 28px 26px;
            position: relative;
            box-shadow: var(--jx-shadow-sm);
            transition: all 0.26s ease;
            min-height: 220px;
        }

        .process-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--jx-shadow-lg);
        }

        .process-number {
            font-size: 40px;
            font-weight: 800;
            line-height: 1;
            color: rgba(234, 75, 43, 0.13);
            display: block;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .process-card h3 {
            font-size: 19px;
            margin-bottom: 10px;
        }

        .process-card p {
            color: var(--jx-muted);
            margin: 0;
            font-size: 15px;
            line-height: 1.75;
        }

        /* FAQ */
        .faq-section {
            background: #fff;
        }

        .faq-wrap {
            max-width: 880px;
            margin: 0 auto;
        }

        .accordion-item {
            border: 1px solid var(--jx-border);
            border-radius: 16px !important;
            margin-bottom: 16px;
            background: #fff;
            overflow: hidden;
        }

        .accordion-button {
            background: #fff;
            color: var(--jx-heading);
            font-weight: 600;
            font-size: 16px;
            padding: 19px 22px;
            box-shadow: none;
            border: 0;
        }

        .accordion-button:not(.collapsed) {
            background: var(--jx-primary-soft);
            color: var(--jx-primary-dark);
            box-shadow: none;
        }

        .accordion-button:focus {
            box-shadow: 0 0 0 4px rgba(234, 75, 43, 0.16);
            border-radius: 16px;
        }

        .accordion-button::after {
            background-size: 18px;
        }

        .accordion-button:not(.collapsed)::after {
            filter: brightness(0) saturate(100%) invert(20%) sepia(40%) saturate(2600%) hue-rotate(350deg) brightness(0.92);
        }

        .accordion-body {
            color: var(--jx-muted);
            font-size: 15px;
            line-height: 1.8;
            padding: 6px 22px 22px 22px;
            border-top: 1px solid var(--jx-border);
        }

        .accordion-body p {
            margin: 0;
        }

        /* CTA */
        .cta-area {
            padding-top: 0;
            background: var(--jx-bg);
        }

        .cta-area .container-xxl {
            padding-top: 24px;
            padding-bottom: 24px;
        }

        .final-cta {
            position: relative;
            border-radius: 28px;
            overflow: hidden;
            padding: 72px 40px;
            text-align: center;
            background: linear-gradient(0deg, rgba(24, 17, 13, 0.82), rgba(24, 17, 13, 0.75)), url('/assets/images/backpic/back-3.webp') no-repeat center center / cover;
            color: #fff;
            isolation: isolate;
        }

        .final-cta::before {
            content: "";
            position: absolute;
            width: 340px;
            height: 340px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.18);
            left: -100px;
            bottom: -120px;
            z-index: -1;
        }

        .final-cta::after {
            content: "";
            position: absolute;
            width: 340px;
            height: 340px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.12);
            right: -90px;
            top: -130px;
            z-index: -1;
        }

        .final-cta h2 {
            color: #fff;
            font-size: clamp(30px, 5vw, 44px);
            letter-spacing: -0.8px;
            margin-bottom: 16px;
        }

        .final-cta p {
            max-width: 580px;
            margin: 0 auto 30px auto;
            color: rgba(255, 255, 255, 0.76);
            font-size: 16px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 14px;
        }

        /* Footer */
        .site-footer {
            background: #1E1B1A;
            color: #B9B0AB;
            font-size: 14px;
            padding-top: 64px;
        }

        .site-footer a {
            color: #B9B0AB;
        }

        .site-footer a:hover {
            color: #fff;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1.1fr 1.4fr;
            gap: 44px;
            padding-bottom: 48px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 14px;
        }

        .footer-brand:hover {
            color: #fff;
        }

        .footer-brand .logo-mark {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
        }

        .footer-desc {
            color: #948A85;
            line-height: 1.8;
            margin-top: 12px;
            max-width: 300px;
            font-size: 14px;
        }

        .footer-col-title {
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            margin-bottom: 16px;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            font-size: 14px;
            line-height: 1.6;
            display: inline-flex;
        }

        .footer-links a:hover {
            color: #fff;
            text-decoration: underline;
        }

        .footer-contact p {
            display: flex;
            align-items: flex-start;
            gap: 9px;
            margin-bottom: 12px;
            color: #A69C97;
            line-height: 1.6;
        }

        .footer-contact svg {
            width: 16px;
            height: 16px;
            flex: 0 0 auto;
            margin-top: 4px;
            color: #E48A74;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            padding: 22px 0;
            color: #857C77;
            font-size: 13px;
        }

        .footer-bottom p {
            margin: 0;
        }

        @media (max-width: 1199.98px) {
            .process-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 18px;
            }

            .footer-grid {
                grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
                gap: 34px;
            }
        }

        @media (max-width: 991.98px) {
            .section {
                padding: 64px 0;
            }

            .navbar-collapse {
                background: #fff;
                border-top: 1px solid var(--jx-border);
                margin-top: 10px;
                padding: 18px 0 10px 0;
                border-radius: 18px;
                box-shadow: 0 24px 40px rgba(30, 20, 15, 0.08);
            }

            .navbar-nav {
                gap: 0;
            }

            .navbar-nav .nav-link {
                margin: 0;
                padding: 10px 16px;
            }

            .header-actions {
                padding: 8px 16px 14px 16px;
                flex-direction: column;
                align-items: stretch;
            }

            .search-box,
            .header-cta {
                width: 100%;
            }

            .header-cta {
                justify-content: center;
            }

            .cat-hero-highlights {
                min-height: auto;
                padding: 60px 0;
            }

            .highlight-preview {
                margin: 36px 0 0 0;
                max-width: 520px;
            }

            .process-grid {
                grid-template-columns: 1fr 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 767.98px) {
            .section {
                padding: 48px 0;
            }

            .section-heading {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
                margin-bottom: 28px;
            }

            .cat-hero-highlights {
                padding: 46px 0;
            }

            .cat-hero-highlights h1 {
                font-size: 42px;
            }

            .hero-summary {
                font-size: 16px;
            }

            .hero-actions .btn-brand,
            .hero-actions .btn-outline-white {
                width: 100%;
            }

            .hero-trust {
                flex-direction: column;
                gap: 10px;
            }

            .clip-media {
                aspect-ratio: 3 / 2;
            }

            .value-list li {
                padding: 14px;
            }

            .value-person-img {
                min-height: 320px;
            }

            .process-grid {
                grid-template-columns: 1fr;
            }

            .process-card {
                min-height: 0;
                padding: 24px 22px;
            }

            .final-cta {
                padding: 52px 22px;
                border-radius: 20px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                padding-bottom: 30px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        }

        @media (max-width: 575.98px) {
            .brand-logo {
                font-size: 16px;
            }

            .logo-mark {
                width: 34px;
                height: 34px;
                border-radius: 10px;
            }

            .logo-mark svg {
                width: 19px;
                height: 19px;
            }

            .search-box {
                height: 44px;
                width: 100%;
            }

            .footer-brand,
            .footer-desc {
                text-align: center;
                margin-left: auto;
                margin-right: auto;
            }

            .footer-brand {
                justify-content: center;
                width: 100%;
            }
        }
