/* =============================================
   shared.css — Dperch 栖枝 V3 全局样式
   品牌色: 蓝紫渐变 (#4F46E5 → #7C3AED → #A855F7)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ===== Design Tokens ===== */
:root {
  --brand-1: #4F46E5;
  --brand-2: #6366F1;
  --brand-3: #7C3AED;
  --brand-4: #8B5CF6;
  --brand-5: #A855F7;
  --gradient-brand: linear-gradient(135deg, #4F46E5 0%, #7C3AED 50%, #A855F7 100%);
  --gradient-brand-hover: linear-gradient(135deg, #4338CA 0%, #6D28D9 50%, #9333EA 100%);
  --gradient-soft: linear-gradient(135deg, rgba(79,70,229,0.08) 0%, rgba(124,58,237,0.06) 100%);
  --gradient-hero: radial-gradient(ellipse 80% 60% at 60% 20%, rgba(124,58,237,0.10) 0%, transparent 60%),
                  radial-gradient(ellipse 50% 40% at 80% 70%, rgba(79,70,229,0.08) 0%, transparent 60%),
                  radial-gradient(ellipse 40% 30% at 10% 80%, rgba(168,85,247,0.05) 0%, transparent 60%);
  
  --text-1: #111827;
  --text-2: #374151;
  --text-3: #6B7280;
  --text-4: #9CA3AF;
  --bg-base: #FAFBFF;
  --bg-white: #FFFFFF;
  --bg-elevated: #EEF0FF;
  --border-light: #E5E7EB;
  --border-medium: #D1D5DB;
  
  --shadow-xs: 0 1px 2px rgba(79,70,229,0.05);
  --shadow-sm: 0 2px 8px rgba(79,70,229,0.08), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(79,70,229,0.12), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg: 0 8px 32px rgba(79,70,229,0.16), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl: 0 16px 48px rgba(79,70,229,0.20), 0 8px 24px rgba(0,0,0,0.08);
  --shadow-glow: 0 0 30px rgba(79,70,229,0.15);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --font-body: 'Inter', 'PingFang SC', 'Noto Sans SC', sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', 'PingFang SC', sans-serif;

  --nav-height: 68px;
  --container-max: 1200px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-1);
  line-height: 1.65;
  font-size: 15px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ===== Scroll Progress Bar ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--gradient-brand);
  z-index: 9999;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 12px rgba(79,70,229,0.4);
}

/* ===== Navigation ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--nav-height);
  background: rgba(250,251,255,0.75);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(79,70,229,0.06);
  transition: all 0.35s cubic-bezier(.25,.46,.45,.94);
}
.nav.scrolled {
  background: rgba(250,251,255,0.92);
  box-shadow: 0 2px 20px rgba(79,70,229,0.08);
}
.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.logo-icon svg { width: 36px; height: 36px; }
.logo-text {
  font-family: var(--font-display);
  font-size: 21px; font-weight: 800;
  letter-spacing: -0.5px;
  color: #2563EB;
  /* Dperch blue from logo */
}

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  display: block; padding: 8px 15px; border-radius: var(--radius-sm);
  color: var(--text-2); font-size: 14px; font-weight: 500;
  transition: all 0.2s ease;
}
.nav-link:hover { color: var(--brand-1); background: rgba(79,70,229,0.06); }
.nav-link.active { color: var(--brand-1); background: rgba(79,70,229,0.09); font-weight: 600; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gradient-brand); color: white !important;
  padding: 8px 18px; border-radius: 10px;
  font-size: 13px; font-weight: 700;
  box-shadow: 0 2px 12px rgba(79,70,229,0.3);
  transition: all 0.25s ease !important;
  margin-left: 8px;
}
.nav-cta:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 6px 24px rgba(79,70,229,0.45) !important;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px;
}
.hamburger span {
  width: 22px; height: 2px; background: var(--text-1);
  border-radius: 2px; transition: all 0.25s ease;
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--gradient-brand); color: white;
  font-size: 15px; font-weight: 600;
  padding: 13px 26px; border-radius: 12px;
  box-shadow: 0 4px 20px rgba(79,70,229,0.35);
  transition: all 0.25s cubic-bezier(.25,.46,.45,.94);
  text-decoration: none; line-height: 1;
  border: none; cursor: pointer; font-family: inherit;
}
.btn-primary:hover {
  transform: translateY(-2.5px);
  box-shadow: 0 8px 32px rgba(79,70,229,0.45);
  background: var(--gradient-brand-hover);
}
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: white; color: var(--text-1);
  font-size: 15px; font-weight: 500;
  padding: 13px 26px; border-radius: 12px;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  text-decoration: none; line-height: 1;
}
.btn-secondary:hover {
  border-color: var(--brand-1); color: var(--brand-1);
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}

