@media only screen and (min-width:100px) and (max-width:768px) {
  .re-cards {
    grid-template-columns: 1fr !important;
  }



  .re-why {
    grid-template-columns: 1fr !important;
  }


  .re-chips {
    grid-template-columns: 1fr !important;

  }



}



.re-wrap * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}



.re-wrap a {
  color: #e87722;
  text-decoration: none;
}

.re-wrap a:hover {
  text-decoration: underline;
}

/* ---- Layout ---- */
.re-sec {
  padding: 10px 10px;
  margin: 0 auto;
}

.re-sec-light {
  padding: 4px 0;
  border-top: 1px solid #f4e0cb;
  border-bottom: 1px solid #f4e0cb;
}

.re-sec-light .re-sec {
  padding-top: 52px;
  padding-bottom: 52px;
}

/* ---- Section Title ---- */
.re-title {
  text-align: center;
  margin-bottom: 48px;
}

.re-title h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.re-title h2 span {
  color: #e87722;
}

.re-title p {
  color: #555;
  font-size: .97rem;
  max-width: 680px;
  margin: 0 auto;
}

.re-title .re-line {
  display: inline-block;
  width: 55px;
  height: 4px;
  background: linear-gradient(90deg, #e87722, #f4a95e);
  border-radius: 3px;
  margin-top: 14px;
}

/* ---- Badge Pill ---- */
.re-badge {
  display: inline-block;
  background: #fff3e8;
  color: #e87722;
  border: 1px solid #f4c49a;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: .80rem;
  font-weight: 700;
  letter-spacing: .6px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

/* =============================================
   INTRO HERO BLOCK
   ============================================= */
.re-intro-block {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
}

.re-intro-block .re-text {
  flex: 1 1 360px;
}

.re-intro-block .re-text h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 18px;
  line-height: 1.25;
}

.re-intro-block .re-text h2 span {
  color: #e87722;
}

.re-intro-block .re-text p {
  color: #444;
  margin-bottom: 16px;
  font-size: .97rem;
}

/* Image box with decorative background */
.re-img-box {
  flex: 1 1 300px;
  text-align: center;
  position: relative;
}

.re-img-box::before {
  content: '';
  position: absolute;
  top: -18px;
  right: -18px;
  width: 100%;
  height: 100%;
  background: #fff3e8;
  border-radius: 16px;
  z-index: 0;
}

.re-img-box img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(232, 119, 34, .18);
}

/* Fallback decorative icon when image is missing */
.re-img-box .re-img-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 260px;
  background: linear-gradient(135deg, #fff3e8 0%, #fde8cc 100%);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow: 0 8px 32px rgba(232, 119, 34, .12);
}

.re-img-box .re-img-placeholder span {
  font-size: 1rem;
  font-weight: 700;
  color: #e87722;
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =============================================
   MODULE CARDS
   ============================================= */
.re-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
}

.re-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 22px;
  flex: 1 1 220px;
  max-width: 255px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, .07);
  border-top: 4px solid #e87722;
  transition: transform .25s, box-shadow .25s;
  text-align: center;
}

.re-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 34px rgba(232, 119, 34, .20);
}

.re-card .rc-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff3e8, #fde8cc);
  color: #e87722;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 2px 8px rgba(232, 119, 34, .15);
}

.re-card h3 {
  font-size: .97rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.re-card p {
  font-size: .88rem;
  color: #555;
  line-height: 1.65;
}

/* =============================================
   FEATURE CHIPS
   ============================================= */
.re-chips {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.re-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid #f4c49a;
  border-radius: 40px;
  padding: 10px 22px;
  font-size: .9rem;
  font-weight: 600;
  color: #1a1a1a;
  box-shadow: 0 2px 8px rgba(232, 119, 34, .08);
  transition: background .2s, color .2s, transform .2s;
  cursor: default;
}

.re-chip:hover {
  background: #e87722;
  color: #fff;
  border-color: #e87722;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(232, 119, 34, .22);
}

.re-chip:hover .chip-icon {
  filter: brightness(10);
}

.chip-icon {
  font-size: 1.1rem;
}

/* =============================================
   SERVICES CARDS
   ============================================= */
.re-services {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.re-svc {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  flex: 1 1 300px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
  border-left: 5px solid #e87722;
  transition: box-shadow .25s, transform .25s;
}

.re-svc:hover {
  box-shadow: 0 8px 26px rgba(232, 119, 34, .18);
  transform: translateY(-4px);
}

.re-svc .svc-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.re-svc .svc-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: linear-gradient(135deg, #fff3e8, #fde8cc);
  color: #e87722;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(232, 119, 34, .15);
}

.re-svc h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
}

.re-svc p {
  font-size: .88rem;
  color: #555;
  line-height: 1.7;
}

/* =============================================
   STATS BAR
   ============================================= */
.re-stats {
  background: linear-gradient(135deg, #e87722 0%, #d4621a 100%);
  padding: 56px 20px;
  position: relative;
  overflow: hidden;
}

.re-stats::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, .07);
  border-radius: 50%;
}

