.home-hero-3 {
  padding: 92px 0 110px;
  background: #ffffff;
}

.home-hero-3__container {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  gap: 84px;
  align-items: start;
}

.home-hero-3__eyebrow {
  margin: 0 0 36px;
  color: var(--color-primary-soft);
  font-family: var(--font-family-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.home-hero-3__heading {
  margin: 0;
  color: #2d2f37;
  font-family: var(--font-family-display);
  font-size: clamp(56px, 5vw, 78px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.04em;
  max-width: 900px;
}

.home-hero-3__divider {
  width: 348px;
  max-width: 100%;
  margin: 46px 0 32px;
  border-top: 4px dotted var(--color-dotted);
}

.home-hero-3__body {
  max-width: 820px;
  color: #54565f;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.42;
  font-weight: 500;
}

.home-hero-3__body p {
  margin: 0 0 34px;
}

.home-hero-3__body p:last-child {
  margin-bottom: 0;
}

.home-hero-3__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 56px;
  min-width: 364px;
  padding: 24px 34px;
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: #f8f5ec;
  text-decoration: none;
  font-family: var(--font-family-display);
  font-size: 19px;
  font-weight: 500;
  box-shadow: 0 14px 24px rgba(58, 71, 83, 0.18);
  transition: background 0.2s ease, transform 0.2s ease;
}

.home-hero-3__cta:hover {
  background: var(--color-primary-soft-dark);
  transform: translateY(-2px);
}

.home-hero-3__form-card {
  padding: 72px 60px 56px;
  background: #ffffff;
  border-radius: 52px;
  box-shadow: 0 12px 36px rgba(30, 38, 47, 0.16);
}

.home-hero-3__form-title {
  margin: 0 0 28px;
  color: #42454d;
  font-family: var(--font-family-display);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
}

.home-hero-3__form-copy {
  margin: 0 0 48px;
  color: #5c5f67;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 500;
}

.home-hero-3__form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.home-hero-3__field {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.home-hero-3__field span {
  color: #3f4348;
  font-family: var(--font-family-display);
  font-size: 21px;
  font-weight: 700;
}

.home-hero-3__field input,
.home-hero-3__field textarea {
  width: 100%;
  padding: 0 0 18px;
  border: 0;
  border-bottom: 2px solid rgba(219, 186, 131, 0.75);
  background: transparent;
  color: #404349;
  font-size: 18px;
  font-family: var(--font-family);
  outline: none;
}

.home-hero-3__field textarea {
  min-height: 82px;
  resize: vertical;
}

.home-hero-3__field input:focus,
.home-hero-3__field textarea:focus {
  border-bottom-color: var(--color-primary-soft);
}

.home-hero-3__submit {
  align-self: flex-end;
  min-width: 280px;
  margin-top: 22px;
  padding: 22px 32px;
  border: 0;
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: #faf8ef;
  font-family: var(--font-family-display);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(58, 71, 83, 0.16);
}

@media (max-width: 1400px) {
  .home-hero-3__form-card {
    padding: 56px 44px 48px;
  }
}

@media (max-width: 1100px) {
  .home-hero-3 {
    padding: 72px 0 88px;
  }

  .home-hero-3__container {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .home-hero-3__heading {
    font-size: 54px;
  }

  .home-hero-3__body {
    font-size: 20px;
    max-width: none;
  }

  .home-hero-3__form-card {
    max-width: 860px;
  }
}

@media (max-width: 767px) {
  .home-hero-3 {
    padding: 52px 0 68px;
  }

  .home-hero-3__eyebrow {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .home-hero-3__heading {
    font-size: 42px;
  }

  .home-hero-3__divider {
    margin: 26px 0 20px;
  }

  .home-hero-3__body {
    font-size: 18px;
  }

  .home-hero-3__cta,
  .home-hero-3__submit {
    width: 100%;
    min-width: 0;
    font-size: 18px;
    padding: 18px 24px;
  }

  .home-hero-3__form-card {
    padding: 34px 24px 30px;
    border-radius: 32px;
  }

  .home-hero-3__form-title {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .home-hero-3__form-copy {
    font-size: 18px;
    margin-bottom: 28px;
  }

  .home-hero-3__field span {
    font-size: 20px;
  }

  .home-hero-3__field input,
  .home-hero-3__field textarea {
    font-size: 18px;
  }
}
