

.lead-section {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

.lead-box {
  max-width: 1100px;
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  border: 2px solid #ffd1a6;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  padding: 50px;
  gap: 40px;
}

.lead-left .tag {
  display: inline-block;
  background: #ff7a00;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 14px;
}

.lead-left h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #111;
}

.description {
  font-size: 16px;
  color: #5f6b7a;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 520px;
}

.checklist {
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #1f2937;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: bold;
}

.lead-right {
  background: #f9fafb;
  padding: 30px;
  border-radius: 14px;
}

.lead-right h3 {
  font-size: 20px;
  margin-bottom: 18px;
  color: #111;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  outline: none;
}

input:focus {
  border-color: #ff7a00;
}

button {
  margin-top: 6px;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(45deg, #ff7a00, #ff3c00);
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  opacity: 0.9;
}

small {
  text-align: center;
  font-size: 12px;
  color: #6b7280;
  margin-top: 6px;
}

@media (max-width: 900px) {
  .lead-box {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .lead-left h2 {
    font-size: 28px;
  }
}