.re-stats::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, .05);
  border-radius: 50%;
}

.re-stats-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.re-stat {
  flex: 1 1 180px;
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(255, 255, 255, .25);
}

.re-stat:last-child {
  border-right: none;
}

.re-stat h3 {
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.re-stat p {
  font-size: .92rem;
  color: rgba(255, 255, 255, .90);
  font-weight: 500;
}

/* =============================================
   WHY US SECTION
   ============================================= */
.re-why {
  display: grid;
  flex-wrap: wrap;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 6px;
  justify-content: center;
}

.re-why-item {
  background: #fff;
  border-radius: 12px;
  padding: 20px 20px;
  flex: 1 1 200px;

  box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
  text-align: center;
  transition: transform .25s, box-shadow .25s;
  border-bottom: 3px solid transparent;
}

.re-why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(232, 119, 34, .15);
  border-bottom-color: #e87722;
}

.re-why-item .wi-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff3e8, #fde8cc);
  color: #e87722;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 3px 10px rgba(232, 119, 34, .18);
}

.re-why-item h3 {
  font-size: .97rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.re-why-item p {
  font-size: .86rem;
  color: #555;
  line-height: 1.65;
}

/* =============================================
   CTA BOX
   ============================================= */
.re-cta-box {
  background: linear-gradient(135deg, #fff 60%, #fff8f1 100%);
  border: 2px solid #f4c49a;
  border-radius: 16px;
  padding: 56px 36px;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(232, 119, 34, .10);
}

.re-cta-box h2 {
  font-size: 1.85rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 14px;
  line-height: 1.3;
}

.re-cta-box h2 span {
  color: #e87722;
}

.re-cta-box p {
  color: #555;
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-size: .97rem;
}

/* =============================================
   BUTTONS
   ============================================= */
.re-btn-main {
  display: inline-block;
  background: linear-gradient(135deg, #e87722, #cf6610);
  color: #fff !important;
  padding: 14px 36px;
  border-radius: 6px;
  font-weight: 700;
  font-size: .97rem;
  margin: 6px;
  text-decoration: none !important;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(232, 119, 34, .35);
  letter-spacing: .3px;
}

.re-btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(232, 119, 34, .45);
}

.re-btn-ghost {
  display: inline-block;
  border: 2px solid #e87722;
  color: #e87722 !important;
  padding: 12px 34px;
  border-radius: 6px;
  font-weight: 700;
  font-size: .97rem;
  margin: 6px;
  text-decoration: none !important;
  transition: all .2s;
}

.re-btn-ghost:hover {
  background: #e87722;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(232, 119, 34, .30);
  transform: translateY(-2px);
}

/* =============================================
   PROCESS / STEPS SECTION (new)
   ============================================= */
.re-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  counter-reset: step-counter;
  position: relative;
}

.re-step {
  flex: 1 1 180px;
  max-width: 220px;
  text-align: center;
  padding: 20px 16px;
  position: relative;
}

.re-step::after {
  content: '→';
  position: absolute;
  right: -14px;
  top: 36px;
  font-size: 1.4rem;
  color: #e87722;
  opacity: .5;
}

.re-step:last-child::after {
  display: none;
}

.re-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #e87722;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 12px rgba(232, 119, 34, .30);
}

.re-step h4 {
  font-size: .93rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.re-step p {
  font-size: .83rem;
  color: #666;
}

/* =============================================
   FAQ ACCORDION (new)
   ============================================= */
.re-faq {
  max-width: 780px;
  margin: 0 auto;
}

.re-faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
  overflow: hidden;
  border-left: 4px solid #e87722;
}

.re-faq-q {
  padding: 18px 22px;
  font-weight: 700;
  font-size: .95rem;
  color: #1a1a1a;
  cursor: pointer;
}

