/* roulang page: index */
/* ============ Design Tokens ============ */
:root {
  --bg: #F6F0E9;
  --surface: #FFFDF9;
  --surface-2: #EFE7DE;
  --ink: #26211B;
  --muted: #76675C;
  --line: #E1D5C9;
  --brand: #B45728;
  --brand-deep: #99401B;
  --leaf: #66704B;
  --dark: #1C1712;
  --dark-soft: #2C241D;
  --white: #FFFDF9;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 28px rgba(38, 33, 27, .05);
  --shadow-lg: 0 18px 46px rgba(38, 33, 27, .09);
  --sidebar-w: 280px;
  --space-section: clamp(62px, 8vw, 108px);
  --font-sans: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ============ Base / Reset ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; color: inherit; font-family: inherit; }
i { font-style: normal; }
::selection { background: rgba(180, 87, 40, .16); }

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(180, 87, 40, .45);
  outline-offset: 3px;
  border-radius: 8px;
}

/* ============ Sidebar / App Shell ============ */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  z-index: 80;
  background: var(--dark);
  color: #EDE4DB;
  display: flex;
  flex-direction: column;
  padding: 30px 18px 26px;
  overflow-y: auto;
  transition: transform .35s ease;
}
.sidebar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 12px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 13px;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .5px;
  box-shadow: 0 8px 20px rgba(180, 87, 40, .28);
}
.brand-name {
  font-size: 23px;
  font-weight: 900;
  letter-spacing: .02em;
  color: #F7EEE7;
  white-space: nowrap;
}
.sidebar-close {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: rgba(255, 255, 255, .7);
  font-size: 20px;
}
.sidebar-close:hover {
  background: rgba(255, 255, 255, .08);
  color: #fff;
}
.side-label {
  padding: 26px 14px 10px;
  font-size: 12px;
  letter-spacing: .18em;
  color: rgba(237, 228, 219, .45);
  text-transform: uppercase;
}
.side-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.side-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 15px;
  border-radius: 13px;
  color: rgba(237, 228, 219, .66);
  font-size: 16px;
  font-weight: 500;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.side-nav a i {
  width: 20px;
  text-align: center;
  font-size: 16px;
  opacity: .85;
}
.side-nav a:hover {
  background: rgba(255, 255, 255, .06);
  color: #fff;
  transform: translateX(4px);
}
.side-nav a.active {
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(180, 87, 40, .26);
}
.side-status {
  margin-top: auto;
  padding: 20px 14px 0;
}
.side-status-inner {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 18px;
  font-size: 13px;
  color: rgba(237, 228, 219, .52);
  line-height: 1.7;
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #93A56C;
  margin-right: 8px;
  box-shadow: 0 0 0 0 rgba(147, 165, 108, .5);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(147, 165, 108, .4); }
  50% { box-shadow: 0 0 0 7px rgba(147, 165, 108, 0); }
}
.side-status strong {
  color: #EFE3DA;
  font-weight: 600;
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 11, 8, .45);
  backdrop-filter: blur(2px);
  z-index: 70;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.sidebar-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* ============ Mobile Topbar ============ */
.mobile-topbar {
  display: none;
  position: sticky;
  top: 0;
  z-index: 65;
  background: var(--dark);
  color: #fff;
  padding: 12px 18px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.menu-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  background: rgba(255, 255, 255, .06);
}
.menu-btn:active { background: rgba(255, 255, 255, .12); }
.mobile-brand {
  font-weight: 800;
  font-size: 19px;
  color: #F7EEE7;
}
.mobile-link {
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .06);
  padding: 7px 16px;
  border-radius: 999px;
  color: #F1E5DC;
  transition: background .2s, border-color .2s;
}
.mobile-link:hover {
  background: var(--brand);
  border-color: var(--brand);
}

/* ============ Main Shell ============ */
.main-shell {
  margin-left: var(--sidebar-w);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 27px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .28s ease;
  white-space: nowrap;
}
.btn i { font-size: 14px; transition: transform .25s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(180, 87, 40, .18);
}
.btn-primary:hover { background: var(--brand-deep); box-shadow: 0 14px 30px rgba(180, 87, 40, .26); }
.btn-primary:hover i { transform: translateX(4px); }
.btn-ghost {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-color: rgba(255, 255, 255, .58);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .14); border-color: #fff; }
.btn-dark {
  background: var(--dark);
  color: #fff;
}
.btn-dark:hover { background: #000; }
.btn-dark:hover i { transform: translateX(4px); }
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
}

