/* ==========================================================
   明远 Mingyuan Consulting · Premium Corporate Theme
   Palette: Deep Navy + Champagne Gold
   ========================================================== */

:root {
  --navy-950: #06101f;
  --navy-900: #0a1830;
  --navy-800: #0f2143;
  --navy-700: #15305f;
  --navy-600: #1c3f7a;
  --ink: #0a1224;
  --ink-soft: #1a2540;
  --paper: #fbfaf6;
  --paper-soft: #f3f1ea;
  --line: rgba(255, 255, 255, 0.08);
  --line-dark: rgba(10, 18, 36, 0.08);

  --gold-300: #f4e2a4;
  --gold-400: #e6c878;
  --gold-500: #c9a352;
  --gold-600: #a98438;

  --text-dark: #0d1730;
  --text-mid: #4b5772;
  --text-light: #d6dbe6;
  --text-faint: #8d97ad;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  --font-serif: 'Noto Serif SC', 'Songti SC', serif;

  --max: 1240px;
  --radius: 4px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px 0;
  transition: background .35s var(--ease), padding .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(6, 16, 31, 0.92);
  backdrop-filter: saturate(160%) blur(14px);
  padding: 12px 0;
  border-bottom-color: var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.brand__mark {
  width: 38px; height: 38px; display: grid; place-items: center;
  font-family: var(--font-serif); font-weight: 700; font-size: 20px;
  color: var(--navy-900); background: linear-gradient(140deg, var(--gold-300), var(--gold-500));
  border-radius: 2px; letter-spacing: 0;
}
.brand__logo {
  width: 40px; height: 40px; object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}
.brand__name { font-family: var(--font-serif); font-size: 19px; letter-spacing: 1px; }
.brand__name i { font-style: normal; font-family: var(--font-sans); font-size: 11px; letter-spacing: 3px; color: var(--gold-400); margin-left: 6px; }

.nav__links { display: flex; gap: 32px; }
.nav__links a {
  color: var(--text-light); font-size: 14px; font-weight: 500; letter-spacing: .5px;
  position: relative; padding: 6px 0;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold-400); transition: width .3s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { width: 100%; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { width: 22px; height: 1.5px; background: #fff; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px;
  font-size: 14px; font-weight: 600; letter-spacing: 1px;
  border-radius: var(--radius);
  transition: all .3s var(--ease);
  position: relative; overflow: hidden;
}
.btn--sm { padding: 10px 18px; font-size: 13px; }
.btn--block { width: 100%; }
.btn--gold {
  background: linear-gradient(120deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  box-shadow: 0 12px 28px -14px rgba(201,163,82,0.6);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -14px rgba(201,163,82,0.8);
  filter: brightness(1.05);
}
.btn--ghost {
  color: #fff; border: 1px solid rgba(255,255,255,0.35);
}
.btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--gold-400); color: var(--gold-300); }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  color: #fff; overflow: hidden;
  padding: 140px 0 80px;
  background: var(--navy-950);
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 18% 22%, rgba(201,163,82,0.18), transparent 60%),
    radial-gradient(900px 700px at 85% 80%, rgba(28,63,122,0.55), transparent 65%),
    linear-gradient(180deg, #061021 0%, #0a1830 60%, #06101f 100%);
}
.hero__bg::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.hero__bg::after {
  content: ''; position: absolute; right: -10%; top: -10%;
  width: 720px; height: 720px;
  background: conic-gradient(from 220deg, transparent, rgba(244,226,164,0.08), transparent 40%);
  filter: blur(40px); border-radius: 50%;
}
.hero__inner { position: relative; z-index: 2; max-width: 980px; }
.eyebrow {
  font-size: 12px; letter-spacing: 4px; color: var(--gold-400);
  margin-bottom: 28px; font-weight: 500;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 700; line-height: 1.15;
  letter-spacing: 1px;
}
.hero__title span { display: block; }
.gold {
  background: linear-gradient(120deg, var(--gold-300), var(--gold-500) 60%, var(--gold-600));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub {
  margin-top: 32px; max-width: 720px;
  font-size: 17px; line-height: 1.8; color: var(--text-light);
}
.hero__sub b { color: var(--gold-300); font-weight: 600; }
.hero__cta { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 16px; }

.hero__stats {
  margin-top: 80px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; max-width: 820px;
  padding-top: 36px; border-top: 1px solid var(--line);
}
.hero__stats > div { color: var(--text-light); }
.hero__stats b {
  font-family: var(--font-serif); font-size: 36px; font-weight: 700;
  color: #fff; display: block; letter-spacing: 1px;
}
.hero__stats b i { font-style: normal; font-size: 16px; color: var(--gold-400); margin-left: 4px; }
.hero__stats span { font-size: 12px; letter-spacing: 3px; color: var(--text-faint); text-transform: uppercase; }

.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: 4px; color: var(--text-faint);
  animation: bob 2.4s var(--ease) infinite;
}
@keyframes bob { 0%,100%{transform: translateX(-50%) translateY(0);} 50%{transform: translateX(-50%) translateY(6px);} }

