/* ===============================
   ZERO COST ONBOARDING SECTION
================================ */

.zero-onboard-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0A0F1F 0%, #0E1530 100%);
  color: #fff;
}

/* Badge */
.zero-badge {
  display: inline-block;
  background: rgba(228,179,79,0.15);
  color: #E4B34F;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 18px;
}

/* Heading */
.zero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
}

.zero-title span {
  color: #E4B34F;
}

/* Text */
.zero-desc {
  margin-top: 18px;
  font-size: 18px;
  opacity: 0.9;
}

.zero-sub {
  margin-top: 14px;
  font-size: 17px;
  opacity: 0.8;
}

.zero-sub span {
  color: #E4B34F;
  font-weight: 600;
}

/* Grid */
.zero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* Cards */
.zero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  transition: 0.35s ease;
  backdrop-filter: blur(14px);
}

.zero-card i {
  font-size: 36px;
  color: #E4B34F;
  margin-bottom: 12px;
  display: block;
}

.zero-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

/* Hover */
.zero-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(228,179,79,0.25);
}

/* Highlight Card */
.zero-card.highlight {
  background: linear-gradient(135deg, #E4B34F, #F7DFA7);
  color: #1A1A1A;
}

.zero-card.highlight i {
  color: #1A1A1A;
}

/* Responsive */
@media (max-width: 768px) {
  .zero-title {
    font-size: 32px;
  }

  .zero-grid {
    grid-template-columns: 1fr;
  }
}




/* ===============================
   VERIFIED NETWORK – LIGHT SECTION
================================ */

.verified-network-light {
  padding: 90px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFD 100%);
}

/* Badge */
.vnet-badge {
  display: inline-block;
  background: rgba(10,21,90,0.08);
  color: #0A155A;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

/* Title */
.vnet-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
  color: #0A0F1F;
}

.vnet-title span {
  color: #E4B34F;
}

/* Text */
.vnet-desc {
  margin-top: 18px;
  font-size: 17px;
  color: #4B5563;
  max-width: 520px;
}

/* Grid */
.vnet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* Cards */
.vnet-card {
  background: #fff;
  border: 1px solid #EAEFF5;
  border-radius: 18px;
  padding: 26px 22px;
  transition: 0.35s ease;
}

.vnet-card i {
  font-size: 34px;
  color: #0A155A;
  margin-bottom: 12px;
  display: block;
}

.vnet-card h5 {
  font-size: 18px;
  font-weight: 700;
  color: #0A0F1F;
  margin-bottom: 6px;
}

.vnet-card p {
  font-size: 14.5px;
  color: #6B7280;
  margin: 0;
}

/* Hover */
.vnet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(10,21,90,0.12);
}

/* Highlight */
.vnet-card.highlight {
  border-color: #E4B34F;
  background: linear-gradient(135deg, #FFF7E6, #FFFDF8);
}

.vnet-card.highlight i {
  color: #E4B34F;
}

/* Bottom Strip */
.vnet-bottom {
  margin-top: 60px;
  padding: 22px;
  background: #FFFFFF;
  border: 1px dashed #E4B34F;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.vnet-point {
  font-weight: 600;
  color: #0A0F1F;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vnet-point i {
  color: #E11D48;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .vnet-title {
    font-size: 30px;
  }

  .vnet-grid {
    grid-template-columns: 1fr;
  }

  .vnet-bottom {
    gap: 18px;
  }
}



/* ===========================
   SMART DISTRIBUTION MODEL
=========================== */

.sdm-section {
  padding: 90px 0;
  background: #ffffff;
}

/* LEFT */
.sdm-badge {
  display: inline-block;
  padding: 6px 16px;
  background: #F2F4F8;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.sdm-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  color: #0A0F1F;
}

.sdm-title span {
  color: #E4B34F;
}

.sdm-desc {
  margin-top: 14px;
  font-size: 16px;
  color: #555;
  max-width: 520px;
}

