/* ═══════════════════════════════════════════════
   Cui Law Group — Unified Stylesheet v3
   Design: Warm charcoal/taupe/cream palette
   ═══════════════════════════════════════════════ */

:root {
  --charcoal: #292524;
  --charcoal-light: #3a3633;
  --taupe: #8b7355;
  --taupe-light: #a6946e;
  --taupe-dark: #6d5a42;
  --taupe-muted: rgba(139,115,85,0.1);
  --warm-gold: #c49a6c;
  --cream: #faf7f2;
  --warm-white: #f3efe8;
  --text-primary: #292524;
  --text-secondary: #5c5650;
  --text-light: #6e6862;
  --border: #e5dfd7;
  --border-light: #ede8e1;
  --serif: 'Noto Serif SC', 'Instrument Serif', Georgia, serif;
  --sans: 'Noto Sans SC', 'DM Sans', -apple-system, sans-serif;
  --mono: 'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--charcoal);
  color: white;
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  font-size: 0.85rem;
  z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 2px solid var(--taupe);
  outline-offset: 2px;
}

body {
  font-family: var(--sans);
  color: var(--text-primary);
  background: var(--cream);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── Language Toggle ─── */
[data-lang="cn"] .lang-en { display: none !important; }
[data-lang="en"] .lang-cn { display: none !important; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ═══════════════════════════════════════
   Navigation
   ═══════════════════════════════════════ */
nav {
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(12px);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  flex-shrink: 1;
}

.logo-cn {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.logo-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
}

.logo-en {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: var(--charcoal); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-weight: 600;
  color: var(--charcoal);
  font-size: 0.92rem;
  background: var(--taupe-muted);
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
}

.nav-phone .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4a7c59;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.nav-intake-cta {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  background: var(--charcoal, #1a1a1a);
  padding: 7px 14px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav-intake-cta:hover { background: #333; }

.lang-switch {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.lang-switch button {
  background: none;
  border: none;
  padding: 5px 14px;
  font-size: 0.72rem;
  cursor: pointer;
  color: var(--text-light);
  font-family: var(--sans);
  transition: all 0.3s;
  letter-spacing: 0.5px;
}

.lang-switch button.active {
  background: var(--taupe);
  color: white;
}

.lang-switch button:not(.active):hover {
  background: var(--warm-white);
}

/* ═══════════════════════════════════════
   Shared Section Styles
   ═══════════════════════════════════════ */
section { padding: 72px 0; }

.section-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 12px;
  font-family: var(--mono);
}

.section-heading {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.4;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
  /* max-width: 520px; */
  line-height: 1.85;
  font-weight: 300;
}

.section-center { text-align: center; }
.section-center .section-sub { margin: 0 auto; }

/* ═══════════════════════════════════════
   Buttons
   ═══════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--taupe);
  color: white;
  padding: 15px 30px;
  border-radius: 11px;
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
}

.btn-primary:hover {
  background: var(--taupe-dark);
  transform: translateY(-1px);
}

.btn-wechat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #07C160;
  color: white;
  padding: 15px 26px;
  border-radius: 11px;
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-wechat:hover { background: #06ad56; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-secondary);
  padding: 15px 26px;
  border-radius: 11px;
  font-size: 0.98rem;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: all 0.25s;
}

.btn-outline:hover {
  border-color: var(--text-light);
  color: var(--charcoal);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  padding: 14px 24px;
  border-radius: 11px;
  font-size: 0.94rem;
  font-weight: 400;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: var(--taupe);
  color: var(--taupe);
}

.cta-btn-lg {
  font-size: 1.02rem;
  padding: 16px 34px;
}

.cta-btn-dark {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.2);
}

/* ═══════════════════════════════════════
   Hero
   ═══════════════════════════════════════ */
.hero { padding: 80px 0 60px; }

.hero .container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--taupe-muted);
  border: 1px solid rgba(139,115,85,0.15);
  color: var(--taupe-dark);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.hero h1 {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1.4;
  margin-bottom: 20px;
}

.hero h1 .emphasis {
  color: var(--taupe);
  position: relative;
}

.hero h1 .emphasis::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 8px;
  background: rgba(139,115,85,0.15);
  border-radius: 4px;
  z-index: -1;
}

.hero-story {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 32px;
  max-width: 500px;
  font-weight: 300;
}

.hero-story strong { color: var(--text-primary); font-weight: 600; }

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-guarantees {
  display: flex;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.guarantee-check {
  width: 22px; height: 22px;
  background: var(--taupe-muted);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--taupe-dark);
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.guarantee-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-media { position: relative; }

.hero-photo-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--charcoal);
  aspect-ratio: 3/4;
  position: relative;
  box-shadow: 0 20px 56px rgba(0,0,0,0.1);
}

.hero-photo-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.video-play {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: transform 0.2s;
}

.video-play:hover { transform: translateY(-2px); }

.play-icon {
  width: 40px; height: 40px;
  background: var(--taupe);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.play-icon svg { margin-left: 2px; }
.play-text .play-title { font-size: 0.84rem; font-weight: 600; color: var(--charcoal); }
.play-text .play-duration { font-size: 0.72rem; color: var(--text-light); }

.credential-float {
  position: absolute;
  top: -12px; right: -16px;
  background: white;
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
  border: 1px solid var(--border);
  z-index: 2;
}

.credential-float-label {
  font-size: 0.66rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2px;
  font-family: var(--mono);
}

.credential-float-value {
  font-family: 'Instrument Serif', serif;
  font-size: 0.98rem;
  color: var(--charcoal);
  font-style: italic;
}

/* ═══════════════════════════════════════
   Story / About Section
   ═══════════════════════════════════════ */
.story-section { background: var(--cream); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  margin-top: 44px;
  align-items: start;
}

.story-narrative {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 2;
  font-weight: 300;
}

.story-narrative p { margin-bottom: 18px; }
.story-narrative strong { color: var(--text-primary); font-weight: 600; }

.story-narrative .quote-block {
  padding: 22px 24px;
  background: var(--taupe-muted);
  border-left: 3px solid var(--taupe);
  border-radius: 0 12px 12px 0;
  margin: 24px 0;
  font-size: 1.02rem;
  font-style: italic;
  color: var(--taupe-dark);
  font-weight: 400;
  line-height: 1.8;
}

.story-credentials {
  background: var(--cream);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
}

.story-credentials h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--charcoal);
}

.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.cred-item:last-child { border-bottom: none; }

.cred-icon {
  width: 36px; height: 36px;
  background: white;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.cred-text { font-size: 0.85rem; }
.cred-text strong { display: block; color: var(--charcoal); font-size: 0.88rem; margin-bottom: 1px; }
.cred-text span { color: var(--text-light); font-size: 0.8rem; }


/* ═══════════════════════════════════════
   Process Timeline
   ═══════════════════════════════════════ */
.process-section { background: var(--cream); }

.process-timeline {
  max-width: 680px;
  margin: 48px auto 0;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 22px; top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}

.process-step {
  display: flex;
  gap: 24px;
  margin-bottom: 12px;
  position: relative;
  cursor: pointer;
}

.process-step:last-child { margin-bottom: 0; }

.step-marker {
  width: 46px; height: 46px;
  background: white;
  border: 2px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Instrument Serif', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--taupe);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.process-step:hover .step-marker,
.process-step.expanded .step-marker {
  background: var(--taupe);
  color: white;
  border-color: var(--taupe);
}

.step-content {
  flex: 1;
  min-width: 0;
}

.step-content h3 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 46px;
}

.step-toggle {
  font-size: 0.7rem;
  color: var(--taupe);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 12px;
}

.process-step.expanded .step-toggle {
  transform: rotate(180deg);
}

.step-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.3s ease;
  opacity: 0;
}

.process-step.expanded .step-detail {
  max-height: 300px;
  opacity: 1;
  margin-top: 8px;
}

.step-content p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.step-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 18px;
  background: var(--taupe-muted);
  border: 1.5px solid var(--taupe-light);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--taupe-dark);
  letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════
   Practice Areas
   ═══════════════════════════════════════ */