/* ============ Content helpers ============ */
.content-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: clamp(20px, 3.2vw, 44px);
  padding-right: clamp(20px, 3.2vw, 44px);
}
.tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand);
}
.section {
  padding: var(--space-section) 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.section-head {
  max-width: 760px;
  margin-bottom: clamp(26px, 4vw, 48px);
}
.section-head h2 {
  margin: .35em 0 .25em;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.22;
  letter-spacing: -.02em;
  color: var(--ink);
  font-weight: 850;
}
.section-head p {
  color: var(--muted);
  font-size: 17px;
  max-width: 720px;
}
.section-head.invert { color: #F2E9E1; }
.section-head.invert h2 { color: #F9F2ED; }
.section-head.invert p { color: rgba(237, 228, 219, .66); }

/* ============ Site Hero ============ */
.hero-zone {
  padding: clamp(22px, 2.6vw, 44px) clamp(20px, 2.6vw, 44px) 0;
}
.hero-card {
  position: relative;
  overflow: hidden;
  max-width: 1360px;
  margin: 0 auto;
  min-height: clamp(430px, 68vh, 660px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/backpic/back-1.jpg');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(28, 23, 18, .92) 8%, rgba(28, 23, 18, .68) 54%, rgba(28, 23, 18, .25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: clamp(36px, 6vw, 72px);
}
.hero-card h1 {
  color: #fff;
  font-size: clamp(34px, 5.4vw, 64px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -.02em;
  margin-top: 24px;
  max-width: 760px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  color: #F4E6DC;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  padding: 7px 16px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.hero-sub {
  color: rgba(255, 255, 255, .86);
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.75;
  max-width: 640px;
  margin: 24px 0 34px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.hero-trust {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  color: rgba(255, 255, 255, .68);
  font-size: 13.5px;
}
.hero-trust i {
  color: #F0D8C7;
  margin-right: 7px;
}

/* ============ Tags Strip ============ */
.tags-strip {
  padding: 24px clamp(20px, 3.2vw, 44px) 12px;
  background: var(--bg);
}
.tags-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 14px 28px;
  max-width: 1120px;
  margin: 0 auto;
  font-size: 14px;
  color: var(--muted);
}
.tags-label {
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .04em;
}
.tag-pill {
  background: var(--surface-2);
  color: var(--ink);
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: all .22s ease;
}
.tag-pill:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: #FBEBD9;
}
.tags-dot {
  color: var(--line);
}

/* ============ Feature Section ============ */
.feature-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 22px;
  align-items: stretch;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #CDBFAF;
}
.feature-card--main {
  grid-row: span 2;
  min-height: 430px;
}
.feature-num {
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--brand);
  opacity: .7;
}
.feature-card h3 {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.4;
  margin: 30px 0 12px;
  letter-spacing: -.01em;
}
.feature-card p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.8;
}
.feature-card--main p {
  font-size: 16px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--brand);
  margin-top: 20px;
  transition: gap .25s;
}
.text-link:hover { gap: 12px; color: var(--brand-deep); }
.feature-media {
  margin-top: 28px;
  border-radius: 14px;
  overflow: hidden;
  min-height: 200px;
}
.feature-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .8s ease;
}
.feature-card--main:hover .feature-media img { transform: scale(1.03); }

/* ============ Showcase ============ */
.showcase-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.showcase-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.showcase-visual img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform .8s ease;
}
.showcase-visual:hover img { transform: scale(1.025); }
.showcase-content h2 {
  font-size: clamp(25px, 3.2vw, 40px);
  line-height: 1.28;
  margin-top: .4em;
  margin-bottom: .35em;
  font-weight: 850;
}
.showcase-content > p {
  color: var(--muted);
  margin-bottom: 26px;
}
.steps {
  display: flex;
  flex-direction: column;
}
.step-item {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.step-num {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--surface-2);
  color: var(--brand);
  font-weight: 900;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
}
.step-item strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
}
.step-item p {
  color: var(--muted);
  font-size: 14.5px;
  margin-top: 3px;
}
.showcase-cta {
  margin-top: 28px;
}

