.erp-hero-v2 {
  position: relative;
  padding: 60px 0;
  background: #ffffff;
  overflow: hidden;
}

/* 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;
  }
}

/* ============================================= 
Highlighted Features Section 
================================================*/

.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;
  }
}

/* -----------=---------------------- 
Cards 
------------------------------------*/

/* =========================================================
   Asset Serve Section (Image + Content Alternating Cards)
   Theme Colors:
   #c0c9ee - Border
   #F5EFFF - Background
   #4a3185 - Main
========================================================= */

.asset-serve-section {
  padding: 90px 0;
  background: #ffffff;
}

.asset-serve-head {
  margin-bottom: 40px;
  /* width: 50%; */
}

.asset-serve-title {
  font-size: 115px;
  font-weight: 900;
  line-height: 1.05;
  color: #101828;
  margin: 0;
  width: 50%;
}

.asset-serve-subtitle {
  text-align: center;
  margin-top: 12px;
  /* max-width: 720px; */
  font-size: 17px;
  line-height: 1.75;
  color: rgba(16, 24, 40, 0.7);
}

.asset-serve-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 40px 0;
}

/* Reverse means: image LEFT, content RIGHT */
.asset-serve-row.reverse {
  flex-direction: row-reverse;
}

/* Content */
.asset-serve-content {
  flex: 1;
  max-width: 560px;
}

.asset-serve-card-title {
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 12px;
  color: #101828;
}

.asset-serve-card-text {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(16, 24, 40, 0.72);
  margin: 0;
  max-width: 520px;
}

/* Media */
.asset-serve-media {
  flex: 1;
  display: flex;
  justify-content: center;
}

.asset-serve-img-card {
  width: 100%;
  max-width: 560px;
  background: #f5efff;
  border: 1px solid #c0c9ee;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 22px 50px rgba(16, 24, 40, 0.1);
}

.asset-serve-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

/* Divider line */
.asset-serve-divider {
  height: 1px;
  width: 100%;
  background: rgba(16, 24, 40, 0.1);
}

/* Responsive */
@media (max-width: 991px) {
  .asset-serve-title {
    font-size: 36px;
    text-align: center;
    width: 100%;
  }

  .asset-serve-row,
  .asset-serve-row.reverse {
    flex-direction: column;
    text-align: left;
    gap: 24px;
  }

  .asset-serve-card-title {
    font-size: 32px;
  }

  .asset-serve-img {
    height: 240px;
  }
}

.erp-faq-section {
  padding: 85px 0;
  background: #ffffff;
}

.erp-mini-title {
  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;
  margin-bottom: 12px;
}

.erp-section-title {
  margin-top: 10px;
  font-size: 46px;
  font-weight: 900;
  line-height: 1.15;
  color: #101828;
}

.erp-section-title span {
  color: #4a3185;
}

.erp-section-subtitle {
  margin: 14px auto 0 auto;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.7;
  color: #475467;
}

/* Accordion wrapper */
.erp-faq-accordion {
  max-width: 1100px;
  margin: 0 auto;
}

/* Accordion item */
.erp-faq-item {
  background: transparent;
  border: none;
  margin-bottom: 16px;
}

/* Accordion button */
.erp-faq-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-faq-btn:focus {
  box-shadow: 0 0 0 4px rgba(74, 49, 133, 0.15) !important;
}

/* Arrow icon */
.accordion-button::after {
  filter: grayscale(1);
  opacity: 0.9;
}

/* Accordion body */
.erp-faq-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;
}

/* Opened state - connected look */
.accordion-button:not(.collapsed) {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

/* Responsive */
@media (max-width: 991px) {
  .erp-section-title {
    font-size: 34px;
  }

  .erp-faq-btn {
    font-size: 15px;
  }
}

.erp-last-cta {
  padding: 85px 0;
  background: #ffffff;
}

.erp-last-cta-box {
  position: relative;
  padding: 70px 40px;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(245, 239, 255, 1) 0%,
    rgba(192, 201, 238, 0.45) 100%
  );
  border: 1px solid #c0c9ee;
  box-shadow: 0 26px 55px rgba(16, 24, 40, 0.08);
  overflow: hidden;
}

.erp-last-cta-title {
  font-size: 54px;
  font-weight: 900;
  line-height: 1.15;
  color: #101828;
  margin-bottom: 16px;
}

.erp-last-cta-title span {
  color: #4a3185;
}

.erp-last-cta-subtitle {
  max-width: 820px;
  margin: 0 auto 28px auto;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(16, 24, 40, 0.65);
}

/* Buttons */
.erp-last-cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.erp-last-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 15px;
  text-decoration: none;
  transition: 0.25s ease;
}

.erp-last-cta-btn.primary {
  background: #4a3185;
  color: #ffffff;
  border: 1px solid #4a3185;
  box-shadow: 0 16px 34px rgba(74, 49, 133, 0.25);
}

.erp-last-cta-btn.primary:hover {
  transform: translateY(-2px);
  color: #fff;
}

.erp-last-cta-btn.outline {
  background: rgba(255, 255, 255, 0.55);
  color: #4a3185;
  border: 1px solid rgba(74, 49, 133, 0.35);
}

.erp-last-cta-btn.outline:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
  .erp-last-cta-box {
    padding: 55px 22px;
  }

  .erp-last-cta-title {
    font-size: 34px;
  }
}