.practice-areas { background: white; }

.pa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.pa-card {
  padding: 24px 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s;
  background: var(--cream);
  text-align: center;
}

.pa-card:hover {
  border-color: var(--taupe);
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

.pa-icon { font-size: 1.5rem; margin-bottom: 10px; }

.pa-card h3 {
  font-family: var(--serif);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.pa-card .pa-en {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════
   Insider Section (Dark)
   ═══════════════════════════════════════ */
.insider-section { background: var(--charcoal); color: white; }

.insider-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.insider-card {
  padding: 28px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
}

.insider-number {
  font-family: 'Instrument Serif', serif;
  font-size: 2.2rem;
  font-style: italic;
  color: var(--taupe-light);
  margin-bottom: 12px;
  line-height: 1;
}

.insider-card h3 {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.insider-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

/* ═══════════════════════════════════════
   Intake Form (Inline)
   ═══════════════════════════════════════ */
.intake-section { background: white; }

.intake-wrapper {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 48px;
  align-items: center;
  margin-top: 44px;
}

.intake-left h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 14px;
  line-height: 1.4;
}

.intake-left p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 18px;
}

.intake-promises { list-style: none; }

.intake-promises li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.86rem;
  color: var(--text-secondary);
}


.intake-promises .check {
  width: 20px; height: 20px;
  background: var(--taupe-muted);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--taupe-dark);
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

.intake-card {
  background: white;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.05);
  border: 1px solid var(--border);
}

.intake-card-header { text-align: center; margin-bottom: 22px; }

.intake-card-header h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 3px;
}

.intake-card-header p { font-size: 0.78rem; color: var(--text-light); }

.form-progress { display: flex; gap: 5px; margin-bottom: 20px; }

.form-progress .step {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: var(--border-light);
  transition: background 0.3s;
}

.form-progress .step.active { background: var(--taupe); }

.form-step { display: none; }
.form-step.active { display: block; }

.form-question {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.option-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.option-tile {
  padding: 12px 10px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: white;
}

.option-tile .tile-icon {
  font-size: 1.2rem;
  margin-bottom: 2px;
  display: block;
}

.option-tile:hover { border-color: var(--taupe); color: var(--charcoal); }
.option-tile.selected { border-color: var(--taupe); background: var(--taupe-muted); color: var(--charcoal); }

.form-input-group { margin-bottom: 10px; }

.form-input-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.form-input-group input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-family: var(--sans);
  font-size: 0.9rem;
  background: white;
  color: var(--text-primary);
  transition: border-color 0.2s;
}

.form-input-group input:focus { border-color: var(--taupe); }
.form-input-group input:focus:not(:focus-visible) { outline: none; }

.form-input-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-family: var(--sans);
  font-size: 0.92rem;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.form-input-group textarea:focus { border-color: var(--taupe); }
.form-input-group textarea:focus:not(:focus-visible) { outline: none; }

