/* 易全球信用卡管家服务中心官网 */
:root {
  --sc-blue: #0077ff;
  --sc-blue-deep: #0047bb;
  --sc-blue-soft: rgba(0, 119, 255, 0.12);
  --sc-gold: #c9a227;
  --sc-gold-soft: rgba(201, 162, 39, 0.18);
  --sc-bg: #070b14;
  --sc-bg2: #0c1424;
  --sc-surface: rgba(16, 28, 52, 0.92);
  --sc-border: rgba(0, 119, 255, 0.22);
  --sc-text: #f1f5f9;
  --sc-muted: #94a3b8;
  --sc-body: #dbe4f0;
  --sc-max: 1280px;
  --sc-font: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --sc-display: "Noto Serif SC", "Songti SC", serif;
  --sc-accent: "Sora", "Noto Sans SC", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sc-font);
  background: var(--sc-bg);
  color: var(--sc-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.25; font-weight: 700; }

.wrap {
  width: min(100% - 40px, var(--sc-max));
  margin-inline: auto;
}

/* Header */
.sc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(7, 11, 20, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sc-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px;
  flex-wrap: nowrap;
}

.sc-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  max-width: 220px;
}

.sc-brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  background: #fff;
}

.sc-brand__name {
  display: block;
  font-family: var(--sc-accent);
  font-size: clamp(16px, 4.2vw, 19px);
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sc-brand__sub {
  display: block;
  font-size: clamp(11px, 2.9vw, 13px);
  font-weight: 600;
  color: var(--sc-muted);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sc-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.sc-nav::-webkit-scrollbar { display: none; }

.sc-nav a {
  padding: 6px 8px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sc-body);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.sc-nav a:hover,
.sc-nav a.is-on {
  background: var(--sc-blue);
  color: #fff;
}

.sc-nav a.sc-nav__hot {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.25), rgba(0, 119, 255, 0.2));
  border: 1px solid rgba(201, 162, 39, 0.45);
  color: #f5e6a8;
}

.sc-nav a.sc-nav__hot:hover {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.4), rgba(0, 119, 255, 0.28));
  color: #ffe9a0;
  border-color: rgba(255, 215, 106, 0.65);
}
/* 当前页高亮：描边金，避免与顶栏实心 CTA「撞脸」重复 */
.sc-nav a.sc-nav__hot.is-on {
  background: rgba(201, 162, 39, 0.18);
  color: #ffe9a0;
  border-color: rgba(255, 215, 106, 0.85);
  box-shadow: inset 0 0 0 1px rgba(255, 215, 106, 0.25);
}

.sc-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sc-gold), #e8c547);
  color: #1a1408;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.28);
}

/* 中宽屏：藏副标题、再压导航间距，保证一行 */
@media (max-width: 1180px) {
  .sc-brand { max-width: 160px; }
  .sc-nav a { padding: 5px 6px; font-size: 13px; }
  .sc-header__cta { padding: 7px 12px; font-size: 13px; }
}

.sc-menu-btn {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border-radius: 10px;
  min-width: 36px;
  min-height: 36px;
  padding: 0 8px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

/* Hero */
.sc-hero {
  position: relative;
  overflow: hidden;
  min-height: min(92vh, 780px);
  display: flex;
  align-items: flex-end;
  padding: 120px 0 88px;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(0, 119, 255, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 10%, rgba(201, 162, 39, 0.18), transparent 50%),
    linear-gradient(165deg, #050914 0%, #0a1730 45%, #07101f 100%);
}

.sc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 20%, transparent 90%);
  pointer-events: none;
}

.sc-hero__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -80px;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 119, 255, 0.4), transparent 70%);
  filter: blur(20px);
  animation: scPulse 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.08); }
}

.sc-hero__content { position: relative; z-index: 1; max-width: 860px; }

.sc-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.45);
  background: var(--sc-gold-soft);
  color: #f5e6a8;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  animation: scFadeUp 0.8s ease both;
}

.sc-hero h1 {
  font-family: var(--sc-display);
  font-size: clamp(34px, 5.2vw, 56px);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  color: #fff;
  animation: scFadeUp 0.9s 0.08s ease both;
}

.sc-hero__lead {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  color: #e8f0ff;
  margin: 0 0 14px;
  animation: scFadeUp 0.9s 0.16s ease both;
}

