
/* ============================================
   DESIGN TOKENS — Warm Paper & Amber Accent
   ============================================ */
:root {
  --paper: #ffffff;
  --cream: #faf8f4;
  --sand: #f3efe7;
  --ink: #1d1b16;
  --slate: #45413a;
  --muted: #837c70;
  --line: #e9e3d8;
  --line-strong: #ddd5c7;

  --accent: #c08a2d;
  --accent-deep: #a3741f;
  --accent-soft: rgba(192, 138, 45, 0.08);
  --accent-tint: #fbf4e6;

  --font-display: Georgia, 'Times New Roman', 'Noto Serif SC', 'STSong', 'Songti SC', serif;
  --font-body: 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', system-ui, sans-serif;
  --font-cn: 'PingFang SC', 'Microsoft YaHei', 'Songti SC', serif;

  --space-xs: clamp(4px, 0.5vw, 8px);
  --space-sm: clamp(8px, 1vw, 16px);
  --space-md: clamp(16px, 2vw, 32px);
  --space-lg: clamp(32px, 4vw, 64px);
  --space-xl: clamp(48px, 6vw, 96px);
  --space-2xl: clamp(72px, 10vw, 140px);

  --max-width: 1180px;
  --content-narrow: 760px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--paper);
  line-height: 1.75;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #fff; }

/* Language display control (JS-driven; CSS as fallback) */
.lang-zh { display: inline; }
.lang-en { display: none; }
html[data-lang="en"] .lang-zh { display: none; }
html[data-lang="en"] .lang-en { display: inline; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: var(--space-sm) var(--space-md);
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-display);
  color: var(--ink); text-decoration: none; font-weight: 600;
  cursor: pointer;
}
.logo-mark { display: inline-flex; flex: 0 0 auto; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.12)); }
.logo-text { font-size: 1.18rem; letter-spacing: 0.04em; line-height: 1; color: var(--ink); font-weight: 700; }
.logo-text::first-letter { color: var(--accent-deep); }
.nav-links { display: flex; align-items: center; gap: 18px; list-style: none; }
.nav-links a {
  color: var(--slate); text-decoration: none; font-size: 0.82rem;
  font-weight: 500; letter-spacing: 0.01em; transition: color 0.3s; position: relative;
  white-space: nowrap;
}
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--accent); transform: scaleX(0); transition: transform .25s ease; border-radius: 1px; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

.lang-switch {
  margin-left: 12px; padding: 4px 14px;
  border: 1px solid var(--line-strong); color: var(--slate); background: transparent;
  border-radius: 100px; cursor: pointer; font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 600; transition: all 0.3s;
}
.lang-switch:hover { border-color: var(--accent); color: var(--accent); }

/* 移动端汉堡菜单 */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 0; background: transparent;
  border: none; cursor: pointer; margin-left: 12px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); transition: 0.3s; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
  }
  .nav.open .nav-links { max-height: 80vh; overflow-y: auto; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px var(--space-md); border-top: 1px solid var(--line); font-size: 0.9rem; }
  .lang-switch { margin-left: 0; }
}
@media (max-width: 480px) {
  .nav-logo { font-size: 1.05rem; }
  .hero h1 { font-size: clamp(1.5rem, 7vw, 2rem); }
  .hero-tag { font-size: 0.65rem; padding: 4px 10px; }
  .hero-subtitle { font-size: 0.82rem; }
  .hero-desc { font-size: 0.85rem; }
  .hero-badge { font-size: 0.65rem; padding: 2px 8px; }
  .section { padding: var(--space-lg) var(--space-sm); }
  section { padding: var(--space-lg) var(--space-sm); }
  .path-grid { grid-template-columns: 1fr; }
  .container { padding: 0 4px; }
}

/* ============================================
   HERO — 律师名片式布局
   ============================================ */
