/* Hero Section v3 */
.hero-v3 {
  position: relative;
  background: #fff;
  overflow: hidden;
}

.hero-v3 h1 span {
  color: var(--primary-color, #6b4cff);
}

.hero-v3::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background: radial-gradient(
    1200px 600px at 20% 20%,
    rgba(107, 76, 255, 0.6) 0%,
    rgba(45, 27, 105, 0.95) 40%,
    rgba(25, 12, 68, 1) 100%
  );
  z-index: 0;
}

.hero-v3__container {
  position: relative;
  z-index: 1;
}

.hero-v3__tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 18px;
  background: #fff;
}

.hero-v3__heading {
  line-height: 1.08;
  margin: 0 0 18px;
}

.hero-v3__desc {
  font-size: 16px;
  line-height: 26px;
  color: rgba(11, 15, 26, 0.72);
  max-width: 62ch;
}

.hero-v3__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
  margin-bottom: 40px;
}

.hero-v3__partnership {
margin-bottom: 40px;
}

.hero-v3__partnership-title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.hero-v3__partnership-img {
  max-height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.hero-v3__btn-primary {
  background: var(--primary-color, #6b4cff);
  color: #fff !important;
  border-radius: 8px;
  border: 0;
  box-shadow: 0 10px 28px rgba(107, 76, 255, 0.22);
}

.hero-v3__btn-primary:hover {
  color: #fff !important;
  transform: translateY(-1px);
}


.hero-v3__stats {
  display: flex;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.hero-v3-stat {
  background: #fff;
  border: 1px solid #E0E0E0;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.hero-v3-stat__icon {
  font-size: 14px;
  line-height: 1;
  color: rgba(11, 15, 26, 0.55);
  margin-bottom: 8px;
}

.hero-v3-stat__value {
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 2px;
  color: #000000;
}

.hero-v3-stat__title {
  line-height: 22px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.hero-v3__right {
  position: relative;
}

.hero-v3-form {
  position: relative;
  margin: 48px 0 0 48px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 56px 0 rgba(0, 0, 0, 0.16);
  padding: 24px;
}

.hero-v3-form__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 8px;
}

.hero-v3-form__tagline {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 0px;
}

.hero-v3-form__title {
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 20px;
  line-height: 25px;
}

.hero-v3-form__badge {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  background: #21965314;
  color: #0b7a59;
  border: 1px solid #21965314;
  border-radius: 4px;
  padding: 6px 10px;
  white-space: nowrap;
}

.hero-v3-form__desc {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 24px;
}

.hero-v3-form__features {
  list-style: none; /* remove default numbers */
  counter-reset: item;
  margin-bottom: 24px;
  padding-left: 0;
}

.hero-v3-form__features li {
  counter-increment: item;
  position: relative;

  font-weight: 600;
  font-size: 16px;
  line-height: 20px;

  padding-left: 32px; /* space for custom number */
  margin-left: 0;
  margin-bottom: 12px;
}

.hero-v3-form__features li::before {
  content: counter(item, decimal-leading-zero); /* 01, 02, 03 */
  position: absolute;
  left: 0;
  top: 0;

  color: var(--primary-color, #6b4cff);
}

/* CF7: keep it looking like the screenshot; forms can vary, so we style common elements */
.hero-v3-form__form input[type="text"],
.hero-v3-form__form input[type="email"],
.hero-v3-form__form input[type="tel"],
.hero-v3-form__form input[type="url"],
.hero-v3-form__form input[type="number"],
.hero-v3-form__form select,
.hero-v3-form__form textarea {
  width: 100%;
  border: 1px solid #BFBFBF !important;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 16px;
  line-height: 20px;
  outline: none;
}

/* .hero-v3-form__form textarea {
  min-height: 80px;
  resize: vertical;
} */
.hero-v3-form__form label.form-label {
  display: none;
}

.hero-v3-form__form input:focus,
.hero-v3-form__form select:focus,
.hero-v3-form__form textarea:focus {
  border-color: rgba(107, 76, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(107, 76, 255, 0.14);
}

.hero-v3-form__form .wpcf7-form-control-wrap {
  display: block;
  /* margin-bottom: 10px; */
}

.hero-v3-form__form input[type="submit"],
.hero-v3-form__form button,
.hero-v3-form__form .wpcf7-submit {
  width: 100%;
  margin-top: 0px;
  background: var(--primary-color, #6b4cff);
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 12px 14px;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  box-shadow: 0 12px 28px rgba(107, 76, 255, 0.22);
}

.hero-v3-form__form .wpcf7-not-valid-tip {
  font-size: 12px;
}

.hero-v3-form__form .wpcf7-response-output {
  margin: 10px 0 0;
  font-size: 12px;
  border-radius: 10px;
}

@media only screen and (max-width: 991px) {
  .hero-v3 {
    padding-bottom: 48px;
  }

  .hero-v3::after {
    width: 100%;
  }

  .hero-v3-form {
    margin: 0px;
  }

  .hero-v3__stats {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 8px;
    max-width: 100%;
  }

  .hero-v3__stats > * {
    flex: 0 0 auto;
    min-width: 260px;
  }

  .hero-v3-form {
    margin-top: 18px;
    max-width: 100%;
  }
}

.hero-v3-form__desc ul {
  list-style: none; /* remove default numbers */
  counter-reset: item;
  margin-top: 24px;
  padding-left: 0;
}

.hero-v3-form__desc ul li {
  counter-increment: item;
  position: relative;

  font-weight: 600;
  font-size: 16px;
  line-height: 20px;

  padding-left: 32px; /* space for custom number */
  margin-left: 0;
  margin-bottom: 12px;
}

.hero-v3-form__desc ul li::before {
  content: counter(item, decimal-leading-zero); /* 01, 02, 03 */
  position: absolute;
  left: 0;
  top: 0;

  color: var(--primary-color, #6b4cff);
}
strong.head-strong {
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
}
.hero-v3-form__desc > p {
  margin-bottom: 8px;
}
@media only screen and (max-width: 991px) {
  .hero-v3::after {
    
    background: none !important;
    z-index: 0;
  }
}

.hero-v3-form__form .contact-form.container.footer {
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .hero-v3__tagline {
    margin-top: 40px;
  }
}


.hero-v3-form__form textarea {
  height: 80px !important;
}

@media only screen and (max-height: 800px) and (min-width: 992px) { 
  .hero-v3-form {
    margin: 24px 0 0 48px !important;
  }
}