﻿:root {
  --hj-navy: #0b1d36;
  --hj-navy-mid: #132a4a;
  --hj-navy-soft: #1b3a5f;
  --hj-gold: #c9a227;
  --hj-gold-deep: #a8841a;
  --hj-gold-soft: #f3e6bf;
  --hj-ink: #121826;
  --hj-muted: #5b6577;
  --hj-line: #e3e7ef;
  --hj-bg: #f1f4f8;
  --hj-white: #ffffff;
  --hj-shadow: 0 20px 48px rgba(11, 29, 54, 0.12);
  --hj-radius: 10px;
  --hj-serif: "Noto Serif SC", "Songti SC", Georgia, serif;
  --hj-sans: "Noto Sans SC", "Outfit", "PingFang SC", "Microsoft YaHei", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.hj-page {
  margin: 0;
  font-family: var(--hj-sans);
  color: var(--hj-ink);
  background:
    radial-gradient(ellipse 70% 40% at 0% 0%, rgba(201, 162, 39, 0.07), transparent 55%),
    radial-gradient(ellipse 60% 45% at 100% 8%, rgba(27, 58, 95, 0.08), transparent 50%),
    linear-gradient(180deg, #eef2f7 0%, var(--hj-bg) 40%, #e8edf4 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.hj-shell {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.hj-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 100;
  pointer-events: none;
}
.hj-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--hj-navy), var(--hj-gold));
}

.hj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.hj-btn:hover { transform: translateY(-2px); }
.hj-btn:active { transform: translateY(0); }
.hj-btn-sm { min-height: 36px; padding: 0 14px; font-size: 14px; }
.hj-btn-gold {
  background: linear-gradient(135deg, #e0b83a 0%, var(--hj-gold) 48%, var(--hj-gold-deep) 100%);
  color: var(--hj-navy);
  box-shadow: 0 10px 24px rgba(201, 162, 39, 0.35);
}
.hj-btn-gold:hover {
  background: linear-gradient(135deg, #edd06a 0%, #d4ad2e 50%, #b8921c 100%);
}
.hj-btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
.hj-btn-outline {
  background: #fff;
  color: var(--hj-navy-mid);
  border-color: var(--hj-line);
}
.hj-btn-outline:hover { border-color: var(--hj-gold); color: var(--hj-gold-deep); }

.hj-eyebrow {
  margin: 0 0 8px;
  color: var(--hj-gold-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hj-section-head {
  margin-bottom: 28px;
  max-width: 720px;
}
.hj-section-head h2 {
  margin: 0;
  font-family: var(--hj-serif);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
  color: var(--hj-navy);
}
.hj-section-head-light .hj-eyebrow { color: var(--hj-gold-soft); }
.hj-section-head-light h2 { color: #fff; }

/* Header */
.hj-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(241, 244, 248, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.hj-header.is-solid {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--hj-line);
  box-shadow: 0 8px 24px rgba(11, 29, 54, 0.06);
}
.hj-header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  position: relative;
}
.hj-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.hj-brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, var(--hj-navy) 0%, var(--hj-navy-soft) 60%),
    linear-gradient(45deg, transparent 48%, var(--hj-gold) 48%, var(--hj-gold) 62%, transparent 62%);
  background-blend-mode: normal;
  box-shadow: inset 0 0 0 2px rgba(201, 162, 39, 0.55);
  position: relative;
  flex: 0 0 auto;
}
.hj-brand-mark::after {
  content: "";
  position: absolute;
  inset: 9px 9px 9px 11px;
  border-left: 2px solid var(--hj-gold);
  border-bottom: 2px solid var(--hj-gold);
  opacity: 0.9;
}
.hj-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.hj-brand-text strong {
  font-size: 16px;
  font-family: var(--hj-serif);
  color: var(--hj-navy);
}
.hj-brand-text em {
  font-style: normal;
  color: var(--hj-muted);
  font-size: 12px;
}
.hj-header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hj-header-phone {
  color: var(--hj-navy-mid);
  font-weight: 700;
  font-size: 14px;
}
.hj-nav {
  display: none;
  gap: 18px;
  align-items: center;
}
.hj-nav a { color: var(--hj-muted); font-size: 14px; font-weight: 500; }
.hj-nav a:hover { color: var(--hj-navy); }
.hj-nav-cta {
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--hj-gold-soft);
  color: var(--hj-gold-deep) !important;
  border: 1px solid #e8d48a;
  font-weight: 700;
}
.hj-nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.hj-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--hj-navy);
  margin-inline: auto;
}
.hj-nav.open {
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
  top: 64px;
  flex-direction: column;
  align-items: stretch;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--hj-line);
  border-radius: 12px;
  box-shadow: var(--hj-shadow);
  z-index: 60;
}