/* ===== Container & Section ===== */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 32px; }
.section { padding: 80px 0; }
.section-header { margin-bottom: 48px; }
.section-label {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--brand-1); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 800;
  letter-spacing: -1.2px; line-height: 1.15;
}
.section-title .hl {
  background: var(--gradient-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub { font-size: 16px; color: var(--text-3); margin-top: 12px; max-width: 520px; line-height: 1.65; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; min-height: 100dvh;
  padding: calc(var(--nav-height) + 60px) 32px 80px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--gradient-hero);
}
.hero-dots {
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle, rgba(79,70,229,0.12) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 25%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 25%, transparent 100%);
}
.hero-inner {
  max-width: var(--container-max); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: center; position: relative; z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(79,70,229,0.07); border: 1px solid rgba(79,70,229,0.14);
  color: var(--brand-1); font-size: 13px; font-weight: 600;
  padding: 7px 16px; border-radius: var(--radius-full);
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge .pulse-dot {
  width: 7px; height: 7px; background: #10B981;
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
  50% { opacity: 0.8; transform: scale(1.3); box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 60px); font-weight: 800;
  line-height: 1.08; letter-spacing: -1.8px;
  margin-bottom: 22px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-title .hl { background: var(--gradient-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc {
  font-size: 17px; color: var(--text-2); line-height: 1.72;
  margin-bottom: 34px; max-width: 480px;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 42px; animation: fadeUp 0.6s 0.3s ease both; }

/* Stats Bar */
.hero-stats {
  display: flex; gap: 36px; padding-top: 32px;
  border-top: 1px solid rgba(79,70,229,0.10);
  animation: fadeUp 0.6s 0.4s ease both;
}
.hero-stat .stat-num {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.hero-stat .stat-label { font-size: 12.5px; color: var(--text-4); margin-top: 3px; }

/* Hero Visual Area */
.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s 0.25s ease both;
}
.hero-cards-stack { position: relative; width: 100%; padding-bottom: 78%; }
.hero-card {
  position: absolute; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-lg);
  transition: all 0.45s cubic-bezier(.25,.46,.45,.94);
  background: white;
}
.hero-card:hover { transform: translateY(-4px) scale(1.02)!important; box-shadow: var(--shadow-xl); }
.hero-card-main {
  background: white; padding: 20px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 260px;
}
.card-tag-pill {
  display: inline-block;
  background: var(--gradient-soft);
  color: var(--brand-1);
  font-size: 11px; font-weight: 700;
  padding: 4px 11px; border-radius: 6px;
  letter-spacing: 0.5px;
}
.card-title-sm { font-size: 15px; font-weight: 700; color: var(--text-1); }
.card-img-placeholder {
  flex: 1; border-radius: var(--radius-md);
  background: var(--gradient-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 42px; min-height: 150px;
}
.floating-bubble {
  position: absolute; background: white;
  border-radius: 14px; padding: 10px 17px;
  box-shadow: var(--shadow-lg); z-index: 10;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--text-1);
  animation: floatY 3.5s ease-in-out infinite;
}
.floating-bubble .bubble-icon { font-size: 18px; }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ===== Works Grid ===== */
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.work-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(.25,.46,.45,.94);
  cursor: pointer; text-decoration: none; color: inherit; display: block;
  position: relative;
}
.work-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79,70,229,0.18);
}
.work-card-img {
  width: 100%; aspect-ratio: 16/10; overflow: hidden;
  background: var(--gradient-soft); position: relative;
}
.work-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.work-card:hover .work-card-img img { transform: scale(1.06); }
.work-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; background: var(--gradient-soft);
}
.work-card-body { padding: 20px 22px; }
.work-card-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.work-cat {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px;
  color: var(--brand-1); background: rgba(79,70,229,0.08);
  padding: 3px 9px; border-radius: 5px;
}
.work-year { font-size: 12px; color: var(--text-4); margin-left: auto; }
.work-card-title { font-size: 16px; font-weight: 700; line-height: 1.35; margin-bottom: 8px; color: var(--text-1); }
.work-card-desc { font-size: 13px; color: var(--text-3); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.work-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; }
.work-tag { font-size: 11px; padding: 3px 9px; border-radius: 5px; background: var(--bg-elevated); color: var(--text-3); font-weight: 500; }