/* ============ SECTIONS BASE ============ */
.section { padding: 120px 0; position: relative; }
.section--dark {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
  color: var(--text-light);
}
.section--dark .section__title { color: #fff; }
.section--dark .lead { color: var(--text-light); }

.section__head { text-align: center; max-width: 760px; margin: 0 auto 72px; }
.section__eyebrow {
  font-size: 12px; letter-spacing: 4px; color: var(--gold-500);
  margin-bottom: 20px; font-weight: 600;
}
.section--dark .section__eyebrow { color: var(--gold-400); }
.section__title {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(28px, 4vw, 46px); line-height: 1.25;
  color: var(--text-dark); letter-spacing: 1px;
}
.section__sub { margin-top: 20px; color: var(--text-mid); font-size: 16px; }
.section--dark .section__sub { color: var(--text-light); }

.lead { font-size: 16.5px; color: var(--text-mid); line-height: 1.85; margin-top: 28px; }
.lead b { color: var(--gold-500); font-weight: 600; }
.section--dark .lead b { color: var(--gold-400); }

/* ============ GRID ============ */
.grid { display: grid; gap: 80px; }
.grid--2 { grid-template-columns: 1.05fr 1fr; align-items: center; }
.grid--contact { grid-template-columns: 1fr 1.05fr; align-items: start; gap: 90px; }

/* ============ ABOUT ============ */
.bullets { margin-top: 30px; display: flex; flex-direction: column; gap: 16px; }
.bullets li {
  padding-left: 22px; position: relative; color: var(--text-light); font-size: 15.5px;
}
.bullets li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 8px; height: 1px; background: var(--gold-400);
}
.bullets li b { color: #fff; margin-right: 10px; font-weight: 600; }

.about__card {
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  padding: 48px;
  position: relative;
}
.about__card::before {
  content: ''; position: absolute; top: -1px; left: -1px; width: 60px; height: 60px;
  border-top: 2px solid var(--gold-400); border-left: 2px solid var(--gold-400);
}
.about__card::after {
  content: ''; position: absolute; bottom: -1px; right: -1px; width: 60px; height: 60px;
  border-bottom: 2px solid var(--gold-400); border-right: 2px solid var(--gold-400);
}
.about__pillar { padding: 22px 0; border-bottom: 1px solid var(--line); }
.about__pillar:last-child { border-bottom: 0; padding-bottom: 0; }
.about__pillar:first-child { padding-top: 0; }
.about__pillar h4 {
  font-family: var(--font-serif); color: var(--gold-300);
  font-size: 18px; letter-spacing: 4px; margin-bottom: 10px;
}
.about__pillar p { color: var(--text-light); font-size: 15px; line-height: 1.8; }

/* ============ SERVICES ============ */
.services {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.service {
  background: var(--paper);
  padding: 48px 36px; min-height: 280px;
  position: relative; transition: all .35s var(--ease);
}
.service:hover {
  background: var(--navy-900); color: #fff;
  transform: translateY(-2px); z-index: 2;
  box-shadow: 0 30px 60px -30px rgba(10,24,48,0.6);
}
.service__num {
  font-family: var(--font-serif); font-size: 14px; letter-spacing: 4px;
  color: var(--gold-500); margin-bottom: 24px;
}
.service h3 {
  font-family: var(--font-serif); font-size: 22px; font-weight: 600;
  margin-bottom: 14px; letter-spacing: .5px;
}
.service p { font-size: 14.5px; color: var(--text-mid); line-height: 1.85; }
.service:hover p { color: var(--text-light); }
.service__tag {
  position: absolute; bottom: 28px; left: 36px;
  font-size: 11px; letter-spacing: 3px; color: var(--text-faint);
  border-top: 1px solid var(--line-dark); padding-top: 14px; min-width: 80px;
}
.service:hover .service__tag { color: var(--gold-300); border-color: rgba(244,226,164,0.3); }

.service--cta {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
  color: #fff;
  display: flex; flex-direction: column; justify-content: center; gap: 16px;
  text-align: left;
}
.service--cta:hover { background: linear-gradient(160deg, var(--navy-800), var(--navy-700)); transform: none; }
.service--cta h3 { color: var(--gold-300); }
.service--cta p { color: var(--text-light); }
.service--cta .btn { align-self: flex-start; margin-top: 8px; }

.services--6 { grid-template-columns: repeat(3, 1fr); }

/* ===== Services V2 — premium card template ===== */
.services--v2 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  background: transparent; border: 0;
}
.services--v2 .service {
  background: #fff;
  border: 1px solid var(--line-dark);
  padding: 40px 36px 36px;
  min-height: auto;
  position: relative;
  overflow: hidden;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: all .35s var(--ease);
}
.services--v2 .service::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold-300), var(--gold-500));
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.services--v2 .service:hover {
  background: #fff;
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(10,24,48,0.25);
  border-color: rgba(201,163,82,0.4);
}
.services--v2 .service:hover::before { transform: scaleX(1); }

