.te-lead-section {
  background: #0d0d0d;
  padding: 96px max(24px, 5vw);
  color: #fff;
}

.te-lead-wrap {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 44px;
  align-items: start;
}

.te-lead-copy h2 {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
}

.te-lead-copy p {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
  max-width: 520px;
}

.te-lead-kicker {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #34ad85;
  margin-bottom: 18px;
}

.te-lead-card {
  background: #fbfaf7;
  color: #0d0d0d;
  border: 1px solid #e6e2da;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.te-lead-card h3 {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 24px;
  line-height: 1.15;
  margin: 0 0 8px;
}

.te-lead-card .hint {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #56564f;
  font-size: 14px;
  line-height: 1.45;
  margin: 0 0 22px;
}

.te-lead-field {
  margin-bottom: 18px;
}

.te-lead-label {
  display: block;
  font-family: 'DM Mono', monospace;
  color: #56564f;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
  margin-bottom: 9px;
}

.te-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.te-choice {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #d5d0c6;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.25;
  color: #25251f;
}

.te-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.te-choice:has(input:checked) {
  border-color: #14916b;
  background: #eaf7f1;
  color: #0f6f53;
}

.te-lead-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 8px;
}

.te-lead-card input,
.te-lead-card select,
.te-lead-card textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d5d0c6;
  border-radius: 10px;
  background: #fff;
  color: #0d0d0d;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 15px;
  padding: 13px 14px;
  outline: none;
}

.te-lead-card textarea {
  min-height: 96px;
  resize: vertical;
}

.te-lead-card input:focus,
.te-lead-card select:focus,
.te-lead-card textarea:focus {
  border-color: #14916b;
  box-shadow: 0 0 0 3px rgba(20, 145, 107, 0.12);
}

.te-lead-submit {
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: #14916b;
  color: #fff;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 22px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.te-lead-submit:hover {
  background: #0f7a59;
  transform: translateY(-1px);
}

.te-lead-note {
  font-family: 'DM Mono', monospace;
  color: #8d8d86;
  font-size: 10px;
  line-height: 1.45;
  margin: 12px 0 0;
}

.te-hidden {
  display: none;
}

@media (max-width: 820px) {
  .te-lead-section {
    padding: 72px 20px;
  }

  .te-lead-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .te-lead-card {
    padding: 22px;
  }

  .te-choice-grid {
    grid-template-columns: 1fr;
  }
}
