/* roulang page: index */
/* ===== Design Tokens ===== */
:root {
  --bg: #F5F8FD;
  --surface: #FFFFFF;
  --soft-block: #EAF1FA;
  --primary: #2F66F6;
  --primary-strong: #1C4DD8;
  --primary-weak: rgba(47, 102, 246, 0.10);
  --accent-play: #FA4A3A;
  --success: #0EAA70;
  --text-main: #1E2430;
  --text-second: #5A6472;
  --text-weak: #868E9E;
  --line: #E7ECF3;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 10px;
  --shadow-card: 0 10px 25px rgba(15, 35, 90, 0.08);
  --shadow-hover: 0 16px 32px rgba(15, 35, 90, 0.14);
  --transition: 0.2s cubic-bezier(0.2, 0, 0.2, 1);
  --container: 1200px;
  --font-display: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  --font-body: "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, Arial, sans-serif;
}

/* ===== Base Reset ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, ol {
  list-style: none;
}
button, input {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}
button {
  cursor: pointer;
}
.container {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
section {
  scroll-margin-top: 90px;
}
img.placeholder-img {
  background: linear-gradient(135deg, #e1e9f4, #d3def0);
}

/* ===== Focus Accessibility ===== */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(47, 102, 246, 0.18);
  border-radius: 6px;
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  gap: 8px;
  line-height: 1.2;
  border: none;
}
.btn-primary:hover {
  background: var(--primary-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn-primary:active {
  background: #1340ba;
  transform: translateY(0);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(47, 102, 246, 0.2);
  transition: var(--transition);
  gap: 8px;
}
.btn-secondary:hover {
  background: var(--primary-weak);
  border-color: rgba(47, 102, 246, 0.35);
  transform: translateY(-2px);
}
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-play);
  color: #fff;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 16px;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(250, 74, 58, 0.2);
}
.btn-play:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(250, 74, 58, 0.3);
}
.btn-play .icon-play {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-left: 12px solid #fff;
  border-bottom: 7px solid transparent;
  display: inline-block;
}