.btn-submit-form {
  width: 100%;
  padding: 15px 20px;
  background: var(--taupe);
  color: white;
  border: none;
  border-radius: 9px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-submit-form:hover { background: var(--taupe-dark); transform: translateY(-1px); }

.form-nav { display: flex; gap: 8px; margin-top: 16px; }

.form-nav .btn-next {
  flex: 1;
  padding: 13px;
  background: var(--taupe);
  color: white;
  border: none;
  border-radius: 9px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.form-nav .btn-next:hover { background: var(--taupe-dark); }

.form-nav .btn-back {
  padding: 13px 16px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-family: var(--sans);
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--text-secondary);
}

.form-disclaimer {
  margin-top: 12px;
  font-size: 0.68rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   Reviews
   ═══════════════════════════════════════ */
.reviews-section { background: white; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 44px;
}

.review-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 28px;
  border: 1px solid var(--border);
}

.review-card.featured {
  grid-column: 1 / -1;
  background: var(--charcoal);
  color: white;
  border-color: transparent;
}

.review-stars {
  color: var(--warm-gold);
  font-size: 0.82rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 0.92rem;
  line-height: 1.9;
  margin-bottom: 18px;
}

.review-card:not(.featured) .review-text { color: var(--text-secondary); }
.review-card.featured .review-text { color: rgba(255,255,255,0.8); font-size: 1rem; }

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

.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.82rem;
}

.review-card:not(.featured) .review-avatar { background: var(--charcoal); color: white; }
.review-card.featured .review-avatar { background: rgba(255,255,255,0.15); color: white; }
.review-author-info .name { font-weight: 600; font-size: 0.82rem; }
.review-card.featured .name { color: white; }
.review-author-info .detail { font-size: 0.72rem; }
.review-card:not(.featured) .detail { color: var(--text-light); }
.review-card.featured .detail { color: rgba(255,255,255,0.4); }

/* ═══════════════════════════════════════
   Resources
   ═══════════════════════════════════════ */
.resources-section { background: var(--cream); }

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.resource-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 24px 20px;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.resource-card:hover {
  border-color: var(--taupe);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}

.resource-tag {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 5px;
  margin-bottom: 12px;
  font-family: var(--mono);
}

.resource-tag.video { background: rgba(139,115,85,0.1); color: var(--taupe-dark); }
.resource-tag.guide { background: rgba(74,124,89,0.1); color: #3d6b4f; }

.resource-card h3 {
  font-family: var(--serif);
  font-size: 0.96rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--charcoal);
  line-height: 1.45;
}

.resource-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   YouTube Section
   ═══════════════════════════════════════ */
.yt-section { background: white; }

.yt-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.yt-channel {
  display: flex;
  align-items: center;
  gap: 14px;
}

.yt-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.yt-avatar svg { width: 28px; height: 28px; }

.yt-channel-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 1px;
}

.yt-channel-handle {
  font-size: 0.74rem;
  color: var(--text-light);
  font-family: var(--mono);
}

.yt-channel-desc {
  font-size: 0.74rem;
  color: var(--text-light);
  margin-top: 2px;
}

.yt-subscribe {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FF0000;
  color: white;
  padding: 10px 22px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  font-family: var(--sans);
}

.yt-subscribe:hover {
  background: #cc0000;
  transform: translateY(-1px);
}

.yt-subscribe svg { width: 18px; height: 18px; flex-shrink: 0; }

.yt-layout {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  align-items: flex-start;
}

.yt-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 400px;
  flex-shrink: 0;
}

.yt-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.25s;
  cursor: pointer;
  position: relative;
}

.yt-card:hover {
  border-color: var(--taupe);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.yt-card.active {
  border-color: var(--charcoal);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.yt-card-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
}

.yt-card-thumb {
  width: 72px;
  height: 96px;
  border-radius: 8px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yt-shorts-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  background: #FF0000;
  color: white;
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 0.52rem;
  font-weight: 700;
  font-family: var(--mono);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 2px;
}

.yt-shorts-badge svg { width: 6px; height: 8px; }

.yt-card-play {
  width: 32px;
  height: 24px;
  background: rgba(0,0,0,0.55);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.yt-card-play svg { margin-left: 1px; }
.yt-card:hover .yt-card-play { background: rgba(0,0,0,0.7); }

.yt-card-meta {
  flex: 1;
  min-width: 0;
}

.yt-card-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.45;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yt-card-info {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  color: var(--text-light);
  font-family: var(--mono);
}

.yt-card-info span + span::before {
  content: '·';
  margin-right: 4px;
}

.yt-now-playing {
  display: none;
  padding: 0 10px 8px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--taupe);
  font-family: var(--mono);
  letter-spacing: 0.06em;
}

.yt-card.active .yt-now-playing { display: block; }

.yt-player-wrap {
  width: 380px;
  height: 675px;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  position: relative;
  flex-shrink: 0;
}

.yt-player-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ═══════════════════════════════════════
   Geo / Service Areas
   ═══════════════════════════════════════ */
.geo-section { background: white; }

.office-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
  margin-top: 36px;
  margin-bottom: 12px;
}
.office-gallery-hero {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.office-gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.office-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.office-gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  color: white;
  font-size: 0.78rem;
  font-family: var(--mono);
  letter-spacing: 0.02em;
  border-radius: 0 0 12px 12px;
}

.geo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.geo-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--cream);
}

.geo-card h3 {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--charcoal);
}

.geo-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.geo-card .landmarks {
  margin-top: 6px;
  font-size: 0.73rem;
  color: var(--text-light);
}

/* ═══════════════════════════════════════
   How We Can Help
   ═══════════════════════════════════════ */
.help-section { background: var(--cream); }

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.help-card {
  padding: 32px 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.help-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.help-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--taupe-muted);
  border-radius: 12px;
  margin-bottom: 18px;
  color: var(--taupe);
}