/* ============ Quotes / Social proof ============ */
.quotes-section {
  background: var(--dark);
  border-bottom: none;
  color: #E9DDD3;
}
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.quote-card {
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: all .3s ease;
}
.quote-card:hover {
  background: rgba(255, 255, 255, .08);
  transform: translateY(-3px);
}
.quote-card:first-child {
  background: rgba(180, 87, 40, .16);
  border-color: rgba(255, 255, 255, .2);
}
.quote-icon {
  font-size: 32px;
  color: var(--brand);
  opacity: .8;
}
.quote-card blockquote {
  margin: 16px 0 20px;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(240, 230, 222, .92);
}
.quote-card figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  font-style: normal;
  color: rgba(237, 228, 219, .55);
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 14px;
}
.quote-card figcaption i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #F1D6C6;
}

/* ============ Notice / Guide ============ */
.notice-grid {
  display: grid;
  grid-template-columns: .9fr 1.2fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.notice-left h2 {
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.28;
  font-weight: 850;
  margin: .35em 0 .35em;
}
.notice-left p {
  color: var(--muted);
  max-width: 440px;
}
.notice-list {
  border-top: 1px solid var(--line);
}
.notice-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.notice-list i {
  color: var(--brand);
  font-size: 19px;
  margin-top: 5px;
}
.notice-list strong {
  display: block;
}

/* ============ FAQ ============ */
.faq-section {
  background: var(--surface-2);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 26px;
  transition: all .3s ease;
}
.faq-item:hover {
  border-color: #C9B9A9;
  box-shadow: var(--shadow);
}
.faq-q {
  display: flex;
  gap: 12px;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.55;
}
.faq-q i {
  color: var(--brand);
  font-style: normal;
  font-weight: 900;
  font-size: 15px;
}
.faq-a {
  margin-top: 12px;
  margin-left: 27px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.8;
}

/* ============ Final CTA ============ */
.final-cta {
  border: none;
  padding: var(--space-section) 0;
}
.cta-panel {
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: 24px;
  text-align: center;
  padding: clamp(36px, 6vw, 80px) clamp(24px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.cta-panel::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(180, 87, 40, .06);
  top: -120px;
  right: -90px;
  pointer-events: none;
}
.cta-panel h2 {
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 850;
  line-height: 1.25;
  margin-bottom: 14px;
}
.cta-panel p {
  color: var(--muted);
  font-size: 16px;
  max-width: 640px;
  margin: 0 auto 30px;
}
.cta-meta {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .06em;
}

/* ============ Footer ============ */
.site-footer {
  background: var(--dark);
  color: #B4A79D;
  padding: 58px 0 92px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 44px;
}
.footer-brand .brand {
  margin-bottom: 18px;
}
.footer-brand .brand-mark {
  width: 38px;
  height: 38px;
  flex-basis: 38px;
  font-size: 14px;
}
.footer-brand .brand-name {
  font-size: 21px;
}
.footer-brand p {
  max-width: 380px;
  font-size: 14.5px;
  line-height: 1.9;
  color: rgba(237, 228, 219, .68);
}
.footer-title {
  color: #F0E5DC;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  margin-bottom: 14px;
}
.footer-links a {
  display: block;
  padding: 5px 0;
  transition: all .2s ease;
}
.footer-links a:hover {
  color: #F5D7C6;
  transform: translateX(4px);
}
.footer-note p {
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(237, 228, 219, .5);
}
.footer-bottom {
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(237, 228, 219, .42);
}

/* ============ Sticky Bottom CTA ============ */
.sticky-bar {
  position: fixed;
  left: var(--sidebar-w);
  right: 0;
  bottom: 0;
  z-index: 60;
  background: rgba(41, 33, 27, .94);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, .08);
}
.sticky-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 11px clamp(20px, 3.2vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-inner p {
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
  margin: 0;
}
.sticky-bar .btn {
  padding: 9px 19px;
  font-size: 14px;
}

/* ============ Reveal motion ============ */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============ Responsive ============ */
@media (max-width: 1060px) {
  .sidebar {
    transform: translateX(-100%);
    box-shadow: none;
  }
  .sidebar.is-open {
    transform: translateX(0);
  }
  .sidebar-close { display: flex; }
  .main-shell { margin-left: 0; }
  .mobile-topbar { display: flex; }
  .sticky-bar { left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-card--main {
    grid-row: auto;
    min-height: 0;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .showcase-visual img {
    max-height: 320px;
    width: 100%;
    object-fit: cover;
  }
  .quotes-grid {
    grid-template-columns: 1fr 1fr;
  }
  .quote-card:first-child {
    grid-column: span 2;
  }
  .notice-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  body { font-size: 15px; }
  .hero-card {
    min-height: 520px;
  }
  .hero-content {
    padding: 32px 24px;
  }
  .hero-card h1 {
    font-size: 32px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .tags-inner {
    border-radius: 18px;
    justify-content: flex-start;
    align-items: center;
  }
  .quotes-grid {
    grid-template-columns: 1fr;
  }
  .quote-card:first-child {
    grid-column: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .feature-card {
    padding: 26px 22px;
  }
  .faq-grid {
    gap: 14px;
  }
  .faq-item {
    padding: 20px;
  }
  .sticky-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .sticky-inner .btn {
    display: flex;
    justify-content: center;
  }
  .sticky-bar {
    left: 0;
  }
  .site-footer {
    padding-bottom: 144px;
  }
  .site-main {
    padding-bottom: 118px;
  }
}

/* roulang page: category1 */
:root {
    --bg: #F6F0E9;
    --surface: #FFFDF9;
    --surface-2: #EFE7DE;
    --ink: #26211B;
    --muted: #76675C;
    --line: #E1D5C9;
    --brand: #B45728;
    --brand-deep: #99401B;
    --leaf: #66704B;
    --dark: #1C1712;
    --dark-soft: #2C241D;
    --white: #FFFDF9;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 8px;
    --shadow: 0 8px 28px rgba(38, 33, 27, .05);
    --shadow-lg: 0 18px 46px rgba(38, 33, 27, .09);
    --sidebar-w: 280px;
    --space-section: clamp(62px, 8vw, 108px);
    --font-sans: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.78;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    background: none;
    border: none;
    color: inherit;
    font-family: inherit;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(180, 87, 40, .45);
    outline-offset: 3px;
    border-radius: 8px;
}

.off-canvas-wrapper {
    background: var(--bg);
}

.off-canvas-content {
    min-height: 100vh;
}

/* ===== Brand ===== */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 13px;
    background: var(--brand);
    color: #fff;
    font-weight: 900;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: .5px;
    box-shadow: 0 8px 20px rgba(180, 87, 40, .28);
}

.brand-name {
    font-size: 23px;
    font-weight: 900;
    letter-spacing: .02em;
    color: #F7EEE7;
    white-space: nowrap;
}

/* ===== Desktop side nav ===== */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--sidebar-w);
    background: var(--dark);
    z-index: 70;
    display: flex;
    flex-direction: column;
    padding: 34px 22px 26px;
    color: rgba(237, 228, 219, .66);
}

.side-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 52px;
}

.side-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 15px;
    border-radius: 13px;
    color: rgba(237, 228, 219, .66);
    font-size: 16px;
    font-weight: 500;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}

.side-nav a i {
    width: 20px;
    text-align: center;
    font-size: 16px;
    opacity: .85;
}

.side-nav a:hover {
    background: rgba(255, 255, 255, .06);
    color: #fff;
    transform: translateX(4px);
}

.side-nav a.active {
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(180, 87, 40, .26);
}

.side-note {
    margin-top: auto;
    padding: 22px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 13px;
    line-height: 1.7;
    color: rgba(237, 228, 219, .5);
}

.side-note span {
    display: block;
    font-weight: 600;
    color: rgba(237, 228, 219, .8);
    margin-bottom: 6px;
}

/* ===== Mobile topbar ===== */
.mobile-topbar {
    display: none;
    position: sticky;
    top: 0;
    z-index: 65;
    background: var(--dark);
    color: #fff;
    padding: 12px 18px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.menu-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    background: rgba(255, 255, 255, .06);
}

.menu-btn:active {
    background: rgba(255, 255, 255, .12);
}

.mobile-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 19px;
    color: #F7EEE7;
}