/* Filter buttons */
.filter-bar { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.filter-btn {
  background: white; border: 1.5px solid var(--border-light);
  color: var(--text-3); font-size: 13px; font-weight: 500;
  padding: 7px 17px; border-radius: var(--radius-full); cursor: pointer;
  transition: all 0.2s ease;
}
.filter-btn:hover { border-color: var(--brand-1); color: var(--brand-1); }
.filter-btn.active {
  background: var(--gradient-brand); color: white;
  border-color: transparent;
  box-shadow: 0 2px 12px rgba(79,70,229,0.3);
}

/* ===== Reviews ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: white; border-radius: var(--radius-lg);
  padding: 24px; border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease; position: relative;
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.review-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.review-stars span { color: #F59E0B; font-size: 14px; }
.review-quote { font-size: 36px; line-height: 1; color: var(--brand-1); opacity: 0.2; font-family: Georgia, serif; margin-bottom: 10px; }
.review-text { font-size: 14px; line-height: 1.72; color: var(--text-3); margin-bottom: 18px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: white; font-weight: 700; flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 600; color: var(--text-1); }
.review-role { font-size: 12px; color: var(--text-4); margin-top: 2px; }
.review-platform {
  position: absolute; top: 16px; right: 16px;
  font-size: 11px; color: var(--text-4);
  background: var(--bg-elevated); padding: 3px 9px; border-radius: 5px;
}

/* ===== Blog Cards ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-decoration: none; color: inherit; display: block;
  transition: all 0.3s ease;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(79,70,229,0.15); }
.blog-card-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 20px 22px; }
.blog-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.blog-tag {
  font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 5px;
  background: rgba(79,70,229,0.08); color: var(--brand-1);
}
.blog-card-title { font-size: 15px; font-weight: 700; line-height: 1.4; margin-bottom: 8px; color: var(--text-1); }
.blog-excerpt { font-size: 13px; color: var(--text-3); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-date { font-size: 12px; color: var(--text-4); margin-top: 14px; }

/* ===== CTA Section ===== */
.cta-section { background: var(--bg-white); padding: 80px 32px; }
.cta-box {
  max-width: var(--container-max); margin: 0 auto;
  background: var(--gradient-brand);
  border-radius: var(--radius-xl); padding: 64px;
  display: grid; grid-template-columns: 1fr auto; gap: 48px;
  align-items: center; position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute;
  width: 420px; height: 420px; border-radius: 50%;
  background: rgba(255,255,255,0.06); top: -200px; right: -100px;
}
.cta-box::after {
  content: ''; position: absolute;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(255,255,255,0.04); bottom: -100px; left: 100px;
}
.cta-title { font-family: var(--font-display); font-size: 34px; font-weight: 800; color: white; letter-spacing: -1px; margin-bottom: 12px; position: relative; z-index: 1; }
.cta-sub { font-size: 17px; color: rgba(255,255,255,0.82); line-height: 1.65; position: relative; z-index: 1; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; position: relative; z-index: 1; }
.cta-note { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ===== Footer ===== */
.footer {
  background: #0F1222; color: rgba(255,255,255,0.55);
  padding: 56px 32px 32px;
}
.footer-inner { max-width: var(--container-max); margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 40px;
}
.footer-brand-name {
  font-family: var(--font-display); font-size: 20px;
  font-weight: 800; color: white; margin-bottom: 10px;
}
.footer-brand-desc { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.45); max-width: 280px; }
.footer-col h4 { color: white; font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.footer-link {
  display: block; font-size: 13px; color: rgba(255,255,255,0.4);
  text-decoration: none; margin-bottom: 8px; transition: color 0.2s;
}
.footer-link:hover { color: white; }
.footer-divider { height: 1px; background: rgba(255,255,255,0.07); margin-bottom: 24px; }
.footer-bottom-row { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.3); }
.visit-badge {
  background: rgba(79,70,229,0.18);
  border: 1px solid rgba(79,70,229,0.28);
  color: rgba(255,255,255,0.7);
  font-size: 12px; padding: 4px 13px;
  border-radius: var(--radius-full);
}

/* ===== Pricing Sidebar ===== */
.sidebar-trigger {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  background: var(--gradient-brand); color: white;
  writing-mode: vertical-rl; text-orientation: mixed;
  font-size: 12.5px; font-weight: 700; letter-spacing: 2.5px;
  padding: 18px 11px; border-radius: 12px 0 0 12px;
  cursor: pointer; z-index: 600;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}
.sidebar-trigger:hover { padding-right: 15px; box-shadow: var(--shadow-xl); }
.sidebar-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  z-index: 599; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease; backdrop-filter: blur(4px);
}
.sidebar-overlay.active { opacity: 1; pointer-events: all; }
.sidebar-panel {
  position: fixed; right: -430px; top: 0; bottom: 0; width: 430px;
  background: white; z-index: 700; overflow-y: auto;
  box-shadow: -8px 0 48px rgba(79,70,229,0.18);
  transition: right 0.4s cubic-bezier(.25,.46,.45,.94);
  padding: 32px;
}
.sidebar-panel.open { right: 0; }
.sidebar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.sidebar-header h3 { font-family: var(--font-display); font-size: 20px; font-weight: 800; }
.sidebar-close {
  background: var(--bg-elevated); border: none;
  width: 36px; height: 36px; border-radius: 50%;
  cursor: pointer; font-size: 18px; display: flex;
  align-items: center; justify-content: center;
  color: var(--text-3); transition: all 0.2s;
}
.sidebar-close:hover { background: rgba(79,70,229,0.1); color: var(--brand-1); }

