* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brand: #1A3D7C;
  --brand2: #FA8C16;
  --brand3: #0E2A5C;
  --brand-soft: #EDF2FA;
  --brand-soft2: #F5F8FC;
  --text: #1A1A1A;
  --text2: #5A6B7C;
  --text3: #8A9AAA;
  --text4: #6B7C8C;
  --bg: #FFFFFF;
  --bg2: #F7F9FC;
  --bg3: #0E2A5C;
  --line: #EEF1F5;
  --red: #FF4D4F;
  --radius: 16px;
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 14px 40px rgba(26, 61, 124, 0.18);
}

html,
body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", Arial, "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section.bg2 {
  background: var(--bg2);
}

.section.bg3 {
  background: linear-gradient(135deg, #0E2A5C 0%, #1A3D7C 100%);
  color: #fff;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
}

.section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-head .eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}

.section-head h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 48px;
  color: var(--text);
  letter-spacing: -0.5px;
  position: relative;
}

.section-head h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  border-radius: 2px;
  margin: 18px auto 0;
}

.section-head .sub {
  font-size: 16px;
  color: var(--text2);
  margin-top: 18px;
  line-height: 26px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-soft2) 0%, #FFFFFF 60%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(26, 61, 124, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(26, 61, 124, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.6;
  mask-image: radial-gradient(ellipse at top right, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at top right, black 30%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  color: var(--brand);
  border: 1px solid var(--brand-soft);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-text .badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-soft);
}

.hero-text h1 {
  font-size: 46px;
  font-weight: 800;
  line-height: 56px;
  color: var(--text);
  letter-spacing: -1px;
}

.hero-text h1 .accent {
  display: block;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 6px;
}

.hero-text .lead {
  font-size: 16px;
  color: var(--text2);
  margin-top: 20px;
  line-height: 28px;
  max-width: 540px;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 32px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #fff;
  border-radius: 26px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(26, 61, 124, 0.32);
  cursor: pointer;
  border: none;
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  color: var(--text);
  border-radius: 26px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--line);
  cursor: pointer;
}

/* Hero stats grid (2x2) */
.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-stat-tile {
  background: linear-gradient(135deg, #fff, var(--brand-soft2));
  border-radius: 16px;
  padding: 24px 22px;
  border: 1px solid var(--brand-soft);
  position: relative;
  overflow: hidden;
  transition: all .3s;
  box-shadow: 0 6px 24px rgba(26, 61, 124, 0.08);
}

.hero-stat-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}

.hero-stat-tile::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand-soft) 0%, transparent 70%);
  opacity: 0.5;
}

.hero-stat-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 61, 124, 0.15);
}

.hero-stat-tile:hover::before {
  transform: scaleX(1);
}

.hero-stat-tile-num {
  font-size: 30px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 36px;
  letter-spacing: -0.5px;
  display: inline-block;
  white-space: nowrap;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.hero-stat-tile-num small {
  font-size: 14px;
  font-weight: 700;
  -webkit-text-fill-color: var(--brand);
  color: var(--brand);
  display: inline-block;
  margin-left: 2px;
}

.hero-stat-tile-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
  line-height: 18px;
}

.hero-stat-tile-desc {
  font-size: 11px;
  color: var(--text3);
  line-height: 15px;
  position: relative;
  z-index: 1;
}

/* Market data cards (4列) */
.market-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.market-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 22px;
  border: 1px solid var(--line);
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all .3s;
}

.market-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--brand), var(--brand2));
  transition: height .3s;
}

.market-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.market-card:hover::before {
  height: 100%;
}

.market-card .num {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 44px;
  letter-spacing: -1px;
}

.market-card .num small {
  font-size: 16px;
  font-weight: 700;
  margin-left: 2px;
}

.market-card .label {
  font-size: 14px;
  color: var(--text2);
  margin-top: 6px;
  font-weight: 600;
}

.market-card .desc {
  font-size: 14px;
  color: var(--text3);
  margin-top: 8px;
  line-height: 17px;
}

/* Pain grid (4列) */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pain-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--red);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #FFF1F0 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(20px, -20px);
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.pain-card .ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #FFF1F0, #FFE8E5);
  color: var(--red);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(255, 77, 79, 0.15);
}

.pain-card h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.pain-card p {
  font-size: 14px;
  color: var(--text3);
  line-height: 22px;
  position: relative;
  z-index: 1;
}

.pain-card .resolve {
  margin-top: 14px;
  font-size: 13px;
  color: var(--brand);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-soft);
  padding: 5px 12px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

/* Feature row (左右图文交替) */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.feature-row.reverse .feature-text {
  order: 2;
}

.feature-row.reverse .feature-visual {
  order: 1;
}

.feature-text .label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 6px 14px;
  border-radius: 14px;
  margin-bottom: 14px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.feature-text h3 {
  font-size: 30px;
  font-weight: 800;
  line-height: 38px;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.feature-text .desc {
  font-size: 16px;
  color: var(--text2);
  line-height: 26px;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 14px 0 14px 28px;
  position: relative;
  border-bottom: 1px dashed var(--line);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 0 0 4px var(--brand-soft);
}

.feature-list li .t {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  display: block;
}

.feature-list li .d {
  font-size: 14px;
  color: var(--text4);
  margin-top: 4px;
  display: block;
  line-height: 22px;
}

.feature-visual {
  background: linear-gradient(135deg, var(--brand-soft2) 0%, #FFFFFF 100%);
  border-radius: 18px;
  padding: 28px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--brand-soft);
}

.feature-visual .mock {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 4px 20px rgba(26, 61, 124, 0.08);
  position: relative;
  z-index: 2;
}

.feature-visual .mock-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #F5F7FA;
}

.feature-visual .mock-row:last-child {
  border-bottom: none;
}

.feature-visual .mock-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 11px;
  color: #fff;
  background: var(--brand);
  font-weight: 500;
  flex-shrink: 0;
}

.feature-visual .mock-title {
  font-size: 13px;
  font-weight: 600;
  flex: 1;
}

.feature-visual .mock-sub {
  font-size: 11px;
  color: var(--text3);
}

/* Flow row (时间线) */
.flow-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.flow-step {
  flex: 1;
  min-width: 130px;
  max-width: 160px;
  background: #fff;
  border-radius: 14px;
  padding: 22px 14px;
  text-align: center;
  position: relative;
  border: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all .3s;
}

.flow-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-soft);
}

.flow-step .step-num {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 6px 16px rgba(26, 61, 124, 0.3);
}

.flow-step h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.flow-step p {
  font-size: 14px;
  color: var(--text3);
  line-height: 17px;
}

.flow-arrow {
  display: flex;
  align-items: center;
  color: var(--brand);
  font-size: 22px;
  padding: 0 4px;
  font-weight: 700;
  opacity: 0.4;
}

/* Profit grid (3列) */
.profit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.profit-card {
  background: linear-gradient(135deg, #fff, var(--brand-soft2));
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid var(--brand-soft);
  position: relative;
  overflow: hidden;
  transition: all .3s;
}

.profit-card::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--brand-soft) 0%, transparent 70%);
  border-radius: 50%;
}

.profit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.profit-card .ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  box-shadow: 0 6px 16px rgba(26, 61, 124, 0.25);
  position: relative;
  z-index: 1;
}