.hero {
  padding: calc(var(--space-2xl) + 40px) var(--space-md) var(--space-xl);
  background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
  position: relative; border-bottom: 1px solid var(--line);
}
.hero-inner { max-width: 960px; margin: 0 auto; }
.hero-card { display: flex; gap: 3rem; align-items: center; }
.hero-photo-wrap { flex-shrink: 0; }
.hero-photo {
  width: 200px; height: 250px; object-fit: cover;
  border-radius: 8px; border: 2px solid var(--line-strong);
  background: #e8e4df;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.hero-photo:hover { transform: scale(1.02); }
.hero-info { flex: 1; min-width: 0; }
.hero-tag {
  display: inline-block; padding: 5px 14px; border: 1px solid var(--line-strong);
  border-radius: 100px; color: var(--muted); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.06em; margin-bottom: 10px; background: var(--cream);
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 500; color: var(--ink); line-height: 1.25; margin-bottom: 6px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-subtitle {
  font-size: 0.95rem; color: var(--muted); margin-bottom: 10px; font-weight: 400;
}

/* Firm honor badge in hero */
.hero-firm-badge {
  font-size: 0.78rem;
  color: var(--accent-deep);
  background: var(--accent-tint);
  border: 1px solid rgba(192,138,45,0.25);
  border-radius: 6px;
  padding: 6px 14px;
  margin-bottom: 14px;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-desc {
  font-size: 0.92rem; color: var(--muted);
  line-height: 1.75; margin-bottom: 12px; font-weight: 300;
}
.hero-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.hero-badge {
  display: inline-block; padding: 3px 11px; border: 0.5px solid var(--line);
  border-radius: 100px; font-size: 0.72rem; color: var(--muted); background: var(--cream);
}
.hero-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; }

@media (max-width: 700px) {
  .hero-card { flex-direction: column; text-align: center; }
  .hero-photo { width: 140px; height: 170px; }
  .hero-badges { justify-content: center; }
  .hero-actions { justify-content: center; }
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; font-family: var(--font-body); font-size: 0.85rem;
  font-weight: 600; text-decoration: none; border-radius: 100px; cursor: pointer; transition: all 0.3s; border: none;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(192,138,45,0.3); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ============================================
   SECTION BASE & PATH CARDS (“一条路”卡片)
   ============================================ */
section { padding: var(--space-xl) var(--space-md); }
.section-alt { background: var(--cream); border-bottom: 1px solid var(--line); }
.section-main { background: var(--paper); border-bottom: 1px solid var(--line); }

.container { max-width: var(--max-width); margin: 0 auto; }
.section-header { text-align: center; margin-bottom: var(--space-xl); max-width: var(--content-narrow); margin-left: auto; margin-right: auto; }
.section-tag { display: inline-block; color: var(--accent); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: var(--space-xs); }
.section-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--ink); font-weight: 400; line-height: 1.3; }
.section-line { width: 36px; height: 2px; background: var(--accent); margin: var(--space-sm) auto 0; border-radius: 1px; }
.section-desc { color: var(--muted); font-size: 0.95rem; line-height: 1.8; margin-top: var(--space-sm); font-weight: 300; }

.path-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--space-md); }

.path-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  padding: var(--space-lg); transition: all 0.3s ease; display: flex; flex-direction: column; justify-content: space-between;
}
.section-alt .path-card { background: var(--paper); }
.section-main .path-card { background: var(--cream); }

.path-card:hover { border-color: var(--accent); box-shadow: 0 8px 28px rgba(0,0,0,0.06); transform: translateY(-2px); }

.path-tag {
  font-size: 0.72rem; font-weight: 600; color: var(--accent-deep); background: var(--accent-tint);
  padding: 4px 12px; border-radius: 100px; display: inline-block; margin-bottom: 12px; border: 1px solid rgba(192,138,45,0.2); align-self: flex-start;
}
.path-title { font-family: var(--font-cn); font-size: 1.15rem; font-weight: 600; color: var(--ink); margin-bottom: 12px; }

.path-label { font-size: 0.75rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 10px; margin-bottom: 4px; }
.path-text { font-size: 0.88rem; color: var(--slate); line-height: 1.7; font-weight: 300; }

