.contact-response-2 {
  padding: 44px 20px 88px;
  background: #ffffff;
}

.contact-response-2__container {
  max-width: 1540px;
  margin: 0 auto;
}

.contact-response-2__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.95fr);
  gap: 68px;
  align-items: center;
}

.contact-response-2__content {
  max-width: 680px;
}

.contact-response-2__eyebrow {
  margin: 0 0 28px;
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.contact-response-2__heading {
  margin: 0 0 34px;
  font-family: 'Mulish', sans-serif;
  font-size: clamp(3rem, 4.2vw, 4.15rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: #17181d;
}

.contact-response-2__description {
  margin: 0 0 40px;
  font-family: 'Mulish', sans-serif;
  font-size: 17px;
  line-height: 1.45;
  color: rgba(35, 35, 37, 0.9);
}

.contact-response-2__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 322px;
  min-height: 88px;
  padding: 18px 34px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(120, 104, 230, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-response-2__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(120, 104, 230, 0.36);
}

.contact-response-2__media {
  overflow: hidden;
  border-radius: 28px;
}

.contact-response-2__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
}

@media (max-width: 1199px) {
  .contact-response-2 {
    padding: 36px 20px 72px;
  }

  .contact-response-2__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-response-2__content {
    max-width: none;
  }

  .contact-response-2__media {
    max-width: 820px;
  }

  .contact-response-2__image {
    min-height: 520px;
  }
}

@media (max-width: 767px) {
  .contact-response-2 {
    padding: 28px 16px 56px;
  }

  .contact-response-2__eyebrow {
    margin-bottom: 20px;
    font-size: 12px;
    text-align: center;
  }

  .contact-response-2__heading {
    margin-bottom: 24px;
    font-size: clamp(2.3rem, 9vw, 3.1rem);
    text-align: center;
  }

  .contact-response-2__description {
    margin-bottom: 30px;
    font-size: 16px;
    text-align: center;
  }

  .contact-response-2__cta {
    width: 100%;
    min-width: 0;
    min-height: 74px;
  }

  .contact-response-2__media {
    border-radius: 24px;
  }

  .contact-response-2__image {
    min-height: 360px;
  }
}
