/* ============================================
   germanvat.com — 深色高端商务主题
   德国私人银行 / 事务所质感：深海军蓝 + 白 + 金
   不使用国旗配色，仅以金色作为克制的高级点缀
   ============================================ */

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

/* --- Reset & Base --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* 背景：深海军蓝 → 炭黑 */
  --c-bg: #0B0E13;
  --c-bg-alt: #11161F;
  --c-bg-warm: #161C27;
  --c-surface: #141A24;
  --c-surface-2: #1A212E;

  /* 边框与分隔（暗色下用低透明白） */
  --c-border: rgba(255,255,255,0.09);
  --c-border-light: rgba(255,255,255,0.05);

  /* 文字 */
  --c-text: #E9EBEE;
  --c-text-muted: #98A1AE;
  --c-text-light: #6A7280;
  --c-white: #FFFFFF;

  /* 主点缀：克制的高级金（替代旧青绿主色） */
  --c-gold: #C9A24B;
  --c-gold-dark: #A8842F;
  --c-gold-light: #E0BC6E;
  --c-gold-50: rgba(201,162,75,0.10);
  --c-gold-100: rgba(201,162,75,0.16);

  /* 品牌青绿：仅用于 LOGO，UI 中极少出现 */
  --c-teal: #178A7B;
  --c-teal-50: rgba(23,138,123,0.12);

  /* 兼容旧 var 名（文章页内联样式依赖）：统一映射到金 */
  --c-primary: var(--c-gold);
  --c-primary-dark: var(--c-gold-dark);
  --c-primary-light: var(--c-gold-light);
  --c-primary-50: var(--c-gold-50);
  --c-primary-100: var(--c-gold-100);
  --c-accent: var(--c-gold);
  --c-accent-light: var(--c-gold-light);
  --c-accent-50: var(--c-gold-50);
  --c-accent-100: var(--c-gold-100);

  /* 效果 */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.2);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3), 0 1px 2px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 18px rgba(0,0,0,0.35);
  --shadow-lg: 0 16px 44px rgba(0,0,0,0.5);
  --radius: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --max-width: 1180px;
  --font-sans: 'Inter', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-cn: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-serif: 'Noto Serif SC', 'Inter', serif;
  --transition: all 0.25s ease;
  --transition-slow: all 0.4s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--c-gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--c-gold-light); }

::selection { background: rgba(201,162,75,0.25); color: #fff; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* --- Top Bar --- */
.topbar {
  background: #07090D;
  border-bottom: 1px solid var(--c-border-light);
  color: var(--c-text-light);
  font-size: 12px;
  padding: 7px 0;
  text-align: center;
  letter-spacing: 0.2px;
}

/* --- Header --- */
.header {
  background: rgba(11,14,19,0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--c-border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  height: 38px;
  width: auto;
  display: block;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-text .wordmark {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: -0.5px;
  line-height: 1;
}
.logo-text .tagline {
  font-size: 10px;
  color: var(--c-text-light);
  letter-spacing: 1px;
  margin-top: 3px;
  font-family: var(--font-cn);
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav a {
  color: var(--c-text-muted);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-gold);
  transition: var(--transition);
}
.nav a:hover { color: var(--c-text); }
.nav a:hover::after { width: 100%; }

.nav-dropdown {
  position: relative;
}
.nav-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 250px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  font-size: 13px;
  color: var(--c-text-muted);
}
.dropdown-menu a:hover {
  background: var(--c-gold-50);
  color: var(--c-text);
}
.dropdown-menu a .de-label {
  font-size: 11px;
  color: var(--c-text-light);
  font-style: italic;
}
.dropdown-arrow {
  font-size: 10px;
  margin-left: 4px;
  color: var(--c-text-light);
}

/* CTA Button */
.btn-cta {
  background: var(--c-gold);
  color: #1A1408 !important;
  padding: 9px 22px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-cta:hover {
  background: var(--c-gold-light);
  color: #1A1408 !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,162,75,0.25);
}
.btn-cta::after { display: none; }

.mobile-toggle { display: none; }

/* --- Hero --- */
.hero {
  background:
    radial-gradient(900px 500px at 82% 8%, rgba(201,162,75,0.10) 0%, transparent 55%),
    radial-gradient(700px 480px at 10% 100%, rgba(23,138,123,0.06) 0%, transparent 55%),
    linear-gradient(180deg, #0B0E13 0%, #0E121A 100%);
  padding: 92px 0 84px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--c-border-light);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 75% 20%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 75% 20%, #000 0%, transparent 75%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding: 6px 14px;
  background: var(--c-gold-50);
  border: 1px solid var(--c-gold-100);
  border-radius: 20px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.28;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
  color: var(--c-text);
}
.hero h1 .accent {
  color: var(--c-gold);
}
.hero .subtitle {
  font-size: 17px;
  color: var(--c-text-muted);
  margin-bottom: 38px;
  line-height: 1.85;
}
.hero .subtitle .de-term {
  color: var(--c-gold);
  font-weight: 600;
  font-style: italic;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--c-gold);
  color: #1A1408;
  padding: 13px 32px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--c-gold-light);
  color: #1A1408;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,162,75,0.28);
}
.btn-secondary {
  background: transparent;
  color: var(--c-text);
  padding: 13px 32px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--c-border);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-secondary:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  background: var(--c-gold-50);
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--c-bg-alt);
  color: var(--c-text);
  padding: 40px 0;
  border-bottom: 1px solid var(--c-border-light);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item {
  text-align: center;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: var(--c-border);
}
.stat-item .stat-num {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--c-gold);
}
.stat-item .stat-num .plus { color: var(--c-gold-light); }
.stat-item .stat-label {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-top: 10px;
}