.path-box {
  margin-top: 10px; padding: 10px 12px; background: rgba(0,0,0,0.02); border: 1px solid var(--line);
  border-radius: 8px; font-size: 0.82rem; color: var(--slate); line-height: 1.6;
}
.path-box strong { color: var(--ink); font-weight: 600; display: block; margin-bottom: 2px; }

.path-remedy {
  margin-top: 16px; padding-top: 12px; border-top: 1px dashed var(--line);
  font-size: 0.85rem; color: var(--accent-deep); font-weight: 500; line-height: 1.6;
}

/* ============================================
   STATUTES & GUIDELINES (法律法规与司法解释)
   ============================================ */
.statutes-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: var(--space-lg); flex-wrap: wrap; }
.tab-btn {
  padding: 8px 20px; font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
  border: 1px solid var(--line); background: var(--cream); color: var(--slate);
  border-radius: 100px; cursor: pointer; transition: all 0.3s;
}
.tab-btn.active, .tab-btn:hover { background: var(--accent-tint); border-color: var(--accent); color: var(--accent-deep); }

.statute-panel { display: none; }
.statute-panel.active { display: block; }

.statute-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: 12px;
  padding: var(--space-md); margin-bottom: 16px; transition: border-color 0.2s;
}
.statute-card:hover { border-color: var(--line-strong); }
.statute-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.statute-title { font-family: var(--font-cn); font-size: 1.05rem; font-weight: 600; color: var(--ink); }
.legal-badge {
  font-size: 0.72rem; font-weight: 600; padding: 3px 10px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.03em; white-space: nowrap;
}
.badge-national { background: rgba(69, 65, 58, 0.08); color: var(--slate); border: 1px solid var(--line-strong); }
.badge-spc { background: var(--accent-tint); color: var(--accent-deep); border: 1px solid rgba(192,138,45,0.3); }
.badge-local { background: #eef5f0; color: #2d6a4f; border: 1px solid #b7e4c7; }

.statute-desc { font-size: 0.88rem; color: var(--slate); line-height: 1.7; font-weight: 300; }

/* ============================================
   DISPUTE INTERACTIVE / FAQ (争议互动)
   ============================================ */
.faq-list { max-width: var(--content-narrow); margin: 0 auto; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; margin-bottom: 12px; overflow: hidden; transition: all 0.3s; }
.faq-q {
  padding: 18px 22px; font-weight: 600; font-size: 0.95rem; color: var(--ink); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; user-select: none;
}
.faq-a { padding: 0 22px 18px; color: var(--slate); font-size: 0.88rem; line-height: 1.75; display: none; font-weight: 300; border-top: 1px dashed var(--line); padding-top: 12px; }
.faq-item.active .faq-a { display: block; }
.faq-item.active { border-color: var(--accent); }
.faq-toggle { font-size: 1.1rem; color: var(--accent); transition: transform 0.3s; }
.faq-item.active .faq-toggle { transform: rotate(45deg); }

/* ============================================
   ABOUT LAWYER
   ============================================ */
/* 关于律师 · 完整个人简介（文档式） */
.profile-doc { max-width: 860px; margin: 0 auto; }
.profile-intro { font-size: 0.95rem; color: var(--slate); line-height: 1.85; font-weight: 300; text-align: center; max-width: 720px; margin: 0 auto var(--space-xl); }
.profile-block { margin-top: var(--space-xl); }
.profile-h {
  font-family: var(--font-display); font-size: 1.3rem; color: var(--ink);
  display: flex; align-items: center; gap: 10px; margin-bottom: var(--space-md); font-weight: 500;
}
.profile-h::before { content: ""; width: 6px; height: 18px; background: var(--accent); border-radius: 2px; display: inline-block; }
.profile-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.profile-tag { background: var(--cream); border: 1px solid var(--line); color: var(--slate); padding: 7px 14px; border-radius: 20px; font-size: 0.86rem; }
.profile-note { font-size: 0.78rem; color: var(--muted); margin-bottom: var(--space-md); }
.profile-cases { display: flex; flex-direction: column; gap: 14px; }
.profile-case { background: var(--paper); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 8px; padding: 14px 18px; }
.pc-t { font-weight: 600; color: var(--ink); font-size: 0.98rem; margin-bottom: 6px; }
.pc-d { font-size: 0.86rem; color: var(--slate); line-height: 1.7; }
.profile-edu { display: flex; flex-direction: column; gap: 4px; }
.edu-row { display: flex; gap: 16px; align-items: baseline; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 0.92rem; color: var(--slate); }
.edu-year { color: var(--accent); font-weight: 600; min-width: 110px; }
.profile-list { list-style: none; margin: 0; padding: 0; }
.profile-list li { position: relative; padding-left: 18px; margin: 10px 0; font-size: 0.92rem; color: var(--slate); line-height: 1.7; }
.profile-list li::before { content: ""; position: absolute; left: 0; top: 10px; width: 7px; height: 7px; background: var(--accent); border-radius: 50%; }
.profile-philo { font-size: 0.95rem; color: var(--slate); line-height: 1.8; font-weight: 300; }
.profile-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; margin-top: var(--space-xl); padding: var(--space-md); background: var(--cream); border: 1px solid var(--line); border-radius: 12px; font-size: 0.85rem; color: var(--muted); }
.profile-contact b { color: var(--accent); font-weight: 600; margin-right: 6px; }
.profile-contact a { color: var(--ink); text-decoration: none; }
.profile-disclaimer { font-size: 0.75rem; color: var(--muted); text-align: center; margin-top: var(--space-md); line-height: 1.6; }

