/* 南昌融信财务咨询有限公司 — 通用样式（从 index.html 提取，用于所有内页） */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  color: #111; background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

:root {
  --ink:    #111111;
  --ink2:   #444444;
  --ink3:   #777777;
  --panel:  #1C3049;
  --dark:   #0E1A24;
  --off:    #F4F4F4;
  --border: #DEDEDE;
  --sp: 96px;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 64px; }

/* ── ANIMATIONS ── */
.lm { overflow: hidden; display: block; }
.lm > span { display: block; transform: translateY(110%); transition: transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.lm.go > span { transform: translateY(0); }

.fu { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fu.go { opacity: 1; transform: none; }
.fu.d1 { transition-delay: .1s; }
.fu.d2 { transition-delay: .2s; }
.fu.d3 { transition-delay: .3s; }
.fu.d4 { transition-delay: .4s; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  height: 80px; background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-brand img { width: 34px; height: 34px; object-fit: contain; }
.nav-brand-name {
  font-size: 18px; font-weight: 700; color: var(--ink);
  letter-spacing: 0.2px;
}
.nav-right { display: flex; align-items: center; gap: 44px; }
.nav-links { display: flex; align-items: center; gap: 44px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink);
  text-decoration: none; letter-spacing: 0.1px;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 100%;
  height: 2px; background: var(--ink);
  transition: right 0.28s cubic-bezier(0.4,0,0.2,1);
}
.nav-links a:hover::after { right: 0; }
.nav-contact { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  font-size: 14px; font-weight: 600; color: var(--ink);
  text-decoration: none; letter-spacing: 0.3px;
}
.nav-phone:hover { color: var(--ink2); }
.nav-consult {
  font-size: 14px; font-weight: 500; color: var(--ink);
  text-decoration: none; letter-spacing: 0.5px;
  border: 1.5px solid var(--ink); padding: 7px 18px;
  transition: background .2s, color .2s;
}
.nav-consult:hover { background: var(--ink); color: #fff; }
.nav .container { max-width: none; width: 100%; padding: 0 40px 0 48px; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 5px 0; transition: all .3s; }
.mob-menu {
  display: none; position: fixed; inset: 80px 0 0; z-index: 8999;
  background: #fff; border-top: 1px solid var(--border);
  padding: 0 24px 32px; overflow-y: auto;
}
.mob-menu.open { display: block; }
.mob-menu a {
  display: block; padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 17px; color: var(--ink); text-decoration: none; font-weight: 500;
}

/* ── PAGE HERO (内页的紧凑版) ── */
.page-hero {
  margin-top: 80px;
  background: var(--panel);
  color: #fff;
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(197,160,89,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-breadcrumb {
  font-size: 13px; color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px; margin-bottom: 22px;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.page-hero-breadcrumb a:hover { color: #fff; }
.page-hero-breadcrumb .sep { margin: 0 10px; color: rgba(255,255,255,0.3); }
.page-hero-label {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
}
.page-hero-label .pipes { display: flex; gap: 4px; }
.page-hero-label .pipes span {
  display: block; width: 2px; height: 14px; background: rgba(255,255,255,0.4);
}
.page-hero-label-text {
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 2.5px; text-transform: uppercase;
}
.page-hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; color: #fff; line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
  max-width: 900px;
}
.page-hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.72);
  line-height: 1.85; font-weight: 300;
  max-width: 760px;
  margin-bottom: 36px;
}
.page-hero-meta {
  display: flex; flex-wrap: wrap; gap: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.page-hero-meta-item { display: flex; flex-direction: column; gap: 6px; }
.page-hero-meta-k {
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: 2px; text-transform: uppercase;
}
.page-hero-meta-v {
  font-size: 17px; font-weight: 600; color: #fff;
  letter-spacing: -0.2px;
}
.page-hero-meta-v a { color: #fff; text-decoration: none; }

/* ── SECTION COMMON ── */
.sec { padding: var(--sp) 0; }
.sec-gray { background: var(--off); }
.sec-dark { background: var(--dark); }

.pipe-label {
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.pipe-label .pipes { display: flex; gap: 4px; flex-shrink: 0; }
.pipe-label .pipes span {
  display: block; width: 2px; height: 14px; background: var(--ink); opacity: 0.5;
}
.pipe-label-text {
  font-size: 13px; font-weight: 600; color: var(--ink2);
  letter-spacing: 2.5px; text-transform: uppercase;
}
.sec-dark .pipe-label .pipes span { background: rgba(255,255,255,.4); }
.sec-dark .pipe-label-text { color: rgba(255,255,255,.45); }

.sec-h {
  font-size: clamp(32px,3.4vw,46px); font-weight: 700;
  color: var(--ink); line-height: 1.14; letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.sec-dark .sec-h { color: #fff; }
.sec-p {
  font-size: 17px; color: var(--ink2); line-height: 1.85; font-weight: 300;
}
.sec-dark .sec-p { color: rgba(255,255,255,.5); }
.sec-head { margin-bottom: 56px; }
.sec-head.center { text-align: center; }
.sec-head.center .pipe-label { justify-content: center; }
.sec-head.center .sec-p { max-width: 800px; margin: 0 auto; }

/* ── PRICE / FEATURE TABLE ── */
.ptable-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  background: #fff;
}
.ptable {
  width: 100%; border-collapse: collapse;
  min-width: 600px; background: #fff;
}
.ptable th, .ptable td {
  padding: 22px 28px; text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 15px; line-height: 1.6;
  vertical-align: top;
}
.ptable thead th {
  background: #fafafa;
  font-size: 13px; font-weight: 700;
  color: var(--ink2);
  letter-spacing: 0.5px;
  text-transform: none;
}
.ptable tbody tr:hover { background: #fafbfc; }
.ptable tr:last-child td { border-bottom: none; }
.ptable .pcell-k { font-weight: 600; color: var(--ink); width: 28%; }
.ptable .pcell-v { color: var(--ink2); }
.ptable .pcell-price {
  font-weight: 800; color: var(--panel);
  font-size: 18px; letter-spacing: -0.3px;
}
.ptable .pcell-note { color: var(--ink3); font-size: 14px; }

/* ── POINTS GRID (service inclusions / benefits) ── */
.pts-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  margin-top: 40px;
}
.pts-item {
  background: #fff; padding: 36px 32px;
  transition: background .25s;
  position: relative;
}
.pts-item:hover { background: #fafafa; }
.pts-n {
  font-size: 11px; font-weight: 700;
  color: var(--ink3); letter-spacing: 3px;
  margin-bottom: 14px;
}
.pts-h {
  font-size: 19px; font-weight: 700; color: var(--ink);
  margin-bottom: 12px; line-height: 1.35;
}
.pts-p {
  font-size: 14px; color: var(--ink2);
  line-height: 1.8; font-weight: 300;
}

/* ── KEY POINTS LIST (with number label) ── */
.kp-wrap { margin-top: 28px; }
.kp-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: 56px 1fr;
  gap: 28px; align-items: start;
  transition: background .2s;
}
.kp-item:last-child { border-bottom: none; }
.kp-n {
  font-size: 12px; font-weight: 700;
  color: var(--ink3); letter-spacing: 2px;
  padding-top: 4px;
}
.kp-h {
  font-size: 20px; font-weight: 700; color: var(--ink);
  margin-bottom: 10px; line-height: 1.35;
}
.kp-p {
  font-size: 15px; color: var(--ink2);
  line-height: 1.85; font-weight: 300;
}

/* ── COMPARISON TABLE ── */
.comp-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
}
.comp-table {
  width: 100%; border-collapse: collapse; background: #fff;
  min-width: 600px; table-layout: fixed;
}
.comp-table th:nth-child(1),
.comp-table td:nth-child(1) {
  width: 20%;
  background: #f8f9fa;
  font-weight: 700; color: var(--ink); font-size: 14px;
  border-right: 1px solid var(--border);
}
.comp-table th:nth-child(2),
.comp-table td.c-oth {
  width: 40%;
  background: #fff; color: var(--ink2);
  transition: background 0.2s ease;
}
.comp-table th.hi, .comp-table td.c-us {
  width: 40%;
  background: #fff;
  color: var(--panel);
  font-weight: 700;
  font-size: 15px;
  border-left: 1px solid rgba(28,48,73,0.08);
  transition: background 0.2s ease;
}
.comp-table tbody tr:hover td.c-oth { background: #fafafa; }
.comp-table tbody tr:hover td.c-us { background: rgba(28,48,73,0.06); }
.comp-table th {
  padding: 22px 28px; font-size: 13px; font-weight: 700; text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--ink3);
}
.comp-table th.hi { color: var(--panel); font-size: 17px; font-weight: 800; }
.comp-table td {
  padding: 22px 28px; border-bottom: 1px solid var(--border);
  font-size: 14px; line-height: 1.6;
  vertical-align: top;
}
.comp-table tr:last-child td { border-bottom: none; }

/* ── CASES ── */
.cases-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.case {
  background: #fff; padding: 44px 36px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: background .25s;
}
.case:hover { background: #FAFAFA; }
.case::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 100%; height: 3px;
  background: var(--ink);
  transition: right .35s cubic-bezier(.4,0,.2,1);
}
.case:hover::after { right: 0; }
.case-tag {
  font-size: 11px; font-weight: 700; color: var(--ink3);
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px;
}
.case-h {
  font-size: 20px; font-weight: 700; color: var(--ink);
  line-height: 1.4; margin-bottom: 18px; flex-grow: 1;
}
.case-list { list-style: none; margin-bottom: 20px; }
.case-list li {
  font-size: 14px; color: var(--ink2); padding: 8px 0;
  border-bottom: 1px solid var(--border); line-height: 1.6;
}
.case-list .b { font-weight: 600; color: var(--ink); }
.case-result {
  font-size: 14px; font-weight: 600; color: #1a6e42;
  display: flex; align-items: flex-start; gap: 8px;
  line-height: 1.5;
}
.case-result::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #1a6e42; flex-shrink: 0; margin-top: 7px; }

/* ── FAQ ── */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; cursor: pointer;
  font-size: 17px; font-weight: 600; color: var(--ink);
  list-style: none; user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-icon {
  flex-shrink: 0; width: 18px; height: 18px; position: relative; margin-left: 16px;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--ink); transition: all 0.25s;
}
.faq-icon::before { top: 50%; left: 0; right: 0; height: 1.5px; margin-top: -0.75px; }
.faq-icon::after { left: 50%; top: 0; bottom: 0; width: 1.5px; margin-left: -0.75px; }
details[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a {
  padding: 0 0 24px;
  font-size: 15px; color: var(--ink2); line-height: 1.85; font-weight: 300;
  max-width: 900px;
}

/* ── RELATED SERVICES ── */
.related-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.related-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 28px 24px;
  text-decoration: none;
  transition: all .25s;
  display: block;
  position: relative;
}
.related-card::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 100%; width: 3px;
  background: var(--ink);
  transition: bottom .35s cubic-bezier(.4,0,.2,1);
}
.related-card:hover { background: #fafafa; }
.related-card:hover::before { bottom: 0; }
.related-card-k {
  font-size: 11px; font-weight: 700; color: var(--ink3);
  letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 12px;
}
.related-card-t {
  font-size: 17px; font-weight: 700; color: var(--ink);
  line-height: 1.35; margin-bottom: 8px;
}
.related-card-p {
  font-size: 13px; color: var(--ink2);
  line-height: 1.6; font-weight: 300;
}

/* ── CONTACT (reused from index) ── */
.sec-contact {
  position: relative; overflow: hidden;
  padding: 80px 0; display: flex; align-items: center;
}
.contact-bg {
  position: absolute; inset: -30px;
  background: url('/photo01.jpeg') center/cover no-repeat;
  filter: blur(18px); transform: scale(1.06);
}
.contact-overlay {
  position: absolute; inset: 0;
  background: rgba(14,26,36,0.55);
}
.contact-card-outer {
  position: relative; z-index: 2;
  width: 100%; padding: 0 40px;
}
.contact-card {
  background: #fff; max-width: 1200px; margin: 0 auto;
  padding: 56px 60px;
}
.contact-card-cols {
  display: grid; grid-template-columns: 260px 1px 1fr;
  align-items: stretch;
}
.cc-info-col {
  padding-right: 52px;
  display: flex; flex-direction: column;
}
.cc-vsep { background: var(--border); }
.cc-form-col { padding-left: 52px; }
.cc-block { margin-bottom: 0; }
.cc-lbl {
  font-size: 13px; font-weight: 700; color: var(--ink);
  letter-spacing: 0.5px; margin-bottom: 10px;
  padding-bottom: 8px; border-bottom: 2px solid var(--ink);
  display: inline-block;
}
.cc-phone-big {
  font-size: clamp(20px,1.8vw,26px); font-weight: 800; color: var(--ink);
  text-decoration: none; letter-spacing: -0.3px; display: block;
}
.cc-phone-big:hover { color: var(--ink2); }
.cc-addr-text { font-size: 14px; color: var(--ink2); line-height: 1.9; font-weight: 400; }
.cc-divider-h { height: 1px; background: var(--border); margin: 20px 0; }
.qr-box-light { margin-top: auto; }
.qr-box-light img { width: 100%; display: block; }
.cc-form-h {
  font-size: clamp(20px,2.2vw,28px); font-weight: 700; color: var(--ink);
  line-height: 1.2; letter-spacing: -0.4px; margin-bottom: 10px;
}
.cc-form-sub {
  font-size: 14px; color: var(--ink2); line-height: 1.7; font-weight: 300; margin-bottom: 24px;
}

/* ── FOOTER ── */
.footer { background: var(--off); padding: 44px 0; border-top: 1px solid var(--border); }
.footer-top {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  padding-bottom: 20px; border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}
.footer-brand { font-size: 14px; color: var(--ink2); }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--ink3); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--ink); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 8px; font-size: 12px; color: var(--ink3);
}
.footer-bottom a { color: var(--ink3); text-decoration: none; }
.footer-bottom a:hover { color: var(--ink); }
.footer-addr { width: 100%; font-size: 11px; color: #bbb; margin-top: 4px; }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  :root { --sp: 72px; }
  .container { padding: 0 28px; }
  .nav-right { display: none; }
  .hamburger { display: block; justify-self: end; }
  .page-hero { padding: 60px 0 52px; }
  .page-hero-meta { gap: 20px; }
  .pts-grid { grid-template-columns: 1fr; }
  .kp-item { grid-template-columns: 1fr; gap: 8px; }
  .cases-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2,1fr); }
  .contact-card { padding: 32px 24px; }
  .contact-card-cols { grid-template-columns: 1fr; }
  .cc-vsep { display: none; }
  .cc-info-col { padding-right: 0; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
  .cc-form-col { padding-left: 0; padding-top: 28px; }
  .contact-card-outer { padding: 0 16px; }
}
@media (max-width: 600px) {
  .related-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; align-items: flex-start; }
}