.pricing-section { margin-bottom: 28px; }
.pricing-section h4 {
  font-size: 13px; font-weight: 700; color: var(--text-4);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 14px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}
.price-table { width: 100%; border-collapse: collapse; }
.price-table td { padding: 10px 0; font-size: 13px; line-height: 1.55; border-bottom: 1px solid var(--bg-elevated); }
.price-table tr:last-child td { border-bottom: none; }
.price-table td:first-child { color: var(--text-3); padding-right: 14px; }
.price-table td:last-child { font-weight: 700; color: var(--brand-1); text-align: right; white-space: nowrap; }

.sidebar-contact-card {
  background: var(--gradient-brand); border-radius: var(--radius-md);
  padding: 24px; color: white; text-align: center;
}
.sidebar-qr {
  width: 180px; border-radius: 12px;
  margin: 14px auto 0; display: block;
  border: 3px solid rgba(255,255,255,0.25);
}
.contact-note { font-size: 12.5px; opacity: 0.78; margin-top: 10px; line-height: 1.5; }
.contact-wechat-id { font-size: 15px; font-weight: 700; margin-top: 4px; }

/* Price notes */
.price-notes {
  font-size: 11.5px; color: var(--text-4); line-height: 1.6;
  margin-top: 16px; padding: 12px;
  background: #FFFDF7; border-radius: var(--radius-sm);
  border-left: 3px solid #F59E0B;
}

/* ===== Pricing Page (full) ===== */
.pricing-page-content {
  max-width: 880px; margin: 0 auto; padding: 0 0 80px;
}
.pricing-page-content > h1 {
  font-family: var(--font-display); font-size: 32px; font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 12px;
}
.pricing-page-content > blockquote {
  border-left: 4px solid var(--brand-2);
  background: var(--gradient-soft);
  padding: 14px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 36px; color: var(--text-3); font-size: 14px; line-height: 1.7;
}
.pricing-page-content > h2 {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--text-1); margin-top: 40px; margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 2px solid var(--bg-elevated);
  display: flex; align-items: center; gap: 8px;
}
.pricing-page-content > hr {
  border: none; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
  margin: 36px 0;
}
.pricing-page-content ul { list-style: none; padding: 0; margin: 16px 0; }
.pricing-page-content ul li {
  padding: 8px 0 8px 28px; position: relative;
  font-size: 14.5px; color: var(--text-2); line-height: 1.7;
}
.pricing-page-content ul li::before {
  content: '✓'; position: absolute; left: 0; top: 8px;
  color: var(--brand-2); font-weight: 700; font-size: 15px;
}
.pricing-page-content > p { font-size: 14.5px; color: var(--text-2); line-height: 1.75; }
.pricing-page-content a {
  color: var(--brand-1); text-decoration: underline;
  text-decoration-color: rgba(79,70,229,0.3); text-underline-offset: 3px;
}
.pricing-page-content a:hover { text-decoration-color: var(--brand-1); }

/* Price table (markdown rendered) */
.price-table-wrap {
  overflow-x: auto; margin: 16px 0 8px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
}
.pricing-page-content table,
.sidebar-panel table {
  width: 100%; border-collapse: collapse; font-size: 14px;
}
.pricing-page-content table th,
.sidebar-panel table th {
  text-align: left; padding: 12px 16px;
  font-size: 12px; font-weight: 700; color: var(--text-4);
  text-transform: uppercase; letter-spacing: 1px;
  background: var(--bg-elevated); border-bottom: 2px solid var(--border-light);
}
.pricing-page-content table td,
.sidebar-panel table td {
  padding: 14px 16px; border-bottom: 1px solid var(--bg-elevated);
  line-height: 1.6; vertical-align: top;
}
.pricing-page-content table td:last-child,
.sidebar-panel table td:last-child {
  font-weight: 700; color: var(--brand-1); white-space: nowrap; text-align: right;
}
.pricing-page-content table tr:last-child td,
.sidebar-panel table tr:last-child td { border-bottom: none; }
.pricing-page-content table tr:hover td,
.sidebar-panel table tr:hover td { background: rgba(79,70,229,0.03); }

