:root {
  --bg: #f7f3ec;
  --surface: #fffdfa;
  --surface-alt: #eef3ef;
  --ink: #1d2724;
  --muted: #5e6966;
  --line: #d6ddd6;
  --brand: #12756b;
  --brand-deep: #0d4f48;
  --accent: #ef7a45;
  --accent-soft: #fff1e8;
  --gold: #c8a162;
  --shadow: 0 20px 60px rgba(29, 39, 36, 0.09);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.topbar {
  background: var(--brand-deep);
  color: #f4fbf8;
  font-size: 14px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
}

.topbar-phone {
  color: #fff;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247, 243, 236, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(214, 221, 214, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--brand), #2f9a89);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 20px;
  line-height: 1.2;
}

.brand-copy span {
  color: var(--muted);
  font-size: 13px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
  padding: 0;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  content: "";
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(4px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--muted);
  font-size: 15px;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 30px rgba(18, 117, 107, 0.18);
}

.button-secondary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 30px rgba(239, 122, 69, 0.16);
}

.button-ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button-full {
  width: 100%;
}

.seo-meta {
  display: none;
}

.hero,
.subhero {
  position: relative;
  overflow: hidden;
}

.hero::before,
.subhero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(239, 122, 69, 0.12), transparent 34%),
    radial-gradient(circle at left 30%, rgba(18, 117, 107, 0.12), transparent 30%);
  content: "";
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(400px, 0.9fr);
  gap: 48px;
  align-items: center;
  padding: 68px 0 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.eyebrow::before {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.hero-copy h1,
.subhero h1,
.section-head h2,
.article-body h2,
.contact-panel h2 {
  margin: 0;
  line-height: 1.18;
}

.hero-copy h1 {
  font-size: clamp(36px, 4.6vw, 58px);
  max-width: 13ch;
}

.hero-copy p {
  margin: 20px 0 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0 0;
}

.hero-stats div {
  padding: 18px 16px;
  background: rgba(255, 253, 250, 0.82);
  border: 1px solid rgba(214, 221, 214, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-stats dt {
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.hero-stats dd {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-visual img,
.split-visual img,
.page-visual img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(214, 221, 214, 0.9);
}

.section {
  padding: 78px 0;
}

.section-light {
  background: var(--surface);
}

.section-contrast {
  background: #eaf1ed;
}

.section-accent {
  background: linear-gradient(180deg, #fffbf6 0%, #fff4eb 100%);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head h2 {
  font-size: clamp(28px, 3vw, 40px);
  max-width: 10ch;
}

.section-head p {
  max-width: 52ch;
  margin: 0;
  color: var(--muted);
}

.section-copy {
  margin: 0 0 16px;
  color: var(--muted);
}

.service-grid,
.article-grid,
.faq-grid,
.district-grid,
.advantage-grid {
  display: grid;
  gap: 20px;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.article-card,
.advantage-card,
.list-card,
.sidebar-card,
.form-card {
  background: var(--surface);
  border: 1px solid rgba(214, 221, 214, 0.92);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-card {
  padding: 24px;
}

.service-card strong,
.article-card strong,
.advantage-card strong,
.list-card strong,
.sidebar-card strong {
  display: block;
  font-size: 20px;
  line-height: 1.28;
}

.service-meta,
.list-meta,
.article-meta,
.package-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 700;
}

.pill-accent {
  background: var(--accent-soft);
  color: #9c481f;
}

.service-card p,
.article-card p,
.advantage-card p,
.list-card p,
.sidebar-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.card-footer,
.list-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(214, 221, 214, 0.85);
  color: var(--muted);
  font-size: 14px;
}

.text-link {
  color: var(--brand);
  font-weight: 700;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 36px;
  align-items: center;
}

.process-list,
.article-body ol,
.article-body ul {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  padding: 0 0 20px 56px;
}

.process-list li:last-child {
  padding-bottom: 0;
}

.process-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  content: attr(data-step);
}

.process-list li::after {
  position: absolute;
  left: 17px;
  top: 42px;
  bottom: 0;
  width: 2px;
  background: rgba(18, 117, 107, 0.18);
  content: "";
}

.process-list li:last-child::after {
  display: none;
}

.process-list strong {
  display: block;
  font-size: 18px;
}

.district-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.district-item {
  padding: 18px 16px;
  border-radius: 8px;
  background: rgba(255, 253, 250, 0.75);
  border: 1px solid rgba(214, 221, 214, 0.92);
  text-align: center;
  font-weight: 700;
}

.advantage-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.advantage-card {
  padding: 24px;
}

.article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-card {
  padding: 24px;
}

.faq-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.faq-item {
  border-bottom: 1px solid rgba(214, 221, 214, 0.9);
}

.faq-toggle {
  width: 100%;
  padding: 20px 0;
  border: 0;
  background: transparent;
  text-align: left;
  color: var(--ink);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-toggle::after {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  content: "+";
  flex: 0 0 auto;
}

.faq-item.is-open .faq-toggle::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  transition: max-height 0.25s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 220px;
  padding-bottom: 18px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: stretch;
}

.contact-panel {
  padding: 34px;
  background: linear-gradient(145deg, #163633 0%, #0f5850 100%);
  color: #f3fbf8;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.contact-panel::after {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  right: -120px;
  bottom: -150px;
  background: rgba(239, 122, 69, 0.18);
  content: "";
}

.contact-panel p,
.contact-list,
.footer-note {
  color: rgba(243, 251, 248, 0.82);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.contact-list strong {
  display: block;
  color: #fff;
  font-size: 18px;
}

.form-card {
  padding: 30px;
}

.form-card h3,
.sidebar-card h3 {
  margin: 0 0 18px;
  font-size: 24px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-card label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 0 14px;
  color: var(--ink);
}

.form-card textarea {
  min-height: 120px;
  padding-top: 12px;
  resize: vertical;
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  background: #13211f;
  color: #f6f6f3;
  padding: 46px 0 90px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.7fr));
  gap: 26px;
}

.footer-grid h4 {
  margin: 0 0 16px;
  font-size: 16px;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: rgba(246, 246, 243, 0.76);
}

.footer-note {
  margin: 16px 0 0;
  font-size: 13px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(246, 246, 243, 0.64);
  font-size: 13px;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 35;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(247, 243, 236, 0.96);
  border-top: 1px solid rgba(214, 221, 214, 0.92);
  backdrop-filter: blur(12px);
}

.mobile-cta a {
  min-height: 48px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.mobile-cta .phone {
  background: var(--surface);
  border: 1px solid var(--line);
}

.mobile-cta .consult {
  background: var(--brand);
  color: #fff;
}

.subhero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
  gap: 32px;
  align-items: center;
  padding: 54px 0 42px;
}

.section-nav {
  position: sticky;
  top: 78px;
  z-index: 20;
  background: rgba(255, 253, 250, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(214, 221, 214, 0.92);
}

.section-nav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 0;
}

.section-nav a {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(214, 221, 214, 0.92);
  background: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.section-nav a:hover {
  color: var(--brand-deep);
  border-color: rgba(18, 117, 107, 0.32);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.subhero p {
  margin: 18px 0 0;
  color: var(--muted);
}

.subhero-side {
  display: grid;
  gap: 16px;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.info-strip .service-card {
  padding: 18px;
}

.list-layout,
.article-layout {
  display: grid;
  gap: 24px;
  align-items: start;
}

.list-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.article-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.list-stack,
.sidebar-stack {
  display: grid;
  gap: 18px;
}

.list-card,
.sidebar-card {
  padding: 24px;
}

.list-card-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.list-card ul,
.sidebar-list,
.article-side-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.sidebar-list a,
.article-side-list a {
  color: var(--muted);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-chip {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
}

.filter-chip.is-active {
  border-color: var(--brand);
  background: rgba(18, 117, 107, 0.1);
  color: var(--brand-deep);
}

.pager {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.pager a,
.pager span {
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pager .current {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.article-shell {
  background: var(--surface);
  border: 1px solid rgba(214, 221, 214, 0.92);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 34px;
}

.article-head h1 {
  font-size: clamp(30px, 3.6vw, 46px);
  margin: 0;
  line-height: 1.18;
  max-width: 16ch;
}

.article-summary {
  margin-top: 20px;
  padding: 18px 20px;
  background: var(--surface-alt);
  border-left: 4px solid var(--brand);
  color: var(--muted);
}

.article-body {
  margin-top: 28px;
  color: #34403c;
}

.article-body h2 {
  margin: 42px 0 16px;
  font-size: 30px;
}

.article-body p,
.article-body li {
  margin: 0 0 14px;
}

.article-body ol,
.article-body ul {
  list-style: decimal;
  padding-left: 22px;
}

.article-body ul {
  list-style: disc;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
}

.article-body th,
.article-body td {
  padding: 12px 14px;
  border: 1px solid rgba(214, 221, 214, 0.92);
  text-align: left;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.template-note {
  padding: 18px 20px;
  border-radius: 8px;
  border: 1px dashed rgba(18, 117, 107, 0.45);
  background: rgba(18, 117, 107, 0.06);
  color: var(--brand-deep);
  font-size: 14px;
}

.footer-records {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
  color: rgba(246, 246, 243, 0.64);
  font-size: 13px;
}

.floating-tools {
  position: fixed;
  right: 18px;
  bottom: 120px;
  z-index: 34;
  display: grid;
  gap: 10px;
}

.floating-tools a {
  min-width: 116px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid rgba(214, 221, 214, 0.92);
  background: rgba(255, 253, 250, 0.96);
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.floating-tools a.primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.marketing-hero {
  padding: 42px 0 28px;
}

.marketing-hero .hero-grid {
  padding: 18px 0 0;
  align-items: start;
}

.marketing-shell {
  display: grid;
  gap: 20px;
}

.quote-panel,
.trust-card,
.mini-card,
.package-card,
.note-panel {
  background: var(--surface);
  border: 1px solid rgba(214, 221, 214, 0.92);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-panel {
  padding: 26px;
}

.quote-panel h3,
.package-card h3 {
  margin: 0;
  font-size: 24px;
}

.quote-panel p,
.mini-card p,
.package-card p,
.note-panel p {
  color: var(--muted);
}

.quote-badges,
.check-list,
.service-buckets,
.scenario-list,
.package-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.quote-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.quote-badges li {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: var(--surface-alt);
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 700;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(18, 117, 107, 0.12);
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
  content: "✓";
}

.trust-grid,
.mini-grid,
.package-grid {
  display: grid;
  gap: 20px;
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-card,
.mini-card,
.package-card {
  padding: 24px;
}

.trust-card strong,
.mini-card strong,
.note-panel strong {
  display: block;
  font-size: 20px;
  line-height: 1.28;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.metric-strip .service-card {
  padding: 18px;
}

.service-buckets {
  display: grid;
  gap: 14px;
}

.service-buckets li {
  padding: 16px 18px;
  border: 1px solid rgba(214, 221, 214, 0.92);
  border-radius: 8px;
  background: rgba(255, 253, 250, 0.72);
}

.service-buckets strong {
  display: block;
  font-size: 17px;
}

.mini-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-price {
  margin-top: 18px;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  color: var(--brand-deep);
}

.package-price span {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.package-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
}

.package-card.featured {
  background: linear-gradient(180deg, #fffdf8 0%, #fff4ea 100%);
  border-color: rgba(239, 122, 69, 0.28);
}

.scenario-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.scenario-list li {
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--surface-alt);
  color: var(--muted);
}

.note-panel {
  padding: 24px;
}

.compare-table-wrap {
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid rgba(214, 221, 214, 0.92);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(214, 221, 214, 0.92);
}

.compare-table th {
  background: #f5f7f4;
  font-size: 15px;
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.compare-table td:first-child {
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 1080px) {
  .service-grid,
  .advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-grid,
  .district-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-grid,
  .split-grid,
  .subhero-inner,
  .contact-wrap,
  .list-layout,
  .article-layout,
  .trust-grid,
  .metric-strip {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .section-head h2,
  .article-head h1 {
    max-width: none;
  }
}

@media (max-width: 840px) {
  .site-nav,
  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  body.nav-open .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    display: grid;
    gap: 10px;
    padding: 16px;
    background: var(--surface);
    border: 1px solid rgba(214, 221, 214, 0.95);
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-height: calc(100vh - 120px);
    overflow: auto;
  }

  body.nav-open .header-actions {
    display: none;
  }

  body.nav-open .nav-toggle span {
    background: transparent;
  }

  body.nav-open .nav-toggle span::before {
    transform: translateY(0) rotate(45deg);
  }

  body.nav-open .nav-toggle span::after {
    transform: translateY(-2px) rotate(-45deg);
  }

  .hero-stats,
  .info-strip,
  .faq-grid,
  .field-grid,
  .footer-grid,
  .mini-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
  }

  .article-grid,
  .district-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-nav {
    top: 68px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .topbar {
    display: none;
  }

  .hero-grid {
    gap: 28px;
    padding: 32px 0 34px;
  }

  .section,
  .site-footer {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .hero-copy h1,
  .subhero h1 {
    font-size: 34px;
  }

  .hero-copy p,
  .subhero p {
    font-size: 16px;
  }

  .service-grid,
  .article-grid,
  .district-grid,
  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .article-shell,
  .contact-panel,
  .form-card,
  .service-card,
  .list-card,
  .sidebar-card,
  .article-card,
  .advantage-card {
    padding: 22px;
  }

  .mobile-cta {
    display: grid;
  }

  .section-nav {
    position: static;
    background: transparent;
    border-bottom: 0;
  }

  .section-nav-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 0 6px;
  }

  .section-nav-inner::-webkit-scrollbar {
    display: none;
  }

  .floating-tools {
    display: none;
  }
}

/* Homepage refresh */
.home-page {
  background: #f3f6fb;
  color: #223148;
}

.home-page .brand-mark {
  background: linear-gradient(145deg, #3364ea, #4f8bf3);
}

.home-page .brand-copy strong {
  color: #1f2d3f;
}

.home-page .brand-copy span {
  color: #3364ea;
  font-weight: 700;
  letter-spacing: 1px;
}

.home-utility-bar {
  border-bottom: 1px solid #e3e8f2;
  background: #f7f9fc;
  color: #5c6980;
  font-size: 14px;
}

.home-utility-inner,
.home-utility-left,
.home-utility-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.home-utility-inner {
  justify-content: space-between;
  min-height: 56px;
}

.home-utility-right {
  gap: 22px;
}

.home-utility-phone {
  color: #e53935;
  font-size: 16px;
  font-weight: 800;
}

.home-badge {
  min-height: 34px;
  padding: 0 14px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
}

.home-badge::before {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  content: "✓";
}

.home-badge-blue {
  background: #edf3ff;
  color: #225ae7;
}

.home-badge-blue::before {
  background: #225ae7;
}

.home-badge-green {
  background: #edf8ef;
  color: #159947;
}

.home-badge-green::before {
  background: #159947;
}

.home-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(27, 44, 76, 0.08);
}

.home-header-main {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 144px;
}

.home-header .brand {
  flex: 0 0 auto;
}

.home-header .brand-mark {
  width: 74px;
  height: 74px;
  border-radius: 18px;
  font-size: 34px;
  box-shadow: 0 18px 32px rgba(51, 100, 234, 0.22);
}

.home-header .brand-copy strong {
  font-size: 26px;
}

.home-header .brand-copy span {
  font-size: 14px;
}

.home-search {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  border: 3px solid #3164ee;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 26px rgba(49, 100, 238, 0.14);
}

.home-search input {
  width: 100%;
  min-height: 60px;
  border: 0;
  padding: 0 22px;
  font-size: 17px;
  color: #223148;
  background: transparent;
}

.home-search button {
  min-width: 152px;
  min-height: 60px;
  border: 0;
  background: linear-gradient(135deg, #3164ee, #2f7cf1);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.home-hotline {
  flex: 0 0 auto;
  display: grid;
  gap: 6px;
  justify-items: end;
}

.home-hotline-label {
  color: #607088;
  font-size: 13px;
  font-weight: 700;
}

.home-hotline-number {
  color: #ea3530;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.home-nav-toggle {
  display: none;
  border-color: #dbe3f2;
}

.home-nav-shell {
  background: #1f2c45;
}

.home-nav-inner {
  display: flex;
  align-items: stretch;
}

.home-nav-link {
  min-height: 82px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease;
}

.home-nav-link:hover,
.home-nav-link.is-active,
.home-nav-group:hover > .home-nav-link,
.home-nav-group:focus-within > .home-nav-link {
  background: #3164ee;
}

.home-nav-group {
  position: relative;
}

.home-nav-group > .home-nav-link::after {
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  content: "▾";
}

.home-nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 8px 0;
  border-top: 4px solid #3164ee;
  border-radius: 0 0 14px 14px;
  background: #fff;
  box-shadow: 0 22px 44px rgba(22, 37, 68, 0.18);
  display: none;
}

.home-nav-group:hover .home-nav-dropdown,
.home-nav-group:focus-within .home-nav-dropdown {
  display: grid;
}

.home-nav-dropdown a {
  padding: 16px 22px;
  color: #42526b;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid #edf1f7;
}

.home-nav-dropdown a:last-child {
  border-bottom: 0;
}

.home-nav-dropdown a:hover {
  background: #f5f8ff;
  color: #2e61ea;
}

.home-mobile-panel,
.home-mobile-backdrop {
  display: none;
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 34px 0 0;
  background:
    linear-gradient(90deg, rgba(18, 26, 43, 0.96), rgba(28, 45, 86, 0.9)),
    url("../img/hero-shenzhen.svg") center/cover no-repeat;
  color: #fff;
}

.home-hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at right center, rgba(49, 100, 238, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 199, 46, 0.06), transparent 40%);
  content: "";
  pointer-events: none;
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
  gap: 34px;
  align-items: center;
  padding: 54px 0 96px;
}

.home-hero-copy h1 {
  margin: 18px 0 0;
  font-size: clamp(42px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
}

.home-hero-copy h1 span {
  color: #f7c22c;
}

.home-hero-copy p {
  max-width: 62ch;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.home-hero-pill {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 15px;
  font-weight: 700;
}

.home-hero-pill::before {
  margin-right: 10px;
  content: "🚀";
}

.home-hero-points {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.home-hero-points li {
  position: relative;
  padding-left: 40px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
}

.home-hero-points li::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #35cc75;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  content: "✓";
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.home-hero-actions .button-primary {
  background: linear-gradient(135deg, #f0b100, #f6c11f);
  border: 0;
  color: #fff;
  box-shadow: 0 16px 34px rgba(240, 177, 0, 0.26);
}

.home-hero-actions .button-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.home-lead-card {
  background: #fff;
  border: 4px solid #4173ef;
  border-radius: 30px;
  box-shadow: 0 28px 56px rgba(19, 37, 76, 0.22);
  color: #223148;
  padding: 34px 34px 30px;
}

.home-lead-card h2 {
  margin: 0;
  font-size: 28px;
  color: #2447a5;
  text-align: center;
}

.home-lead-card p {
  margin: 12px 0 0;
  text-align: center;
  color: #6a7890;
  font-size: 16px;
}

.home-lead-form {
  margin-top: 26px;
  display: grid;
  gap: 16px;
}

.home-field {
  min-height: 72px;
  padding: 0 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f6f8fc;
  border: 1px solid #eef2f8;
}

.home-field-label {
  color: #8d9ab0;
  font-size: 26px;
  font-weight: 700;
}

.home-field-copy {
  color: #52627b;
  font-size: 16px;
  font-weight: 700;
}

.home-field input {
  width: 100%;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: #223148;
  font-size: 16px;
}

.home-lead-submit {
  min-height: 82px;
  border: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, #3164ee, #2558db);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(49, 100, 238, 0.3);
}

.home-lead-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: #5f718c;
  font-size: 13px;
  font-weight: 700;
}

.home-service-board {
  margin-top: -54px;
  position: relative;
  z-index: 2;
}

.home-service-board-shell {
  padding: 40px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #edf1f7;
  border-radius: 28px;
  box-shadow: 0 28px 60px rgba(17, 35, 72, 0.12);
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 18px;
}

.home-service-card {
  min-height: 276px;
  padding: 26px 18px;
  background: #fff;
  border: 1px solid #edf1f7;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(19, 37, 76, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-service-card:hover {
  transform: translateY(-6px);
  border-color: #d9e3fa;
  box-shadow: 0 22px 42px rgba(19, 37, 76, 0.12);
}

.home-service-card.is-featured {
  border-bottom: 5px solid #4a7cf0;
}

.home-service-icon {
  width: 88px;
  height: 88px;
  border-radius: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #eff4ff, #f8fbff);
  color: #6b7c98;
  box-shadow: inset 0 3px 6px rgba(255, 255, 255, 0.95), 0 8px 20px rgba(33, 60, 119, 0.08);
  font-size: 34px;
  font-weight: 900;
}

.home-service-card.is-featured .home-service-icon {
  background: linear-gradient(145deg, #4f86f1, #3d6fe7);
  color: #fff;
  box-shadow: 0 18px 30px rgba(61, 111, 231, 0.24);
}

.home-service-card strong {
  display: block;
  font-size: 18px;
  color: #203047;
}

.home-service-card span {
  color: #8b99af;
  font-size: 14px;
}

.home-main-band {
  padding: 72px 0 0;
}

.home-main-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.68fr);
  gap: 28px;
  align-items: start;
}

.home-panel {
  padding: 32px;
  background: #fff;
  border: 1px solid #edf1f7;
  border-radius: 24px;
  box-shadow: 0 20px 44px rgba(19, 37, 76, 0.08);
}

.home-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.home-panel-head h2,
.home-news-head h2 {
  margin: 0;
  font-size: 22px;
  color: #24354b;
}

.home-panel-head h2::before,
.home-news-head h2::before,
.home-friend-title::before {
  width: 5px;
  height: 42px;
  margin-right: 14px;
  border-radius: 99px;
  background: #8c52ff;
  display: inline-block;
  vertical-align: middle;
  content: "";
}

.home-panel-head a {
  color: #7a48ef;
  font-weight: 700;
}

.home-special-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-special-card {
  min-height: 210px;
  padding: 28px 18px;
  background: #fff;
  border: 1px solid #edf1f7;
  border-radius: 20px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 14px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-special-card:hover {
  transform: translateY(-5px);
  border-color: #e2d5ff;
  box-shadow: 0 18px 34px rgba(113, 65, 236, 0.1);
}

.home-special-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f6efff;
  color: #c497ff;
  font-size: 26px;
  font-weight: 900;
}

.home-special-card strong {
  font-size: 17px;
  color: #2b3a4c;
}

.home-special-card span {
  color: #9aa6b9;
  font-size: 14px;
}

.home-aside-stack {
  display: grid;
  gap: 20px;
}

.home-promo-card,
.home-advisor-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(19, 37, 76, 0.12);
}

.home-promo-card {
  padding: 34px 30px;
  background: linear-gradient(160deg, #3164ee, #2247be);
  color: #fff;
}

.home-promo-card strong {
  display: block;
  font-size: 44px;
  line-height: 1;
}

.home-promo-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.home-promo-card .button {
  margin-top: 24px;
  background: #f5c51d;
  color: #24354b;
  border: 0;
}

.home-advisor-card {
  padding: 30px 26px;
  background: linear-gradient(170deg, #181818, #2c2c2c);
  color: #fff;
  text-align: center;
}

.home-advisor-avatar {
  width: 126px;
  height: 126px;
  margin: 0 auto 18px;
  border-radius: 999px;
  border: 5px solid #f2c246;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #fef1c0, #f7c53a);
  color: #4e3900;
  font-size: 34px;
  font-weight: 900;
}

.home-advisor-badge {
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(247, 197, 58, 0.16);
  color: #f2c246;
  font-size: 13px;
  font-weight: 700;
}

.home-advisor-card h3 {
  margin: 16px 0 0;
  font-size: 20px;
}

.home-advisor-card p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.home-advisor-actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.home-advisor-actions a {
  min-height: 50px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 800;
}

.home-news-section {
  padding: 30px 0 0;
}

.home-news-shell {
  padding: 34px 36px;
  background: #fff;
  border: 1px solid #edf1f7;
  border-radius: 24px;
  box-shadow: 0 20px 44px rgba(19, 37, 76, 0.08);
}

.home-news-head {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #e6edf6;
  overflow-x: auto;
}

.home-news-head::-webkit-scrollbar {
  display: none;
}

.home-news-tabs {
  display: flex;
  gap: 18px;
}

.home-news-tab {
  min-height: 58px;
  padding: 0 20px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: #6d7d96;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.home-news-tab.is-active {
  border-bottom-color: #3164ee;
  background: #eef4ff;
  color: #3164ee;
}

.home-news-panel {
  display: none;
}

.home-news-panel.is-active {
  display: block;
}

.home-news-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.home-news-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px dashed #d7e0eb;
}

.home-news-item a {
  color: #35465d;
  font-size: 16px;
}

.home-news-item span {
  color: #91a0b5;
  font-size: 14px;
  white-space: nowrap;
}

.home-friend-links {
  padding: 50px 0 0;
}

.home-friend-shell {
  padding-top: 26px;
  border-top: 1px solid #dfe6f2;
}

.home-friend-title {
  margin: 0 0 18px;
  font-size: 16px;
  color: #42526a;
}

.home-friend-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: #697991;
}

.home-region-strip {
  margin-top: 24px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-region-strip h4 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 17px;
}

.home-region-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(246, 246, 243, 0.64);
}

.home-region-links a {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
}

.home-side-float {
  position: fixed;
  right: 14px;
  top: 56%;
  transform: translateY(-50%);
  z-index: 34;
  display: grid;
  overflow: hidden;
  border: 1px solid #e5ebf4;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 40px rgba(19, 37, 76, 0.15);
}

.home-side-float a {
  width: 88px;
  min-height: 74px;
  padding: 10px 8px;
  border-bottom: 1px solid #eef2f8;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 6px;
  color: #5d6f88;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

.home-side-float a:last-child {
  border-bottom: 0;
}

.home-side-float a:hover {
  background: #f6f8fc;
  color: #3164ee;
}

.home-side-float span {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3f6fb;
  font-size: 18px;
}

@media (max-width: 1280px) {
  .home-service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .home-header-main,
  .home-hero-grid,
  .home-main-layout,
  .home-special-grid,
  .home-service-grid {
    grid-template-columns: 1fr;
  }

  .home-header-main {
    display: grid;
    padding: 22px 0;
  }

  .home-search,
  .home-hotline {
    width: 100%;
  }

  .home-hotline {
    justify-items: start;
  }

  .home-service-board {
    margin-top: 0;
    padding-top: 26px;
  }
}

@media (max-width: 900px) {
  .home-utility-bar {
    display: none;
  }

  .home-hotline {
    display: none;
  }

  .home-nav-shell {
    display: none;
  }

  .home-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .home-header-main {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .home-header .brand {
    min-width: 0;
  }

  .home-search {
    grid-column: 1 / -1;
  }

  .home-mobile-panel {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(360px, calc(100vw - 36px));
    padding: 22px 20px 28px;
    background: #fff;
    box-shadow: 0 22px 48px rgba(19, 37, 76, 0.18);
    overflow: auto;
    transform: translateX(-105%);
    transition: transform 0.24s ease;
    z-index: 45;
  }

  body.nav-open .home-mobile-panel {
    display: block;
    transform: translateX(0);
  }

  .home-mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(16, 24, 40, 0.42);
    z-index: 44;
  }

  body.nav-open .home-mobile-backdrop {
    display: block;
  }

  .home-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
  }

  .home-mobile-head strong {
    font-size: 18px;
    color: #223148;
  }

  .home-mobile-close {
    width: 40px;
    height: 40px;
    border: 1px solid #dbe3f2;
    border-radius: 12px;
    background: #fff;
    color: #223148;
  }

  .home-mobile-group {
    display: grid;
    gap: 10px;
    margin-top: 18px;
  }

  .home-mobile-group h3 {
    margin: 0;
    color: #7a879a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
  }

  .home-mobile-group a {
    min-height: 46px;
    padding: 0 14px;
    border-radius: 12px;
    background: #f6f8fc;
    display: flex;
    align-items: center;
    color: #24354b;
    font-weight: 700;
  }

  .home-side-float {
    display: none;
  }
}

@media (max-width: 640px) {
  .home-header-main {
    min-height: auto;
    gap: 16px;
  }

  .home-header .brand-mark {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    font-size: 26px;
  }

  .home-header .brand-copy strong {
    font-size: 22px;
  }

  .home-header .brand-copy span {
    font-size: 12px;
  }

  .home-search input,
  .home-search button {
    min-height: 52px;
    font-size: 15px;
  }

  .home-search button {
    min-width: 118px;
  }

  .home-hero-grid {
    padding: 34px 0 44px;
  }

  .home-hero-copy p {
    font-size: 16px;
  }

  .home-hero-points li {
    font-size: 15px;
  }

  .home-lead-card {
    padding: 26px 20px 22px;
    border-radius: 24px;
  }

  .home-lead-card h2 {
    font-size: 24px;
  }

  .home-field {
    min-height: 62px;
    border-radius: 16px;
  }

  .home-service-board-shell,
  .home-panel,
  .home-news-shell {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .home-service-grid,
  .home-special-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-service-card {
    min-height: 200px;
    padding: 20px 14px;
    border-radius: 18px;
  }

  .home-service-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    font-size: 28px;
  }

  .home-special-card {
    min-height: 170px;
    padding: 22px 14px;
    border-radius: 18px;
  }

  .home-news-head {
    display: grid;
    gap: 10px;
    align-items: start;
  }

  .home-news-tabs {
    gap: 8px;
    overflow-x: auto;
  }

  .home-news-tab {
    min-height: 46px;
    padding: 0 14px;
    font-size: 15px;
  }

  .home-news-item {
    padding: 16px 0;
    align-items: start;
  }

  .home-news-item a {
    font-size: 15px;
  }

  .home-friend-links-grid,
  .home-region-links {
    gap: 12px 16px;
  }
}

/* Production visual polish: blue business-service theme */
:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-alt: #eef4ff;
  --ink: #162238;
  --muted: #66758b;
  --line: #dce5f2;
  --brand: #2563eb;
  --brand-deep: #0f2448;
  --accent: #f5b51b;
  --accent-soft: #fff7df;
  --gold: #f5b51b;
  --shadow: 0 14px 36px rgba(15, 36, 72, 0.09);
  --radius: 8px;
}

body {
  background: var(--bg);
  color: var(--ink);
}

.topbar,
.home-utility-bar {
  background: #f7faff;
  color: #5f6f87;
  border-bottom: 1px solid #e4ebf6;
}

.topbar-phone,
.home-utility-phone {
  color: #e02626;
}

.site-header,
.home-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e4ebf6;
  box-shadow: 0 8px 24px rgba(15, 36, 72, 0.06);
}

.brand-mark,
.home-header .brand-mark {
  border-radius: 10px;
  background: linear-gradient(145deg, #2563eb, #3b82f6);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
}

.brand-copy strong,
.home-header .brand-copy strong {
  color: #17233a;
}

.brand-copy span,
.home-header .brand-copy span {
  color: #2563eb;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.site-nav a:hover,
.site-nav a.active {
  color: #2563eb;
}

.home-nav-shell {
  background: #142033;
}

.home-nav-link {
  color: #fff;
}

.home-nav-link:hover,
.home-nav-link.is-active {
  background: #2563eb;
}

.home-nav-dropdown {
  border-top-color: #2563eb;
}

.button,
.home-lead-submit,
.home-search button {
  border-radius: 8px;
}

.button-primary,
.home-search button,
.home-lead-submit,
.floating-tools a.primary,
.mobile-cta .consult {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-color: #2563eb;
  color: #fff;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.24);
}

.button-secondary {
  background: linear-gradient(135deg, #f2b705, #f59e0b);
  color: #1f2d3f;
  box-shadow: 0 14px 28px rgba(245, 158, 11, 0.18);
}

.button-ghost {
  background: #fff;
  border-color: #d8e3f2;
  color: #24354b;
}

.hero::before,
.subhero::before {
  background:
    linear-gradient(120deg, rgba(37, 99, 235, 0.08), transparent 45%),
    radial-gradient(circle at 86% 10%, rgba(245, 181, 27, 0.16), transparent 26%);
}

.marketing-hero {
  background:
    linear-gradient(115deg, rgba(15, 32, 58, 0.97), rgba(24, 52, 96, 0.94)),
    url("../img/hero-shenzhen.svg") center/cover no-repeat;
  color: #fff;
}

.marketing-hero::before {
  background:
    linear-gradient(90deg, rgba(15, 32, 58, 0.8), rgba(15, 32, 58, 0.18)),
    radial-gradient(circle at 88% 16%, rgba(37, 99, 235, 0.25), transparent 28%);
}

.marketing-hero .breadcrumb,
.marketing-hero .breadcrumb a,
.marketing-hero .hero-copy p,
.marketing-hero .hero-stats dd {
  color: rgba(255, 255, 255, 0.78);
}

.marketing-hero .eyebrow {
  color: #f5c542;
}

.marketing-hero .hero-copy h1 {
  color: #fff;
  max-width: 14ch;
}

.marketing-hero .hero-stats div {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.marketing-hero .hero-stats dt {
  color: #f5c542;
}

.quote-panel,
.note-panel,
.service-card,
.article-card,
.advantage-card,
.list-card,
.sidebar-card,
.form-card,
.trust-card,
.mini-card,
.package-card,
.home-panel,
.home-news-shell,
.home-service-board-shell,
.home-lead-card,
.compare-table-wrap {
  border: 1px solid #dfe7f3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(15, 36, 72, 0.08);
}

.quote-panel {
  border-top: 5px solid #2563eb;
}

.note-panel {
  background: #f7faff;
}

.pill {
  background: #eef4ff;
  color: #1d4ed8;
}

.pill-accent {
  background: #fff5d6;
  color: #9a6100;
}

.eyebrow {
  color: #2563eb;
}

.eyebrow::before {
  background: #f5b51b;
}

.section-light {
  background: #fff;
}

.section-contrast {
  background: #edf4ff;
}

.section-nav {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #dfe7f3;
  box-shadow: 0 8px 20px rgba(15, 36, 72, 0.05);
}

.section-nav-inner a {
  border-radius: 8px;
}

.section-nav-inner a:hover {
  background: #eef4ff;
  color: #1d4ed8;
}

.process-list li::before {
  background: #2563eb;
}

.process-list li::after {
  background: rgba(37, 99, 235, 0.18);
}

.faq-toggle::after {
  background: #eef4ff;
  color: #2563eb;
}

.site-footer {
  background: #0f172a;
}

.floating-tools a,
.mobile-cta a {
  border-radius: 8px;
}

.mobile-cta {
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid #dfe7f3;
}

.mobile-cta .phone {
  background: #fff;
  border: 1px solid #d8e3f2;
  color: #17233a;
}

.service-final-cta {
  background:
    linear-gradient(120deg, rgba(15, 32, 58, 0.96), rgba(30, 64, 123, 0.94)),
    url("../img/hero-shenzhen.svg") center/cover no-repeat;
  color: #fff;
}

.service-final-cta .cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.18);
}

.service-final-cta h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
}

.service-final-cta p {
  margin: 12px 0 0;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.78);
}

.service-final-cta .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.service-final-cta .button-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.service-final-cta .button-secondary {
  background: linear-gradient(135deg, #f5c542, #f59e0b);
  color: #17233a;
}

.service-related-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.service-related-strip a {
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 760px) {
  .service-final-cta .cta-box {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .service-final-cta .cta-actions {
    justify-content: stretch;
  }

  .service-final-cta .cta-actions .button {
    width: 100%;
  }

  .service-related-strip a {
    font-size: 13px;
  }
}

.home-hero {
  background:
    linear-gradient(115deg, rgba(15, 32, 58, 0.98), rgba(22, 52, 102, 0.92)),
    url("../img/hero-shenzhen.svg") center/cover no-repeat;
}

.home-hero::before {
  background:
    radial-gradient(circle at right center, rgba(37, 99, 235, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(245, 181, 27, 0.08), transparent 40%);
}

.home-hero-pill {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.home-hero-copy h1 span {
  color: #f5c542;
}

.home-hero-copy p,
.home-hero-points li {
  color: rgba(255, 255, 255, 0.82);
}

.home-hero-points li::before {
  background: #22c55e;
}

.home-lead-card {
  border-top: 5px solid #2563eb;
}

.home-field {
  border-radius: 8px;
  background: #f7faff;
}

.home-service-board {
  background: #f4f7fb;
}

.home-service-card {
  border-radius: 8px;
}

.home-service-card.is-featured {
  border-bottom-color: #2563eb;
}

.home-service-icon {
  border-radius: 8px;
  background: #eef4ff;
  color: #62748f;
}

.home-service-card.is-featured .home-service-icon {
  background: linear-gradient(145deg, #3b82f6, #2563eb);
  color: #fff;
}

.home-special-card,
.home-news-item {
  border-radius: 8px;
}

.home-news-tab.is-active {
  color: #2563eb;
  border-bottom-color: #2563eb;
  background: #eef4ff;
}

.home-side-float {
  border-radius: 8px;
}

@media (max-width: 640px) {
  .home-lead-card,
  .home-service-board-shell,
  .home-panel,
  .home-news-shell,
  .home-service-card,
  .home-service-icon,
  .home-special-card {
    border-radius: 8px;
  }
}

/* Final refined visual system */
:root {
  --bg: #f5f8fb;
  --surface: #ffffff;
  --surface-alt: #edf6f4;
  --surface-blue: #eef5ff;
  --ink: #102033;
  --muted: #66758a;
  --line: #dce6ef;
  --brand: #0f766e;
  --brand-deep: #0b3440;
  --brand-mid: #145d66;
  --brand-soft: #e6f4f1;
  --accent: #d98806;
  --accent-soft: #fff6df;
  --gold: #d98806;
  --danger: #dc2626;
  --shadow: 0 12px 32px rgba(16, 32, 51, 0.08);
  --shadow-soft: 0 8px 22px rgba(16, 32, 51, 0.06);
  --radius: 8px;
  --container: 1180px;
}

body,
body * {
  letter-spacing: 0 !important;
}

body {
  background:
    linear-gradient(180deg, #f8fbfc 0, #f3f7fb 360px, #f5f8fb 100%);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  width: min(calc(100% - 40px), var(--container));
}

.topbar,
.home-utility-bar {
  background: #0b3440;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
}

.topbar-inner,
.home-utility-inner {
  min-height: 42px;
  padding: 0;
}

.topbar-phone,
.home-utility-phone,
.home-hotline-number {
  color: #f5c453;
  font-weight: 800;
}

.home-badge {
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
}

.home-badge::before {
  width: 14px;
  height: 14px;
  margin-right: 6px;
  background: #22c55e;
  font-size: 10px;
}

.site-header,
.home-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 230, 239, 0.92);
  box-shadow: 0 10px 28px rgba(16, 32, 51, 0.055);
}

.header-inner {
  min-height: 74px;
}

.home-header-main {
  min-height: 96px;
  gap: 20px;
}

.brand-mark,
.home-header .brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: linear-gradient(145deg, #0f766e, #145d66);
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.22);
  font-size: 24px;
}

.home-header .brand-mark {
  width: 58px;
  height: 58px;
  font-size: 28px;
}

.brand-copy strong,
.home-header .brand-copy strong {
  color: var(--ink);
  font-weight: 800;
}

.brand-copy span,
.home-header .brand-copy span {
  color: var(--muted);
  font-weight: 700;
}

.site-nav {
  gap: 18px;
}

.site-nav a {
  position: relative;
  color: #526176;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--brand);
}

.site-nav a.active::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  content: "";
}

.home-search {
  border: 1px solid #cbdce8;
  border-radius: 8px;
  box-shadow: none;
}

.home-search:focus-within {
  border-color: rgba(15, 118, 110, 0.62);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.1);
}

.home-search input,
.home-search button {
  min-height: 52px;
  font-size: 15px;
}

.home-search input {
  color: var(--ink);
}

.home-search button {
  min-width: 118px;
  background: var(--brand);
  box-shadow: none;
}

.home-hotline {
  padding-left: 8px;
}

.home-hotline-label {
  color: var(--muted);
}

.home-hotline-number {
  color: var(--danger);
  font-size: 21px;
}

.home-nav-shell {
  background: #0b3440;
}

.home-nav-inner {
  align-items: center;
}

.home-nav-link {
  min-height: 54px;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 700;
}

.home-nav-link:hover,
.home-nav-link.is-active,
.home-nav-group:hover > .home-nav-link,
.home-nav-group:focus-within > .home-nav-link {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.home-nav-link.is-active {
  box-shadow: inset 0 -3px 0 #f5c453;
}

.home-nav-dropdown {
  min-width: 210px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--brand);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 18px 34px rgba(16, 32, 51, 0.14);
}

.home-nav-dropdown a:hover {
  background: var(--brand-soft);
  color: var(--brand);
}

.button,
.home-lead-submit,
.home-search button,
.filter-chip,
.pager a,
.pager span,
.floating-tools a,
.mobile-cta a {
  border-radius: 8px;
}

.button {
  min-height: 44px;
  padding: 0 18px;
  box-shadow: none;
}

.button:hover,
.home-service-card:hover,
.home-special-card:hover,
.service-card:hover,
.article-card:hover,
.list-card:hover,
.trust-card:hover,
.mini-card:hover,
.package-card:hover {
  transform: translateY(-2px);
}

.button-primary,
.home-search button,
.home-lead-submit,
.floating-tools a.primary,
.mobile-cta .consult {
  border-color: var(--brand);
  background: linear-gradient(135deg, #0f766e, #145d66);
  color: #fff;
  box-shadow: 0 10px 22px rgba(15, 118, 110, 0.2);
}

.button-primary:hover,
.home-lead-submit:hover {
  box-shadow: 0 14px 28px rgba(15, 118, 110, 0.24);
}

.button-secondary {
  border-color: #d98806;
  background: linear-gradient(135deg, #f5b942, #d98806);
  color: #122033;
  box-shadow: 0 10px 22px rgba(217, 136, 6, 0.17);
}

.button-ghost {
  border-color: #cfdce8;
  background: #fff;
  color: var(--ink);
}

.button-ghost:hover {
  border-color: rgba(15, 118, 110, 0.38);
  background: var(--brand-soft);
  color: var(--brand);
}

.home-hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(230, 244, 241, 0.96), rgba(248, 251, 255, 0.96) 46%, rgba(238, 245, 255, 0.96)),
    url("../img/hero-shenzhen.svg") right bottom / 58% auto no-repeat;
  color: var(--ink);
}

.home-hero::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.42) 56%, rgba(255, 255, 255, 0.62)),
    radial-gradient(circle at 80% 18%, rgba(15, 118, 110, 0.14), transparent 28%),
    radial-gradient(circle at 20% 80%, rgba(217, 136, 6, 0.1), transparent 24%);
}

.home-hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  gap: 44px;
  padding: 66px 0 62px;
}

.home-hero-copy h1,
.hero-copy h1,
.subhero h1,
.article-head h1 {
  color: var(--ink);
  font-size: 44px;
  line-height: 1.16;
  font-weight: 850;
}

.home-hero-copy h1 {
  max-width: 580px;
  margin-bottom: 18px;
}

.home-hero-copy h1 span {
  color: var(--accent);
}

.home-hero-copy p,
.home-hero-points li {
  color: #45566c;
}

.home-hero-copy p {
  max-width: 640px;
  font-size: 18px;
}

.home-hero-pill {
  border: 1px solid rgba(15, 118, 110, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand);
  box-shadow: 0 8px 20px rgba(16, 32, 51, 0.05);
}

.home-hero-pill::before,
.home-hero-points li::before {
  background: var(--brand);
}

.home-hero-actions {
  gap: 12px;
}

.home-hero-actions .button-ghost {
  background: rgba(255, 255, 255, 0.76);
}

.home-lead-card {
  padding: 28px;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-top: 4px solid var(--brand);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(16, 32, 51, 0.12);
}

.home-lead-card h2 {
  color: var(--ink);
  font-size: 26px;
}

.home-lead-card p {
  color: var(--muted);
}

.home-field {
  min-height: 56px;
  border: 1px solid #d9e5ee;
  border-radius: 8px;
  background: #f8fbfc;
}

.home-field:focus-within {
  border-color: rgba(15, 118, 110, 0.52);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.1);
}

.home-field-label {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand);
}

.home-lead-meta {
  color: var(--muted);
}

.home-service-board {
  margin-top: 0;
  padding: 42px 0;
  background: #fff;
}

.home-service-board-shell {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-service-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.home-service-card {
  min-height: 150px;
  align-items: flex-start;
  padding: 20px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.home-service-card.is-featured {
  border-color: rgba(15, 118, 110, 0.36);
  border-bottom-color: rgba(15, 118, 110, 0.36);
  background: linear-gradient(180deg, #fff, #f4fbfa);
}

.home-service-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 20px;
}

.home-service-card.is-featured .home-service-icon {
  background: linear-gradient(145deg, #0f766e, #145d66);
  color: #fff;
}

.home-service-card strong {
  color: var(--ink);
  font-size: 17px;
}

.home-service-card span {
  color: var(--muted);
}

.section,
.home-main-band,
.home-news-section,
.home-friend-links {
  background: transparent;
}

.section {
  padding: 66px 0;
}

.section-light {
  background: #fff;
}

.section-contrast {
  background: #eef5f7;
}

.section-accent {
  background: linear-gradient(135deg, #e6f4f1, #fff7df);
}

.section-head {
  margin-bottom: 28px;
}

.section-head h2,
.article-body h2,
.contact-panel h2 {
  color: var(--ink);
  font-size: 30px;
  line-height: 1.25;
}

.section-head p,
.section-copy,
.service-card p,
.article-card p,
.advantage-card p,
.list-card p,
.sidebar-card p,
.trust-card p,
.mini-card p,
.package-card p,
.note-panel p {
  color: var(--muted);
}

.eyebrow {
  color: var(--brand);
}

.eyebrow::before {
  background: var(--accent);
}

.pill {
  border: 1px solid rgba(15, 118, 110, 0.16);
  background: var(--brand-soft);
  color: var(--brand);
}

.pill-accent {
  border-color: rgba(217, 136, 6, 0.18);
  background: var(--accent-soft);
  color: #99610a;
}

.service-card,
.article-card,
.advantage-card,
.list-card,
.sidebar-card,
.form-card,
.quote-panel,
.note-panel,
.trust-card,
.mini-card,
.package-card,
.home-panel,
.home-news-shell,
.home-promo-card,
.home-advisor-card,
.compare-table-wrap,
.article-shell,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.service-card,
.article-card,
.advantage-card,
.trust-card,
.mini-card,
.package-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover,
.article-card:hover,
.advantage-card:hover,
.trust-card:hover,
.mini-card:hover,
.package-card:hover {
  border-color: rgba(15, 118, 110, 0.3);
  box-shadow: var(--shadow);
}

.quote-panel {
  border-top: 4px solid var(--brand);
}

.note-panel {
  background: #f7fbfb;
}

.quote-badges li {
  border: 1px solid #d8e8e5;
  background: #f3faf8;
  color: var(--brand-mid);
}

.check-list li::before {
  background: var(--brand);
}

.metric-strip .service-card {
  background: #fff;
}

.package-card.featured {
  border-color: rgba(15, 118, 110, 0.45);
  box-shadow: 0 18px 38px rgba(15, 118, 110, 0.13);
}

.package-price {
  color: var(--brand);
}

.marketing-hero,
.subhero {
  background:
    linear-gradient(135deg, rgba(230, 244, 241, 0.96), rgba(248, 251, 255, 0.96) 52%, rgba(255, 246, 223, 0.7)),
    url("../img/hero-shenzhen.svg") right bottom / 48% auto no-repeat;
  color: var(--ink);
}

.marketing-hero::before,
.subhero::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.5) 64%, rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at 84% 18%, rgba(15, 118, 110, 0.12), transparent 25%);
}

.marketing-hero .hero-grid {
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.74fr);
  gap: 42px;
  padding: 62px 0 56px;
}

.marketing-hero .breadcrumb,
.marketing-hero .breadcrumb a,
.marketing-hero .hero-copy p,
.marketing-hero .hero-stats dd {
  color: #56677c;
}

.marketing-hero .eyebrow {
  color: var(--brand);
}

.marketing-hero .hero-copy h1 {
  max-width: 680px;
  color: var(--ink);
}

.hero-copy p {
  color: #56677c;
  font-size: 18px;
}

.hero-stats {
  gap: 12px;
}

.hero-stats div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.marketing-hero .hero-stats div {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.hero-stats dt,
.marketing-hero .hero-stats dt {
  color: var(--brand);
}

.marketing-shell {
  gap: 16px;
}

.section-nav {
  top: 74px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 18px rgba(16, 32, 51, 0.045);
}

.section-nav-inner {
  gap: 8px;
  padding: 9px 0;
}

.section-nav-inner a,
.section-nav a {
  min-height: 38px;
  border-radius: 8px;
  color: #526176;
  font-weight: 700;
}

.section-nav-inner a:hover,
.section-nav a:hover {
  background: var(--brand-soft);
  color: var(--brand);
}

.field-grid {
  gap: 12px;
}

.form-card input,
.form-card select,
.form-card textarea,
.quote-panel input,
.quote-panel select,
.quote-panel textarea {
  border: 1px solid #d7e3ed;
  border-radius: 8px;
  background: #f9fbfd;
  color: var(--ink);
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus,
.quote-panel input:focus,
.quote-panel select:focus,
.quote-panel textarea:focus {
  outline: none;
  border-color: rgba(15, 118, 110, 0.56);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.1);
}

.process-list li::before {
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(15, 118, 110, 0.12);
}

.process-list li::after {
  background: rgba(15, 118, 110, 0.16);
}

.faq-item {
  border-color: var(--line);
  border-radius: 8px;
  background: #fff;
}

.faq-toggle::after {
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand);
}

.filter-chip {
  border-color: #cfdce8;
  background: #fff;
  color: #526176;
}

.filter-chip.is-active,
.filter-chip:hover {
  border-color: rgba(15, 118, 110, 0.36);
  background: var(--brand-soft);
  color: var(--brand);
}

.article-shell {
  padding: 34px;
}

.article-summary {
  border-left: 4px solid var(--brand);
  border-radius: 8px;
  background: #f3faf8;
  color: #42556a;
}

.article-body table {
  border-color: var(--line);
}

.article-body th {
  background: #f3faf8;
  color: var(--ink);
}

.template-note {
  border-color: rgba(217, 136, 6, 0.22);
  background: var(--accent-soft);
}

.site-footer {
  background: #0b3440;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid h4,
.footer-bottom strong {
  color: #fff;
}

.footer-links a,
.footer-note,
.footer-records {
  color: rgba(255, 255, 255, 0.68);
}

.service-final-cta {
  background:
    linear-gradient(135deg, rgba(11, 52, 64, 0.96), rgba(15, 118, 110, 0.9)),
    url("../img/hero-shenzhen.svg") center / cover no-repeat;
  color: #fff;
}

.service-final-cta .cta-box {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.service-final-cta h2 {
  font-size: 34px;
}

.service-final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.service-final-cta .button-ghost {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.service-final-cta .button-secondary {
  background: linear-gradient(135deg, #f5c453, #d98806);
  color: #102033;
}

.service-related-strip a {
  border-radius: 999px;
}

.home-panel,
.home-news-shell {
  padding: 28px;
}

.home-panel-head h2,
.home-news-head h2 {
  color: var(--ink);
  font-size: 26px;
}

.home-panel-head h2::before,
.home-news-head h2::before,
.home-friend-title::before {
  background: var(--brand);
}

.home-special-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.home-special-icon {
  border-radius: 8px;
  background: var(--surface-blue);
  color: #2563eb;
}

.home-news-tab {
  border-radius: 8px;
}

.home-news-tab.is-active {
  background: var(--brand-soft);
  border-bottom-color: transparent;
  color: var(--brand);
}

.home-news-item {
  border-radius: 8px;
}

.home-region-strip,
.home-friend-shell {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.home-side-float {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.home-side-float span {
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand);
}

.floating-tools a {
  box-shadow: var(--shadow-soft);
}

.mobile-cta {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
}

.mobile-cta .phone {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

@media (max-width: 1280px) {
  .home-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .home-header-main {
    min-height: auto;
    padding: 18px 0;
  }

  .home-hero-grid,
  .marketing-hero .hero-grid,
  .hero-grid,
  .subhero-inner {
    grid-template-columns: 1fr;
  }

  .home-hero,
  .marketing-hero,
  .subhero {
    background:
      linear-gradient(135deg, rgba(230, 244, 241, 0.98), rgba(248, 251, 255, 0.98) 58%, rgba(255, 246, 223, 0.82)),
      url("../img/hero-shenzhen.svg") right bottom / 76% auto no-repeat;
  }

  .section-nav {
    top: 0;
  }
}

@media (max-width: 900px) {
  .topbar,
  .home-utility-bar {
    display: none;
  }

  .header-actions,
  .site-nav {
    display: none;
  }

  .nav-toggle,
  .home-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  body.nav-open .site-nav {
    position: fixed;
    inset: 74px 16px auto 16px;
    z-index: 50;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav a {
    min-height: 42px;
    padding: 0 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    background: #f7fafc;
  }

  body.nav-open .site-nav a.active::after {
    display: none;
  }

  .home-mobile-panel {
    border-right: 1px solid var(--line);
    background: #fff;
  }

  .home-mobile-close,
  .home-mobile-group a {
    border-radius: 8px;
  }

  .home-mobile-group a {
    background: #f7fafc;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .home-hero-grid,
  .marketing-hero .hero-grid,
  .hero-grid {
    padding: 36px 0 42px;
    gap: 26px;
  }

  .home-hero-copy h1,
  .hero-copy h1,
  .subhero h1,
  .article-head h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .section-head h2,
  .article-body h2,
  .contact-panel h2 {
    font-size: 24px;
  }

  .home-hero-copy p,
  .hero-copy p {
    font-size: 16px;
  }

  .home-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-service-card {
    min-height: 142px;
    padding: 16px 14px;
  }

  .service-final-cta .cta-box {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .service-final-cta h2 {
    font-size: 26px;
  }

  .service-final-cta .cta-actions,
  .hero-actions,
  .home-hero-actions {
    justify-content: stretch;
  }

  .service-final-cta .cta-actions .button,
  .hero-actions .button,
  .home-hero-actions .button {
    width: 100%;
  }

  .article-shell {
    padding: 22px 18px;
  }
}

@media (max-width: 640px) {
  .home-header .brand-mark,
  .brand-mark {
    width: 46px;
    height: 46px;
    font-size: 22px;
  }

  .home-header .brand-copy strong,
  .brand-copy strong {
    font-size: 19px;
  }

  .home-search input,
  .home-search button {
    min-height: 48px;
    font-size: 14px;
  }

  .home-search button {
    min-width: 92px;
  }

  .home-lead-card,
  .quote-panel,
  .note-panel,
  .service-card,
  .article-card,
  .advantage-card,
  .list-card,
  .sidebar-card,
  .form-card,
  .trust-card,
  .mini-card,
  .package-card,
  .home-panel,
  .home-news-shell,
  .home-special-card {
    border-radius: 8px;
  }

  .section {
    padding: 48px 0;
  }
}

/* Launch-ready layout fixes */
html,
body {
  overflow-x: hidden;
}

.site-header,
.home-header {
  isolation: isolate;
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 18px;
}

.site-nav {
  min-width: 0;
  justify-content: center;
  gap: 14px;
}

.site-nav a {
  white-space: nowrap;
}

.header-actions {
  white-space: nowrap;
}

.home-header-main {
  display: grid;
  grid-template-columns: auto minmax(320px, 1fr) auto auto;
  min-height: 92px;
}

.home-search {
  width: 100%;
  max-width: 560px;
  justify-self: center;
}

.home-nav-inner {
  flex-wrap: wrap;
  justify-content: center;
}

.home-nav-link {
  min-height: 52px;
}

.home-hero-grid,
.marketing-hero .hero-grid {
  align-items: center;
}

.home-hero-copy,
.hero-copy {
  min-width: 0;
}

.home-hero-copy h1,
.hero-copy h1,
.subhero h1,
.article-head h1 {
  word-break: normal;
  overflow-wrap: anywhere;
}

.home-service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-service-card,
.home-special-card,
.trust-card,
.mini-card,
.package-card,
.service-card,
.article-card,
.list-card,
.sidebar-card {
  min-width: 0;
}

.home-service-card {
  min-height: 138px;
}

.home-special-grid,
.trust-grid,
.mini-grid,
.package-grid,
.service-grid,
.article-grid,
.advantage-grid,
.district-grid,
.faq-grid {
  align-items: stretch;
}

.trust-card,
.mini-card,
.package-card,
.service-card,
.article-card,
.advantage-card {
  height: 100%;
}

.home-main-layout,
.contact-wrap {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
}

.home-panel-head,
.home-news-head,
.section-head,
.list-card-header,
.card-footer,
.list-footer {
  min-width: 0;
}

.home-panel-head a,
.list-card-header .button,
.card-footer .button,
.list-footer .text-link {
  flex: 0 0 auto;
}

.home-special-card,
.home-news-item,
.list-card,
.article-shell,
.quote-panel,
.note-panel {
  overflow-wrap: anywhere;
}

.home-news-item a {
  min-width: 0;
}

.home-news-item span {
  flex: 0 0 auto;
}

.filter-row,
.section-nav-inner {
  scrollbar-width: none;
}

.filter-row::-webkit-scrollbar,
.section-nav-inner::-webkit-scrollbar {
  display: none;
}

.compare-table-wrap,
.article-body {
  overflow-x: auto;
}

.compare-table,
.article-body table {
  min-width: 620px;
}

.floating-tools {
  max-width: 124px;
}

.floating-tools a {
  text-align: center;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .site-nav {
    order: 4;
    grid-column: 1 / -1;
    padding-bottom: 12px;
  }

  .home-header-main {
    grid-template-columns: auto minmax(260px, 1fr) auto;
  }

  .home-hotline {
    display: none;
  }

  .home-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .header-inner,
  .home-header-main {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-nav {
    order: initial;
    grid-column: auto;
    padding-bottom: 0;
  }

  .home-search {
    grid-column: 1 / -1;
    max-width: none;
    justify-self: stretch;
  }

  .home-main-layout,
  .contact-wrap,
  .list-layout,
  .article-layout,
  .split-grid,
  .subhero-inner {
    grid-template-columns: 1fr;
  }

  .home-service-grid,
  .home-special-grid,
  .trust-grid,
  .mini-grid,
  .package-grid,
  .metric-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 760px) {
  .home-service-grid,
  .home-special-grid,
  .trust-grid,
  .mini-grid,
  .package-grid,
  .metric-strip,
  .faq-grid,
  .service-grid,
  .article-grid,
  .advantage-grid,
  .district-grid {
    grid-template-columns: 1fr;
  }

  .home-service-card,
  .home-special-card {
    min-height: auto;
  }

  .home-panel-head,
  .home-news-head,
  .list-card-header,
  .card-footer,
  .list-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-panel-head a,
  .list-card-header .button,
  .card-footer .button,
  .list-footer .text-link {
    width: 100%;
  }

  .filter-row,
  .section-nav-inner,
  .home-news-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .filter-chip,
  .section-nav-inner a,
  .home-news-tab {
    flex: 0 0 auto;
  }

  .home-news-item {
    display: grid;
    gap: 6px;
  }

  .home-news-item span {
    white-space: normal;
  }

  .compare-table,
  .article-body table {
    min-width: 560px;
  }

  .floating-tools {
    display: none;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand {
    gap: 10px;
  }

  .brand-copy strong,
  .home-header .brand-copy strong {
    font-size: 18px;
  }

  .brand-copy span,
  .home-header .brand-copy span {
    font-size: 11px;
  }

  .home-search {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .home-search input {
    min-width: 0;
    padding: 0 12px;
  }

  .home-search button {
    min-width: 82px;
    padding: 0 10px;
  }

  .button,
  .home-lead-submit {
    width: 100%;
    min-height: 44px;
  }

  .service-related-strip a {
    width: 100%;
    justify-content: center;
  }
}

/* Platform homepage concept */
.home-platform-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 44px;
  background:
    linear-gradient(135deg, rgba(231, 247, 244, 0.96), rgba(248, 251, 255, 0.98) 50%, rgba(255, 247, 226, 0.82)),
    url("../img/hero-shenzhen.svg") right bottom / 52% auto no-repeat;
}

.home-platform-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.52) 62%, rgba(255, 255, 255, 0.76)),
    radial-gradient(circle at 82% 16%, rgba(15, 118, 110, 0.14), transparent 28%);
  content: "";
  pointer-events: none;
}

.home-platform-hero-grid,
.home-platform-focus-grid,
.home-platform-workflow-grid,
.home-platform-content-grid,
.home-platform-contact-grid {
  position: relative;
  display: grid;
  gap: 24px;
}

.home-platform-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  align-items: center;
}

.home-platform-copy h1 {
  max-width: 680px;
  margin: 16px 0 18px;
  color: var(--ink);
  font-size: 50px;
  line-height: 1.12;
  font-weight: 900;
}

.home-platform-copy p {
  max-width: 660px;
  margin: 0;
  color: #4d6075;
  font-size: 18px;
}

.home-platform-kicker {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand);
  font-size: 14px;
  font-weight: 800;
}

.home-platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.home-platform-tags span {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #41566d;
  font-weight: 700;
}

.home-platform-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.home-platform-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin-top: 28px;
}

.home-platform-metrics article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.home-platform-metrics strong {
  display: block;
  color: var(--brand);
  font-size: 22px;
  line-height: 1.1;
}

.home-platform-metrics span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.home-platform-quick,
.home-platform-panel,
.home-platform-contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(16, 32, 51, 0.1);
}

.home-platform-quick {
  padding: 24px;
  border-top: 4px solid var(--brand);
}

.home-platform-quick-head,
.home-platform-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.home-platform-quick-head strong,
.home-platform-panel-head h2,
.home-platform-contact-copy h2 {
  color: var(--ink);
}

.home-platform-quick-head strong {
  font-size: 24px;
}

.home-platform-quick-head p,
.home-platform-panel-head p,
.home-platform-section-head p,
.home-platform-contact-copy p {
  margin: 6px 0 0;
  color: var(--muted);
}

.home-platform-quick-head > span {
  flex: 0 0 auto;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: var(--accent-soft);
  color: #99610a;
  font-size: 13px;
  font-weight: 800;
}

.home-platform-quick-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.home-platform-quick-links a {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid #dbe8e6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7fbfa;
  color: var(--brand);
  font-weight: 800;
}

.home-platform-form,
.home-platform-contact-form {
  display: grid;
  gap: 12px;
}

.home-platform-contact-form {
  padding: 24px;
}

.home-platform-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.home-platform-form label,
.home-platform-contact-form label {
  display: grid;
  gap: 6px;
  color: #43576b;
  font-size: 14px;
  font-weight: 800;
}

.home-platform-form input,
.home-platform-form select,
.home-platform-form textarea,
.home-platform-contact-form input,
.home-platform-contact-form select,
.home-platform-contact-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d7e3ed;
  border-radius: 8px;
  padding: 0 12px;
  background: #f9fbfd;
  color: var(--ink);
}

.home-platform-form textarea,
.home-platform-contact-form textarea {
  min-height: 82px;
  padding: 12px;
  resize: vertical;
}

.home-platform-hotline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.home-platform-hotline span {
  color: var(--muted);
  font-weight: 700;
}

.home-platform-hotline a {
  color: var(--danger);
  font-size: 20px;
  font-weight: 900;
}

.home-platform-services,
.home-platform-focus,
.home-platform-workflow,
.home-platform-content,
.home-platform-region,
.home-platform-contact {
  padding: 56px 0;
}

.home-platform-services,
.home-platform-content {
  background: #fff;
}

.home-platform-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.home-platform-section-head h2,
.home-platform-panel-head h2,
.home-platform-contact-copy h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.25;
}

.home-platform-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-platform-service-card,
.home-platform-topic-card,
.home-platform-region-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-platform-service-card {
  min-height: 152px;
  padding: 18px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.home-platform-service-card:hover,
.home-platform-topic-card:hover,
.home-platform-region-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 118, 110, 0.32);
  box-shadow: var(--shadow);
}

.home-platform-service-card.is-highlight {
  border-color: rgba(15, 118, 110, 0.36);
  background: linear-gradient(180deg, #fff, #f4fbfa);
}

.home-platform-service-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 20px;
  font-weight: 900;
}

.home-platform-service-card.is-highlight .home-platform-service-mark {
  background: linear-gradient(145deg, #0f766e, #145d66);
  color: #fff;
}

.home-platform-service-card strong,
.home-platform-topic-card strong,
.home-platform-region-card strong {
  color: var(--ink);
  font-size: 18px;
}

.home-platform-service-card p,
.home-platform-topic-card p,
.home-platform-region-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.home-platform-focus-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.36fr);
  align-items: start;
}

.home-platform-panel {
  padding: 28px;
}

.home-platform-panel-head {
  margin-bottom: 20px;
}

.home-platform-panel-head a {
  color: var(--brand);
  font-weight: 800;
}

.home-platform-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-platform-topic-card {
  padding: 20px;
  display: grid;
  gap: 10px;
}

.home-platform-topic-card span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
}

.home-platform-side {
  display: grid;
  gap: 14px;
}

.home-platform-side-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.home-platform-side-card h3 {
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.3;
}

.home-platform-side-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 18px;
  color: #43576b;
}

.home-platform-side-card.is-dark {
  background: #0b3440;
  color: #fff;
}

.home-platform-side-card.is-dark h3,
.home-platform-side-card.is-dark .eyebrow {
  color: #fff;
}

.home-platform-side-card.is-dark p {
  color: rgba(255, 255, 255, 0.75);
}

.home-platform-side-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.home-platform-side-meta span {
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
}

.home-platform-workflow {
  background: #f0f7f7;
}

.home-platform-workflow-grid,
.home-platform-content-grid,
.home-platform-contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-platform-step-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-platform-step-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.home-platform-step-list span {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
}

.home-platform-step-list strong,
.home-platform-scene-list strong {
  color: var(--ink);
}

.home-platform-step-list p,
.home-platform-scene-list p {
  margin: 6px 0 0;
  color: var(--muted);
}

.home-platform-scene-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-platform-scene-list article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.home-platform-article-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-platform-article-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed #d9e5ee;
}

.home-platform-article-list a {
  color: #2d4156;
  font-weight: 700;
}

.home-platform-article-list span {
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.home-platform-faq {
  display: grid;
  gap: 10px;
}

.home-platform-region-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-platform-region-card {
  padding: 20px;
}

.home-platform-region-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--brand);
  font-weight: 800;
}

.home-platform-contact {
  background: linear-gradient(135deg, #0b3440, #0f766e);
  color: #fff;
}

.home-platform-contact-copy h2,
.home-platform-contact-copy .eyebrow {
  color: #fff;
}

.home-platform-contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.home-platform-contact-points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.home-platform-contact-points div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.home-platform-contact-points strong {
  display: block;
  color: #fff;
}

.home-platform-contact-points span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 1080px) {
  .home-platform-hero-grid,
  .home-platform-focus-grid,
  .home-platform-workflow-grid,
  .home-platform-content-grid,
  .home-platform-contact-grid,
  .home-platform-section-head {
    grid-template-columns: 1fr;
  }

  .home-platform-service-grid,
  .home-platform-region-grid,
  .home-platform-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .home-platform-hero {
    padding: 36px 0;
    background:
      linear-gradient(135deg, rgba(231, 247, 244, 0.98), rgba(248, 251, 255, 0.98)),
      url("../img/hero-shenzhen.svg") right bottom / 88% auto no-repeat;
  }

  .home-platform-copy h1 {
    font-size: 34px;
  }

  .home-platform-copy p {
    font-size: 16px;
  }

  .home-platform-form-row,
  .home-platform-service-grid,
  .home-platform-topic-grid,
  .home-platform-scene-list,
  .home-platform-region-grid,
  .home-platform-metrics {
    grid-template-columns: 1fr;
  }

  .home-platform-actions .button,
  .home-platform-panel-head a {
    width: 100%;
  }

  .home-platform-quick,
  .home-platform-panel,
  .home-platform-contact-form,
  .home-platform-side-card {
    padding: 20px;
  }

  .home-platform-article-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* Final production pass */
:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-alt: #f7fafc;
  --ink: #152033;
  --muted: #5f6f86;
  --line: #dce5f1;
  --brand: #165dff;
  --brand-deep: #10243f;
  --brand-soft: #eef4ff;
  --accent: #f59e0b;
  --accent-soft: #fff7e6;
  --danger: #dc2626;
  --shadow: 0 18px 42px rgba(16, 36, 63, 0.1);
  --shadow-soft: 0 10px 28px rgba(16, 36, 63, 0.07);
  --radius: 10px;
}

html,
body {
  background: var(--bg);
}

body {
  color: var(--ink);
}

.container {
  width: min(calc(100% - 40px), 1200px);
}

.topbar,
.home-utility-bar {
  background: #0f1f35;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 0;
}

.topbar a,
.home-utility-bar a {
  color: #fff;
}

.site-header,
.home-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 26px rgba(16, 36, 63, 0.06);
}

.brand-mark,
.home-header .brand-mark {
  border-radius: 10px;
  background: linear-gradient(145deg, #165dff, #0f8b8d);
  box-shadow: 0 12px 24px rgba(22, 93, 255, 0.2);
}

.brand-copy strong,
.home-header .brand-copy strong {
  color: var(--ink);
  letter-spacing: 0;
}

.brand-copy span,
.home-header .brand-copy span {
  color: var(--muted);
  font-weight: 700;
}

.site-nav a,
.home-nav-link {
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--brand);
}

.home-nav-shell {
  background: var(--brand-deep);
}

.home-nav-link:hover,
.home-nav-link.is-active,
.home-nav-group:hover > .home-nav-link,
.home-nav-group:focus-within > .home-nav-link {
  background: var(--brand);
}

.button,
.home-lead-submit,
.home-search button,
.filter-chip,
.home-news-tab {
  border-radius: var(--radius);
}

.button-primary,
.home-search button,
.home-lead-submit,
.floating-tools a.primary,
.mobile-cta .consult {
  background: linear-gradient(135deg, #165dff, #0f8b8d);
  color: #fff;
  box-shadow: 0 12px 26px rgba(22, 93, 255, 0.2);
}

.button-secondary {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  box-shadow: 0 12px 26px rgba(245, 158, 11, 0.2);
}

.button-ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.home-badge {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.home-badge::before {
  background: #38bdf8;
}

.home-hero {
  padding: 0;
  background:
    linear-gradient(112deg, rgba(15, 31, 53, 0.98) 0%, rgba(18, 50, 86, 0.94) 53%, rgba(15, 139, 141, 0.86) 100%),
    url("../img/hero-shenzhen.svg") right bottom / 58% auto no-repeat;
  color: #fff;
}

.home-hero::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 40%);
}

.home-hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  gap: 48px;
  padding: 64px 0 78px;
}

.home-hero-pill {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.14);
}

.home-hero-pill::before {
  content: none;
}

.home-hero-copy h1 {
  max-width: 760px;
  margin-top: 20px;
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.08;
}

.home-hero-copy h1 span {
  color: #f6c65b;
}

.home-hero-copy p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.home-hero-points {
  gap: 12px;
}

.home-hero-points li {
  padding-left: 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.home-hero-points li::before {
  width: 22px;
  height: 22px;
  background: #22c55e;
  font-size: 12px;
}

.home-lead-card,
.quote-panel,
.contact-panel,
.sidebar-card,
.article-shell,
.list-card,
.home-panel,
.home-news-shell,
.home-promo-card,
.home-advisor-card {
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.home-lead-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-top: 4px solid #f6c65b;
}

.home-lead-card h2 {
  color: var(--ink);
  font-size: 24px;
}

.home-field {
  min-height: 64px;
  border-radius: 10px;
  background: #f8fbff;
  border-color: #e0e8f4;
}

.home-field-label {
  color: var(--brand);
  font-size: 18px;
}

.home-field-copy {
  min-width: 72px;
  color: var(--ink);
  font-size: 15px;
}

.home-service-board {
  margin-top: 0;
  padding: 54px 0 0;
  background: #fff;
}

.home-service-board-shell {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.home-service-card {
  min-height: 170px;
  padding: 22px;
  border-radius: 12px;
  border-color: #e1e9f3;
  box-shadow: 0 8px 24px rgba(16, 36, 63, 0.06);
}

.home-service-card:hover,
.service-card:hover,
.article-card:hover,
.list-card:hover {
  transform: translateY(-3px);
  border-color: rgba(22, 93, 255, 0.26);
  box-shadow: var(--shadow);
}

.home-service-card.is-featured {
  border-bottom: 0;
  border-color: rgba(22, 93, 255, 0.34);
  background: linear-gradient(180deg, #fff, #f5f9ff);
}

.home-service-icon {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 24px;
}

.home-service-card.is-featured .home-service-icon {
  background: linear-gradient(145deg, #165dff, #0f8b8d);
}

.home-main-band,
.home-news-section,
.home-friend-links,
.section {
  padding-top: 58px;
}

.section {
  padding-bottom: 58px;
}

.section-light,
.home-news-section {
  background: #fff;
}

.section-contrast {
  background: #eef4ff;
}

.home-main-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.36fr);
}

.home-panel,
.home-news-shell,
.list-card,
.article-shell,
.sidebar-card,
.quote-panel,
.note-panel,
.trust-card,
.package-card,
.mini-card,
.service-card,
.article-card {
  border-color: #e1e9f3;
  background: #fff;
}

.home-special-card {
  min-height: 168px;
  border-radius: 12px;
  border-color: #e1e9f3;
}

.home-special-icon {
  background: #eef4ff;
  color: var(--brand);
  border-radius: 12px;
}

.home-promo-card {
  background: linear-gradient(150deg, #165dff, #10243f);
}

.home-promo-card .button {
  background: #f6c65b;
  color: #10243f;
}

.home-advisor-card {
  background: #10243f;
}

.home-advisor-avatar {
  width: 94px;
  height: 94px;
  border: 3px solid #f6c65b;
  background: #fff7e6;
  color: #10243f;
  font-size: 22px;
}

.home-news-head {
  gap: 22px;
}

.home-news-tab.is-active {
  border-bottom-color: var(--brand);
  background: var(--brand-soft);
  color: var(--brand);
}

.home-news-item a,
.article-card strong,
.service-card strong,
.trust-card strong,
.mini-card strong,
.list-card strong {
  color: var(--ink);
}

.home-friend-links {
  padding-bottom: 58px;
  background: #fff;
}

.hero,
.subhero {
  background:
    linear-gradient(135deg, rgba(246, 250, 255, 0.98), rgba(238, 244, 255, 0.94)),
    url("../img/process-board.svg") right bottom / 420px auto no-repeat;
}

.hero-grid,
.subhero-inner {
  position: relative;
}

.hero-copy h1,
.subhero h1,
.article-head h1 {
  color: var(--ink);
  letter-spacing: 0;
}

.hero-copy p,
.subhero p,
.section-head p,
.article-summary,
.article-body p,
.article-body li,
.list-card p,
.list-card li,
.trust-card p,
.mini-card p,
.package-card p {
  color: var(--muted);
}

.hero-stats div,
.metric-strip .service-card,
.trust-card,
.mini-card,
.package-card,
.faq-item,
.sidebar-card,
.list-card {
  border-radius: 12px;
}

.quote-panel {
  border-top: 4px solid var(--brand);
}

.quote-panel input,
.quote-panel select,
.quote-panel textarea,
.home-field input,
.home-search input,
.article-body input,
.article-body select {
  border-color: #dce5f1;
}

.pill {
  background: #eef4ff;
  color: #2456d6;
}

.pill-accent {
  background: #fff7e6;
  color: #9a5b00;
}

.section-nav {
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(16, 36, 63, 0.04);
}

.section-nav-inner a {
  border-radius: 999px;
  background: #f7fafc;
}

.section-nav-inner a:hover {
  background: var(--brand);
  color: #fff;
}

.cta-box {
  border-radius: 14px;
  background: linear-gradient(135deg, #10243f, #0f8b8d);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-box h2,
.cta-box .eyebrow {
  color: #fff;
}

.cta-box p,
.cta-box a {
  color: rgba(255, 255, 255, 0.82);
}

.cta-box .button-secondary {
  background: #f6c65b;
  color: #10243f;
  box-shadow: none;
}

.cta-box .button-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.site-footer {
  background: #0d1b2f;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer .brand-copy strong,
.site-footer h4 {
  color: #fff;
}

.site-footer .brand-copy span,
.footer-note,
.footer-links,
.footer-links a,
.footer-links span,
.footer-bottom,
.home-region-links a {
  color: rgba(255, 255, 255, 0.68);
}

.footer-links a:hover,
.home-region-links a:hover {
  color: #fff;
}

.home-region-strip {
  margin-top: 0;
  margin-bottom: 30px;
  padding: 0 0 24px;
  border-top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-region-strip h4 {
  margin-bottom: 14px;
  font-size: 16px;
}

.home-region-links {
  gap: 10px;
}

.home-region-links a {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  white-space: nowrap;
}

.footer-grid {
  grid-template-columns: minmax(0, 1.1fr) repeat(3, minmax(0, 0.75fr));
  gap: 28px;
  align-items: start;
}

.footer-note {
  max-width: 420px;
  margin-top: 14px;
  line-height: 1.9;
}

.footer-links {
  gap: 12px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-records {
  text-align: right;
}

.home-side-float,
.floating-tools {
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(16, 36, 63, 0.16);
}

.home-side-float a {
  min-height: 70px;
  width: 84px;
  font-size: 12px;
}

.home-side-float span {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 16px;
}

.mobile-cta {
  box-shadow: 0 -10px 26px rgba(16, 36, 63, 0.12);
}

@media (max-width: 1080px) {
  .home-hero-grid,
  .home-main-layout,
  .hero-grid,
  .subhero-inner,
  .article-layout,
  .list-layout {
    grid-template-columns: 1fr;
  }

  .home-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), 1200px);
  }

  .home-hero {
    background: linear-gradient(145deg, #10243f, #0f4e69);
  }

  .home-hero-grid {
    padding: 40px 0 48px;
    gap: 28px;
  }

  .home-hero-copy h1 {
    font-size: 34px;
  }

  .home-hero-actions .button,
  .hero-actions .button {
    width: 100%;
  }

  .home-lead-card,
  .home-panel,
  .home-news-shell,
  .quote-panel,
  .article-shell {
    padding: 22px;
  }

  .home-field {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 6px 10px;
  }

  .home-field input {
    grid-column: 1 / -1;
  }

  .home-service-grid,
  .home-special-grid,
  .trust-grid,
  .mini-grid,
  .package-grid,
  .service-grid,
  .article-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .home-service-card,
  .home-special-card {
    min-height: auto;
  }

  .home-news-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .home-side-float,
  .floating-tools {
    display: none;
  }

  .footer-bottom {
    display: grid;
    justify-content: start;
  }

  .footer-records {
    text-align: left;
  }

  .site-footer {
    padding-bottom: 76px;
  }
}

/* Launch-ready SEO/GEO footer overrides */
.site-footer {
  padding: 56px 0 24px;
  border-top: 1px solid rgba(15, 78, 105, 0.08);
  background: linear-gradient(180deg, #f7fbfd 0%, #eef5f8 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 28px 48px;
  align-items: start;
}

.footer-brand p {
  margin: 16px 0 0;
  max-width: 720px;
  color: #526273;
  line-height: 1.8;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  font-size: 14px;
  color: #526273;
}

.footer-contact a {
  color: #0f4e69;
  font-weight: 700;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
}

.footer-links h4 {
  margin: 0 0 14px;
  font-size: 15px;
  color: #10243f;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: #526273;
  font-size: 14px;
  line-height: 1.6;
}

.footer-links a:hover {
  color: #0f4e69;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px 24px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 78, 105, 0.08);
  color: #657689;
  font-size: 13px;
}

.footer-records {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding: 42px 0 84px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-bottom {
    align-items: flex-start;
  }

  .footer-records {
    justify-content: flex-start;
  }
}

/* Unified launch polish v2 */
.site-header,
.home-header {
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.06);
}

.site-header-polished .site-nav {
  gap: 18px;
}

.site-header-polished .site-nav a {
  position: relative;
  padding: 6px 0;
  font-weight: 700;
}

.site-header-polished .site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-header-polished .site-nav a:hover::after,
.site-header-polished .site-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.section-head {
  align-items: end;
  gap: 18px;
}

.section-head > p,
.section-copy {
  max-width: 62ch;
}

.home-service-card,
.service-card,
.sidebar-card,
.article-shell,
.quote-panel,
.note-panel,
.contact-panel,
.list-card {
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.home-service-card:hover,
.service-card:hover,
.list-card:hover {
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.1);
}

.site-footer {
  padding-top: 72px;
  padding-bottom: 28px;
}

.footer-grid {
  grid-template-columns: minmax(280px, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.footer-brand .brand {
  margin-bottom: 18px;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links span {
  color: rgba(232, 239, 249, 0.78);
  line-height: 1.75;
}

.footer-bottom {
  align-items: start;
  gap: 16px;
}

.footer-records {
  max-width: 780px;
  justify-content: flex-end;
}

.mobile-cta a,
.floating-tools a,
.home-side-float a {
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
}

@media (max-width: 1080px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header-polished .site-nav a::after {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-records {
    justify-content: flex-start;
  }
}

/* Content hub enhancements */
.topic-hub-section {
  padding-top: 28px;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.topic-card {
  padding: 24px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
  display: grid;
  gap: 14px;
}

.topic-card strong {
  font-size: 21px;
  line-height: 1.35;
}

.topic-card p {
  margin: 0;
  color: var(--muted);
}

.topic-links,
.insight-links {
  display: grid;
  gap: 10px;
}

.topic-links a,
.insight-links a {
  color: var(--brand-deep);
  font-weight: 700;
}

.topic-links a:hover,
.insight-links a:hover {
  color: var(--brand);
}

.service-insight-hub .topic-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.service-insight-panel,
.service-link-panel {
  padding: 26px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
}

.service-insight-panel h3,
.service-link-panel h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.service-insight-panel p,
.service-link-panel p {
  margin: 0 0 16px;
  color: var(--muted);
}

.insight-links a,
.service-link-panel .service-related-strip a {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 8px;
  background: #f5f7fb;
  display: flex;
  align-items: center;
}

.article-body h2[id] {
  scroll-margin-top: 100px;
}

@media (max-width: 980px) {
  .topic-grid,
  .service-insight-hub .topic-grid {
    grid-template-columns: 1fr;
  }
}

/* CMS structure polish */
.home-topic-board {
  padding: 0 0 84px;
}

.home-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.home-topic-card {
  padding: 24px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  display: grid;
  gap: 14px;
}

.home-topic-card strong {
  font-size: 22px;
  line-height: 1.35;
}

.home-topic-card p,
.filter-row-note {
  margin: 0;
  color: var(--muted);
}

.filter-row-wrap {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

.filter-row-note strong {
  color: var(--ink);
}

.list-card.is-hidden {
  display: none;
}

.article-quick-nav {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  color: var(--muted);
}

.article-quick-nav span {
  font-weight: 700;
  color: var(--ink);
}

.article-quick-nav a {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f5f7fb;
  color: var(--brand-deep);
  display: inline-flex;
  align-items: center;
  font-weight: 700;
}

.article-quick-nav a:hover {
  background: #eaf1ff;
  color: var(--brand);
}

@media (max-width: 1080px) {
  .home-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .home-topic-grid {
    grid-template-columns: 1fr;
  }

  .article-quick-nav {
    align-items: stretch;
  }
}
