@charset "utf-8";

/* ---------- 作用域 & 通用 ---------- */
.fm {
  font-family: var(--font-sans);
  color: var(--ink);
  overflow: hidden;
}
.fm .fm-wrap {
  margin: 0;
  padding: 0 150px;
  box-sizing: border-box;
}
.fm-sec {
  padding: 100px 0;
  position: relative;
}
.fm-sec.bg-soft {
  background: var(--bg-soft);
}

/* 区块标题组 */
.fm-title {
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: var(--fw-bold);
  color: var(--ink);
  line-height: var(--lh-tight);
  letter-spacing: -0.01em;
  margin: 0;
}
.fm-title .center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.fm-title .fm-ac,
.fm-ac {
  color: var(--brand);
}
.fm .fm-title-sub {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--muted);
  line-height: var(--lh-base);
  margin: var(--sp-5) auto 0;
}
.fm-title-sub.center {
  text-align: center;
}

/* 图片占位容器（用户自行替换实图） */
.fm-media {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-sizing: border-box;
}
.fm-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   1. HERO
   ============================================================ */
.fm-hero {
  position: relative;
  padding: 110px 0 70px;
  overflow: hidden;
}
.fm-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.fm-hero h1 {
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: var(--fw-bold);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 auto;
}
.fm .fm-hero-desc {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--ink-2);
  line-height: var(--lh-base);
  margin: var(--sp-5) auto 0;
}
.fm-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: center;
  margin-top: var(--sp-10);
}
.fm-hero-media {
  margin-top: var(--sp-12);
  aspect-ratio: 1619 / 718;
  min-height: 572px;
  border-radius: var(--sp-12);
}

/* ============================================================
   2. SUPPLY CHAIN CONNECTOR
   两列交错（zigzag）：左列 2 项 / 右列 3 项，Technical 为灰卡+蓝竖条
   ============================================================ */
.fm .fm-connector {
  background: #fff;
}

.fm .fm-vp-title {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: var(--fw-bold);
  line-height: var(--lh-base);
  letter-spacing: -0.01em;
  margin: 0;
}
.fm-vp-ac {
  color: var(--brand);
}
.fm-vp-line {
  color: var(--ink);
}

/* 交错网格：3 行，row1 右列独占（左空）制造错位 */
.fm-vp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(40px, 5vw, 90px);
  align-items: stretch;
  margin-top: var(--sp-5);
}
.fm-vp-left {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.fm-vp-right {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.fm-vp-item {
  position: relative;
  flex: 1;
}

/* Technical 项：浅灰卡 + 左侧蓝色竖条 */
.fm-vp-card {
  border-radius: 24px;
  padding: 36px 44px 36px 56px; /* 左 padding 让位蓝竖条 */
  height: 100%;
  display: flex;
  flex-direction: column;
}
.fm-vp-grid .fm-vp--1 {
  background: var(--bg-soft);
}
.fm-vp-card .fm-vp-desc {
  flex: 1;
  margin-top: var(--sp-5);
}

.fm-vp--1 .fm-vp-bar {
  position: absolute;
  left: 24px;
  top: 48px;
  bottom: 48px;
  width: 11px;
  background: var(--brand);
  border-radius: 20px;
}

.fm-vp-ic {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
}
.fm-vp-ic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fm-vp-name {
  font-size: clamp(22px, 1.9vw, 30px);
  font-weight: var(--fw-semi);
  color: var(--ink);
  line-height: var(--lh-tight);
  margin: 0 0 var(--sp-4);
}
.fm-vp-desc {
  font-size: var(--fs-lg);
  color: #666;
  line-height: var(--lh-base);
  margin: 0;
}

.fm .fm-vp--title {
  padding-top: 12px;
}

/* ============================================================
   3. STABILITY & TRUST（5 卡交错：上 3 下 2 偏移）
   ============================================================ */

.fm-trust-grid {
  margin-top: var(--sp-12);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}
.fm-trust-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}
.fm-trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.fm-trust-ic {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
}
.fm-trust-ic svg {
  width: 32px;
  height: 32px;
}
.fm-trust-card h3 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semi);
  margin: 0 0 var(--sp-3);
  line-height: var(--lh-tight);
}
.fm-trust-card p {
  font-size: var(--fs-md);
  color: var(--muted);
  line-height: var(--lh-base);
  margin: 0;
}