.sc-hero__sub {
  margin: 0 0 32px;
  color: var(--sc-muted);
  font-size: 15px;
  max-width: 720px;
  animation: scFadeUp 0.9s 0.24s ease both;
}

.sc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: scFadeUp 0.9s 0.32s ease both;
}

@keyframes scFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.sc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.sc-btn:hover { transform: translateY(-2px); }

.sc-btn--primary {
  background: var(--sc-blue);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 119, 255, 0.35);
}

.sc-btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.sc-btn--gold {
  background: linear-gradient(135deg, var(--sc-gold), #e8c547);
  color: #1a1408;
}

/* Sections */
.sc-section {
  padding: 88px 0;
  position: relative;
}

.sc-section--alt {
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(0, 119, 255, 0.08), transparent 60%),
    var(--sc-bg2);
}

.sc-section__head {
  max-width: 760px;
  margin-bottom: 40px;
}

.sc-section__head h2 {
  font-family: var(--sc-display);
  font-size: clamp(26px, 3.4vw, 36px);
  margin-bottom: 14px;
}

.sc-section__head p {
  margin: 0;
  color: var(--sc-muted);
  font-size: 16px;
}

.sc-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--sc-gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sc-prose {
  color: var(--sc-body);
  font-size: 16px;
}

.sc-prose p { margin: 0 0 16px; }
.sc-prose strong { color: #fff; font-weight: 800; }

.sc-prose--lg { font-size: 17px; max-width: 820px; }

/* Grid cards */
.sc-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

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

.sc-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.sc-card {
  background: var(--sc-surface);
  border: 1px solid var(--sc-border);
  border-radius: 20px;
  padding: 24px 22px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.sc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 119, 255, 0.45);
  box-shadow: 0 18px 40px rgba(0, 40, 100, 0.35);
}

.sc-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--sc-blue-soft);
  color: var(--sc-blue);
  font-family: var(--sc-accent);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 14px;
}

.sc-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.sc-card p {
  margin: 0;
  color: var(--sc-muted);
  font-size: 14px;
}

.sc-card ul {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.sc-card li {
  position: relative;
  padding-left: 16px;
  color: var(--sc-body);
  font-size: 14px;
}

.sc-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sc-blue);
}

/* Slogan band */
.sc-slogan {
  padding: 56px 0;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(0, 71, 187, 0.35), rgba(201, 162, 39, 0.2)),
    #0a1528;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.sc-slogan p {
  margin: 0;
  font-family: var(--sc-display);
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* Industry matrix */
.sc-industries {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.sc-industry {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

a.sc-industry:hover {
  border-color: rgba(0, 119, 255, 0.45);
  background: rgba(0, 119, 255, 0.08);
  transform: translateY(-2px);
}

.sc-industry__go {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-size: 14px;
  font-weight: 800;
  color: var(--sc-gold);
}

/* 相互连接 */
.sc-related {
  padding: 64px 0 40px;
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(0, 119, 255, 0.1), transparent 60%),
    #080e1a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sc-related__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.sc-related__card {
  display: block;
  padding: 18px 16px;
  border-radius: 16px;
  background: var(--sc-surface);
  border: 1px solid var(--sc-border);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.sc-related__card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: 0 14px 32px rgba(0, 30, 80, 0.3);
}

.sc-related__card strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
  color: #fff;
}

.sc-related__card span {
  color: var(--sc-muted);
  font-size: 14px;
  line-height: 1.5;
}

.sc-related__hubs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sc-related__hubs a {
  font-size: 13px;
  font-weight: 800;
  color: var(--sc-gold);
}

.sc-related__hubs a:hover { color: #fff; }

.sc-footer__hub {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 22px;
}

.sc-footer__hub-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 119, 255, 0.35);
  background: rgba(0, 119, 255, 0.1);
  color: #cfe3ff;
  font-size: 14px;
  font-weight: 800;
}

.sc-footer__hub-btn--gold {
  border-color: rgba(201, 162, 39, 0.5);
  background: var(--sc-gold-soft);
  color: #f5e6a8;
}

.sc-footer__hub-btn:hover {
  background: var(--sc-blue);
  color: #fff;
  border-color: transparent;
}

@media (max-width: 900px) {
  .sc-related__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .sc-related__grid { grid-template-columns: 1fr; }
}