.mobile-brand .brand-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    font-size: 13px;
    border-radius: 10px;
}

.mobile-brand .brand-name {
    font-size: 19px;
}

/* ===== Off canvas ===== */
.off-canvas {
    background: var(--dark);
}

.off-canvas.is-open {
    box-shadow: 14px 0 44px rgba(0, 0, 0, .16);
}

.canvas-inner {
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.canvas-inner .side-nav {
    margin-top: 30px;
}

.canvas-inner .side-nav a {
    color: rgba(237, 228, 219, .66);
}

.canvas-inner .side-nav a:hover {
    background: rgba(255, 255, 255, .06);
    color: #fff;
}

.canvas-inner .side-nav a.active {
    background: var(--brand);
    color: #fff;
}

/* ===== Main shell ===== */
.main-shell {
    margin-left: var(--sidebar-w);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bg);
}

.category-page {
    flex: 1;
}

.content-wrap {
    width: min(1360px, 100%);
    margin: 0 auto;
    padding: 0 clamp(20px, 3vw, 44px);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .28s ease;
    white-space: nowrap;
}

.btn i {
    font-size: 14px;
    transition: transform .25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 10px 24px rgba(180, 87, 40, .18);
}

.btn-primary:hover {
    background: var(--brand-deep);
    box-shadow: 0 14px 30px rgba(180, 87, 40, .26);
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}

