/* roulang page: index */
:root {
  --bg-page: #F7F2EA;
  --bg-card: #FFFDF9;
  --bg-dark: #3A2E28;
  --brand: #8A5A44;
  --brand-2: #5C6F54;
  --accent: #C4552D;
  --ink: #3A2E28;
  --ink-2: #6F655C;
  --ink-3: #A69B8E;
  --line: #E5DCD2;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-btn: 10px;
  --shadow: 0 1px 3px rgba(58,46,40,.06);
  --shadow-lg: 0 8px 24px rgba(58,46,40,.12);
  --space: 72px;
  --space-sm: 40px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  background: var(--bg-page);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.8;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

a { color: var(--brand); text-decoration: none; transition: color .25s; }
a:hover { color: #6f4232; text-decoration: underline; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}
img { max-width: 100%; display: block; height: auto; }
ul, ol { list-style: none; }

.section { padding: var(--space) 0; }
.section-bg-white { background: #fff; }
.section-bg-card { background: var(--bg-card); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: var(--radius-btn);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .3s ease;
  text-decoration: none;
  line-height: 1.5;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: #6f4232; color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-lg); text-decoration: none; }
.btn-primary:active { transform: translateY(0); box-shadow: var(--shadow); }
.btn-primary:focus-visible { box-shadow: 0 0 0 4px rgba(138,90,68,.3); }
.btn-outline { background: transparent; border-color: var(--brand); color: var(--brand); }
.btn-outline:hover { background: rgba(138,90,68,.1); color: #6f4232; transform: translateY(-2px); text-decoration: none; }
.btn-outline:active { transform: translateY(0); }
.btn-outline-light { background: transparent; border-color: #fff; color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.15); color: #fff; text-decoration: none; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: #a34422; color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-lg); text-decoration: none; }

/* ---- Section Head ---- */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--line);
  padding-bottom: 12px;
}
.section-head h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-head h2::before {
  content: "";
  display: block;
  width: 6px;
  height: 22px;
  background: var(--brand);
  border-radius: 3px;
}
.section-head .more-link { font-size: 14px; color: var(--ink-2); }
.section-head .more-link:hover { color: var(--brand); }
.section-desc { color: var(--ink-2); font-size: 15px; margin-bottom: 28px; max-width: 720px; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,242,234,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 8px rgba(58,46,40,.04);
}
.header-brand-row {
  border-bottom: 1px solid var(--line);
}
.brand-row-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo svg { width: 32px; height: 32px; flex-shrink: 0; }
.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 2px;
  white-space: nowrap;
}
.logo-text span { color: var(--brand); }
.header-tools { display: flex; align-items: center; gap: 14px; }
.site-search {
  position: relative;
  display: flex;
  align-items: center;
}
.site-search input {
  width: 220px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px 0 38px;
  font-size: 14px;
  background: #fff;
  color: var(--ink);
  transition: all .3s;
}
.site-search input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(138,90,68,.15);
  outline: none;
  width: 260px;
}
.site-search svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--ink-3);
  pointer-events: none;
}

.header-channel-row { background: rgba(255,253,249,.85); }
.channel-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 44px;
  overflow-x: auto;
  scrollbar-width: none;
}
.channel-nav::-webkit-scrollbar { display: none; }
.channel-nav a {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--ink-2);
  white-space: nowrap;
  transition: all .25s;
  text-decoration: none;
}
.channel-nav a:hover { color: var(--brand); background: rgba(138,90,68,.08); text-decoration: none; }
.channel-nav a.active { color: #fff; background: var(--brand); font-weight: 500; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.nav-toggle:hover { border-color: var(--brand); color: var(--brand); }
.header-cta-sm { display: none; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/backpic/back-1.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(58,46,40,.82) 0%, rgba(138,90,68,.65) 60%, rgba(58,46,40,.7) 100%);
  z-index: 1;
}
.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 4px 4px;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
}
.hero h1 {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 2px;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero-subtitle {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,.9);
  margin-bottom: 30px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.hero-search {
  max-width: 520px;
  margin: 0 auto 26px;
  position: relative;
}
.hero-search input {
  width: 100%;
  height: 52px;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 0 52px 0 24px;
  font-size: 15px;
  color: #fff;
  backdrop-filter: blur(6px);
  transition: all .3s;
}
.hero-search input::placeholder { color: rgba(255,255,255,.7); }
.hero-search input:focus {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.7);
  box-shadow: 0 0 0 4px rgba(255,255,255,.15);
  outline: none;
}
.hero-search svg {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #fff;
  pointer-events: none;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.hero-tags a {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.95);
  font-size: 13px;
  transition: all .3s;
  text-decoration: none;
  background: rgba(255,255,255,.06);
}
.hero-tags a:hover {
  background: rgba(255,255,255,.2);
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}
.hero-sticky {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 6px 18px 6px 8px;
  color: rgba(255,255,255,.95);
  font-size: 13px;
  white-space: nowrap;
  max-width: 92%;
}
.sticky-badge {
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 999px;
  font-weight: 600;
  flex-shrink: 0;
}