.sc-industry__idx {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--sc-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.sc-industry strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.sc-industry span {
  color: var(--sc-muted);
  font-size: 14px;
}

/* Feature list */
.sc-feature-list {
  display: grid;
  gap: 14px;
}

.sc-feature {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 22px;
  border-radius: 18px;
  background: var(--sc-surface);
  border: 1px solid var(--sc-border);
}

.sc-feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--sc-blue), var(--sc-blue-deep));
  font-family: var(--sc-accent);
  font-weight: 800;
  font-size: 14px;
  color: #fff;
}

.sc-feature h3 { font-size: 17px; margin-bottom: 6px; }
.sc-feature p { margin: 0; color: var(--sc-muted); font-size: 14px; }

/* Function blocks */
.sc-fn {
  margin-bottom: 28px;
  padding: 28px 26px;
  border-radius: 22px;
  background: var(--sc-surface);
  border: 1px solid var(--sc-border);
}

.sc-fn__title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 16px;
  margin-bottom: 16px;
}

.sc-fn__title h3 {
  font-family: var(--sc-display);
  font-size: 22px;
}

.sc-fn__tag {
  font-size: 13px;
  color: var(--sc-gold);
  font-weight: 700;
}

.sc-fn ol,
.sc-fn ul {
  display: grid;
  gap: 10px;
}

.sc-fn li {
  padding-left: 28px;
  position: relative;
  color: var(--sc-body);
  font-size: 15px;
}

.sc-fn ol li::before {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--sc-blue-soft);
  color: var(--sc-blue);
  font-size: 13px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.sc-fn ol { counter-reset: item; }

.sc-fn ul li::before {
  content: "·";
  position: absolute;
  left: 8px;
  color: var(--sc-gold);
  font-weight: 900;
}

.sc-callout {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--sc-gold-soft);
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: #f5e6a8;
  font-weight: 700;
  font-size: 14px;
}

/* Page hero (inner) */
.sc-page-hero {
  padding: 72px 0 48px;
  background:
    radial-gradient(ellipse 70% 80% at 10% 0%, rgba(0, 119, 255, 0.25), transparent 55%),
    linear-gradient(180deg, #0a1528, var(--sc-bg));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sc-page-hero h1 {
  font-family: var(--sc-display);
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 12px;
  color: #fff;
}

.sc-page-hero p {
  margin: 0;
  max-width: 720px;
  color: var(--sc-muted);
  font-size: 16px;
}

/* Contact */
.sc-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}

.sc-contact-card {
  padding: 28px;
  border-radius: 22px;
  background: var(--sc-surface);
  border: 1px solid var(--sc-border);
}

.sc-contact-card h3 {
  font-size: 18px;
  margin-bottom: 18px;
}

.sc-contact-row {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sc-contact-row:last-child { border-bottom: 0; }

.sc-contact-row span {
  font-size: 14px;
  color: var(--sc-muted);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.sc-contact-row strong {
  font-size: 16px;
  font-weight: 700;
}

.sc-qr-placeholder {
  aspect-ratio: 1;
  max-width: 220px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px dashed rgba(201, 162, 39, 0.5);
  background:
    linear-gradient(135deg, rgba(0, 119, 255, 0.12), rgba(201, 162, 39, 0.1));
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--sc-muted);
  font-size: 14px;
  padding: 20px;
}

/* 总部咨询表单 → VisaFranchise 后台 */
.sc-form {
  max-width: 560px;
  margin: 0 auto;
  padding: 22px;
  border-radius: 20px;
  background: var(--sc-surface, rgba(16, 28, 52, 0.92));
  border: 1px solid rgba(0, 119, 255, 0.22);
  text-align: left;
}
.sc-form label {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--sc-muted);
  margin-bottom: 6px;
}
.sc-form input,
.sc-form select,
.sc-form textarea {
  width: 100%;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font: inherit;
}
.sc-form textarea { min-height: 90px; resize: vertical; }
.sc-form__note { font-size: 14px; color: var(--sc-muted); margin-top: 8px; }
.sc-form__msg,
.ar-form__msg {
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 700;
  min-height: 1.2em;
  color: var(--sc-muted);
}
.sc-form__msg.is-ok,
.ar-form__msg.is-ok { color: #7dffd0; }
.sc-form__msg.is-err,
.ar-form__msg.is-err { color: #ff8a98; }

/* Reveal */
.sc-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.sc-reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Footer */
.sc-footer {
  padding: 48px 0 36px;
  background: #050910;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sc-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.sc-footer__brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
}

.sc-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 28px;
}

.sc-footer__nav a {
  font-size: 13px;
  color: var(--sc-muted);
  font-weight: 600;
}

.sc-footer__nav a:hover { color: #fff; }

.sc-footer__copy {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--sc-muted);
  font-size: 14px;
  line-height: 1.8;
}

.sc-footer__copy strong {
  display: block;
  color: var(--sc-body);
  font-size: 14px;
  margin-bottom: 4px;
}

/* Mobile */
@media (max-width: 980px) {
  .sc-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .sc-grid-3 { grid-template-columns: 1fr; }
  .sc-contact-grid { grid-template-columns: 1fr; }
  .sc-header__inner { flex-wrap: wrap; position: relative; }
  .sc-nav,
  .sc-header__cta { display: none; }
  .sc-menu-btn { display: inline-flex; margin-left: auto; }
  .sc-header.is-open .sc-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    order: 10;
    padding: 8px 0 4px;
    gap: 4px;
  }
  .sc-header.is-open .sc-header__cta {
    display: inline-flex;
    width: 100%;
    order: 11;
    justify-content: center;
    margin-bottom: 10px;
  }
}