.profit-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.profit-card .rate {
  font-size: 13px;
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.8);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.profit-card p {
  font-size: 12px;
  color: var(--text3);
  line-height: 20px;
  position: relative;
  z-index: 1;
}

/* Audience grid (3列) */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.audience-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: all .3s;
}

.audience-card::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--brand-soft) 0%, transparent 70%);
  border-radius: 50%;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--brand);
}

.audience-card .ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-soft), var(--brand-soft2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
  color: var(--brand);
  position: relative;
  z-index: 1;
}

.audience-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.audience-card .role {
  font-size: 12px;
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 10px;
  background: var(--brand-soft);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.audience-card p {
  font-size: 13px;
  color: var(--text3);
  line-height: 22px;
  position: relative;
  z-index: 1;
}

/* Tool grid (4列) */
.tool-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.tool-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 20px;
  border: 1px solid var(--line);
  transition: all .3s;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.tool-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.tool-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.tool-card:hover::before {
  transform: scaleX(1);
}

.tool-card .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--brand-soft), var(--brand-soft2));
  color: var(--brand);
}

.tool-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.tool-card p {
  font-size: 14px;
  color: var(--text3);
  line-height: 20px;
}

.tool-card .tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 700;
}

/* Scene grid (4列) */
.scene-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.scene-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 18px;
  border: 1px solid var(--line);
  text-align: center;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.scene-card::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, var(--brand-soft) 0%, transparent 70%);
  border-radius: 50%;
}

.scene-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--brand);
}

.scene-card .ic {
  font-size: 36px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.scene-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.scene-card p {
  font-size: 12px;
  color: var(--text3);
  line-height: 17px;
  position: relative;
  z-index: 1;
}

/* FAQ (2列) */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  transition: all .3s;
  position: relative;
}

.faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 3px;
  background: linear-gradient(180deg, var(--brand), var(--brand2));
  border-radius: 0 3px 3px 0;
  opacity: 0;
  transition: opacity .3s;
}