/* Hero — left aligned, navy mask (vs qifu center + teal) */
/* Hero: forest 模板同款 — 主图按真实比例铺满宽度，文案居中叠层 */
.hj-hero {
  position: relative;
  width: 100%;
  min-height: 0;
  max-height: none;
  display: block;
  color: #fff;
  overflow: hidden;
  padding-bottom: 0;
  background: var(--hj-navy);
  line-height: 0;
}
.hj-hero-media {
  position: relative;
  z-index: 0;
  width: 100%;
  will-change: transform;
  background: linear-gradient(165deg, #0b1d36 0%, #132a4a 48%, #0a1628 100%);
}
.hj-hero-media > .hj-hero-shot {
  position: relative;
  width: 100%;
  display: block;
  background: linear-gradient(165deg, #0b1d36 0%, #132a4a 48%, #0a1628 100%);
}
.hj-hero-media > .hj-hero-shot ~ .hj-hero-shot { display: none; }
.hj-hero-media > .hj-hero-shot:not(.hj-hero-shot--empty) ~ .hj-hero-shot--empty { display: none; }
.hj-hero-shot img[data-hj-hero-img] {
  position: relative;
  inset: auto;
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center center;
  transform: none;
  transform-origin: center center;
  transition: opacity .35s ease;
}
.hj-hero-shot img.is-fading { opacity: 0; }
.hj-hero-shot--empty {
  min-height: clamp(360px, 56vh, 70vh);
}
.hj-hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(11, 29, 54, 0.28) 0%, rgba(11, 29, 54, 0.1) 40%, rgba(11, 29, 54, 0.58) 78%, rgba(11, 29, 54, 0.82) 100%),
    radial-gradient(ellipse at 70% 20%, rgba(201, 162, 39, 0.14), transparent 45%);
}
.hj-hero-stage {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: auto;
  height: auto;
  margin: 0;
  padding: 88px 24px 40px;
  line-height: 1.65;
  transform: none;
  pointer-events: none;
}
.hj-hero-stage .hj-btn,
.hj-hero-stage a { pointer-events: auto; }
.hj-hero-brand {
  margin: 0 0 16px;
  font-family: var(--hj-serif);
  font-size: clamp(34px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.01em;
  max-width: 100%;
  color: #f4f7fb;
  text-shadow: 0 10px 36px rgba(5, 14, 28, 0.45);
  border: 0;
  padding: 0;
  display: block;
}
.hj-hero-title {
  margin: 0 auto 16px;
  max-width: 22ch;
  font-family: var(--hj-sans);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: rgba(244, 247, 251, 0.92);
  text-shadow: 0 6px 22px rgba(5, 14, 28, 0.35);
}
.hj-hero-sub {
  margin: 0 auto 22px;
  max-width: 40ch;
  color: var(--hj-gold-soft);
  font-size: clamp(14px, 1.6vw, 17px);
  letter-spacing: 0.06em;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(11, 29, 54, 0.42);
  border: 1px solid rgba(201, 162, 39, 0.45);
  box-shadow: 0 8px 24px rgba(5, 14, 28, 0.22);
  backdrop-filter: blur(10px);
}
.hj-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.hj-hero-actions .hj-btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(8px);
  box-shadow: none;
  font-weight: 700;
}
.hj-hero-actions .hj-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff !important;
}