/* ============================================================
   4. SELF-PROCUREMENT vs SOLUTION
   ============================================================ */
.fm-grids {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  margin-top: var(--sp-12);
  align-items: stretch;
}
.fm-pain-grid {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.fm-pain-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--sp-5);
}
.fm-pain-title img {
  width: 88px;
  height: 88px;
  border-radius: 24px;
}

.fm-pain-col {
  border-radius: var(--radius);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.fm-pain-col--bad {
  background: #fff;
  border: 1px solid var(--line);
}
.fm-pain-col--good {
  background:
    radial-gradient(
      120% 80% at 100% 0%,
      rgba(0, 182, 230, 0.12) 0%,
      rgba(0, 140, 214, 0) 55%
    ),
    linear-gradient(180deg, #f2fbff 0%, #ffffff 100%);
  border: 1px solid #cfe8f6;
  box-shadow: var(--shadow-sm);
}
.fm-pain-head {
  font-size: var(--fs-5xl);
  font-weight: var(--fw-bold);
  margin: 0 0 var(--sp-6);
  line-height: var(--lh-tight);
}

.fm-pain-col--good .fm-pain-head {
  color: var(--brand);
}
.fm-pain-col ul {
  list-style: none;
  margin: 40px 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  flex: 1;
}
.fm-pain-col li {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: var(--sp-5);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.fm-pain-col li:last-child {
  border-bottom: none;
}
.fm-pain-col li img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.fm-pain-item {
  flex: 1;
}

.fm-pain-col h4 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-semi);
  margin: 0 0 4px;
  line-height: var(--lh-tight);
}
.fm-pain-col p {
  font-size: var(--fs-lg);
  color: var(--muted);
  line-height: var(--lh-base);
  margin: 12px 0 0 0;
}

/* ============================================================
   5. FIVE-MODULE CLOSED LOOP（5 卡交错：上 3 短 下 2 长偏移）
   ============================================================ */
.fm .fm-modules {
  background: #fff;
}
.fm-modules-grid {
  margin-top: var(--sp-12);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-6);
}
.fm-module {
  background: #f7f6f4;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}
/* 第一行 3 张各占 2 列（1-2 / 3-4 / 5-6） */
.fm-module:nth-of-type(-n + 3) {
  grid-column: span 2;
}
/* 第二行 2 张蜂巢式偏移下沉，各占 2 列、起始于第 2 / 第 4 列 */
.fm-module:nth-of-type(n + 4) {
  grid-column: span 2;
  margin-top: var(--sp-10);
}
.fm-module:nth-of-type(4) {
  grid-column: 2 / span 2;
}
.fm-module:nth-of-type(5) {
  grid-column: 4 / span 2;
}
.fm-module:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.fm-module-ic {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
}
.fm-module-ic svg {
  width: 44px;
  height: 44px;
}
.fm-module h3 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-semi);
  margin: 0 0 var(--sp-4);
  line-height: var(--lh-tight);
}
.fm-module ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fm-module ul li {
  position: relative;
  padding-left: 22px;
  font-size: var(--fs-md);
  color: var(--ink-2);
  line-height: var(--lh-snug);
}
.fm-module ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}
.fm-module ul li b {
  color: var(--ink);
  font-weight: var(--fw-semi);
}

/* ============================================================
   6. EVERYTHING YOUR SHELVES NEED  （横向滑动）
   ============================================================ */

/* 标题行：左标题 + 右滑动箭头 */
.fm-shelf-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-6);
}