.faq-item:hover {
  box-shadow: var(--shadow);
  border-color: var(--brand-soft);
  padding-left: 28px;
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-item .q {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.faq-item .q::before {
  content: "Q";
  display: inline-flex;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.faq-item .a {
  font-size: 14px;
  color: var(--text4);
  line-height: 22px;
  padding-left: 34px;
}

/* Cert section */
.cert-section {
  padding: 100px 0 70px;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.cert-title {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  color: var(--text);
  margin-bottom: 60px;
  letter-spacing: -0.3px;
  position: relative;
  z-index: 1;
}

.cert-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cert-item {
  flex: 1;
  min-width: 180px;
  text-align: center;
  transition: transform .3s;
}

.cert-item:hover {
  transform: translateY(-4px);
}

.cert-item .logo-box {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border: 2px solid var(--brand-soft);
  position: relative;
}

.cert-item .logo-box::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px dashed var(--brand-soft);
  border-radius: 50%;
  opacity: 0.5;
}

.cert-item .name {
  font-size: 14px;
  color: var(--text2);
  line-height: 20px;
  font-weight: 500;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, #0E2A5C 0%, #1A3D7C 50%, #2A7EFB 100%);
  color: #fff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(91, 168, 255, 0.15) 0%, transparent 50%);
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.final-cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 30px;
  line-height: 28px;
}

.final-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 40px;
  background: #fff;
  color: var(--brand);
  border-radius: 27px;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media(max-width:980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 36px;
    line-height: 46px;
  }

  .hero-stats-grid {
    grid-template-columns: 1fr;
  }

  .market-row,
  .pain-grid,
  .tool-grid,
  .scene-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .profit-grid,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .feature-row.reverse .feature-text {
    order: 1;
  }

  .feature-row.reverse .feature-visual {
    order: 2;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .section-head h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .flow-row {
    flex-wrap: wrap;
  }

  .flow-arrow {
    display: none;
  }
}

/* ===== 2026 visual refresh: 县域产业感 / 暖橙拟物 / 更强空间层级 ===== */
:root {
  --brand: #F05A28;
  --brand2: #FF9B45;
  --brand3: #243B32;
  --brand-soft: #FFF1E8;
  --brand-soft2: #FFF9F3;
  --text: #252A27;
  --text2: #626B65;
  --text3: #919991;
  --text4: #737D76;
  --bg: #FFFCF8;
  --bg2: #F8F5EE;
  --bg3: #243B32;
  --line: #ECE7DF;
  --shadow: 0 16px 42px rgba(61, 49, 35, .08);
  --shadow-hover: 0 24px 60px rgba(100, 64, 35, .16);
}

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

.container {
  max-width: 1260px;
  padding: 0 32px
}

.section {
  padding: 112px 0
}

.section.bg2 {
  background: linear-gradient(180deg, #F8F5EE 0%, #FBF9F4 100%)
}

.section-head {
  margin-bottom: 62px
}

.section-head .eyebrow {
  color: #D84B1D;
  background: #FFEADF;
  border: 1px solid #FFD8C6
}

.section-head .eyebrow::before {
  background: #F05A28;
  box-shadow: 0 0 0 4px #FFDCCB
}

.section-head h2 {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -1px
}

.section-head h2::after {
  width: 58px;
  height: 4px;
  background: linear-gradient(90deg, #F05A28, #FFB45D)
}

.section-head .sub {
  color: #717972;
  max-width: 700px
}

/* Hero：从“数据卡墙”变为县域商业生态主视觉 */
.hero {
  padding: 82px 0 72px;
  background: radial-gradient(circle at 8% 10%, #FFF1E5 0, transparent 32%), linear-gradient(135deg, #FFFDF9 10%, #F7F2E9 100%);
  min-height: 690px
}

.hero::before {
  opacity: .42;
  background-image: linear-gradient(rgba(240, 90, 40, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(240, 90, 40, .055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, black 55%, black);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 55%, black)
}

.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(240, 90, 40, .13);
  border-radius: 50%;
  right: -140px;
  top: -180px;
  box-shadow: 0 0 0 70px rgba(240, 90, 40, .025), 0 0 0 140px rgba(240, 90, 40, .018)
}

.hero-inner {
  grid-template-columns: .92fr 1.08fr;
  gap: 56px;
  min-height: 530px
}

.hero-text .badge {
  background: #fff;
  color: #D84B1D;
  border-color: #FFDCCB;
  box-shadow: 0 10px 30px rgba(111, 72, 40, .08)
}

.hero-text .badge::before {
  background: #F05A28;
  box-shadow: 0 0 0 4px #FFE1D2
}

.hero-text h1 {
  font-size: 54px;
  line-height: 1.14;
  letter-spacing: -2px;
  max-width: 580px
}

.hero-text h1 .accent {
  background: linear-gradient(90deg, #EA4E21, #FF8A33 70%);
  -webkit-background-clip: text;
  background-clip: text
}

.hero-text .lead {
  font-size: 17px;
  line-height: 30px;
  max-width: 570px
}

.hero-cta {
  background: linear-gradient(135deg, #E84C20, #FF7A2B);
  box-shadow: 0 13px 30px rgba(238, 82, 32, .27)
}

.hero-cta-secondary {
  background: #fff;
  border-color: #E9E1D7
}

.hero-cta-row {
  margin-top: 38px
}

.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid #EAE1D6;
  color: #7A827C;
  font-size: 12px
}

.hero-trust b {
  color: #33433B;
  font-size: 14px;
  display: block;
  margin-bottom: 2px
}

.hero-trust span {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
}

.hero-trust span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #63A66F
}

.hero-ecosystem {
  position: relative;
  height: 500px;
  perspective: 1100px
}

.eco-stage {
  position: absolute;
  left: 6%;
  right: 2%;
  top: 58px;
  bottom: 36px;
  border-radius: 34px;
  background: linear-gradient(145deg, #F2C787 0%, #EAB274 40%, #D99A61 100%);
  box-shadow: 0 35px 70px rgba(90, 61, 37, .2), inset 0 2px 0 rgba(255, 255, 255, .5);
  transform: rotateX(7deg) rotateZ(-1deg);
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, .65)
}

.eco-stage::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -18%;
  height: 62%;
  background: repeating-linear-gradient(166deg, #80AA5C 0 34px, #94B96B 34px 62px, #D2A96D 62px 68px);
  border-radius: 50% 50% 0 0/38% 38% 0 0;
  box-shadow: 0 -9px 20px rgba(73, 91, 47, .15)
}

.eco-stage::after {
  content: "";
  position: absolute;
  left: 37%;
  top: 0;
  width: 78px;
  height: 120%;
  background: #E7D7BA;
  transform: rotate(22deg);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .38), 8px 0 22px rgba(86, 65, 46, .09)
}

.eco-sun {
  position: absolute;
  right: 13%;
  top: 12%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #FFF6C9, #FFBE55 56%, #FF8B38);
  box-shadow: 0 10px 36px rgba(245, 142, 48, .4)
}

.eco-hill {
  position: absolute;
  width: 270px;
  height: 125px;
  border-radius: 50% 50% 12% 12%;
  background: linear-gradient(160deg, #87A96A, #527D59);
  top: 11%;
  left: -6%;
  transform: rotate(-8deg);
  box-shadow: inset 0 10px 20px rgba(255, 255, 255, .12)
}

.eco-hill.h2 {
  left: 17%;
  top: 17%;
  width: 235px;
  height: 98px;
  background: linear-gradient(160deg, #9DB66F, #64865A);
  transform: rotate(8deg)
}

.eco-village {
  position: absolute;
  right: 8%;
  bottom: 27%;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  gap: 10px
}

.house {
  width: 74px;
  height: 68px;
  background: linear-gradient(135deg, #FFF6E8, #F0DEC3);
  border-radius: 5px 5px 10px 10px;
  position: relative;
  box-shadow: 8px 12px 20px rgba(83, 54, 36, .18);
  border: 1px solid rgba(255, 255, 255, .7)
}

.house::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #D84828, #F4773E);
  transform: rotate(45deg) skew(-5deg, -5deg);
  left: 1px;
  top: -31px;
  border-radius: 8px 3px;
  z-index: -1;
  box-shadow: 4px 5px 10px rgba(106, 56, 34, .2)
}

.house::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 28px;
  background: #A66C44;
  bottom: 0;
  left: 28px;
  border-radius: 4px 4px 0 0;
  box-shadow: -23px -15px 0 -5px #79A9B2, 23px -15px 0 -5px #79A9B2
}

.house.shop {
  width: 94px;
  height: 77px;
  background: #FFF4E2
}

.house.shop::before {
  width: 88px;
  height: 88px;
  left: 3px;
  top: -39px;
  background: linear-gradient(135deg, #D84C20, #FF8A3D)
}

.eco-crates {
  position: absolute;
  left: 12%;
  bottom: 20%;
  z-index: 5;
  display: flex;
  gap: 7px;
  align-items: flex-end
}

.crate {
  width: 48px;
  height: 38px;
  border-radius: 7px;
  background: linear-gradient(145deg, #F38A35, #C95423);
  border: 3px solid #FFB267;
  box-shadow: 7px 9px 15px rgba(79, 48, 28, .18);
  position: relative
}

.crate::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 8px;
  height: 6px;
  border-radius: 50%;
  background: #87AB4D;
  box-shadow: 10px 5px 0 #AAC45D, 20px 0 0 #779A41
}

.crate.c2 {
  transform: translateY(10px);
  background: linear-gradient(145deg, #D9A34E, #AA722A)
}

.eco-truck {
  position: absolute;
  left: 44%;
  bottom: 23%;
  z-index: 6;
  width: 108px;
  height: 56px;
  background: linear-gradient(145deg, #FFF8EF, #E9DED0);
  border-radius: 13px 16px 8px 8px;
  box-shadow: 8px 12px 20px rgba(69, 56, 42, .22);
  border: 1px solid rgba(255, 255, 255, .8)
}

.eco-truck::before {
  content: "";
  position: absolute;
  right: -28px;
  bottom: 0;
  width: 42px;
  height: 41px;
  border-radius: 5px 15px 5px 3px;
  background: linear-gradient(145deg, #F3732E, #DB4A1F);
  clip-path: polygon(0 0, 70% 0, 100% 38%, 100% 100%, 0 100%)
}

.eco-truck::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: -13px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #2E3732;
  border: 6px solid #59635C;
  box-shadow: 67px 0 0 -6px #2E3732, 67px 0 0 0 #59635C
}

.eco-route {
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 17%;
  height: 3px;
  border-top: 3px dashed rgba(255, 255, 255, .72);
  z-index: 4;
  transform: rotate(-5deg)
}

.eco-tag {
  position: absolute;
  z-index: 9;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
  padding: 9px 13px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  color: #39473F;
  box-shadow: 0 10px 24px rgba(74, 53, 35, .16);
  border: 1px solid rgba(255, 255, 255, .75)
}

.eco-tag i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #F06A2E;
  margin-right: 6px
}

.eco-tag.t1 {
  left: 4%;
  top: 32%
}

.eco-tag.t2 {
  right: 0;
  top: 28%
}

.eco-tag.t3 {
  right: 3%;
  bottom: 12%
}

.eco-stat {
  position: absolute;
  z-index: 12;
  background: #253D33;
  color: #fff;
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 16px 30px rgba(32, 57, 47, .25);
  min-width: 132px
}

.eco-stat strong {
  font-size: 25px;
  display: block;
  line-height: 1.1
}

.eco-stat small {
  font-size: 11px;
  opacity: .72
}

.eco-stat.s1 {
  left: 0;
  top: 22px
}

.eco-stat.s2 {
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, #F1632A, #DE431C)
}

/* 卡片与布局：减少“表格感”，加强层次 */
.market-row {
  gap: 0;
  background: #fff;
  border-radius: 26px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(61, 49, 35, .08);
  border: 1px solid #EEE7DE
}

.market-card {
  border: 0;
  border-radius: 18px;
  padding: 30px 26px
}

.market-card+.market-card {
  border-left: 1px solid #EFE8DF
}

.market-card .num {
  background: linear-gradient(135deg, #E95425, #FF963F);
  -webkit-background-clip: text;
  background-clip: text
}

.market-card::before {
  background: linear-gradient(180deg, #F05A28, #FFB05A);
  border-radius: 5px
}

.pain-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 22px
}

.pain-card {
  min-height: 190px;
  border-top: 0;
  border: 1px solid #EFE7DE;
  border-radius: 24px;
  padding: 30px 30px 28px 108px;
  box-shadow: 0 14px 38px rgba(60, 47, 35, .07)
}

.pain-card .ic {
  position: absolute;
  left: 30px;
  top: 32px;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(145deg, #FFF2E8, #FFD8C0);
  box-shadow: 0 10px 22px rgba(218, 82, 31, .13);
  filter: saturate(.86)
}

.pain-card::after {
  content: "痛点";
  position: absolute;
  right: 24px;
  top: 20px;
  font-size: 11px;
  color: #C6B7AA;
  letter-spacing: 2px
}

.pain-card .resolve {
  background: #FFF0E7;
  color: #D94C20
}

.feature-row {
  gap: 78px;
  margin-bottom: 105px
}

.feature-text .label {
  color: #D94C20;
  background: #FFF0E7;
  border: 1px solid #FFD9C5
}

.feature-text h3 {
  font-size: 34px;
  line-height: 1.3
}

.feature-list li::before {
  background: linear-gradient(135deg, #F05A28, #FF9B45);
  box-shadow: 0 0 0 4px #FFEADF
}

.feature-visual {
  min-height: 410px;
  border-radius: 30px;
  border: 1px solid #EDE4DA;
  background: linear-gradient(145deg, #263F35 0%, #365849 100%);
  padding: 38px;
  box-shadow: 0 30px 65px rgba(38, 63, 53, .22);
  transform: rotate(-1deg)
}

.feature-row.reverse .feature-visual {
  transform: rotate(1deg)
}

.feature-visual::before {
  content: "县域运营工作台";
  position: absolute;
  top: 21px;
  left: 38px;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  letter-spacing: 1px
}

.feature-visual::after {
  content: "•••";
  position: absolute;
  top: 12px;
  right: 28px;
  color: #FFAC67;
  letter-spacing: 4px
}

.feature-visual .mock {
  margin-top: 18px;
  padding: 10px 18px;
  border-radius: 18px;
  box-shadow: 0 20px 35px rgba(15, 34, 27, .22)
}

.feature-visual .mock-row {
  padding: 16px 6px
}

.feature-visual .mock-tag {
  background: linear-gradient(135deg, #F05A28, #FF9143)
}

.flow-row {
  background: #263F35;
  border-radius: 28px;
  padding: 26px 20px;
  box-shadow: 0 24px 60px rgba(38, 63, 53, .2)
}

.flow-step {
  background: rgba(255, 255, 255, .96);
  border: 0;
  box-shadow: none;
  min-height: 140px
}

.flow-step .step-num {
  background: linear-gradient(135deg, #F05A28, #FF9A45);
  box-shadow: 0 8px 16px rgba(240, 90, 40, .25)
}

.flow-arrow {
  color: #FFD4BC;
  opacity: .8
}

.profit-card,
.audience-card,
.tool-card,
.scene-card {
  border-color: #ECE4DA;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(61, 49, 35, .055)
}

.profit-card .ic {
  background: linear-gradient(145deg, #F05A28, #FF9B45);
  box-shadow: 0 10px 24px rgba(240, 90, 40, .22)
}

.tool-card .ic,
.audience-card .ic {
  background: linear-gradient(145deg, #FFF2E8, #FFE1CE);
  color: #D84C20;
  box-shadow: inset 0 1px 0 #fff, 0 8px 18px rgba(208, 91, 40, .10)
}

.tool-card .tag,
.audience-card .role {
  background: #FFF0E6;
  color: #D64B1E
}

.scene-card {
  padding: 30px 18px
}

.scene-card .ic {
  font-size: 42px;
  filter: drop-shadow(0 8px 9px rgba(72, 56, 42, .15))
}

.cert-section {
  background: linear-gradient(180deg, #F7F3EC, #FFF9F2)
}

.cert-item .logo-box {
  border: 0;
  border-radius: 24px;
  background: linear-gradient(145deg, #fff, #F3EADF);
  box-shadow: 10px 16px 32px rgba(77, 57, 38, .1);
  transform: rotate(-2deg)
}

.final-cta {
  background: linear-gradient(125deg, #21382F 0%, #315545 58%, #E95A28 130%);
  padding: 105px 0
}

.final-cta::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 50%;
  right: -160px;
  top: -260px;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, .025), 0 0 0 140px rgba(255, 255, 255, .018)
}

.final-cta .btn {
  color: #D94C20;
  border-radius: 12px;
  padding: 0 44px
}

@media(max-width:980px) {
  .container {
    padding: 0 20px
  }

  .section {
    padding: 78px 0
  }

  .hero {
    padding-top: 62px
  }

  .hero-inner {
    grid-template-columns: 1fr
  }

  .hero-ecosystem {
    height: 440px
  }

  .pain-grid {
    grid-template-columns: 1fr
  }

  .market-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px
  }

  .market-card+.market-card {
    border-left: 0
  }

  .feature-visual,
  .feature-row.reverse .feature-visual {
    transform: none
  }

  .section-head h2 {
    font-size: 34px
  }
}

@media(max-width:620px) {
  .hero-text h1 {
    font-size: 40px
  }

  .hero-ecosystem {
    height: 370px
  }

  .eco-stage {
    top: 46px;
    left: 0;
    right: 0
  }

  .eco-stat {
    transform: scale(.82)
  }

  .eco-stat.s1 {
    left: -8px
  }

  .eco-stat.s2 {
    right: -5px
  }

  .hero-trust {
    flex-wrap: wrap
  }

  .market-row {
    grid-template-columns: 1fr
  }

  .pain-card {
    padding: 100px 22px 24px 22px
  }

  .feature-visual {
    padding: 36px 16px 18px
  }

  .feature-visual::before {
    left: 18px
  }

  .tool-grid,
  .scene-grid,
  .profit-grid,
  .audience-grid {
    grid-template-columns: 1fr
  }

  .section-head h2 {
    font-size: 30px
  }
}

/* Feedback refinement: 去深绿大底、压缩痛点、统一矢量图标 */
.pain-section {
  padding: 76px 0 82px
}

.pain-section .section-head {
  margin-bottom: 38px
}

.pain-grid {
  gap: 18px
}

.pain-card {
  min-height: 146px;
  border-top: 0;
  border: 1px solid #EFE7DE;
  border-radius: 20px;
  padding: 24px 24px 22px 92px;
  box-shadow: 0 10px 30px rgba(60, 47, 35, .055)
}

.pain-card .ic {
  left: 24px;
  top: 26px;
  width: 50px;
  height: 50px;
  border-radius: 15px
}

.pain-card::after {
  right: 22px;
  top: 18px;
  font-size: 10px
}

.pain-card h3 {
  margin-bottom: 5px
}

.pain-card p {
  line-height: 20px
}

.feature-row {
  margin-bottom: 92px
}

.feature-visual {
  min-height: 370px;
  border-radius: 28px;
  border-color: #EBDDD0;
  background: linear-gradient(145deg, #FFF8F1 0%, #F7EDE2 100%);
  box-shadow: 0 24px 58px rgba(92, 65, 44, .11)
}

.feature-visual::before {
  color: #9A806F
}

.feature-visual::after {
  color: #F47B43
}

.feature-visual .mock {
  border: 1px solid #EEE4DA;
  box-shadow: 0 18px 34px rgba(75, 53, 35, .09)
}

.flow-row {
  background: linear-gradient(145deg, #FFF8F2, #F6EEE5);
  border: 1px solid #EADFD3;
  border-radius: 26px;
  padding: 22px 18px;
  box-shadow: 0 18px 45px rgba(79, 57, 39, .08)
}

.flow-step {
  background: #fff;
  border: 1px solid #EEE6DD;
  box-shadow: 0 7px 18px rgba(78, 56, 39, .05);
  min-height: 132px
}

.flow-arrow {
  color: #E7956F;
  opacity: .65
}

.eco-stat {
  background: #fff;
  color: #D84C20;
  border: 1px solid #F2DFD2;
  box-shadow: 0 14px 28px rgba(93, 61, 37, .14)
}

.eco-stat small {
  color: #7D756E;
  opacity: 1
}

.eco-stat.s2 {
  background: linear-gradient(145deg, #F1632A, #E04D20);
  color: #fff;
  border: 0
}

.eco-stat.s2 small {
  color: #fff;
  opacity: .78
}

.profit-card .ic,
.tool-card .ic,
.audience-card .ic,
.scene-card .ic {
  color: #D84C20;
  background: linear-gradient(145deg, #FFF2E8, #FFE1CE);
  box-shadow: inset 0 1px 0 #fff, 0 8px 18px rgba(208, 91, 40, .10)
}

.scene-card .ic {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px
}

.ic svg,
.logo-box svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.scene-card .ic svg {
  width: 27px;
  height: 27px
}

.cert-item .logo-box svg {
  width: 42px;
  height: 42px;
  color: #D95023;
  stroke-width: 1.55
}

.commerce-section {
  padding: 92px 0 104px;
  background: #FFFCF8
}

.commerce-section .section-head {
  margin-bottom: 42px
}

.commerce-gallery {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  grid-template-rows: 245px 245px;
  gap: 20px
}

.commerce-photo {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid #EEE4DA;
  background: #F4EEE7;
  box-shadow: 0 18px 46px rgba(74, 54, 38, .10)
}

.commerce-photo:first-child {
  grid-row: 1/3
}

.commerce-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .65s cubic-bezier(.2, .7, .2, 1)
}

.commerce-photo:hover img {
  transform: scale(1.035)
}

.commerce-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(38, 30, 24, .72) 100%);
  pointer-events: none
}

.commerce-caption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: #fff
}

.commerce-caption span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(240, 90, 40, .92);
  backdrop-filter: blur(8px);
  margin-bottom: 8px
}

.commerce-caption h3 {
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 5px;
  font-weight: 750
}

.commerce-caption p {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, .82)
}

.commerce-photo:first-child .commerce-caption {
  left: 30px;
  bottom: 28px
}

.commerce-photo:first-child .commerce-caption h3 {
  font-size: 28px
}

.commerce-note {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-top: 24px;
  color: #7D756E;
  font-size: 14px
}

.commerce-note span {
  position: relative;
  padding-left: 14px
}

.commerce-note span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #F05A28
}

.final-cta {
  background: linear-gradient(125deg, #E84C20 0%, #F36D2F 52%, #FF9D4C 100%);
  padding: 92px 0
}

.final-cta .btn {
  color: #D94C20
}

@media(max-width:980px) {
  .commerce-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 360px 230px
  }

  .commerce-photo:first-child {
    grid-column: 1/3;
    grid-row: auto
  }
}

@media(max-width:620px) {
  .pain-card {
    min-height: 0;
    padding: 82px 20px 20px
  }

  .pain-card .ic {
    left: 20px;
    top: 20px
  }

  .pain-section {
    padding: 62px 0
  }

  .commerce-section {
    padding: 68px 0 74px
  }

  .commerce-gallery {
    display: flex;
    flex-direction: column;
    gap: 14px
  }

  .commerce-photo,
  .commerce-photo:first-child {
    height: 250px;
    border-radius: 22px
  }

  .commerce-photo:first-child {
    height: 330px
  }

  .commerce-caption,
  .commerce-photo:first-child .commerce-caption {
    left: 20px;
    right: 20px;
    bottom: 18px
  }

  .commerce-photo:first-child .commerce-caption h3 {
    font-size: 23px
  }

  .commerce-note {
    display: none
  }
}

/* ===== Premium business visual system ===== */
:root {
  --brand: #C96838;
  --brand2: #E6A06F;
  --brand3: #243029;
  --brand-soft: #FBF0E9;
  --text: #222824;
  --text2: #69716B;
  --bg: #F7F6F2;
  --bg2: #F1EFEA;
  --line: #E8E4DD
}

html,
body {
  background: #F7F6F2;
  color: var(--text)
}

.container {
  max-width: 1280px
}

.section {
  padding: 118px 0
}

.section.bg2 {
  background: #F2F0EB
}

.section-head {
  margin-bottom: 60px
}

.section-head .eyebrow {
  padding: 7px 15px;
  border: 1px solid #EAD6C8;
  background: #FBF4EE;
  color: #A95530;
  letter-spacing: 1.4px
}

.section-head .eyebrow::before {
  width: 5px;
  height: 5px;
  background: #C96838;
  box-shadow: none
}

.section-head h2 {
  font-size: 44px;
  letter-spacing: -1.5px;
  color: #202622
}

.section-head h2::after {
  width: 34px;
  height: 2px;
  margin-top: 20px;
  background: #C96838
}

.section-head .sub {
  font-size: 16px;
  line-height: 29px;
  color: #7A817C
}

.hero {
  min-height: 720px;
  padding: 92px 0 82px;
  background: linear-gradient(135deg, #F9F7F2 0%, #F2EEE6 100%)
}

.hero::before {
  opacity: .22;
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent, black);
  -webkit-mask-image: linear-gradient(90deg, transparent, black)
}

.hero::after {
  right: -220px;
  top: -250px;
  width: 610px;
  height: 610px;
  border-color: rgba(172, 117, 81, .10);
  box-shadow: 0 0 0 92px rgba(172, 117, 81, .018), 0 0 0 184px rgba(172, 117, 81, .012)
}

.hero-inner {
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  min-height: 550px
}

.hero-text .badge {
  background: rgba(255, 255, 255, .72);
  border: 1px solid #E5D9CF;
  color: #95502E;
  box-shadow: none
}

.hero-text .badge::before {
  background: #C96838;
  box-shadow: none
}

.hero-text h1 {
  font-size: 58px;
  line-height: 1.12;
  letter-spacing: -2.7px
}

.hero-text h1 .accent {
  background: linear-gradient(90deg, #B95B31, #D98252);
  -webkit-background-clip: text;
  background-clip: text
}

.hero-text .lead {
  font-size: 17px;
  line-height: 31px;
  color: #727A74
}

.hero-cta {
  border-radius: 14px;
  background: #222D27;
  box-shadow: 0 13px 30px rgba(35, 45, 39, .15)
}

.hero-cta-secondary {
  border-radius: 14px;
  background: rgba(255, 255, 255, .8);
  border-color: #DED9D1
}

.hero-trust {
  border-color: #DEDAD3;
  gap: 28px
}

.hero-trust b {
  color: #29332E
}

.hero-trust span::before {
  background: #C96838
}

.hero-ecosystem {
  height: 535px;
  border-radius: 40px;
  overflow: visible;
  perspective: none;
  filter: none
}

.hero-ecosystem>.eco-stage,
.hero-ecosystem>.eco-tag,
.hero-ecosystem>.eco-stat {
  display: none
}

.hero-real-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 40px;
  box-shadow: 0 32px 80px rgba(55, 45, 37, .17);
  border: 8px solid rgba(255, 255, 255, .82)
}

.hero-photo-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(54, 44, 36, .14);
  color: #35403A;
  font-size: 12px;
  font-weight: 700
}

.hero-photo-chip i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #C96838
}

.hero-photo-chip.chip-a {
  left: -24px;
  bottom: 70px
}

.hero-photo-chip.chip-b {
  right: -18px;
  top: 58px
}

.hero-photo-chip.chip-b i {
  background: #799079
}

.market-row {
  gap: 14px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none
}

.market-card {
  background: #fff;
  border: 1px solid #E9E5DF;
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 12px 34px rgba(59, 50, 43, .045)
}

.market-card+.market-card {
  border-left: 1px solid #E9E5DF
}

.market-card .num {
  background: none;
  color: #B85B32;
  -webkit-text-fill-color: currentColor
}

.market-card::before {
  width: 3px;
  top: 28px;
  bottom: 28px;
  background: #D88A5D
}

.commerce-section {
  padding: 112px 0;
  background: #F7F6F2
}

.commerce-gallery {
  gap: 18px;
  grid-template-rows: 255px 255px
}

.commerce-photo {
  border-radius: 30px;
  border: 7px solid #fff;
  box-shadow: 0 22px 55px rgba(55, 46, 39, .10)
}

.commerce-photo::after {
  background: linear-gradient(180deg, transparent 50%, rgba(24, 29, 26, .66) 100%)
}

.commerce-caption span {
  background: rgba(176, 91, 49, .86);
  font-weight: 600
}

.commerce-caption h3 {
  font-weight: 650;
  letter-spacing: -.4px
}

.pain-section {
  padding: 100px 0;
  background: #fff
}

.pain-grid {
  gap: 16px
}

.pain-card {
  min-height: 158px;
  padding: 28px 30px 26px 100px;
  border: 1px solid #ECE8E2;
  border-radius: 26px;
  background: #FBFAF8;
  box-shadow: none
}

.pain-card .ic {
  left: 28px;
  top: 30px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #F5E9E0;
  box-shadow: none;
  color: #B85B32
}

.pain-card::after {
  color: #C6BCB3
}

.pain-card:hover {
  transform: translateY(-3px);
  border-color: #E1D5CB;
  box-shadow: 0 16px 38px rgba(60, 52, 45, .07)
}

.feature-row {
  gap: 86px;
  margin-bottom: 108px
}

.feature-text .label {
  background: #F8EEE7;
  border-color: #EBD8CA;
  color: #A95330
}

.feature-text h3 {
  font-size: 35px;
  letter-spacing: -.7px;
  color: #222824
}

.feature-text .desc {
  color: #737A75
}

.feature-list li {
  border-color: #EAE6E0
}

.feature-list li::before {
  background: #C96838;
  box-shadow: 0 0 0 4px #F3E4DA
}

.feature-visual {
  min-height: 385px;
  padding: 42px;
  border: 1px solid #E5DED5;
  border-radius: 32px;
  background: linear-gradient(145deg, #F8F4EE, #EEE8E0);
  box-shadow: 0 24px 58px rgba(64, 53, 44, .085);
  transform: none
}

.feature-row.reverse .feature-visual {
  transform: none
}

.feature-visual::before {
  color: #8D8178;
  letter-spacing: 1.4px
}

.feature-visual::after {
  color: #BFA18E
}

.feature-visual .mock {
  background: rgba(255, 255, 255, .88);
  border: 1px solid #E8E2DA;
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(65, 53, 43, .06)
}

.feature-visual .mock-tag {
  background: #29342E
}

.flow-row {
  gap: 8px;
  padding: 20px;
  background: #F4F1EC;
  border: 1px solid #E3DDD5;
  border-radius: 30px;
  box-shadow: none
}

.flow-step {
  min-height: 138px;
  border-radius: 18px;
  border: 1px solid #E7E2DB;
  box-shadow: none
}

.flow-step .step-num {
  background: #29342E;
  box-shadow: none
}

.flow-arrow {
  color: #B8AEA4
}

.profit-card,
.audience-card,
.tool-card,
.scene-card {
  border: 1px solid #EAE6E0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(60, 51, 44, .04)
}

.profit-card:hover,
.audience-card:hover,
.tool-card:hover,
.scene-card:hover {
  box-shadow: 0 18px 40px rgba(60, 51, 44, .08);
  border-color: #DDD5CD
}

.profit-card .ic,
.tool-card .ic,
.audience-card .ic,
.scene-card .ic {
  background: #F5EAE2;
  color: #AD5732;
  box-shadow: none
}

.tool-card .tag,
.audience-card .role {
  background: #F7EEE8;
  color: #9D5332
}

.faq-item {
  border: 1px solid #E9E5DF;
  border-radius: 22px;
  box-shadow: none
}

.faq-item:hover {
  box-shadow: 0 14px 34px rgba(61, 52, 44, .06)
}

/* ===== 信任背书 ===== */
.trust-section {
  padding: 60px 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.trust-icon {
  font-size: 32px;
}

.trust-label {
  font-size: 13px;
  color: var(--text-sub);
  font-weight: 500;
  line-height: 1.4;
}

.cert-section {
  background: #F1EFEA
}

.cert-item .logo-box {
  transform: none;
  background: #fff;
  border: 1px solid #E8E2DA;
  box-shadow: 0 12px 28px rgba(70, 58, 48, .06)
}

.cert-item .logo-box svg {
  color: #A85A38
}

.final-cta {
  padding: 102px 0;
  background: linear-gradient(135deg, #F0ECE4, #E9E2D8);
  color: #26302A
}

.final-cta::after {
  border-color: rgba(104, 83, 65, .08);
  box-shadow: 0 0 0 70px rgba(104, 83, 65, .018), 0 0 0 140px rgba(104, 83, 65, .012)
}

.final-cta h2 {
  color: #252D28
}

.final-cta p {
  color: #737973
}

.final-cta .btn {
  background: #26312B;
  color: #fff;
  border: 0;
  border-radius: 14px
}

@media(max-width:980px) {
  .hero-inner {
    gap: 42px
  }

  .hero-ecosystem {
    height: 480px
  }

  .hero-photo-chip.chip-a {
    left: 18px
  }

  .hero-photo-chip.chip-b {
    right: 18px
  }

  .section {
    padding: 88px 0
  }

  .section-head h2 {
    font-size: 36px
  }

  .feature-row {
    gap: 38px
  }
}

@media(max-width:620px) {
  .hero {
    padding-top: 62px
  }

  .hero-text h1 {
    font-size: 42px
  }

  .hero-ecosystem {
    height: 390px
  }

  .hero-real-photo {
    border-radius: 28px;
    border-width: 5px
  }

  .hero-photo-chip {
    font-size: 11px;
    padding: 10px 12px
  }

  .hero-photo-chip.chip-a {
    left: 12px;
    bottom: 18px
  }

  .hero-photo-chip.chip-b {
    right: 12px;
    top: 18px
  }

  .commerce-photo,
  .commerce-photo:first-child {
    border-width: 5px
  }

  .section-head h2 {
    font-size: 31px
  }

  .market-card+.market-card {
    border-left: 1px solid #E9E5DF
  }

  .feature-visual {
    padding: 36px 18px 20px
  }
}

/* 7-step process stays on one line */
.flow-row {
  flex-wrap: nowrap !important;
  justify-content: space-between;
  gap: 0;
  overflow: visible
}

.flow-step {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
  padding: 21px 8px
}

.flow-arrow {
  display: flex !important;
  flex: 0 0 26px;
  padding: 0;
  justify-content: center
}

@media(max-width:760px) {
  .flow-row {
    justify-content: flex-start;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    padding: 18px 14px
  }

  .flow-row::-webkit-scrollbar {
    display: none
  }

  .flow-step {
    flex: 0 0 122px;
    min-width: 122px
  }

  .flow-arrow {
    flex-basis: 22px
  }

  .flow-step h5 {
    white-space: nowrap
  }
}

/* image-led business cards */
.visual-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.visual-card {
  position: relative;
  height: 330px;
  border-radius: 28px;
  overflow: hidden;
  background: #D8D4CD;
  box-shadow: 0 20px 50px rgba(52, 45, 39, .10);
  border: 6px solid rgba(255, 255, 255, .92);
  isolation: isolate
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .65s cubic-bezier(.2, .7, .2, 1)
}

.visual-card:hover img {
  transform: scale(1.035)
}

.visual-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 27, 24, .02) 34%, rgba(22, 27, 24, .86) 100%)
}

.visual-card-copy {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 24px;
  color: #fff
}

.visual-card-copy .kicker {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(201, 104, 56, .9);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  margin-bottom: 10px
}

.visual-card-copy h4 {
  font-size: 24px;
  line-height: 1.25;
  margin: 0 0 7px;
  color: #fff;
  letter-spacing: -.3px
}

.visual-card-copy p {
  font-size: 14px;
  line-height: 21px;
  margin: 0;
  color: rgba(255, 255, 255, .80)
}

.scene-carousel-shell {
  position: relative
}

.scene-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 2px 26px
}

.scene-carousel::-webkit-scrollbar {
  display: none
}

.scene-photo-card {
  position: relative;
  flex: 0 0 calc((100% - 36px)/3);
  height: 390px;
  border-radius: 28px;
  overflow: hidden;
  scroll-snap-align: start;
  background: #D8D4CD;
  box-shadow: 0 18px 44px rgba(54, 46, 39, .09);
  border: 5px solid #fff;
  isolation: isolate
}

.scene-photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .6s ease
}

.scene-photo-card:hover img {
  transform: scale(1.035)
}

.scene-photo-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(20, 26, 22, .88) 100%)
}

.scene-photo-copy {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: #fff
}

.scene-photo-copy .num {
  font-size: 11px;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, .68);
  margin-bottom: 7px
}

.scene-photo-copy h4 {
  font-size: 23px;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 6px
}

.scene-photo-copy p {
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, .78);
  margin: 0
}

.carousel-btn {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 46px;
  height: 46px;
  margin-top: -36px;
  border: 1px solid rgba(227, 219, 211, .9);
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  color: #2A342E;
  font-size: 27px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(50, 43, 37, .12);
  transition: .25s
}

.carousel-btn:hover {
  background: #29342E;
  color: #fff;
  transform: scale(1.04)
}

.carousel-btn.prev {
  left: -23px
}

.carousel-btn.next {
  right: -23px
}

@media(max-width:980px) {
  .visual-card-grid {
    grid-template-columns: 1fr
  }

  .visual-card {
    height: 360px
  }

  .scene-photo-card {
    flex-basis: calc((100% - 18px)/2)
  }

  .carousel-btn.prev {
    left: 8px
  }

  .carousel-btn.next {
    right: 8px
  }
}

@media(max-width:620px) {
  .visual-card {
    height: 300px;
    border-radius: 24px
  }

  .visual-card-copy {
    left: 20px;
    right: 20px;
    bottom: 19px
  }

  .scene-photo-card {
    flex-basis: 84%;
    height: 350px
  }

  .carousel-btn {
    display: none
  }
}

/* Official-product-style system showcases */
.feature-visual.product-stage {
  min-height: 430px;
  padding: 0;
  border: 0;
  background: linear-gradient(145deg, #F1EEE9 0%, #E9E5DE 100%);
  box-shadow: 0 26px 64px rgba(55, 47, 41, .10);
  overflow: hidden
}

.feature-visual.product-stage::before,
.feature-visual.product-stage::after {
  display: none
}

.product-stage .stage-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 16%, rgba(212, 154, 112, .22), transparent 34%), radial-gradient(circle at 18% 88%, rgba(122, 145, 130, .14), transparent 34%);
  pointer-events: none
}

.product-stage .screen-desktop {
  position: absolute;
  z-index: 1;
  left: 5%;
  right: 5%;
  top: 12%;
  height: 76%;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 6px solid rgba(255, 255, 255, .94);
  box-shadow: 0 22px 48px rgba(45, 40, 36, .16)
}

.product-stage .screen-desktop img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top left
}

.product-stage .phone {
  position: absolute;
  z-index: 3;
  width: 27%;
  height: 76%;
  top: 12%;
  border: 7px solid #fff;
  border-radius: 25px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 44px rgba(45, 40, 36, .20)
}

.product-stage .phone img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center
}

.product-stage .phone.p1 {
  left: 14%;
  transform: rotate(-3deg)
}

.product-stage .phone.p2 {
  right: 13%;
  top: 16%;
  transform: rotate(3deg)
}

.product-stage .phone.single {
  width: 31%;
  left: auto;
  right: 8%;
  top: 13%;
  height: 74%;
  transform: rotate(2deg)
}

.product-stage .screen-desktop.with-phone {
  left: 6%;
  right: 21%;
  top: 15%;
  height: 69%
}

.product-stage .float-chip {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .88);
  box-shadow: 0 12px 28px rgba(48, 42, 37, .13);
  font-size: 11px;
  font-weight: 700;
  color: #344039;
  backdrop-filter: blur(10px);
  white-space: nowrap
}

.product-stage .float-chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #C96838
}

