/* ============================================================
   光年财税集团 官网样式
   国际化专业服务机构风格 · 藏青 + 白 · 衬线大字号
============================================================ */

:root {
  --navy-950: #0a1c33;
  --navy-900: #0d2340;
  --navy-800: #12305a;
  --navy-700: #1c3f72;
  --navy-600: #2c548c;
  --blue-accent: #2c548c;
  --blue-light: #557aab;
  --cyan: #557aab;
  --orange: #2c548c;
  --orange-deep: #1c3f72;
  --gold: #9fb3c8;
  --white: #ffffff;
  --gray-050: #f6f7f9;
  --gray-100: #e9ebef;
  --gray-300: #c7cdd6;
  --gray-500: #6b7484;
  --gray-600: #4a5261;
  --gray-800: #1a2030;
  --text-on-dark: #cfd7e3;
  --text-on-dark-dim: #8b96a8;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 4px;
  --shadow-soft: 0 1px 2px rgba(10, 28, 51, 0.04), 0 12px 28px -18px rgba(10, 28, 51, 0.18);
  --shadow-glow: 0 1px 2px rgba(10, 28, 51, 0.06);
  --container-w: 1180px;
  --font-zh: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-en: "Manrope", "Noto Sans SC", sans-serif;
  --font-serif: "Source Serif 4", "Noto Serif SC", "Songti SC", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-en);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; letter-spacing: -0.01em; }
h1, h2, .section-title { font-family: var(--font-serif); font-weight: 600; }
h3 { font-family: var(--font-serif); font-weight: 600; }
h4 { font-family: var(--font-zh); font-weight: 700; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .section { padding: 64px 0; }
  .section-tight { padding: 44px 0; }
}

/* ---------- Section helpers ---------- */
.section { padding: 104px 0; position: relative; }
.section-tight { padding: 64px 0; }
.section-dark {
  background: var(--navy-950);
  color: var(--text-on-dark);
}
.section-navy {
  background: var(--navy-900);
  color: var(--text-on-dark);
}
.section-gray { background: var(--gray-050); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-700);
  margin-bottom: 18px;
}
.section-dark .eyebrow, .section-navy .eyebrow { color: var(--gold); }
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}
.section-title {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.28;
  color: var(--navy-950);
  margin-bottom: 20px;
  font-weight: 600;
}
.section-dark .section-title, .section-navy .section-title { color: var(--white); }
.section-desc {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 680px;
  line-height: 1.75;
}
.section-dark .section-desc, .section-navy .section-desc { color: var(--text-on-dark); }
.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .section-desc { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-zh);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy-950);
  color: var(--white);
  border-color: var(--navy-950);
}
.btn-primary:hover { background: var(--navy-700); border-color: var(--navy-700); }
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-dark {
  background: transparent;
  border: 1.5px solid var(--navy-950);
  color: var(--navy-950);
}
.btn-outline-dark:hover { background: var(--navy-950); color: var(--white); }
.btn-sm { padding: 10px 22px; font-size: 13.5px; }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow 0.3s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-zh);
}
.brand-mark { width: 34px; height: 34px; flex-shrink: 0; }
.brand-name {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--navy-950);
  line-height: 1.25;
  letter-spacing: 0.01em;
}
.brand-name small {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 10px 15px;
  font-family: var(--font-zh);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--navy-950);
  background: var(--gray-050);
}
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  color: var(--navy-950);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--gray-100);
  background: var(--white);
  border-radius: var(--radius-sm);
  position: relative;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  position: absolute;
  left: 9px; right: 9px;
  height: 1.5px;
  background: var(--navy-950);
  border-radius: 2px;
}
.nav-toggle::before { top: 14px; }
.nav-toggle span { top: 19px; }
.nav-toggle::after { top: 24px; }

