/* =========================================================
   ERP HERO V2 (Light Mode + Wide + Bigger Image)
   Colors:
   Border: #c0c9ee
   Background: #F5EFFF
   Main: #4a3185
========================================================= */

.erp-hero-v2 {
  position: relative;
  padding: 60px 0;
  background: #ffffff;
  overflow: hidden;
  height: 85vh;
}

/* Soft background blobs */
.erp-hero-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(74, 49, 133, 0.18) 0%,
    rgba(245, 239, 255, 0.12) 35%,
    rgba(255, 255, 255, 1) 75%
  );
  z-index: 0;
  pointer-events: none;
}

.erp-hero-v2::after {
  content: "";
  position: absolute;
  bottom: -220px;
  right: -220px;
  width: 560px;
  height: 560px;
  background: radial-gradient(
    circle,
    rgba(192, 201, 238, 0.35),
    transparent 60%
  );
  filter: blur(12px);
  z-index: 0;
}

.erp-hero-v2 .erp-container-wide {
  position: relative;
  z-index: 2;
  max-width: 1380px; /* Wider container */
}

.erp-mini-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #4a3185;
  margin-bottom: 14px;
}

.erp-title {
  font-size: 64px;
  line-height: 1.03;
  font-weight: 900;
  margin-bottom: 18px;
  color: #101828;
}

.erp-title span {
  color: #4a3185; /* MAIN */
}

.erp-subtitle {
  font-size: 17px;
  line-height: 1.75;
  color: #475467;
  margin-bottom: 26px;
  max-width: 520px;
}

/* Buttons */
.erp-btns {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.erp-btn-primary {
  background: #4a3185;
  color: #fff;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
  border: 1px solid #4a3185;
  box-shadow: 0 14px 28px rgba(255, 106, 0, 0.18);
  transition: 0.25s ease;
}

.erp-btn-primary:hover {
  background: #4a3185;
  border-color: #4a3185;
  color: #fff;
  transform: translateY(-2px);
}

.erp-btn-link {
  font-weight: 800;
  color: #101828;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s ease;
}

.erp-btn-link:hover {
  color: #4a3185;
}

/* Tags */
.erp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.erp-tag {
  padding: 10px 14px;
  border-radius: 999px;
  background: #f5efff; /* BG */
  border: 1px solid #c0c9ee; /* Border */
  color: #4a3185; /* Main */
  font-weight: 800;
  font-size: 13px;
}

/* Right media card */
.erp-hero-right {
  display: flex;
  justify-content: center;
}

.erp-media-card {
  width: 100%;
  max-width: 620px; /* Bigger image card */
  background: #f5efff; /* BG */
  border: 1px solid #c0c9ee; /* Border */
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 20px 45px rgba(16, 24, 40, 0.1);
}

.erp-hero-img {
  width: 100%;
  height: 340px; /* Bigger image */
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(192, 201, 238, 0.55);
}

/* Responsive */
@media (max-width: 991px) {
  .erp-hero-v2 {
    padding: 65px 0;
  }

  .erp-title {
    font-size: 44px;
  }

  .erp-media-card {
    max-width: 100%;
  }

  .erp-hero-img {
    height: 260px;
  }
}

/* 
-------------------
*/

/* =========================================================
   ERP MODULE CARDS (3 per row, same size like screenshot)
   Border: #c0c9ee
   Background: #F5EFFF
   Main: #4a3185
========================================================= */

.erp-modules-section {
  padding: 85px 0;
  background: #ffffff;
}

.erp-container-wide {
  max-width: 1380px;
}

/* Heading */
.erp-modules-head {
  margin-bottom: 35px;
}

.erp-modules-title {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.15;
  color: #101828;
  margin-bottom: 12px;
}

.erp-modules-title span {
  color: #4a3185;
}

.erp-modules-subtitle {
  max-width: 780px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: #475467;
}

/* Card Base */
.erp-module-card {
  position: relative;
  height: 430px; /* FIXED HEIGHT like screenshot */
  border-radius: 22px;
  background: #f5efff;
  border: 1px solid #c0c9ee;
  padding: 28px 26px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.1);
  transition: 0.25s ease;
  display: flex;
  flex-direction: column;
}