.services--v2 .service__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 22px;
}
.services--v2 .service__num {
  font-family: var(--font-serif); font-size: 13px; letter-spacing: 5px;
  color: var(--gold-600); font-weight: 600;
  margin: 0; padding: 0;
}
.service__more {
  font-size: 12px; letter-spacing: 2px; color: var(--text-faint);
  transition: all .3s var(--ease);
}
.services--v2 .service:hover .service__more {
  color: var(--gold-600); transform: translateX(4px);
}

.service__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  color: var(--gold-500);
  margin-bottom: 24px;
  border-radius: 50%;
  background: rgba(201,163,82,0.08);
  transition: all .35s var(--ease);
}
.service__icon svg {
  width: 28px; height: 28px;
  stroke-linecap: round; stroke-linejoin: round;
}
.services--v2 .service:hover .service__icon {
  background: linear-gradient(140deg, var(--gold-300), var(--gold-500));
  color: #fff;
  transform: scale(1.05);
}

.services--v2 .service h3 {
  font-family: var(--font-serif); font-size: 22px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 14px; letter-spacing: .5px;
}
.services--v2 .service p {
  font-size: 14.5px; color: var(--text-mid); line-height: 1.85;
  margin-bottom: 22px; flex: 1;
}
.services--v2 .service .service__chips {
  position: static; padding-top: 18px;
  border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; gap: 6px;
}
.services--v2 .service .service__chips span {
  font-size: 11px; letter-spacing: 1px; color: var(--text-faint);
  padding: 3px 9px; border: 1px solid var(--line-dark); border-radius: 2px;
}
.services--v2 .service:hover .service__chips span {
  color: var(--gold-600); border-color: rgba(201,163,82,0.3); background: transparent;
}
.service__chips {
  position: absolute; bottom: 28px; left: 36px; right: 36px;
  border-top: 1px solid var(--line-dark); padding-top: 14px;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.service__chips span {
  font-size: 11px; letter-spacing: 1px; color: var(--text-faint);
  padding: 3px 9px; border: 1px solid var(--line-dark); border-radius: 2px;
  transition: all .25s var(--ease);
}
.service:hover .service__chips { border-color: rgba(244,226,164,0.3); }
.service:hover .service__chips span {
  color: var(--gold-300); border-color: rgba(244,226,164,0.3);
  background: rgba(244,226,164,0.05);
}
.service { min-height: 340px; padding-bottom: 110px; }

/* ============ VALUES ============ */
.section--values {
  background:
    radial-gradient(700px 400px at 80% 10%, rgba(201,163,82,0.06), transparent 60%),
    var(--paper);
}
.values {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
  margin-top: 24px;
}
.value {
  text-align: center; padding: 36px 22px;
  background: #fff; border: 1px solid var(--line-dark);
  transition: all .35s var(--ease);
  position: relative;
}
.value:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(10,24,48,0.25);
  border-color: rgba(201,163,82,0.4);
}
.value__icon {
  width: 72px; height: 72px; margin: 0 auto 22px;
  display: grid; place-items: center;
  font-family: var(--font-serif); font-size: 30px; font-weight: 700;
  color: var(--gold-500);
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  transition: all .35s var(--ease);
}
.value:hover .value__icon {
  background: linear-gradient(140deg, var(--gold-300), var(--gold-500));
  color: var(--navy-900);
  border-color: transparent;
}
.value h4 {
  font-family: var(--font-serif); font-size: 19px; font-weight: 600;
  color: var(--text-dark); letter-spacing: 4px; margin-bottom: 12px;
}
.value p { font-size: 13.5px; color: var(--text-mid); line-height: 1.75; }

/* ============ CULTURE ============ */
.culture__highlights { display: flex; flex-direction: column; gap: 28px; }
.culture__item {
  display: grid; grid-template-columns: 78px 1fr; gap: 24px;
  padding: 28px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  transition: all .35s var(--ease);
}
.culture__item:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(244,226,164,0.3);
}
.culture__num {
  font-family: var(--font-serif); font-size: 42px; font-weight: 700;
  color: var(--gold-400); line-height: 1;
}
.culture__item h4 {
  font-family: var(--font-serif); font-size: 19px; color: #fff;
  margin-bottom: 12px; letter-spacing: 1px;
}
.culture__item p {
  font-size: 14px; color: var(--text-light); line-height: 1.85;
  margin-bottom: 6px;
}
.culture__item p b { color: var(--gold-300); font-weight: 600; margin-right: 6px; }