/* ===== Badges & Tags ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--soft-block);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
}
.badge-hot {
  background: rgba(250, 74, 58, 0.1);
  color: var(--accent-play);
}
.badge-free {
  background: rgba(47, 102, 246, 0.08);
  color: var(--primary);
}
.badge-tag {
  background: #F2F5FA;
  color: var(--text-second);
  font-weight: 500;
  border-radius: 8px;
  padding: 3px 10px;
  font-size: 13px;
}

/* ===== Media Card ===== */
.card-media {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(15, 35, 90, 0.04);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
}
.card-media:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.card-media .thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #EDF2F9;
}
.card-media .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card-media:hover .thumb img {
  transform: scale(1.05);
}
.card-media .thumb .play-layer {
  position: absolute;
  inset: 0;
  background: rgba(20, 30, 50, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.card-media:hover .play-layer {
  opacity: 1;
}
.play-circle {
  width: 46px;
  height: 46px;
  background: var(--accent-play);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(250, 74, 58, 0.3);
}
.play-circle::after {
  content: "";
  margin-left: 4px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-left: 12px solid #fff;
  border-bottom: 7px solid transparent;
}
.badge-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}
.duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 6px;
}
.card-media .info {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-media .info h3 {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-media .info .desc {
  font-size: 14px;
  color: var(--text-second);
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-media .meta-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.card-media .meta-row .badge {
  background: var(--soft-block);
}
/* ===== Timeline ===== */
.timeline-wrapper {
  position: relative;
  padding: 20px 0;
}
.timeline-item {
  position: relative;
  padding-left: 56px;
  padding-bottom: 40px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 8px;
  width: 2px;
  height: calc(100% - 24px);
  background: linear-gradient(to bottom, var(--primary), #DDE6F5);
}
.timeline-item:last-child::before {
  display: none;
}
.timeline-icon {
  position: absolute;
  left: 0;
  top: 2px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 0 0 4px rgba(47, 102, 246, 0.08);
}
.timeline-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.timeline-item p {
  color: var(--text-second);
  font-size: 15px;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 860px;
  margin: 40px auto 0;
}
.faq-item {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  margin-bottom: 16px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item.active {
  box-shadow: var(--shadow-card);
  border-color: rgba(47, 102, 246, 0.2);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 16px;
  padding: 20px 24px;
  background: var(--surface);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition);
}
.faq-q:hover {
  color: var(--primary);
}
.faq-icon {
  position: relative;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--primary);
  border-radius: 3px;
  transition: transform 0.3s cubic-bezier(0.2, 0, 0.2, 1);
}
.faq-icon::before {
  width: 14px;
  height: 2px;
  top: 13px;
  left: 7px;
}
.faq-icon::after {
  width: 2px;
  height: 14px;
  top: 7px;
  left: 13px;
}
.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
}
.faq-item.active .faq-icon::before {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: var(--text-second);
  transition: max-height 0.35s ease;
  font-size: 15px;
  line-height: 1.75;
}
.faq-item.active .faq-a {
  max-height: 400px;
  padding: 0 24px 22px;
}
.faq-a-inner {
  padding-top: 4px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

/* ===== Scroll Navbar ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(231, 236, 243, 0.4);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 18px rgba(15, 35, 90, 0.04);
}
.nav-top-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 62px;
  transition: height 0.25s cubic-bezier(0.2, 0, 0.2, 1);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(47, 102, 246, 0.25);
}
.logo-mark span {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 6px solid transparent;
  border-left: 10px solid #fff;
  border-bottom: 6px solid transparent;
}
.nav-brand-text {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.3px;
  font-family: var(--font-display);
  color: var(--text-main);
}
.nav-brand-text span {
  color: var(--primary);
}
.nav-search {
  flex: 0 1 380px;
  position: relative;
  transition: var(--transition);
}
.nav-search input {
  width: 100%;
  height: 40px;
  border-radius: 999px;
  background: #EFF3FA;
  border: 1px solid transparent;
  padding: 0 46px 0 18px;
  font-size: 14px;
  transition: var(--transition);
  color: var(--text-main);
}
.nav-search input:focus {
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(47, 102, 246, 0.1);
}
.nav-search svg {
  position: absolute;
  right: 14px;
  top: 12px;
  width: 18px;
  height: 18px;
  stroke: var(--text-second);
  fill: none;
  stroke-width: 2.2;
}
.nav-cta-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-play-btn {
  background: var(--accent-play);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.nav-play-btn:hover {
  background: #e03a2b;
  transform: scale(1.03);
}
.nav-btn-menu {
  display: none;
  background: var(--soft-block);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
}
.nav-bot-line {
  border-top: 1px solid var(--line);
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: opacity 0.2s ease, max-height 0.25s cubic-bezier(0.2, 0, 0.2, 1);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 100%;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-second);
  transition: var(--transition);
  gap: 6px;
}
.nav-links a:hover {
  background: var(--primary-weak);
  color: var(--primary);
}
.nav-links a.active {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}
.nav-right-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--text-second);
}
.nav-right-links a:hover {
  color: var(--primary);
}
.site-header.scrolled .nav-bot-line {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  border-top: none;
}
.site-header.scrolled .nav-top-line {
  height: 60px;
}
.site-header:not(.scrolled) .nav-bot-line {
  max-height: 56px;
  opacity: 1;
}
/* Mobile Drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 78%;
  max-width: 360px;
  height: 100vh;
  z-index: 200;
  background: #fff;
  box-shadow: -20px 0 50px rgba(15, 35, 90, 0.15);
  flex-direction: column;
}
.mobile-drawer.open {
  display: flex;
}
.drawer-header {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.drawer-close {
  width: 36px;
  height: 36px;
  background: var(--soft-block);
  border-radius: 8px;
  position: relative;
  display: block;
}
.drawer-close::before,
.drawer-close::after {
  content: "";
  position: absolute;
  left: 10px;
  width: 16px;
  height: 2px;
  background: var(--text-main);
  border-radius: 3px;
  top: 17px;
}
.drawer-close::before {
  transform: rotate(45deg);
}
.drawer-close::after {
  transform: rotate(-45deg);
}
.drawer-links a {
  display: block;
  padding: 15px 24px;
  border-bottom: 1px solid #f5f7fb;
  font-weight: 600;
  color: var(--text-main);
}
.drawer-links a:last-child {
  border: none;
}
.drawer-links a.active {
  background: var(--primary-weak);
  color: var(--primary);
  border-left: 3px solid var(--primary);
}
.drawer-play {
  padding: 20px 24px;
  margin-top: auto;
}
.mobile-scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 35, 0.4);
  z-index: 150;
  backdrop-filter: blur(2px);
}
.mobile-scrim.show {
  display: block;
}

/* ===== Hero 全宽电影感沉浸横幅 ===== */
.hero {
  position: relative;
  background: linear-gradient(115deg, #15224A 0%, #274586 55%, #3E6096 100%);
  background-size: cover;
  background-position: center;
  padding: 60px 0 0 0;
  overflow: hidden;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/assets/images/backpic/back-1.jpg') no-repeat center center/cover;
  opacity: 0.15;
  mix-blend-mode: overlay;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 240px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  z-index: 3;
}
.hero-brand-hub {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 48px;
}
.hero-brand-hub a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.2s;
}
.hero-brand-hub a:hover {
  background: rgba(255, 255, 255, 0.1);
}
.hero-brand-hub .shop-enter {
  background: #fff;
  color: #1c2a44;
  font-weight: 700;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 46px;
  align-items: center;
  padding-bottom: 50px;
}
.hero-copy {
  padding-bottom: 0;
}
.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  gap: 6px;
  margin-bottom: 20px;
}
.hero-copy .eyebrow .dot {
  width: 8px;
  height: 8px;
  background: #ffbf3f;
  border-radius: 50%;
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.8vw, 56px);
  font-weight: 900;
  line-height: 1.16;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
  letter-spacing: -1px;
}
.hero-copy h1 .accent {
  color: #6FA8FF;
  background: linear-gradient(90deg, #6FA8FF, #FFFFFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-copy .subline {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  font-weight: 400;
}
.hero-btns {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-btns .btn-play {
  background: #fff;
  color: #15224A;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}
.hero-btns .btn-play .icon-play {
  border-left-color: #15224A;
}
.hero-btns .btn-play:hover {
  box-shadow: 0 16px 36px rgba(255, 255, 255, 0.3);
}
.hero-btns .btn-ghost-light {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  padding: 12px 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  transition: var(--transition);
}
.hero-btns .btn-ghost-light:hover {
  background: rgba(255,255,255,0.1);
}
.hero-stats {
  margin-top: 46px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stats .stat-item {
  position: relative;
  padding-right: 28px;
}
.hero-stats .stat-item + .stat-item {
  padding-left: 6px;
}
.hero-stats .stat-item + .stat-item::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 12px;
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,0.25);
}
.stat-num {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}
.stat-label {
  width: max-content;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
  margin-top: 4px;
}
.hero-media-card {
  display: flex;
  justify-content: center;
}
.hero-poster-frame {
  position: relative;
  width: min(460px, 100%);
  background: #fff;
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
  transform: rotate(1deg);
  transition: transform 0.25s;
}
.hero-poster-frame:hover {
  transform: rotate(0deg) scale(1.01);
}
.hero-poster-frame .poster-bg {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background: url('/assets/images/coverpic/cover-2.webp') no-repeat center center/cover;
  position: relative;
  overflow: hidden;
}
.hero-poster-frame .poster-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.2) 0%, transparent 50%);
}
.poster-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 30px rgba(0,0,0,0.25);
  z-index: 3;
}
.poster-play::after {
  content: "";
  margin-left: 5px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-left: 16px solid var(--accent-play);
  border-bottom: 10px solid transparent;
}
.poster-corner-tag {
  position: absolute;
  top: 28px;
  right: 28px;
  background: var(--accent-play);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  z-index: 4;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.poster-info {
  padding: 12px 6px 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.poster-info strong {
  font-size: 16px;
  color: var(--text-main);
}
.poster-info span {
  font-size: 14px;
  color: var(--text-second);
}
.marquee-note {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 20px;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}
.marquee-note .note-label {
  flex-shrink: 0;
  color: #94c2ff;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  padding: 2px 12px;
  background: rgba(255,255,255,0.1);
}
.hero-ticker {
  display: inline-block;
  animation: ticker 24s linear infinite;
}
.hero-ticker span {
  margin-right: 26px;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== 通用 Section 头部 ===== */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}
.section-head .pre-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--primary);
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-main);
  letter-spacing: -0.5px;
}
.section-head .sub {
  margin-top: 10px;
  color: var(--text-second);
  font-size: 16px;
  line-height: 1.6;
}
.section-head .more-link {
  flex-shrink: 0;
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(47, 102, 246, 0.06);
  padding: 8px 18px;
  border-radius: 999px;
  transition: var(--transition);
}
.section-head .more-link:hover {
  background: rgba(47, 102, 246, 0.14);
  transform: translateX(-3px);
}