.fm-shelf-head-text .fm-title {
  text-align: left;
}
.fm-shelf-head-text .fm-title-sub {
  margin-top: var(--sp-4);
}
.fm-shelf-nav {
  display: flex;
  gap: var(--sp-3);
  flex: 0 0 auto;
}
.fm-shelf-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background var(--dur) var(--ease),
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}
.fm-shelf-arrow:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}
.fm-shelf-arrow:active {
  transform: translateY(0);
}
.fm-shelf-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* 横向滑动轨道：视口内展示 3.5 张，隐藏滚动条 */
.fm-shelves-grid {
  --shelf-gap: 24px;
  display: flex;
  flex-wrap: nowrap;
  gap: var(--shelf-gap);
  margin-top: var(--sp-10);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: var(--sp-4);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.fm-shelves-grid::-webkit-scrollbar {
  display: none;
}
.fm-shelf-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  flex: 0 0 calc((100% - 3 * var(--shelf-gap)) / 3.5); /* 视口内 3.5 张 */
  min-width: 0;
  scroll-snap-align: start;
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}
.fm-shelf-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.fm-shelf-media {
  aspect-ratio: 504 / 349;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
}
.fm-shelf-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fm-shelf-card h3 {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-semi);
  margin: 0;
  padding: var(--sp-5) var(--sp-6) 0;
  line-height: var(--lh-tight);
}
.fm-shelf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: var(--sp-3) var(--sp-6) var(--sp-6);
}
.fm-shelf-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}

/* 响应式：窄屏减少单屏可见张数 */
@media (max-width: 1199px) {
  .fm-shelf-card {
    flex: 0 0 calc((100% - 2 * var(--shelf-gap)) / 2.5);
  }
}
@media (max-width: 959px) {
  .fm-shelf-card {
    flex: 0 0 calc((100% - 1 * var(--shelf-gap)) / 1.5);
  }
}
@media (max-width: 767px) {
  .fm-shelf-card {
    flex: 0 0 calc((100% - 1 * var(--shelf-gap)) / 1.3);
  }
  .fm-shelf-head {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-5);
  }
}

/* ============================================================
   7. FIVEFOLD PROTECTION
   ============================================================ */
/* 标题行：左标题 + 右滑动箭头 */
.fm .fm-protect {
  background: #fff;
}
.fm-protect-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-6);
}

.fm-protect-head-text .fm-title {
  text-align: left;
}
.fm-protect-head-text .fm-title-sub {
  margin-top: var(--sp-4);
}
.fm-protect-nav {
  display: flex;
  gap: var(--sp-3);
  flex: 0 0 auto;
}
.fm-protect-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background var(--dur) var(--ease),
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}
.fm-protect-arrow:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}
.fm-protect-arrow:active {
  transform: translateY(0);
}
.fm-protect-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* 横向滑动轨道：视口内展示 3.5 张，隐藏滚动条 */
.fm-protect-grid {
  --protect-gap: 24px;
  display: flex;
  flex-wrap: nowrap;
  gap: var(--protect-gap);
  margin-top: var(--sp-10);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: var(--sp-4);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.fm-protect-grid::-webkit-scrollbar {
  display: none;
}
.fm-protect-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px 32px;
  overflow: hidden;
  flex: 0 0 calc((100% - 3 * var(--protect-gap)) / 3.5); /* 视口内 3.5 张 */
  min-width: 0;
  scroll-snap-align: start;
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

/* 响应式：窄屏减少单屏可见张数 */
@media (max-width: 1199px) {
  .fm-protect-card {
    flex: 0 0 calc((100% - 2 * var(--protect-gap)) / 2.5);
  }
}
@media (max-width: 959px) {
  .fm-protect-card {
    flex: 0 0 calc((100% - 1 * var(--protect-gap)) / 1.5);
  }
}
@media (max-width: 767px) {
  .fm-protect-card {
    flex: 0 0 calc((100% - 1 * var(--protect-gap)) / 1.3);
  }
  .fm-protect-head {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-5);
  }
}
.fm-protect-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.fm-protect-no {
  position: absolute;
  right: 18px;
  top: 14px;
  font-family: var(--font-mono);
  font-size: 60px;
  font-weight: var(--fw-bold);
  line-height: 1;
  color: rgba(0, 0, 0, 0.05);
  letter-spacing: -0.04em;
}
.fm-protect-ic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f6f6f6;
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
}
.fm-protect-ic svg {
  width: 40px;
  height: 40px;
}
.fm-protect-card h3 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semi);
  margin: 0 0 var(--sp-3);
  line-height: var(--lh-tight);
}
.fm-protect-card p {
  font-size: var(--fs-base);
  color: var(--muted);
  line-height: var(--lh-base);
  margin: 0;
}