.re-faq-q::before {
  content: '▶ ';
  color: #e87722;
  font-size: .8rem;
  margin-right: 6px;
}

.re-faq-a {
  padding: 0 22px 18px 36px;
  font-size: .88rem;
  color: #555;
  line-height: 1.7;
}

/* =============================================
   INDUSTRIES / USE CASES ROW (new)
   ============================================= */
.re-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.re-industry-item {
  background: #fff;
  border: 1.5px solid #f0dcc8;
  border-radius: 10px;
  padding: 18px 20px;
  flex: 1 1 140px;
  max-width: 170px;
  text-align: center;
  transition: background .2s, border-color .2s, transform .2s;
}

.re-industry-item:hover {
  background: #e87722;
  border-color: #e87722;
  transform: translateY(-4px);
}

.re-industry-item:hover .ri-icon,
.re-industry-item:hover span {
  color: #fff;
}

.ri-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 8px;
}

.re-industry-item span {
  font-size: .85rem;
  font-weight: 600;
  color: #333;
}

/* =============================================
   TESTIMONIAL / TRUST BAR (new)
   ============================================= */
.re-trust-bar {
  background: #1a1a1a;
  padding: 28px 20px;
  text-align: center;
}

.re-trust-bar p {
  color: rgba(255, 255, 255, .75);
  font-size: .9rem;
  margin-bottom: 14px;
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.re-trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  align-items: center;
}

.re-trust-logos span {
  color: rgba(255, 255, 255, .55);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 6px 16px;
  border-radius: 4px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .re-sec {
    padding: 4px 6px;
  }

  .re-title h2 {
    font-size: 1.55rem;
  }

  .re-intro-block .re-text h2 {
    font-size: 1.55rem;
  }

  .re-img-box::before {
    display: none;
  }

  .re-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .25);
  }

  .re-stat:last-child {
    border-bottom: none;
  }

  .re-stats-inner {
    flex-direction: column;
  }

  .re-cta-box {
    padding: 36px 20px;
  }

  .re-cta-box h2 {
    font-size: 1.4rem;
  }

  .re-step::after {
    display: none;
  }
}

@media (max-width: 560px) {

  .re-card,
  .re-svc,
  .re-why-item {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .re-title h2 {
    font-size: 1.35rem;
  }

  .re-intro-block .re-text h2 {
    font-size: 1.3rem;
  }

  .re-btn-main,
  .re-btn-ghost {
    display: block;
    margin: 8px auto;
    text-align: center;
    max-width: 280px;
  }
}




/* =============================================
   BINARY MLM SOFTWARE PAGE
   ============================================= */

/* ---- PAGE H1 HEADING ---- */
.mlm-page-heading {
  text-align: center;
  padding: 10px 0 42px;
  border-bottom: 1px solid #f0e0cc;
  margin-bottom: 52px;
}

.mlm-h1 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.25;
  margin-bottom: 14px;
}

.mlm-h1 span {
  color: #e87722;
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 4px;
}

.mlm-h1-sub {
  font-size: .97rem;
  color: #555;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.mlm-wrap {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #1a1a1a;
  line-height: 1.65;
}

/* ---- HERO ---- */
.mlm-hero {
  background: linear-gradient(135deg, #0f1c2e 0%, #1a3050 60%, #0f1c2e 100%);
  padding: 80px 20px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mlm-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(232, 119, 34, .22) 0%, transparent 70%);
  border-radius: 50%;
}

.mlm-hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 119, 34, .15) 0%, transparent 70%);
  border-radius: 50%;
}

.mlm-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(232, 119, 34, .18);
  border: 1px solid rgba(232, 119, 34, .45);
  color: #f4a95e;
  padding: 6px 20px;
  border-radius: 30px;
  font-size: .80rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.mlm-hero h1 {
  font-size: 2.9rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 20px;
}

.mlm-hero h1 span {
  color: #e87722;
}

.mlm-hero-sub {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, .75);
  max-width: 640px;
  margin: 0 auto 34px;
  line-height: 1.7;
}

.mlm-hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-main {
  display: inline-block;
  background: linear-gradient(135deg, #e87722, #cf6610);
  color: #fff !important;
  padding: 15px 38px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none !important;
  box-shadow: 0 6px 22px rgba(232, 119, 34, .45);
  transition: transform .2s, box-shadow .2s;
}

.btn-hero-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(232, 119, 34, .55);
}