/* Sidebar markdown overrides */
.sidebar-panel > div > h1 { display: none; }
.sidebar-panel > div > blockquote {
  font-size: 12px; padding: 10px 14px; margin-bottom: 20px;
  border-left: 3px solid var(--brand-2);
  background: var(--gradient-soft); border-radius: 0 8px 8px 0;
  color: var(--text-3);
}
.sidebar-panel > div > h2 {
  font-size: 13px; font-weight: 700; color: var(--text-4);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-top: 24px; margin-bottom: 12px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}
.sidebar-panel > div > hr { display: none; }
.sidebar-panel > div > p { font-size: 12.5px; color: var(--text-3); line-height: 1.6; }
.sidebar-panel > div > ul { margin: 8px 0; }
.sidebar-panel > div > ul li {
  font-size: 11.5px; padding: 4px 0 4px 22px;
}
.sidebar-panel > div > ul li::before { font-size: 12px; top: 4px; }
.sidebar-panel table { font-size: 12.5px; }
.sidebar-panel table th { font-size: 10px; padding: 8px 10px; }
.sidebar-panel table td { padding: 10px; }
.sidebar-panel .price-table-wrap { box-shadow: none; border-radius: 0; }

/* Pricing contact section */
.pricing-contact-section { margin-top: 48px; }
.pricing-contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.pricing-contact-card {
  background: white; border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex; flex-direction: column; align-items: center;
}
.pricing-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79,70,229,0.2);
}
.pricing-contact-icon { font-size: 32px; margin-bottom: 12px; }
.pricing-contact-card h3 {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  margin-bottom: 16px;
}
.pricing-contact-qr {
  width: 140px; height: 140px; border-radius: var(--radius-md);
  object-fit: contain; margin-bottom: 14px;
  box-shadow: var(--shadow-xs); background: #fff; padding: 6px;
  transition: transform 0.3s ease;
}
.pricing-contact-qr:hover { transform: scale(1.15); }
.pricing-contact-qr-placeholder {
  width: 140px; height: 140px; border-radius: var(--radius-md);
  background: var(--gradient-soft); margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  border: 2px dashed var(--border-medium);
}
.pricing-contact-id { font-size: 14px; font-weight: 600; color: var(--text-2); }
.pricing-contact-note { font-size: 12.5px; color: var(--text-4); margin-top: 4px; }
.pricing-copy-btn {
  margin-top: 12px; background: var(--bg-elevated); border: none;
  padding: 8px 20px; border-radius: var(--radius-full);
  font-size: 12.5px; font-weight: 600; color: var(--brand-1);
  cursor: pointer; transition: all 0.2s;
}
.pricing-copy-btn:hover { background: rgba(79,70,229,0.1); }
.pricing-contact-link {
  display: inline-block; margin-top: 12px;
  font-size: 13px; font-weight: 600; color: var(--brand-1);
  text-decoration: none; padding: 8px 20px;
  background: var(--bg-elevated); border-radius: var(--radius-full);
  transition: all 0.2s;
}
.pricing-contact-link:hover { background: rgba(79,70,229,0.1); }
.pricing-contact-link-big {
  display: block; font-size: 14px; font-weight: 700;
  color: var(--brand-1); text-decoration: none;
}

@media (max-width: 768px) {
  .pricing-contact-grid { grid-template-columns: 1fr; }
  .pricing-page-content > h1 { font-size: 26px; }
  .pricing-page-content > h2 { font-size: 19px; }
  .pricing-contact-qr { width: 120px; height: 120px; }
}

/* ===== Floating QR (bottom-right corner of every page) ===== */
.float-qr {
  position: fixed; right: 20px; bottom: 20px; z-index: 450;
  background: white; border-radius: 14px;
  padding: 10px; box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  cursor: pointer;
  opacity: 0.88;
}
.float-qr:hover { opacity: 1; transform: translateY(-3px); box-shadow: var(--shadow-xl); }
.float-qr img {
  width: 52px; height: 52px; border-radius: 8px;
  object-fit: cover;
}
.float-qr-label {
  font-size: 10px; color: var(--text-4); text-align: center;
  margin-top: 4px; font-weight: 500; letter-spacing: 0.3px;
}