/* ============================================================
   8. NEXT: GLOBAL SUPPLY CHAINS
   ============================================================ */
.fm .fm-next {
  background: #fff;
  padding-top: 20px;
}

.fm-next .fm-title {
  text-align: center;
}

.fm-next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  margin-top: var(--sp-12);
}
.fm-next-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px 36px 40px;
  text-align: center;
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}
.fm-next-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.fm-next-ic {
  width: 115px;
  height: 115px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-6);
  color: #fff;
}
.fm-next-ic svg {
  width: 52px;
  height: 52px;
}
.fm-next-ic--blue {
  background: var(--brand);
}
.fm-next-ic--amber {
  background: #f3a323;
}
.fm-next-ic--green {
  background: #3bbf7f;
}
.fm-next-card h3 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-semi);
  margin: 0 0 var(--sp-4);
  line-height: var(--lh-tight);
}
.fm-next-card p {
  font-size: var(--fs-lg);
  color: var(--muted);
  line-height: var(--lh-base);
  margin: 0;
}
.fm-next-cta {
  margin-top: var(--sp-12);
  text-align: center;
}
.fm-next-cta .btn svg {
  width: 20px;
  height: 20px;
}

/* ============================================================
   9. CTA BANNER
   ============================================================ */
.fm-cta {
  padding: 100px 0;
  background: var(--bg-soft);
}
.fm-cta-inner {
  text-align: center;
}
.fm-cta h2 {
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: -0.01em;
  margin: 0 auto;
}
.fm-cta h2 .fm-ac {
  color: var(--brand);
}
.fm-cta p {
  font-size: clamp(16px, 1.6vw, 24px);
  color: var(--ink-2);
  line-height: var(--lh-base);
  margin: var(--sp-5) auto 0;
}
.fm-cta-hotline {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: var(--sp-10);
  padding: 28px 56px;
  border: 1px solid var(--brand);
  border-radius: var(--radius-pill);
  background: rgba(0, 140, 214, 0.06);
}
.fm-cta-hotline-label {
  font-size: var(--fs-lg);
  color: var(--ink-2);
}
.fm-cta-hotline a {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--brand);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.fm-cta-hotline a:hover {
  color: var(--brand-dark);
}
.fm-cta-btn {
  margin-top: var(--sp-12);
  min-width: 300px;
}

/* ============================================================
   响应式
   ============================================================ */