/* --- Section General --- */
.section {
  padding: 84px 0;
}
.section-alt {
  background: var(--c-bg-alt);
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
}
.section-header .eyebrow::before,
.section-header .eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--c-gold-100);
}
.section-header .eyebrow::before { right: 100%; margin-right: 12px; }
.section-header .eyebrow::after { left: 100%; margin-left: 12px; }

.section-header h2 {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 14px;
  letter-spacing: -0.4px;
}
.section-header p {
  font-size: 15px;
  color: var(--c-text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.85;
}

/* --- Knowledge Categories --- */
.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.category-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
.category-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--c-gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: var(--transition);
}
.category-card:hover {
  border-color: var(--c-gold-100);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  background: var(--c-surface-2);
}
.category-card:hover::before {
  transform: scaleY(1);
}
.category-card .cat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: var(--c-gold-50);
  color: var(--c-gold);
}
.category-card .cat-icon svg {
  width: 22px;
  height: 22px;
}
.category-card .cat-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-border);
  letter-spacing: 0.5px;
}
.category-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 6px;
}
.category-card h3 .de {
  font-size: 12px;
  font-weight: 400;
  color: var(--c-text-light);
  display: block;
  margin-top: 3px;
  font-style: italic;
}
.category-card p {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.category-card .cat-count {
  display: inline-block;
  font-size: 11px;
  color: var(--c-gold);
  font-weight: 600;
  background: var(--c-gold-50);
  padding: 3px 10px;
  border-radius: 12px;
}

/* --- Featured Article --- */
.featured-article {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 5fr 7fr;
  border: 1px solid var(--c-border);
}
.featured-article .article-visual {
  background: linear-gradient(150deg, #1B2433 0%, #121925 100%);
  color: var(--c-text);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--c-border);
}
.featured-article .article-visual::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,75,0.16) 0%, transparent 70%);
}
.featured-article .article-visual::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
}
.featured-article .article-visual .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-gold-100);
  color: var(--c-gold-light);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 16px;
  margin-bottom: 20px;
  width: fit-content;
}
.featured-article .article-visual h3 {
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
  position: relative;
}
.featured-article .article-visual .de-title {
  font-size: 13px;
  color: var(--c-text-light);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}