.btn-dark:hover {
    background: #000;
}

.btn-dark:hover i {
    transform: translateX(4px);
}

.btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, .5);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .12);
    border-color: #fff;
}

.btn-outline-dark {
    background: transparent;
    border-color: var(--ink);
    color: var(--ink);
}

.btn-outline-dark:hover {
    background: var(--ink);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== Tag & chips ===== */
.tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--brand);
}

/* ===== Category hero ===== */
.category-hero {
    position: relative;
    padding: clamp(46px, 6vw, 84px) clamp(18px, 3vw, 44px);
    color: #fff;
    background:
        linear-gradient(105deg, rgba(28, 23, 18, .93) 20%, rgba(28, 23, 18, .7) 62%, rgba(28, 23, 18, .32) 100%),
        url('/assets/images/backpic/back-2.jpg') center/cover;
}

.category-hero-inner {
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    align-items: end;
    gap: 48px;
}

.breadcrumb {
    font-size: 14px;
    color: rgba(237, 228, 219, .72);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.breadcrumb a {
    transition: color .2s;
}

.breadcrumb a:hover {
    color: #F7EEE7;
}

.breadcrumb i {
    font-size: 11px;
    opacity: .7;
}

.category-hero h1 {
    color: #fff;
    font-size: clamp(30px, 4.3vw, 50px);
    line-height: 1.22;
    font-weight: 900;
    letter-spacing: -.02em;
    margin: 16px 0 18px;
    max-width: 11em;
}

.category-hero .hero-tag {
    color: #E9AE87;
}

.category-hero-desc {
    font-size: clamp(15px, 1.4vw, 16px);
    color: rgba(237, 228, 219, .84);
    max-width: 520px;
    margin-top: 6px;
    border-left: 2px solid var(--brand);
    padding-left: 20px;
    line-height: 1.85;
}

/* ===== Filter strip ===== */
.filter-strip {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 18px clamp(18px, 3vw, 44px);
}

.filter-inner {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-right: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-label i {
    color: var(--brand);
    font-size: 13px;
}

.filter-chip {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--surface-2);
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    transition: all .22s ease;
    cursor: default;
    border: 1px solid transparent;
}

.filter-chip:hover {
    background: var(--surface);
    border-color: var(--brand);
    color: var(--brand);
    transform: translateY(-1px);
}

/* ===== Section ===== */
.section {
    padding: var(--space-section) 0;
    border-bottom: 1px solid var(--line);
}

.section-head {
    max-width: 820px;
    margin-bottom: clamp(28px, 4vw, 52px);
}

.section-head h2 {
    margin: .3em 0 .2em;
    font-size: clamp(28px, 3.6vw, 46px);
    line-height: 1.22;
    letter-spacing: -.02em;
    color: var(--ink);
    font-weight: 850;
}

.section-head p {
    color: var(--muted);
    font-size: 17px;
    max-width: 720px;
    margin-bottom: 0;
}

/* ===== Main welfare feature grid ===== */
.list-feature {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 22px;
    box-shadow: var(--shadow);
}

.feature-media {
    position: relative;
    min-height: 340px;
}

.feature-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-media-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(28, 23, 18, .76);
    backdrop-filter: blur(4px);
    color: #F6E9DF;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 999px;
}

