/* Contact Us hero - Figma node 1059:1650 */

.contact-hero {
  background: #f5f8fb; /* no matching Figma token */
  padding: 80px 0;
  overflow: hidden;
}

.contact-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.contact-hero__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: start;
  max-width: 600px;
}

.contact-hero__title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1.92px; /* no matching Figma token */
  color: var(--grey-dark-charcoal);
}

.contact-hero__subtitle {
  font-size: 18px;
  line-height: 1.25;
  color: var(--grey-medium-dark-grey);
}

.contact-hero__badge {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(49, 49, 223, 0.02); /* no matching Figma token */
  border: 1px solid #3131df; /* no matching Figma token */
  border-radius: 29px;
  padding: 13px 18px;
}

.contact-hero__badge img {
  width: 18px;
  height: 18px;
}

.contact-hero__badge span {
  font-size: 16px;
  color: var(--primary-blue);
}

.contact-hero__visual {
  flex-shrink: 0;
  width: 654px;
  max-width: 48vw;
}

.contact-hero__visual img {
  width: 100%;
  height: auto;
}

@media (max-width: 1180px) {
  .contact-hero__title {
    font-size: 48px;
  }
}

@media (max-width: 1023px) {
  .contact-hero {
    padding: 56px 0;
  }

  .contact-hero__inner {
    flex-direction: column;
    text-align: center;
  }

  .contact-hero__text {
    max-width: none;
    align-items: center;
  }

  .contact-hero__visual {
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 639px) {
  .contact-hero__title {
    font-size: 34px;
    letter-spacing: -0.9px;
  }

  .contact-hero__subtitle {
    font-size: 16px;
  }

  .contact-hero__badge span {
    font-size: 14px;
  }
}
