/* ============================================
   抖阴 - 原创样式表
   品牌色系：甜心粉红 + 梦幻紫
   ============================================ */

/* CSS Variables */
:root {
  --primary: #E8456B;
  --primary-light: #FF7E9D;
  --accent: #6C3AED;
  --accent-light: #8B5CF6;
  --dark-bg: #1A1025;
  --light-bg: #FFF5F7;
  --card-bg: #FFFFFF;
  --text-main: #2D1B3D;
  --text-secondary: #8B7A9E;
  --text-light: #B8A9C9;
  --border: #F0E4F0;
  --shadow: rgba(232, 69, 107, 0.12);
  --gradient-primary: linear-gradient(135deg, #E8456B 0%, #FF7E9D 50%, #6C3AED 100%);
  --gradient-hero: linear-gradient(135deg, #1A1025 0%, #2D1B3D 40%, #E8456B 100%);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  color: var(--text-main);
  background: var(--light-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   Header & Navigation
   ============================================ */
.gzcf9a {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 16, 37, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 69, 107, 0.2);
  transition: var(--transition);
}

.z3n5q7 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.f3ovy {
  display: flex;
  align-items: center;
  gap: 10px;
}

.f3ovy img {
  height: 42px;
  width: auto;
}

.fow31 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kcbauk {
  display: flex;
  align-items: center;
  gap: 6px;
}

.kcbauk a {
  color: #ddd;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.kcbauk a:hover,
.kcbauk a.active {
  color: #fff;
  background: rgba(232, 69, 107, 0.2);
}

.trf6fl {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.trf6fl span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* Search Bar */
.hft6ggz6 {
  background: rgba(26, 16, 37, 0.8);
  padding: 10px 0;
  border-bottom: 1px solid rgba(232, 69, 107, 0.1);
}

.hft6ggz6 .container {
  display: flex;
  justify-content: center;
}

.j9khrhk {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(232, 69, 107, 0.3);
  border-radius: 30px;
  padding: 6px 8px 6px 20px;
  width: 100%;
  max-width: 560px;
  transition: var(--transition);
}

.j9khrhk:focus-within {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.15);
}

.j9khrhk input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.9rem;
  padding: 6px 0;
}

.j9khrhk input::placeholder {
  color: var(--text-light);
}

.wf4ss62 {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 8px 20px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.wf4ss62:hover {
  background: var(--accent);
}

/* ============================================
   Hero Section
   ============================================ */
.unpgz {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-bg);
}

.qoym4 {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.wuiyznvx {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.wuiyznvx.active {
  opacity: 1;
}

.wuiyznvx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m7m5updv {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,16,37,0.85) 0%, rgba(26,16,37,0.5) 50%, rgba(232,69,107,0.3) 100%);
  z-index: 2;
}

.yi213y {
  position: relative;
  z-index: 3;
  max-width: 650px;
  padding: 60px 0;
}

.y7op2871 {
  display: inline-block;
  background: rgba(232, 69, 107, 0.2);
  color: var(--primary-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  border: 1px solid rgba(232, 69, 107, 0.3);
}

.yi213y h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 18px;
}

.yi213y h1 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.yi213y p {
  color: #ccc;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.cjptzva {
  font-size: 0.82rem !important;
  color: var(--text-light) !important;
  margin-top: 20px !important;
  margin-bottom: 0 !important;
  opacity: 0.8;
}

.hwx5ec {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 69, 107, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary-light);
  transform: translateY(-2px);
}

/* ============================================
   Section Common
   ============================================ */
.section {
  padding: 70px 0;
}

.p78o7p2a {
  background: var(--dark-bg);
  color: #fff;
}

.f7qoe5ps {
  background: #fff;
}

.rh9za {
  text-align: center;
  margin-bottom: 48px;
}

.rh9za h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
}

.p78o7p2a .rh9za h2 {
  color: #fff;
}

.rh9za h2 span {
  color: var(--primary);
}

.rh9za p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.p78o7p2a .rh9za p {
  color: var(--text-light);
}

.xxwul6o7 {
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  margin: 14px auto 0;
  border-radius: 3px;
}

/* Sub Heading */
.erwqpwd {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 24px;
  padding-left: 14px;
  border-left: 4px solid var(--primary);
}

/* ============================================
   Video Cards Grid
   ============================================ */
.lfhvjq {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.vqybl {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

.vqybl:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(232, 69, 107, 0.2);
}

.fe4zgq4 {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.fe4zgq4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vqybl:hover .fe4zgq4 img {
  transform: scale(1.08);
}

.ywkcf {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 56px;
  height: 56px;
  background: rgba(232, 69, 107, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.ywkcf::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}

.vqybl:hover .ywkcf {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.j8msg2d {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
}

.krrr8 {
  padding: 14px 16px;
}

.krrr8 h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.xtbz3t {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kihgq0y8 {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.kihgq0y8 span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.j9h3h8pe {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.j9h3h8pe span {
  background: var(--light-bg);
  color: var(--primary);
  font-size: 0.72rem;
  padding: 2px 10px;
  border-radius: 12px;
}

/* ============================================
   Service Cards
   ============================================ */
.j7vrbcpd {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rtb6x {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.rtb6x:hover {
  transform: translateY(-6px);
  border-color: var(--primary-light);
}

.ica1q0k {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.rtb6x h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.rtb6x p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================
   Expert Section
   ============================================ */
.op490u {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.zrqpk7 {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.zrqpk7:hover {
  transform: translateY(-6px);
}

.asn4uj {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.asn4uj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.zrqpk7:hover .asn4uj img {
  transform: scale(1.05);
}

.twy9jbvp {
  padding: 20px 16px;
}

.twy9jbvp h3,
.twy9jbvp h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.twy9jbvp .fnocb {
  color: var(--primary);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.twy9jbvp p {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.5;
  margin-bottom: 14px;
}

.ttqjt {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.ttqjt a {
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: var(--transition);
}

.ttqjt a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ============================================
   Community Section
   ============================================ */
.ut66rkb {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ggu6w7wt {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
}

.ggu6w7wt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.ggu6w7wt .gjoc07fm {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,16,37,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.ggu6w7wt h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.ggu6w7wt p {
  color: #ccc;
  font-size: 0.9rem;
}

/* ============================================
   Partner Logos
   ============================================ */
.wwf1f {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  align-items: center;
}

.ef70u94 {
  width: 140px;
  height: 60px;
  background: var(--card-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  box-shadow: 0 2px 10px var(--shadow);
  transition: var(--transition);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.ef70u94:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px var(--shadow);
}

/* ============================================
   Reviews
   ============================================ */
.vooh0si {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ksc9yt4e {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 4px 20px var(--shadow);
  border: 1px solid var(--border);
}

.assutb {
  color: #FFB800;
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.ksc9yt4e p {
  color: var(--text-main);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.iohds {
  display: flex;
  align-items: center;
  gap: 12px;
}

.iohds .s8qzq6ub {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.iohds .kk7t0 {
  font-weight: 600;
  font-size: 0.9rem;
}

.iohds .xat00 {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

/* ============================================
   FAQ Section
   ============================================ */
.wezpxqlw {
  max-width: 800px;
  margin: 0 auto;
}

.vl0l7 {
  background: var(--card-bg);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: 0 2px 10px var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
}

.w7o2to {
  padding: 18px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.w7o2to:hover {
  color: var(--primary);
}

.w7o2to::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--primary);
  transition: var(--transition);
}

.vl0l7.open .w7o2to::after {
  content: '-';
}

.lmnxqs {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.lmnxqs-inner {
  padding: 0 24px 18px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.vl0l7.open .lmnxqs {
  max-height: 300px;
}

/* ============================================
   Contact Section
   ============================================ */
.wdu66pj7 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.jcngfpv2 {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow);
}

.jcngfpv2 h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.jcngfpv2 p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

.jcngfpv2 .sajdv5 {
  font-size: 2rem;
  margin-bottom: 14px;
}

/* ============================================
   How-To Guide
   ============================================ */
.jcbb5ld {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.hc8nl8 {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow);
  position: relative;
  counter-increment: step;
}

.hc8nl8::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 16px;
}

.hc8nl8 h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.hc8nl8 p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ============================================
   Toast Notification
   ============================================ */
.ol7mp2 {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: var(--dark-bg);
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 0.9rem;
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
  border: 1px solid rgba(232, 69, 107, 0.4);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.ol7mp2.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================
   Video Modal
   ============================================ */
.f6hoeacz-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.f6hoeacz-overlay.active {
  opacity: 1;
  visibility: visible;
}

.f6hoeacz {
  background: var(--dark-bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 520px;
  width: 90%;
  text-align: center;
  border: 1px solid rgba(232, 69, 107, 0.3);
}

.f6hoeacz .jc0u1tlo {
  width: 80px;
  height: 80px;
  background: rgba(232, 69, 107, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.f6hoeacz .jc0u1tlo::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent var(--primary);
  margin-left: 4px;
}

.f6hoeacz h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.f6hoeacz p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.f6hoeacz .btn-primary {
  display: inline-block;
}

.dlp71d3 {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   Footer
   ============================================ */
.d9uap {
  background: var(--dark-bg);
  color: #ccc;
  padding: 50px 0 0;
}

.zwbsyx {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.enq7xu h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.enq7xu p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-light);
}

.pc5m2 {
  display: flex;
  gap: 20px;
  margin-top: 18px;
}

.pc5m2 .dax1w {
  text-align: center;
}

.pc5m2 img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
}

.pc5m2 span {
  display: block;
  font-size: 0.75rem;
  margin-top: 6px;
  color: var(--text-light);
}

.xcn4y1wh h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
}

.xcn4y1wh ul {
  list-style: none;
}

.xcn4y1wh li {
  margin-bottom: 8px;
}

.xcn4y1wh a {
  color: var(--text-light);
  font-size: 0.88rem;
  transition: var(--transition);
}

.xcn4y1wh a:hover {
  color: var(--primary-light);
}

.y52d8 {
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
}

.y52d8 a {
  color: var(--primary-light);
}

.wdawo {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
}

.wdawo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.85rem;
  transition: var(--transition);
}

.wdawo a:hover {
  background: var(--primary);
}

/* ============================================
   Breadcrumb
   ============================================ */
.khk3fyv {
  padding: 14px 0;
  margin-top: 110px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.khk3fyv-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.khk3fyv-list a {
  color: var(--text-secondary);
}

.khk3fyv-list a:hover {
  color: var(--primary);
}

.khk3fyv-list li::after {
  content: '>';
  margin-left: 8px;
  color: var(--text-light);
}

.khk3fyv-list li:last-child::after {
  content: '';
}

.khk3fyv-list li:last-child {
  color: var(--primary);
}

/* ============================================
   Inner Page Hero
   ============================================ */
.zd66to4 {
  background: var(--gradient-hero);
  padding: 50px 0;
  text-align: center;
}

.zd66to4 h1 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.zd66to4 p {
  color: #ccc;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .lfhvjq {
    grid-template-columns: repeat(3, 1fr);
  }
  .op490u {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .zwbsyx {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .trf6fl {
    display: flex;
  }
  .kcbauk {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    background: rgba(26, 16, 37, 0.98);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
  }
  .kcbauk.open {
    transform: translateY(0);
  }
  .kcbauk a {
    width: 100%;
    padding: 12px 16px;
  }
  .yi213y h1 {
    font-size: 1.8rem;
  }
  .unpgz {
    min-height: 420px;
  }
  .lfhvjq {
    grid-template-columns: repeat(2, 1fr);
  }
  .j7vrbcpd {
    grid-template-columns: 1fr;
  }
  .ut66rkb {
    grid-template-columns: 1fr;
  }
  .vooh0si {
    grid-template-columns: 1fr;
  }
  .wdu66pj7 {
    grid-template-columns: 1fr;
  }
  .jcbb5ld {
    grid-template-columns: repeat(2, 1fr);
  }
  .zwbsyx {
    grid-template-columns: 1fr;
  }
  .rh9za h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .lfhvjq {
    grid-template-columns: 1fr;
  }
  .jcbb5ld {
    grid-template-columns: 1fr;
  }
  .hwx5ec {
    flex-direction: column;
  }
}

/* ============================================
   Lazy Loading
   ============================================ */
img[data-src] {
  opacity: 0;
  transition: opacity 0.5s ease;
}

img[data-src].loaded {
  opacity: 1;
}

/* ============================================
   Animations
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   JSON-LD & Schema Styles (hidden)
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