/* ============ FOUNDER ============ */
.founder {
  display: grid; grid-template-columns: 280px 1fr; gap: 60px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line-dark);
  padding: 56px;
  position: relative;
  box-shadow: 0 40px 80px -50px rgba(10,24,48,0.25);
}
.founder::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
}
.founder__photo {
  width: 220px; height: 220px; margin: 0 auto;
  display: grid; place-items: center;
  font-family: var(--font-serif); font-size: 96px; font-weight: 700;
  color: var(--gold-300);
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
  border-radius: 50%;
  border: 3px solid var(--gold-400);
  box-shadow: 0 20px 40px -20px rgba(10,24,48,0.4);
}
.founder__body h3 {
  font-family: var(--font-serif); font-size: 28px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 6px; letter-spacing: 1px;
}
.founder__body h3 span {
  display: block; font-family: var(--font-sans); font-size: 13px;
  letter-spacing: 3px; color: var(--gold-600); font-weight: 500; margin-top: 6px;
}
.founder__body p {
  font-size: 15px; color: var(--text-mid); line-height: 1.85; margin-top: 18px;
}
.founder__body p b { color: var(--gold-600); font-weight: 600; }
.founder__highlights {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin: 28px 0 24px;
  padding: 24px 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark);
}
.founder__highlights li {
  font-size: 12px; letter-spacing: 1px; color: var(--text-mid);
  text-align: center;
}
.founder__highlights b {
  display: block; font-family: var(--font-serif); font-size: 26px;
  font-weight: 700; color: var(--text-dark); margin-bottom: 4px;
}
.founder__highlights b i { font-style: normal; font-size: 13px; color: var(--gold-600); margin-left: 3px; }

/* ============ POLICY SHARE ============ */
.policies {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
  margin-top: 24px;
}
.policy {
  background: #fff;
  border: 1px solid var(--line-dark);
  padding: 36px 34px 30px;
  position: relative;
  transition: all .35s var(--ease);
  display: flex; flex-direction: column;
}
.policy::before {
  content: ''; position: absolute; top: 0; left: 0; height: 100%; width: 3px;
  background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
  transform: scaleY(0); transform-origin: top;
  transition: transform .45s var(--ease);
}
.policy:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(10,24,48,0.22);
  border-color: rgba(201,163,82,0.4);
}
.policy:hover::before { transform: scaleY(1); }