/* FLOW */
.sdm-flow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.sdm-flow-item {
  background: #fff;
  border: 1px solid #EAEFF5;
  padding: 14px 18px;
  border-radius: 14px;
  text-align: center;
  min-width: 120px;
}

.sdm-flow-item i {
  display: block;
  font-size: 22px;
  color: #E4B34F;
  margin-bottom: 6px;
}

.sdm-arrow {
  font-size: 20px;
  color: #999;
}

/* STATS */
.sdm-stats {
  display: flex;
  gap: 18px;
  margin-top: 26px;
}

.sdm-stat {
  background: #F8FAFD;
  padding: 16px 18px;
  border-radius: 14px;
  text-align: center;
  min-width: 120px;
}

.sdm-stat h4 {
  font-weight: 800;
  margin: 0;
}

.sdm-stat p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

/* RIGHT CARDS */
.sdm-cards {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.sdm-card {
  background: #fff;
  border: 1px solid #EAEFF5;
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  transition: .35s ease;
}

.sdm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.sdm-card h4 {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.sdm-card h4 i {
  color: #E4B34F;
  font-size: 20px;
}

.sdm-card ul {
  padding-left: 18px;
  margin: 0;
}

.sdm-card ul li {
  margin-bottom: 8px;
  font-size: 15px;
}

.sdm-card.highlight {
  background: #FFF9EE;
  border-color: #E4B34F;
}

/* FOOT NOTE */
.sdm-note {
  margin-top: 12px;
  font-weight: 600;
  color: #0A0F1F;
}

/* RESPONSIVE */
@media(max-width: 991px) {
  .sdm-title {
    font-size: 32px;
  }
  .sdm-flow {
    justify-content: flex-start;
  }
}



/* ==============================
   DESIGNED FOR SERIOUS MANUFACTURERS
================================= */

.mf-serious-wrap {
  background: #f9fbff;
  padding: 90px 0;
}

/* badge */
.mf-serious-badge {
  display: inline-block;
  background: #eef2ff;
  color: #1d4ed8;
  font-weight: 600;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

/* title */
.mf-serious-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
}
.mf-serious-title span {
  color: #e4b34f;
}

/* description */
.mf-serious-desc {
  font-size: 16.5px;
  color: #475569;
  margin: 18px 0 26px;
  max-width: 520px;
}

/* list */
.mf-serious-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mf-serious-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  color: #1e293b;
  margin-bottom: 14px;
}
.mf-serious-list i {
  color: #e4b34f;
  font-size: 18px;
}

/* highlight */
.mf-serious-highlight {
  margin-top: 28px;
  padding: 16px 20px;
  background: #ffffff;
  border-left: 4px solid #e4b34f;
  border-radius: 10px;
  font-size: 15.5px;
  color: #0f172a;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* right grid */
.mf-serious-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* cards */
.mf-serious-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: .35s ease;
}
.mf-serious-card i {
  font-size: 30px;
  color: #e4b34f;
  margin-bottom: 14px;
}
.mf-serious-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.mf-serious-card p {
  font-size: 14.5px;
  color: #64748b;
}

/* accent card */
.mf-serious-card.accent {
  grid-column: span 2;
  background: linear-gradient(135deg,#fff4d6,#fff);
  border: 1px solid #f5d48b;
}

/* hover */
.mf-serious-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(228,179,79,0.18);
}

/* responsive */
@media (max-width: 991px) {
  .mf-serious-title {
    font-size: 34px;
  }
  .mf-serious-grid {
    grid-template-columns: 1fr;
  }
}



/* =====================================
   UNLOCK ADDITIONAL GROWTH OPPORTUNITIES
===================================== */

.mf-growth-wrap {
  background: #ffffff;
  padding: 100px 0;
}

/* header */
.mf-growth-head {
  max-width: 720px;
  margin: 0 auto;
}
.mf-growth-badge {
  display: inline-block;
  background: #eef6ff;
  color: #2563eb;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.mf-growth-title {
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
}
.mf-growth-sub {
  margin-top: 12px;
  font-size: 16.5px;
  color: #64748b;
}

/* LEFT: steps */
.mf-growth-steps {
  position: relative;
  padding-left: 26px;
}
.mf-growth-steps::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(#e4b34f, transparent);
}

.mf-growth-step {
  position: relative;
  margin-bottom: 40px;
}
.step-dot {
  position: absolute;
  left: -2px;
  top: 6px;
  width: 18px;
  height: 18px;
  background: #e4b34f;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(228,179,79,0.25);
}
.step-content {
  background: #f9fafb;
  border-radius: 16px;
  padding: 22px 26px;
}
.step-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.step-content h5 span {
  font-size: 13px;
  color: #e4b34f;
}
.step-content p {
  font-size: 14.5px;
  color: #475569;
}
.step-content ul {
  padding-left: 18px;
  margin: 10px 0;
}
.step-content li {
  font-size: 14.5px;
  color: #334155;
  margin-bottom: 6px;
}
.step-note {
  font-size: 13.5px;
  font-style: italic;
  color: #64748b;
}

/* RIGHT: panels */
.mf-growth-panels {
  display: grid;
  gap: 22px;
}
.mf-growth-panel {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  transition: .35s ease;
}
.mf-growth-panel i {
  font-size: 26px;
  color: #e4b34f;
  margin-bottom: 10px;
}
.mf-growth-panel h6 {
  font-size: 17px;
  font-weight: 700;
}
.mf-growth-panel p {
  font-size: 14.5px;
  color: #64748b;
}
.mf-growth-panel.highlight {
  background: linear-gradient(135deg,#fff3d6,#ffffff);
  border: 1px solid #f5d48b;
}
.mf-growth-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(228,179,79,0.18);
}

/* responsive */
@media (max-width: 991px) {
  .mf-growth-title {
    font-size: 32px;
  }
  .mf-growth-steps {
    padding-left: 20px;
  }
}


/* ===============================
   MANUFACTURER TRUST – V2
================================ */

.mf-trust-v2 {
  padding: 120px 0;
  background: #ffffff;
}

/* GRID */
.mf-trust-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.mf-trust-left .mf-pill {
  display: inline-block;
  background: #eef6ff;
  color: #2563eb;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.mf-trust-left h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}
.mf-trust-left h2 span {
  color: #e4b34f;
}

.mf-lead {
  margin-top: 16px;
  font-size: 17px;
  color: #475569;
  max-width: 420px;
}

.mf-statement {
  margin-top: 40px;
  font-size: 22px;
  font-weight: 800;
}
.mf-statement span {
  display: block;
  color: #e4b34f;
  margin-top: 4px;
}

/* CENTER SPINE */
.mf-trust-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mf-spine-item {
  width: 160px;
  background: #f8fafc;
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  font-weight: 600;
  color: #0f172a;
}
.mf-spine-item i {
  font-size: 26px;
  color: #e4b34f;
  display: block;
  margin-bottom: 6px;
}

.mf-spine-line {
  width: 2px;
  height: 28px;
  background: linear-gradient(to bottom,#e4b34f,transparent);
}

/* RIGHT */
.mf-trust-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mf-trust-right li {
  margin-bottom: 22px;
}
.mf-trust-right strong {
  display: block;
  font-size: 16px;
  color: #0f172a;
}
.mf-trust-right span {
  font-size: 14.5px;
  color: #475569;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .mf-trust-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .mf-trust-center {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
  }
  .mf-spine-line {
    display: none;
  }
}

/* ===============================
   RESPONSIVE FIX – MF TRUST V2
================================ */

/* ---------- TABLET ---------- */
@media (max-width: 1199px) {
  /* .mf-trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  } */

  .mf-trust-left {
    grid-column: 1 / -1;
    text-align: center;
  }

  .mf-lead {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .mf-statement {
    margin-top: 32px;
  }

  .mf-trust-center {
    align-items: center;
  }
}

/* ---------- MOBILE ---------- */
@media (max-width: 767px) {

  .mf-trust-v2 {
    padding: 80px 0;
  }

  .mf-trust-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* LEFT */
  .mf-trust-left h2 {
    font-size: 34px;
  }

  .mf-lead {
    font-size: 16px;
  }

  .mf-statement {
    font-size: 20px;
  }

  /* CENTER → TURN INTO CARD ROW */
  .mf-trust-center {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
  }

  .mf-spine-item {
    width: calc(50% - 10px);
    font-size: 14px;
    padding: 14px 10px;
  }

  .mf-spine-item i {
    font-size: 22px;
  }

  .mf-spine-line {
    display: none;
  }

  /* RIGHT */
  .mf-trust-right ul {
    max-width: 520px;
    margin: 0 auto;
  }

  .mf-trust-right li {
    margin-bottom: 18px;
  }

}

/* ---------- SMALL MOBILE ---------- */
@media (max-width: 480px) {

  .mf-trust-left h2 {
    font-size: 30px;
  }

  .mf-spine-item {
    width: 100%;
  }

}


/* ===============================
   MANUFACTURER ONBOARD FLOW
================================ */

.mf-onboard-flow {
  padding: 110px 0;
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
}

/* Header */
.mf-onboard-head .mf-chip {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 40px;
  background: #eef2ff;
  color: #2563eb;
  margin-bottom: 14px;
}

.mf-onboard-head h2 {
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
}
.mf-onboard-head h2 span {
  color: #e4b34f;
}

.mf-onboard-head p {
  max-width: 620px;
  margin: 14px auto 0;
  font-size: 16.5px;
  color: #475569;
}

/* FLOW TRACK */
.mf-flow-track {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  position: relative;
}

/* subtle rail */
.mf-flow-track::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, #e4b34f, transparent);
}

/* STEP */
.mf-flow-step {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px 22px;
  text-align: center;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  position: relative;
  z-index: 1;
  transition: 0.35s ease;
}

.mf-flow-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 55px rgba(228,179,79,0.25);
}

/* NUMBER */
.mf-step-no {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e4b34f, #f7dfa7);
  color: #111827;
  font-weight: 800;
  font-size: 18px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
}

.mf-flow-step h5 {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
}

.mf-flow-step p {
  font-size: 14.5px;
  color: #475569;
  margin-top: 8px;
}

/* FOOT NOTE */
.mf-onboard-foot {
  margin-top: 60px;
  text-align: center;
  font-size: 18px;
}
.mf-onboard-foot strong {
  color: #0f172a;
}
.mf-onboard-foot span {
  color: #e4b34f;
  font-weight: 700;
  margin-left: 6px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .mf-flow-track {
    grid-template-columns: 1fr;
  }
  .mf-flow-track::before {
    display: none;
  }
}
/* ===============================
   RESPONSIVE – ONBOARD FLOW
   5 → 3 → 2 → 1 SYSTEM
================================ */

/* ---------- LARGE DESKTOP (default) ----------
   5 columns already handled above
--------------------------------------------- */


/* ---------- LAPTOP / LARGE TABLET (≤1199px) ----------
   3 STEPS PER ROW
----------------------------------------------------- */
@media (max-width: 1199px) {
  .mf-flow-track {
    grid-template-columns: repeat(3, 1fr);
  }

  .mf-flow-track::before {
    top: 42px;
  }
}


/* ---------- TABLET (≤991px) ----------
   2 STEPS PER ROW
------------------------------------- */
@media (max-width: 991px) {
  .mf-onboard-flow {
    padding: 90px 0;
  }

  .mf-flow-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .mf-flow-track::before {
    display: none;
  }

  .mf-flow-step {
    padding: 24px 20px;
  }
}


/* ---------- MOBILE (≤767px) ----------
   1 STEP PER ROW
------------------------------------- */
@media (max-width: 767px) {

  .mf-onboard-head h2 {
    font-size: 32px;
  }

  .mf-onboard-head p {
    font-size: 15.5px;
  }

  .mf-flow-track {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .mf-flow-step {
    text-align: left;
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .mf-step-no {
    margin: 0;
    flex-shrink: 0;
  }

  .mf-flow-step h5 {
    font-size: 16px;
  }

  .mf-flow-step p {
    font-size: 14px;
  }

  .mf-onboard-foot {
    font-size: 16px;
    margin-top: 40px;
  }
}


/* ---------- SMALL MOBILE (≤480px) ----------
   EXTRA COMPACT
------------------------------------------- */
@media (max-width: 480px) {

  .mf-flow-step {
    padding: 20px 18px;
  }

  .mf-step-no {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

}




/* ===============================
   GROWTH STRIP – COMPACT
================================ */
.mf-growth-strip {
  padding: 90px 0;
  background: #0A0F1F;
}

/* Header */
.mf-growth-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.mf-chip {
  display: inline-block;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 40px;
  background: #eef2ff;
  color: #2563eb;
  margin-bottom: 10px;
}
.mf-growth-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
}
.mf-growth-header h2 span {
  color: #e4b34f;
}
.mf-growth-header p {
  margin-top: 12px;
  font-size: 16px;
  color: #475569;
}

/* Modes */
.mf-growth-modes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.mf-mode {
  background: #f8fafc;
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  transition: .3s ease;
}
.mf-mode i {
  font-size: 26px;
  color: #e4b34f;
}
.mf-mode h6 {
  margin: 10px 0 4px;
  font-size: 15.5px;
  font-weight: 700;
  color: #0f172a;
}
.mf-mode span {
  font-size: 14px;
  color: #475569;
}

.mf-mode.highlight {
  background: #fff3d6;
  border: 1px solid #e4b34f;
}

.mf-mode:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15,23,42,.08);
}

/* Footer Note */
.mf-growth-note {
  margin-top: 36px;
  text-align: center;
  font-size: 17px;
  color: #0f172a;
}

/* Responsive */
@media (max-width: 991px) {
  .mf-growth-modes {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .mf-growth-modes {
    grid-template-columns: 1fr;
  }
}


/* ===============================
   CONVERSION BAND – FINAL CTA
================================ */
.mf-conversion-band {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  text-align: center;
}

/* Head */
.mf-conversion-head {
  max-width: 720px;
  margin: 0 auto 40px;
}
.mf-conversion-head h2 {
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}
.mf-conversion-head h2 span {
  color: #e4b34f;
}
.mf-conversion-head p {
  margin-top: 14px;
  font-size: 16.5px;
  color: #475569;
}

/* Actions */
.mf-conversion-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 54px;
}

.mf-btn {
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: .3s ease;
}

.mf-btn small {
  font-weight: 600;
  opacity: .8;
}

/* Button styles */
.mf-btn.primary {
  background: linear-gradient(135deg,#e4b34f,#f7dfa7);
  color: #111827;
}
.mf-btn.primary:hover {
  transform: translateY(-2px);
}

.mf-btn.outline {
  border: 2px solid #e4b34f;
  color: #0f172a;
  background: transparent;
}
.mf-btn.outline:hover {
  background: #fff3d6;
}

.mf-btn.ghost {
  color: #2563eb;
}
.mf-btn.ghost:hover {
  text-decoration: underline;
}

/* Proof Strip */
.mf-proof-strip {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.mf-proof-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 14px;
  box-shadow: 0 8px 26px rgba(15,23,42,.06);
  font-size: 13.5px;
}
.mf-proof-item strong {
  display: block;
  font-size: 14.5px;
  color: #0f172a;
}
.mf-proof-item span {
  color: #475569;
}

.mf-proof-item.highlight {
  background: #0f172a;
  color: #ffffff;
}
.mf-proof-item.highlight strong,
.mf-proof-item.highlight span {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
  .mf-proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .mf-proof-strip {
    grid-template-columns: 1fr;
  }
}

