.lead-form {
  display: grid;
  gap: 0.92rem;
  margin-top: 0.2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.field {
  display: grid;
  gap: 0.38rem;
  font-size: 0.86rem;
  color: #385068;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(18, 32, 51, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: #13263a;
  border-radius: 12px;
  padding: 0.82rem 0.9rem;
  font: inherit;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8aa0b3;
}

.field textarea {
  resize: vertical;
  min-height: 112px;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(14, 174, 222, 0.72);
  box-shadow: 0 0 0 2px rgba(14, 174, 222, 0.14);
}

.field-full {
  grid-column: 1 / -1;
}

.field-check {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 0.45rem;
}

.field-check input {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  padding: 0;
  margin-top: 0.2rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  color: #8eafc5;
  font-size: 0.77rem;
  line-height: 1.45;
}

.turnstile-block {
  gap: 0.48rem;
}

.turnstile-label {
  font-size: 0.86rem;
  font-weight: 700;
  color: #385068;
}

.turnstile-slot {
  min-height: 68px;
}

.turnstile-note {
  margin: 0;
}

.form-status {
  margin: 0;
  min-height: 1.15em;
  font-size: 0.84rem;
  color: #cbe8ff;
}

.form-status.is-success {
  color: #9ff0bf;
}

.form-status.is-error {
  color: #ffb9b9;
}

.lead-form button[disabled] {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

@media (max-width: 992px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  .field {
    font-size: 0.82rem;
  }

  .field input,
  .field textarea {
    padding: 0.56rem 0.58rem;
  }
}