.policy__meta {
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
  flex-wrap: wrap;
}
.policy__tag {
  font-size: 11px; letter-spacing: 2px; font-weight: 600;
  padding: 5px 12px; border-radius: 2px;
  background: rgba(28,63,122,0.08); color: var(--navy-700);
}
.policy__tag--hk { background: rgba(201,163,82,0.12); color: var(--gold-600); }
.policy__tag--ae { background: rgba(31,122,63,0.10); color: #1f7a3f; }
.policy__tag--es { background: rgba(28,63,122,0.10); color: var(--navy-700); }
.policy__tag--cn { background: rgba(179,50,76,0.10); color: #b3324c; }
.policy__date {
  font-size: 12px; letter-spacing: 1.5px;
  color: var(--text-faint); font-weight: 500;
}

.policy h3 {
  font-family: var(--font-serif); font-size: 20px; font-weight: 600;
  color: var(--text-dark); line-height: 1.4; margin-bottom: 16px;
  letter-spacing: .5px;
}
.policy > p {
  font-size: 14.5px; color: var(--text-mid); line-height: 1.85;
  margin-bottom: 20px; flex: 1;
}
.policy > p b { color: var(--gold-600); font-weight: 600; }

.policy__impact {
  background: var(--paper-soft);
  padding: 16px 18px;
  border-left: 2px solid var(--gold-500);
  margin-bottom: 20px;
}
.policy__impact b {
  display: block; font-size: 11px; letter-spacing: 3px;
  color: var(--gold-600); font-weight: 600; margin-bottom: 6px;
}
.policy__impact span {
  font-size: 13.5px; color: var(--text-mid); line-height: 1.75;
}

.policy__actions {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px; border-top: 1px solid var(--line-dark);
  gap: 12px;
}
.policy__actions span {
  font-size: 12.5px; color: var(--text-mid); line-height: 1.5;
}
.policy__actions a {
  font-size: 13px; font-weight: 600; color: var(--gold-600);
  letter-spacing: 1px; white-space: nowrap;
  transition: all .25s var(--ease);
}
.policy__actions a:hover { color: var(--gold-500); transform: translateX(3px); }

.policies__notice {
  margin-top: 36px; text-align: center;
  font-size: 12.5px; color: var(--text-faint); line-height: 1.7;
  font-style: italic;
}

/* ============ ONLINE CONSULT WIDGET ============ */
.consult { position: fixed; z-index: 80; inset: 0; pointer-events: none; }

.consult__fab {
  position: fixed; right: 28px; bottom: 28px;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 22px 14px 16px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  color: #fff;
  border: 1px solid var(--gold-500);
  border-radius: 999px;
  cursor: pointer; pointer-events: auto;
  box-shadow: 0 18px 40px -16px rgba(10,24,48,0.55), 0 0 0 4px rgba(201,163,82,0.08);
  transition: all .35s var(--ease);
  font-size: 14px; font-weight: 500; letter-spacing: 1px;
}
.consult__fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px -16px rgba(10,24,48,0.7), 0 0 0 5px rgba(201,163,82,0.18);
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
}
.consult__fab-icon {
  width: 22px; height: 22px; color: var(--gold-300);
}
.consult__fab-text { color: #fff; }
.consult__fab-dot {
  position: absolute; top: 12px; right: 16px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 0 rgba(244,226,164,0.6);
  animation: consult-pulse 2s infinite;
}
@keyframes consult-pulse {
  0% { box-shadow: 0 0 0 0 rgba(244,226,164,0.55); }
  70% { box-shadow: 0 0 0 12px rgba(244,226,164,0); }
  100% { box-shadow: 0 0 0 0 rgba(244,226,164,0); }
}

.consult__backdrop {
  position: fixed; inset: 0;
  background: rgba(6,16,31,0.55);
  backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.consult.is-open .consult__backdrop {
  opacity: 1; visibility: visible; pointer-events: auto;
}

.consult__panel {
  position: fixed; right: 24px; bottom: 24px;
  width: 380px; max-width: calc(100vw - 32px);
  max-height: calc(100vh - 48px);
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  box-shadow: 0 40px 80px -30px rgba(10,24,48,0.5);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(20px) scale(0.96); transform-origin: bottom right;
  transition: all .3s var(--ease);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.consult__panel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-300), var(--gold-500));
}
.consult.is-open .consult__panel {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0) scale(1);
}
.consult.is-open .consult__fab {
  opacity: 0; pointer-events: none; transform: translateY(20px);
}

.consult__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 22px 22px 18px;
  background: linear-gradient(160deg, var(--navy-900), var(--navy-950));
  color: #fff;
}
.consult__head h4 {
  font-family: var(--font-serif); font-size: 18px; font-weight: 600;
  color: #fff; margin-bottom: 4px; letter-spacing: 1px;
}
.consult__head p {
  font-size: 12px; color: var(--text-light); opacity: .8;
}
.consult__close {
  width: 28px; height: 28px; display: grid; place-items: center;
  font-size: 22px; font-weight: 300; color: var(--text-light);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
  transition: all .25s var(--ease);
  background: transparent; cursor: pointer;
}
.consult__close:hover { color: var(--gold-300); border-color: var(--gold-400); }

.consult__quick {
  padding: 18px 22px 4px;
  display: flex; flex-direction: column; gap: 10px;
}
.consult__quick-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  color: var(--text-dark);
  transition: all .25s var(--ease);
}
.consult__quick-item:hover {
  border-color: var(--gold-500);
  background: var(--paper-soft);
  transform: translateX(2px);
}
.consult__quick-item svg {
  width: 20px; height: 20px; color: var(--gold-500); flex-shrink: 0;
}
.consult__quick-item span {
  font-size: 13px; color: var(--text-mid); display: flex; flex-direction: column;
}
.consult__quick-item b {
  font-size: 11px; letter-spacing: 2px; color: var(--gold-600);
  font-weight: 600; margin-bottom: 2px;
}

.consult__divider {
  text-align: center; padding: 14px 22px 6px;
  position: relative;
}
.consult__divider::before {
  content: ''; position: absolute; top: 50%; left: 22px; right: 22px;
  height: 1px; background: var(--line-dark);
}
.consult__divider span {
  position: relative; background: #fff;
  padding: 0 14px;
  font-size: 11px; letter-spacing: 2px; color: var(--text-faint);
}