@media (max-width: 980px) {
  .nav-links { position: fixed; top: 84px; left: 0; right: 0; bottom: 0; background: var(--white); flex-direction: column; align-items: stretch; padding: 20px; gap: 2px; transform: translateX(100%); transition: transform 0.3s ease; overflow-y: auto; }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: 18px; font-size: 16.5px; border-bottom: 1px solid var(--gray-100); border-radius: 0; color: var(--navy-950); }
  .nav-phone { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 190px 0 120px;
  color: var(--white);
  background: var(--navy-950);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.035) 0px, rgba(255,255,255,0.035) 1px, transparent 1px, transparent 90px);
  opacity: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 760px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  font-family: var(--font-en);
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.28;
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 600;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero p.lead {
  font-family: var(--font-zh);
  font-size: 17px;
  color: var(--text-on-dark);
  max-width: 600px;
  margin-bottom: 42px;
  line-height: 1.85;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-actions .btn-primary { background: var(--white); color: var(--navy-950); border-color: var(--white); }
.hero-actions .btn-primary:hover { background: var(--gray-100); }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 32px;
}
.hero-stats .stat-block { padding-right: 36px; border-right: 1px solid rgba(255,255,255,0.15); text-align: left; }
.hero-stats .stat-block:last-child { border-right: none; }
.hero-stats .stat-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
}
.hero-stats .stat-num span { color: var(--white); }
.hero-stats .stat-label {
  font-family: var(--font-zh);
  font-size: 12.5px;
  color: var(--text-on-dark-dim);
  margin-top: 6px;
}
@media (max-width: 760px) {
  .hero-stats { grid-template-columns: repeat(2, auto); row-gap: 24px; }
  .hero-stats .stat-block { border-right: none; padding-right: 0; }
}

.page-hero {
  position: relative;
  padding: 168px 0 80px;
  color: var(--white);
  background: var(--navy-950);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.035) 0px, rgba(255,255,255,0.035) 1px, transparent 1px, transparent 90px);
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { font-family: var(--font-zh); font-size: 13px; color: var(--text-on-dark-dim); margin-bottom: 20px; letter-spacing: 0.02em; }
.breadcrumb a:hover { color: var(--white); }
.page-hero h1 { font-size: clamp(30px, 3.6vw, 44px); color: var(--white); margin-bottom: 16px; font-weight: 600; }
.page-hero p { font-family: var(--font-zh); color: var(--text-on-dark); max-width: 640px; font-size: 15.5px; line-height: 1.8; }

/* ---------- Grid layouts ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Cards ---------- */
.card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 32px;
  border: 1px solid var(--gray-100);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { border-color: var(--navy-600); box-shadow: var(--shadow-soft); }
.card-icon {
  width: auto; height: auto;
  border-radius: 0;
  display: flex; align-items: center; justify-content: flex-start;
  background: none;
  color: var(--navy-800);
  margin-bottom: 22px;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
}
.card-icon svg { width: 30px; height: 30px; stroke-width: 1.4; }
.card h3 { font-size: 18.5px; color: var(--navy-950); margin-bottom: 12px; font-family: var(--font-serif); font-weight: 600; }
.card p { color: var(--gray-600); font-size: 14.5px; font-family: var(--font-zh); }
.card ul { margin-top: 14px; }
.card ul li {
  font-size: 13.5px;
  font-family: var(--font-zh);
  color: var(--gray-600);
  padding: 5px 0 5px 18px;
  position: relative;
}
.card ul li::before {
  content: "";
  position: absolute; left: 0; top: 13px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--navy-700);
}

.dark-card {
  background: var(--navy-900);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 34px 32px;
  color: var(--text-on-dark);
}
.dark-card .card-icon { color: var(--gold); }
.dark-card h3 { color: var(--white); font-family: var(--font-serif); font-size: 18.5px; margin-bottom: 12px; font-weight: 600; }
.dark-card p { color: var(--text-on-dark); font-size: 14.5px; font-family: var(--font-zh); }

/* ---------- Stat blocks ---------- */
.stat-block { text-align: center; }
.stat-block .num {
  font-size: 38px; font-weight: 600; color: var(--navy-950);
  font-family: var(--font-serif);
}
.stat-block .num span { color: var(--navy-950); }
.stat-block .label { color: var(--gray-600); font-size: 13.5px; margin-top: 8px; font-family: var(--font-zh); }
.section-dark .stat-block .num, .section-navy .stat-block .num { color: var(--white); }
.section-dark .stat-block .num span, .section-navy .stat-block .num span { color: var(--white); }
.section-dark .stat-block .label, .section-navy .stat-block .label { color: var(--text-on-dark-dim); }