.btn-hero-outline {
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, .55);
  color: #fff !important;
  padding: 13px 36px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none !important;
  transition: all .2s;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

/* ---- STATS BAR ---- */
.mlm-stats-bar {
  background: linear-gradient(135deg, #e87722 0%, #cf6610 100%);
  padding: 0;
}

.mlm-stats-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.mlm-stat {
  flex: 1 1 160px;
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255, 255, 255, .25);
}

.mlm-stat:last-child {
  border-right: none;
}

.mlm-stat-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}

.mlm-stat-label {
  display: block;
  font-size: .88rem;
  color: rgba(255, 255, 255, .88);
  font-weight: 500;
}

/* ---- SECTION TAG / TITLE ---- */
.mlm-section-tag {
  display: inline-block;
  background: #fff3e8;
  color: #e87722;
  border: 1px solid #f4c49a;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mlm-sec-title {
  text-align: center;
  margin-bottom: 52px;
}

.mlm-sec-title h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.mlm-sec-title h2 span {
  color: #e87722;
}

.mlm-sec-title p {
  color: #555;
  font-size: .97rem;
  width: 100%;
  margin: 0 auto;
}

.title-line {
  display: inline-block;
  width: 55px;
  height: 4px;
  background: linear-gradient(90deg, #e87722, #f4a95e);
  border-radius: 3px;
  margin-top: 14px;
}

/* ---- SECTION PADDING ---- */
.mlm-sec {
  padding: 70px 20px;
}

.mlm-sec-alt {
  padding: 10px 5px;

  border-top: 1px solid #f0e0cc;
  border-bottom: 1px solid #f0e0cc;
}

.mlm-sec-dark {
  padding: 70px 20px;
  background: linear-gradient(135deg, #0f1c2e 0%, #1a3050 100%);
}

.mlm-container {
  width: 100%;
}

/* ---- OVERVIEW BLOCK ---- */
.mlm-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
  align-items: center;
}

.mlm-overview-text {
  flex: 1 1 380px;
}

.mlm-overview-text h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.mlm-overview-text h2 span {
  color: #e87722;
}

.mlm-overview-text p {
  color: #555;
  font-size: .97rem;
  margin-bottom: 14px;
  line-height: 1.75;
}

.mlm-overview-image {
  flex: 1 1 320px;
  text-align: center;
  position: relative;
}

.mlm-overview-image::before {
  content: '';
  position: absolute;
  top: -18px;
  right: -18px;
  width: 100%;
  height: 100%;
  background: #fff3e8;
  border-radius: 16px;
  z-index: 0;
}

.mlm-overview-image img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(232, 119, 34, .20);
}

.mlm-img-placeholder {
  position: relative;
  z-index: 1;
  min-height: 280px;
  background: linear-gradient(135deg, #fff3e8 0%, #fde8cc 100%);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 5.5rem;
  box-shadow: 0 8px 32px rgba(232, 119, 34, .14);
}

.mlm-img-placeholder span {
  font-size: .95rem;
  font-weight: 700;
  color: #e87722;
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- FEATURE CARDS ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 26px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .07);
  border-top: 4px solid #e87722;
  transition: transform .25s, box-shadow .25s;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 38px rgba(232, 119, 34, .20);
}

.feature-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff3e8, #fde8cc);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 3px 10px rgba(232, 119, 34, .18);
}

.feature-icon-wrap svg {
  width: 30px;
  height: 30px;
  fill: #e87722;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: .88rem;
  color: #555;
  line-height: 1.7;
}

/* ---- HOW IT WORKS (STEPS) ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  counter-reset: step;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, #e87722, #f4a95e);
  z-index: 0;
}

.step-item {
  text-align: center;
  padding: 0 18px 0;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e87722, #cf6610);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(232, 119, 34, .38);
  border: 4px solid #fff;
}

.step-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.step-item p {
  font-size: .87rem;
  color: #555;
  line-height: 1.65;
}

/* ---- BENEFITS LIST ---- */
.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.benefit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  padding: 24px 22px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
  border-left: 4px solid #e87722;
  transition: transform .2s, box-shadow .2s;
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(232, 119, 34, .16);
}

.benefit-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff3e8, #fde8cc);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(232, 119, 34, .15);
}

.benefit-icon-wrap svg {
  width: 26px;
  height: 26px;
  fill: #e87722;
}

