/* =====================================================
   1. HERO SECTION (DESKTOP)
===================================================== */
.ecomdev-hero-x91 {
  width: 100%;
  padding: 80px;
  background: #F5F5F5;
}

.ecomdev-hero-wrap-x91 {
  width: min(92%, 1200px);
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.ecomdev-hero-left-x91 {
  width: 50%;
}

/* ---- BREADCRUMB ---- */
.ecomdev-breadcrumb-x91 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #eef9f3;
  padding: 8px 22px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.ecomdev-breadcrumb-x91 a,
.ecomdev-breadcrumb-x91 p {
  margin: 0;
  font-size: 16px;
  color: #4bb879;
  text-decoration: none;
}

.ecomdev-breadcrumb-x91 span {
  color: #a8d9bf;
}

/* ---- HERO TEXT ---- */
.ecomdev-hero-title-x91 {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #000;
}

.ecomdev-highlight-x91 {
  font-weight: 600;
  font-family: 'Inter Tight', sans-serif !important;
  color: #2C73E5;
}

.ecomdev-hero-desc-x91 {
  font-size: 21px;
  line-height: 1.6;
  color: #555;
  max-width: 480px;
}

/* ---- HERO IMAGE ---- */
.ecomdev-hero-right-x91 {
  flex: 1;
  text-align: right;
}

.ecomdev-hero-right-x91 img {
  border-radius: 12px;
  height: auto;
  object-fit: contain;
}


/* =====================================================
   2. SYSTEM SECTION (FIXED TO MATCH SEO)
===================================================== */
.ecomdev-system-sec-x91 {
  padding: 40px 0;
  background: #f5f5f5;
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
}

.ecomdev-system-wrap-x91 {
  width: min(92%, 1200px);
  margin: 0 auto;
}

/* ✅ EXACT MATCH WITH SEO */
.ecomdev-system-head-x91 {
  display: grid;
  grid-template-columns: 4%;
  column-gap: 40%;
  row-gap: 10px;
  align-items: center;
}

/* ✅ CRITICAL FIX */
.ecomdev-system-text-x91 {
  grid-column: 2;
  display: flex;
  flex-direction: column;
}

/* ---- TYPO ---- */
.ecomdev-system-head-x91 h2 {
  font-size: 48px;
  width: 1000%; /* match SEO */
}

.ecomdev-system-head-x91 p {
  font-size: 21px;
  line-height: 1.6;
  color: #555;
}


/* =====================================================
   3. FEATURES SECTION (MATCHED)
===================================================== */
.ecomdev-features-sec-x91 {
  padding: 80px;
  background-color: #F5F5F5;
}

.ecomdev-features-wrap-x91 {
  background: #fff;
  border-radius: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

.ecomdev-features-grid-x91 {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ecomdev-feature-item-x91 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
  padding: 40px;
}

/* ---- REVERSE ---- */
.ecomdev-reverse-x91 .ecomdev-feature-text-x91 {
  order: 2;
}

.ecomdev-reverse-x91 .ecomdev-feature-img-x91 {
  order: 1;
}

/* ---- TEXT ---- */
.ecomdev-feature-text-x91 h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.ecomdev-feature-text-x91 p {
  font-size: 21px;
  line-height: 1.5;
  color: #555;
  padding-right: 70px;
}

/* ✅ CLEAN REVERSE SPACING */
.ecomdev-reverse-x91 .ecomdev-feature-text-x91 p {
  padding-right: 0;
}

/* ---- IMAGE ---- */
.ecomdev-feature-img-x91 img {
  width: 100%;
  display: block;
  object-fit: contain;
}


/* =====================================================
   4. MOBILE (CLEAN)
===================================================== */
@media (max-width: 767px) {

  /* HERO */
  .ecomdev-hero-x91 {
    padding: 50px 0;
  }

  .ecomdev-hero-wrap-x91 {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .ecomdev-hero-left-x91,
  .ecomdev-hero-right-x91 {
    width: 100%;
    text-align: center;
  }

  .ecomdev-hero-title-x91 {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .ecomdev-hero-desc-x91 {
    font-size: 16px;
    line-height: 1.5;
    max-width: 90%;
    margin: 0 auto;
  }

  .ecomdev-hero-right-x91 img {
    width: 90%;
    margin: 10px auto 0;
    display: block;
  }

  /* SYSTEM */
  .ecomdev-system-sec-x91 {
    padding: 0;
  }

  .ecomdev-system-wrap-x91 {
    padding: 20px;
  }

  .ecomdev-system-head-x91 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .ecomdev-system-head-x91 h2 {
    font-size: 24px;
    width: 100%;
  }

  .ecomdev-system-head-x91 p {
    font-size: 18px;
  }

  /* FEATURES */
  .ecomdev-features-sec-x91 {
    padding: 20px;
  }

  .ecomdev-feature-item-x91 {
    display: flex;
    flex-direction: column;
    padding: 15px;
  }

  .ecomdev-feature-text-x91 {
    order: 1 !important;
  }

  .ecomdev-feature-img-x91 {
    order: 2 !important;
  }

  .ecomdev-feature-text-x91 p {
    font-size: 18px;
    padding-right: 0;
  }
}