.help-card h3 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.help-card p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.85;
}

/* ═══════════════════════════════════════
   Map Section
   ═══════════════════════════════════════ */
.map-section { background: white; }

.map-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.map-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--cream);
}

.map-label {
  padding: 16px 20px;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
}

.map-embed {
  width: 100%;
  line-height: 0;
}

.map-embed iframe {
  width: 100%;
  height: 280px;
  border: 0;
}

.map-info {
  padding: 14px 20px;
}

.map-info p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.map-info a {
  font-size: 0.82rem;
  color: var(--taupe);
  text-decoration: none;
  font-weight: 500;
}

.map-info a:hover {
  color: var(--taupe-dark);
  text-decoration: underline;
}

/* ═══════════════════════════════════════
   FAQ Accordion
   ═══════════════════════════════════════ */
.faq-section { background: var(--cream); }

.faq-grid {
  max-width: 700px;
  margin: 44px auto 0;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 11px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  padding: 16px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  user-select: none;
}

.faq-toggle {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-toggle { transform: rotate(45deg); }

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

.faq-answer-inner {
  padding: 0 22px 16px;
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.85;
}

.faq-item.open .faq-answer { max-height: 400px; }

/* ═══════════════════════════════════════
   Bottom CTA
   ═══════════════════════════════════════ */
.cta-section {
  background: var(--charcoal);
  padding: 72px 0;
  text-align: center;
}

.cta-section h2 {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  line-height: 1.4;
}

.cta-section p {
  color: rgba(255,255,255,0.5);
  font-size: 0.98rem;
  margin-bottom: 32px;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   Footer
   ═══════════════════════════════════════ */
footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 44px 0 24px;
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}

.footer-brand .logo-cn { font-size: 1.1rem; margin-bottom: 6px; color: white; }
.footer-brand p { color: rgba(255,255,255,0.35); font-size: 0.8rem; line-height: 1.8; }

footer h4 {
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 12px;
}

footer a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s;
  font-size: 0.8rem;
}

footer a:hover { color: var(--taupe-light); }

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  flex-wrap: wrap;
  gap: 8px;
}

/* ═══════════════════════════════════════
   Mobile Hamburger & Nav Drawer
   ═══════════════════════════════════════ */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: var(--charcoal);
  border-radius: 6px;
  transition: background 0.2s;
  flex-shrink: 0;
}

.nav-hamburger:hover { background: var(--warm-white); }
.nav-hamburger svg { display: block; }

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 200;
  opacity: 0;
  transition: opacity 0.25s;
}

.mobile-nav-overlay.active { display: block; opacity: 1; }

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  max-width: 85vw;
  background: var(--cream);
  z-index: 210;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0,0,0,0.1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-drawer.active { transform: translateX(0); }

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.mobile-nav-header .logo-cn {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
}

.mobile-nav-close {
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: var(--text-secondary);
  border-radius: 6px;
}

.mobile-nav-close:hover { background: var(--warm-white); }

.mobile-nav-links {
  list-style: none;
  padding: 12px 0;
  flex: 1;
}

.mobile-nav-links a {
  display: block;
  padding: 14px 24px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.15s;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--charcoal);
  background: var(--warm-white);
}

.mobile-nav-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-nav-footer .nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-weight: 600;
  color: var(--charcoal);
  font-size: 0.92rem;
  background: var(--taupe-muted);
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  justify-content: center;
}

.mobile-nav-footer .lang-switch {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  align-self: flex-start;
}

/* ═══════════════════════════════════════
   Mobile CTA Bar
   ═══════════════════════════════════════ */
.mobile-cta-bar {
  display: none !important;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--charcoal);
  padding: 12px 16px;
  gap: 10px;
}

.mobile-cta-bar a {
  flex: 1;
  text-align: center;
  padding: 14px 8px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
}

.mobile-cta-bar .btn-call { background: var(--warm-gold); color: var(--charcoal); }

/* ═══════════════════════════════════════
   Floating CTA
   ═══════════════════════════════════════ */
.floating-cta {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.float-btn-phone { background: var(--taupe); color: white; }
.float-btn-wechat { background: #07C160; color: white; }
.float-btn:hover { transform: scale(1.08); }
.float-btn svg { width: 22px; height: 22px; }

/* ═══════════════════════════════════════
   Page Hero (Subpages)
   ═══════════════════════════════════════ */
.page-hero {
  padding: 100px 0 56px;
  background: var(--charcoal);
  text-align: center;
  position: relative;
}
.page-hero .section-heading { color: #fff; margin-bottom: 16px; }
.page-hero .section-label { color: rgba(255,255,255,0.6); }
.page-hero p { color: rgba(255,255,255,0.7); }

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero-desc {
  font-size: 0.98rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════
   Stats Bar
   ═══════════════════════════════════════ */
.stats-bar {
  background: var(--charcoal);
  padding: 40px 0;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-number {
  font-family: 'Instrument Serif', serif;
  font-size: 2rem;
  font-weight: 600;
  font-style: italic;
  color: var(--taupe-light);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}

/* ═══════════════════════════════════════
   Cases Page
   ═══════════════════════════════════════ */
.cases-section {
  padding: 72px 0;
  max-width: 1100px;
  margin: 0 auto;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 0 24px;
}

.case-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
}

.case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  border-color: var(--taupe);
}

.case-card-top {
  background: var(--cream);
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.case-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--taupe);
  font-weight: 600;
}

.case-type-badge .icon {
  width: 36px; height: 36px;
  background: var(--taupe-muted);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.case-amount {
  font-family: 'Instrument Serif', serif;
  font-size: 1.8rem;
  font-weight: 700;
  font-style: italic;
  color: var(--charcoal);
}

.case-card-body { padding: 24px 28px; }

.case-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.4;
}

.case-desc {
  font-size: 0.84rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 16px;
}

.case-details {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.case-tag {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 500;
}

.case-outcome {
  border-top: 1px solid var(--border);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--taupe);
  font-weight: 500;
}

.case-outcome svg {
  width: 16px; height: 16px;
  stroke: var(--taupe);
  fill: none;
  stroke-width: 2;
}

.cases-disclaimer {
  text-align: center;
  padding: 36px 24px 0;
  max-width: 700px;
  margin: 0 auto;
}

.cases-disclaimer p {
  font-size: 0.72rem;
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 300;
  font-style: italic;
}

/* ═══════════════════════════════════════
   Attorney Page
   ═══════════════════════════════════════ */
.attorney-section {
  padding: 72px 0;
  max-width: 1100px;
  margin: 0 auto;
}

.attorney-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
  padding: 0 24px;
}

.attorney-photo-frame {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, #4a4440 0%, #3a3633 40%, #292524 100%);
  border: 3px solid var(--taupe);
}

.attorney-photo-frame .photo-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.2);
}

