.investor-page {
  --investor-purple: #60458f;
  --investor-purple-dark: #47356f;
  --investor-ink: #2f2939;
  --investor-muted: #77717f;
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding: 74px 24px 92px;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.98) 0 24%, rgba(248, 248, 251, 0.94) 49%, transparent 70%),
    #eef0f4;
  border-top: 1px solid #9e9da3;
}

.investor-page::before,
.investor-page::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.investor-page::before {
  width: 540px;
  height: 540px;
  left: -210px;
  top: 210px;
  border: 90px solid rgba(255, 255, 255, 0.38);
}

.investor-page::after {
  width: 470px;
  height: 470px;
  right: -250px;
  bottom: -150px;
  background: rgba(255, 255, 255, 0.42);
}

.investor-form-card {
  position: relative;
  z-index: 1;
  width: min(100%, 610px);
  margin: 0 auto;
  overflow: hidden;
  padding: 48px 78px 52px;
  border: 1px solid rgba(96, 69, 143, 0.12);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 65px rgba(54, 43, 73, 0.1);
}

.investor-form-card::before,
.investor-form-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.investor-form-card::before {
  width: 430px;
  height: 260px;
  left: -230px;
  top: 95px;
  border-radius: 50%;
  background: #fafafd;
  transform: rotate(35deg);
}

.investor-form-card::after {
  width: 520px;
  height: 250px;
  right: -220px;
  bottom: -80px;
  border-radius: 50%;
  background: #fafafd;
  transform: rotate(24deg);
}

.investor-form-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  text-align: center;
}

.investor-logo {
  display: block;
  width: 170px;
  height: auto;
  margin: 0 auto 20px;
}

.investor-heading {
  margin: 0;
  color: var(--investor-purple);
  font-size: clamp(24px, 3.1vw, 34px);
  font-weight: 700;
  line-height: 1.18;
}

.investor-heading span {
  display: block;
  direction: ltr;
}

.investor-intro {
  margin: 12px 0 20px;
  color: var(--investor-ink);
  font-size: 14px;
  line-height: 1.5;
}

.investor-intro strong {
  display: block;
  color: var(--investor-purple);
  font-size: 17px;
}

.investor-intro .english-copy {
  display: block;
  direction: ltr;
  margin-top: 5px;
}

#crmWebToEntityForm.crmWebToEntityForm {
  max-width: none !important;
  padding: 0 !important;
  background: transparent !important;
  color: var(--investor-ink) !important;
}

.investor-form .zcwf_row {
  position: relative;
  margin: 0 0 12px;
}

.investor-form .zcwf_col_lab {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.investor-form .zcwf_col_fld {
  width: 100%;
  padding: 0;
}

.investor-form .zcwf_col_fld::after {
  content: attr(data-step);
  position: absolute;
  top: 50%;
  right: 13px;
  color: #c7c3cb;
  font-size: 9px;
  transform: translateY(-50%);
}

.investor-form input[type="text"],
.investor-form input[type="email"],
.investor-form input[type="tel"] {
  width: 100% !important;
  height: 39px;
  float: none !important;
  padding: 7px 42px 7px 28px;
  border: 1px solid #77649c !important;
  border-radius: 5px !important;
  background: rgba(255, 255, 255, 0.7);
  color: var(--investor-ink);
  font-family: inherit;
  font-size: 12px;
  text-align: center;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.investor-form input::placeholder {
  color: #aaa5ae;
  opacity: 1;
}

.investor-form input:focus {
  border-color: var(--investor-purple-dark) !important;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(96, 69, 143, 0.13);
}

.investor-form .required-dot {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 17px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #cf3e51;
  transform: translateY(-50%);
}

.investor-form .formsubmit.zcwf_button {
  width: 100%;
  max-width: none;
  min-height: 40px;
  padding: 8px 20px;
  border: 0;
  border-radius: 5px;
  background: var(--investor-purple) !important;
  color: #fff !important;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.investor-form .formsubmit.zcwf_button:hover {
  background: var(--investor-purple-dark) !important;
  box-shadow: 0 7px 16px rgba(71, 53, 111, 0.2);
  transform: translateY(-1px);
}

.investor-form .formsubmit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.wf_customMessageBox {
  position: fixed;
  z-index: 11000;
  top: 20px;
  left: 50%;
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 180px;
  max-width: 90%;
  padding: 12px 16px;
  border: 1px solid #a9d3ab;
  border-radius: 8px;
  background: #f5faf5;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
  color: #132c14;
  transform: translateX(-50%);
}

.wf_customCircle {
  position: relative;
  width: 20px;
  height: 20px;
  flex: none;
  margin-left: 8px;
  border-radius: 50%;
  background: #12aa67;
}

.wf_customCheckMark {
  position: absolute;
  top: 4px;
  left: 7px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

@media (max-width: 767px) {
  .investor-page {
    min-height: 0;
    padding: 42px 16px 54px;
  }

  .investor-form-card {
    padding: 38px 20px 42px;
    border-radius: 16px;
  }

  .investor-heading {
    font-size: 27px;
  }

  .investor-logo {
    width: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .investor-form input,
  .investor-form .formsubmit.zcwf_button {
    transition: none;
  }
}