/* ---- Channels ---- */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.channel-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.channel-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--brand);
  opacity: 0;
  transition: opacity .3s;
}
.channel-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(138,90,68,.3);
}
.channel-card:hover::before { opacity: 1; }
.channel-card.large { grid-column: span 2; }
.channel-card .channel-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: rgba(138,90,68,.1);
  color: var(--brand);
  margin-bottom: 14px;
}
.channel-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.channel-card .channel-desc {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 14px;
  line-height: 1.6;
}
.channel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.channel-tags span {
  font-size: 12px;
  color: var(--brand-2);
  background: rgba(92,111,84,.08);
  border: 1px solid rgba(92,111,84,.18);
  border-radius: 999px;
  padding: 2px 10px;
}
.channel-card.large .channel-tags span { font-size: 13px; padding: 3px 12px; }

/* ---- Stats ---- */
.stats-bar {
  background: var(--bg-dark);
  padding: 40px 0;
  position: relative;
}
.stats-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/backpic/back-2.jpg');
  background-size: cover;
  background-position: center;
  opacity: .1;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}
.stat-item {
  text-align: center;
  padding: 20px 10px;
}
.stat-item strong {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1.2;
}
.stat-item span {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  margin-top: 6px;
  display: block;
}

/* ---- Scenes ---- */
.scenes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.scene-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .35s;
}
.scene-card:nth-child(even) { transform: translateY(20px); }
.scene-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(14px);
}
.scene-card:nth-child(even):hover { transform: translateY(14px); }
.scene-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.scene-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.scene-card:hover .scene-media img { transform: scale(1.04); }
.scene-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(58,46,40,.25) 100%);
}
.scene-body { padding: 20px 22px 18px; }
.scene-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.scene-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}
.scene-badge {
  font-size: 11px;
  color: var(--accent);
  border: 1px solid rgba(196,85,45,.3);
  background: rgba(196,85,45,.06);
  border-radius: 4px;
  padding: 1px 8px;
  flex-shrink: 0;
}
.scene-body p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 12px;
}
.scene-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-3);
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 4px;
}
.scene-meta .meta-nums span { margin-left: 12px; }

/* ---- News ---- */
.news-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
}
.news-list { display: flex; flex-direction: column; gap: 0; }
.news-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: all .25s;
  gap: 16px;
}
.news-item:hover { padding-left: 12px; background: rgba(138,90,68,.03); text-decoration: none; }
.news-item .news-title { font-size: 15px; color: var(--ink); font-weight: 500; }
.news-item:hover .news-title { color: var(--brand); }
.news-item .news-date { font-size: 13px; color: var(--ink-3); flex-shrink: 0; }
.news-side .side-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 20px;
}
.side-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--line);
}
.side-card ul li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.side-card ul li:last-child { border-bottom: none; }
.side-card ul li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand-2);
  flex-shrink: 0;
}
.side-notice {
  background: linear-gradient(135deg, rgba(138,90,68,.06), rgba(92,111,84,.06));
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.7;
}

/* ---- Case / Testimonials ---- */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 22px;
  position: relative;
  transition: all .3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); }
.testimonial-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
}
.testi-user h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.testi-user .testi-time { font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.testi-stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; }
.testi-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: 500;
  margin-left: 6px;
}
.testimonial-card blockquote {
  margin: 0;
  padding: 16px 20px;
  background: rgba(138,90,68,.05);
  border-left: 3px solid var(--brand);
  border-radius: 0 8px 8px 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink);
  font-style: normal;
  position: relative;
}
.testimonial-card blockquote::before {
  content: "“";
  font-size: 36px;
  color: var(--brand);
  position: absolute;
  top: -2px;
  left: 8px;
  font-family: Georgia, serif;
  opacity: .3;
}
.section-topline {
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-topline::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* ---- Pricing ---- */
.pricing-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  overflow: hidden;
}
.price-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.8fr auto;
  gap: 20px;
  align-items: center;
  padding: 26px 30px;
  border-bottom: 1px solid var(--line);
  transition: background .25s;
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: #faf5ec; }
.price-name h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.price-name p { font-size: 13px; color: var(--ink-3); }
.price-range {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
.price-features { font-size: 14px; color: var(--ink-2); line-height: 1.7; }
.price-features span {
  display: inline-block;
  background: rgba(92,111,84,.08);
  border-radius: 4px;
  padding: 2px 8px;
  margin: 0 4px 4px 0;
  font-size: 13px;
}
.price-status {
  display: inline-block;
  font-size: 12px;
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
  text-align: center;
}
.price-status.hot { background: rgba(196,85,45,.12); color: var(--accent); border: 1px solid rgba(196,85,45,.25); }
.price-status.book { background: rgba(92,111,84,.1); color: var(--brand-2); border: 1px solid rgba(92,111,84,.25); }
.price-status.advance { background: rgba(138,90,68,.08); color: var(--brand); border: 1px solid rgba(138,90,68,.25); }
.price-actions { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.price-actions a { font-size: 14px; white-space: nowrap; }
.price-actions .btn { padding: 8px 20px; font-size: 13px; }

.pricing-cta {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  margin-top: 24px;
  padding: 30px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.pricing-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/backpic/back-3.jpg');
  background-size: cover;
  opacity: .12;
}
.pricing-cta > * { position: relative; z-index: 2; }
.pricing-cta h3 { color: #fff; font-size: 20px; font-weight: 600; }
.pricing-cta p { color: rgba(255,255,255,.8); font-size: 14px; margin-top: 4px; }
.pricing-cta .cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- FAQ ---- */
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow .3s;
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-q {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
  position: relative;
}
.faq-q .q-mark {
  width: 28px;
  height: 28px;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-q h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  flex: 1;
  line-height: 1.5;
}
.faq-q .arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform .3s;
  color: var(--ink-3);
}
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 22px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 22px 20px 64px; }
.faq-a-inner {
  background: rgba(138,90,68,.04);
  border-left: 3px solid var(--brand-2);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-2);
}

