/* 跨境电商增长页：琥珀色 + 地球网格风格 */
body { background: linear-gradient(180deg, #fffbeb 0%, #ffffff 20%, #f7fbff 100%); }
.btn-amber { color: #fff; background: var(--amber); box-shadow: 0 12px 28px rgba(245,158,11,0.3); }

.hero-ecommerce { padding: 56px 0 64px; position: relative; }
.hero-ecommerce-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero-tag.amber { background: #fffbeb; border-color: #fde68a; color: #b45309; }
.hero-ecommerce h1 { font-size: 46px; line-height: 1.15; margin: 0 0 20px; color: var(--ink); }
.hero-ecommerce h1 .accent { background: linear-gradient(135deg, var(--amber), var(--blue)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-lead { font-size: 17px; line-height: 1.8; color: #3f5068; max-width: 520px; margin: 0 0 28px; }
.hero-lead strong { color: var(--blue-950); }
.hero-actions { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stats .stat { display: flex; flex-direction: column; }
.hero-stats .num { font-size: 26px; font-weight: 800; color: var(--amber); line-height: 1; }
.hero-stats .lbl { font-size: 12px; color: var(--muted); margin-top: 6px; }

/* 地球卡片 */
.globe-card { position: relative; width: 320px; height: 320px; margin: 0 auto; display: grid; place-items: center; }
.globe-ring { position: absolute; border: 1.5px dashed rgba(245,158,11,0.2); border-radius: 50%; }
.globe-ring.r1 { inset: 0; animation: globe-rotate 40s linear infinite; }
.globe-ring.r2 { inset: 30px; border-color: rgba(37,99,235,0.15); animation: globe-rotate 30s linear infinite reverse; }
.globe-ring.r3 { inset: 60px; border-color: rgba(8,145,178,0.15); }
@keyframes globe-rotate { to { transform: rotate(360deg); } }
.globe-core { font-size: 64px; position: relative; z-index: 2; filter: drop-shadow(0 8px 20px rgba(245,158,11,0.3)); }
.globe-node { position: absolute; font-size: 24px; background: #fff; border-radius: 50%; width: 40px; height: 40px; display: grid; place-items: center; box-shadow: 0 4px 12px rgba(0,0,0,0.1); z-index: 3; }
.globe-node.n1 { top: 10px; left: 50%; transform: translateX(-50%); }
.globe-node.n2 { top: 50%; right: 0; transform: translateY(-50%); }
.globe-node.n3 { bottom: 10px; left: 50%; transform: translateX(-50%); }
.globe-node.n4 { top: 50%; left: 0; transform: translateY(-50%); }
.globe-node.n5 { top: 20px; right: 30px; }

/* 五大环节列表 */
.flow-list { display: flex; flex-direction: column; gap: 14px; max-width: 820px; margin: 0 auto; }
.flow-item { display: grid; grid-template-columns: 80px 1fr; gap: 24px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 24px 28px; box-shadow: var(--shadow-card); transition: transform 0.25s, box-shadow 0.25s; align-items: center; }
.flow-item:hover { transform: translateX(8px); box-shadow: 0 16px 36px rgba(245,158,11,0.1); border-color: #fde68a; }
.flow-step { font-size: 36px; font-weight: 900; color: var(--amber); opacity: 0.4; line-height: 1; }
.flow-body { display: flex; align-items: center; gap: 16px; }
.flow-icon { font-size: 28px; flex: 0 0 auto; }
.flow-body h3 { font-size: 17px; margin: 0 0 4px; }
.flow-body p { color: #55677f; font-size: 14px; margin: 0; line-height: 1.6; }

/* 琥珀色 band */
.band-amber { background: linear-gradient(135deg, #78350f 0%, #92400e 50%, #b45309 100%); color: #fff; }
.cta-center { text-align: center; max-width: 700px; margin: 0 auto; }
.cta-center .kicker.light { color: var(--gold); font-weight: 800; font-size: 13px; margin-bottom: 10px; }
.cta-center h2.light { font-size: 28px; color: #fff; margin: 0 0 12px; }
.cta-center .light-muted { color: #fde68a; font-size: 15px; margin: 0 0 28px; }
.cta-form-inline { display: grid; grid-template-columns: 1fr 1fr auto; gap: 10px; }
.cta-form-inline .field { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; padding: 12px 14px; color: #fff; font-size: 14px; font-family: inherit; }
.cta-form-inline .field::placeholder { color: rgba(255,255,255,0.5); }
.cta-form-inline .field option { color: #000; }

@media (max-width: 900px) {
  .hero-ecommerce-grid { grid-template-columns: 1fr; }
  .globe-card { width: 260px; height: 260px; }
  .flow-item { grid-template-columns: 1fr; }
  .cta-form-inline { grid-template-columns: 1fr; }
}