/* ===== 优惠阶梯 / 阶梯套餐 ===== */
.discount-ladder {
  padding: 90px 0;
  background: var(--surface);
}
.step-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.step-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  border-left: 4px solid var(--primary-light, #8db8ff);
  border-left-color: var(--primary);
  transition: var(--transition);
  position: relative;
}
.step-card:nth-child(2) {
  border-left-color: var(--accent-play);
}
.step-card:nth-child(3) {
  border-left-color: var(--success);
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.step-no {
  font-size: 13px;
  font-weight: 700;
  background: var(--primary);
  color: #fff;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.4px;
  margin-bottom: 22px;
}
.step-card:nth-child(2) .step-no {
  background: var(--accent-play);
}
.step-card:nth-child(3) .step-no {
  background: var(--success);
}
.step-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}
.step-card p {
  color: var(--text-second);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.step-list-check {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}
.step-list-check li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-second);
  font-size: 14px;
}
.step-list-check .ck {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(14, 170, 112, 0.1);
  color: var(--success);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
}

/* ===== 保障条 ===== */
.guarantee-bar {
  background: var(--primary);
  color: #fff;
  padding: 54px 0;
}
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.guarantee-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.g-icon {
  width: 45px;
  height: 45px;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.2);
}
.g-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
}
.guarantee-item h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.4;
}
.guarantee-item p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== 套餐对比表 ===== */
.compare-section {
  padding: 90px 0;
  background: var(--bg);
}
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  overflow: hidden;
  background: #fff;
}
.compare-table th {
  background: #F8FAFE;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  padding: 20px 18px;
  border-bottom: 1px solid var(--line);
}
.compare-table th.highlight-header {
  background: var(--primary);
  color: #fff;
  position: relative;
}
.compare-table td {
  padding: 15px 18px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--text-second);
}
.compare-table td strong {
  color: var(--text-main);
}
.compare-table td.icon-yes {
  color: var(--success);
  font-weight: 800;
  font-size: 18px;
}
.compare-table td.icon-no {
  color: #c3ccda;
  font-size: 18px;
}
.compare-table tr:nth-child(even) td {
  background: #FAFCFF;
}
.compare-table tr:last-child td {
  border-bottom: none;
}
.compare-table .col-title {
  text-align: left;
  font-weight: 600;
  color: var(--text-main);
}