/* ---- CTA ---- */
.cta-section {
  background: var(--bg-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/backpic/back-1.jpg');
  background-size: cover;
  background-position: center;
  opacity: .15;
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-inner h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.cta-inner p {
  color: rgba(255,255,255,.85);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---- Footer ---- */
.site-footer {
  background: #2a201c;
  color: rgba(255,255,255,.75);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .footer-logo {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  text-decoration: none;
}
.footer-logo svg { width: 28px; height: 28px; }
.footer-brand p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.footer-tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-tag-row span {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  padding: 2px 12px;
}
.footer-col h5 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 8px;
}
.footer-col h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: var(--accent);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  transition: all .25s;
  text-decoration: none;
}
.footer-col ul a:hover { color: #fff; padding-left: 4px; }
.footer-col.address li {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-bottom a { color: rgba(255,255,255,.45); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ---- Mobile Menu Drawer ---- */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 290px;
  height: 100vh;
  background: var(--bg-card);
  z-index: 200;
  box-shadow: -8px 0 30px rgba(0,0,0,.15);
  transition: right .35s ease;
  padding: 80px 30px 30px;
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.mobile-nav a:hover { color: var(--brand); }
.mobile-nav a.active { color: var(--brand); font-weight: 600; }
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: none;
  border-radius: 8px;
  font-size: 22px;
  cursor: pointer;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}
.mobile-nav-overlay.open { opacity: 1; visibility: visible; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .channels-grid { grid-template-columns: repeat(2, 1fr); }
  .channel-card.large { grid-column: span 2; }
  .news-layout { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .price-row { grid-template-columns: 1fr 1fr; gap: 14px; }
  .price-actions { align-items: flex-start; flex-direction: row; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  :root { --space: 40px; }
  .section { padding: 40px 0; }
  .container { padding: 0 16px; }
  .header-brand-row { height: 56px; }
  .brand-row-inner { height: 56px; }
  .logo-text { font-size: 18px; }
  .site-search { display: none; }
  .header-tools .btn { display: none; }
  .nav-toggle { display: flex; }
  .header-channel-row { display: none; }
  .hero { min-height: 70vh; padding: 60px 0 80px; }
  .hero h1 { font-size: 24px; letter-spacing: 1px; }
  .hero-subtitle { font-size: 15px; }
  .hero-search input { height: 46px; padding: 0 44px 0 18px; }
  .hero-tags { gap: 8px; }
  .hero-sticky { font-size: 12px; padding: 5px 14px 5px 6px; bottom: 16px; }
  .channels-grid { grid-template-columns: 1fr; }
  .channel-card.large { grid-column: span 1; }
  .scenes-grid { grid-template-columns: 1fr; gap: 20px; }
  .scene-card:nth-child(even) { transform: none; }
  .scene-card:hover, .scene-card:nth-child(even):hover { transform: translateY(-3px); }
  .section-head h2 { font-size: 21px; }
  .section-head .more-link { font-size: 13px; }
  .price-row { grid-template-columns: 1fr; gap: 10px; padding: 20px; }
  .price-actions { flex-direction: column; align-items: flex-start; }
  .price-range { font-size: 18px; }
  .pricing-cta { padding: 24px; flex-direction: column; }
  .pricing-cta .cta-btns { width: 100%; }
  .pricing-cta .cta-btns .btn { flex: 1; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { text-align: left; }
  .cta-inner h2 { font-size: 24px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 280px; }
  .stat-item strong { font-size: 32px; }
  .testimonial-card { padding: 20px; }
  .faq-item.open .faq-a { padding: 0 16px 16px 52px; }
  .faq-q { padding: 14px 16px; }
  .faq-q h4 { font-size: 15px; }
}