@media (max-width: 1499px) {
  .fm .fm-wrap {
    padding: 0 110px;
  }
}
@media (max-width: 1365px) {
  .fm .fm-wrap {
    padding: 0 80px;
  }
  .fm-trust-grid,
  .fm-modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fm-trust-card,
  .fm-module,
  .fm-module--tall {
    grid-column: span 1 !important;
    margin-top: 0 !important;
  }
}
@media (max-width: 1199px) {
  .fm .fm-wrap {
    padding: 0 48px;
  }
  .fm-grids {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
  .fm-vp-grid {
    grid-template-columns: 1fr;
  }
  .fm-vp-left,
  .fm-vp-right {
    grid-column: 1;
    grid-row: auto;
  }
  .fm-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fm-modules-grid {
    grid-template-columns: 1fr;
  }
  .fm-shelves-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fm-protect-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fm-next-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 959px) {
  .fm .fm-wrap {
    padding: 0 var(--sp-6);
  }
  .fm-trust-grid,
  .fm-shelves-grid,
  .fm-protect-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================================
   响应式 · 手机端（对齐 Figma 375 设计稿）
   整页 #f7f6f4 软底 · 内容卡白底 + #d9d9d9 描边 + 14px 圆角
   区块标题 24px / 卡标题 20px / 正文 14px
   ============================================================ */
@media (max-width: 767px) {
  /* —— 页面基底 —— */
  .fm {
    background: #f7f6f4;
  }
  .fm .fm-wrap {
    padding: 0 14px;
  }
  .fm-sec {
    padding: 56px 0;
    background: transparent;
  }
  .fm .fm-trust,
  .fm .fm-modules,
  .fm .fm-protect,
  .fm .fm-next,
  .fm-connector,
  .fm-cta {
    background: transparent;
  }
  .fm-sec.bg-soft {
    background: transparent;
  }

  /* —— 标题与正文层级 —— */
  .fm .fm-title {
    font-size: 24px;
    text-align: left;
    line-height: 1.3;
  }
  .fm-title.center {
    text-align: center;
  }
  .fm .fm-title-sub {
    font-size: 14px;
    margin-top: 12px;
  }

  /* —— 通用卡片：白底 + #d9d9d9 描边 + 14px 圆角 —— */
  .fm-trust-card,
  .fm-pain-col,
  .fm-next-card {
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 14px;
  }
  .fm-protect-card,
  .fm-shelf-card {
    border: 1px solid #d9d9d9;
    border-radius: 14px;
  }

  /* ============================================================
     1. HERO
     ============================================================ */
  .fm-hero {
    padding: 56px 0 48px;
  }
  .fm .fm-hero h1 {
    font-size: 22px;
    line-height: 1.35;
  }
  .fm .fm-hero-desc {
    font-size: 14px;
    margin-top: 16px;
  }
  .fm-hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
  }
  .fm-hero-actions .btn {
    width: 100%;
    max-width: 340px;
    height: 48px;
    padding: 0 24px;
    font-size: 15px;
    border-radius: 65px;
  }
  /* 「Schedule a demo」白底描边按钮 */
  .fm-hero-actions .btn-outline.ink {
    background: #fff;
    border-color: #a4a4a4;
    color: #111;
  }
  .fm-hero-media {
    margin-top: 36px;
    aspect-ratio: 347 / 260;
    min-height: 0;
    border-radius: 14px;
  }

  /* ============================================================
     2. FIVE CORE VALUE PROPOSITIONS（单列堆叠）
     ============================================================ */
  .fm-vp-grid {
    gap: 28px;
    margin-top: 28px;
  }
  .fm-vp-card {
    background: #fff; /* 遵循 fmcg 移动端白底卡规范 */
    border: 1px solid #d9d9d9;
    border-radius: 14px;
    padding: 28px 22px 28px 44px;
  }
  .fm-vp-bar {
    left: 18px;
    top: 28px;
    bottom: 28px;
  }
  .fm-vp-ic {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }
  .fm-vp-name {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .fm-vp-desc {
    font-size: 14px;
  }

  /* ============================================================
     3. STABILITY & TRUST（单列）
     ============================================================ */
  .fm-trust-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }
  .fm-trust-card {
    grid-column: auto;
    padding: 24px 20px;
  }
  .fm-trust-ic {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    margin-bottom: 16px;
  }
  .fm-trust-ic img {
    width: 30px;
    height: 30px;
    object-fit: contain;
  }
  .fm-trust-card h3 {
    font-size: 20px;
  }
  .fm-trust-card p {
    font-size: 14px;
  }

  /* ============================================================
     4. SELF-PROCUREMENT vs SOLUTION（单列）
     ============================================================ */
  .fm-grids {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
  .fm-pain-grid {
    margin-top: var(--sp-8);
  }
  .fm-pain-col {
    padding: 28px 22px;
  }
  .fm-pain-title img {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }
  .fm-pain-head {
    font-size: var(--fs-2xl);
    margin-bottom: var(--sp-5);
  }
  .fm-pain-col ul {
    margin-top: 28px;
    gap: var(--sp-4);
  }
  .fm-pain-col li {
    padding-bottom: var(--sp-5);
    gap: var(--sp-4);
  }
  .fm-pain-col li img {
    width: 28px;
    height: 28px;
  }
  .fm-pain-col h4 {
    font-size: var(--fs-lg);
  }
  .fm-pain-col p {
    font-size: var(--fs-md);
    margin-top: 6px;
  }

  /* ============================================================
     5. FIVE-MODULE CLOSED LOOP（单列）
     ============================================================ */
  .fm-modules-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }
  .fm-module {
    grid-column: auto !important;
    margin-top: 0 !important;
    padding: 28px 22px;
  }
  .fm-module-ic {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    margin-bottom: 16px;
  }
  .fm-module-ic img {
    width: 42px;
    height: 42px;
    object-fit: contain;
  }
  .fm-module h3 {
    font-size: 20px;
  }
  .fm-module ul {
    gap: 10px;
  }
  .fm-module ul li {
    font-size: 14px;
  }

  /* ============================================================
     6. EVERYTHING YOUR SHELVES NEED（横向滑动）
     ============================================================ */
  .fm-shelf-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .fm-shelf-arrow {
    width: 44px;
    height: 44px;
  }
  .fm-shelves-grid {
    margin-top: 24px;
    --shelf-gap: 16px;
    padding-bottom: 8px;
  }
  .fm-shelf-card {
    flex: 0 0 74%;
    border-radius: 14px;
  }
  .fm-shelf-media {
    aspect-ratio: 504 / 349;
  }
  .fm-shelf-card h3 {
    font-size: 20px;
    padding: 18px 20px 0;
  }
  .fm-shelf-tags {
    margin: 12px 20px 20px;
  }
  .fm-shelf-tag {
    padding: 8px 16px;
    font-size: 14px;
  }

  /* ============================================================
     7. FIVEFOLD PROTECTION（横向滑动）
     ============================================================ */
  .fm-protect-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .fm-protect-arrow {
    width: 44px;
    height: 44px;
  }
  .fm-protect-grid {
    margin-top: 24px;
    --protect-gap: 16px;
    padding-bottom: 8px;
  }
  .fm-protect-card {
    flex: 0 0 74%;
    padding: 28px 22px 24px;
    border-radius: 14px;
  }
  .fm-protect-no {
    font-size: 56px;
    right: 14px;
    top: 10px;
  }
  .fm-protect-ic {
    width: 72px;
    height: 72px;
  }
  .fm-protect-ic img {
    width: 36px;
    height: 36px;
    object-fit: contain;
  }
  .fm-protect-card h3 {
    font-size: 20px;
  }
  .fm-protect-card p {
    font-size: 15px;
  }

  /* ============================================================
     8. NEXT: GLOBAL SUPPLY CHAINS（单列）
     ============================================================ */
  .fm-next-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }
  .fm-next-card {
    padding: 32px 24px 28px;
  }
  .fm-next-ic {
    width: 88px;
    height: 88px;
    margin-bottom: 20px;
  }
  .fm-next-ic img {
    width: 42px;
    height: 42px;
    object-fit: contain;
  }
  .fm-next-card h3 {
    font-size: 20px;
  }
  .fm-next-card p {
    font-size: 14px;
  }
  .fm-next-cta {
    margin-top: 36px;
  }
  .fm-next-cta .btn {
    height: 56px;
    padding: 0 28px;
    font-size: 16px;
    border-radius: 65px;
  }

  /* ============================================================
     9. CTA BANNER
     ============================================================ */
  .fm .fm-cta h2 {
    font-size: 24px;
    line-height: 1.3;
  }
  .fm-cta p {
    font-size: 15px;
    margin-top: 18px;
  }
  .fm-cta-hotline {
    margin-top: 32px;
    padding: 22px 24px;
    background: rgba(0, 140, 214, 0.1);
    gap: 4px;
  }
  .fm-cta-hotline-label {
    font-size: 13px;
  }
  .fm-cta-hotline a {
    font-size: 24px;
  }
  .fm-cta .btn-dark {
    margin-top: 28px;
    height: 56px;
    padding: 0 28px;
    font-size: 15px;
    border-radius: 65px;
  }
}

/* 减弱动效偏好 */
@media (prefers-reduced-motion: reduce) {
  .fm-trust-card,
  .fm-module,
  .fm-shelf-card,
  .fm-protect-card,
  .fm-next-card {
    transition: none;
  }
}