/* ===== Page Banner (for sub-pages) ===== */
.page-banner {
  padding: 130px 32px 70px; text-align: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0F1222 0%, #1a1f3c 50%, #2d1b4e 100%);
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(79,70,229,0.15) 1px, transparent 1px);
  background-size: 36px 36px;
}
.page-banner-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.page-banner-label {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: #A5B4FC; margin-bottom: 16px;
}
.page-banner-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 48px); font-weight: 800;
  color: white; letter-spacing: -1px; margin-bottom: 14px;
  line-height: 1.15;
}
.page-banner-sub { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ===== Markdown Content Styles ===== */
.markdown-body {
  font-size: 15.5px; line-height: 1.82; color: var(--text-2);
}
.markdown-body h1, .markdown-body h2, .markdown-body h3,
.markdown-body h4, .markdown-body h5, .markdown-body h6 {
  font-family: var(--font-display);
  color: var(--text-1); font-weight: 700;
  margin-top: 1.8em; margin-bottom: 0.6em; line-height: 1.3;
}
.markdown-body h1 { font-size: 2em; }
.markdown-body h2 { font-size: 1.6em; padding-bottom: 0.3em; border-bottom: 1px solid var(--border-light); }
.markdown-body h3 { font-size: 1.3em; }
.markdown-body p { margin-bottom: 1.2em; }
.markdown-body a { color: var(--brand-1); border-bottom: 1px solid rgba(79,70,229,0.25); transition: all 0.15s; }
.markdown-body a:hover { border-bottom-color: var(--brand-1); }
.markdown-body code {
  background: var(--bg-elevated); padding: 2px 7px;
  border-radius: 5px; font-size: 0.89em; font-family: 'JetBrains Mono', 'Fira Code', monospace;
  color: var(--brand-3);
}
.markdown-body pre {
  background: #1E1B4B; color: #E2E8F0;
  padding: 20px 24px; border-radius: var(--radius-md);
  overflow-x: auto; margin: 1.5em 0;
  font-size: 13.5px; line-height: 1.65;
}
.markdown-body pre code { background: none; padding: 0; color: inherit; font-size: inherit; }
.markdown-body blockquote {
  border-left: 4px solid var(--brand-1); padding: 12px 20px;
  margin: 1.5em 0; background: rgba(79,70,229,0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-3); font-style: italic;
}
.markdown-body ul, .markdown-body ol {
  padding-left: 1.8em; margin-bottom: 1.2em;
}
.markdown-body li { margin-bottom: 0.4em; }
.markdown-body ul li { list-style-type: disc; }
.markdown-body ol li { list-style-type: decimal; }
.markdown-body img { border-radius: var(--radius-md); margin: 1.2em 0; box-shadow: var(--shadow-sm); }
.markdown-body table {
  width: 100%; border-collapse: collapse; margin: 1.5em 0;
  font-size: 14px;
}
.markdown-body th, .markdown-body td {
  border: 1px solid var(--border-light); padding: 10px 14px;
  text-align: left;
}
.markdown-body th { background: var(--bg-elevated); font-weight: 600; color: var(--text-1); }
.markdown-body strong { color: var(--text-1); font-weight: 700; }
.markdown-body hr { border: none; border-top: 1px solid var(--border-light); margin: 2em 0; }
.markdown-body .tag-list { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.md-tag {
  font-size: 12px; padding: 4px 11px; border-radius: 6px;
  background: var(--bg-elevated); color: var(--brand-1); font-weight: 600;
}

/* ===== Scroll Reveal Animation ===== */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.25,.46,.45,.94),
              transform 0.7s cubic-bezier(.25,.46,.45,.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(36px)} to{opacity:1;transform:translateX(0)} }
@keyframes fadeInLeft { from{opacity:0;transform:translateX(-36px)} to{opacity:1;transform:translateX(0)} }

/* ===== Loading Skeleton ===== */
.skeleton {
  background: linear-gradient(90deg, var(--bg-elevated) 25%, rgba(79,70,229,0.06) 50%, var(--bg-elevated) 75%);
  background-size: 200% 100%; animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}
@keyframes shimmer { 0%{background-position:-200% 0} 100%{background-position:200% 0} }

/* ===== Mobile Menu Overlay ===== */
.mobile-nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 498;
  background: rgba(0,0,0,0.3); backdrop-filter: blur(4px);
}
.mobile-nav-overlay.open { display: block; }
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 499;
  background: white; padding: 80px 32px 32px;
  transform: translateX(-100%); transition: transform 0.35s ease;
  overflow-y: auto;
}
.mobile-menu.open { display: block; transform: translateX(0); }
.mobile-menu a {
  display: block; font-size: 18px; font-weight: 600;
  color: var(--text-1); padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--brand-1); }

/* ===== Responsive ===== */