/* ===== 资讯列表 ===== */
.news-area {
  padding: 90px 0;
  background: var(--surface);
}
.news-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 46px;
  align-items: start;
}
.news-main-list {
  display: grid;
  gap: 0px;
  margin-top: 10px;
}
.news-row {
  display: flex;
  align-items: start;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid #edf1f7;
  transition: background 0.2s;
  border-radius: 8px;
}
.news-row:hover {
  background: #F7FAFE;
}
.news-index {
  font-size: 22px;
  font-weight: 900;
  color: #dfe7f2;
  display: flex;
  line-height: 1;
  font-family: var(--font-display);
  font-style: normal;
  width: 28px;
  flex-shrink: 0;
  padding-top: 2px;
}
.news-row.v2 .news-index {
  color: var(--primary);
}
.news-row-content {
  flex: 1;
}
.news-row-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3px;
  line-height: 1.4;
  color: var(--text-main);
  transition: color 0.2s;
}
.news-row-title a:hover {
  color: var(--primary);
}
.news-row-date {
  font-size: 13px;
  color: var(--text-weak);
}
.news-sidebar {
  background: #F7FAFE;
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid var(--line);
}
.news-sidebar h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.news-sidebar h3 .badge {
  font-size: 12px;
  background: var(--accent-play);
  color: #fff;
}
.sidebar-list {
  display: grid;
  gap: 12px;
}
.sidebar-list a {
  display: flex;
  gap: 12px;
  background: #fff;
  border: 1px solid #EFF3F8;
  border-radius: 10px;
  padding: 10px 14px;
  align-items: first baseline;
  transition: var(--transition);
}
.sidebar-list a:hover {
  border-color: rgba(47, 102, 246, 0.3);
  box-shadow: 0 2px 8px rgba(47,102,246,0.06);
}
.sidebar-rank {
  width: 24px;
  height: 24px;
  background: #EFF1F6;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  line-height: 24px;
  color: var(--text-second);
  flex-shrink: 0;
}
.sidebar-list a:nth-child(-n+3) .sidebar-rank {
  background: rgba(250, 74, 58, 0.12);
  color: var(--accent-play);
}
.sidebar-list span:last-child {
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text-second);
}
.sidebar-tags {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sidebar-tags .badge {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text-second);
  font-weight: 400;
}
.sidebar-tags .badge:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ===== 限时入口 ===== */
.limit-cta {
  padding: 70px 0;
  background: linear-gradient(112deg, #16284F, #2C5189);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.limit-cta::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -50px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
}
.limit-cta::after {
  content: "";
  position: absolute;
  right: 30px;
  bottom: -130px;
  width: 260px;
  height: 260px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
  filter: blur(20px);
}
.limit-cta .inner-cta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.limit-cta h2 {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.limit-cta p {
  margin-top: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  max-width: 520px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-actions .btn-light {
  background: #fff;
  color: #15224A;
  border-radius: 999px;
  padding: 12px 36px;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}
.cta-actions .btn-light:hover {
  transform: scale(1.04) translateY(-3px);
  box-shadow: 0 12px 30px rgba(255,255,255,0.13);
}
.cta-actions .btn-outline-light {
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  color: #fff;
  padding: 12px 34px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.cta-actions .btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
}

/* ===== 资讯 / 图文区 ===== */

/* ===== 方案区 ===== */
.solution-section {
  background: var(--soft-block);
  padding: 90px 0;
}
.solution-list {
  display: grid;
  gap: 16px;
}
.solution-row {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 24px;
  transition: var(--transition);
  border: 1px solid #eef2f8;
}
.solution-row:hover {
  box-shadow: var(--shadow-hover);
  transform: translateX(6px);
  border-color: rgba(47, 102, 246, 0.2);
}
.solution-no {
  font-size: 28px;
  font-weight: 800;
  color: #D5E3FB;
  text-align: center;
  border-right: 2px dashed var(--line);
  padding-right: 20px;
}
.solution-row .my-svg {
  width: 18px;
  height: 18px;
}
.sol-text h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}
.sol-text p {
  font-size: 15px;
  color: var(--text-second);
  max-width: 540px;
}
.solution-go {
  background: rgba(47, 102, 246, 0.06);
  border-radius: 999px;
  color: var(--primary);
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(47, 102, 246, 0.1);
  transition: background 0.2s;
}
.solution-go:hover {
  background: rgba(47, 102, 246, 0.13);
}

/* ===== Footer ===== */
.site-footer {
  background: #EDF2F9;
  border-top: 1px solid #DDE6F0;
  padding-top: 62px;
  padding-bottom: 0;
  color: var(--text-second);
}
.footer-layout {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 35px;
  padding-bottom: 40px;
}
.footer-brand-col {
  max-width: 360px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.footer-brand .logo-mark {
  width: 30px;
  height: 30px;
}
.footer-brand-text {
  font-size: 20px;
  font-weight: 800;
}
.footer-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-second);
  margin-bottom: 16px;
}
.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
}
.footer-col ul {
  display: grid;
  gap: 10px;
}
.footer-col ul a {
  font-size: 14px;
  color: var(--text-second);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.footer-col ul a:hover {
  color: var(--primary);
  padding-left: 5px;
}
.footer-bottom {
  border-top: 1px solid #D3DCE9;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-weak);
}
.footer-legal {
  display: flex;
  gap: 18px;
  font-size: 13px;
}
.footer-legal a {
  color: var(--text-weak);
}
.footer-legal a:hover {
  color: var(--primary);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-media-card {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }
  .nav-search {
    flex-basis: 240px;
  }
  .step-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    overflow-x: auto;
  }
  .guarantee-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .news-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .compare-section .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .nav-search {
    display: none;
  }
  .nav-cta-wrap .nav-play-btn {
    display: none;
  }
  .nav-btn-menu {
    display: flex;
  }
  .nav-bot-line {
    display: none;
  }
  .section-head h2 {
    font-size: 27px;
  }
  .hero-brand-hub {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .hero-brand-hub .badge {
    display: none;
  }
  .hero-brand-hub a {
    flex-shrink: 0;
    padding: 5px 10px;
  }
  .hero-brand-hub .shop-enter {
    margin-left: 0;
  }
  .step-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .footer-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .solution-row {
    grid-template-columns: 40px 1fr;
    gap: 14px;
    padding: 20px;
  }
  .solution-go {
    grid-column: 2;
  }
  .limit-cta h2 {
    font-size: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hero-stats .stat-item .stat-num {
    font-size: 22px;
  }
  .hero-stats {
    gap: 18px;
  }
  .timeline-item {
    padding-left: 48px;
  }
  .timeline-item::before {
    left: 18px;
  }
}
@media (min-width: 769px) {
  .mobile-scrim {
    display: none !important;
  }
  .mobile-drawer {
    display: none !important;
  }
}

/* ===== 综合/反馈区块 ===== */
.feedback-section {
  padding: 70px 0;
}
.feedback-panel {
  background: var(--soft-block);
  border-radius: 22px;
  padding: 40px 50px;
}
.feedback-grid {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
.feedback-info h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
}
.feedback-info p {
  color: var(--text-second);
  max-width: 500px;
  font-size: 16px;
}
.feedback-form {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
}
.feedback-inputs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.feedback-inputs input[type="text"],
.feedback-inputs input[type="email"] {
  flex: 1;
  min-width: 150px;
  background: #fff;
  border-radius: 10px;
  height: 50px;
  padding: 0 16px;
  border: 1px solid var(--line);
  transition: var(--transition);
  font-size: 15px;
}
.feedback-inputs input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(47,102,246,0.08);
}
.feedback-form button {
  height: 52px;
  padding: 0 30px;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  margin-top: 10px;
  width: 100%;
}
.feedback-form button:hover {
  background: var(--primary-strong);
}

/* roulang page: category1 */
:root {
  --bg: #F5F8FD;
  --surface: #FFFFFF;
  --soft-block: #EAF1FA;
  --primary: #2F66F6;
  --primary-strong: #1C4DD8;
  --primary-weak: rgba(47, 102, 246, 0.10);
  --accent-play: #FA4A3A;
  --success: #0EAA70;
  --text-main: #1E2430;
  --text-second: #5A6472;
  --text-weak: #868E9E;
  --line: #E7ECF3;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 10px;
  --shadow-card: 0 10px 25px rgba(15, 35, 90, 0.08);
  --shadow-hover: 0 16px 32px rgba(15, 35, 90, 0.14);
  --transition: 0.2s cubic-bezier(0.2, 0, 0.2, 1);
  --container: 1200px;
  --font-display: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  --font-body: "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button, input, select {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

.container {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

section {
  scroll-margin-top: 90px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 200;
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
}

.skip-link:focus {
  left: 16px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(47, 102, 246, 0.18);
  border-radius: 6px;
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  gap: 8px;
  line-height: 1.2;
}

.btn-primary:hover {
  background: var(--primary-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-primary:active {
  background: #1340ba;
  transform: translateY(0);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(47, 102, 246, 0.2);
  transition: var(--transition);
  gap: 8px;
}

.btn-secondary:hover {
  background: var(--primary-weak);
  border-color: rgba(47, 102, 246, 0.35);
  transform: translateY(-2px);
}

.btn-inline-play {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--accent-play);
  color: #fff;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 15px;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(250, 74, 58, 0.18);
}

.btn-inline-play:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 28px rgba(250, 74, 58, 0.28);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  padding: 4px 0;
}

.text-link:hover {
  color: var(--primary-strong);
  gap: 9px;
}

/* ===== Badges ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--soft-block);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
}

.badge-hot {
  background: rgba(250, 74, 58, 0.1);
  color: var(--accent-play);
}

.badge-free {
  background: rgba(47, 102, 246, 0.08);
  color: var(--primary);
}

.badge-tag {
  background: #F2F5FA;
  color: var(--text-second);
  font-weight: 500;
  border-radius: 8px;
  padding: 3px 10px;
  font-size: 13px;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(231, 236, 243, 0.85);
  box-shadow: 0 6px 16px rgba(15, 35, 90, 0.04);
  transition: box-shadow var(--transition);
}

.nav-top-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 60px;
  transition: height 0.24s cubic-bezier(0.2, 0, 0.2, 1);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2F66F6, #1C4DD8);
  position: relative;
  display: inline-block;
  box-shadow: 0 6px 14px rgba(47, 102, 246, 0.25);
  flex-shrink: 0;
}

.logo-mark > span {
  position: absolute;
  top: 10px;
  left: 11px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-left: 11px solid #ffffff;
  border-bottom: 7px solid transparent;
}

.logo-mark > span::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -9px;
  width: 7px;
  height: 8px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.85);
}

.nav-brand-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text-main);
  white-space: nowrap;
}

.nav-brand-text span {
  color: var(--primary);
}

.nav-search {
  display: flex;
  align-items: center;
  width: min(420px, 42vw);
  height: 40px;
  background: #F2F5FA;
  border: 1px solid rgba(231, 236, 243, 0.8);
  border-radius: 999px;
  padding: 0 16px;
  gap: 9px;
  transition: var(--transition);
}

.nav-search:focus-within {
  background: #fff;
  border-color: rgba(47, 102, 246, 0.45);
  box-shadow: 0 0 0 4px rgba(47, 102, 246, 0.08);
}

.nav-search svg {
  width: 18px;
  height: 18px;
  color: var(--text-weak);
  flex-shrink: 0;
}

.nav-search input {
  width: 100%;
  font-size: 14px;
  color: var(--text-main);
}

.nav-search input::placeholder {
  color: var(--text-weak);
}

.nav-cta-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  height: 40px;
  padding: 0 22px;
  border-radius: 999px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-play-btn:hover {
  background: var(--primary-strong);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(47, 102, 246, 0.2);
}

.nav-btn-menu {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  background: var(--soft-block);
  transition: var(--transition);
}

.nav-btn-menu:hover {
  background: rgba(47, 102, 246, 0.12);
}

.nav-btn-menu .icon-close {
  display: none;
}

.nav-bot-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-height: 56px;
  opacity: 1;
  overflow: hidden;
  border-top: 1px solid rgba(231, 236, 243, 0.5);
  transition: max-height 0.24s cubic-bezier(0.2, 0, 0.2, 1), opacity 0.2s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 54px;
  flex-wrap: wrap;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-second);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
  background: var(--primary-weak);
}

.nav-links a.active {
  color: var(--primary);
  background: var(--primary-weak);
  font-weight: 700;
}

.nav-right-links {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 14px;
}

.nav-right-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  font-size: 14px;
  color: var(--text-second);
  transition: var(--transition);
  border-radius: 8px;
}

.nav-right-links a:hover {
  color: var(--primary);
  background: var(--primary-weak);
}

body.scrolled .site-header {
  box-shadow: 0 8px 24px rgba(15, 35, 90, 0.09);
}

body.scrolled .nav-top-line {
  height: 64px;
}

body.scrolled .nav-bot-line {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}

.mobile-search {
  display: none;
}

/* ===== Page Hero ===== */
.page-hero {
  position: relative;
  padding: 46px 0 58px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(245, 248, 253, 0.97) 0%, rgba(245, 248, 253, 0.88) 55%, rgba(234, 241, 250, 0.75) 100%),
    url('/assets/images/backpic/back-1.jpg') center / cover no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -160px;
  width: 420px;
  height: 420px;
  background: rgba(47, 102, 246, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero::before {
  content: "";
  position: absolute;
  left: 38%;
  bottom: -120px;
  width: 280px;
  height: 280px;
  background: rgba(250, 74, 58, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.crumb {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--text-weak);
  margin-bottom: 24px;
  line-height: 1.4;
}

.crumb a {
  transition: var(--transition);
}

.crumb a:hover {
  color: var(--primary);
}

.crumb .crumb-now {
  color: var(--text-second);
  font-weight: 500;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid rgba(47, 102, 246, 0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 15px;
  border-radius: 999px;
  margin-bottom: 18px;
  box-shadow: 0 6px 16px rgba(15, 35, 90, 0.04);
}

.hero-kicker i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-play);
  display: inline-block;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.16;
  color: var(--text-main);
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.hero-lead {
  font-size: 17px;
  color: var(--text-second);
  line-height: 1.85;
  max-width: 760px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-note span {
  font-size: 13px;
  color: var(--text-weak);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ===== Toolbar ===== */
.list-toolbar {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  margin-top: -1px;
}

.toolbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.filter-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.filter-pills::-webkit-scrollbar {
  display: none;
}

.pill {
  padding: 8px 17px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #F8FAFD;
  color: var(--text-second);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition);
}

.pill:hover {
  color: var(--primary);
  border-color: rgba(47, 102, 246, 0.35);
  background: var(--primary-weak);
}

.pill.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 8px 18px rgba(47, 102, 246, 0.18);
}

.fake-select {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text-second);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: var(--transition);
}

.fake-select:hover {
  border-color: rgba(47, 102, 246, 0.35);
  color: var(--primary);
}

.fake-select svg {
  width: 15px;
  height: 15px;
}

/* ===== Feature zone ===== */
.feature-zone {
  padding: 64px 0 48px;
}

.features-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}

.section-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.features-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-main);
}

.features-heading .heading-note {
  max-width: 340px;
  color: var(--text-second);
  font-size: 15px;
  line-height: 1.7;
}

.archive-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 322px;
  gap: 32px;
  align-items: start;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  background: var(--surface);
  border: 1px solid rgba(231, 236, 243, 0.75);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(15, 35, 90, 0.035);
}