@media (max-width: 768px) {
  .profile-doc { padding: 0 4px; }
  .profile-contact { gap: 8px 14px; font-size: 0.8rem; }
  .edu-year { min-width: 90px; }
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
.ci-item {
  display: flex; align-items: flex-start; gap: var(--space-md); margin-bottom: var(--space-sm);
  padding: var(--space-md); background: var(--paper); border: 1px solid var(--line); border-radius: 10px;
}
.ci-label { font-size: 0.75rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.ci-value { font-size: 0.95rem; color: var(--ink); font-weight: 500; }

.contact-form-wrap { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: var(--space-lg); }
.ci-wechat { margin-top: var(--space-md); background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: var(--space-md); text-align: center; }
.ci-wechat .wk-qr { width: 160px; height: 160px; border-radius: 8px; border: 1px solid var(--line); display: block; margin: 10px auto 8px; background: #fff; }
.ci-wechat .wk-id { font-size: 0.95rem; color: var(--ink); font-weight: 600; }
.ci-wechat .wk-cap { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }
.form-group { margin-bottom: var(--space-sm); }
.form-group label { display: block; font-size: 0.75rem; color: var(--muted); font-weight: 600; text-transform: uppercase; margin-bottom: 6px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 10px 14px; background: var(--cream); border: 1px solid var(--line);
  border-radius: 8px; font-size: 0.88rem; font-family: var(--font-body); color: var(--ink); transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); background: #fff; }
.form-group textarea { height: 90px; resize: vertical; }

@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: var(--space-lg); } }

/* FOOTER */
.footer { background: var(--paper); color: var(--muted); text-align: center; padding: var(--space-lg) var(--space-md); font-size: 0.82rem; border-top: 1px solid var(--line); }

/* 关于律师 · 教育背景与代表性业绩 */
.about-details { display: grid; grid-template-columns: 0.85fr 2fr; gap: var(--space-xl); margin-top: var(--space-xl); }
.detail-h { font-family: var(--font-display); font-size: 1.25rem; color: var(--ink); margin-bottom: var(--space-md); padding-left: 12px; border-left: 4px solid var(--accent); font-weight: 400; }
.edu-list { list-style: none; margin: 0; padding: 0; }
.edu-list li { font-size: 0.92rem; color: var(--slate); padding: 9px 0; border-bottom: 1px dashed var(--line); }
.case-list { display: flex; flex-direction: column; gap: 14px; }
.case-item { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 14px 18px; }
.case-t { font-weight: 600; color: var(--ink); font-size: 0.98rem; margin-bottom: 6px; }
.case-d { font-size: 0.86rem; color: var(--slate); line-height: 1.7; }
@media (max-width: 768px) { .about-details { grid-template-columns: 1fr; gap: var(--space-lg); } }

.practice-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 14px; margin-top: var(--space-lg); }
.practice-tag { font-size: 0.92rem; color: var(--ink); padding: 9px 18px; background: var(--cream); border: 1px solid var(--line-strong); border-radius: 100px; font-weight: 500; }

