.dfm-analysis-page {
  --dfm-green: #00863e;
  --dfm-text: #404751;
  --dfm-border: #f1f2f4;
  --dfm-soft: #f8f8f8;
  --dfm-blue: #0d7eff;
  --dfm-orange: #ed8f27;
  min-width: 1400px;
  overflow: hidden;
  color: var(--dfm-text);
  background: #fff;
  font-family: "Microsoft YaHei UI", "Microsoft YaHei", "PingFang SC", sans-serif;
}

.dfm-analysis-page *,
.dfm-analysis-page *::before,
.dfm-analysis-page *::after {
  box-sizing: border-box;
}

.dfm-analysis-page h1,
.dfm-analysis-page h2,
.dfm-analysis-page h3,
.dfm-analysis-page p,
.dfm-analysis-page dl,
.dfm-analysis-page dd,
.dfm-analysis-page ol,
.dfm-analysis-page ul {
  margin: 0;
  padding: 0;
}

.dfm-analysis-page ol,
.dfm-analysis-page ul {
  list-style: none;
}

.dfm-analysis-page img {
  display: block;
  max-width: 100%;
}

.dfm-wrap {
  position: relative;
  width: 1400px;
  height: auto;
  margin: 0 auto;
}

.dfm-hero {
  width: 100%;
  height: 610px;
  background: #fff url("/img/images/dfm-analysis/003-rectangle-124.png") no-repeat center top;
  background-size: 100% 100%;
}

.dfm-hero-inner {
  display: flex;
  justify-content: space-between;
  padding-top: 80px;
}

.dfm-hero-copy {
  width: 850px;
  transform: translateX(12px);
}

.dfm-eyebrow {
  margin-bottom: 8px !important;
  color: var(--dfm-green);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.dfm-hero h1 {
  width: 850px;
  color: var(--dfm-text);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0;
}

.dfm-hero-description {
  width: 750px;
  margin-top: 20px !important;
  color: var(--dfm-text);
  font-size: 18px;
  line-height: 36px;
}

.dfm-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.dfm-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  height: 50px;
  padding: 0 20px;
  border: 1px solid var(--dfm-border);
  border-radius: 3px;
  color: var(--dfm-text);
  background: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 48px;
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.dfm-button-online {
  width: 140px;
}

.dfm-button-windows {
  width: 200px;
}

.dfm-button-macos {
  display: none;
  width: 172px;
}

.dfm-button img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: transform .2s ease;
}

.dfm-button:hover,
.dfm-button:focus {
  border-color: var(--dfm-green);
  color: var(--dfm-green);
  box-shadow: 0 8px 22px rgba(0, 134, 62, .08);
  transform: translateY(-2px);
}

.dfm-button:hover img,
.dfm-button:focus img {
  transform: translateY(-1px);
}

.dfm-button-primary,
.dfm-button-primary:hover,
.dfm-button-primary:focus {
  border-color: var(--dfm-orange);
  color: #fff;
  background: var(--dfm-orange);
}

.dfm-trust-line {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 45px !important;
  font-size: 16px;
  line-height: 36px;
}

.dfm-trust-line span {
  display: block;
  width: 1px;
  height: 14px;
  background: #d9d9d9;
}

.dfm-hero-stats {
  display: flex;
  width: 680px;
  height: 110px;
  margin-top: 26px;
  border: 1px solid #f5f5f5;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 24px rgba(235, 235, 235, .4);
}

.dfm-hero-stats div {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.dfm-hero-stats div + div::before {
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 0;
  width: 1px;
  background: var(--dfm-border);
  content: "";
}

.dfm-hero-stats strong {
  color: var(--dfm-green);
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
}

.dfm-hero-stats span {
  font-size: 16px;
  line-height: 30px;
}

.dfm-workbench {
  width: 374px;
  margin-top: 4px;
  border: 1px solid var(--dfm-border);
  border-radius: 3px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 16px 40px rgba(64, 71, 81, .08);
  overflow: hidden;
}

.dfm-workbench-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 54px;
  padding: 0 22px;
  border-bottom: 1px solid var(--dfm-border);
}

