.ctaVariationOne {
  margin: 100px 0 130px;
}

.ctaVariationOneWrapper {
  max-width: 1012px;
  width: 100%;
  margin: auto;
  border-radius: 30px;
  text-align: center;
  padding: 50px 40px 20px;
  position: relative;
}

/* Background Color Variations */
.cta-blue {
  background: linear-gradient(101.41deg, #1176CA 3.07%, #064377 100%);
}

.cta-green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.cta-purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

/* Heading */
.ctaV1Heading {
  font-weight: 500;
  font-size: 32px;
  line-height: 120%;
  color: #FFFFFF;
  margin-bottom: 35px;
}

/* Features List */
.ctaV1Features {
  list-style: none;
  padding: 0;
  margin: 0 auto 35px;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ctaV1Feature {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #FFFFFF;
  position: relative;
  padding-left: 40px;
  text-align: left;
  display: flex;
  align-items: center;
}

.ctaV1Feature::before {
  content: '✓';
  position: absolute;
  left: 0;
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  color: #FFFFFF;
}

/* Trust Badges - Review Bar Style */
.ctaV1TrustBadges {
  gap: 20px;
  display: flex;
  justify-content: center;
align-items: center;
flex-wrap: wrap;
  background: transparent;
  border-radius: 70px;
  padding: 18px 25px;
  max-width: 1120px;
  /* box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15); */
  bottom: -8%;
  left: 50%;
  margin:20px auto 0px;
}

.ctaV1Badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  white-space: nowrap;
  position: relative;
  padding-right: 20px;
}

.ctaV1Badge:not(:last-child)::after {
  content: '';
  width: 1px;
  height: 30px;
  background-color: #CFDEF0;
  position: absolute;
  right: 0;
}

/* Buttons */
.ctaV1Buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.ctaV1PrimaryBtn {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  max-width: max-content;
  padding: 14px 28px;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  color: #1E293B;
  border-radius: 100rem;
  transition: all ease-in 0.3s;
  border: 2px solid transparent;
}

.ctaV1PrimaryBtn:hover {
  transform: translateY(-4px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.ctaV1SecondaryBtn {
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  max-width: max-content;
  padding: 14px 28px;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  color: #FFFFFF;
  border-radius: 100rem;
  transition: all ease-in 0.3s;
  border: 2px solid #FFFFFF;
}

.ctaV1SecondaryBtn:hover {
  transform: translateY(-4px);
  background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .ctaVariationOne {
    margin: 80px 0;
  }

  .ctaVariationOneWrapper {
    padding: 40px 25px;
    border-radius: 20px;
  }

  .ctaV1Heading {
    font-size: 24px;
    line-height: 140%;
    margin-bottom: 25px;
  }

  .ctaV1Features {
    margin-bottom: 30px;
    gap: 14px;
  }

  .ctaV1Feature {
    font-size: 14px;
    padding-left: 35px;
  }

  .ctaV1Feature::before {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
/* 
  .ctaV1TrustBadges {
    gap: 15px;
    margin-bottom: 30px;
    padding: 15px 20px;
    border-radius: 50px;
  } */

  .ctaV1Badge {
    font-size: 13px;
    padding-right: 15px;
  }

  .ctaV1Badge:not(:last-child)::after {
    height: 25px;
  }

  .ctaV1Buttons {
    flex-direction: column;
    gap: 12px;
  }

  .ctaV1PrimaryBtn,
  .ctaV1SecondaryBtn {
    width: 100%;
    max-width: 320px;
    height: 48px;
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .ctaV1Heading {
    font-size: 20px;
  }

  .ctaV1Feature {
    font-size: 13px;
    padding-left: 32px;
  }

  .ctaV1Feature::before {
    width: 18px;
    height: 18px;
    font-size: 11px;
  }

  .ctaV1TrustBadges {
    grid-template-columns: 1fr;
    flex-direction: column;
    border-radius: 30px;
    padding: 15px;
    gap: 12px;
  }

  .ctaV1Badge {
    font-size: 12px;
    padding-right: 0;
  }

  .ctaV1Badge:not(:last-child)::after {
    display: none;
  }

  .ctaV1PrimaryBtn,
  .ctaV1SecondaryBtn {
    height: 45px;
    padding: 12px 20px;
  }
}