/* 业务领域专栏：完整 6 大领域卡片 */
.practice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: var(--space-lg); }
.practice-card { background: var(--paper); border: 1px solid var(--line); border-top: 3px solid var(--accent); border-radius: 10px; padding: 20px 22px; transition: transform .2s ease, box-shadow .2s ease; }
.practice-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.pc-h { font-size: 1.02rem; color: var(--ink); margin: 0 0 10px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.pc-h::before { content: ""; width: 8px; height: 18px; background: var(--accent); border-radius: 2px; display: inline-block; flex: none; }
.pc-d { font-size: 0.88rem; color: var(--slate); line-height: 1.75; margin: 0; }
@media (max-width: 768px) { .practice-grid { grid-template-columns: 1fr; } }

/* 首页核心业务快捷条（突出高标的额领域） */
.core-section { background: var(--cream); padding: var(--space-xl) 0; border-top: 1px solid var(--line); }
.core-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: var(--space-lg); }
.core-card { display: block; text-decoration: none; background: var(--paper); border: 1px solid var(--line); border-top: 3px solid var(--accent); border-radius: 10px; padding: 20px 18px; transition: all .25s ease; }
.core-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); border-color: var(--line-strong); }
.cc-h { font-size: 1.02rem; color: var(--ink); margin: 0 0 8px; font-weight: 600; }
.cc-d { font-size: 0.84rem; color: var(--slate); line-height: 1.7; margin: 0; }
@media (max-width: 900px){ .core-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .core-grid { grid-template-columns: 1fr; } }

/* 极简首页：Hero 底部快捷联系 */
.hero-quick { display:flex; gap:18px; flex-wrap:wrap; margin-bottom:16px; font-size:0.85rem; color:var(--muted); }
.hero-quick b { color: var(--ink); font-weight:600; }
@media (max-width:700px){ .hero-quick{ justify-content:center; } }

/* ============================================
   HOME: Representative Cases Section
   ============================================ */
.cases-section {
  background: var(--cream);
  padding: var(--space-xl) var(--space-md);
  border-top: 1px solid var(--line);
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: var(--space-lg);
}
.case-highlight {
  display: block;
  text-decoration: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px 22px;
  transition: all 0.25s ease;
  cursor: pointer;
}
.case-highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: var(--accent);
}
.ch-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-deep);
  background: var(--accent-tint);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
  border: 1px solid rgba(192,138,45,0.2);
}
.case-highlight h3 {
  font-size: 1rem;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}
.case-highlight p {
  font-size: 0.84rem;
  color: var(--slate);
  line-height: 1.7;
}
.cases-more {
  text-align: center;
  margin-top: var(--space-lg);
}

/* ============================================
   HOME: CTA Section
   ============================================ */
.home-cta {
  background: var(--paper);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  border-top: 1px solid var(--line);
}
.home-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--ink);
  margin-bottom: 12px;
  font-weight: 500;
}
.home-cta p {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 28px;
  line-height: 1.8;
}
.home-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   MOBILE: Floating Contact Buttons
   ============================================ */
.mobile-float-call,
.mobile-float-consult {
  display: none;
  position: fixed;
  z-index: 999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}
.mobile-float-call {
  bottom: 28px;
  right: 28px;
  background: var(--accent);
  color: #fff;
}
.mobile-float-consult {
  bottom: 90px;
  right: 28px;
  background: var(--ink);
  color: #fff;
}
.mobile-float-call:hover,
.mobile-float-consult:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .cases-grid {
    grid-template-columns: 1fr;
  }
  .mobile-float-call,
  .mobile-float-consult {
    display: flex;
  }
}

@media (max-width: 480px) {
  .home-cta-actions {
    flex-direction: column;
    align-items: center;
  }
}


