.cfh-wrap {
  --cfh-heading-font: 'akzidenz-grotesk', 'Akzidenz-Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --cfh-body-font: 'brandon-grotesque', 'Brandon Grotesque', 'Helvetica Neue', Arial, sans-serif;
  --cfh-max-w: 1080px;

  position: relative;
  left: 50%;
  width: 100vw;
  min-height: 760px;
  margin-left: -50vw;
  margin-top: var(--cfh-margin-top, 0px);
  margin-bottom: var(--cfh-margin-bottom, 0px);
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 12%, rgba(84, 62, 152, 0.18) 0, rgba(84, 62, 152, 0.06) 24%, transparent 48%),
    radial-gradient(circle at 76% 86%, rgba(20, 103, 101, 0.18) 0, rgba(20, 103, 101, 0.07) 28%, transparent 52%),
    var(--cfh-bg, #0b0a12);
  color: var(--cfh-heading, #f7f5ff);
  font-family: var(--cfh-body-font);
  box-sizing: border-box;
}

.cfh-wrap *,
.cfh-wrap *::before,
.cfh-wrap *::after {
  box-sizing: border-box;
}


.cfh-rt > * {
  display: inline;
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.cfh-rt > * + *::before {
  content: ' ';
}

.cfh-rt-block > * {
  margin: 0 0 1em;
  font: inherit;
  color: inherit;
}

.cfh-rt-block > *:last-child {
  margin-bottom: 0;
}

@keyframes cfh-slide-left {
  from { opacity: 0; transform: translateX(-48px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes cfh-slide-right {
  from { opacity: 0; transform: translateX(48px); }
  to   { opacity: 1; transform: translateX(0); }
}

.cfh-copy {
  animation: cfh-slide-left 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cfh-form-card {
  animation: cfh-slide-right 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

@media (prefers-reduced-motion: reduce) {
  .cfh-copy, .cfh-form-card { animation: none; }
}

.cfh-gradient {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(120px);
}

.cfh-gradient--purple {
  top: -250px;
  left: 7%;
  width: 760px;
  height: 760px;
  background: rgba(90, 66, 178, 0.22);
}

.cfh-gradient--teal {
  right: -120px;
  bottom: -260px;
  width: 820px;
  height: 640px;
  background: rgba(21, 106, 105, 0.18);
}

.cfh-fade-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 320px;
  background: linear-gradient(to bottom, transparent 0%, var(--cfh-bg, #0b0a12) 100%);
  pointer-events: none;
}

.cfh-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(0, var(--cfh-card-w, 550px));
  gap: 96px;
  align-items: start;
  width: min(var(--cfh-max-w, 1080px), calc(100% - var(--cfh-pad-left, 24px) - var(--cfh-pad-right, 24px)));
  min-height: 0;
  margin: 0 auto;
  padding: var(--cfh-pad-top, 100px) 0 var(--cfh-pad-bottom, 100px);
}


.cfh-copy {
  padding-top: 0;
  align-self: start;
  container-type: inline-size;
}


.cfh-badge {
  display: flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  min-height: 30px;
  margin: 0 0 28px;
  padding: 5px 18px;
  border: 1px solid rgba(177, 140, 255, 0.22);
  border-radius: 999px;
  background: rgba(177, 140, 255, 0.08);
  color: var(--cfh-badge-color, #ada5c5);
  font-family: var(--cfh-body-font);
  font-size: var(--cfh-badge-size, 14px);

  font-weight: 300;


  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cfh-heading {
  max-width: none;
  margin: 0 0 var(--cfh-heading-gap, 26px);
  color: var(--cfh-heading, #f7f5ff);
  font-family: var(--cfh-heading-font);


  font-size: var(--cfh-heading-size, 46px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}


@supports (font-size: 1cqi) {
  .cfh-heading {


    font-size: max(
      var(--cfh-heading-size-floor, 22px),
      min(var(--cfh-heading-size, 46px), 7.2cqi)
    );
  }
}


.cfh-heading__line {
  display: block;
  white-space: nowrap;
}


.cfh-heading__accent {
  width: fit-content;
  color: var(--cfh-heading-accent, #c8b6ff);
}

@supports ((background-clip: text) or (-webkit-background-clip: text)) {
  .cfh-heading__accent:not(.cfh-heading__accent--solid) {

    background-image: var(--cfh-heading-grad);
    -webkit-background-clip: text;
    background-clip: text;


    -webkit-text-fill-color: transparent;
  }
}

@media (forced-colors: active) {
  .cfh-heading__accent {
    background: none;
    color: CanvasText;
    -webkit-text-fill-color: CanvasText;
  }
}

.cfh-description {
  max-width: min(var(--cfh-copy-max, 440px), 100%);
  margin: 0 0 var(--cfh-copy-gap, 38px);
  color: var(--cfh-copy, #a9a5b7);
  font-family: var(--cfh-body-font);
  font-size: var(--cfh-copy-size, 19px);
  font-weight: 400;
  line-height: 1.58;
}

.cfh-description a {
  color: var(--cfh-copy-link, #c8b6ff);
  text-decoration: underline;
}

.cfh-contact-list {
  display: grid;
  gap: 16px;
}

.cfh-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--cfh-meta, #a7a1b5);
  font-family: var(--cfh-body-font);
  font-size: 14px;
  line-height: 1.45;
}

.cfh-contact-item a {
  color: inherit;
  text-decoration: none;
}

.cfh-contact-item:not(.cfh-contact-item--addresses) a {
  font-size: var(--cfh-email-size, 17px);
  font-weight: 300;
  line-height: 1.35;
}

.cfh-contact-item a:hover {
  color: var(--cfh-heading, #f7f5ff);
}

.cfh-contact-icon {
  display: inline-flex;
  flex: 0 0 15px;
  width: 15px;
  height: 18px;
  margin-top: 1px;


  color: #ffffff;
}

.cfh-contact-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.cfh-addresses {
  display: grid;
  gap: 12px;
}

.cfh-address {
  margin: 0;
}


.cfh-address > span {
  display: block;
  font-family: var(--cfh-body-font);
  font-size: var(--cfh-address-size, 17px);
  font-weight: 400;
  line-height: 1.35;
}

.cfh-address strong {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 4px;
  color: var(--cfh-location-title, #c6c2d4);
  font-family: var(--cfh-heading-font);
  font-size: var(--cfh-location-title-size, 18px);
  font-weight: 700;
  line-height: 1.25;
}

.cfh-address-pin {
  display: inline-flex;
  flex: 0 0 15px;
  width: 15px;
  height: 18px;
  color: #a65b7f;
}

.cfh-address-pin svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.cfh-form-card {
  width: 100%;
  max-width: 100%;
  min-height: var(--cfh-card-h, 0px);
  padding: 42px 38px 38px;
  border: 1px solid rgba(22, 21, 31, 0.08);
  border-radius: 24px;
  background: var(--cfh-card, #f7fafc) !important;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
  color: var(--cfh-input-text, #000000) !important;
}

.cfh-form-embed,
.cfh-form-card form,
.cfh-form-card .hs-form,
.cfh-form-card .hbspt-form {
  width: 100% !important;
  max-width: none !important;
}

.cfh-form-placeholder {
  margin: 0;
  padding: 32px 0;
  color: #56526b;
  text-align: center;
}

.cfh-form-card .hs-form {
  margin: 0;
  background: var(--cfh-card, #f7fafc) !important;
  color: var(--cfh-input-text, #000000) !important;
}

.cfh-form-card .hs-form,
.cfh-form-card .hs-form * {
  font-family: var(--cfh-body-font) !important;
}

.cfh-form-card .hs-form-field {
  margin: 0 0 20px;
}

.cfh-form-card .hs-form-field>label,
.cfh-form-card .hs-form-field>legend,
.cfh-form-card .hs-label {
  display: block;
  margin: 0 0 9px;
  color: #111111 !important;
  font-size: 12px !important;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cfh-form-card input.hs-input,
.cfh-form-card select.hs-input,
.cfh-form-card textarea.hs-input {
  width: 100% !important;
  min-height: 38px !important;
  padding: 8px 12px !important;
  border: 1px solid var(--cfh-input-border, #8d87b0) !important;
  border-radius: 8px !important;
  background: var(--cfh-input-bg, #f7f7f8) !important;
  color: var(--cfh-input-text, #000000) !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  box-shadow: none !important;
  appearance: none !important;
}


.cfh-form-card input.hs-input::placeholder,
.cfh-form-card textarea.hs-input::placeholder {
  color: #5c5a66 !important;
  opacity: 1 !important;
}

.cfh-form-card textarea.hs-input {
  min-height: 94px !important;
  resize: vertical;
}


.cfh-form-card input.hs-input:focus,
.cfh-form-card select.hs-input:focus,
.cfh-form-card textarea.hs-input:focus {
  border-color: var(--cfh-button-bg, #443187);
  box-shadow: 0 0 0 3px rgba(143, 109, 247, 0.14);
}

.cfh-form-card input.hs-input:focus-visible,
.cfh-form-card select.hs-input:focus-visible,
.cfh-form-card textarea.hs-input:focus-visible,
.cfh-form-card .hs-form-checkbox input:focus-visible,
.cfh-form-card .hs-form-radio input:focus-visible,
.cfh-form-card input[type='submit']:focus-visible,
.cfh-form-card .hs-button:focus-visible {
  outline: 2px solid var(--cfh-button-bg, #443187) !important;
  outline-offset: 2px !important;
}


.cfh-form-card .cfh-submit-wrap:has(input:focus-visible),
.cfh-form-card .cfh-submit-wrap:has(.hs-button:focus-visible) {
  outline: 2px solid #ffffff;
  outline-offset: -4px;
  box-shadow: 0 0 0 3px var(--cfh-button-bg, #443187);
}


.cfh-form-card .hs-form-checkbox label:has(input:focus-visible),
.cfh-form-card .hs-form-radio label:has(input:focus-visible) {
  border-color: var(--cfh-button-bg, #443187) !important;
  background: #eeeafa !important;
}

.cfh-form-card .form-columns-2,
.cfh-form-card .cfh-pair-parent {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 20px 28px !important;
}


.cfh-form-card .cfh-pair-parent > * {
  grid-column: 1 / -1;
  margin-bottom: 0 !important;
}

.cfh-form-card .form-columns-2 .hs-form-field,
.cfh-form-card .cfh-pair-parent > .cfh-pair-item {
  grid-column: auto;
  width: 100% !important;
  max-width: none !important;
  float: none !important;
  min-width: 0 !important;
  margin-bottom: 0 !important;
}

.cfh-form-card .inputs-list {
  display: grid !important;
  gap: 6px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.cfh-form-card .cfh-service-grid .inputs-list {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 6px 8px !important;
}

.cfh-form-card .inputs-list li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cfh-form-card .cfh-service-grid .inputs-list li {
  position: relative;
}

.cfh-form-card .hs-form-checkbox label::before,
.cfh-form-card .hs-form-checkbox label::after,
.cfh-form-card .hs-form-radio label::before,
.cfh-form-card .hs-form-radio label::after,
.cfh-form-card .hs-form-checkbox label span::before,
.cfh-form-card .hs-form-checkbox label span::after,
.cfh-form-card .hs-form-radio label span::before,
.cfh-form-card .hs-form-radio label span::after {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
  border: none !important;
  background: none !important;
}

.cfh-form-card .hs-form-checkbox label,
.cfh-form-card .hs-form-radio label {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 7px !important;
  min-height: 0 !important;
  height: 30px !important;
  margin: 0 !important;
  padding: 0 12px !important;
  border: 1px solid #e8e6f0 !important;
  border-radius: 999px !important;
  background: #f4f3f8 !important;
  color: #3a3755 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  cursor: pointer !important;
  min-width: 0 !important;
  box-shadow: none !important;
  transition: border-color 0.15s ease, background 0.15s ease !important;
}

.cfh-form-card .hs-form-checkbox label span,
.cfh-form-card .hs-form-radio label span {
  flex: 1 1 auto !important;
  color: inherit !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.cfh-form-card .hs-form-checkbox input[type='checkbox'],
.cfh-form-card .hs-form-radio input[type='radio'] {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: static !important;
  flex: 0 0 14px !important;
  width: 14px !important;
  height: 14px !important;
  min-width: 14px !important;
  min-height: 14px !important;
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  border: 1.5px solid #c0bbd4 !important;
  background: #ffffff !important;
  transition: border-color 0.15s ease, background 0.15s ease !important;
}

.cfh-form-card .hs-form-radio input[type='radio'] {
  border-radius: 50% !important;
}

.cfh-form-card .hs-form-checkbox input[type='checkbox'] {
  border-radius: 3px !important;
}

.cfh-form-card .hs-form-radio input[type='radio']:checked {
  background: var(--cfh-button-bg, #443187) !important;
  border-color: var(--cfh-button-bg, #443187) !important;
  box-shadow: inset 0 0 0 3px #ffffff !important;
}


.cfh-form-card .hs-form-checkbox input[type='checkbox']:checked {
  background-color: var(--cfh-button-bg, #443187) !important;
  border-color: var(--cfh-button-bg, #443187) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8.5l3.5 3.5L13 5'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 10px 10px !important;
}

@media (forced-colors: active) {
  .cfh-form-card .hs-form-checkbox input[type='checkbox'],
  .cfh-form-card .hs-form-radio input[type='radio'] {
    appearance: auto !important;
    -webkit-appearance: auto !important;
  }
}

.cfh-form-card .hs-form-checkbox label:hover,
.cfh-form-card .hs-form-radio label:hover {
  border-color: #9b8fd4 !important;
  background: #efecfa !important;
}

.cfh-form-card .hs-form-checkbox label:has(input:checked),
.cfh-form-card .hs-form-radio label:has(input:checked) {
  border-color: var(--cfh-button-bg, #443187) !important;
  background: #eeeafa !important;
}

.cfh-form-card .hs-submit,
.cfh-form-card .actions {
  display: block !important;
}

.cfh-form-card .hs-submit {
  margin-top: 20px;
}

.cfh-form-card .actions {
  position: relative;
  margin: 0;
  padding: 0;
}

.cfh-form-card .actions::after {
  content: none !important;
  display: none !important;
}

.cfh-form-card input[type='submit'],
.cfh-form-card .hs-button {
  display: block !important;
  width: 100% !important;
  min-height: 58px !important;
  margin: 0 !important;
  padding: 18px 30px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--cfh-button-bg, #443187) !important;
  color: var(--cfh-button-text, #ffffff) !important;
  font-family: var(--cfh-body-font) !important;
  font-size: var(--cfh-button-size, 17px) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-align: center !important;
  text-transform: none !important;
  box-shadow: none !important;
  cursor: pointer !important;
  appearance: none !important;
}

.cfh-form-card input[type='submit']::before,
.cfh-form-card input[type='submit']::after,
.cfh-form-card .hs-button::before,
.cfh-form-card .hs-button::after {
  content: none !important;
  display: none !important;
}

.cfh-form-card .cfh-submit-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 58px;
  padding: 18px 30px;
  border-radius: 999px;
  background: var(--cfh-button-bg, #443187);
  box-sizing: border-box;
  transition: filter 0.2s ease;
}

.cfh-form-card .cfh-submit-wrap:hover {
  filter: brightness(1.14);
}

.cfh-form-card .cfh-submit-wrap input[type='submit'],
.cfh-form-card .cfh-submit-wrap .hs-button {
  width: auto !important;
  min-height: auto !important;
  flex: 0 0 auto;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.cfh-form-card .cfh-submit-icon {
  position: static;
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--cfh-button-text, #ffffff);
  pointer-events: none;
  transition: transform 0.2s ease;
}

.cfh-form-card .cfh-submit-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.cfh-form-card .cfh-submit-wrap:hover .cfh-submit-icon {
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .cfh-form-card .cfh-submit-wrap,
  .cfh-form-card .cfh-submit-icon {
    transition: none;
  }

  .cfh-form-card .cfh-submit-wrap:hover .cfh-submit-icon {
    transform: none;
  }
}


.cfh-form-card .cfh-service-error[hidden] {
  display: none;
}

.cfh-form-card .hs-error-msgs {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.cfh-form-card .hs-error-msg,
.cfh-form-card .hs-error-msgs label {
  color: #c2415b;
  font-size: 12px;
  line-height: 1.35;
  text-transform: none;
}

.cfh-form-card .submitted-message {
  color: var(--cfh-input-text, #000000);
  font-size: 17px;
  line-height: 1.6;
  text-align: center;
}

.cfh-form-card .legal-consent-container,
.cfh-form-card .legal-consent-container p,
.cfh-form-card .legal-consent-container span,
.cfh-form-card .hs-richtext,
.cfh-form-card .hs-richtext p,
.cfh-form-card .hs-richtext span,
.cfh-form-card .hs-form-booleancheckbox label,
.cfh-form-card .hs-form-booleancheckbox label span,
.cfh-form-card .hs-fieldtype-booleancheckbox label,
.cfh-form-card .hs-fieldtype-booleancheckbox label span,
.cfh-form-card .legal-consent-container label,
.cfh-form-card .legal-consent-container label span {
  color: #444444 !important;

  font-size: 12px !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  line-height: 1.5 !important;
}

.cfh-form-card .legal-consent-container,
.cfh-form-card .hs-richtext {
  margin: 10px 0 0 !important;
}

.cfh-form-card .legal-consent-container p,
.cfh-form-card .hs-richtext p {
  margin: 0 !important;
}


@media (max-width: 900px) {
  .cfh-wrap {
    min-height: 0;
  }

  .cfh-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    width: min(100%, calc(100% - 40px));
    padding-top: min(var(--cfh-pad-top, 100px), 76px);
    padding-bottom: min(var(--cfh-pad-bottom, 100px), 68px);
  }

  .cfh-form-card {
    max-width: 100%;
    padding: 32px 24px 28px;
  }

  .cfh-form-card .form-columns-2,
  .cfh-form-card .cfh-pair-parent {
    gap: 20px !important;
  }
}


@media (max-width: 560px) {
  .cfh-wrap {
    min-height: 0;
  }

  .cfh-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    width: 100%;
    padding: min(var(--cfh-pad-top, 100px), 60px) max(var(--cfh-pad-left, 24px), 20px) min(var(--cfh-pad-bottom, 100px), 52px) max(var(--cfh-pad-right, 24px), 20px);
  }

  .cfh-heading {
    font-size: var(--cfh-heading-size-m, 34px);
  }

  @supports (font-size: 1cqi) {
    .cfh-heading {
      font-size: min(var(--cfh-heading-size-m, 34px), 7.2cqi);
    }
  }

  .cfh-description {
    font-size: var(--cfh-copy-size-m, 15px);
  }

  .cfh-form-card {
    max-width: 100%;
    min-height: 0;
    padding: 26px 18px;
    border-radius: 16px;
  }

  .cfh-form-card .form-columns-2,
  .cfh-form-card .cfh-pair-parent,
  .cfh-form-card .cfh-service-grid .inputs-list {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .cfh-form-card .hs-form-field {
    margin-bottom: 14px;
  }

  .cfh-form-card input.hs-input,
  .cfh-form-card select.hs-input,
  .cfh-form-card textarea.hs-input {
    font-size: 15px !important;
  }

  .cfh-form-card .legal-consent-container,
  .cfh-form-card .legal-consent-container p,
  .cfh-form-card .legal-consent-container span,
  .cfh-form-card .hs-richtext,
  .cfh-form-card .hs-richtext p,
  .cfh-form-card .hs-richtext span {
    font-size: 15px !important;
  }
}