/* ---------- Timeline ---------- */
.timeline {
  display: flex;
  overflow-x: auto;
  gap: 0;
  padding-bottom: 20px;
  scrollbar-width: thin;
}
.timeline-item {
  flex: 0 0 260px;
  padding: 0 22px;
  position: relative;
}
.timeline-item::before {
  content: "";
  position: absolute; top: 20px; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.18);
}
.timeline-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--navy-950);
  position: absolute; top: 15px; left: 22px;
}
.timeline-year { font-family: var(--font-serif); font-size: 22px; font-weight: 600; color: var(--white); margin: 46px 0 10px; }
.timeline-item p { font-family: var(--font-zh); font-size: 13.5px; color: var(--text-on-dark); }

/* ---------- Logo wall ---------- */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--gray-100);
  border: 1px solid var(--gray-100);
}
.logo-wall .logo-item {
  background: var(--white);
  border: none;
  border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 22px 12px;
  font-family: var(--font-zh);
  font-weight: 700;
  color: var(--gray-500);
  font-size: 13.5px;
  text-align: center;
  min-height: 78px;
  transition: color 0.25s ease;
}
.logo-wall .logo-item:hover { color: var(--navy-950); }
@media (max-width: 980px) { .logo-wall { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .logo-wall { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Tabs (industry solutions) ---------- */
.tabs-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--gray-100);
}
.tab-btn {
  display: inline-block;
  text-decoration: none;
  padding: 15px 26px;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid transparent;
  background: transparent;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--gray-500);
  font-family: var(--font-zh);
  transition: all 0.25s ease;
  margin-bottom: -1px;
}
.tab-btn.active, .tab-btn:hover {
  background: transparent;
  border-bottom-color: var(--navy-950);
  color: var(--navy-950);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Pain point list ---------- */
.pain-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--gray-100); border: 1px solid var(--gray-100); }
.pain-item {
  display: flex; gap: 16px;
  background: var(--white);
  border-radius: 0;
  padding: 22px;
  border: none;
}
.pain-item .num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 0;
  background: none;
  border: 1px solid var(--navy-950);
  color: var(--navy-950);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 14px;
}
.pain-item h4 { font-size: 15px; color: var(--navy-950); margin-bottom: 6px; font-family: var(--font-zh); }
.pain-item p { font-size: 13.5px; color: var(--gray-600); font-family: var(--font-zh); }
.pain-item:last-child:nth-child(odd) { grid-column: 1 / -1; }
@media (max-width: 760px) { .pain-list { grid-template-columns: 1fr; } }

/* ---------- Process steps ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-100);
  border: 1px solid var(--gray-100);
}
.process-step {
  position: relative;
  background: var(--white);
  border-radius: 0;
  padding: 30px 24px;
  border: none;
}
.process-step .step-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--gray-300);
  position: absolute;
  top: 14px; right: 18px;
}
.process-step h4 { font-size: 15px; color: var(--navy-950); margin: 6px 0 8px; font-family: var(--font-zh); position: relative; z-index: 1; }
.process-step p { font-size: 13px; color: var(--gray-600); font-family: var(--font-zh); position: relative; z-index: 1; }
@media (max-width: 900px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-steps { grid-template-columns: 1fr; } }

/* ---------- Case cards ---------- */
.case-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  border-top: 3px solid var(--navy-950);
  overflow: hidden;
}
.case-card .case-tag {
  display: inline-block;
  background: none;
  color: var(--navy-700);
  font-family: var(--font-en);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0;
  border-radius: 0;
  margin-bottom: 16px;
}
.case-card .case-body { padding: 30px 28px; }
.case-card h4 { font-size: 17px; color: var(--navy-950); margin-bottom: 14px; font-family: var(--font-serif); font-weight: 600; }
.case-card .case-row { display: flex; gap: 10px; margin: 6px 0; font-size: 13.5px; font-family: var(--font-zh); }
.case-card .case-row .k { color: var(--gray-500); flex-shrink: 0; width: 64px; }
.case-card .case-row .v { color: var(--gray-800); }
.result-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.result-badge {
  font-family: var(--font-zh);
  font-size: 12.5px; font-weight: 700;
  padding: 6px 14px; border-radius: var(--radius-sm);
  background: var(--gray-050); color: var(--navy-800);
  border: 1px solid var(--gray-100);
}
.result-badge.blue { background: var(--navy-950); color: var(--white); border-color: var(--navy-950); }