.featured-article .article-visual .article-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--c-text-muted);
  position: relative;
}
.featured-article .article-content {
  padding: 44px 40px;
}
.featured-article .article-content .label {
  font-size: 11px;
  color: var(--c-gold);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.featured-article .article-content h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 16px;
  line-height: 1.5;
}
.featured-article .article-content p {
  font-size: 14px;
  color: var(--c-text-muted);
  margin-bottom: 18px;
  line-height: 1.8;
}
.featured-article .article-content .article-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 24px;
}
.article-topics .topic-tag {
  font-size: 12px;
  color: var(--c-text);
  background: var(--c-bg-warm);
  border: 1px solid var(--c-border);
  padding: 4px 11px;
  border-radius: var(--radius);
}
.featured-article .article-content .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-gold);
  padding: 11px 26px;
  border: 1px solid var(--c-gold);
  border-radius: var(--radius);
  transition: var(--transition);
}
.featured-article .article-content .read-more:hover {
  background: var(--c-gold);
  color: #1A1408;
}

/* --- Services --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
}
.service-card.featured {
  border-color: var(--c-gold);
  border-width: 1.5px;
  padding: 35px 29px;
}
.service-card.featured::after {
  content: '热门选择';
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-gold);
  color: #1A1408;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 12px;
  white-space: nowrap;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--c-gold-100);
}
.service-card .svc-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  background: var(--c-gold-50);
  color: var(--c-gold);
}
.service-card .svc-icon svg {
  width: 26px;
  height: 26px;
}
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 8px;
  text-align: center;
}
.service-card .svc-desc {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 20px;
  text-align: center;
  min-height: 40px;
}
.service-card .svc-price {
  font-size: 30px;
  font-weight: 800;
  color: var(--c-gold);
  text-align: center;
  letter-spacing: -1px;
}
.service-card .svc-price .unit {
  font-size: 14px;
  font-weight: 400;
  color: var(--c-text-muted);
}
.service-card .svc-features {
  list-style: none;
  margin: 24px 0;
  padding-top: 24px;
  border-top: 1px solid var(--c-border);
}
.service-card .svc-features li {
  font-size: 13px;
  color: var(--c-text);
  padding: 7px 0;
  padding-left: 26px;
  position: relative;
  display: flex;
  align-items: center;
}
.service-card .svc-features li::before {
  content: '';
  position: absolute;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--c-gold-50);
}
.service-card .svc-features li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-65%) rotate(45deg);
  width: 5px;
  height: 9px;
  border: solid var(--c-gold);
  border-width: 0 2px 2px 0;
}
.service-card .svc-btn {
  display: block;
  text-align: center;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.service-card .svc-btn.primary {
  background: var(--c-gold);
  color: #1A1408;
}
.service-card .svc-btn.primary:hover {
  background: var(--c-gold-light);
  color: #1A1408;
}
.service-card .svc-btn.outline {
  border: 1px solid var(--c-border);
  color: var(--c-text);
}
.service-card .svc-btn.outline:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  background: var(--c-gold-50);
}

/* --- About Section --- */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: center;
}
.about-photo {
  position: relative;
}
.about-photo .photo-placeholder {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  background: linear-gradient(150deg, #161D27 0%, #11161F 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-border);
  overflow: hidden;
}
.about-photo .photo-placeholder .initials {
  font-size: 80px;
  font-weight: 800;
  color: var(--c-gold-100);
  letter-spacing: -2px;
}
.about-photo .credential-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-photo .credential-badge .num {
  font-size: 26px;
  font-weight: 800;
  color: var(--c-gold);
  letter-spacing: -0.5px;
}
.about-photo .credential-badge .label {
  font-size: 11px;
  color: var(--c-text-muted);
}
.about-content .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.about-content h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 22px;
  letter-spacing: -0.4px;
}
.about-content .bio {
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.9;
  margin-bottom: 20px;
}
.about-content .bio strong { color: var(--c-text); }
.about-content .credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}
.credential-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.credential-item .cred-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--c-gold-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-gold);
}
.credential-item .cred-icon svg {
  width: 20px;
  height: 20px;
}
.credential-item .cred-text {
  font-size: 13px;
  color: var(--c-text-muted);
}
.credential-item .cred-text strong {
  display: block;
  font-size: 15px;
  color: var(--c-text);
  margin-bottom: 3px;
}

