.hubspot-contact-section {
  padding: 200px 80px 100px;
  background: #1b1d1c;
}

.hubspot-contact-section__grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.hubspot-contact-section__left {
  width: 716px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hubspot-contact-section__hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hubspot-contact-section__hero-title {
  font-family: Anton, sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 67.5px;
  text-transform: uppercase;
  color: #E5E5DC;
  margin-top: 25px;
}

.hubspot-contact-section__hero-subtitle {
  font-family: 'proxima-nova', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #E5E5DC;
}

.hubspot-contact-section__features {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.hubspot-contact-section__feature {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hubspot-contact-section__feature-title {
  font-family: 'proxima-nova', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-transform: capitalize;
  color: white;
  padding-left: 3px;
}

.hubspot-contact-section__feature-text {
  font-family: 'proxima-nova', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #E5E5DC;
}

.hubspot-contact-section__trusted {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hubspot-contact-section__trusted-heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hubspot-contact-section__trusted-title {
  font-family: Anton, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
  text-transform: uppercase;
}

.hubspot-contact-section__trusted-title span:first-child,
.hubspot-contact-section__trusted-title span:last-child {
  color: white;
}

.hubspot-contact-section__trusted-title span:nth-child(2) {
  color: #04D1AD;
}

.hubspot-contact-section__trusted-logos {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 28px;
}

.hubspot-contact-section__trusted-logo {
  width: 121px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.hubspot-contact-section__trusted-logo img {
  width: 100px;
  height: auto;
  object-fit: contain;
}

.hubspot-contact-section__right {
  width: 866px;
}

.hubspot-contact-section__heading {
  font-family: Anton, sans-serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.15;
  text-transform: uppercase;
  color: #e5e5dc;
  margin-top: 25px;
}

.hubspot-contact-section__form-wrapper {
  margin-top: 0;
  padding: 25px 20px;
  border-radius: 10px;
  border: 1px solid #A7A7A7;
}

.hubspot-contact-section__image-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.hubspot-contact-section__image {
  width: 80px;
  height: 80px;
  margin-right: 30px;
  flex-shrink: 0;
}

.hubspot-contact-section__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hubspot-contact-section__image-heading {
  font-family: Anton, sans-serif;
  font-size: 100px;
  line-height: 100px;
  text-transform: uppercase;
  color: #e5e5dc;
  margin: 0;
  font-weight: 400;
}

.hubspot-contact-section__description {
  color: #e5e5dc;
  font-size: 16px;
  line-height: 20px;
  font-family: 'proxima-nova', system-ui, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hubspot-contact-section__links {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 8px;
}

.hubspot-contact-section__link-label {
  color: #e5e5dc;
  font-family: 'proxima-nova', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 15px;
}

.hubspot-contact-section__link {
  margin-bottom: 15px;
}

.hubspot-contact-section__link:last-child {
  margin-bottom: 0;
}

.hubspot-contact-section__link a {
  color: #e5e5dc;
  font-family: 'proxima-nova', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: transform 0.75s cubic-bezier(0.23, 1, 0.32, 1);
}

.hubspot-contact-section__link a:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentcolor;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.hubspot-contact-section__link a:hover:before {
  transform: scaleX(1);
  transform-origin: 0 50%;
}

@media (max-width: 1479px) {
  .hubspot-contact-section {
    padding: 100px 20px;
  }

  .hubspot-contact-section__heading {
    font-size: 80px;
    line-height: 80px;
  }

  .hubspot-contact-section__image {
    width: 60px;
    height: 60px;
    margin-right: 20px;
  }

  .hubspot-contact-section__image-heading {
    font-size: 80px;
    line-height: 80px;
  }
}

@media (max-width: 1399px) {
  .hubspot-contact-section__grid {
    flex-direction: column;
  }

  .hubspot-contact-section__left,
  .hubspot-contact-section__right  {
    width: 100%;
  }

  .hubspot-contact-section__left,
  .hubspot-contact-section__right {
    max-width: none;
    margin-left: 0;
  }

  .hubspot-contact-section__right {
    margin-top: 20px;
  }
}

@media (max-width: 1024px) {
  .hubspot-contact-section {
    padding: 180px 20px 20px;
  }

  .hubspot-contact-section__heading,
  .hubspot-contact-section__image-heading {
    font-size: 60px;
    line-height: 60px;
  }

  .hubspot-contact-section__hero-title {
    font-size: 60px;
    line-height: 67.5px;
  }

  .hubspot-contact-section__image {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 767px) {
  .hubspot-contact-section {
    padding: 100px 15px 20px;
  }

  .hubspot-contact-section__heading,
  .hubspot-contact-section__image-heading {
    font-size: 40px;
    line-height: 46px;
  }

  .hubspot-contact-section__hero-title {
    font-size: 40px;
    line-height: 46.0px;
  }

  .hubspot-contact-section__hero-subtitle,
  .hubspot-contact-section__feature-title,
  .hubspot-contact-section__feature-text {
    font-size: 16px;
  }

  .hubspot-contact-section__feature {
    gap: 0;
  }

  .hubspot-contact-section__trusted-title {
    font-size: 24px;
  }

   .hubspot-contact-section__trusted-logos {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hubspot-contact-section__trusted-logo {
    width: calc((100% - 40px) / 3);
    flex: 0 0 calc((100% - 40px) / 3);
  }

  .hubspot-contact-section__trusted-logo:nth-child(4),
  .hubspot-contact-section__trusted-logo:nth-child(5) {
    flex: 0 0 calc((100% - 20px) / 2);
    width: calc((100% - 20px) / 2);
    max-width: calc((100% - 20px) / 2);
  }

  .hubspot-contact-section__trusted-logo:nth-child(4) {
    margin-left: calc((100% - (2 * calc((100% - 20px) / 2) + 20px)) / 2);
  }

  .hubspot-contact-section__image {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }

  .hubspot-contact-section__right {
    margin-top: 10px;
  }

  .hubspot-contact-section__description {
    margin-bottom: 30px;
  }

  .hubspot-contact-section__links {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.ai-popup-overlay-azlr3d3d0rhexnzbozaigenblock90923f8bvnnen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ai-popup-overlay-azlr3d3d0rhexnzbozaigenblock90923f8bvnnen.active {
  opacity: 1;
  visibility: visible;
}

.ai-popup-container-azlr3d3d0rhexnzbozaigenblock90923f8bvnnen {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 98%;
  max-width: 1462px;
  min-height: 600px;
  height: auto;
  background-color: #1b1d1c;
  border-radius: 12px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}

.ai-popup-container-azlr3d3d0rhexnzbozaigenblock90923f8bvnnen.active {
  opacity: 1;
  visibility: visible;
}

.ai-popup-bg-image-azlr3d3d0rhexnzbozaigenblock90923f8bvnnen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 1.0;
}

.ai-popup-content-azlr3d3d0rhexnzbozaigenblock90923f8bvnnen {
  position: relative;
  z-index: 2;
  padding: 40px;
  text-align: center;
}

.ai-popup-close-azlr3d3d0rhexnzbozaigenblock90923f8bvnnen {
  position: absolute;
  top: 90px;
  right: 10%;
  z-index: 3;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none !important;
  box-shadow: none;
}

.ai-popup-close-azlr3d3d0rhexnzbozaigenblock90923f8bvnnen svg {
  width: 24px;
  height: 24px;
  fill: #e5e5dc;
}

.ai-popup-close-azlr3d3d0rhexnzbozaigenblock90923f8bvnnen:hover {
  opacity: 0.7;
}

.ai-popup-title-azlr3d3d0rhexnzbozaigenblock90923f8bvnnen {
  color: #e5e5dc;
  font-size: 60px;
  margin: 0 0 20px;
  line-height: 1.2;
}

.ai-popup-description-azlr3d3d0rhexnzbozaigenblock90923f8bvnnen {
  color: #e5e5dc;
  font-size: 20px;
  margin: 0 0 40px;
  line-height: 1.5;
}

.ai-popup-button-azlr3d3d0rhexnzbozaigenblock90923f8bvnnen {
  font-family: 'proxima-nova', system-ui, sans-serif !important;
  color: #1B1D1C;
  box-shadow: 0 0 0 3px #fff !important;
  margin: 4px;
  background-color: #FFF;
  text-align: center;
  border-radius: 100px;
  font-size: 18px !important;
  font-style: normal;
  font-weight: 400;
  line-height: 1 !important;
  height: auto;
  border: none;
  border-radius: 120px;
  margin-bottom: 10px;
  padding: 6px 45px !important;
}

.ai-popup-button-azlr3d3d0rhexnzbozaigenblock90923f8bvnnen:hover {
  background-color: #fff !important;
  box-shadow: 0 0 0 3px #04d1ad !important;
  color: #1B1D1C;
}

popup-modal-azlr3d3d0rhexnzbozaigenblock90923f8bvnnen.hidden {
  display: none;
}

/* HubSpot replaces the form with .submitted-message after a successful
   submit. Default HubSpot CSS is dark text on white, which is illegible
   against our dark form panel. Style the inline success state to match
   the rest of the page (cream on dark, accent CTA). */
#hubspot-form-target .submitted-message,
.hubspot-contact-section__form-wrapper .submitted-message {
  color: #E5E5DC !important;
  text-align: center;
  padding: 20px 0;
  font-family: 'proxima-nova', system-ui, sans-serif;
}
#hubspot-form-target .submitted-message *,
.hubspot-contact-section__form-wrapper .submitted-message * {
  color: #E5E5DC !important;
}
#hubspot-form-target .submitted-message h1,
#hubspot-form-target .submitted-message h2,
#hubspot-form-target .submitted-message h3,
.hubspot-contact-section__form-wrapper .submitted-message h1,
.hubspot-contact-section__form-wrapper .submitted-message h2,
.hubspot-contact-section__form-wrapper .submitted-message h3 {
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 600;
}
#hubspot-form-target .submitted-message p,
.hubspot-contact-section__form-wrapper .submitted-message p {
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 24px;
}
#hubspot-form-target .submitted-message a,
.hubspot-contact-section__form-wrapper .submitted-message a {
  color: #04D1AD !important;
  text-decoration: underline;
  font-weight: 600;
}
#hubspot-form-target .submitted-message a:hover,
.hubspot-contact-section__form-wrapper .submitted-message a:hover {
  color: #fff !important;
}

@media (max-width: 1024px) {
  .ai-popup-container-azlr3d3d0rhexnzbozaigenblock90923f8bvnnen {
    width: 100%;
    border-radius: 24px;
    top: 0;
    left: 0;
    transform: none;
    position: fixed;
    bottom: 0;
    min-height: 100svh;
    height: 100svh;
  }

  .ai-popup-close-azlr3d3d0rhexnzbozaigenblock90923f8bvnnen {
    top: 100px;
    right: 10%;
  }

  .ai-popup-content-azlr3d3d0rhexnzbozaigenblock90923f8bvnnen {
    padding: 28.0px;
    min-height: 100svh;
    justify-content: flex-start;
    padding-top: 190px;
  }

  .ai-popup-title-azlr3d3d0rhexnzbozaigenblock90923f8bvnnen {
    font-size: 25.6px;
  }

  .ai-popup-description-azlr3d3d0rhexnzbozaigenblock90923f8bvnnen {
    font-size: 14.4px;
  }
}

@media (max-width: 767px) {
  .ai-popup-container-azlr3d3d0rhexnzbozaigenblock90923f8bvnnen {
    border-radius: 20px;
  }

  .ai-popup-close-azlr3d3d0rhexnzbozaigenblock90923f8bvnnen {
    top: 48px;
    right: 40px;
  }

  .ai-popup-content-azlr3d3d0rhexnzbozaigenblock90923f8bvnnen {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