/* Visual film strip under hero（forest 同款图集） */
.hj-visuals {
  padding: 36px 0 28px;
  background: #f7f8fb;
  border-bottom: 1px solid var(--hj-line);
  overflow: hidden;
}
.hj-visuals ~ .hj-visuals { display: none; }
.hj-visuals.is-single { display: none; }
.hj-visuals-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.hj-visuals-head h2 {
  margin: 0;
  font-family: var(--hj-serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--hj-navy);
}
.hj-visuals-head > p {
  margin: 0;
  color: var(--hj-muted);
  font-size: 13px;
}
.hj-visual-rail,
.hj-film-rail {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.hj-film-track {
  display: flex;
  width: max-content;
  gap: 16px;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}
.hj-visual-rail .hj-film-track,
.hj-film-rail .hj-film-track {
  animation: hj-film-scroll var(--hj-duration, 40s) linear infinite;
  animation-delay: 0s;
}
.hj-visual-rail .hj-film-track { padding: 6px 0 12px; }
.hj-film-rail .hj-film-track { padding: 10px 0 18px; }
.hj-visual-rail:hover .hj-film-track,
.hj-film-rail:hover .hj-film-track,
.hj-visual-rail.is-paused .hj-film-track,
.hj-film-rail.is-paused .hj-film-track {
  animation-play-state: paused;
}
@keyframes hj-film-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-1 * var(--hj-shift, 50%)), 0, 0); }
}
.hj-visual-rail.is-sparse,
.hj-film-rail.is-sparse {
  overflow: visible;
  mask-image: none;
  -webkit-mask-image: none;
}
.hj-visual-rail.is-sparse .hj-film-track,
.hj-film-rail.is-sparse .hj-film-track {
  width: auto;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  justify-content: center;
  flex-wrap: wrap;
  animation: none !important;
  will-change: auto;
}
.hj-visual-rail.is-sparse .hj-visual-card {
  width: min(280px, 42vw);
}
.hj-visual-card {
  flex: 0 0 auto;
  width: min(220px, 62vw);
  border: 2px solid transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, #1b3a5f 0%, #0b1d36 100%);
  aspect-ratio: 16 / 10;
  box-shadow: 0 12px 28px rgba(11, 29, 54, 0.12);
  transition: transform .3s ease, box-shadow .3s ease, border-color .25s ease, opacity .25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hj-visual-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(11, 29, 54, 0.18);
}
.hj-visual-card.is-active {
  border-color: var(--hj-gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.22), 0 18px 36px rgba(11, 29, 54, 0.16);
  transform: translateY(-4px);
}
.hj-visual-card img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  pointer-events: none;
}

[data-hj-enter] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
}
body.is-ready [data-hj-enter="1"] { opacity: 1; transform: none; transition-delay: .05s; }
body.is-ready [data-hj-enter="2"] { opacity: 1; transform: none; transition-delay: .14s; }
body.is-ready [data-hj-enter="3"] { opacity: 1; transform: none; transition-delay: .23s; }
body.is-ready [data-hj-enter="4"] { opacity: 1; transform: none; transition-delay: .32s; }
body.is-ready [data-hj-enter="5"] { opacity: 1; transform: none; transition-delay: .4s; }

[data-hj-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-hj-reveal].is-in { opacity: 1; transform: none; }
[data-hj-stagger] > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .45s ease, transform .45s ease;
}
[data-hj-stagger].is-in > *:nth-child(1) { opacity: 1; transform: none; transition-delay: .05s; }
[data-hj-stagger].is-in > *:nth-child(2) { opacity: 1; transform: none; transition-delay: .12s; }
[data-hj-stagger].is-in > *:nth-child(3) { opacity: 1; transform: none; transition-delay: .19s; }
[data-hj-stagger].is-in > *:nth-child(4) { opacity: 1; transform: none; transition-delay: .26s; }
[data-hj-stagger].is-in > *:nth-child(5) { opacity: 1; transform: none; transition-delay: .33s; }
[data-hj-stagger].is-in > *:nth-child(n+6) { opacity: 1; transform: none; transition-delay: .4s; }