@media (max-width: 720px) {
  .wrap { width: min(100% - 28px, var(--sc-max)); }
  .sc-hero { min-height: auto; padding: 88px 0 64px; }
  .sc-section { padding: 64px 0; }
  .sc-grid-4,
  .sc-grid-2,
  .sc-industries { grid-template-columns: 1fr; }
  .sc-feature { grid-template-columns: 1fr; }
  .sc-rate-grid { grid-template-columns: 1fr; }
  .sc-pill-row { flex-direction: column; }
}

/* —— 招商全案页 —— */
.sc-zs-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 72px;
  background:
    radial-gradient(ellipse 70% 55% at 20% 10%, rgba(201, 162, 39, 0.28), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 30%, rgba(0, 119, 255, 0.32), transparent 50%),
    linear-gradient(165deg, #050914 0%, #0c1a32 50%, #07101f 100%);
}

.sc-zs-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, #000, transparent 85%);
}

.sc-zs-hero .wrap { position: relative; z-index: 1; }

.sc-zs-hero h1 {
  font-family: var(--sc-display);
  font-size: clamp(26px, 4.2vw, 42px);
  margin: 12px 0 16px;
  max-width: 920px;
  color: #fff;
}

.sc-zs-hero__lead {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 700;
  color: #f5e6a8;
  margin: 0 0 14px;
  max-width: 860px;
}

.sc-zs-hero__sub {
  margin: 0 0 28px;
  color: var(--sc-muted);
  max-width: 820px;
  font-size: 15px;
}

.sc-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.sc-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 700;
  color: var(--sc-body);
}

.sc-pill--gold {
  background: var(--sc-gold-soft);
  border-color: rgba(201, 162, 39, 0.45);
  color: #f5e6a8;
}

.sc-rate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.sc-rate-card {
  padding: 22px;
  border-radius: 18px;
  background: var(--sc-surface);
  border: 1px solid var(--sc-border);
  text-align: center;
}

.sc-rate-card__label {
  font-size: 13px;
  color: var(--sc-muted);
  font-weight: 700;
  margin-bottom: 8px;
}

.sc-rate-card__val {
  font-family: var(--sc-accent);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.sc-rate-card__val em {
  font-style: normal;
  color: var(--sc-gold);
  font-size: 0.55em;
  margin-left: 4px;
}

.sc-rate-card__hint {
  margin-top: 8px;
  font-size: 13px;
  color: var(--sc-muted);
}

.sc-table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid var(--sc-border);
  background: var(--sc-surface);
}

.sc-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  font-size: 14px;
}

.sc-table th,
.sc-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sc-table th {
  background: rgba(0, 119, 255, 0.12);
  color: #cfe3ff;
  font-weight: 800;
  font-size: 13px;
}