.product-stage .chip-a {
  left: 6%;
  bottom: 7%
}

.product-stage .chip-b {
  right: 6%;
  top: 7%
}

.product-stage .chip-c {
  right: 7%;
  bottom: 8%
}

.product-stage .chip-green::before {
  background: #78917E
}

.feature-visual.product-stage.showcase-image {
  min-height: 0;
  aspect-ratio: 3/2;
  background: #F5F1EA;
  border: 1px solid #E9E0D6;
  border-radius: 30px;
  padding: 0;
  box-shadow: 0 26px 62px rgba(57, 48, 40, .11)
}

.feature-visual.product-stage.showcase-image>img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit
}

.feature-visual.product-stage.fulfillment-showcase {
  position: relative;
  overflow: hidden
}

.feature-visual.product-stage.fulfillment-showcase>img.fulfillment-base {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit
}

.feature-visual.product-stage.fulfillment-showcase .delivery-original {
  position: absolute;
  z-index: 3;
  left: auto;
  right: 6.7%;
  top: 7.2%;
  width: 154px;
  height: 86.2%;
  overflow: hidden;
  border-radius: 22px;
  background: #F7F7F7;
  box-shadow: 0 12px 28px rgba(48, 42, 37, .14)
}

.feature-visual.product-stage.fulfillment-showcase .delivery-original img {
  width: 100%;
  height: auto;
  display: block
}