.feature-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: rgba(47, 102, 246, 0.18);
}

.item-thumb {
  position: relative;
  flex: 0 0 245px;
  min-height: 170px;
  overflow: hidden;
  background: #EDF2F9;
}

.item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.feature-item:hover .item-thumb img {
  transform: scale(1.06);
}

.thumb-free {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.93);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(15, 35, 90, 0.08);
}

.item-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 22px;
  min-width: 0;
}

.item-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 9px;
}

.item-content h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--text-main);
  margin-bottom: 7px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.item-content p {
  font-size: 14.5px;
  color: var(--text-second);
  line-height: 1.7;
  margin-bottom: 11px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.item-bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.item-scene {
  font-size: 13px;
  color: var(--text-weak);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ===== Sidebar ===== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 90px;
}

.side-card {
  background: var(--surface);
  border: 1px solid rgba(231, 236, 243, 0.8);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: 0 8px 20px rgba(15, 35, 90, 0.05);
}

.side-title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--text-main);
}

.side-title::before {
  content: "";
  width: 4px;
  height: 19px;
  border-radius: 4px;
  background: var(--primary);
}

.rank-list {
  display: flex;
  flex-direction: column;
}

.rank-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  transition: var(--transition);
}

.rank-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.rank-list li:hover {
  background: rgba(47, 102, 246, 0.02);
}