.sc-table td { color: var(--sc-body); }
.sc-table tr:last-child td { border-bottom: 0; }
.sc-table strong { color: #fff; }

.sc-money {
  color: var(--sc-gold);
  font-weight: 800;
}

.sc-check-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.sc-check-list li {
  padding: 12px 14px 12px 40px;
  position: relative;
  border-radius: 12px;
  background: rgba(0, 119, 255, 0.08);
  border: 1px solid rgba(0, 119, 255, 0.18);
  color: var(--sc-body);
  font-size: 14px;
  font-weight: 600;
}

.sc-check-list li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 12px;
  color: var(--sc-gold);
  font-weight: 900;
}

.sc-scene-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.sc-scene {
  padding: 16px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 14px;
  font-weight: 700;
}

.sc-scene span {
  display: block;
  color: var(--sc-blue);
  font-family: var(--sc-accent);
  font-size: 14px;
  margin-bottom: 4px;
}

.sc-highlight-band {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.16), rgba(0, 119, 255, 0.14));
  border: 1px solid rgba(201, 162, 39, 0.35);
  font-size: 15px;
  font-weight: 700;
  color: #f5e6a8;
  line-height: 1.65;
}

.sc-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--sc-muted);
}

.sc-back-link:hover { color: #fff; }

.sc-sticky-cta {
  position: sticky;
  bottom: 0;
  z-index: 50;
  padding: 12px 0;
  background: rgba(5, 9, 16, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201, 162, 39, 0.35);
}

.sc-sticky-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sc-sticky-cta__text {
  font-size: 14px;
  color: var(--sc-muted);
  font-weight: 600;
}

.sc-sticky-cta__text strong {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-bottom: 2px;
}

@media (max-width: 900px) {
  .sc-scene-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .sc-scene-grid { grid-template-columns: 1fr; }
}

.sc-copy-box {
  margin-top: 16px;
  padding: 22px 22px 20px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(201, 162, 39, 0.14), rgba(0, 119, 255, 0.1));
  border: 1px solid rgba(201, 162, 39, 0.4);
  white-space: pre-line;
  font-size: 15px;
  line-height: 1.85;
  font-weight: 700;
  color: #f8f0d0;
}

.sc-copy-box__label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.25);
  color: var(--sc-gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.sc-big-num {
  font-family: var(--sc-accent);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--sc-gold);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.sc-big-num span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: var(--sc-muted);
  font-weight: 700;
  letter-spacing: 0;
}

/* —— 图文并茂 —— */
.sc-hero--photo {
  isolation: isolate;
}

.sc-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.04);
  animation: scKen 18s ease-in-out infinite alternate;
}

.sc-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(5, 9, 20, 0.92) 0%, rgba(5, 9, 20, 0.72) 48%, rgba(5, 9, 20, 0.55) 100%),
    linear-gradient(180deg, transparent 40%, rgba(7, 11, 20, 0.95) 100%);
}

@keyframes scKen {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

.sc-hero--photo .sc-hero__content,
.sc-hero--photo .sc-hero__glow { z-index: 1; }

.sc-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.sc-split--flip { grid-template-columns: 0.95fr 1.05fr; }
.sc-split--flip .sc-split__media { order: 2; }

.sc-split__media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 280px;
  box-shadow: 0 24px 48px rgba(0, 20, 60, 0.35);
}

.sc-split__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.sc-split:hover .sc-split__media img { transform: scale(1.04); }

.sc-split__tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(7, 11, 20, 0.78);
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: #f5e6a8;
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.sc-split__body h3 {
  font-family: var(--sc-display);
  font-size: clamp(22px, 2.8vw, 28px);
  margin-bottom: 12px;
}

.sc-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 140px;
  gap: 12px;
}

.sc-mosaic figure {
  position: relative;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sc-mosaic figure:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.sc-mosaic figure:nth-child(2) { grid-column: span 2; }
.sc-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sc-mosaic figure:hover img { transform: scale(1.06); }

.sc-mosaic figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 12px 10px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.sc-media-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: var(--sc-surface);
  border: 1px solid var(--sc-border);
  transition: transform 0.25s, box-shadow 0.25s;
}

.sc-media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 40, 100, 0.35);
}

.sc-media-card__img {
  height: 150px;
  overflow: hidden;
}

.sc-media-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sc-media-card:hover .sc-media-card__img img { transform: scale(1.06); }

.sc-media-card__body {
  padding: 18px 18px 20px;
}