/* ===== Footer ===== */
.footer {
  padding: 60px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  max-width: 280px;
}

.footer-phone {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
  color: var(--steel-light);
}

.footer-col-title {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--steel-light);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

@media(max-width:620px) {
  .feature-visual.product-stage.fulfillment-showcase .delivery-original {
    right: 6.2%;
    width: 82px;
    border-radius: 13px
  }
}

.feature-visual.product-stage.dual-stats-stage {
  min-height: 0;
  aspect-ratio: 3/2;
  position: relative;
  padding: 0;
  background: radial-gradient(circle at 82% 18%, rgba(201, 104, 56, .12), transparent 26%), radial-gradient(circle at 12% 84%, rgba(127, 154, 134, .10), transparent 27%), linear-gradient(145deg, #FBF8F3 0%, #F1ECE5 100%);
  border: 1px solid #E9E0D6;
  border-radius: 30px;
  box-shadow: 0 26px 62px rgba(57, 48, 40, .11);
  overflow: hidden
}

.feature-visual.product-stage.dual-stats-stage::before {
  content: "";
  display: block;
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 5%;
  height: 22%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(74, 64, 55, .12), rgba(74, 64, 55, 0) 70%);
  filter: blur(18px);
  opacity: .6
}

.feature-visual.product-stage.dual-stats-stage::after {
  content: "●  经营数据";
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 3;
  left: 8%;
  bottom: 7%;
  height: 32px;
  padding: 0 13px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .93);
  border: 1px solid #EEE4DA;
  box-shadow: 0 9px 22px rgba(53, 45, 38, .08);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .05em;
  color: #5C655F
}