.rank-num {
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  color: var(--text-weak);
  width: 27px;
  text-align: center;
  padding-top: 4px;
}

.rank-num.n1 {
  color: var(--accent-play);
}

.rank-num.n2 {
  color: var(--primary);
}

.rank-num.n3 {
  color: #F59E0B;
}

.rank-list li strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  display: block;
  margin-bottom: 2px;
}

.rank-list li p {
  font-size: 13px;
  color: var(--text-weak);
  line-height: 1.55;
}

.tag-cloud .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.tag-cloud .tag-list a {
  display: inline-block;
  background: #F3F6FC;
  color: var(--text-second);
  font-size: 13px;
  padding: 6px 13px;
  border-radius: 999px;
  transition: var(--transition);
}

.tag-cloud .tag-list a:hover {
  color: #fff;
  background: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(47, 102, 246, 0.18);
}

.side-cta {
  background: linear-gradient(145deg, #FFFFFF 0%, #EAF1FA 100%);
  border: 1px solid rgba(47, 102, 246, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.side-cta h4 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
  margin: 10px 0 8px;
  color: var(--text-main);
}

.side-cta p {
  font-size: 14px;
  color: var(--text-second);
  margin-bottom: 18px;
  line-height: 1.7;
}

.btn-block {
  width: 100%;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 72px 0 40px;
}

.faq-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.faq-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}

.faq-heading p {
  color: var(--text-second);
  font-size: 16px;
  line-height: 1.8;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface);
  border: 1px solid rgba(231, 236, 243, 0.9);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(47, 102, 246, 0.16);
  box-shadow: var(--shadow-card);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  padding: 18px 22px;
  background: transparent;
  color: var(--text-main);
  transition: var(--transition);
}