/* ---------- Expert card ---------- */
.expert-card { display: flex; gap: 18px; align-items: flex-start; }
.expert-avatar {
  width: 54px; height: 54px; border-radius: 50%;
  background: none;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 19px; flex-shrink: 0;
  font-family: var(--font-serif);
}
.expert-info h4 { font-size: 16px; color: var(--navy-950); font-family: var(--font-zh); }
.section-dark .expert-info h4, .section-navy .expert-info h4 { color: var(--white); }
.expert-info .role { font-size: 12.5px; color: var(--gold); font-weight: 700; margin: 5px 0 12px; font-family: var(--font-zh); }
.expert-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.expert-tags span {
  font-size: 11px; font-weight: 700;
  background: rgba(255,255,255,0.08); color: var(--text-on-dark-dim);
  padding: 4px 10px; border-radius: var(--radius-sm);
  font-family: var(--font-zh);
}
.expert-info p.desc { font-size: 13px; color: var(--gray-600); font-family: var(--font-zh); }
.section-dark .expert-info p.desc, .section-navy .expert-info p.desc { color: var(--text-on-dark); }

/* ---------- Team photo gallery ---------- */
.photo-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.photo-gallery img { border-radius: 0; width: 100%; height: 220px; object-fit: cover; filter: saturate(0.85) contrast(1.02); }
@media (max-width: 760px) { .photo-gallery { grid-template-columns: repeat(2, 1fr); } .photo-gallery img { height: 160px; } }

/* ---------- Split section ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.split img { border-radius: var(--radius-lg); filter: saturate(0.88) contrast(1.02); }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 68px 64px;
  background: var(--navy-950);
  color: var(--white);
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--navy-900);
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 90px);
}
.cta-banner * { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(24px, 2.8vw, 32px); margin-bottom: 16px; font-weight: 600; }
.cta-banner p { font-family: var(--font-zh); color: var(--text-on-dark); margin-bottom: 34px; font-size: 15px; }
.cta-banner .btn-primary { background: var(--white); color: var(--navy-950); border-color: var(--white); }
.cta-banner .btn-primary:hover { background: var(--gray-100); }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: var(--text-on-dark-dim);
  padding: 76px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand-name { color: var(--white); }
.footer-brand p { font-family: var(--font-zh); margin-top: 18px; font-size: 13.5px; line-height: 1.85; color: var(--text-on-dark-dim); max-width: 300px; }
.footer-col h5 { color: var(--white); font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; font-family: var(--font-en); font-weight: 700; }
.footer-col ul li { margin-bottom: 13px; font-size: 13.5px; font-family: var(--font-zh); }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact li { font-size: 13.5px; margin-bottom: 13px; display: flex; gap: 8px; font-family: var(--font-zh); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px; font-size: 12.5px; font-family: var(--font-zh); flex-wrap: wrap; gap: 10px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Misc ---------- */
.tag-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.tag-pill {
  font-family: var(--font-zh);
  font-size: 12.5px; font-weight: 700;
  padding: 7px 15px; border-radius: var(--radius-sm);
  background: var(--gray-050); color: var(--gray-600);
  border: 1px solid var(--gray-100);
}
.divider { height: 1px; background: var(--gray-100); margin: 60px 0; }
.section-dark .divider, .section-navy .divider { background: rgba(255,255,255,0.1); }
.center-text { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.two-col-text { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
@media (max-width: 760px) { .two-col-text { grid-template-columns: 1fr; } }

.floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
}
.floating-badge .n { font-size: 22px; font-weight: 600; color: var(--navy-950); font-family: var(--font-serif); }
.floating-badge .t { font-size: 12px; color: var(--gray-500); font-family: var(--font-zh); }

.img-frame { position: relative; }
.img-frame img { border-radius: var(--radius-lg); filter: saturate(0.88) contrast(1.02); }