.dual-stats-stage .stat-screen {
  position: absolute;
  z-index: 2;
  background: #fff;
  border: 5px solid rgba(255, 255, 255, .98);
  box-shadow: 0 20px 46px rgba(54, 45, 38, .16);
  overflow: hidden
}

.dual-stats-stage .stat-screen.desktop {
  left: 6%;
  top: 14%;
  width: 73%;
  height: 72%;
  border-radius: 20px;
  padding-top: 27px;
  background: #F9FAFB
}

.dual-stats-stage .stat-screen.desktop::before {
  content: "经营数据中心";
  position: absolute;
  z-index: 3;
  left: 41px;
  top: 0;
  height: 27px;
  display: flex;
  align-items: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #707772
}

.dual-stats-stage .stat-screen.desktop::after {
  content: "•••";
  position: absolute;
  z-index: 3;
  left: 12px;
  top: 1px;
  color: #C96838;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 22px
}

.dual-stats-stage .stat-screen.mobile {
  right: 5.5%;
  top: 10%;
  width: 27%;
  height: 82%;
  border-radius: 27px;
  border-width: 7px;
  box-shadow: 0 24px 52px rgba(54, 45, 38, .2);
  background: #fff
}

.dual-stats-stage .stat-screen.mobile::before {
  content: "";
  position: absolute;
  z-index: 4;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 26%;
  height: 5px;
  border-radius: 6px;
  background: rgba(31, 40, 35, .72)
}