.feature-content {
    padding: clamp(26px, 3.6vw, 46px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-content h3 {
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 850;
    line-height: 1.3;
    margin: 8px 0 14px !important;
}

.feature-content .lead-text {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.scene-list {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
}

.scene-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, .18);
    color: rgba(237, 228, 219, .85);
    font-size: 15px;
}

.scene-list li i {
    color: var(--brand);
    margin-top: 5px;
    font-size: 13px;
}

.scene-list li:last-child {
    border-bottom: 0;
}

.surface-list li {
    border-bottom: 1px dashed var(--line);
    color: var(--muted);
}

.surface-list li i {
    color: var(--leaf);
}

.link-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    font-weight: 700;
    color: var(--brand);
    font-size: 15px;
    transition: gap .25s ease, color .25s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.link-more:hover {
    color: var(--brand-deep);
    gap: 12px;
    border-color: var(--brand);
}

/* guide list cards */
.guide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 22px;
}

.guide-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 3vw, 36px);
    box-shadow: var(--shadow);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    display: flex;
    flex-direction: column;
}

.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(38, 33, 27, .07);
    border-color: #C9B6A6;
}

.card-topline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(180, 87, 40, .1);
    color: var(--brand);
    font-size: 17px;
    flex: 0 0 42px;
}

.guide-card h3 {
    font-size: 21px;
    font-weight: 850;
    margin: 0 0 8px !important;
    line-height: 1.35;
}

.guide-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 12px;
}

.mini-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.mini-chip {
    background: var(--surface-2);
    color: var(--muted);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 600;
}

/* 3rd row: narrow info strip */
.info-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 22px;
}

.info-strip {
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid var(--line);
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-num {
    font-size: 30px;
    font-weight: 900;
    color: rgba(180, 87, 40, .24);
    line-height: 1;
    letter-spacing: -0.02em;
}

.info-strip h4 {
    font-size: 17px;
    font-weight: 800;
    margin: 0 !important;
}

.info-strip p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== Context block (visual explainer) ===== */
.context-block {
    background: var(--dark);
    color: rgba(237, 228, 219, .82);
    padding: var(--space-section) 0;
    border-bottom: 1px solid var(--dark-soft);
}

.context-block .section-head h2 {
    color: #F3EAE3;
}

.context-block .section-head p {
    color: rgba(237, 228, 219, .66);
}

.context-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(28px, 4vw, 64px);
    align-items: center;
}

.context-visual img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
}

.context-steps {
    list-style: none;
    margin: 0;
    padding: 0;
}

.context-steps li {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(237, 228, 219, .11);
    align-items: start;
}

.context-steps li:last-child {
    border-bottom: 0;
}

.step-num {
    font-size: 34px;
    font-weight: 900;
    color: rgba(180, 87, 40, .82);
    line-height: 1.1;
    letter-spacing: -.02em;
}

.step-text strong {
    display: block;
    color: #F1E5DC;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
}

.step-text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(237, 228, 219, .68);
}

/* ===== Visual split scene ===== */
.split-scene {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.split-media {
    min-height: 300px;
}

.split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content {
    padding: clamp(26px, 4vw, 48px);
}

.split-content h3 {
    font-size: clamp(22px, 2.3vw, 30px);
    font-weight: 850;
    line-height: 1.35;
    margin-bottom: 12px !important;
}

.split-content p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--ink);
    font-size: 15px;
    font-weight: 600;
}

.check-list li i {
    color: var(--leaf);
    margin-top: 6px;
    font-size: 12px;
}

/* ===== FAQ section ===== */
.faq-wrap {
    background: var(--surface-2);
}

.faq-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 28px;
}

.faq-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    margin-bottom: 14px;
    transition: box-shadow .2s, border-color .2s;
}

.faq-panel summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    padding: 8px 0;
    transition: color .2s;
}

.faq-panel summary::-webkit-details-marker {
    display: none;
}

.faq-panel summary i {
    color: var(--brand);
    font-size: 14px;
    transition: transform .3s ease;
    flex: 0 0 auto;
}

.faq-panel[open] summary {
    color: var(--brand-deep);
}

.faq-panel[open] summary i {
    transform: rotate(45deg);
}