.attorney-photo-frame .photo-placeholder svg {
  width: 64px; height: 64px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
}

.attorney-contact-card {
  margin-top: 24px;
  padding: 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.attorney-contact-card h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.attorney-contact-phone,
.attorney-contact-email {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.attorney-contact-phone:hover,
.attorney-contact-email:hover { color: var(--taupe); }

.attorney-contact-phone svg,
.attorney-contact-email svg,
.attorney-contact-address svg,
.attorney-contact-hours svg {
  flex-shrink: 0;
  color: var(--taupe);
}

.attorney-contact-address,
.attorney-contact-hours {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.5;
}

.attorney-bio-heading {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.attorney-bio-text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-weight: 300;
}

.attorney-credentials {
  margin-top: 36px;
  padding: 28px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.attorney-credentials h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.attorney-cred-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.attorney-cred-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.attorney-cred-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--taupe);
}

.attorney-cred-item strong {
  display: block;
  font-size: 0.88rem;
  color: var(--charcoal);
}

.attorney-cred-item span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.attorney-testimonials { margin-top: 36px; }

.attorney-testimonials h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.attorney-testimonial {
  padding: 20px 24px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
}

.attorney-testimonial-stars {
  color: var(--warm-gold);
  font-size: 0.9rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.attorney-testimonial p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 8px;
}

.attorney-testimonial-author {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

.attorney-map {
  padding: 0 24px 72px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.attorney-map-inner { max-width: 900px; margin: 0 auto; }

.attorney-map-address {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.attorney-map-embed iframe {
  width: 100%;
  border-radius: 14px;
}

/* ═══════════════════════════════════════
   Blog Page
   ═══════════════════════════════════════ */
.blog-section { padding: 72px 0; }

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.blog-card-category {
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 600;
  font-family: var(--mono);
}

.blog-card-date {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 300;
}

.blog-card-link {
  font-size: 0.84rem;
  color: var(--taupe);
  font-weight: 600;
  text-decoration: none;
}

.thumb-icon { font-size: 2.5rem; opacity: 0.3; }

/* Featured article card */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s;
  margin-bottom: 48px;
}

.blog-featured:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.07);
  border-color: var(--taupe);
  transform: translateY(-2px);
}

.blog-featured-thumb {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--warm-white) 0%, #ede5d8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}

.blog-featured:hover .blog-featured-img {
  transform: scale(1.04);
}

.blog-featured-thumb .thumb-icon { font-size: 3.5rem; opacity: 0.2; }

.blog-featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--taupe);
  color: white;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
}

.blog-featured-body {
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.35;
}

.blog-featured-excerpt {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 16px;
}

.blog-featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.blog-featured-tags span {
  font-size: 0.7rem;
  padding: 4px 10px;
  background: var(--taupe-muted);
  color: var(--taupe-dark);
  border-radius: 6px;
  font-weight: 500;
}

/* Topics grid */
.blog-topics { margin-bottom: 48px; }

.blog-topics-heading {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.blog-topics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.blog-topic-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  transition: all 0.3s;
}

.blog-topic-card:hover {
  border-color: var(--taupe);
  box-shadow: 0 6px 24px rgba(0,0,0,0.04);
}

.blog-topic-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.blog-topic-card h4 {
  font-family: var(--serif);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.blog-topic-card p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
}

/* Coming soon */
.blog-coming-soon {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 28px 30px;
}

.blog-coming-soon-inner {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.blog-coming-soon-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }

.blog-coming-soon h3 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.blog-coming-soon p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

/* Legacy grid (for future multi-article listing) */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  border-color: var(--taupe);
}

.blog-card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}

.blog-card-body { padding: 22px 24px; }

.blog-card-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-card-excerpt {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════
   Blog Article Page
   ═══════════════════════════════════════ */
.article {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 24px 72px;
}

.article-breadcrumb {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.article-breadcrumb a {
  color: var(--taupe);
  text-decoration: none;
}

.article-header {
  margin-bottom: 44px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.article-header .section-heading { font-size: 1.8rem; line-height: 1.3; margin-bottom: 16px; }

.article-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}

.article-hero-dot { opacity: 0.4; }

.article-author-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  margin: 44px 0;
}

.article-author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--taupe-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.article-author-name {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 3px;
}

.article-author-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.6;
}

.article-related { margin-bottom: 36px; }

.article-related-heading {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.article-related-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 20px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}