.sc-media-card__body h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.sc-media-card__body p {
  margin: 0;
  color: var(--sc-muted);
  font-size: 14px;
}

.sc-shot-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.sc-shot-phone {
  position: relative;
  max-width: 280px;
  margin: 0 auto;
  padding: 12px;
  border-radius: 28px;
  background: linear-gradient(160deg, #1a2744, #0b1220);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 60px rgba(0, 30, 80, 0.45);
}

.sc-shot-phone img {
  width: 100%;
  border-radius: 18px;
  display: block;
}

.sc-gallery-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.sc-gallery-3 figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  aspect-ratio: 4 / 3;
}

.sc-gallery-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sc-gallery-3 figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 12px 10px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  font-size: 13px;
  font-weight: 700;
}

.sc-industry {
  overflow: hidden;
}

.sc-industry--photo {
  padding: 0;
  min-height: 88px;
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: stretch;
}

.sc-industry--photo .sc-industry__photo {
  width: 88px;
  height: 100%;
  object-fit: cover;
}

.sc-industry--photo .sc-industry__body {
  padding: 14px 14px 14px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .sc-split,
  .sc-split--flip,
  .sc-shot-row { grid-template-columns: 1fr; }
  .sc-split--flip .sc-split__media { order: 0; }
  .sc-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
  }
  .sc-mosaic figure:nth-child(1) { grid-column: span 2; grid-row: span 1; min-height: 180px; }
  .sc-gallery-3 { grid-template-columns: 1fr; }
}