/* About */
.hj-about { padding: 72px 0 56px; }
.hj-about-head {
  margin: 0 0 22px;
}
.hj-about-head h2 {
  margin: 0;
  font-family: var(--hj-serif);
  font-size: clamp(26px, 3vw, 36px);
  color: var(--hj-navy);
}
/* 整块底板：左文右图同框，天然齐平 */
.hj-about-board {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--hj-line);
  border-radius: 16px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 16px 40px rgba(11, 29, 54, 0.06);
}
.hj-about-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 22px 22px 18px;
  border-left: 3px solid var(--hj-gold);
}
.hj-about-lead-wrap {
  flex: 1 1 auto;
  min-height: 0;
}
.hj-about-lead {
  margin: 0;
  color: #334155;
  font-size: 15px;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hj-about-lead-wrap.is-expanded .hj-about-lead {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}
.hj-link-more {
  display: none;
  margin-top: 10px;
  border: 0;
  background: transparent;
  color: var(--hj-gold-deep);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  padding: 0;
}
.hj-about-lead-wrap.is-truncatable .hj-link-more,
.hj-proof-card.is-truncatable .hj-link-more,
.hj-endorse-card.is-truncatable .hj-link-more {
  display: inline-flex;
}
.hj-about-foot {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed rgba(11, 29, 54, 0.12);
  display: grid;
  gap: 6px;
}
.hj-about-phone {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
  color: #475569;
}
.hj-about-phone a,
.hj-about-meta a,
.hj-header-phone {
  color: var(--hj-navy-mid) !important;
  font-weight: 700;
}
.hj-about-meta {
  margin: 0;
  color: var(--hj-muted);
  font-size: 13px;
  word-break: break-all;
}
.hj-about-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  background: linear-gradient(180deg, #fbfcfe 0%, #f3f5f9 100%);
  border-top: 1px solid var(--hj-line);
}
.hj-about-photo {
  display: block;
  width: 100%;
  height: auto !important;
  max-height: min(240px, 52vw);
  min-height: 0;
  flex: 0 1 auto;
  margin: auto 0;
  object-fit: contain !important;
  object-position: center center !important;
  background: transparent !important;
}
.hj-about-card {
  position: relative;
  margin: 0;
  margin-top: auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background:
    linear-gradient(105deg, #0b1d36 0%, #132a4a 58%, #1a3558 100%);
  border: 0;
  border-top: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 0;
  box-shadow: none;
}
.hj-about-card-logo {
  width: auto;
  height: 28px;
  max-width: 88px;
  padding: 6px 8px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: #fff;
}
.hj-about-card-text {
  min-width: 0;
  flex: 1 1 auto;
}
.hj-about-card strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  letter-spacing: 0.01em;
}
.hj-about-card span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
  color: rgba(237, 208, 106, 0.92);
  font-size: 12px;
  font-weight: 600;
}
.hj-about-card span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hj-gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.22);
  flex: 0 0 auto;
}

/* Brands */
.hj-brands { padding: 56px 0; }
.hj-brand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.hj-brand-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 16px;
  background: #fff;
  border: 1px solid var(--hj-line);
  border-radius: var(--hj-radius);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.hj-brand-tile:hover {
  border-color: rgba(201, 162, 39, 0.55);
  box-shadow: 0 12px 28px rgba(11, 29, 54, 0.08);
  transform: translateY(-2px);
}
.hj-brand-mono {
  width: 10px;
  height: 28px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--hj-gold), var(--hj-navy-soft));
  flex: 0 0 auto;
}
.hj-brand-tile strong {
  font-size: 16px;
  color: var(--hj-navy);
}

/* Services */
.hj-services { padding: 56px 0; }
.hj-service-list { display: grid; gap: 10px; }
.hj-service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-radius: var(--hj-radius);
  background: #fff;
  border: 1px solid var(--hj-line);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.hj-service-item:hover {
  border-color: var(--hj-gold);
  box-shadow: 0 12px 28px rgba(201, 162, 39, 0.14);
}
.hj-service-item span { font-weight: 700; color: var(--hj-navy); }
.hj-service-item em {
  font-style: normal;
  color: var(--hj-gold-deep);
  font-size: 13px;
  font-weight: 700;
}