/* subtle pattern overlay */
.erp-module-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0),
      rgba(74, 49, 133, 0.05)
    ),
    repeating-linear-gradient(
      45deg,
      rgba(74, 49, 133, 0.06) 0px,
      rgba(74, 49, 133, 0.06) 2px,
      transparent 2px,
      transparent 16px
    );
  opacity: 0.35;
  z-index: 0;
}

.erp-module-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(16, 24, 40, 0.14);
}

/* Number */
.erp-card-no {
  position: relative;
  z-index: 2;
  font-size: 16px;
  font-weight: 900;
  color: rgba(74, 49, 133, 0.55);
  margin-bottom: 18px;
}

/* Title (big like screenshot) */
.erp-card-title {
  position: relative;
  z-index: 2;
  font-size: 42px; /* BIG */
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.5px;
  color: #4a3185;
  text-transform: uppercase;
  margin-bottom: 0;
}

/* Description at bottom */
.erp-card-desc {
  position: relative;
  z-index: 2;
  margin-top: auto; /* push to bottom */
  font-size: 15px;
  line-height: 1.7;
  color: rgba(16, 24, 40, 0.75);
  max-width: 95%;
}

/* CTA Card */
.erp-module-cta {
  justify-content: space-between;
}

.erp-module-btn {
  position: relative;
  z-index: 2;
  margin-top: auto;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
  border-radius: 14px;
  background: #4a3185;
  border: 1px solid #4a3185;
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
  transition: 0.25s ease;
}

.erp-module-btn:hover {
  background: #3a256a;
  border-color: #3a256a;
  transform: translateY(-2px);
  color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .erp-modules-title {
    font-size: 34px;
  }

  .erp-module-card {
    height: auto; /* auto on mobile */
    min-height: 360px;
  }

  .erp-card-title {
    font-size: 32px;
  }
}

/* --------------------------------- */
.erp-highlights-strip {
  padding: 65px 0;
  background: #ffffff;
}

/* Common row style */
.erp-highlights-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 90px;
  flex-wrap: nowrap; /* keeps them in one line */
}

/* Space between row 1 and row 2 */
.erp-row-3 {
  margin-bottom: 70px;
}

.erp-highlight-item {
  text-align: center;
  width: 240px; /* fixed width so alignment stays perfect */
}

/* Icon circle */
.erp-highlight-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  margin: 0 auto 14px auto;
  background: #f5efff;
  border: 1px solid #c0c9ee;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 34px rgba(16, 24, 40, 0.08);
}

.erp-highlight-icon i {
  font-size: 22px;
  color: #4a3185;
}

/* Label */
.erp-highlight-label {
  margin: 0 0 6px 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(16, 24, 40, 0.55);
}

/* Value */
.erp-highlight-value {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  color: #101828;
  line-height: 1.25;
}

/* Responsive */
@media (max-width: 991px) {
  .erp-highlights-row {
    flex-wrap: wrap; /* now it wraps nicely */
    gap: 40px;
  }

  .erp-row-3 {
    margin-bottom: 40px;
  }

  .erp-highlight-item {
    width: 220px;
  }
}

@media (max-width: 576px) {
  .erp-highlight-item {
    width: 100%;
    max-width: 280px;
  }
}

/*=========================================
       Frequently Asked Questions 
=========================================*/

/* =========================================================
   ERP FAQ Section (Light Theme)
   Border: #c0c9ee
   Background: #F5EFFF
   Main: #4a3185
========================================================= */

.erp-faq-section {
  padding: 85px 0;
  background: #ffffff;
}

.erp-faq-head {
  margin-bottom: 40px;
}

.erp-faq-pill {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f5efff;
  border: 1px solid #c0c9ee;
  color: #4a3185;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 1px;
}