.faq-panel[open] {
    box-shadow: var(--shadow);
    border-color: #D2BCA8;
}

.faq-answer {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
    padding-bottom: 16px;
    border-top: 1px dashed var(--line);
    padding-top: 6px;
    margin-top: 2px;
}

.faq-answer ul {
    margin: 8px 0 0;
    padding-left: 18px;
}

.faq-answer li {
    margin-bottom: 4px;
}

/* ===== End CTA ===== */
.end-cta {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: var(--space-section) 0;
    text-align: center;
}

.end-cta h2 {
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: 1.25;
    margin: 14px auto 12px;
    max-width: 520px;
}

.end-cta p {
    color: var(--muted);
    font-size: 16px;
    max-width: 460px;
    margin: 0 auto 30px;
}

.end-cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* ===== Footer ===== */
.site-footer {
    background: var(--dark);
    color: rgba(237, 228, 219, .72);
    padding: clamp(46px, 5vw, 66px) 0 20px;
    font-size: 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-brand .brand-name {
    color: #F7EEE7;
}

.footer-brand p {
    max-width: 480px;
    margin: 18px 0 0;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(237, 228, 219, .6);
}

.footer-links,
.footer-note {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #F3E5DA;
    margin: 0 0 16px !important;
    letter-spacing: .06em;
}

.footer-links a {
    color: rgba(237, 228, 219, .6);
    font-size: 14px;
    padding: 5px 0;
    transition: color .2s, padding-left .2s;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-note p:last-child {
    font-size: 13px;
    line-height: 1.75;
    color: rgba(237, 228, 219, .46);
    max-width: 320px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 24px;
    font-size: 13px;
    color: rgba(237, 228, 219, .44);
}

/* ===== Bottom convert bar ===== */
.bottom-bar {
    position: fixed;
    left: var(--sidebar-w);
    right: 0;
    bottom: 0;
    z-index: 60;
    background: rgba(28, 23, 18, .92);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, .09);
    padding: 0 clamp(16px, 3vw, 36px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #F3E5DA;
    font-size: 15px;
}

.bottom-bar-text {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
}

.bottom-bar-text i {
    color: #E9AE87;
    font-size: 16px;
}

.bottom-bar .btn {
    margin: 10px 0;
    padding: 10px 22px;
}

/* ===== Main padded offset for fixed bar ===== */
body {
    padding-bottom: 0;
}

.main-shell {
    padding-bottom: 0;
}

.site-footer {
    margin-bottom: 0;
}

/* responsive */
@media (max-width: 1024px) {
    .category-hero-inner {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .category-hero-desc {
        max-width: 100%;
    }

    .info-trio {
        grid-template-columns: 1fr 1fr;
    }

    .context-grid {
        grid-template-columns: 1fr;
    }

    .split-scene {
        grid-template-columns: 1fr;
    }

    .guidet-grid,
    .guide-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .sidebar {
        display: none;
    }

    .mobile-topbar {
        display: flex;
    }

    .main-shell {
        margin-left: 0;
    }

    .bottom-bar {
        left: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .category-hero {
        padding: 42px 20px;
    }

    .category-hero h1 {
        font-size: 31px;
    }

    .list-feature {
        grid-template-columns: 1fr;
    }

    .feature-media {
        min-height: 220px;
    }

    .feature-media img {
        position: static;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
        object-fit: cover;
    }

    .filter-strip {
        overflow-x: auto;
    }

    .filter-inner {
        flex-wrap: nowrap;
        min-width: max-content;
    }

    .info-trio {
        grid-template-columns: 1fr;
    }

    .split-media {
        min-height: 220px;
        order: -1;
    }

    .split-media img {
        aspect-ratio: 16/10;
        object-fit: cover;
    }

    .check-list {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
    }

    .bottom-bar-text {
        font-size: 13px;
        padding: 12px 0;
    }

    .bottom-bar-text span.mobile-hide {
        display: none;
    }

    .bottom-bar .btn {
        padding: 9px 16px;
        font-size: 14px;
    }

    .context-steps li {
        grid-template-columns: 50px 1fr;
        gap: 14px;
    }

    .step-num {
        font-size: 28px;
    }

    .faq-panel summary {
        font-size: 16px;
    }
}

@media (max-width: 360px) {
    .bottom-bar .btn {
        padding: 9px 14px;
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}