/* ---- Tablet (<= 1024px) ---- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; max-width: 460px; margin: 0 auto; }
  .hero-cards-stack { padding-bottom: 66%; }
  .works-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-box { grid-template-columns: 1fr; padding: 44px 32px; }
  .cta-actions { align-items: flex-start; }
  .sidebar-panel { width: 90%; right: -110%; }
  .container { padding: 0 24px; }
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }
}

/* ---- Mobile (<= 768px) ---- */
@media (max-width: 768px) {
  /* Navigation */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 16px; }
  .logo-icon svg { width: 30px; height: 30px; }
  .logo-text { font-size: 18px; }

  /* Mobile menu */
  .mobile-menu { padding: 70px 20px 32px; }
  .mobile-menu a { font-size: 16px; padding: 13px 0; }

  /* Container & Section */
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .section-header { margin-bottom: 28px; }
  .section-title { font-size: clamp(24px, 6vw, 32px); letter-spacing: -0.8px; }
  .section-sub { font-size: 14px; margin-top: 8px; }
  .section-label { font-size: 11px; letter-spacing: 1.5px; }

  /* Hero */
  .hero {
    padding: calc(var(--nav-height) + 24px) 16px 48px;
    min-height: auto;
  }
  .hero-visual { display: none; } /* Hide visual cards on mobile for cleaner layout */
  .hero-inner { gap: 0; }
  .hero-badge { font-size: 12px; padding: 6px 13px; margin-bottom: 18px; }
  .hero-title { font-size: clamp(30px, 8vw, 42px); letter-spacing: -1.2px; margin-bottom: 16px; line-height: 1.12; }
  .hero-desc { font-size: 15px; line-height: 1.68; margin-bottom: 24px; }
  .hero-actions { gap: 10px; margin-bottom: 28px; }
  .btn-primary, .btn-secondary { font-size: 14px; padding: 11px 20px; border-radius: 10px; }

  /* Hero stats */
  .hero-stats-row {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px; margin-top: 28px; padding-top: 24px;
  }
  .stat-item { padding: 12px 8px; }
  .stat-icon { font-size: 20px; margin-bottom: 4px; }
  .stat-num { font-size: 22px; }
  .stat-label { font-size: 11px; }

  /* Trust badges */
  .trust-bar { gap: 8px; margin-top: 20px; }
  .trust-badge { font-size: 11.5px; padding: 5px 11px; gap: 4px; }

  /* Service highlights */
  .service-highlights { grid-template-columns: 1fr !important; gap: 12px; margin-top: 24px; }
  .service-card { padding: 18px; }
  .service-icon { font-size: 28px; margin-bottom: 8px; }
  .service-title { font-size: 14px; }
  .service-desc { font-size: 12.5px; line-height: 1.55; }

  /* Works grid */
  .works-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .work-card-rich { border-radius: 14px; }
  .wcr-cover { aspect-ratio: 16/10; }
  .wcr-cover-icon { font-size: 32px; }
  .wcr-cover-cat-badge { font-size: 10.5px; padding: 4px 10px; top: 10px; left: 10px; }
  .wcr-body { padding: 14px 14px 12px; }
  .wcr-title { font-size: 14.5px; }
  .wcr-desc { font-size: 12.5px; line-height: 1.5; margin-bottom: 10px; -webkit-line-clamp: 2; }
  .wcr-tags-row { gap: 5px; margin-bottom: 10px; }
  .wcr-tag { font-size: 10.5px; padding: 2.5px 8px; }
  .wcr-stats-bar { padding-top: 10px; gap: 10px; font-size: 11px; }
  .wcr-year { font-size: 10.5px; padding: 2.5px 7px; }

  /* Filter bar */
  .filter-bar { gap: 6px; margin-bottom: 24px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .filter-btn { font-size: 12.5px; padding: 6px 14px; white-space: nowrap; }
  .filter-bar::-webkit-scrollbar { height: 3px; }
  .filter-bar::-webkit-scrollbar-thumb { background: var(--border-medium); border-radius: 3px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; gap: 14px; }
  .review-card { padding: 18px; border-radius: 14px; }
  .review-text { font-size: 13px; line-height: 1.68; margin-bottom: 14px; }
  .review-platform { font-size: 10.5px; padding: 2.5px 8px; top: 14px; right: 14px; }
  .review-avatar { width: 36px; height: 36px; font-size: 14px; }

  /* Blog cards */
  .blog-grid { grid-template-columns: 1fr; gap: 16px; }
  .blog-card { border-radius: 14px; }
  .blog-card-img { aspect-ratio: 16/10; }
  .blog-card-body { padding: 16px; }
  .blog-card-title { font-size: 14.5px; line-height: 1.38; margin-bottom: 6px; }
  .blog-excerpt { font-size: 12.5px; line-height: 1.55; -webkit-line-clamp: 2; }
  .blog-date { font-size: 11.5px; margin-top: 10px; }
  .blog-tag { font-size: 10.5px; padding: 2.5px 8px; }

  /* CTA */
  .cta-section { padding: 48px 16px; }
  .cta-box { padding: 32px 24px; border-radius: 20px; }
  .cta-title { font-size: 22px; letter-spacing: -0.5px; margin-bottom: 10px; }
  .cta-sub { font-size: 14px; line-height: 1.6; }
  .cta-actions { align-items: stretch; gap: 10px; }
  .cta-actions .btn-white { font-size: 14px; padding: 11px 20px; text-align: center; }
  .cta-note { font-size: 12px; text-align: center; }

  /* Footer */
  .footer { padding: 40px 16px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand-desc { font-size: 12.5px; max-width: 100%; }
  .footer-bottom-row { flex-direction: column; gap: 8px; text-align: center; }
  .footer-col h4 { font-size: 13px; margin-bottom: 12px; }
  .footer-col a { font-size: 12.5px; margin-bottom: 6px; }

  /* Sidebar trigger */
  .sidebar-trigger {
    font-size: 11px; padding: 14px 9px;
    letter-spacing: 1.5px; border-radius: 10px 0 0 10px;
  }
  .sidebar-panel { padding: 24px 20px; }

  /* Page banner */
  .page-banner { padding: 100px 16px 44px; }
  .page-banner-title { font-size: clamp(24px, 6vw, 32px); }
  .page-banner-sub { font-size: 14px; }

  /* Article panel (blog reader) */
  .article-panel { width: 100%; }
  .article-panel-header { padding: 16px 20px; }
  .article-body { padding: 20px; }
  .article-body h1 { font-size: 22px; }
  .article-body h2 { font-size: 18px; }
  .article-body p { font-size: 14.5px; line-height: 1.75; }

  /* Work detail modal */
  .work-detail-panel { width: 95vw; max-height: 90vh; border-radius: 16px; }
  .detail-body { padding: 20px; }
  .detail-title { font-size: 20px; }
  .detail-img { aspect-ratio: 16/10; }

  /* Markdown body */
  .markdown-body { font-size: 14.5px; line-height: 1.78; }
  .markdown-body img { border-radius: 10px; }
  .markdown-body pre { padding: 14px 16px; font-size: 12.5px; }
  .markdown-body table { font-size: 13px; }
  .markdown-body th, .markdown-body td { padding: 8px 10px; }

  /* Hide floating QR on mobile */
  .float-qr { display: none; }

  /* Tag filter bar (blog) */
  .tag-filter-bar { gap: 6px; margin-bottom: 24px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .tag-btn { font-size: 12.5px; padding: 6px 14px; white-space: nowrap; }
  .tag-filter-bar::-webkit-scrollbar { height: 3px; }
}

/* ---- Small mobile (<= 480px) ---- */
@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .hero-desc { font-size: 14px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; }
  .hero-stats-row { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
  .stat-item { padding: 10px 6px; }
  .stat-num { font-size: 20px; }
  .trust-bar { flex-direction: row; flex-wrap: wrap; }
  .trust-badge { font-size: 11px; padding: 4px 10px; }
  .works-grid { gap: 14px !important; }
  .wcr-body { padding: 12px 12px 10px; }
  .wcr-title { font-size: 14px; }
  .wcr-desc { -webkit-line-clamp: 2; font-size: 12px; }
  .cta-box { padding: 28px 20px; }
  .cta-title { font-size: 20px; }
}

/* ===== Footer QR Codes Bar (all pages) ===== */
.footer-qrs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 28px 20px;
  margin-top: 8px;
}
.footer-qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer-qr-img {
  width: 130px; height: 130px;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.35s cubic-bezier(.25,.46,.45,.94), box-shadow 0.35s ease;
  background: #fff;
  padding: 6px;
}
.footer-qr-img:hover {
  transform: scale(1.8);
  box-shadow: 0 12px 40px rgba(79,70,229,0.2);
  z-index: 10;
}
.footer-qr-label {
  font-size: 12.5px;
  color: #6B7280;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer-qr-label .icon-wechat { color: #07C160; }
.footer-qr-label .icon-xhs { color: #FF2442; }
@media (max-width: 768px) {
  .footer-qrs { gap: 30px; padding: 22px 16px; }
  .footer-qr-img { width: 110px; height: 110px; }
  .footer-qr-label { font-size: 11.5px; }
}
