/* Единый блок заявки (О нас, FAQ, Персонал) */
.page-cta-section {
  padding: 0 0 clamp(4rem, 8vw, 6rem);
  background: var(--white);
}

.page-cta-section .svc-cta {
  padding: clamp(2.5rem, 5vw, 3.5rem);
  border-radius: calc(var(--radius) + 10px);
  background: linear-gradient(135deg, var(--cyan-dark) 0%, var(--cyan) 55%, var(--cyan-bright) 100%);
  color: var(--white);
  text-align: center;
  box-shadow: 0 20px 50px rgba(83, 66, 143, 0.28);
}

.page-cta-section .svc-cta h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
}

.page-cta-section .svc-cta p {
  margin: 0 0 1.5rem;
  opacity: 0.92;
  font-size: 1rem;
}

.page-cta-section .svc-cta .page-cta__doctor-name {
  font-weight: 700;
}

.page-cta-section .svc-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: start;
  max-width: 640px;
  margin-inline: auto;
}

.page-cta-section .svc-form__input {
  width: 100%;
  height: 52px;
  padding: 0 1.15rem;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid rgba(50, 40, 85, 0.12);
  border-radius: var(--radius-pill);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 12px rgba(50, 40, 85, 0.04);
}

.page-cta-section .svc-form__input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(83, 66, 143, 0.2);
}

.page-cta-section .svc-form__input.is-error {
  border-color: #e91e8c;
  box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.2);
}

.page-cta-section .svc-form__submit {
  height: 52px;
  padding: 0 1.65rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  background: linear-gradient(135deg, var(--pink), #ff4da6);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(233, 30, 140, 0.32);
  transition: transform 0.25s var(--ease), box-shadow var(--transition);
}

.page-cta-section .svc-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(233, 30, 140, 0.4);
}

.page-cta-section .svc-form__consent {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.75rem auto 0;
  padding-left: 0;
  font-size: 0.75rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  max-width: 100%;
}

.page-cta-section .svc-form__consent input[type='checkbox'] {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  margin: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 5px;
  background: transparent;
  transition: border-color 0.2s var(--ease), background 0.2s;
}

.page-cta-section .svc-form__consent input[type='checkbox']:checked {
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6l2.5 2.5 4.5-5' stroke='%2353428f' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 11px no-repeat;
  border-color: var(--white);
}

.page-cta-section .svc-form__consent a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-cta-section .svc-form__consent a:hover {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 720px) {
  .page-cta-section .svc-form__row {
    grid-template-columns: 1fr;
  }

  .page-cta-section .svc-form__submit {
    width: 100%;
  }

  .page-cta-section .svc-form__consent {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    margin: 0.75rem 0 0;
    width: 100%;
    line-height: 1.35;
  }

  .page-cta-section .svc-form__consent span {
    flex: 1;
    min-width: 0;
    text-align: left;
  }

  .page-cta-section .svc-form__consent input[type='checkbox'] {
    margin-top: 0.1rem;
  }
}