/* —— 加盟商六大权益正式展示 —— */
.sc-fb-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.02em;
  color: #fff;
}
.sc-fb-hero__tag {
  margin: 8px 0 10px;
  color: #f5d76e;
  font-weight: 800;
  font-size: 15px;
}
.sc-fb-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}
.sc-fb-earn--stack {
  grid-template-columns: 1fr;
}
.sc-fb-earn__card strong {
  color: #ffe9a0;
  font-weight: 800;
}
@media (max-width: 900px) {
  .sc-fb-split { grid-template-columns: 1fr; }
}
.sc-fb-banner {
  display: block;
  margin: 0 auto 8px;
  max-width: var(--sc-max);
  width: min(100% - 40px, var(--sc-max));
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(201, 162, 39, 0.45);
  background:
    linear-gradient(115deg, rgba(201, 162, 39, 0.22), rgba(0, 119, 255, 0.12) 48%, rgba(8, 14, 28, 0.9)),
    rgba(10, 16, 28, 0.95);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.sc-fb-banner:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 215, 106, 0.7);
}
.sc-fb-banner--hero {
  margin-top: -12px;
  margin-bottom: 16px;
  padding: 22px 24px;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.35),
    0 0 32px rgba(201, 162, 39, 0.18);
}
.sc-home-spot-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 14px;
  margin: 0 auto 8px;
  padding-bottom: 8px;
}
.sc-home-spot-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.sc-home-spot {
  margin: 0 !important;
  height: 100%;
  box-sizing: border-box;
}
.sc-home-spot--gold {
  border-color: rgba(255, 215, 106, 0.65) !important;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.35),
    0 0 28px rgba(245, 197, 66, 0.22) !important;
}
@media (max-width: 960px) {
  .sc-home-spot-grid--3 { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .sc-home-spot-grid { grid-template-columns: 1fr; }
}
.sc-fb-banner__kicker {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffe45a, #c9a227);
  color: #1a1200;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.sc-fb-banner__title {
  margin: 10px 0 6px;
  font-size: clamp(1.25rem, 3.2vw, 1.75rem);
  font-weight: 800;
  color: #fff8e8;
  line-height: 1.35;
  font-family: var(--sc-display);
}
.sc-fb-banner__sub {
  margin: 0;
  color: rgba(255, 232, 180, 0.9);
  font-size: 0.95rem;
  line-height: 1.55;
  font-weight: 600;
}
.sc-fb-earn {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sc-fb-earn__card {
  position: relative;
  padding: 22px 20px 20px;
  border-radius: 18px;
  border: 1px solid rgba(0, 119, 255, 0.28);
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(0, 119, 255, 0.18), transparent 55%),
    rgba(12, 20, 38, 0.92);
  overflow: hidden;
}
.sc-fb-earn__card::before {
  content: attr(data-n);
  position: absolute;
  top: 10px;
  right: 14px;
  font-family: var(--sc-accent);
  font-size: 42px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
}
.sc-fb-earn__card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  color: #fff;
}
.sc-fb-earn__card p {
  margin: 0;
  color: var(--sc-body);
  font-size: 0.95rem;
  line-height: 1.65;
}
.sc-fb-earn__val {
  display: inline-block;
  margin: 12px 0 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.16);
  border: 1px solid rgba(201, 162, 39, 0.45);
  color: #ffd76a;
  font-size: 0.98rem;
  font-weight: 800;
}
.sc-fb-ladder {
  display: grid;
  gap: 14px;
}
.sc-fb-ladder__item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  background:
    linear-gradient(90deg, rgba(201, 162, 39, 0.14), transparent 42%),
    rgba(14, 22, 40, 0.95);
}
.sc-fb-ladder__time {
  font-family: var(--sc-accent);
  font-weight: 800;
  font-size: 0.95rem;
  color: #ffd76a;
  letter-spacing: 0.02em;
}
.sc-fb-ladder__task {
  margin: 0;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.45;
}
.sc-fb-ladder__task span {
  display: block;
  margin-top: 4px;
  color: var(--sc-muted);
  font-size: 0.86rem;
  font-weight: 600;
}
.sc-fb-ladder__prize {
  text-align: right;
  min-width: 10em;
}
.sc-fb-ladder__prize strong {
  display: block;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: #ffe45a;
  font-weight: 800;
  line-height: 1.3;
}
.sc-fb-ladder__prize em {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-size: 14px;
  color: rgba(255, 232, 180, 0.75);
  font-weight: 600;
}
.sc-fb-legal {
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px dashed rgba(148, 163, 184, 0.35);
  background: rgba(255, 255, 255, 0.03);
  color: var(--sc-muted);
  font-size: 14px;
  line-height: 1.7;
}
.sc-fb-legal strong { color: #e2e8f0; }
.sc-fb-float {
  position: fixed;
  right: 16px;
  bottom: 88px;
  z-index: 60;
  width: min(280px, calc(100vw - 28px));
  padding: 14px 14px 12px;
  border-radius: 16px;
  border: 1px solid rgba(201, 162, 39, 0.5);
  background: linear-gradient(160deg, rgba(20, 28, 48, 0.98), rgba(8, 12, 24, 0.98));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.sc-fb-float:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 215, 106, 0.75);
}
.sc-fb-float__badge {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffe45a, #c9a227);
  color: #1a1200;
  font-size: 13px;
  font-weight: 800;
}
.sc-fb-float__title {
  display: block;
  margin: 8px 0 4px;
  font-size: 15px;
  font-weight: 800;
  color: #fff8e8;
  line-height: 1.35;
}
.sc-fb-float__sub {
  display: block;
  font-size: 14px;
  color: rgba(230, 236, 255, 0.78);
  line-height: 1.45;
  font-weight: 600;
}
.sc-fb-float__cta {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 800;
  color: #ffd76a;
}
@media (max-width: 980px) {
  .sc-fb-earn { grid-template-columns: 1fr; }
  .sc-fb-ladder__item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .sc-fb-ladder__prize { text-align: left; }
  .sc-fb-float { bottom: 72px; right: 12px; }
}
@media (max-width: 560px) {
  .sc-fb-float {
    display: block;
    left: 12px;
    right: 12px;
    width: auto;
    bottom: 12px;
  }
}

/* 会员登录：PC 顶栏可见；手机端展开菜单后显示 */
.sc-member-login {
  flex-shrink: 0;
  margin-right: 8px;
}
@media (max-width: 980px) {
  .sc-header .sc-member-login,
  .sc-header .zj-member-entry--header,
  .sc-header .gsc-lang-dd--header,
  .sc-header__inner > .gsc-lang-dd {
    display: none !important;
  }
}
@media (min-width: 981px) {
  .sc-header .sc-member-login,
  .sc-header .zj-member-entry--header {
    display: inline-flex !important;
  }
}

.ec-menu svg, .sc-menu-btn svg, .ar-menu svg { display:block; width:22px; height:22px; }
.ec-menu, .sc-menu-btn, .ar-menu { align-items:center; justify-content:center; }