/* --- CTA / Contact Form --- */
.cta-section {
  background:
    radial-gradient(700px 400px at 85% 10%, rgba(201,162,75,0.08) 0%, transparent 60%),
    linear-gradient(160deg, #11161F 0%, #0E121A 100%);
  color: var(--c-text);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--c-border-light);
  border-bottom: 1px solid var(--c-border-light);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-info .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cta-info h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.4px;
  color: var(--c-text);
}
.cta-info p {
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.85;
  margin-bottom: 32px;
}
.cta-info .wechat-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.cta-info .wechat-card .qr-img {
  width: 116px;
  height: 116px;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  object-fit: cover;
  flex-shrink: 0;
  background: #fff;
}
.cta-info .wechat-card .wechat-text h4 {
  font-size: 16px;
  color: var(--c-text);
  margin-bottom: 6px;
}
.cta-info .wechat-card .wechat-text p {
  font-size: 13px;
  color: var(--c-text-muted);
  margin: 0;
}

/* Contact Form */
.contact-form {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}
.contact-form h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 8px;
}
.contact-form .form-desc {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 7px;
}
.form-group label .required { color: var(--c-gold); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--c-text);
  background: var(--c-bg);
  transition: var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--c-text-light); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-gold);
  background: var(--c-surface-2);
  box-shadow: 0 0 0 3px rgba(201,162,75,0.14);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea {
  resize: vertical;
  min-height: 90px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-submit {
  width: 100%;
  background: var(--c-gold);
  color: #1A1408;
  border: none;
  padding: 14px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
}
.form-submit:hover {
  background: var(--c-gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,162,75,0.28);
}
.form-disclaimer {
  font-size: 11px;
  color: var(--c-text-light);
  text-align: center;
  margin-top: 14px;
}

/* --- Footer --- */
.footer {
  background: #07090D;
  color: var(--c-text-muted);
  padding: 56px 0 28px;
  border-top: 1px solid var(--c-border-light);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--c-border);
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand .footer-logo .logo-icon.footer-logo-icon {
  height: 34px;
}
.footer-brand .footer-logo .wordmark {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: -0.5px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.8;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 13px;
  color: var(--c-text-muted);
}
.footer-col a:hover { color: var(--c-gold); }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  gap: 20px;
}
.footer-bottom .disclaimer {
  max-width: 700px;
  line-height: 1.7;
  color: var(--c-text-light);
}
.footer-bottom .copyright {
  white-space: nowrap;
  color: var(--c-text-light);
}