.article-related-card:hover {
  border-color: var(--taupe);
  box-shadow: 0 6px 24px rgba(0,0,0,0.04);
  transform: translateY(-2px);
}

.article-related-icon { font-size: 1.4rem; margin-bottom: 10px; }

.article-related-card h4 {
  font-family: var(--serif);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.article-related-card p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
}

.article-body h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 44px 0 16px;
}

.article-body h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 32px 0 12px;
}

.article-body p {
  font-size: 0.93rem;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 18px;
  font-weight: 300;
}

.article-body ul, .article-body ol {
  margin: 14px 0 22px 24px;
  font-size: 0.93rem;
  line-height: 1.9;
  color: var(--text-secondary);
  font-weight: 300;
}

.article-body li { margin-bottom: 6px; }
.article-body strong { font-weight: 500; color: var(--charcoal); }
.article-body h2:first-child { margin-top: 0; }

.article-faq {
  margin-top: 44px;
  padding: 32px;
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
}

.article-faq h2 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 20px;
}

.article-faq .faq-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-light);
  border-radius: 0;
  overflow: visible;
  margin-bottom: 0;
  padding: 16px 0;
}

.article-faq .faq-item:last-child { border-bottom: none; padding-bottom: 0; }

.article-faq .faq-item h3 {
  font-family: var(--serif);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.article-faq .faq-item p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--taupe);
  text-decoration: none;
  font-weight: 500;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  transition: gap 0.3s;
}

.article-back:hover { gap: 12px; }

.key-takeaways {
  background: var(--taupe-muted);
  border: 1px solid rgba(139,115,85,0.15);
  border-left: 4px solid var(--taupe);
  border-radius: 0 12px 12px 0;
  padding: 28px 32px;
  margin-bottom: 32px;
}

.key-takeaways-heading {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 14px;
}

.key-takeaways-list { list-style: none; padding: 0; margin: 0; }

.key-takeaways-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.key-takeaways-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--taupe);
  font-weight: 700;
}

/* ═══════════════════════════════════════
   Intake Standalone Page
   ═══════════════════════════════════════ */
.intake-page-wrapper {
  max-width: 640px;
  margin: 0 auto;
  padding: 56px 24px 72px;
}

.intake-page-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}

.intake-page-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.intake-page-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1.7;
}

.intake-field { margin-bottom: 18px; }

.intake-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 5px;
}

.intake-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text-primary);
  background: white;
  transition: border-color 0.2s;
}

.intake-input:focus { border-color: var(--taupe); }
.intake-input:focus:not(:focus-visible) { outline: none; }

.intake-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.intake-divider {
  height: 1px;
  background: var(--border-light);
  margin: 22px 0;
}

.intake-question { margin-bottom: 22px; }

.intake-question-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.intake-options {
  display: flex;
  gap: 8px;
}

.intake-radio { display: none; }

.intake-radio-label {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-size: 0.86rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.intake-radio-label:hover {
  border-color: var(--taupe);
  color: var(--taupe);
}

.intake-radio:checked + .intake-radio-label {
  border-color: var(--taupe);
  background: var(--taupe-muted);
  color: var(--taupe-dark);
  font-weight: 600;
}

.injury-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin 0.3s ease;
  margin-top: 0;
}

.injury-panel.visible {
  max-height: 200px;
  margin-top: 12px;
}

.injury-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.injury-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.injury-chip:hover { border-color: var(--taupe); color: var(--taupe); }
.injury-chip:has(:checked) { border-color: var(--taupe); background: var(--taupe-muted); color: var(--taupe-dark); font-weight: 500; }
.injury-chip input { display: none; }

.intake-upload-expandable {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin 0.3s ease;
  margin-top: 0;
}

.intake-upload-expandable.visible {
  max-height: 400px;
  margin-top: 10px;
}

.upload-dropzone {
  border: 2px dashed var(--border);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  background: var(--cream);
  position: relative;
}

.upload-dropzone:hover { border-color: var(--taupe); background: var(--taupe-muted); }
.upload-dropzone.dragover { border-color: var(--taupe); background: var(--taupe-muted); }
.upload-dropzone input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }

.upload-text {
  font-size: 0.86rem;
  color: var(--text-secondary);
  font-weight: 300;
}

.upload-text strong { color: var(--taupe); font-weight: 500; }
.upload-formats { font-size: 0.7rem; color: var(--text-light); margin-top: 4px; }

.upload-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.upload-thumb {
  width: 56px; height: 56px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.66rem;
  color: var(--text-light);
}

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

.upload-thumb-remove {
  position: absolute;
  top: 2px; right: 2px;
  width: 16px; height: 16px;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 9px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intake-btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--taupe);
  color: white;
  border: none;
  border-radius: 9px;
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}

.intake-btn-submit:hover { background: var(--taupe-dark); }

.intake-reassurance {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--text-light);
  font-style: italic;
}

.intake-trust-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 20px;
  padding: 16px 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.intake-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.intake-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.intake-success.visible { display: block; }

