/* ════════ 乙木品牌主题色（jade green + 金）══════ */

/* 覆盖：jade green 替换普鲁士蓝，保留红色作为强调 */
.strip .btn-account,
.strip .btn-account.logged-in:hover {
  background: var(--accent-yimu) !important;
  border-color: var(--accent-yimu) !important;
  color: #fff !important;
}

/* 服务卡片 */
.service-card,
.contact-card {
  padding: 24px 28px;
  background: rgba(31, 95, 63, 0.06);
  border: 1px solid rgba(31, 95, 63, 0.18);
  border-left: 3px solid var(--accent-yimu);
  border-radius: 6px;
  margin-bottom: 16px;
}
.service-card h3 {
  color: #fff;
  font-size: 16px;
  margin: 0 0 12px;
  font-weight: 600;
}
.service-card p {
  color: #c8d4dc;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

/* 联系区块 */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  margin: 24px 0;
}
.contact-card {
  margin: 0;
  padding: 18px 22px;
}
.contact-label {
  color: var(--ink-faint, #8a9ba8);
  font-size: 12px;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.contact-value {
  color: #e8ecf0;
  font-size: 14px;
  font-family: 'IBM Plex Mono', monospace;
  word-break: break-all;
}
.contact-disclaimer {
  margin-top: 32px;
  padding: 16px 20px;
  background: rgba(212, 168, 73, 0.06);
  border-left: 2px solid var(--stamp-yimu, #d4a849);
  border-radius: 4px;
  color: #8a9ba8;
  font-size: 13px;
  line-height: 1.7;
}

/* 主题色变量 */
:root {
  --accent-yimu: #1f5f3f;     /* 玉绿主色 */
  --accent-yimu-2: #2d7a52;
  --stamp-yimu: #d4a849;      /* 金色印章 */
}

/* ════════ Footer ════════ */
.site-footer {
  background: #060a10;
  border-top: 1px solid rgba(31, 95, 63, 0.25);
  padding: 36px 24px 28px;
  margin-top: 48px;
}
.site-footer-inner {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 13px;
  color: #8a9ba8;
  line-height: 1.7;
}
.site-footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  text-align: center;
}
.site-footer-brand {
  color: var(--stamp-yimu, #d4a849);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
}
.site-footer-meta span {
  color: #6a7888;
}
.site-footer-links {
  gap: 18px;
  padding-top: 6px;
}
.site-footer-links a {
  color: #8a9ba8;
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer-links a:hover {
  color: var(--stamp-yimu, #d4a849);
}
.beian-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.beian-link svg {
  fill: #4a5868;
  flex-shrink: 0;
}
.site-footer-copy {
  color: #4a5868;
  font-size: 12px;
  padding-top: 8px;
  border-top: 1px dashed rgba(255, 255, 255, 0.06);
  margin-top: 4px;
}