.consult__form {
  padding: 12px 22px 22px;
  overflow-y: auto;
}
.consult__form label {
  display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px;
}
.consult__form label > span {
  font-size: 11px; letter-spacing: 2px; color: var(--text-mid); font-weight: 500;
}
.consult__form label > span i { color: var(--gold-600); font-style: normal; }
.consult__form input,
.consult__form select,
.consult__form textarea {
  font: inherit; font-size: 13.5px; color: var(--text-dark);
  border: 1px solid var(--line-dark);
  background: var(--paper);
  padding: 10px 12px;
  border-radius: 3px;
  transition: all .25s var(--ease);
  width: 100%;
}
.consult__form textarea { resize: vertical; min-height: 70px; }
.consult__form input:focus,
.consult__form select:focus,
.consult__form textarea:focus {
  outline: none; border-color: var(--gold-500); background: #fff;
  box-shadow: 0 0 0 3px rgba(201,163,82,0.12);
}
.consult__form button[type=submit] { margin-top: 6px; padding: 12px; font-size: 13px; }
.consult__notice {
  margin-top: 10px; font-size: 12px; min-height: 16px;
  color: var(--text-mid); text-align: center;
}
.consult__notice.is-ok { color: #1f7a3f; }
.consult__notice.is-err { color: #b3324c; }

@media (max-width: 680px) {
  .consult__fab { right: 16px; bottom: 16px; padding: 12px 18px 12px 14px; }
  .consult__fab-text { display: none; }
  .consult__panel {
    right: 8px; bottom: 8px;
    width: calc(100vw - 16px);
  }
}

/* ============ SERVICE DETAIL PAGES ============ */
.detail__hero {
  position: relative;
  padding: 180px 0 90px;
  background: var(--navy-950);
  color: #fff;
  overflow: hidden;
}
.detail__hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 500px at 15% 25%, rgba(201,163,82,0.15), transparent 60%),
    radial-gradient(900px 700px at 90% 85%, rgba(28,63,122,0.5), transparent 65%),
    linear-gradient(180deg, #061021 0%, #0a1830 100%);
}
.detail__hero .container { position: relative; z-index: 2; }
.detail__crumbs {
  font-size: 12px; letter-spacing: 2px; color: var(--text-faint);
  margin-bottom: 36px;
}
.detail__crumbs a { color: var(--text-light); }
.detail__crumbs a:hover { color: var(--gold-300); }
.detail__crumbs span { margin: 0 10px; opacity: .5; }
.detail__title {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(34px, 5vw, 56px); line-height: 1.2;
  letter-spacing: 1px; margin: 18px 0 28px;
}
.detail__lead {
  font-size: 17px; line-height: 1.85; color: var(--text-light);
  max-width: 800px; margin-bottom: 40px;
}

.detail__section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }

.detail__items {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.detail__item {
  background: #fff;
  border: 1px solid var(--line-dark);
  padding: 32px 30px;
  position: relative;
  transition: all .3s var(--ease);
}
.detail__item::before {
  content: ''; position: absolute; top: 28px; left: 0; width: 3px; height: 28px;
  background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
}
.detail__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px -28px rgba(10,24,48,0.2);
  border-color: rgba(201,163,82,0.4);
}
.detail__item h4 {
  font-family: var(--font-serif); font-size: 18px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 10px;
}
.detail__item p {
  font-size: 14.5px; color: var(--text-mid); line-height: 1.85;
}

.detail__steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
  list-style: none; padding: 0; counter-reset: step;
}
.detail__steps li {
  background: #fff; padding: 28px 22px;
  border: 1px solid var(--line-dark);
  text-align: center; position: relative;
  transition: all .3s var(--ease);
}
.detail__steps li:hover {
  transform: translateY(-4px);
  border-color: rgba(201,163,82,0.4);
  box-shadow: 0 24px 50px -28px rgba(10,24,48,0.2);
}
.detail__step-num {
  display: block;
  font-family: var(--font-serif); font-size: 30px; font-weight: 700;
  color: var(--gold-500); margin-bottom: 14px; letter-spacing: 1px;
}
.detail__step-text {
  font-size: 13.5px; color: var(--text-mid); line-height: 1.7;
}

.detail__faqs {
  max-width: 880px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 14px;
}
.detail__faq {
  background: #fff;
  border: 1px solid var(--line-dark);
  padding: 20px 26px;
  transition: all .3s var(--ease);
}
.detail__faq[open] {
  border-color: rgba(201,163,82,0.4);
  box-shadow: 0 18px 40px -22px rgba(10,24,48,0.18);
}
.detail__faq summary {
  font-family: var(--font-serif); font-size: 16.5px; font-weight: 600;
  color: var(--text-dark); cursor: pointer;
  list-style: none; position: relative; padding-right: 32px;
}
.detail__faq summary::-webkit-details-marker { display: none; }
.detail__faq summary::after {
  content: '+'; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-sans); font-size: 22px; font-weight: 300;
  color: var(--gold-500); transition: transform .3s var(--ease);
}
.detail__faq[open] summary::after { content: '−'; }
.detail__faq p {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--line-dark);
  font-size: 14.5px; color: var(--text-mid); line-height: 1.85;
}