.q-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.q-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--soft-block);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.2, 0, 0.2, 1), background 0.2s ease;
}

.q-icon::before,
.q-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--primary);
  transform: translate(-50%, -50%);
  border-radius: 2px;
}

.q-icon::before {
  width: 11px;
  height: 2px;
}

.q-icon::after {
  width: 2px;
  height: 11px;
}

.faq-item.open .q-icon {
  background: var(--primary);
  transform: rotate(45deg);
}

.faq-item.open .q-icon::before,
.faq-item.open .q-icon::after {
  background: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 22px;
}

.faq-answer-inner {
  padding: 0 0 20px;
  color: var(--text-second);
  font-size: 15px;
  line-height: 1.85;
  border-top: 1px dashed var(--line);
  padding-top: 16px;
  margin-top: -2px;
}

/* ===== Bottom CTA ===== */
.cta-panel-section {
  padding: 60px 0 76px;
}

.cta-banner {
  background: linear-gradient(150deg, #1C4DD8 0%, #2F66F6 60%, #3D78FF 100%);
  border-radius: 22px;
  padding: 50px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(47, 102, 246, 0.25);
}

.cta-banner::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.cta-banner::after {
  content: "";
  position: absolute;
  left: 42%;
  bottom: -150px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 40px solid rgba(255, 255, 255, 0.06);
}

.cta-copy {
  position: relative;
  z-index: 2;
}

.cta-copy .section-kicker {
  color: rgba(255, 255, 255, 0.75);
}

.cta-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 12px;
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--primary);
}