.benefit-item h4 {
  font-size: .97rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.benefit-item p {
  font-size: .87rem;
  color: #555;
  line-height: 1.65;
}

/* ---- WHY CHOOSE US (DARK BG) ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-item {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  padding: 32px 26px;
  text-align: center;
  transition: background .25s, transform .25s;
}

.why-item:hover {
  background: rgba(232, 119, 34, .18);
  border-color: rgba(232, 119, 34, .45);
  transform: translateY(-6px);
}

.why-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(232, 119, 34, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 14px rgba(232, 119, 34, .25);
}

.why-icon-wrap svg {
  width: 30px;
  height: 30px;
  fill: #f4a95e;
}

.why-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.why-item p {
  font-size: .87rem;
  color: rgba(255, 255, 255, .68);
  line-height: 1.65;
}

/* ---- MLM MODULES CHIPS ---- */
.mlm-plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.mlm-plan-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1.5px solid #f4c49a;
  border-radius: 10px;
  padding: 16px 18px;
  font-size: .92rem;
  font-weight: 600;
  color: #1a1a1a;
  box-shadow: 0 2px 8px rgba(232, 119, 34, .08);
  transition: all .2s;
}

.mlm-plan-chip:hover {
  background: #e87722;
  color: #fff;
  border-color: #e87722;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(232, 119, 34, .28);
}

.mlm-plan-chip:hover .plan-chip-icon {
  filter: brightness(10);
}

.plan-chip-icon {
  font-size: 1.3rem;
}

/* ---- BOTTOM CTA ---- */
.mlm-bottom-cta {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #fff3e8 0%, #fff8f1 100%);
  border-top: 1px solid #f4c49a;
  position: relative;
  overflow: hidden;
}

.mlm-bottom-cta::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(232, 119, 34, .12) 0%, transparent 70%);
  border-radius: 50%;
}

.mlm-bottom-cta-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
}

.mlm-bottom-cta h2 {
  font-size: 2rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 14px;
  line-height: 1.3;
}

.mlm-bottom-cta h2 span {
  color: #e87722;
}

.mlm-bottom-cta p {
  color: #555;
  font-size: .97rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ---- FAQ ---- */
.mlm-faq {
  width: 100%;
  margin: 0 auto;
}

.mlm-faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
  border-left: 4px solid #e87722;
  overflow: hidden;
}

.mlm-faq-q {
  padding: 18px 22px;
  font-weight: 700;
  font-size: .95rem;
  color: #1a1a1a;
}

.mlm-faq-q::before {
  content: '▶ ';
  color: #e87722;
  font-size: .78rem;
  margin-right: 6px;
}

.mlm-faq-a {
  padding: 0 22px 18px 36px;
  font-size: .88rem;
  color: #555;
  line-height: 1.75;
}

/* ---- RESPONSIVE — MLM PAGE ---- */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid::before {
    display: none;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mlm-plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mlm-hero h1 {
    font-size: 2.1rem;
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .mlm-plans-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mlm-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
  }

  .mlm-stat:last-child {
    border-bottom: none;
  }

  .mlm-stats-inner {
    flex-direction: column;
  }

  .mlm-hero h1 {
    font-size: 1.7rem;
  }

  .mlm-hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .btn-hero-main,
  .btn-hero-outline {
    width: 260px;
    text-align: center;
  }

  .mlm-overview {
    gap: 30px;
  }

  .mlm-overview-image::before {
    display: none;
  }

  .mlm-sec,
  .mlm-sec-alt,
  .mlm-sec-dark {
    padding: 46px 14px;
  }
}

/* ---- WHY CHOOSE US — LIGHT VERSION ---- */
.mlm-why-us-sec .why-item {
  background: #fff;
  border: 1px solid #f0e0cc;
  border-bottom: 3px solid transparent;
}

.mlm-why-us-sec .why-item:hover {
  background: #fff;
  border-color: #f0e0cc;
  border-bottom-color: #e87722;
  box-shadow: 0 10px 28px rgba(232,119,34,.15);
}

.mlm-why-us-sec .why-icon-wrap {
  background: linear-gradient(135deg, #fff3e8, #fde8cc);
  box-shadow: 0 3px 10px rgba(232,119,34,.18);
}

.mlm-why-us-sec .why-icon-wrap svg {
  fill: #e87722;
}

.mlm-why-us-sec .why-item h4 {
  color: #1a1a1a;
}

.mlm-why-us-sec .why-item p {
  color: #555;
}
