.service-hero-3 {
  padding: 84px 20px 102px;
  background: #f8f5ef;
}

.service-hero-3__container {
  max-width: 1560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.84fr);
  gap: 86px;
  align-items: start;
}

.service-hero-3__content {
  padding-top: 18px;
}

.service-hero-3__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin: 0 0 34px;
  color: var(--color-primary-soft);
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 1.3;
}

.service-hero-3__breadcrumb-link,
.service-hero-3__breadcrumb-current {
  color: var(--color-primary-soft);
  text-decoration: none;
}

.service-hero-3__breadcrumb-link:first-child {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-hero-3__breadcrumb-separator {
  color: #43464e;
  font-size: 28px;
  line-height: 1;
}

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

.service-hero-3__heading-highlight {
  color: #2d2f37;
}

.service-hero-3__divider {
  width: min(318px, 100%);
  margin: 36px 0 34px;
  border-top: 4px dotted var(--color-dotted);
}

.service-hero-3__description {
  max-width: 920px;
  margin: 0;
  color: #4f5259;
  font-size: 20px;
  line-height: 1.52;
  font-weight: 500;
}

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

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

.service-hero-3__form-card {
  padding: 82px 56px 56px;
  border-radius: 46px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(24, 31, 38, 0.16);
}

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

.service-hero-3__form-copy {
  margin: 0 0 44px;
  color: #53565e;
  font-size: 20px;
  line-height: 1.32;
  font-weight: 500;
}

.service-hero-3__form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.service-hero-3__field {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

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

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

.service-hero-3__field textarea {
  min-height: 64px;
  resize: vertical;
}

.service-hero-3__field--textarea {
  margin-top: 6px;
}

.service-hero-3__submit {
  align-self: flex-end;
  min-width: 390px;
  margin-top: 24px;
  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);
  transition: background 0.2s ease, transform 0.2s ease;
}

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

@media (max-width: 1200px) {
  .service-hero-3 {
    padding: 64px 20px 84px;
  }

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

  .service-hero-3__form-card {
    max-width: 820px;
    padding: 64px 44px 48px;
  }
}

@media (max-width: 767px) {
  .service-hero-3 {
    padding: 44px 20px 56px;
  }

  .service-hero-3__breadcrumb {
    gap: 12px;
    margin-bottom: 22px;
    font-size: 15px;
  }

  .service-hero-3__breadcrumb-separator {
    font-size: 20px;
  }

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

  .service-hero-3__divider {
    margin: 24px 0;
    border-top-width: 3px;
  }

  .service-hero-3__description,
  .service-hero-3__form-copy {
    font-size: 18px;
  }

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

  .service-hero-3__form-card {
    padding: 42px 24px 32px;
    border-radius: 32px;
  }

  .service-hero-3__form-title {
    font-size: 24px;
  }

  .service-hero-3__field span {
    font-size: 18px;
  }
}
