:root {
  --primary: #23B899;
  --primary-dark: #128C73;
  --primary-light: rgba(35, 184, 153, 0.15);
  --pink: #FF7CA6;
  --gold: #FFB84D;
  --purple: #7B5AF5;
  --bg: #FAF6F0;
  --card: #FFFFFF;
  --text: #2A2B33;
  --text-light: #6E7280;
  --border: #E5E1DA;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow: 0 8px 20px rgba(70,55,45,.08);
  --shadow-hover: 0 14px 32px rgba(70,55,45,.14);
  --gradient: linear-gradient(135deg, #23B899 0%, #7B5AF5 100%);
  --gradient-soft: linear-gradient(135deg, rgba(35,184,153,.12) 0%, rgba(123,90,245,.12) 100%);
  --section-space: 88px;
  --section-space-mobile: 48px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: var(--primary); transition: color .2s ease; }
a:hover { color: var(--primary-dark); }
.container { max-width: 1200px; padding-left: 16px; padding-right: 16px; }
.btn { border-radius: 999px; font-weight: 600; padding: 10px 24px; font-size: 15px; transition: all .25s ease; border: none; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary-gradient {
  background: var(--gradient);
  color: #fff !important;
  box-shadow: 0 6px 16px rgba(35,184,153,.3);
}
.btn-primary-gradient:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(35,184,153,.4); color: #fff !important; }
.btn-primary-gradient:focus { outline: 2px solid var(--primary); outline-offset: 2px; }
.btn-primary-gradient:active { transform: translateY(1px); box-shadow: 0 2px 8px rgba(35,184,153,.3); }
.btn-outline-light-2 { border: 2px solid rgba(255,255,255,.7); color: #fff !important; background: transparent; }
.btn-outline-light-2:hover { border-color: #fff; background: rgba(255,255,255,.12); }
.btn-outline-mint { border: 2px solid var(--primary); color: var(--primary) !important; background: transparent; }
.btn-outline-mint:hover { background: var(--primary-light); }
.btn-outline-mint:focus { outline: 2px solid var(--primary); outline-offset: 2px; }
.btn-outline-mint:active { transform: translateY(1px); }
.btn-sm { padding: 6px 18px; font-size: 14px; }
.btn-lg { padding: 14px 36px; font-size: 17px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(35,184,153,.12);
  box-shadow: 0 2px 20px rgba(70,55,45,.05);
  padding: 14px 0;
}
.site-header .header-inner { display: flex; align-items: center; gap: 24px; }
.logo-area { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px;
  box-shadow: 0 4px 12px rgba(35,184,153,.35);
}
.logo-text {
  font-size: 18px; font-weight: 800; color: var(--text);
  letter-spacing: .5px; line-height: 1.2;
}
.logo-text span { color: var(--primary); }
.main-nav { display: flex; gap: 6px; flex: 1; justify-content: center; flex-wrap: nowrap; }
.nav-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 600; color: var(--text);
  background: #fff; border: 1.5px solid rgba(35,184,153,.25);
  transition: all .25s ease; white-space: nowrap;
}
.nav-chip:hover { transform: translateY(-1px); border-color: var(--primary); color: var(--primary); }
.nav-chip.active {
  background: var(--gradient); color: #fff; border-color: transparent;
  box-shadow: 0 4px 12px rgba(35,184,153,.3);
}
.header-cta { flex-shrink: 0; }

/* Hero */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, rgba(18,45,38,.82) 0%, rgba(30,40,70,.68) 60%, rgba(35,184,153,.4) 100%), url('/assets/images/backpic/back-1.jpg') center/cover no-repeat;
  min-height: 84vh;
  display: flex; align-items: center;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-section::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 75% 30%, rgba(35,184,153,.25), transparent 50%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; color: #fff; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  padding: 6px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 600; margin-bottom: 20px;
  backdrop-filter: blur(6px);
}
.hero-title {
  font-size: 38px; font-weight: 800; line-height: 1.25;
  margin-bottom: 20px; color: #fff;
}
.hero-title .gradient-text {
  background: linear-gradient(120deg, #FFB84D, #FF7CA6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 16px; color: rgba(255,255,255,.92);
  max-width: 560px; margin-bottom: 28px; line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 28px; margin-top: 36px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat .num { font-size: 24px; font-weight: 800; color: var(--gold); }
.hero-stat .label { font-size: 13px; color: rgba(255,255,255,.75); }
.hero-preview {
  position: relative; z-index: 2;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 24px;
  padding: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
  transform: translateY(0);
  transition: transform .35s ease;
}
.hero-preview:hover { transform: translateY(-6px); }
.preview-img-wrap { position: relative; border-radius: 16px; overflow: hidden; }
.preview-img-wrap img { width: 100%; height: 340px; object-fit: cover; display: block; }
.preview-badge {
  position: absolute; padding: 5px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 700; z-index: 3;
}
.preview-badge-top { top: 12px; left: 12px; background: var(--gradient); color: #fff; box-shadow: 0 4px 10px rgba(0,0,0,.2); }
.preview-badge-bottom { bottom: 12px; right: 12px; background: var(--gold); color: #2A2B33; }
.preview-info { padding: 16px 6px 4px; }
.preview-info h4 { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.preview-tags { display: flex; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.preview-tag { padding: 3px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.2); }
.preview-rating { display: flex; align-items: center; gap: 8px; color: #fff; font-size: 14px; }
.preview-rating .stars { color: var(--gold); letter-spacing: 2px; }

/* Section global */
.section { padding: var(--section-space) 0; position: relative; }
.section-alt { background: #fff; }
.section-mint { background: linear-gradient(180deg, #F0FAF6 0%, #F7F0FC 100%); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-header h2 { font-size: 28px; font-weight: 800; margin-bottom: 12px; line-height: 1.3; }
.section-header h2 .highlight { color: var(--primary); }
.section-header p { font-size: 15px; color: var(--text-light); line-height: 1.7; }
.section-header .section-tag {
  display: inline-block; padding: 5px 16px; border-radius: 999px;
  background: var(--primary-light); color: var(--primary);
  font-size: 13px; font-weight: 700; margin-bottom: 14px;
}

/* Pain cards */
.pain-card {
  background: var(--card); border-radius: var(--radius-lg);
  padding: 36px 28px; height: 100%;
  border: 1px solid rgba(35,184,153,.12);
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
  transition: all .3s ease;
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.pain-num {
  position: absolute; top: -8px; right: 10px;
  font-size: 72px; font-weight: 800; color: rgba(35,184,153,.08);
  line-height: 1;
}
.pain-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--gradient-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--primary); margin-bottom: 20px;
}
.pain-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.pain-card p { font-size: 14px; color: var(--text-light); margin-bottom: 0; }

/* Studio cards */
.studio-card {
  background: var(--card); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid rgba(35,184,153,.12);
  box-shadow: var(--shadow);
  transition: all .3s ease; height: 100%;
  position: relative;
}
.studio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.studio-card .img-wrap { position: relative; overflow: hidden; border-radius: 0; }
.studio-card .img-wrap img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform .4s ease; }
.studio-card:hover .img-wrap img { transform: scale(1.04); }
.studio-card .card-body-custom { padding: 20px; }
.studio-tags { display: flex; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.studio-tag { padding: 3px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; background: var(--primary-light); color: var(--primary); }
.studio-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.studio-card .studio-desc { font-size: 13px; color: var(--text-light); margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.studio-card .studio-footer { display: flex; align-items: center; justify-content: space-between; }
.studio-rating { display: flex; align-items: center; gap: 4px; font-weight: 800; color: var(--text); font-size: 15px; }
.studio-rating .stars { color: var(--gold); font-size: 13px; }
.studio-rating .sub { color: var(--text-light); font-size: 12px; font-weight: 400; }
.studio-card .btn { padding: 6px 18px; font-size: 13px; }
.studio-corner {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--gradient); color: #fff;
  padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
}

/* Stats */
.stat-card {
  background: var(--gradient); border-radius: var(--radius-lg);
  padding: 36px 24px; text-align: center; color: #fff;
  box-shadow: 0 12px 30px rgba(35,184,153,.25);
  transition: all .3s ease; height: 100%;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(35,184,153,.35); }
.stat-number { font-size: 32px; font-weight: 800; line-height: 1.2; margin-bottom: 6px; }
.stat-label { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.stat-desc { font-size: 13px; opacity: .85; }

/* Testimonials */
.testimonial-card {
  background: var(--card); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow);
  border: 1px solid rgba(35,184,153,.1);
  height: 100%; position: relative;
  transition: transform .3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); }
.quote-bubble {
  background: var(--bg); border-radius: 16px;
  padding: 20px; position: relative; margin-bottom: 18px;
  border-left: 3px solid var(--primary);
  font-size: 14px; line-height: 1.75; color: var(--text);
}
.quote-bubble::before {
  content: ""; position: absolute; bottom: -10px; left: 30px;
  border: 10px solid transparent; border-top-color: var(--bg);
}
.quote-user { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.avatar-pink { background: linear-gradient(135deg, #FF7CA6, #FFB84D); }
.avatar-mint { background: linear-gradient(135deg, #23B899, #7B5AF5); }
.avatar-gold { background: linear-gradient(135deg, #FFB84D, #FF7CA6); }
.user-info { flex: 1; }
.user-name { font-size: 15px; font-weight: 700; display: block; }
.user-tag { font-size: 12px; color: var(--text-light); }
.user-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; }

/* FAQ */
.faq-section { background: var(--bg); }
.accordion-item {
  border: 1px solid rgba(35,184,153,.15) !important;
  border-radius: var(--radius-md) !important;
  background: #fff !important;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(70,55,45,.04);
}
.accordion-button {
  font-size: 16px; font-weight: 600; color: var(--text);
  padding: 20px 24px; background: #fff !important;
  border: none !important;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  background: var(--primary-light) !important;
  color: var(--primary-dark) !important;
}
.accordion-button:focus { box-shadow: none !important; outline: 2px solid var(--primary); outline-offset: -2px; }
.accordion-body { padding: 4px 24px 20px; font-size: 14px; color: var(--text-light); line-height: 1.8; border-top: 1px solid rgba(35,184,153,.08); }

/* CTA */
.cta-section {
  position: relative;
  background: var(--gradient);
  padding: 72px 0;
  text-align: center; color: #fff;
  overflow: hidden;
}
.cta-section::before {
  content: ""; position: absolute; inset: 0;
  background: url('/assets/images/backpic/back-2.jpg') center/cover no-repeat;
  opacity: .15; mix-blend-mode: overlay;
}
.cta-section .cta-content { position: relative; z-index: 2; }
.cta-section h2 { font-size: 32px; font-weight: 800; margin-bottom: 16px; }
.cta-section p { font-size: 16px; opacity: .92; max-width: 600px; margin: 0 auto 28px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-white { background: #fff; color: var(--primary) !important; font-weight: 700; }
.cta-section .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.15); }
.cta-section .btn-outline-light-2 { border-color: rgba(255,255,255,.7); color: #fff !important; }

/* News */
.news-section { background: #fff; }
.news-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.news-list { display: flex; flex-direction: column; gap: 16px; }
.news-item {
  background: var(--card); border: 1px solid rgba(35,184,153,.1);
  border-radius: var(--radius-md); padding: 20px 24px;
  display: flex; gap: 20px; align-items: flex-start;
  box-shadow: 0 2px 10px rgba(70,55,45,.04);
  transition: all .25s ease;
}
.news-item:hover { box-shadow: var(--shadow); transform: translateX(4px); border-color: rgba(35,184,153,.25); }
.news-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--gradient-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--primary); flex-shrink: 0;
}
.news-info { flex: 1; }
.news-category {
  display: inline-block; padding: 2px 10px; border-radius: 999px;
  background: var(--primary-light); color: var(--primary);
  font-size: 12px; font-weight: 600; margin-bottom: 6px;
}
.news-info h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.news-info h4 a { color: var(--text); }
.news-info h4 a:hover { color: var(--primary); }
.news-info p { font-size: 13px; color: var(--text-light); margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-meta { display: flex; align-items: center; gap: 16px; font-size: 12px; color: var(--text-light); }
.news-meta a { font-weight: 600; font-size: 13px; }
.news-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px; }
.sidebar-card {
  background: var(--bg); border-radius: var(--radius-lg);
  padding: 24px; border: 1px solid rgba(35,184,153,.1);
}
.sidebar-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 14px; }
.sidebar-card .hot-tag {
  display: inline-block; padding: 5px 14px; border-radius: 999px;
  background: #fff; border: 1px solid rgba(35,184,153,.2);
  font-size: 13px; font-weight: 500; color: var(--text);
  margin: 0 6px 8px 0; transition: all .2s ease;
}
.sidebar-card .hot-tag:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.sidebar-cta { background: var(--gradient); color: #fff; text-align: center; }
.sidebar-cta h4 { color: #fff; }
.sidebar-cta p { font-size: 14px; opacity: .9; margin-bottom: 16px; }
.empty-state {
  background: var(--bg); border-radius: var(--radius-lg);
  padding: 40px; text-align: center;
  border: 1px dashed rgba(35,184,153,.25);
}
.empty-state i { font-size: 32px; color: var(--primary); margin-bottom: 12px; display: block; }
.empty-state p { color: var(--text-light); }

/* Footer */
.site-footer {
  background: #22242D; color: rgba(255,255,255,.7);
  padding: 60px 0 0;
}
.site-footer h5 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 18px; }
.footer-brand-text { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer-brand-text span { color: var(--primary); }
.site-footer p { font-size: 13px; line-height: 1.7; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: 14px; }
.footer-links a:hover { color: #fff; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { font-size: 14px; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.footer-contact i { color: var(--primary); }
.footer-social { display: flex; gap: 10px; margin-top: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: 15px; transition: all .25s ease;
}
.footer-social a:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0; margin-top: 40px;
  text-align: center; font-size: 13px; color: rgba(255,255,255,.45);
}

/* Responsive */
@media (max-width: 991px) {
  .main-nav { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; justify-content: flex-start; }
  .main-nav::-webkit-scrollbar { display: none; }
  .nav-chip { white-space: nowrap; }
  .header-cta .btn { padding: 8px 18px; font-size: 14px; }
  .news-wrap { grid-template-columns: 1fr; }
  .news-sidebar { position: static; }
  .hero-title { font-size: 32px; }
}
@media (max-width: 767px) {
  .section { padding: 48px 0; }
  .header-inner { flex-wrap: wrap; gap: 12px; }
  .main-nav { order: 3; width: 100%; gap: 4px; }
  .nav-chip { padding: 6px 14px; font-size: 13px; }
  .header-cta { margin-left: auto; }
  .hero-section { min-height: auto; padding: 60px 0 70px; }
  .hero-title { font-size: 26px; }
  .hero-subtitle { font-size: 15px; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-preview { margin-top: 32px; }
  .section-header h2 { font-size: 22px; }
  .stat-number { font-size: 26px; }
  .cta-section h2 { font-size: 24px; }
  .cta-btns .btn { width: 100%; }
  .news-item { flex-direction: row; padding: 16px; }
}
@media (max-width: 575px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .section-header p { font-size: 14px; }
  .pain-card { padding: 28px 20px; }
  .studio-card .img-wrap img { height: 180px; }
  .hero-stats { gap: 16px; }
  .hero-stat .num { font-size: 20px; }
  .news-item { flex-direction: column; gap: 12px; }
  .quote-bubble { font-size: 13px; }
}

:root {
  --primary: #23B899;
  --primary-dark: #1A9A80;
  --secondary: #FF7CA6;
  --gold: #FFB84D;
  --violet: #7B5AF5;
  --bg: #FAF6F0;
  --card-bg: #FFFFFF;
  --text: #2A2B33;
  --text-muted: #6E7280;
  --border: #E5E1DA;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --shadow-sm: 0 8px 20px rgba(70,55,45,.08);
  --shadow-lg: 0 14px 32px rgba(70,55,45,.14);
  --gradient: linear-gradient(135deg, #23B899, #7B5AF5);
  --gradient-soft: linear-gradient(135deg, rgba(35,184,153,.1), rgba(123,90,245,.1));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: .2px;
  margin: 0;
  padding: 0;
}
a { color: var(--primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container { max-width: 1200px; }
.btn { border: none; border-radius: var(--radius-pill); font-weight: 600; padding: 10px 24px; transition: all .25s ease; display: inline-flex; align-items: center; gap: 8px; justify-content: center; }
.btn:focus { outline: 2px solid var(--primary); outline-offset: 2px; box-shadow: 0 0 0 4px rgba(35,184,153,.15); }
.btn-primary-gradient {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 14px rgba(35,184,153,.25);
}
.btn-primary-gradient:hover { color: #fff; background: linear-gradient(135deg, #1aa87f, #6f4fe0); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(123,90,245,.32); }
.btn-primary-gradient:active { transform: translateY(1px); box-shadow: 0 2px 8px rgba(35,184,153,.2); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: rgba(35,184,153,.1); color: var(--primary-dark); transform: translateY(-1px); }
.btn-outline:active { transform: translateY(0); }
.btn-outline-light { background: transparent; border: 2px solid #fff; color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.15); color: #fff; transform: translateY(-1px); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 12px 28px; font-size: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(35,184,153,.12);
  box-shadow: 0 4px 24px rgba(70,55,45,.07);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 72px; }
.logo-area { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon {
  width: 42px; height: 42px; border-radius: 14px;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px;
  box-shadow: 0 4px 14px rgba(35,184,153,.35);
}
.logo-text { font-size: 20px; font-weight: 800; color: var(--text); letter-spacing: .5px; line-height: 1.1; }
.logo-text span { color: var(--primary); }
.main-nav { display: flex; align-items: center; gap: 8px; }
.nav-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 18px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--border); background: #fff;
  color: var(--text); font-size: 14px; font-weight: 600;
  text-decoration: none; transition: all .25s ease; white-space: nowrap;
}
.nav-chip:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(35,184,153,.15); text-decoration: none; }
.nav-chip:focus { outline: 2px solid var(--primary); outline-offset: 2px; }
.nav-chip.active { background: var(--gradient); color: #fff; border-color: transparent; box-shadow: 0 4px 16px rgba(123,90,245,.3); }
.nav-chip.active:hover { color: #fff; }

.article-hero { position: relative; padding: 64px 0 56px; overflow: hidden; }
.article-hero-bg { position: absolute; inset: 0; background-image: url('/assets/images/backpic/back-1.jpg'); background-size: cover; background-position: center; }
.article-hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(20,18,30,.88) 30%, rgba(35,184,153,.55) 100%); }
.article-hero-content { position: relative; z-index: 2; }
.breadcrumb-nav { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; font-size: 13px; color: rgba(255,255,255,.75); margin-bottom: 18px; }
.breadcrumb-nav a { color: rgba(255,255,255,.85); font-weight: 600; transition: color .2s; }
.breadcrumb-nav a:hover { color: #fff; }
.breadcrumb-nav .bc-sep { font-size: 11px; color: rgba(255,255,255,.45); }
.breadcrumb-nav .bc-current { color: rgba(255,255,255,.95); font-weight: 600; max-width: 300px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.article-hero h1 {
  font-size: 34px; font-weight: 800; line-height: 1.3; color: #fff;
  margin: 0 0 20px; max-width: 820px; letter-spacing: .5px;
}
.article-meta { display: flex; flex-wrap: wrap; gap: 20px; font-size: 14px; color: rgba(255,255,255,.78); }
.article-meta span { display: inline-flex; align-items: center; gap: 6px; }
.article-meta i { opacity: .8; }

.article-section { padding: 56px 0 72px; position: relative; }
.article-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(to bottom, var(--bg), transparent); z-index: 0;
}
.article-section .container { position: relative; z-index: 1; }
.article-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(35,184,153,.12);
  padding: 40px 44px 32px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.article-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient);
}
.article-card::after {
  content: '❝'; position: absolute; top: -18px; right: 18px;
  font-size: 120px; line-height: 1; font-family: Georgia, serif;
  color: rgba(35,184,153,.08); pointer-events: none;
}

.article-body { font-size: 16px; line-height: 1.85; color: var(--text); }
.article-body h2 {
  font-size: 24px; font-weight: 800; color: var(--text);
  margin: 40px 0 16px; padding-bottom: 12px;
  border-bottom: 2px solid rgba(35,184,153,.18);
  position: relative;
}
.article-body h2::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 52px; height: 2px; background: var(--gradient); border-radius: 2px;
}
.article-body h3 { font-size: 20px; font-weight: 700; margin: 30px 0 12px; color: var(--text); }
.article-body h4 { font-size: 18px; font-weight: 700; margin: 24px 0 10px; }
.article-body p { margin-bottom: 20px; }
.article-body strong { font-weight: 700; color: var(--text); }
.article-body blockquote {
  border: 1px solid rgba(35,184,153,.2);
  border-left: 4px solid var(--primary);
  background: rgba(35,184,153,.05);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px; margin: 24px 0; position: relative;
  font-size: 15px; line-height: 1.7; color: var(--text);
}
.article-body blockquote::before {
  content: '“'; font-size: 44px; font-family: Georgia, serif;
  color: var(--primary); opacity: .25; position: absolute; top: 8px; left: 12px;
}
.article-body ul { padding-left: 1.4em; margin: 16px 0 22px; list-style: disc; }
.article-body ol { padding-left: 1.4em; margin: 16px 0 22px; list-style: decimal; }
.article-body li { margin-bottom: 8px; line-height: 1.8; }
.article-body img { border-radius: var(--radius-lg); max-width: 100%; box-shadow: var(--shadow-sm); margin: 24px 0; }
.article-body figure { margin: 24px 0; }
.article-body figcaption { font-size: 13px; color: var(--text-muted); text-align: center; margin-top: 8px; }
.article-body a { color: var(--primary); font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }
.article-body a:hover { color: var(--primary-dark); text-decoration-color: var(--primary-dark); }
.article-body table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; border-radius: var(--radius-md); overflow: hidden; }
.article-body table th { background: rgba(35,184,153,.1); color: var(--text); padding: 12px 16px; text-align: left; font-weight: 700; border-bottom: 2px solid rgba(35,184,153,.2); }
.article-body table td { padding: 10px 16px; border-bottom: 1px solid var(--border); }
.article-body table tr:hover td { background: rgba(35,184,153,.03); }
.article-body hr { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
.article-body code { background: rgba(35,184,153,.08); border-radius: 6px; padding: 2px 8px; font-size: 14px; }
.article-body pre { background: #282C34; border-radius: var(--radius-md); padding: 20px; overflow-x: auto; color: #ddd; margin: 24px 0; }

.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }
.article-tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 14px; border-radius: var(--radius-pill);
  background: rgba(35,184,153,.08); color: var(--primary-dark);
  font-size: 13px; font-weight: 600;
}
.article-share {
  display: flex; align-items: center; gap: 10px;
  margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border);
  font-size: 14px; color: var(--text-muted);
}
.article-share a {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #F5F0EA; color: var(--text); font-size: 15px;
  transition: all .25s ease; text-decoration: none;
}
.article-share a:hover { background: var(--gradient); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(35,184,153,.25); }

.article-not-found { text-align: center; padding: 60px 20px; }
.not-found-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--gradient-soft); color: var(--primary);
  font-size: 30px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.article-not-found h2 { font-size: 26px; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.article-not-found p { color: var(--text-muted); font-size: 15px; margin-bottom: 24px; }

.related-section { margin: 48px 0 32px; }
.related-section .section-title {
  font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 24px;
  position: relative; padding-left: 16px;
}
.related-section .section-title::before {
  content: ''; position: absolute; left: 0; top: 4px; bottom: 4px; width: 5px;
  background: var(--gradient); border-radius: 3px;
}
.related-card {
  background: var(--card-bg); border-radius: var(--radius-lg);
  border: 1px solid rgba(35,184,153,.1); box-shadow: var(--shadow-sm);
  overflow: hidden; transition: all .3s ease; height: 100%; display: flex; flex-direction: column;
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(35,184,153,.25); }
.related-img { width: 100%; height: 160px; overflow: hidden; }
.related-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.related-card:hover .related-img img { transform: scale(1.05); }
.related-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.related-body h3 { font-size: 16px; font-weight: 700; color: var(--text); margin: 0 0 8px; line-height: 1.45; }
.related-body p { font-size: 13px; color: var(--text-muted); margin: 0 0 14px; flex: 1; line-height: 1.6; }
.related-body a { font-size: 13px; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 5px; }
.related-body a:hover { color: var(--primary-dark); }

.article-actions { display: flex; gap: 12px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.article-actions .btn { min-width: 150px; }

.article-cta { padding: 56px 0 72px; }
.cta-box {
  background: var(--gradient); border-radius: 28px;
  padding: 48px 56px; display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap; position: relative; overflow: hidden;
  box-shadow: 0 12px 32px rgba(123,90,245,.3);
}
.cta-box::before {
  content: ''; position: absolute; top: -40px; right: -20px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.cta-box::after {
  content: ''; position: absolute; bottom: -20px; left: 60px;
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.cta-content h2 { font-size: 28px; font-weight: 800; color: #fff; margin: 0 0 10px; }
.cta-content p { font-size: 15px; color: rgba(255,255,255,.85); margin: 0; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 2; }
.cta-btns .btn { min-width: 160px; }

.site-footer { background: #201F28; color: #AFAFB8; padding: 64px 0 0; margin-top: 0; }
.site-footer h5 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 18px; letter-spacing: .5px; }
.site-footer a { color: #AFAFB8; transition: all .25s ease; }
.site-footer a:hover { color: var(--primary); text-decoration: none; }
.footer-brand-text { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 14px; }
.footer-brand-text span { color: var(--primary); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 15px;
  transition: all .3s ease;
}
.footer-social a:hover { background: var(--gradient); color: #fff; transform: translateY(-3px); box-shadow: 0 6px 16px rgba(35,184,153,.3); }
.footer-links li { margin-bottom: 10px; }
.footer-links a, .footer-contact li { font-size: 14px; }
.footer-links a { color: #AFAFB8; }
.footer-links a:hover { color: var(--primary); padding-left: 3px; }
.footer-contact { margin: 0; padding: 0; }
.footer-contact li { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; font-size: 14px; }
.footer-contact i { color: var(--primary); width: 16px; text-align: center; }
.site-footer p { font-size: 14px; line-height: 1.7; }
.footer-bottom { margin-top: 40px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.08); text-align: center; font-size: 13px; color: #777; }
.footer-bottom .container { display: flex; justify-content: center; align-items: center; gap: 4px; flex-wrap: wrap; }

@media (max-width: 991.98px) {
  .header-inner { flex-wrap: wrap; height: auto; padding: 12px 0; gap: 10px; }
  .main-nav { order: 3; width: 100%; overflow-x: auto; gap: 6px; padding-bottom: 4px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .main-nav::-webkit-scrollbar { height: 0; }
  .nav-chip { flex-shrink: 0; padding: 7px 14px; font-size: 13px; }
  .header-cta { margin-left: auto; }
  .article-hero h1 { font-size: 26px; }
  .article-card { padding: 28px 24px 24px; }
  .cta-box { padding: 36px 28px; }
  .cta-content h2 { font-size: 22px; flex-basis: 100%; text-align: center; }
  .cta-btns { width: 100%; justify-content: center; }
}

@media (max-width: 767.98px) {
  .article-section { padding: 40px 0 56px; }
  .article-hero { padding: 48px 0 40px; }
  .article-hero h1 { font-size: 22px; line-height: 1.4; }
  .article-meta { gap: 12px; font-size: 12px; }
  .article-card { padding: 24px 18px 20px; }
  .article-body { font-size: 14px; line-height: 1.8; }
  .article-body h2 { font-size: 20px; }
  .article-body h3 { font-size: 17px; }
  .related-section .section-title { font-size: 20px; }
  .cta-box { flex-direction: column; text-align: center; padding: 32px 20px; }
  .cta-btns { flex-direction: column; width: 100%; }
  .cta-btns .btn { width: 100%; }
  .article-actions { flex-direction: column; width: 100%; }
  .article-actions .btn { width: 100%; }
  .site-header .logo-text { font-size: 17px; }
  .logo-icon { width: 36px; height: 36px; font-size: 15px; }
}

@media (max-width: 575.98px) {
  .breadcrumb-nav .bc-current { max-width: 160px; }
  .footer-bottom { font-size: 12px; }
}

/* ========== 设计变量 ========== */
        :root {
            --primary: #23B899;
            --primary-dark: #1A9A80;
            --accent-pink: #FF7CA6;
            --accent-gold: #FFB84D;
            --accent-violet: #7B5AF5;
            --gradient-main: linear-gradient(135deg, #23B899 0%, #7B5AF5 100%);
            --bg-page: #FAF6F0;
            --bg-card: #FFFFFF;
            --text-heading: #2A2B33;
            --text-body: #3F4049;
            --text-muted: #6E7280;
            --border-card: rgba(35, 184, 153, .15);
            --border-soft: #E5E1DA;
            --radius-card: 20px;
            --radius-medium: 14px;
            --radius-pill: 999px;
            --shadow-card: 0 8px 20px rgba(70, 55, 45, .08);
            --shadow-hover: 0 14px 32px rgba(70, 55, 45, .14);
            --space-section: 88px;
            --space-section-mobile: 48px;
            --transition-base: .25s ease;
        }

        /* ========== 基础 Reset ========== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            font-size: 15px;
            line-height: 1.75;
            color: var(--text-body);
            background: var(--bg-page);
            -webkit-font-smoothing: antialiased;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            color: var(--text-heading);
            font-weight: 800;
            line-height: 1.3;
            margin-bottom: .75rem;
        }

        h1 {
            font-size: 32px;
        }
        h2 {
            font-size: 24px;
        }
        h3 {
            font-size: 18px;
            font-weight: 700;
        }
        p {
            margin-bottom: 1rem;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition-base);
        }
        a:hover {
            color: var(--primary-dark);
        }
        img {
            max-width: 100%;
            height: auto;
        }
        button,
        input {
            font-family: inherit;
        }

        .container {
            max-width: 1200px;
        }

        /* ========== 通用按钮 ========== */
        .btn {
            border-radius: var(--radius-pill);
            font-weight: 600;
            padding: .65rem 1.6rem;
            transition: all var(--transition-base);
        }
        .btn:focus {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
            box-shadow: none;
        }

        .btn-primary-gradient {
            background: var(--gradient-main);
            color: #fff;
            border: none;
            box-shadow: 0 4px 14px rgba(35, 184, 153, .3);
        }
        .btn-primary-gradient:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(123, 90, 245, .32);
            color: #fff;
        }
        .btn-primary-gradient:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(35, 184, 153, .3);
        }

        .btn-light-primary {
            background: #fff;
            color: var(--primary);
            border: 1.5px solid var(--primary);
        }
        .btn-light-primary:hover {
            background: var(--primary);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(35, 184, 153, .25);
        }

        .btn-outline-light {
            border: 1.5px solid rgba(255, 255, 255, .85);
            color: #fff;
            background: transparent;
        }
        .btn-outline-light:hover {
            background: rgba(255, 255, 255, .15);
            border-color: #fff;
            color: #fff;
            transform: translateY(-2px);
        }

        .btn-sm {
            padding: .4rem 1.1rem;
            font-size: 14px;
        }

        /* ========== 标签 / 徽章 ========== */
        .tag {
            display: inline-block;
            background: rgba(35, 184, 153, .08);
            border: 1px solid rgba(35, 184, 153, .2);
            color: var(--primary-dark);
            font-size: 12px;
            font-weight: 600;
            border-radius: var(--radius-pill);
            padding: .15rem .7rem;
            margin-right: .35rem;
            margin-bottom: .35rem;
        }
        .tag-outline {
            background: transparent;
            border-color: var(--border-soft);
            color: var(--text-muted);
        }

        .studio-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--gradient-main);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            border-radius: var(--radius-pill);
            padding: .2rem .8rem;
            box-shadow: 0 4px 12px rgba(35, 184, 153, .35);
            z-index: 2;
        }
        .studio-rating {
            position: absolute;
            right: 12px;
            bottom: -16px;
            background: #fff;
            border: 1.5px solid rgba(35, 184, 153, .3);
            color: var(--accent-gold);
            font-weight: 800;
            font-size: 15px;
            border-radius: var(--radius-pill);
            padding: .2rem .75rem;
            box-shadow: 0 4px 12px rgba(70, 55, 45, .12);
            z-index: 2;
        }
        .studio-rating i {
            font-size: 12px;
            color: var(--accent-gold);
        }
        .studio-rating em {
            font-style: normal;
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* ========== Header 导航 ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1030;
            background: rgba(255, 255, 255, .92);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(35, 184, 153, .1);
            box-shadow: 0 4px 20px rgba(70, 55, 45, .05);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 68px;
            gap: 16px;
            flex-wrap: nowrap;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            flex-shrink: 0;
        }
        .logo-icon {
            width: 38px;
            height: 38px;
            background: var(--gradient-main);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 17px;
            box-shadow: 0 4px 12px rgba(35, 184, 153, .35);
        }
        .logo-text {
            font-size: 18px;
            font-weight: 800;
            color: var(--text-heading);
            letter-spacing: .5px;
            white-space: nowrap;
        }
        .logo-text span {
            color: var(--primary);
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: .4rem 1.1rem;
            border-radius: var(--radius-pill);
            border: 1px solid var(--border-soft);
            background: #fff;
            color: var(--text-body);
            font-size: 14px;
            font-weight: 600;
            transition: all var(--transition-base);
            text-decoration: none;
            white-space: nowrap;
        }
        .nav-chip i {
            color: var(--primary);
            font-size: 13px;
            transition: color var(--transition-base);
        }
        .nav-chip:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(35, 184, 153, .12);
        }
        .nav-chip.active {
            background: var(--gradient-main);
            color: #fff;
            border-color: transparent;
            box-shadow: 0 4px 14px rgba(35, 184, 153, .3);
        }
        .nav-chip.active i {
            color: #fff;
        }
        .header-cta {
            flex-shrink: 0;
        }

        /* ========== Hero 封面区 ========== */
        .category-hero {
            position: relative;
            min-height: 60vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: #22332E;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, rgba(18, 40, 34, .82) 0%, rgba(58, 38, 52, .55) 60%, rgba(35, 184, 153, .18) 100%);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            padding: 5rem 0;
            color: #fff;
        }
        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, .14);
            border: 1px solid rgba(255, 255, 255, .22);
            border-radius: var(--radius-pill);
            padding: .3rem 1rem;
            font-size: 13px;
            font-weight: 600;
            color: rgba(255, 255, 255, .9);
            margin-bottom: 1.2rem;
            backdrop-filter: blur(4px);
        }
        .hero-eyebrow i {
            color: var(--accent-gold);
        }
        .hero-content h1 {
            color: #fff;
            font-size: 34px;
            font-weight: 800;
            line-height: 1.25;
            margin-bottom: 1rem;
            text-shadow: 0 2px 20px rgba(0, 0, 0, .2);
        }
        .hero-content p {
            color: rgba(255, 255, 255, .88);
            font-size: 16px;
            max-width: 620px;
            line-height: 1.8;
            margin-bottom: 1.8rem;
        }
        .hero-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .hero-corner-card {
            position: absolute;
            right: 40px;
            bottom: 36px;
            display: flex;
            gap: 12px;
            z-index: 3;
        }
        .corner-chip {
            background: rgba(255, 255, 255, .12);
            border: 1px solid rgba(255, 255, 255, .2);
            backdrop-filter: blur(6px);
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            border-radius: var(--radius-pill);
            padding: .35rem 1rem;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .corner-chip i {
            color: var(--accent-gold);
        }

        /* ========== 筛选区 ========== */
        .filter-section {
            position: relative;
            z-index: 5;
            margin-top: -38px;
        }
        .filter-wrap {
            background: #fff;
            border-radius: var(--radius-card);
            border: 1px solid var(--border-card);
            box-shadow: var(--shadow-card);
            padding: 1.2rem 1.4rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .filter-label {
            font-weight: 700;
            font-size: 15px;
            color: var(--text-heading);
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .filter-label i {
            color: var(--primary);
        }
        .filter-chips {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .filter-chip {
            border: 1px solid var(--border-soft);
            background: #fff;
            color: var(--text-body);
            font-size: 13px;
            font-weight: 600;
            padding: .35rem 1rem;
            border-radius: var(--radius-pill);
            cursor: pointer;
            transition: all var(--transition-base);
        }
        .filter-chip:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-1px);
        }
        .filter-chip.active {
            background: var(--gradient-main);
            color: #fff;
            border-color: transparent;
            box-shadow: 0 4px 12px rgba(35, 184, 153, .25);
        }

        /* ========== 工作室图鉴网格 ========== */
        .studio-grid-section {
            padding: var(--space-section) 0;
        }
        .section-heading {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        .section-tag {
            display: inline-block;
            background: rgba(35, 184, 153, .08);
            color: var(--primary);
            border: 1px solid rgba(35, 184, 153, .2);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            padding: .3rem 1rem;
            border-radius: var(--radius-pill);
            margin-bottom: .75rem;
        }
        .section-heading h2 {
            font-size: 26px;
            margin-bottom: .5rem;
        }
        .section-heading p {
            color: var(--text-muted);
            font-size: 14px;
            max-width: 640px;
            margin: 0 auto;
        }

        .studio-card {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-base);
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        .studio-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(35, 184, 153, .3);
        }
        .studio-card-img {
            position: relative;
            overflow: hidden;
            padding-bottom: 75%;
            background: #E8F0EC;
        }
        .studio-card-img img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .4s ease;
        }
        .studio-card:hover .studio-card-img img {
            transform: scale(1.03);
        }
        .studio-card-body {
            padding: 1.3rem 1.3rem 1.2rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .studio-card-body h3 {
            font-size: 17px;
            margin-bottom: .35rem;
            margin-top: .2rem;
        }
        .studio-card-body .studio-brief {
            color: var(--text-muted);
            font-size: 13px;
            line-height: 1.6;
            margin-bottom: .85rem;
            flex: 1;
        }
        .studio-meta {
            display: flex;
            gap: 14px;
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: .9rem;
        }
        .studio-meta i {
            color: var(--primary);
            margin-right: 3px;
        }
        .studio-card-body .btn {
            margin-top: auto;
        }

        /* ========== 数据条 ========== */
        .stats-band {
            background: var(--gradient-main);
            padding: 3rem 0;
            position: relative;
            overflow: hidden;
        }
        .stats-band::before {
            content: "";
            position: absolute;
            top: -60%;
            right: -5%;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, .06);
            border-radius: 50%;
        }
        .stats-band::after {
            content: "";
            position: absolute;
            bottom: -80%;
            left: 10%;
            width: 260px;
            height: 260px;
            background: rgba(255, 255, 255, .05);
            border-radius: 50%;
        }
        .stat-item {
            text-align: center;
            color: #fff;
            padding: 1rem 0;
        }
        .stat-num {
            font-size: 32px;
            font-weight: 800;
            line-height: 1.2;
            display: block;
        }
        .stat-label {
            font-size: 14px;
            font-weight: 600;
            opacity: .95;
            margin-top: .15rem;
            display: block;
        }
        .stat-sub {
            font-size: 12px;
            opacity: .8;
            margin-top: .1rem;
            display: block;
        }

        /* ========== 预约流程 ========== */
        .process-section {
            padding: var(--space-section) 0;
            background: var(--bg-page);
        }
        .process-step {
            background: #fff;
            border-radius: var(--radius-card);
            border: 1px solid var(--border-card);
            box-shadow: var(--shadow-card);
            padding: 1.8rem 1.5rem;
            position: relative;
            text-align: left;
            height: 100%;
            transition: all var(--transition-base);
        }
        .process-step:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .process-num {
            width: 44px;
            height: 44px;
            background: var(--gradient-main);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 1rem;
            box-shadow: 0 4px 14px rgba(35, 184, 153, .3);
        }
        .process-step h3 {
            font-size: 16px;
        }
        .process-step p {
            color: var(--text-muted);
            font-size: 13px;
            line-height: 1.65;
            margin-bottom: 0;
        }
        .process-line {
            display: none;
        }

        /* ========== FAQ ========== */
        .faq-section {
            padding: var(--space-section) 0;
            background: #F3F0E9;
        }
        .faq-wrap {
            max-width: 820px;
            margin: 0 auto;
        }
        .accordion {
            --bs-accordion-border-radius: var(--radius-card);
            --bs-accordion-inner-border-radius: var(--radius-card);
            --bs-accordion-border-color: var(--border-card);
            --bs-accordion-active-bg: #fff;
            --bs-accordion-btn-focus-box-shadow: none;
            --bs-accordion-body-padding-x: 1.4rem;
            --bs-accordion-body-padding-y: 1rem;
        }
        .accordion-item {
            border: 1px solid var(--border-card) !important;
            border-radius: var(--radius-card) !important;
            margin-bottom: .8rem;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(70, 55, 45, .04);
        }
        .accordion-button {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-heading);
            background: #fff;
            padding: 1rem 1.4rem;
        }
        .accordion-button:not(.collapsed) {
            color: var(--primary);
            background: rgba(35, 184, 153, .04);
        }
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary);
        }
        .accordion-button::after {
            background-size: 1rem;
            transition: all var(--transition-base);
        }
        .accordion-button:not(.collapsed)::after {
            filter: hue-rotate(140deg);
        }
        .accordion-body {
            color: var(--text-body);
            font-size: 14px;
            line-height: 1.75;
            border-top: 1px dashed var(--border-soft);
        }

        /* ========== CTA 区 ========== */
        .cta-section {
            padding: var(--space-section) 0;
        }
        .cta-card {
            background: var(--gradient-main);
            border-radius: 28px;
            padding: 3rem 2.5rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(35, 184, 153, .3);
            color: #fff;
        }
        .cta-card::before {
            content: "";
            position: absolute;
            top: -100px;
            right: -80px;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .1);
        }
        .cta-card::after {
            content: "";
            position: absolute;
            bottom: -60px;
            left: 20%;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .06);
        }
        .cta-card h2 {
            color: #fff;
            font-size: 27px;
            margin-bottom: .8rem;
            position: relative;
            z-index: 1;
        }
        .cta-card p {
            color: rgba(255, 255, 255, .92);
            font-size: 15px;
            position: relative;
            z-index: 1;
            max-width: 480px;
        }
        .cta-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
            margin-top: 1.2rem;
        }
        .cta-form {
            background: #fff;
            border-radius: 20px;
            padding: 1.6rem;
            box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
            position: relative;
            z-index: 2;
        }
        .cta-form h5 {
            font-size: 16px;
            margin-bottom: 1rem;
            color: var(--text-heading);
        }
        .cta-form .form-control {
            border-radius: var(--radius-medium);
            border: 1px solid var(--border-soft);
            padding: .65rem 1rem;
            font-size: 14px;
            margin-bottom: .75rem;
            background: #FCFAF7;
        }
        .cta-form .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(35, 184, 153, .15);
            background: #fff;
        }
        .form-note {
            font-size: 12px;
            color: var(--text-muted);
            text-align: center;
            margin-bottom: 0;
            margin-top: .5rem;
        }

        /* ========== Footer ========== */
        .site-footer {
            background: #1F2A26;
            color: rgba(255, 255, 255, .75);
            padding: 4rem 0 0;
            font-size: 14px;
        }
        .site-footer h5 {
            color: #fff;
            font-size: 15px;
            margin-bottom: 1rem;
        }
        .site-footer p {
            font-size: 13px;
            color: rgba(255, 255, 255, .65);
            line-height: 1.7;
        }
        .footer-brand-text {
            font-size: 20px;
            font-weight: 800;
            color: #fff;
            margin-bottom: .6rem;
        }
        .footer-social {
            display: flex;
            gap: 10px;
            margin-top: 1rem;
        }
        .footer-social a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, .8);
            font-size: 15px;
            transition: all var(--transition-base);
        }
        .footer-social a:hover {
            background: var(--gradient-main);
            color: #fff;
            transform: translateY(-2px);
        }
        .footer-links,
        .footer-contact {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li,
        .footer-contact li {
            margin-bottom: .5rem;
        }
        .footer-links a {
            color: rgba(255, 255, 255, .65);
            transition: all var(--transition-base);
        }
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 4px;
        }
        .footer-contact i {
            color: var(--primary);
            margin-right: 6px;
            width: 16px;
            text-align: center;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .1);
            padding: 1.2rem 0;
            margin-top: 2.5rem;
            text-align: center;
            font-size: 13px;
            color: rgba(255, 255, 255, .5);
        }
        .footer-bottom .container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px;
        }

        /* ========== 响应式 ========== */
        @media (max-width: 991px) {
            .header-inner {
                flex-wrap: wrap;
                padding-top: .6rem;
                padding-bottom: .6rem;
                gap: 10px;
            }
            .main-nav {
                order: 3;
                width: 100%;
                overflow-x: auto;
                padding-bottom: .3rem;
                justify-content: flex-start;
            }
            .nav-chip {
                font-size: 13px;
                padding: .3rem .9rem;
            }
            .header-cta {
                margin-left: auto;
            }
            .logo-text {
                font-size: 16px;
            }
            .hero-content h1 {
                font-size: 28px;
            }
            .cta-card {
                padding: 2rem 1.5rem;
            }
        }

        @media (max-width: 767px) {
            :root {
                --space-section: 48px;
            }
            .category-hero {
                min-height: 50vh;
            }
            .hero-content {
                padding: 3rem 0;
            }
            .hero-content h1 {
                font-size: 24px;
            }
            .hero-content p {
                font-size: 14px;
            }
            .hero-actions .btn {
                width: 100%;
                margin-bottom: 0;
            }
            .hero-corner-card {
                display: none;
            }
            .filter-section {
                margin-top: -24px;
            }
            .filter-wrap {
                padding: 1rem;
                border-radius: var(--radius-card);
            }
            .filter-chips {
                flex-wrap: nowrap;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                padding-bottom: .2rem;
                width: 100%;
            }
            .filter-chip {
                white-space: nowrap;
                flex-shrink: 0;
            }
            .stat-num {
                font-size: 26px;
            }
            .stat-label {
                font-size: 13px;
            }
            .stat-sub {
                font-size: 11px;
            }
            .cta-buttons .btn {
                width: 100%;
            }
            .cta-card h2 {
                font-size: 22px;
            }
            .footer-bottom .container {
                font-size: 12px;
                padding: 0 1rem;
            }
        }

        @media (max-width: 575px) {
            .logo-text {
                font-size: 15px;
            }
            .header-cta .btn-sm {
                padding: .3rem .7rem;
                font-size: 13px;
            }
            .logo-icon {
                width: 34px;
                height: 34px;
                font-size: 15px;
            }
            .section-heading h2 {
                font-size: 21px;
            }
            .stats-band {
                padding: 2rem 0;
            }
            .process-step {
                padding: 1.3rem 1rem;
            }
            .faq-section {
                padding: 48px 0;
            }
        }