/* Matrix product */
.hj-matrix {
  padding: 72px 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(201, 162, 39, 0.18), transparent 35%),
    linear-gradient(155deg, #0b1d36 0%, #132a4a 48%, #0a1628 100%);
  color: #fff;
}
.hj-product-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}
/* 默认 / 横图：图上字下，图片按真实比例完整展示 */
.hj-product-media {
  position: relative;
  min-height: 0;
  background: linear-gradient(160deg, #f4f7fb 0%, #e8edf4 100%);
  overflow: hidden;
}
.hj-product-media img {
  display: block;
  position: static;
  width: 100%;
  height: auto;
  max-height: min(52vw, 420px);
  min-height: 0;
  padding: 16px 18px;
  box-sizing: border-box;
  object-fit: contain;
  object-position: center center;
}
.hj-product-media-glow {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(11, 29, 54, 0.18));
  pointer-events: none;
}
.hj-product-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px 22px 22px;
}
.hj-product-kicker {
  margin: 0 0 8px;
  color: var(--hj-gold-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.hj-product-copy h3 {
  margin: 0 0 10px;
  font-family: var(--hj-serif);
  font-size: clamp(24px, 3vw, 32px);
}
.hj-product-lead,
.hj-product-rich {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.7;
}
/* 横图上下布局：文案多展示几行 */
.hj-product-lead {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hj-product-rich {
  display: none;
}
.hj-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
}
.hj-product-actions .hj-btn-outline {
  background: rgba(255, 255, 255, 0.95);
}

/* Essay / proof */
.hj-essay,
.hj-proof,
.hj-coverage { padding: 64px 0; }
.hj-essay-body {
  padding: 28px 26px;
  background: #fff;
  border: 1px solid var(--hj-line);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(11, 29, 54, 0.05);
}
.hj-essay-body p {
  margin: 0 0 16px;
  color: #334155;
  font-size: 15px;
  line-height: 1.9;
}
.hj-essay-body p:last-child { margin-bottom: 0; }
.hj-proof-alt { background: rgba(255, 255, 255, 0.45); }
.hj-proof-card {
  padding: 22px 22px 18px;
  background: #fff;
  border: 1px solid var(--hj-line);
  border-radius: 12px;
  border-top: 3px solid var(--hj-navy);
}
.hj-proof-body {
  margin: 0;
  color: #334155;
  font-size: 15px;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hj-proof-card.is-expanded .hj-proof-body {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

/* Endorse */
.hj-endorse {
  padding: 72px 0;
  background:
    linear-gradient(165deg, #0b1d36 0%, #163556 42%, #0f243f 100%);
  color: #fff;
}
.hj-endorse-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  counter-reset: hj-endorse;
}
.hj-endorse-card {
  position: relative;
  padding: 22px 22px 20px 64px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  counter-increment: hj-endorse;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.hj-endorse-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(201, 162, 39, 0.4);
}
.hj-endorse-index {
  position: absolute;
  left: 18px;
  top: 22px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(201, 162, 39, 0.18);
  border: 1px solid rgba(201, 162, 39, 0.45);
  color: var(--hj-gold-soft);
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hj-endorse-index::before {
  content: counter(hj-endorse, decimal-leading-zero);
}
.hj-endorse-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
}
.hj-endorse-body {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hj-endorse-card.is-expanded .hj-endorse-body {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}
.hj-endorse-more { color: var(--hj-gold-soft) !important; }

/* Coverage */
.hj-city-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hj-city-cloud a {
  padding: 10px 16px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--hj-line);
  color: var(--hj-navy-mid);
  font-weight: 600;
  font-size: 14px;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.hj-city-cloud a:hover {
  border-color: var(--hj-gold);
  background: var(--hj-gold-soft);
  color: var(--hj-navy);
}

/* CTA */
.hj-cta { padding: 64px 0 80px; }
.hj-cta-inner {
  padding: 40px 28px;
  border-radius: 16px;
  background:
    linear-gradient(120deg, rgba(11, 29, 54, 0.96), rgba(19, 42, 74, 0.92)),
    linear-gradient(90deg, var(--hj-navy), var(--hj-navy-soft));
  color: #fff;
  text-align: center;
  box-shadow: var(--hj-shadow);
  border: 1px solid rgba(201, 162, 39, 0.28);
}
.hj-cta-inner .hj-eyebrow { color: var(--hj-gold-soft); }
.hj-cta-inner h2 {
  margin: 0 0 10px;
  font-family: var(--hj-serif);
  font-size: clamp(24px, 3vw, 34px);
}
.hj-cta-inner > p {
  margin: 0 auto 22px;
  max-width: 36em;
  color: rgba(255, 255, 255, 0.82);
}
.hj-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.hj-cta .hj-btn-ghost,
.hj-cta-actions .hj-btn-ghost {
  background: #fff;
  color: var(--hj-navy) !important;
  border-color: #fff;
  font-weight: 800;
}
.hj-cta-inner > .hj-eyebrow { color: var(--hj-gold-soft); }
.hj-cta-inner > h2 {
  margin: 0 0 10px;
  font-family: var(--hj-serif);
  font-size: clamp(24px, 3vw, 34px);
  color: #fff;
}
.hj-cta-inner > p {
  margin: 0 auto 22px;
  max-width: 36em;
  color: rgba(255, 255, 255, 0.82);
}
.hj-section-head .hj-eyebrow { margin-bottom: 8px; }
.hj-section-head-light .hj-eyebrow { color: var(--hj-gold-soft) !important; }

/* Dock */
.hj-dock {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  width: min(360px, calc(100vw - 24px));
}
.hj-dock.is-collapsed .hj-dock-panel { display: none; }
.hj-dock-launch {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--hj-navy);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(11, 29, 54, 0.35);
}
.hj-dock.is-collapsed .hj-dock-launch { display: inline-flex; }
.hj-dock-launch-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hj-gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.3);
}
.hj-dock-panel {
  background: #fff;
  border: 1px solid var(--hj-line);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(11, 29, 54, 0.22);
  overflow: hidden;
  border-top: 3px solid var(--hj-gold);
}
.hj-dock-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(180deg, #f8f5ea, #fff);
  border-bottom: 1px solid var(--hj-line);
}
.hj-dock-kicker {
  margin: 0 0 4px;
  color: var(--hj-gold-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.hj-dock-title {
  font-size: 16px;
  color: var(--hj-navy);
}
.hj-dock-close {
  border: 0;
  background: transparent;
  color: var(--hj-muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}
.hj-dock-body { padding: 14px 16px 16px; }
.hj-dock-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.hj-dock-chip {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--hj-gold-soft);
  color: var(--hj-gold-deep);
  font-size: 12px;
  font-weight: 700;
}
.hj-dock-phone {
  color: var(--hj-navy) !important;
  font-weight: 800;
  font-size: 15px;
}
.hj-dock-hint {
  margin: 0 0 12px;
  color: var(--hj-muted);
  font-size: 13px;
}
.hj-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}
.hj-dock-form input,
.hj-dock-form textarea {
  width: 100%;
  border: 1px solid var(--hj-line);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  background: #f8fafc;
}
.hj-dock-form textarea { resize: vertical; margin-bottom: 10px; }
.hj-dock-form button[type="submit"] {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #e0b83a, var(--hj-gold-deep));
  color: var(--hj-navy);
  font-weight: 800;
  cursor: pointer;
}
.hj-dock.is-flash .hj-dock-panel {
  animation: hj-flash .9s ease;
}
@keyframes hj-flash {
  0%, 100% { box-shadow: 0 24px 60px rgba(11, 29, 54, 0.22); }
  40% { box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.45), 0 24px 60px rgba(11, 29, 54, 0.22); }
}

.hj-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(12px);
  z-index: 120;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--hj-navy);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.hj-toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.hj-toast.is-err { background: #9f1239; }
.hj-toast.is-ok { background: var(--hj-navy-mid); border: 1px solid var(--hj-gold); }

/* Footer -- forest-style legal lines */
.hj-footer {
  padding: 36px 0 48px;
  background: var(--hj-navy);
  color: rgba(255, 255, 255, 0.78);
}
.hj-footer-legal {
  max-width: 920px;
}
.hj-footer-line {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}
.hj-footer-line:last-child { margin-bottom: 0; }
.hj-footer-icp {
  opacity: 0.72;
  font-size: 12px;
}
.hj-footer a { color: var(--hj-gold-soft); font-weight: 600; }
.hj-footer a[href^="tel:"] { color: #f5e6a8 !important; }
.hj-footer-inner {
  display: grid;
  gap: 18px;
}
.hj-footer strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 16px;
}
.hj-footer p { margin: 0 0 6px; font-size: 13px; }


@media (min-width: 768px) {
  .hj-nav-toggle { display: none; }
  .hj-nav {
    display: flex;
    margin-left: auto;
  }
  .hj-header-actions { margin-left: 0; }
  .hj-about-board {
    grid-template-columns: minmax(0, 1.28fr) minmax(260px, 0.72fr);
    align-items: stretch;
  }
  .hj-about-copy {
    padding: 26px 28px 20px;
  }
  .hj-about-visual {
    border-top: 0;
    border-left: 1px solid var(--hj-line);
  }
  .hj-about-photo {
    max-height: 260px;
    padding: 12px 14px 8px;
  }
  .hj-brand-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  /* 横图：桌面仍上下排，图片完整适配 */
  .hj-product-card.is-landscape .hj-product-media img {
    max-height: min(46vh, 460px);
    padding: 22px 28px;
  }
  .hj-product-card.is-landscape .hj-product-copy {
    padding: 28px 28px 26px;
  }
  .hj-product-card.is-landscape .hj-product-lead {
    -webkit-line-clamp: 10;
  }
  /* 竖图：左图右文，文字随竖图高度完整展示 */
  .hj-product-card.is-portrait {
    grid-template-columns: minmax(220px, 0.88fr) minmax(0, 1.12fr);
    align-items: stretch;
    min-height: 440px;
  }
  .hj-product-card.is-portrait .hj-product-media {
    min-height: 100%;
    align-self: stretch;
  }
  .hj-product-card.is-portrait .hj-product-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    padding: 18px 16px;
    object-fit: contain;
  }
  .hj-product-card.is-portrait .hj-product-copy {
    padding: 28px 26px 24px;
  }
  .hj-product-card.is-portrait .hj-product-lead {
    -webkit-line-clamp: 14;
  }
  .hj-product-copy {
    padding: 28px 26px 24px;
  }
  .hj-product-actions {
    margin-top: auto;
  }
  .hj-endorse-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .hj-hero-stage { padding: 100px 24px 48px; }
  .hj-header-inner { min-height: 70px; }
}

@media (max-width: 767px) {
  .hj-hero-brand {
    font-size: clamp(28px, 8vw, 44px);
    white-space: normal;
  }
  .hj-hero-stage {
    padding: 56px 20px 32px;
  }
  .hj-visuals {
    padding: 28px 0 22px;
  }
  .hj-visuals-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .hj-visual-card {
    width: min(200px, 70vw);
  }
  .hj-visual-rail.is-sparse .hj-visual-card {
    width: min(220px, 78vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hj-film-track {
    animation: none !important;
  }
  [data-hj-enter] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---- aliases from qifu HTML structure ---- */
.hj-btn-solid {
  background: linear-gradient(135deg, #e0b83a 0%, var(--hj-gold) 48%, var(--hj-gold-deep) 100%);
  color: var(--hj-navy);
  box-shadow: 0 10px 24px rgba(201, 162, 39, 0.35);
}
.hj-btn-solid:hover {
  background: linear-gradient(135deg, #edd06a 0%, #d4ad2e 50%, #b8921c 100%);
}
.hj-btn-hot,
.hj-btn-hot.hj-btn-solid {
  background: linear-gradient(135deg, #e0b83a 0%, var(--hj-gold) 48%, var(--hj-gold-deep) 100%);
  color: var(--hj-navy);
}
.hj-header-actions .hj-btn {
  background: linear-gradient(135deg, #e0b83a, var(--hj-gold-deep));
  color: var(--hj-navy);
  border-color: transparent;
}
.hj-about-logo-only {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 280px;
  padding: 32px;
  background: linear-gradient(145deg, #132a4a, #0b1d36);
}
.hj-about-logo-only img {
  max-width: 200px;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  background: transparent;
}
.hj-assurance { padding: 64px 0; }
.hj-assurance-grid { display: grid; gap: 14px; }
.hj-assurance-card {
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--hj-line);
  border-radius: 12px;
  border-left: 3px solid var(--hj-gold);
  box-shadow: 0 8px 24px rgba(11, 29, 54, 0.04);
}
.hj-assurance-card h3 {
  margin: 0 0 10px;
  color: var(--hj-navy);
  font-family: var(--hj-serif);
}
.hj-assurance-card p {
  margin: 0;
  color: #334155;
  font-size: 15px;
  line-height: 1.8;
}
.hj-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 18px;
}
.hj-link-row a {
  color: rgba(255,255,255,.7);
  font-size: 13px;
}
.hj-link-row a:hover { color: var(--hj-gold-soft); }

/* InquiryFormRenderService default markup */
.hj-dock-form .zctzq-inquiry-form {
  display: grid;
  gap: 10px;
}
.hj-dock-form .zctzq-inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.hj-dock-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hj-dock-form .form-field-wide {
  grid-column: 1 / -1;
}
.hj-dock-form .form-field label {
  font-size: 12px;
  font-weight: 700;
  color: var(--hj-muted);
}
.hj-dock-form .zctzq-inquiry-form input,
.hj-dock-form .zctzq-inquiry-form select,
.hj-dock-form .zctzq-inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--hj-line);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  background: #f8fafc;
}
.hj-dock-form .zctzq-inquiry-form button[type="submit"] {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #e0b83a, var(--hj-gold-deep));
  color: var(--hj-navy);
  font-weight: 800;
  cursor: pointer;
}
.hj-cta .hj-btn-solid {
  background: linear-gradient(135deg, #e0b83a, var(--hj-gold-deep));
  color: var(--hj-navy);
}
.hj-matrix .hj-btn-solid {
  background: linear-gradient(135deg, #e0b83a, var(--hj-gold-deep));
  color: var(--hj-navy);
}
.hj-matrix .hj-btn-ghost {
  background: #fff;
  color: var(--hj-navy) !important;
  border-color: #fff;
}

.hj-brand-logo {
  width: auto;
  height: 36px;
  max-width: 140px;
  object-fit: contain;
  object-position: left center;
  flex: 0 0 auto;
  border-radius: 0;
  background: transparent;
}

/* === image fit / empty solid (auto) === */
.hj-hero-media,
.hj-hero-slide,
.hj-hero-shot {
  background: linear-gradient(165deg, #0b1d36 0%, #132a4a 48%, #0a1628 100%) !important;
}
.hj-about-photo,
.hj-film-media,
.hj-film-card,
.hj-product-media,
.product-gallery-item {
  background: #e8edf4 !important;
}
.hj-visual-card {
  background: linear-gradient(145deg, #1b3a5f 0%, #0b1d36 100%) !important;
}
.hj-about-photo {
  background: transparent !important;
  height: auto !important;
  max-height: min(240px, 52vw) !important;
  object-fit: contain !important;
  object-position: center center !important;
}
@media (min-width: 768px) {
  .hj-about-photo {
    max-height: 260px !important;
  }
}
.hj-about-card-logo {
  width: auto !important;
  height: 28px !important;
  max-width: 88px !important;
  padding: 6px 8px;
  object-fit: contain !important;
  object-position: center !important;
  flex: 0 0 auto !important;
  border-radius: 8px !important;
  background: #fff !important;
  filter: none;
  opacity: 1;
}
.hj-hero-slide img[data-hj-hero-img],
.hj-hero-shot img[data-hj-hero-img] {
  object-fit: cover !important;
  object-position: center center !important;
  width: 100% !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  background: transparent;
}
.hj-about-photo,
.hj-film-media img,
.hj-visual-card img,
.hj-film-card img,
.hj-product-media img,
.product-gallery-item img {
  object-fit: contain !important;
  object-position: center center;
  background: transparent;
  max-width: 100%;
}
.hj-hero-slide--empty,
.hj-hero-shot--empty,
.hj-media-empty,
.hj-product-media--empty,
.product-gallery-item--empty {
  background: linear-gradient(145deg, #e8edf4 0%, #0b1d36 100%) !important;
  min-height: 220px;
}

.hj-alliance { padding: 56px 0 72px; background: #f7f8fb; }
.hj-alliance-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.hj-alliance-grid a {
  display: block;
  padding: 10px 8px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(11, 29, 54, .12);
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.35;
  color: #334155;
  text-decoration: none;
}
.hj-alliance-grid a:hover { border-color: rgba(201, 162, 39, .45); color: #0b1d36; }
@media (max-width: 900px) { .hj-alliance-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .hj-alliance-grid { grid-template-columns: repeat(2, 1fr); } }