.erp-faq-title {
  margin-top: 16px;
  font-size: 46px;
  font-weight: 900;
  line-height: 1.15;
  color: #101828;
}

.erp-faq-title span {
  color: #4a3185;
}

.erp-faq-subtitle {
  margin: 14px auto 0 auto;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.7;
  color: #475467;
}

/* Wrapper */
.erp-faq-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

/* Bootstrap accordion overrides */
.erp-acc-item {
  background: transparent;
  border: none;
  margin-bottom: 16px;
}

.erp-acc-btn {
  background: #ffffff !important;
  border: 1px solid #c0c9ee !important;
  border-radius: 16px !important;
  padding: 18px 20px !important;
  font-weight: 900;
  font-size: 16px;
  color: #101828 !important;
  box-shadow: 0 16px 34px rgba(16, 24, 40, 0.06);
}

.erp-acc-btn:focus {
  box-shadow: 0 0 0 4px rgba(74, 49, 133, 0.15) !important;
}

.accordion-button::after {
  filter: grayscale(1);
  opacity: 0.9;
}

.erp-acc-body {
  background: #f5efff;
  border: 1px solid #c0c9ee;
  border-top: none;
  border-radius: 0 0 16px 16px;
  padding: 18px 20px;
  color: rgba(16, 24, 40, 0.75);
  font-size: 15px;
  line-height: 1.7;
}

/* Make opened state look connected */
.accordion-item:first-of-type .accordion-button,
.accordion-item:last-of-type .accordion-button {
  border-radius: 16px !important;
}

.accordion-button:not(.collapsed) {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

/* Responsive */
@media (max-width: 991px) {
  .erp-faq-title {
    font-size: 34px;
  }

  .erp-acc-btn {
    font-size: 15px;
  }
}

/* ========================================================
        CTA SECTION
=========================================================*/

/* =========================================================
   ERP Final CTA Section
========================================================= */

.erp-final-cta {
  padding: 90px 0;
  background: #ffffff;
}

.erp-final-cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 70px 40px;
  text-align: center;

  background: #f5efff;
  border: 1px solid #c0c9ee;

  box-shadow: 0 24px 60px rgba(16, 24, 40, 0.1);
}

/* Glow background */
.erp-final-cta-box::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(74, 49, 133, 0.22), transparent 65%);
  filter: blur(18px);
  z-index: 0;
}

.erp-final-cta-box::after {
  content: "";
  position: absolute;
  right: -160px;
  top: -160px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(74, 49, 133, 0.16), transparent 65%);
  filter: blur(18px);
  z-index: 0;
}

/* Content on top */
.erp-final-cta-title,
.erp-final-cta-subtitle,
.erp-final-cta-actions {
  position: relative;
  z-index: 2;
}

.erp-final-cta-title {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.15;
  color: #101828;
  margin-bottom: 14px;
}

.erp-final-cta-title span {
  color: #4a3185;
}

.erp-final-cta-subtitle {
  max-width: 760px;
  margin: 0 auto 28px auto;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(16, 24, 40, 0.7);
}

/* Buttons */
.erp-final-cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.erp-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: 0.25s ease;
  min-width: 210px;
}

/* Primary */
.erp-cta-btn.primary {
  background: #4a3185;
  border: 1px solid #4a3185;
  color: #ffffff;
}

.erp-cta-btn.primary:hover {
  background: #3a256a;
  border-color: #3a256a;
  transform: translateY(-2px);
  color: #fff;
}

/* Outline */
.erp-cta-btn.outline {
  background: transparent;
  border: 1px solid rgba(74, 49, 133, 0.35);
  color: #4a3185;
}

.erp-cta-btn.outline:hover {
  background: rgba(74, 49, 133, 0.08);
  border-color: rgba(74, 49, 133, 0.55);
  transform: translateY(-2px);
  color: #4a3185;
}

/* Responsive */
@media (max-width: 991px) {
  .erp-final-cta-box {
    padding: 55px 22px;
  }

  .erp-final-cta-title {
    font-size: 34px;
  }
}
