:root {
  --ink: #152033;
  --muted: #667085;
  --line: #e1e7ef;
  --soft: #f6f8fb;
  --soft-blue: #eef5fb;
  --blue: #1554b7;
  --blue-dark: #0f2f63;
  --teal: #157f7b;
  --orange: #e87838;
  --green: #1f8a5b;
  --white: #fff;
  --shadow: 0 18px 48px rgba(16, 32, 68, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.65;
  background: #fbfcfe;
}

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

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

.topbar {
  background: #102742;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.topbar-inner,
.nav-inner,
.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--blue-dark);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: var(--white);
  font-weight: 900;
}

.brand span:last-child {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  color: #273246;
}

.nav-links a:hover {
  color: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(242, 118, 46, 0.24);
}

.btn-outline {
  border-color: rgba(20, 89, 200, 0.26);
  color: var(--blue);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 640px;
  color: var(--white);
  background: #0f2f63;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 24, 52, 0.98) 0%, rgba(8, 24, 52, 0.9) 46%, rgba(8, 24, 52, 0.56) 100%),
    linear-gradient(180deg, rgba(9, 22, 48, 0.24), rgba(9, 22, 48, 0.42)),
    url("hero-trade.png") center / cover no-repeat;
  filter: saturate(0.58) brightness(0.72);
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0 64px;
}

.eyebrow {
  color: #ffd7bd;
  font-weight: 800;
  letter-spacing: 0;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 900px;
  margin-bottom: 22px;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 800;
}

.trust-badges span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: #40d18f;
  box-shadow: 0 0 0 4px rgba(64, 209, 143, 0.14);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.22;
}

h1 {
  max-width: 760px;
  margin-top: 14px;
  font-size: clamp(36px, 5vw, 62px);
}

.hero p {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin-top: 56px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.16);
}

.hero-stat {
  padding: 18px;
  background: rgba(9, 28, 66, 0.48);
}

.hero-stat strong {
  display: block;
  font-size: 24px;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.section {
  padding: 78px 0;
}

.section.alt {
  background: linear-gradient(180deg, var(--soft-blue), var(--soft));
}

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

.section-head p {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--muted);
}

.kicker {
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 8px;
}

.grid-3,
.grid-4,
.steps {
  display: grid;
  gap: 18px;
}

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

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

.card,
.service,
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card,
.service {
  padding: 24px;
}

.card h3,
.service h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.card p,
.service p,
.faq-item p,
.page-body p,
.page-body li {
  color: var(--muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 0 10px;
  border-radius: 99px;
  background: #eaf1ff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -42px;
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-item {
  padding: 22px;
  background: var(--white);
}

.trust-item b {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-dark);
  font-size: 17px;
}

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

.steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  counter-reset: step;
}

.step {
  position: relative;
  padding: 22px;
  border-top: 4px solid var(--teal);
  background: var(--white);
  box-shadow: var(--shadow);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 14px;
  color: var(--orange);
  font-weight: 900;
  font-size: 22px;
}

.cta-band {
  background: #102742;
  color: var(--white);
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 42px 0;
}

.cta-inner p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.page-hero {
  background: linear-gradient(135deg, #102742, #164f85);
  color: var(--white);
  padding: 72px 0;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.page-body {
  max-width: 900px;
}

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

.article-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(16, 32, 68, 0.08);
}

.article-card h3 {
  margin: 8px 0 10px;
}

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

.article-card a {
  color: var(--blue);
  font-weight: 800;
}

.notice-box {
  margin: 26px 0;
  padding: 20px;
  border-left: 4px solid var(--orange);
  background: #fff7f1;
  color: #68412b;
}

.article-visual {
  width: 100%;
  margin: 0 0 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(16, 32, 68, 0.08);
}

.qa-list {
  display: grid;
  gap: 14px;
}

.qa-item {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.qa-item h3 {
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 18px;
}

.qa-item p {
  margin: 0;
}

.cta-card {
  margin-top: 42px;
  padding: 30px;
  border-radius: 8px;
  background: #102742;
  color: var(--white);
}

.cta-card p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.compare-table-section {
  background: linear-gradient(180deg, #f6f8fb, #eef5fb);
}

.compare-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(16, 32, 68, 0.1);
}

.compare-card-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding: 26px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #ffffff, #f3f8ff);
}

.compare-card-head h3 {
  margin-top: 8px;
  color: var(--blue-dark);
  font-size: 24px;
}

.compare-card-head p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
}

.compare-wrap {
  overflow-x: auto;
}

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

.compare-table th,
.compare-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.compare-table th {
  background: #102742;
  color: var(--white);
  font-weight: 800;
}

.compare-table th:first-child,
.compare-table td:first-child {
  width: 150px;
  font-weight: 800;
}

.compare-table td {
  color: var(--muted);
}

.compare-table td:first-child {
  color: var(--blue-dark);
  background: #f8fafc;
}

.compare-table td:last-child {
  color: #123d70;
  background: #f5f9ff;
  font-weight: 700;
}

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

.compare-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.page-body h2 {
  margin-top: 42px;
  margin-bottom: 12px;
}

.page-body ul {
  padding-left: 20px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 22px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.split p {
  color: var(--muted);
}

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

.feature-list div {
  min-height: 122px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(16, 32, 68, 0.08);
}

.feature-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 20px;
}

.feature-list span {
  color: var(--muted);
}

.contact-box {
  padding: 28px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid var(--line);
}

.contact-box a {
  color: var(--blue);
  font-weight: 700;
}

.qr-image {
  width: min(100%, 320px);
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.footer {
  padding: 34px 0;
  background: #101827;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer a {
  color: rgba(255, 255, 255, 0.86);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  gap: 10px;
}

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

.proof-toast {
  position: fixed;
  right: 18px;
  top: 46%;
  z-index: 39;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: min(320px, calc(100vw - 36px));
  padding: 14px 16px;
  border: 1px solid rgba(21, 84, 183, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 42px rgba(16, 32, 68, 0.16);
  color: #26364d;
  font-size: 14px;
  line-height: 1.55;
}

.proof-dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(31, 138, 91, 0.13);
}

@media (max-width: 920px) {
  .nav-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-stats,
  .trust-inner,
  .grid-3,
  .grid-4,
  .steps,
  .contact-panel,
  .split,
  .feature-list,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .compare-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-head,
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-contact {
    left: 18px;
    right: 18px;
    grid-template-columns: 1fr 1fr;
  }

  .proof-toast {
    display: none;
  }
}