.intake-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(74,124,89,0.08);
  border: 2px solid rgba(74,124,89,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.intake-success-icon svg {
  width: 28px; height: 28px;
  stroke: #4a7c59;
  fill: none;
  stroke-width: 2;
}

.intake-success h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.intake-success p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════
   Animations
   ═══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.hero-badge { animation: fadeUp 0.6s ease both 0.2s; }
.hero h1 { animation: fadeUp 0.6s ease both 0.35s; }
.hero-story { animation: fadeUp 0.6s ease both 0.45s; }
.hero-ctas { animation: fadeUp 0.6s ease both 0.55s; }
.page-hero-inner { animation: fadeUp 0.6s ease both 0.2s; }

/* ═══════════════════════════════════════
   Responsive
   ═══════════════════════════════════════ */
@media (max-width: 1200px) {
  .nav-links { gap: 12px; }
  .nav-links a { font-size: 0.76rem; }
  .nav-right { gap: 10px; }
  .logo-cn { font-size: 1.05rem; }
  .logo-en { font-size: 0.62rem; }
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { max-width: 360px; }
  .story-grid,
  .intake-wrapper { grid-template-columns: 1fr; }
  .intake-card { max-width: 460px; margin: 0 auto; }
  .pa-grid { grid-template-columns: repeat(3, 1fr); }
  .insider-grid,
  .help-grid,
  .resources-grid,
  .geo-grid { grid-template-columns: repeat(2, 1fr); }
  .map-grid { grid-template-columns: 1fr; }
  .yt-list { flex: 1; min-width: 240px; }
  .yt-player-wrap { width: 320px; height: 568px; }
  .office-gallery { grid-template-columns: 1fr 1fr; }
  .office-gallery-hero { grid-column: 1 / 3; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-thumb { aspect-ratio: 16/9; }
  .blog-topics-grid { grid-template-columns: repeat(2, 1fr); }
  .article-related-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .attorney-inner { grid-template-columns: 1fr; gap: 32px; }
  .attorney-photo-frame { max-width: 300px; }
  .attorney-cred-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero { padding: 48px 0 36px; }
  .hero h1 { font-size: 1.9rem; }
  .hero-guarantees { flex-direction: column; gap: 10px; }
  nav { padding: 12px 0; }
  .nav-right { gap: 10px; }
  .logo-group { gap: 8px; }
  .logo-cn { font-size: 1rem; }
  .logo-divider { height: 18px; }
  .logo-en { font-size: 0.6rem; }
  .pa-grid,
  .insider-grid,
  .help-grid,
  .resources-grid,
  .map-grid,
  .geo-grid { grid-template-columns: 1fr; }
  .yt-layout { flex-direction: column; }
  .yt-list { width: 100%; flex-direction: row; overflow-x: auto; gap: 10px; }
  .yt-list .yt-card { min-width: 240px; flex-shrink: 0; }
  .yt-player-wrap { width: 100%; max-width: 320px; height: 568px; }
  .office-gallery { grid-template-columns: 1fr 1fr; gap: 8px; }
  .office-gallery-hero { grid-column: 1 / 3; }
  .reviews-grid { grid-template-columns: 1fr; }
  .section-heading { font-size: 1.6rem; }
  body { padding-bottom: 0; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .credential-float { display: none; }
  .floating-cta { bottom: 28px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-topics-grid { grid-template-columns: 1fr; }
  .blog-featured-body { padding: 22px 20px; }
  .blog-featured-title { font-size: 1.15rem; }
  .article-related-grid { grid-template-columns: 1fr; }
  .article-author-box { flex-direction: column; text-align: center; }
  .intake-row { grid-template-columns: 1fr; }
  .intake-options { flex-direction: column; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .nav-phone { padding: 6px 12px; font-size: 0.82rem; }
  .lang-switch button { padding: 4px 10px; font-size: 0.68rem; }
  .page-hero { padding: 72px 0 40px; }
  .page-hero .section-heading { font-size: 1.4rem; }
  .hero-badge { word-break: break-word; overflow-wrap: break-word; }
  .hero-story { word-break: break-word; overflow-wrap: break-word; }
  .section-heading { word-break: break-word; overflow-wrap: break-word; }
  .guarantee-text { word-break: break-word; overflow-wrap: break-word; }
  .btn-primary, .btn-wechat, .btn-outline { padding: 13px 22px; font-size: 0.9rem; }
  .cta-section .btn-primary,
  .cta-section .btn-wechat,
  .cta-section .btn-outline { padding: 14px 24px !important; font-size: 0.94rem !important; }
  .cta-buttons a { width: 100%; text-align: center; justify-content: center; }
  .article { padding: 40px 20px 56px; }
  .article-header .section-heading { font-size: 1.45rem; }
  .key-takeaways { padding: 20px 20px; }
  .article-faq { padding: 24px 20px; }
  .article-body h2 { font-size: 1.3rem; }
  .article-body h3 { font-size: 1.05rem; }
}

@media (max-width: 480px) {
  section { padding: 48px 0; }
  .container { padding: 0 16px; }
  .hero { padding: 36px 0 28px; }
  .hero h1 { font-size: 1.55rem; line-height: 1.45; }
  .hero-badge { font-size: 0.7rem; padding: 5px 12px; }
  .hero-story { font-size: 0.9rem; line-height: 1.85; }
  .section-heading { font-size: 1.3rem; }
  .section-sub { font-size: 0.88rem; }
  .section-label { font-size: 0.62rem; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .hero-ctas a { width: 100%; text-align: center; justify-content: center; }
  .btn-primary, .btn-wechat, .btn-outline { padding: 12px 18px; font-size: 0.88rem; }
  .btn-secondary { padding: 12px 18px; font-size: 0.86rem; }
  .cta-section { padding: 48px 0; }
  .cta-section h2 { font-size: 1.5rem; }
  .cta-section p { font-size: 0.88rem; }
  .cta-section .btn-primary,
  .cta-section .btn-wechat,
  .cta-section .btn-outline { padding: 13px 20px !important; font-size: 0.9rem !important; width: 100%; text-align: center; justify-content: center; }
  nav { padding: 10px 0; }
  .logo-cn { font-size: 0.88rem; letter-spacing: 0.02em; }
  .logo-divider { display: none; }
  .logo-en { display: none; }
  .logo-group { gap: 0; }
  .nav-right { gap: 8px; }
  .nav-phone { padding: 5px 8px; font-size: 0.72rem; }
  .nav-phone .dot { width: 5px; height: 5px; }
  .lang-switch button { padding: 3px 7px; font-size: 0.6rem; }
  .nav-hamburger { padding: 4px; }
  .nav-hamburger svg { width: 20px; height: 20px; }
  .page-hero { padding: 56px 0 32px; }
  .page-hero .section-heading { font-size: 1.25rem; }
  .page-hero p { font-size: 0.86rem; }
  .stats-inner { gap: 12px; }
  .stat-number { font-size: 1.6rem; }
  .stat-label { font-size: 0.72rem; }
  .insider-number { font-size: 1.8rem; }
  .insider-card h3 { font-size: 0.88rem; }
  .insider-card p { font-size: 0.78rem; }
  .pa-card { padding: 18px 14px; }
  .pa-card h3 { font-size: 0.84rem; }
  .process-step { gap: 16px; }
  .step-marker { width: 38px; height: 38px; font-size: 0.95rem; }
  .step-content h3 { line-height: 38px; }
  .step-tag { padding: 6px 14px; font-size: 0.92rem; }
  .review-card { padding: 20px; }
  .review-text { font-size: 0.86rem; }
  .review-card.featured .review-text { font-size: 0.92rem; }
  .resource-card { padding: 18px 16px; }
  .geo-card { padding: 16px; }
  .help-card { padding: 22px 18px; }
  .help-card h3 { font-size: 0.9rem; }
  .help-card p { font-size: 0.8rem; }
  .help-icon { width: 44px; height: 44px; margin-bottom: 14px; }
  .help-icon svg { width: 26px; height: 26px; }
  .map-embed iframe { height: 220px; }
  .map-label { padding: 12px 16px; font-size: 0.88rem; }
  .map-info { padding: 10px 16px; }
  .faq-question { padding: 14px 16px; font-size: 0.84rem; }
  .faq-answer-inner { padding: 0 16px 14px; font-size: 0.82rem; }
  .intake-card { padding: 24px 18px; }
  .intake-left h3 { font-size: 1.2rem; }
  .intake-page-card { padding: 28px 18px; }
  .intake-page-title { font-size: 1.15rem; }
  .article { padding: 32px 16px 48px; }
  .article-header .section-heading { font-size: 1.25rem; }
  .article-body h2 { font-size: 1.2rem; margin: 32px 0 12px; }
  .article-body h3 { font-size: 0.98rem; margin: 24px 0 10px; }
  .article-body p { font-size: 0.88rem; }
  .key-takeaways { padding: 18px 16px; }
  .key-takeaways-heading { font-size: 1rem; }
  .key-takeaways-list li { font-size: 0.84rem; }
  .article-faq { padding: 20px 16px; }
  .article-faq h2 { font-size: 1.05rem; }
  .article-author-box { padding: 18px 16px; }
  .article-related-card { padding: 16px 14px; }
  .blog-featured-title { font-size: 1.05rem; }
  .blog-featured-excerpt { font-size: 0.82rem; }
  .blog-topic-card { padding: 18px 16px; }
  .blog-topic-card h4 { font-size: 0.86rem; }
  .footer-bottom { flex-direction: column; gap: 6px; font-size: 0.72rem; }
  .floating-cta { right: 16px; }
  .float-btn { width: 46px; height: 46px; }
  .float-btn svg { width: 20px; height: 20px; }
  .attorney-bio-heading { font-size: 1.3rem; }
  .attorney-bio-text { font-size: 0.88rem; }
  .attorney-credentials { padding: 20px; }
  .attorney-testimonial { padding: 16px 18px; }
  .case-card-top { padding: 18px 20px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .case-card-body { padding: 18px 20px; }
  .case-amount { font-size: 1.5rem; }
  .case-outcome { padding: 12px 20px; }
  .upload-dropzone { padding: 20px 14px; }
  .wechat-modal-card { padding: 28px 24px 24px; }
}

@media (max-width: 360px) {
  .logo-cn { font-size: 0.8rem; }
  .nav-phone { padding: 4px 6px; font-size: 0.68rem; gap: 4px; }
  .nav-phone .dot { width: 4px; height: 4px; }
  .lang-switch button { padding: 2px 6px; font-size: 0.56rem; }
  .nav-right { gap: 6px; }
  .container { padding: 0 12px; }
}

/* ─── WeChat Modal ─── */
.wechat-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}
.wechat-modal.active { display: flex; }
.wechat-modal-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 40px 36px 32px;
  max-width: 380px;
  width: 90%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
  animation: wcFadeIn .25s ease;
}
@keyframes wcFadeIn {
  from { opacity: 0; transform: translateY(16px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.wechat-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
}
.wechat-modal-close:hover { color: var(--text); }
.wechat-modal-icon {
  font-size: 2.4rem;
  margin-bottom: 8px;
}
.wechat-modal-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 0 0 6px;
  color: var(--text);
}
.wechat-modal-card > p {
  font-size: .92rem;
  color: var(--text-light);
  margin: 0 0 20px;
}
.wechat-id-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  cursor: pointer;
  transition: border-color .2s;
}
.wechat-id-box:hover { border-color: #07C160; }
.wechat-id {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .5px;
}
.wechat-copy {
  font-size: .82rem;
  color: #07C160;
  font-weight: 600;
  white-space: nowrap;
}
.wechat-hint {
  font-size: .82rem;
  color: var(--text-light);
  margin: 14px 0 0;
}