.detail__cta { text-align: center; padding: 90px 0; }
.detail__cta .section__title { color: #fff; }
.detail__cta .lead { color: var(--text-light); margin: 16px auto 32px; max-width: 600px; }

/* ============ CASES ============ */
.cases {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
.case {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  padding: 40px;
  transition: all .35s var(--ease);
}
.case:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(244,226,164,0.3);
  transform: translateY(-3px);
}
.case__industry {
  display: inline-block; font-size: 11px; letter-spacing: 3px;
  color: var(--gold-400); padding: 6px 12px;
  border: 1px solid rgba(244,226,164,0.3);
  margin-bottom: 22px;
}
.case h3 {
  font-family: var(--font-serif); font-size: 22px; font-weight: 600;
  color: #fff; line-height: 1.4; margin-bottom: 16px;
}
.case p { color: var(--text-light); font-size: 15px; line-height: 1.85; }
.case p b { color: var(--gold-300); font-weight: 600; }
.case__kpis { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 12px; }
.case__kpis span {
  font-size: 12px; letter-spacing: 2px; color: var(--gold-300);
  padding: 6px 12px; background: rgba(244,226,164,0.08);
}

.logos { margin-top: 80px; text-align: center; }
.logos__title { color: var(--text-faint); font-size: 12px; letter-spacing: 4px; margin-bottom: 32px; }
.logos__row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 48px;
  font-family: var(--font-serif); letter-spacing: 4px; font-size: 16px;
  color: var(--text-light); opacity: .55;
}
.logos__row span { transition: opacity .25s var(--ease); }
.logos__row:hover span { opacity: .3; }
.logos__row span:hover { opacity: 1; color: var(--gold-300); }

/* ============ TEAM ============ */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.member {
  background: #fff;
  border: 1px solid var(--line-dark);
  padding: 36px 28px; text-align: center;
  transition: all .35s var(--ease);
}
.member:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(10,24,48,0.25);
  border-color: rgba(201,163,82,0.4);
}
.member__photo {
  width: 96px; height: 96px; margin: 0 auto 22px;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
  color: var(--gold-300);
  display: grid; place-items: center;
  font-family: var(--font-serif); font-size: 38px; font-weight: 600;
  border-radius: 50%;
  border: 2px solid var(--gold-400);
}
.member h4 {
  font-family: var(--font-serif); font-size: 19px; color: var(--text-dark);
  margin-bottom: 4px;
}
.member h4 span { display: block; font-family: var(--font-sans); font-size: 12px; color: var(--text-faint); letter-spacing: 2px; font-weight: 400; margin-top: 2px; }
.member__role {
  font-size: 12px; letter-spacing: 2px; color: var(--gold-600);
  margin: 12px 0 16px; padding-bottom: 14px;
  border-bottom: 1px solid var(--line-dark);
}
.member__bio { font-size: 13.5px; color: var(--text-mid); line-height: 1.8; }

/* ============ CONTACT ============ */
.section--contact {
  background:
    radial-gradient(800px 500px at 20% 30%, rgba(28,63,122,0.07), transparent 60%),
    var(--paper-soft);
}
.contact__info {
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid var(--line-dark);
  display: flex; flex-direction: column; gap: 14px;
}
.contact__info li { color: var(--text-mid); font-size: 15px; }
.contact__info b { display: inline-block; width: 100px; color: var(--text-dark); letter-spacing: 1px; }

.contact__qr {
  margin-top: 28px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-top: 3px solid var(--gold-500);
  box-shadow: 0 20px 40px -30px rgba(10,24,48,0.25);
  display: flex; align-items: center; gap: 22px;
  max-width: 460px;
}
.contact__qr img {
  width: 128px; height: 128px; object-fit: contain;
  border: 1px solid var(--line-dark); padding: 6px; background: #fff;
  flex-shrink: 0;
}
.contact__qr-text { display: flex; flex-direction: column; gap: 6px; }
.contact__qr-eyebrow {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-500); font-weight: 600;
}
.contact__qr-text b {
  font-family: "Noto Serif SC", serif; font-size: 18px; color: var(--text-dark);
}
.contact__qr-text small {
  color: var(--text-mid); font-size: 12.5px; line-height: 1.55;
}
@media (max-width: 480px) {
  .contact__qr { flex-direction: column; text-align: center; align-items: center; }
}