.dual-stats-stage .stat-screen img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #fff
}

.dual-stats-stage .stat-screen.desktop img {
  height: calc(100% - 27px);
  object-fit: cover;
  object-position: top center
}

.dual-stats-stage .stat-screen.mobile img {
  object-fit: cover;
  object-position: top center
}

.dual-stats-stage .stat-label {
  position: absolute;
  z-index: 4;
  top: 5%;
  padding: 8px 12px;
  border-radius: 13px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid #EEE4DA;
  box-shadow: 0 9px 22px rgba(53, 45, 38, .08);
  font-size: 9px;
  font-weight: 700;
  color: #4B544F;
  white-space: nowrap
}

.dual-stats-stage .stat-label::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: #C96838;
  vertical-align: 1px
}

.dual-stats-stage .label-desktop {
  left: 16%
}

.dual-stats-stage .label-mobile {
  right: 8%
}

.dual-stats-stage .label-mobile::before {
  background: #7F9A86
}

@media(max-width:620px) {
  .dual-stats-stage .stat-screen.desktop {
    left: 4%;
    top: 15%;
    width: 73%;
    height: 70%;
    border-radius: 14px;
    padding-top: 20px
  }

  .dual-stats-stage .stat-screen.desktop::before {
    left: 30px;
    height: 20px;
    font-size: 7px
  }

  .dual-stats-stage .stat-screen.desktop::after {
    left: 8px;
    top: -1px;
    font-size: 10px
  }

  .dual-stats-stage .stat-screen.mobile {
    right: 4%;
    top: 10%;
    width: 29%;
    height: 80%;
    border-radius: 18px;
    border-width: 4px
  }

  .dual-stats-stage .stat-screen.desktop img {
    height: calc(100% - 20px)
  }

  .dual-stats-stage .stat-label {
    top: 5%;
    padding: 5px 8px;
    font-size: 7px
  }

  .dual-stats-stage .label-desktop {
    left: 12%
  }

  .dual-stats-stage .label-mobile {
    right: 5%
  }

  .feature-visual.product-stage.dual-stats-stage::after {
    height: 24px;
    padding: 0 9px;
    font-size: 7px
  }
}

@media(max-width:980px) {
  .feature-visual.product-stage {
    min-height: 410px
  }

  .product-stage .phone {
    width: 25%
  }
}

@media(max-width:620px) {
  .feature-visual.product-stage {
    min-height: 360px;
    padding: 0
  }

  .product-stage .screen-desktop {
    left: 4%;
    right: 4%;
    top: 13%;
    height: 70%;
    border-width: 4px;
    border-radius: 16px
  }

  .product-stage .screen-desktop.with-phone {
    right: 18%
  }

  .product-stage .phone {
    width: 34%;
    height: 72%;
    border-width: 5px;
    border-radius: 20px
  }

  .product-stage .phone.p1 {
    left: 10%
  }

  .product-stage .phone.p2 {
    right: 9%
  }

  .product-stage .phone.single {
    width: 36%;
    right: 5%
  }

  .product-stage .float-chip {
    padding: 8px 10px;
    font-size: 10px
  }

  .product-stage .chip-a {
    left: 5%;
    bottom: 6%
  }

  .product-stage .chip-b {
    right: 4%;
    top: 5%
  }

  .product-stage .chip-c {
    right: 5%;
    bottom: 7%
  }
}