.cta-banner .btn-primary:hover {
  background: #F2F5FA;
  transform: translateY(-2px);
}

.cta-banner .btn-light-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 10px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}

.cta-banner .btn-light-line:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
}

/* ===== Footer ===== */
.site-footer {
  background: #EAF1FA;
  padding-top: 62px;
  border-top: 1px solid var(--line);
}

.footer-layout {
  display: grid;
  grid-template-columns: 2.1fr 1fr 1fr 1.2fr;
  gap: 42px;
  padding-bottom: 48px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
}

.footer-desc {
  font-size: 14px;
  color: var(--text-second);
  line-height: 1.85;
  max-width: 400px;
  margin-bottom: 18px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-main);
}

.footer-col ul li {
  margin-bottom: 11px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--text-second);
  transition: var(--transition);
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--primary);
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(231, 236, 243, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-weak);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--text-weak);
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--primary);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .nav-search {
    width: 230px;
  }

  .archive-shell {
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 22px;
  }

  .item-thumb {
    flex-basis: 210px;
  }

  .cta-banner {
    padding: 42px 36px;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-layout {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 880px) {
  .archive-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 8px;
  }

  .side-cta {
    grid-column: span 2;
  }

  .features-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .page-hero h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .nav-top-line {
    height: 60px;
    gap: 8px;
  }

  .nav-search {
    display: none;
  }

  .nav-btn-menu {
    display: inline-flex;
  }

  .nav-bot-line {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 12px 22px 22px;
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 32px rgba(15, 35, 90, 0.1);
    max-height: none;
    opacity: 1;
    pointer-events: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-header.menu-open .nav-bot-line {
    display: flex;
  }

  body.scrolled .nav-bot-line {
    max-height: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-header.menu-open .nav-bot-line {
    max-height: none;
  }

  .site-header.menu-open .icon-close {
    display: block;
  }

  .site-header.menu-open .icon-open {
    display: none;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    min-height: auto;
    padding-bottom: 14px;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    padding: 11px 14px;
    font-size: 15px;
    border-radius: 10px;
  }

  .nav-links a.active {
    background: var(--primary-weak);
  }

  .nav-right-links {
    justify-content: flex-start;
    border-top: 1px solid var(--line);
    padding-top: 12px;
    padding-left: 0;
    flex-wrap: wrap;
  }

  .mobile-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #F3F6FC;
    border-radius: 10px;
    height: 42px;
    padding: 0 13px;
    margin-top: 12px;
  }

  .mobile-search svg {
    width: 17px;
    height: 17px;
    color: var(--text-weak);
  }

  .mobile-search input {
    flex: 1;
    font-size: 14px;
    color: var(--text-main);
  }

  .mobile-search input::placeholder {
    color: var(--text-weak);
  }

  .nav-play-btn {
    width: 40px;
    padding: 0;
    justify-content: center;
    font-size: 0;
  }

  .nav-play-btn::after {
    content: "▶";
    font-size: 13px;
  }

  .page-hero {
    padding: 34px 0 44px;
  }

  .page-hero h1 {
    font-size: 31px;
    letter-spacing: -0.01em;
  }

  .hero-lead {
    font-size: 15.5px;
  }

  .toolbar-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .filter-pills {
    padding-bottom: 4px;
  }

  .fake-select {
    width: 100%;
    justify-content: space-between;
  }

  .feature-zone {
    padding: 46px 0 34px;
  }

  .features-heading h2 {
    font-size: 28px;
  }

  .feature-item {
    flex-direction: column;
  }

  .item-thumb {
    flex: none;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .item-content {
    padding: 18px 18px 20px;
  }

  .item-content h3 {
    font-size: 18px;
  }

  .item-content p {
    -webkit-line-clamp: 3;
  }

  .sidebar {
    grid-template-columns: 1fr;
  }

  .side-cta {
    grid-column: auto;
  }

  .faq-section {
    padding: 54px 0 30px;
  }

  .faq-q {
    padding: 16px 16px;
  }

  .faq-answer {
    padding: 0 16px;
  }

  .faq-answer-inner {
    padding: 0 0 18px;
  }

  .cta-panel-section {
    padding: 44px 0 56px;
  }

  .cta-banner {
    padding: 34px 22px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .page-hero h1 {
    font-size: 27px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
  }

  .features-heading h2 {
    font-size: 24px;
  }

  .cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .cta-actions .btn-primary,
  .cta-actions .btn-light-line {
    width: 100%;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}

noscript {
  display: block;
}

.faq-answer {
      max-height: none !important;
      padding: 0 22px 18px;
    }
    .faq-item .q-icon {
      display: none;
    }