/* --- Responsive --- */
@media (max-width: 968px) {
  .nav { display: none; }
  .nav.nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--c-surface-2);
    border-bottom: 1px solid var(--c-border);
    padding: 16px 32px;
    gap: 4px;
    align-items: flex-start;
  }
  .nav.nav-open a { padding: 10px 0; width: 100%; }

  .mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
  }
  .mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
  }

  .hero { padding: 60px 0 52px; }
  .hero h1 { font-size: 34px; }
  .hero .subtitle { font-size: 15px; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .stat-item:nth-child(2)::after { display: none; }

  .knowledge-grid { grid-template-columns: 1fr; }
  .featured-article { grid-template-columns: 1fr; }
  .featured-article .article-visual { padding: 36px; border-right: none; border-bottom: 1px solid var(--c-border); }
  .featured-article .article-content { padding: 36px; }

  .services-grid { grid-template-columns: 1fr; }
  .about-section { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 300px; }
  .cta-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .section { padding: 60px 0; }
  .section-header h2 { font-size: 28px; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item::after { display: none !important; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .hero h1 { font-size: 29px; }
  .about-content .credentials { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
}

/* ============================================
   子页面通用样式（服务 / 关于 / 联系）
   ============================================ */

/* 页面头图 */
.page-hero {
  background:
    radial-gradient(800px 460px at 80% 0%, rgba(201,162,75,0.10) 0%, transparent 55%),
    linear-gradient(180deg, #0B0E13 0%, #0E121A 100%);
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--c-border-light);
}
.page-hero .inner { max-width: 780px; }
.page-hero .breadcrumb-page {
  font-size: 13px;
  color: var(--c-text-light);
  margin-bottom: 18px;
}
.page-hero .breadcrumb-page a { color: var(--c-text-muted); }
.page-hero .breadcrumb-page a:hover { color: var(--c-gold); }
.page-hero .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 6px 14px;
  background: var(--c-gold-50);
  border: 1px solid var(--c-gold-100);
  border-radius: 20px;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  color: var(--c-text);
}
.page-hero p {
  font-size: 16px;
  color: var(--c-text-muted);
  line-height: 1.85;
}

/* 简易双栏 intro */
.split {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
.split h2 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 18px;
  letter-spacing: -0.4px;
}
.split p { font-size: 15px; color: var(--c-text-muted); line-height: 1.9; }
.split .side-note {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
}
.split .side-note h4 { font-size: 15px; color: var(--c-text); margin-bottom: 14px; }
.split .side-note ul { list-style: none; }
.split .side-note li {
  font-size: 13px; color: var(--c-text-muted);
  padding: 9px 0 9px 26px; position: relative;
  border-bottom: 1px solid var(--c-border-light);
}
.split .side-note li:last-child { border-bottom: none; }
.split .side-note li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--c-gold-50);
}
.split .side-note li::after {
  content: ''; position: absolute; left: 5px; top: 17px;
  width: 4px; height: 8px; border: solid var(--c-gold);
  border-width: 0 2px 2px 0; transform: rotate(45deg);
}

/* 流程步骤 */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-step {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  position: relative;
}
.process-step .process-num {
  font-size: 28px; font-weight: 800; color: var(--c-gold);
  letter-spacing: -1px; margin-bottom: 12px;
}
.process-step h4 { font-size: 16px; color: var(--c-text); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--c-text-muted); line-height: 1.7; }

/* FAQ */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  margin-bottom: 14px;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--c-gold-100); }
.faq-item .faq-q {
  font-size: 16px; font-weight: 700; color: var(--c-text);
  margin-bottom: 10px; display: flex; gap: 10px; align-items: baseline;
}
.faq-item .faq-q .q-mark { color: var(--c-gold); font-weight: 800; }
.faq-item .faq-a { font-size: 14px; color: var(--c-text-muted); line-height: 1.85; }

/* 联系页双栏 */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-serif);
  font-size: 30px; font-weight: 700; color: var(--c-text);
  margin-bottom: 16px; letter-spacing: -0.4px;
}
.contact-info p { font-size: 15px; color: var(--c-text-muted); line-height: 1.85; margin-bottom: 28px; }
.contact-info .info-block {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-top: 1px solid var(--c-border-light);
}
.contact-info .info-block .info-icon {
  width: 42px; height: 42px; border-radius: var(--radius-md);
  background: var(--c-gold-50); color: var(--c-gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info .info-block h4 { font-size: 15px; color: var(--c-text); margin-bottom: 4px; }
.contact-info .info-block p { font-size: 13px; color: var(--c-text-muted); margin: 0; }
.contact-info .qr-card {
  margin-top: 28px;
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius-lg); padding: 22px 24px;
  display: flex; gap: 20px; align-items: center;
}
.contact-info .qr-card img {
  width: 116px; height: 116px; border-radius: var(--radius);
  border: 1px solid var(--c-border); object-fit: cover; background: #fff; flex-shrink: 0;
}
.contact-info .qr-card h4 { font-size: 16px; color: var(--c-text); margin-bottom: 6px; }
.contact-info .qr-card p { font-size: 13px; color: var(--c-text-muted); margin: 0; }

@media (max-width: 968px) {
  .page-hero h1 { font-size: 32px; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .contact-split { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .page-hero { padding: 52px 0 44px; }
  .page-hero h1 { font-size: 27px; }
  .process-grid { grid-template-columns: 1fr; }
}