.dfm-workbench-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.dfm-workbench-dots span {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--dfm-green);
}

.dfm-workbench-dots span:nth-child(2) {
  background: var(--dfm-orange);
}

.dfm-workbench-dots span:nth-child(3) {
  background: var(--dfm-blue);
}

.dfm-workbench-head strong {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.dfm-score-row {
  display: flex;
  align-items: center;
  height: 116px;
  margin: 0 24px;
  padding: 15px 0;
}

.dfm-score {
  position: relative;
  display: flex;
  width: 100px;
  height: 86px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.dfm-score > img {
  position: absolute;
  inset: 0;
  width: 86px;
  height: 86px;
  margin: auto;
}

.dfm-score > div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dfm-score strong {
  color: var(--dfm-green);
  font-size: 28px;
  line-height: 32px;
}

.dfm-score span,
.dfm-risk-summary span {
  color: #727984;
  font-size: 12px;
  line-height: 18px;
}

.dfm-risk-summary {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 6px;
  padding-left: 14px;
}

.dfm-risk-summary strong {
  font-size: 18px;
  line-height: 26px;
}

.dfm-analysis-page .dfm-result-list {
  padding: 12px 24px 0;
}

.dfm-result-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 47px;
  margin-bottom: 12px;
  padding: 0 16px;
  border: 1px solid var(--dfm-border);
  border-radius: 3px;
  font-size: 16px;
  line-height: 20px;
}

.dfm-result-list dd {
  font-weight: 700;
}

.dfm-result-list .is-blue { color: var(--dfm-blue); }
.dfm-result-list .is-orange { color: var(--dfm-orange); }
.dfm-result-list .is-green { color: var(--dfm-green); }

.dfm-suggestion {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  margin: 0 24px 18px;
  padding: 12px 18px;
  background: #f7fefa;
}

.dfm-suggestion img {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.dfm-suggestion p {
  font-size: 14px;
  line-height: 22px;
}

.dfm-section {
  padding: 74px 0 80px;
}

.dfm-section-heading {
  margin-bottom: 60px;
  text-align: center;
}

.dfm-section-heading h2,
.dfm-compare-heading h2 {
  color: var(--dfm-text);
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
}

.dfm-section-heading p {
  margin-top: 12px !important;
  color: var(--dfm-text);
  font-size: 18px;
  line-height: 36px;
}

.dfm-workflow-section {
  min-height: 328px;
  padding: 16px 0 12px;
}

.dfm-workflow-section .dfm-wrap {
  width: 1400px;
}

.dfm-workflow-section .dfm-section-heading {
  margin-bottom: 44px;
}

.dfm-workflow-section .dfm-section-heading p,
.dfm-judgement-section .dfm-section-heading p {
  font-size: 16px;
  line-height: 28px;
}

.dfm-workflow-layout {
  width: 100%;
}

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

.dfm-step-grid li {
  position: relative;
  min-height: 160px;
  padding: 39px 22px 20px 64px;
  border: 1px solid var(--dfm-border);
  border-radius: 4px;
  background: #fff;
  box-shadow: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.dfm-step-grid li:hover {
  border-color: var(--dfm-green);
  background: linear-gradient(180deg, #fff 0%, #f7fefa 100%);
  box-shadow: none;
  transform: translateY(-3px);
}

.dfm-step-number {
  position: absolute;
  top: 39px;
  left: 27px;
  display: flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--dfm-green);
  font-size: 16px;
  line-height: 24px;
}

.dfm-step-grid h3 {
  color: var(--dfm-text);
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.dfm-step-grid li:hover h3 {
  color: var(--dfm-green);
}

.dfm-step-grid p {
  margin: 6px 0 0 -37px !important;
  color: var(--dfm-text);
  font-size: 15px;
  line-height: 26px;
}

.dfm-software-shot {
  width: 754px;
  overflow: hidden;
  border: 1px solid var(--dfm-border);
  border-radius: 4px;
  background: #404751;
  box-shadow: 0 18px 46px rgba(64, 71, 81, .12);
}

.dfm-software-shot img {
  width: 754px;
  height: 426px;
  object-fit: cover;
}

.dfm-judgement-section {
  padding-top: 72px;
  padding-bottom: 78px;
}

.dfm-judgement-section .dfm-section-heading {
  margin-bottom: 28px;
}

.dfm-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.dfm-feature-card {
  position: relative;
  min-height: 236px;
  padding: 32px 24px 28px;
  border: 1px solid var(--dfm-border);
  background: #fff;
  cursor: default;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.dfm-feature-card::after {
  position: absolute;
  right: -1px;
  bottom: -1px;
  left: -1px;
  height: 3px;
  background: transparent;
  content: "";
}

.dfm-feature-card:hover {
  border-color: var(--dfm-green);
  background: linear-gradient(180deg, #fff 0%, #f7fefa 100%);
  box-shadow: none;
  transform: translateY(-3px);
}

.dfm-feature-card:hover::after {
  background: var(--dfm-green);
}

.dfm-feature-card > img {
  width: 66px;
  height: 66px;
  margin-bottom: 18px;
  transition: transform .2s ease;
}

.dfm-feature-card:hover > img {
  transform: scale(1.04);
}

.dfm-feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
}

.dfm-feature-card p {
  margin-top: 8px !important;
  font-size: 14px;
  line-height: 25px;
}

.dfm-local-section {
  min-height: 456px;
  padding: 62px 0;
  background: #f8f8f8;
}

.dfm-local-layout {
  display: grid;
  grid-template-columns: 610px 728px;
  gap: 62px;
  align-items: center;
}

.dfm-local-copy {
  transform: translateY(14px);
}

.dfm-local-copy h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 56px;
}

.dfm-local-copy > p:last-child {
  margin-top: 22px !important;
  font-size: 16px;
  line-height: 36px;
}

.dfm-local-detail {
  padding: 0;
  border: 0;
  background: transparent;
}

.dfm-format-line {
  display: flex;
  min-height: 95px;
  align-items: center;
  gap: 20px;
  padding: 16px 20px !important;
  border: 1px solid var(--dfm-border);
  border-radius: 4px;
  background: linear-gradient(90deg, #fff 0%, #f7fefa 100%);
  font-size: 16px;
  line-height: 30px;
}

.dfm-format-line img {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

.dfm-local-detail ul {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.dfm-local-detail li {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  border: 1px solid var(--dfm-border);
  border-radius: 4px;
  background: #fff;
  font-size: 16px;
  line-height: 30px;
}

.dfm-local-detail li img {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

.dfm-rules-section {
  padding-top: 82px;
}

.dfm-rule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px 16px;
}

.dfm-rule-grid > div {
  display: flex;
  height: 90px;
  align-items: center;
  gap: 16px;
  padding: 0 22px;
  border: 1px solid var(--dfm-border);
  background: linear-gradient(90deg, #fff 0%, #f7fefa 100%);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.dfm-rule-grid > div:hover {
  border-color: var(--dfm-green);
  box-shadow: 0 10px 24px rgba(0, 134, 62, .06);
  transform: translateY(-3px);
}

.dfm-rule-grid img {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.dfm-rule-grid strong {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

.dfm-compare-block {
  margin-top: 100px;
}

.dfm-compare-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.dfm-compare-heading h2 {
  transform: translateX(-16px);
  text-align: left;
}

.dfm-compare-download {
  width: 142px;
  height: 51px;
  flex: 0 0 auto;
  padding: 0 18px;
}

.dfm-compare-table {
  overflow: hidden;
  border: 1px solid var(--dfm-border);
  border-radius: 4px;
  background: #fff;
}

.dfm-compare-row {
  display: grid;
  grid-template-columns: 240px 1fr 1fr;
  min-height: 83px;
  border-bottom: 1px solid var(--dfm-border);
}

.dfm-compare-row:last-child {
  border-bottom: 0;
}

.dfm-compare-row > * {
  display: flex;
  align-items: center;
  padding: 18px 48px;
  border-right: 1px solid var(--dfm-border);
  font-size: 18px;
  line-height: 30px;
}

.dfm-compare-row > *:last-child {
  border-right: 0;
}

.dfm-compare-head {
  min-height: 70px;
  background: linear-gradient(90deg, #f1f2f4 0%, #f7f8f8 100%);
}

.dfm-compare-head > * {
  font-size: 22px;
  font-weight: 700;
}

.dfm-compare-row .is-advantage {
  color: var(--dfm-green);
}

.dfm-manufacturing-section {
  padding-top: 72px;
  padding-bottom: 0;
}

.dfm-manufacturing-section .dfm-section-heading {
  position: relative;
  margin-bottom: 27px;
  text-align: left;
}

.dfm-manufacturing-section .dfm-section-heading p {
  margin-top: 30px !important;
}

.dfm-pcba-link {
  position: absolute;
  top: 7px;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--dfm-green);
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
}

.dfm-pcba-link img {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  transition: transform .2s ease;
}

.dfm-pcba-link:hover,
.dfm-pcba-link:focus {
  color: var(--dfm-green);
  text-decoration: underline;
}

.dfm-pcba-link:hover img,
.dfm-pcba-link:focus img {
  transform: translateX(3px);
}

.dfm-capacity-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 2px 0 26px;
}

.dfm-capacity-stats > div {
  position: relative;
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.dfm-capacity-stats > div + div::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: var(--dfm-border);
  content: "";
}

.dfm-capacity-stats img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.dfm-capacity-stats p {
  display: flex;
  flex-direction: column;
}

.dfm-capacity-stats strong {
  font-size: 32px;
  line-height: 42px;
}

.dfm-capacity-stats span {
  font-size: 16px;
  line-height: 25px;
}

.dfm-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px 16px;
}

.dfm-industry-grid article {
  overflow: hidden;
  border: 0;
  background: transparent;
  transition: box-shadow .2s ease, transform .2s ease;
}

.dfm-industry-grid article:hover {
  box-shadow: 0 12px 28px rgba(64, 71, 81, .1);
  transform: translateY(-3px);
}

.dfm-industry-grid img {
  width: 100%;
  height: 168px;
  border-radius: 4px;
  object-fit: cover;
  transition: transform .25s ease;
}

.dfm-industry-grid article:hover img {
  transform: scale(1.03);
}

.dfm-industry-grid h3 {
  height: 76px;
  font-size: 20px;
  font-weight: 700;
  line-height: 76px;
  text-align: center;
}

.dfm-role-section {
  padding-top: 60px;
  padding-bottom: 72px;
}

.dfm-role-section .dfm-section-heading {
  margin-bottom: 54px;
}

.dfm-role-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.dfm-role-grid article {
  display: flex;
  min-height: 148px;
  gap: 22px;
  padding: 20px 22px;
  border: 1px solid var(--dfm-border);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.dfm-role-grid article:hover {
  border-color: var(--dfm-green);
  box-shadow: 0 10px 24px rgba(0, 134, 62, .06);
  transform: translateY(-3px);
}

.dfm-role-grid article > img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.dfm-role-grid h3 {
  margin-bottom: 7px !important;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
}

.dfm-role-grid p {
  font-size: 14px;
  line-height: 26px;
}

.dfm-faq-section {
  padding-top: 66px;
  padding-bottom: 76px;
}

.dfm-faq-section .dfm-section-heading {
  margin-bottom: 42px;
}

.dfm-faq-list {
  border-top: 1px solid var(--dfm-border);
}

.dfm-faq-list article {
  border-bottom: 1px solid var(--dfm-border);
}

.dfm-faq-list h3 {
  height: 58px;
  padding: 14px 0;
  color: var(--dfm-text);
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  text-align: left;
  transition: color .18s ease;
}

.dfm-faq-list article:hover h3 {
  color: var(--dfm-green);
}

.dfm-faq-list article > p {
  display: block;
  padding: 0 70px 20px 0 !important;
  color: var(--dfm-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 34px;
}

.dfm-final-cta {
  height: 278px;
  padding-top: 48px;
  background: #f7fefa url("/img/images/dfm-analysis/029-rectangle-160.png") no-repeat center top;
  background-size: 100% 100%;
  text-align: center;
}

.dfm-final-cta h2 {
  color: var(--dfm-green);
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
}

.dfm-final-cta p {
  margin-top: 14px !important;
  font-size: 16px;
  line-height: 36px;
}

.dfm-actions-centered {
  justify-content: center;
  margin-top: 18px;
}

/* Motion enhancement: entry effects use opacity and transforms only, so the
   Lanhu-aligned layout dimensions and spacing remain unchanged. */
html.dfm-motion .dfm-hero-copy > *,
html.dfm-motion .dfm-workbench,
html.dfm-motion .dfm-section-heading,
html.dfm-motion .dfm-step-grid > li,
html.dfm-motion .dfm-feature-card,
html.dfm-motion .dfm-local-detail,
html.dfm-motion .dfm-rule-grid > div,
html.dfm-motion .dfm-compare-heading,
html.dfm-motion .dfm-compare-row,
html.dfm-motion .dfm-capacity-stats > div,
html.dfm-motion .dfm-industry-grid > article,
html.dfm-motion .dfm-role-grid > article,
html.dfm-motion .dfm-faq-list > article,
html.dfm-motion .dfm-final-cta h2,
html.dfm-motion .dfm-final-cta > .dfm-wrap > p,
html.dfm-motion .dfm-final-cta .dfm-actions {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition-duration: .56s;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--dfm-motion-delay, 0ms);
  will-change: opacity, transform;
}

html.dfm-motion .dfm-workbench,
html.dfm-motion .dfm-local-detail {
  transform: translate3d(18px, 0, 0);
}

html.dfm-motion .dfm-local-copy {
  opacity: 0;
  transition: opacity .56s cubic-bezier(.22, 1, .36, 1) var(--dfm-motion-delay, 0ms);
  will-change: opacity;
}

html.dfm-motion .dfm-motion-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

html.dfm-motion .dfm-local-copy.dfm-motion-fade-only.is-visible {
  opacity: 1;
  will-change: auto;
}

html.dfm-motion .dfm-step-grid > li.dfm-motion-item.is-visible:hover,
html.dfm-motion .dfm-feature-card.dfm-motion-item.is-visible:hover,
html.dfm-motion .dfm-rule-grid > div.dfm-motion-item.is-visible:hover,
html.dfm-motion .dfm-industry-grid > article.dfm-motion-item.is-visible:hover,
html.dfm-motion .dfm-role-grid > article.dfm-motion-item.is-visible:hover {
  transform: translateY(-3px);
}

@media (prefers-reduced-motion: reduce) {
  .dfm-analysis-page *,
  .dfm-analysis-page *::before,
  .dfm-analysis-page *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    transition-delay: 0ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1500px) {
  .dfm-analysis-page {
    min-width: 1200px;
  }

  .dfm-wrap {
    width: 1160px;
  }

  .dfm-workflow-section .dfm-wrap {
    width: 1160px;
  }

  .dfm-hero-copy {
    width: 760px;
  }

  .dfm-hero h1 {
    width: 760px;
    font-size: 34px;
  }

  .dfm-hero-description {
    width: 720px;
  }

  .dfm-local-layout {
    grid-template-columns: 500px 610px;
    gap: 50px;
  }

  .dfm-feature-card,
  .dfm-rule-grid > div,
  .dfm-role-grid article {
    padding-left: 18px;
    padding-right: 18px;
  }

  .dfm-compare-row {
    grid-template-columns: 220px 1fr 1fr;
  }
}