.form {
  background: #fff;
  padding: 48px 44px;
  border: 1px solid var(--line-dark);
  box-shadow: 0 40px 80px -50px rgba(10,24,48,0.35);
  position: relative;
}
.form::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-300), var(--gold-500));
}
.form h3 {
  font-family: var(--font-serif); font-size: 22px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 28px; letter-spacing: 1px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form label {
  display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px;
}
.form label > span {
  font-size: 12px; letter-spacing: 2px; color: var(--text-mid); font-weight: 500;
}
.form label > span i { color: var(--gold-600); font-style: normal; }
.form input,
.form select,
.form textarea {
  font: inherit; font-size: 14.5px; color: var(--text-dark);
  border: 1px solid var(--line-dark);
  background: var(--paper);
  padding: 13px 14px;
  border-radius: var(--radius);
  transition: all .25s var(--ease);
  width: 100%;
}
.form textarea { resize: vertical; min-height: 100px; }
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none; border-color: var(--gold-500); background: #fff;
  box-shadow: 0 0 0 4px rgba(201,163,82,0.12);
}
.form button[type=submit] { margin-top: 12px; padding: 16px; }
.form__notice {
  margin-top: 14px; font-size: 13px; min-height: 18px;
  color: var(--text-mid); text-align: center;
}
.form__notice.is-ok { color: #1f7a3f; }
.form__notice.is-err { color: #b3324c; }

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: var(--text-light);
  padding-top: 72px;
}
.footer__inner {
  display: grid; grid-template-columns: 1.1fr 2fr; gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.brand--light .brand__name { color: #fff; }
.footer__tag { margin-top: 18px; color: var(--text-faint); font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.footer__cols h5 {
  font-family: var(--font-serif); font-size: 14px;
  letter-spacing: 3px; color: var(--gold-400); margin-bottom: 18px;
}
.footer__cols a,
.footer__cols span {
  display: block; font-size: 13.5px; color: var(--text-light);
  margin-bottom: 10px; opacity: .8;
}
.footer__cols a:hover { color: var(--gold-300); opacity: 1; }
.footer__bar {
  padding: 22px 0; font-size: 12px; letter-spacing: 1px;
  color: var(--text-faint); text-align: center;
}
.footer__icp a {
  color: var(--text-faint); text-decoration: none;
  transition: color .2s ease;
}
.footer__icp a:hover { color: var(--gold-400); }

/* ============ REVEAL ============ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .grid--2,
  .grid--contact { grid-template-columns: 1fr; gap: 48px; }
  .services,
  .services--6,
  .services--v2 { grid-template-columns: repeat(2, 1fr); }
  .cases { grid-template-columns: 1fr; }
  .team { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(3, 1fr); }
  .policies { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .section { padding: 90px 0; }
}
@media (max-width: 680px) {
  .container { padding: 0 22px; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav .btn--gold { display: none; }
  .services,
  .services--6 { grid-template-columns: 1fr; }
  .team { grid-template-columns: 1fr; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .form { padding: 32px 24px; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .about__card { padding: 32px 24px; }
  .case { padding: 28px 24px; }
  .culture__item { grid-template-columns: 1fr; gap: 12px; padding: 24px; }
  .founder { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; text-align: center; }
  .founder__photo { width: 160px; height: 160px; font-size: 64px; }
  .founder__highlights { grid-template-columns: repeat(2, 1fr); }
  .detail__items { grid-template-columns: 1fr; }
  .detail__steps { grid-template-columns: repeat(2, 1fr); }
  .detail__hero { padding: 140px 0 70px; }
}
/* ===== 服务内容卡片框架 ===== */
.service-card {
  background: #ffffff;
  border: 1px solid #e8e0d6;
  border-radius: 10px;
  padding: 28px 32px;
  margin-bottom: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}

.service-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

.service-card h2 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin-top: 0;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #d4af37;
}

.service-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  margin-top: 18px;
  margin-bottom: 8px;
}

.service-card ul,
.service-card ol {
  padding-left: 22px;
  margin: 10px 0 4px 0;
}

.service-card ul li,
.service-card ol li {
  padding: 6px 0;
  line-height: 1.7;
  color: #333;
}

.service-card ul li strong,
.service-card ol li strong {
  color: #1a1a2e;
}

/* ===== FAQ 特殊样式 ===== */
.service-card .faq-item {
  border-bottom: 1px solid #f0ece6;
  padding: 16px 0;
}

.service-card .faq-item:last-child {
  border-bottom: none;
}

.service-card .faq-item h3 {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 6px 0;
}

.service-card .faq-item p {
  margin: 0;
  color: #555;
  line-height: 1.6;
  font-size: 14.5px;
}

/* ===== 卡片交替底色 ===== */
.service-card.alt {
  background: #faf8f5;
}

/* ===== 响应式 ===== */
@media (max-width: 640px) {
  .service-card {
    padding: 20px 18px;
  }
  .service-card h2 {
    font-size: 18px;
  }
}
