body {
  overflow-x: hidden;
}

.body-fixed-header {
  padding-top: 110px;
}

.section-investor {
  position: relative;
  min-height: auto;
  padding: clamp(36px, 4vw, 58px) 6vw 34px;
  background:
    linear-gradient(142deg, rgba(6, 31, 39, 0.78) 0%, rgba(10, 57, 68, 0.68) 49%, rgba(28, 111, 125, 0.58) 100%),
    url('/assets/images/new-images/investor_bg.png?v=20260730');
  background-position: center;
  background-size: cover;
  color: #fff;
  overflow: hidden;
}

.section-investor::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.07;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: linear-gradient(90deg, transparent 4%, #000 68%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 4%, #000 68%, transparent 100%);
}

.investor-shell {
  position: relative;
  z-index: 1;
  width: min(1680px, 100%);
  margin: 0 auto;
}

.investor-title {
  margin: clamp(28px, 3.2vw, 42px) 0 clamp(24px, 3vw, 38px);
  color: #fff;
  font-size: clamp(36px, 3vw, 50px);
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.investor-content {
  display: grid;
  grid-template-columns: minmax(520px, 1.15fr) minmax(420px, 0.85fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.investor-copy p {
  max-width: 760px;
  margin: 0 0 30px;
  color: #fff;
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 1.3px;
}

.investor-form-container .row {
  margin-right: -12px;
  margin-left: -12px;
}

.investor-form-container [class*="col-"] {
  padding-right: 12px;
  padding-left: 12px;
}

.investor-form-container .form-group {
  margin-bottom: 16px;
}

.investor-form-control {
  width: 100%;
  height: 42px;
  padding: 8px 12px;
  border: 0;
  border-radius: 11px;
  background: #f7f7f7;
  color: #172023;
  font-size: 15px;
  line-height: 1.15;
  outline: none;
  box-shadow: none;
}

.investor-form-control::placeholder {
  color: #202428;
  opacity: 1;
}

textarea.investor-form-control {
  min-height: 96px;
  resize: vertical;
}

.investor-form-control:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.34);
}

.btn-investor-submit {
  display: block;
  min-width: 150px;
  min-height: 46px;
  margin: -2px 0 0;
  padding: 9px 24px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  color: #17404a !important;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-investor-submit:hover:not(:disabled) {
  background: var(--xb-color-action-primary);
  color: #fff !important;
  transform: translateY(-1px);
}

.btn-investor-submit:focus,
.btn-investor-submit:active {
  background: var(--xb-color-action-primary);
  color: #fff !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(29, 112, 125, 0.28);
}

.btn-investor-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

#alert-msg {
  margin-top: 18px;
}

#alert-msg .alert {
  margin-bottom: 0;
}

.investor-image-wrap {
  justify-self: stretch;
}

.investor-image {
  width: 100%;
  aspect-ratio: 2.2 / 1;
  min-height: 230px;
  border-radius: 28px 28px 86px 28px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 18px 44px rgba(7, 32, 41, 0.2);
}

@media (max-width: 1199px) {
  .investor-content {
    grid-template-columns: 1fr;
  }

  .investor-copy p {
    margin-bottom: 24px;
    letter-spacing: 1px;
  }

  .investor-image {
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .body-fixed-header {
    padding-top: 92px;
  }

  .section-investor {
    min-height: auto;
    padding: 30px 16px;
  }

  .investor-title {
    margin: 24px 0 22px;
  }

  .investor-form-container .row {
    margin-right: -8px;
    margin-left: -8px;
  }

  .investor-form-container [class*="col-"] {
    padding-right: 8px;
    padding-left: 8px;
  }

  .investor-form-container .form-group {
    margin-bottom: 16px;
  }

  .investor-form-control {
    height: 42px;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 15px;
  }

  textarea.investor-form-control {
    min-height: 96px;
  }

  .btn-investor-submit {
    min-height: 44px;
    margin-top: 0;
    font-size: 15px;
  }
}
