@charset "UTF-8";
/* ==========================================================================
   Block: Form Hero
   Scoped styles only — layout tokens come from theme.json.
   ========================================================================== */
.spektrix-form-hero {
  --spektrix-form-hero-gap: var(--wp--style--block-gap, 1.5rem);
  --spektrix-form-hero-wide-size: var(--wp--style--global--wide-size, 1200px);
  --spektrix-form-hero-portrait-size: 40px;
  --spektrix-form-hero-checklist-icon-size: 24px;
  --spektrix-form-hero-padding-top-multiplier: 3;
  --spektrix-form-hero-padding-bottom-multiplier: 6;
  --spektrix-form-hero-split-gap: calc(var(--spektrix-form-hero-gap) * 2);
  --spektrix-form-hero-navy-band-extra: 0;
}
.spektrix-form-hero--navy-band-medium {
  --spektrix-form-hero-navy-band-extra: calc(var(--spektrix-form-hero-gap) * 1.333);
}
.spektrix-form-hero--navy-band-deep {
  --spektrix-form-hero-navy-band-extra: calc(var(--spektrix-form-hero-gap) * 2.667);
}
.spektrix-form-hero--navy-band-extra {
  --spektrix-form-hero-navy-band-extra: calc(var(--spektrix-form-hero-gap) * 4);
}
@media (max-width: 1023px) {
  .spektrix-form-hero {
    --spektrix-form-hero-padding-top-multiplier: 2;
    --spektrix-form-hero-padding-bottom-multiplier: 4;
  }
}
@media (max-width: 767px) {
  .spektrix-form-hero {
    --spektrix-form-hero-padding-top-multiplier: 1.5;
    --spektrix-form-hero-padding-bottom-multiplier: 3;
  }
}
.spektrix-form-hero {
  position: relative;
  isolation: isolate;
  padding: calc(var(--spektrix-form-hero-gap) * var(--spektrix-form-hero-padding-top-multiplier)) var(--spektrix-form-hero-gap) calc(var(--spektrix-form-hero-gap) * var(--spektrix-form-hero-padding-bottom-multiplier));
}
.spektrix-form-hero.spektrix-block-spacing--pt-compact {
  padding-top: calc(var(--spektrix-form-hero-gap) * 1.5);
}
.spektrix-form-hero.spektrix-block-spacing--pt-comfortable {
  padding-top: calc(var(--spektrix-form-hero-gap) * 2);
}
.spektrix-form-hero.spektrix-block-spacing--pt-spacious {
  padding-top: calc(var(--spektrix-form-hero-gap) * 4);
}
.spektrix-form-hero.spektrix-block-spacing--pt-extra-spacious {
  padding-top: calc(var(--spektrix-form-hero-gap) * 5);
}
.spektrix-form-hero.spektrix-block-spacing--pt-maximum {
  padding-top: calc(var(--spektrix-form-hero-gap) * 6);
}
.spektrix-form-hero.spektrix-block-spacing--pt-none {
  padding-top: 0;
}
.spektrix-form-hero.spektrix-block-spacing--pb-compact {
  padding-bottom: calc(var(--spektrix-form-hero-gap) * 1.5);
}
.spektrix-form-hero.spektrix-block-spacing--pb-comfortable {
  padding-bottom: calc(var(--spektrix-form-hero-gap) * 2);
}
.spektrix-form-hero.spektrix-block-spacing--pb-spacious {
  padding-bottom: calc(var(--spektrix-form-hero-gap) * 4);
}
.spektrix-form-hero.spektrix-block-spacing--pb-extra-spacious {
  padding-bottom: calc(var(--spektrix-form-hero-gap) * 5);
}
.spektrix-form-hero.spektrix-block-spacing--pb-maximum {
  padding-bottom: calc(var(--spektrix-form-hero-gap) * 6);
}
.spektrix-form-hero.spektrix-block-spacing--pb-none {
  padding-bottom: 0;
}
.spektrix-form-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: calc(var(--spektrix-form-hero-gap) * var(--spektrix-form-hero-padding-top-multiplier));
  background-color: var(--wp--preset--color--navy);
}
.spektrix-form-hero.spektrix-block-spacing--pt-compact::before {
  height: calc(var(--spektrix-form-hero-gap) * 1.5);
}
.spektrix-form-hero.spektrix-block-spacing--pt-spacious::before {
  height: calc(var(--spektrix-form-hero-gap) * 4);
}
.spektrix-form-hero.spektrix-block-spacing--pt-extra-spacious::before {
  height: calc(var(--spektrix-form-hero-gap) * 5);
}
.spektrix-form-hero.spektrix-block-spacing--pt-maximum::before {
  height: calc(var(--spektrix-form-hero-gap) * 6);
}
.spektrix-form-hero.spektrix-block-spacing--pt-none::before {
  display: none;
}
.spektrix-form-hero__container {
  max-width: var(--spektrix-form-hero-wide-size);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: start;
  gap: clamp(2rem, 5vw, 4rem);
  position: relative;
  z-index: 1;
}
.spektrix-form-hero__container::before {
  content: "";
  grid-column: 1/-1;
  grid-row: 1;
  align-self: stretch;
  justify-self: stretch;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: var(--wp--preset--color--navy);
  z-index: 0;
}
.spektrix-form-hero__content {
  display: contents;
  min-width: 0;
}
.spektrix-form-hero__top {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 1;
  max-width: 34rem;
  padding-bottom: calc(var(--spektrix-form-hero-gap) * 2 + var(--spektrix-form-hero-split-gap) + var(--spektrix-form-hero-navy-band-extra));
}
.spektrix-form-hero__eyebrow {
  margin: 0 0 calc(var(--spektrix-form-hero-gap) * 0.75);
}
.spektrix-form-hero__heading {
  color: var(--wp--preset--color--white);
  margin: 0 0 var(--spektrix-form-hero-gap);
}
.spektrix-form-hero__intro {
  margin: 0 0 calc(var(--spektrix-form-hero-gap) * 1.5);
  max-width: 30rem;
}
.spektrix-form-hero__community {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--spektrix-form-hero-gap);
}
.spektrix-form-hero__portraits {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.spektrix-form-hero__portrait-item {
  flex: 0 0 auto;
  width: var(--spektrix-form-hero-portrait-size);
  height: var(--spektrix-form-hero-portrait-size);
  margin: 0;
  border: 2px solid var(--wp--preset--color--navy);
  border-radius: var(--spektrix-radius-full);
  overflow: hidden;
  background-color: var(--wp--preset--color--bg-light);
}
.spektrix-form-hero__portrait-item + .spektrix-form-hero__portrait-item {
  margin-left: -10px;
}
.spektrix-form-hero__portrait-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.spektrix-form-hero__community-text {
  margin: 0;
  color: var(--wp--preset--color--white);
  flex: 1 1 12rem;
  min-width: 0;
}
.spektrix-form-hero__bottom {
  grid-column: 1;
  grid-row: 2;
  position: relative;
  z-index: 1;
  max-width: 34rem;
  padding-top: var(--spektrix-form-hero-split-gap);
  color: var(--wp--preset--color--text-dark);
}
.spektrix-form-hero__bottom-heading {
  margin: 0 0 var(--spektrix-form-hero-gap);
  color: var(--wp--preset--color--text-dark);
}
.spektrix-form-hero__bottom-body {
  margin: 0 0 calc(var(--spektrix-form-hero-gap) * 3);
}
.spektrix-form-hero__bottom-subheading {
  margin: 0 0 var(--spektrix-form-hero-gap);
  color: var(--wp--preset--color--text-dark);
}
.spektrix-form-hero__checklist-intro {
  margin: 0 0 var(--spektrix-form-hero-gap);
  color: var(--wp--preset--color--text-dark);
}
.spektrix-form-hero__checklist-wrap {
  margin-top: 0;
}
.spektrix-form-hero__checklist {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.spektrix-form-hero__checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0;
}
.spektrix-form-hero__checklist-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: var(--spektrix-form-hero-checklist-icon-size);
  height: var(--spektrix-form-hero-checklist-icon-size);
  margin-top: 0.125rem;
  border-radius: var(--spektrix-radius-full);
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
}
.spektrix-form-hero__checklist-icon svg {
  display: block;
  width: 12px;
  height: auto;
}
.spektrix-form-hero__checklist-text {
  margin: 0;
}
.spektrix-form-hero__form-column {
  grid-column: 2;
  grid-row: 1/span 2;
  position: relative;
  z-index: 1;
  min-width: 0;
  align-self: start;
}
.spektrix-form-hero__form-title {
  margin: 0 0 var(--spektrix-form-hero-gap);
  color: var(--wp--preset--color--text-dark);
  text-align: left;
}
.spektrix-form-hero__form-card {
  background-color: var(--wp--preset--color--white);
  border-radius: var(--spektrix-radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: var(--spektrix-form-hero-gap);
}
.spektrix-form-hero__hubspot-form {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
}
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--developer {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  --hsf-background__background-color: transparent;
  --hsf-background__background-image: none;
  --hsf-background__border-width: 0;
  --hsf-background__border-radius: 0;
  --hsf-background__padding: 0;
  --hsf-default-background__padding: 0;
  --hsf-row__horizontal-spacing: 0;
  --hsf-row__vertical-spacing: calc(var(--spektrix-form-hero-gap, 1.5rem) * 0.65);
  --hsf-module__vertical-spacing: 0;
  --hsf-global__font-family: var(--wp--preset--font-family--satoshi);
  --hsf-global__color: var(--wp--preset--color--text-dark);
  --hsf-field-label__font-family: var(--wp--preset--font-family--satoshi);
  --hsf-field-label__color: var(--wp--preset--color--text-dark);
  --hsf-field-input__font-family: var(--wp--preset--font-family--satoshi);
  --hsf-field-input__font-size: 16px;
  --hsf-field-input__color: var(--wp--preset--color--text-dark);
  --hsf-field-input__background-color: var(--wp--preset--color--white);
  --hsf-field-input__border-color: var(--wp--preset--color--border);
  --hsf-field-input__border-width: 1px;
  --hsf-field-input__border-radius: 8px;
  --hsf-field-input__padding: 0.375rem 0.625rem;
  --hsf-field-input--focus__border-color: var(--wp--preset--color--primary);
  --hsf-field-input--focus__box-shadow: none;
  --hsf-button__background-color: var(--wp--preset--color--primary);
  --hsf-button__background-image: none;
  --hsf-button__color: var(--wp--preset--color--white);
  --hsf-button__border-color: var(--wp--preset--color--primary);
  --hsf-button__border-width: 2px;
  --hsf-button__border-radius: 50px;
  --hsf-button__padding: 0.75rem 1.5rem;
  --hsf-button__font-family: var(--wp--preset--font-family--satoshi);
  --hsf-button__font-size: 18px;
  --hsf-button__font-weight: 400;
  --hsf-button__width: 100%;
  --hsf-button--hover__background-color: var(--wp--preset--color--primary-hover);
  --hsf-button--hover__background-image: none;
  --hsf-button--hover__border-color: var(--wp--preset--color--primary-hover);
  --hsf-button--hover__color: var(--wp--preset--color--white);
}
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--developer.hs-form-html,
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--developer .hs-form-html {
  display: block;
  width: 100%;
  max-width: 100%;
}
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--developer iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  border: 0;
  box-sizing: border-box;
}
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--developer {
  --hsf-row__horizontal-spacing: calc(var(--spektrix-form-hero-gap) * 0.75);
  --hsf-row__vertical-spacing: 0.8rem;
  --hsf-field-input__border-radius: 8px;
  --hsf-field-input__padding: 0.5rem 0.75rem;
  --hsf-button__font-weight: 700;
  --hsf-button__padding: 0.7rem 3.25rem 0.7rem 1rem;
  --hsf-button__width: 8rem;
  --hsf-button_width: 8rem;
  --hsf-navigationrow-buttons__justify-content: flex-start;
  --hsf-navigationrow-buttons-single__justify-content: flex-start;
}
@media (max-width: 639px) {
  .spektrix-form-hero__hubspot-form.spektrix-hubspot-form--developer {
    --hsf-button__width: 100%;
    --hsf-button_width: 100%;
  }
}
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  border: 0;
  box-sizing: border-box;
}
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form,
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy form.hs-form {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  font-family: var(--wp--preset--font-family--satoshi);
  color: var(--wp--preset--color--text-dark);
}
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form fieldset {
  max-width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form-field,
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form .hs-form-field {
  margin: 0 0 calc(var(--spektrix-form-hero-gap, 1.5rem) * 0.65);
}
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form label,
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form .hs-form-field > label,
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form legend {
  display: block;
  margin: 0 0 0.35rem;
  font-family: var(--wp--preset--font-family--satoshi);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--wp--preset--color--text-dark);
}
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form .hs-form-required,
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form label .hs-form-required,
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form .hs-form-required--asterisk {
  color: var(--wp--preset--color--error);
}
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form p,
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form .hs-field-desc,
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form .hs-field-desc p,
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-richtext,
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-richtext p {
  margin: 0 0 0.5rem;
  font-family: var(--wp--preset--font-family--satoshi);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--wp--preset--color--text-dark);
}
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-input,
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form input.hs-input,
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form textarea.hs-input,
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form select.hs-input {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0.375rem 0.625rem;
  border: 1px solid var(--wp--preset--color--border);
  border-radius: 8px;
  background-color: var(--wp--preset--color--white);
  font-family: var(--wp--preset--font-family--satoshi);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--wp--preset--color--text-dark);
  appearance: none;
}
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-input:focus,
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form input.hs-input:focus,
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form textarea.hs-input:focus,
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form select.hs-input:focus {
  border-color: var(--wp--preset--color--primary);
  outline: none;
  box-shadow: none;
}
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form textarea.hs-input {
  min-height: 6rem;
  resize: vertical;
}
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form .inputs-list label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 400;
}
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form .inputs-list input {
  width: auto;
  margin-top: 0.2rem;
}
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs_error_rollup,
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-error-msgs,
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form .hs-error-msgs label {
  margin: 0.25rem 0 0;
  color: var(--wp--preset--color--error, #b42318);
  font-size: 0.8125rem;
  font-weight: 500;
}
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs_submit,
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-submit {
  margin-top: calc(var(--spektrix-form-hero-gap, 1.5rem) * 1.15);
}
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-button,
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form input.hs-button,
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form .hs-button,
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form input[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 225px;
  max-width: 100%;
  min-height: 48px;
  margin: 0;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--wp--preset--color--primary);
  border-radius: 50px;
  background-color: var(--wp--preset--color--primary);
  background-image: none;
  font-family: var(--wp--preset--font-family--satoshi);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--wp--preset--color--white);
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-button:hover, .spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-button:focus-visible,
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form input.hs-button:hover,
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form input.hs-button:focus-visible,
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form .hs-button:hover,
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form .hs-button:focus-visible,
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form input[type=submit]:hover,
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form input[type=submit]:focus-visible {
  background-color: var(--wp--preset--color--primary-hover);
  border-color: var(--wp--preset--color--primary-hover);
  color: var(--wp--preset--color--white);
}
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-button:focus-visible,
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form input.hs-button:focus-visible,
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form .hs-button:focus-visible,
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-form input[type=submit]:focus-visible {
  outline: 2px solid var(--wp--preset--color--primary);
  outline-offset: 2px;
}
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs_submit,
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-submit {
  margin-top: 0.6rem;
}
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hs-button,
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy input[type=submit],
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy button[type=submit] {
  width: 100%;
  max-width: 100%;
}
.spektrix-form-hero__hubspot-form form, .spektrix-form-hero__hubspot-form .hs-form, .spektrix-form-hero__hubspot-form .hsfc-Form {
  width: 100%;
  max-width: none;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 !important;
}
.spektrix-form-hero__hubspot-form > :first-child, .spektrix-form-hero__hubspot-form form > :first-child, .spektrix-form-hero__hubspot-form .hs-form > :first-child, .spektrix-form-hero__hubspot-form .hsfc-Form > :first-child {
  margin-top: 0 !important;
}
.spektrix-form-hero__hubspot-form .hs-form-field:first-child, .spektrix-form-hero__hubspot-form .hsfc-Field:first-child {
  margin-top: 0 !important;
}
.spektrix-form-hero__hubspot-form .hsfc-Step, .spektrix-form-hero__hubspot-form .hsfc-Row, .spektrix-form-hero__hubspot-form .hsfc-Column {
  margin-top: 0 !important;
  margin-bottom: 0.8rem !important;
  padding: 0 !important;
}
.spektrix-form-hero__hubspot-form fieldset, .spektrix-form-hero__hubspot-form .hs-form-field, .spektrix-form-hero__hubspot-form .hsfc-Field {
  width: 100%;
  max-width: none;
  margin-top: 0;
  margin-bottom: 0.8rem;
  padding-inline: 0 !important;
}
.spektrix-form-hero__hubspot-form .hs-submit, .spektrix-form-hero__hubspot-form .actions, .spektrix-form-hero__hubspot-form .hsfc-NavigationRow, .spektrix-form-hero__hubspot-form .hsfc-NavigationRow__Buttons {
  margin-top: 0.6rem !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hsfc-NavigationRow__Buttons, .spektrix-form-hero__hubspot-form.spektrix-hubspot-form--legacy .hsfc-NavigationRow__Buttons:has(> :only-child) {
  justify-content: stretch !important;
}
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--developer .hsfc-NavigationRow {
  margin-top: calc(var(--spektrix-form-hero-gap) * 1.7) !important;
}
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--developer .hsfc-NavigationRow__Buttons, .spektrix-form-hero__hubspot-form.spektrix-hubspot-form--developer .hsfc-NavigationRow__Buttons:has(> :only-child) {
  justify-content: flex-start !important;
  width: auto !important;
  max-width: 100%;
}
.spektrix-form-hero__hubspot-form .hs-submit + *, .spektrix-form-hero__hubspot-form .actions + *, .spektrix-form-hero__hubspot-form .hsfc-NavigationRow + * {
  margin-top: 0.75rem !important;
}
.spektrix-form-hero__hubspot-form input, .spektrix-form-hero__hubspot-form select, .spektrix-form-hero__hubspot-form textarea, .spektrix-form-hero__hubspot-form .hs-input, .spektrix-form-hero__hubspot-form .hsfc-TextInput, .spektrix-form-hero__hubspot-form .hsfc-SelectInput, .spektrix-form-hero__hubspot-form .hsfc-TextAreaInput {
  width: 100%;
  max-width: none;
  min-height: 44px;
}
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--developer .hsfc-Button {
  position: relative;
  width: 8rem !important;
  min-width: 8rem !important;
  flex: 0 0 auto !important;
  max-width: 100%;
  min-height: 2.9rem;
  margin-inline: 0;
  text-align: center;
  transition: width 0.2s ease, min-width 0.2s ease;
}
@media (max-width: 639px) {
  .spektrix-form-hero__hubspot-form.spektrix-hubspot-form--developer .hsfc-Button {
    width: 100% !important;
    min-width: 0 !important;
  }
}
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--developer .hsfc-Button:disabled, .spektrix-form-hero__hubspot-form.spektrix-hubspot-form--developer .hsfc-Button[disabled] {
  cursor: default;
  filter: none !important;
  background-color: var(--wp--preset--color--border) !important;
  border-color: var(--wp--preset--color--border) !important;
  color: var(--wp--preset--color--text-dark) !important;
  opacity: 0.72;
}
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--developer .hsfc-Button:disabled::after, .spektrix-form-hero__hubspot-form.spektrix-hubspot-form--developer .hsfc-Button[disabled]::after {
  opacity: 0.5;
}
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--developer .hsfc-Button:not(:disabled):hover, .spektrix-form-hero__hubspot-form.spektrix-hubspot-form--developer .hsfc-Button:not([disabled]):hover, .spektrix-form-hero__hubspot-form.spektrix-hubspot-form--developer .hsfc-Button:not(:disabled):focus-visible, .spektrix-form-hero__hubspot-form.spektrix-hubspot-form--developer .hsfc-Button:not([disabled]):focus-visible {
  transform: none !important;
  width: 8.5rem !important;
  min-width: 8.5rem !important;
}
.spektrix-form-hero__hubspot-form .hs-button, .spektrix-form-hero__hubspot-form button[type=submit], .spektrix-form-hero__hubspot-form input[type=submit] {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 2.9rem;
  margin-inline: 0;
  text-align: left;
}
.spektrix-form-hero__hubspot-form.spektrix-hubspot-form--developer .hsfc-Button::after {
  background-size: 1.35rem 1.35rem;
  transition: opacity 0.2s ease;
}
@media (prefers-reduced-motion: reduce) {
  .spektrix-form-hero__hubspot-form.spektrix-hubspot-form--developer .hsfc-Button {
    transition: none;
  }
  .spektrix-form-hero__hubspot-form.spektrix-hubspot-form--developer .hsfc-Button:not(:disabled):hover, .spektrix-form-hero__hubspot-form.spektrix-hubspot-form--developer .hsfc-Button:not([disabled]):hover, .spektrix-form-hero__hubspot-form.spektrix-hubspot-form--developer .hsfc-Button:not(:disabled):focus-visible, .spektrix-form-hero__hubspot-form.spektrix-hubspot-form--developer .hsfc-Button:not([disabled]):focus-visible {
    width: 8rem !important;
    min-width: 8rem !important;
  }
  .spektrix-form-hero__hubspot-form.spektrix-hubspot-form--developer .hsfc-Button::after {
    transition: none;
  }
}
.spektrix-form-hero__hubspot-form .hsfc-Button::after, .spektrix-form-hero__hubspot-form .hs-button::after, .spektrix-form-hero__hubspot-form button[type=submit]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.3rem;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: var(--spektrix-radius-full);
  background-color: var(--wp--preset--color--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6' fill='none' stroke='%23131313' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1rem 1rem;
  transform: translateY(-50%);
}
@media (max-width: 1023px) {
  .spektrix-form-hero::before {
    display: none;
  }
  .spektrix-form-hero__container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "top" "bottom" "form";
  }
  .spektrix-form-hero__container::before {
    display: none;
  }
  .spektrix-form-hero__top {
    grid-area: top;
    grid-column: auto;
    grid-row: auto;
    max-width: none;
    padding-bottom: calc(var(--spektrix-form-hero-gap) * 2 + var(--spektrix-form-hero-navy-band-extra));
  }
  .spektrix-form-hero__top::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: calc(-1 * var(--spektrix-form-hero-gap) * var(--spektrix-form-hero-padding-top-multiplier));
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    bottom: 0;
    background-color: var(--wp--preset--color--navy);
  }
  .spektrix-form-hero__bottom {
    grid-area: bottom;
    grid-column: auto;
    grid-row: auto;
    padding-top: var(--spektrix-form-hero-gap);
  }
  .spektrix-form-hero__form-column {
    grid-area: form;
    grid-column: auto;
    grid-row: auto;
    margin-top: calc(var(--spektrix-form-hero-gap) * 1);
  }
  .spektrix-form-hero.spektrix-block-spacing--pt-compact .spektrix-form-hero__top::before {
    top: calc(-1 * var(--spektrix-form-hero-gap) * 1.5);
  }
  .spektrix-form-hero.spektrix-block-spacing--pt-spacious .spektrix-form-hero__top::before {
    top: calc(-1 * var(--spektrix-form-hero-gap) * 4);
  }
  .spektrix-form-hero.spektrix-block-spacing--pt-extra-spacious .spektrix-form-hero__top::before {
    top: calc(-1 * var(--spektrix-form-hero-gap) * 5);
  }
  .spektrix-form-hero.spektrix-block-spacing--pt-maximum .spektrix-form-hero__top::before {
    top: calc(-1 * var(--spektrix-form-hero-gap) * 6);
  }
  .spektrix-form-hero.spektrix-block-spacing--pt-none .spektrix-form-hero__top::before {
    top: 0;
  }
}

/*# sourceMappingURL=style.css.map */
