/* Minimal styles for the lead form */
/* .ldo-form { max-width: 720px; margin: 1rem auto; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
.ldo-field { margin-bottom: 14px; }
.ldo-field label { display:block; font-weight:600; margin-bottom:6px; }
.ldo-field input[type="text"],
.ldo-field input[type="email"],
.ldo-field input[type="tel"],
.ldo-field input[type="number"],
.ldo-field select { width:100%; padding:.6rem .7rem; border:1px solid #dadada; border-radius:6px; font-size:14px; }
.ldo-children-dobs .dob-group { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:8px; margin-bottom:10px; }
.ldo-children-dobs .dob-title { font-weight:600; margin:10px 0 6px; }
.ldo-terms label { font-weight:400; }
.ldo-terms input[type="checkbox"] { margin-right:6px; }
.ldo-actions { margin-top:16px; display:flex; align-items:center; gap:10px; }
.ldo-submit { background:#111; color:#fff; border:none; border-radius:6px; padding:.7rem 1.1rem; cursor:pointer; }
.ldo-submit:disabled { opacity:.6; cursor:not-allowed; }
.ldo-msg { font-size:14px; }
.req { color:#d00; }
.ldo-hp { display:none !important; }

.ldo-spin-field { display:flex; align-items:center; gap:6px; }
.ldo-spin-field input[type="number"] { max-width:110px; text-align:center; }
.ldo-spin { width:36px; height:36px; border-radius:6px; border:1px solid #ccc; background:#f9f9f9; font-size:20px; line-height:1; }
@media (max-width: 560px) {
  .ldo-children-dobs .dob-group { grid-template-columns: repeat(3, 1fr); }
} */

/* ===== LeadGen – “like the screenshot” look ===== */
.ldo-form {
  max-width: 720px;
  margin: 24px auto 32px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial,
    sans-serif;
  color: #111;
  font-size: 14px;
  line-height: 1.4;
}

/* Labels */
.ldo-field {
  margin: 14px 0 18px;
}
.ldo-field label {
  display: block;
  font-weight: 600;
  margin: 0 0 6px;
  color: #111;
}
.req {
  color: #d00;
}

/* Inputs / selects – consistent height & feel */
.ldo-field input[type="text"],
.ldo-field input[type="email"],
.ldo-field input[type="tel"],
.ldo-field input[type="number"],
.ldo-field select {
  width: 100%;
  height: 42px;
  padding: 10px 12px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.ldo-field input:focus,
.ldo-field select:focus {
  border-color: #111;
  box-shadow: 0 0 0 2px rgba(17, 17, 17, 0.08);
}

/* Remove native number spinners (so ours match) */
.ldo-field input[type="number"]::-webkit-outer-spin-button,
.ldo-field input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.ldo-field input[type="number"] {
  -moz-appearance: textfield;
}

/* === Number of Children control: input + [-][+] grouped on the right === */
.ldo-spin-field {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  height: 42px;
}
.ldo-spin-field input[type="number"] {
  border: none !important;
  width: 62px; /* compact like the screenshot */
  text-align: center;
  padding: 0 6px;
  height: 100%;
  border-right: 1px solid #e9e9e9;
}
.ldo-spin {
  width: 38px;
  height: 100%;
  border: none;
  background: #f5f5f5;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.ldo-spin + .ldo-spin {
  border-left: 1px solid #e9e9e9;
}
.ldo-spin:hover {
  background: #eee;
}
.ldo-spin:active {
  background: #e6e6e6;
}

/* Child DOB rows */
.ldo-children-dobs .dob-title {
  font-weight: 600;
  margin: 10px 0 6px;
  color: #111;
}
.ldo-children-dobs .dob-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 10px;
}
.ldo-children-dobs select {
  width: 100%;
  height: 42px;
}

/* Terms line / legal text */
.ldo-terms {
  margin-top: 6px;
}
.ldo-terms label {
  font-weight: 400;
  color: #333;
}
.ldo-terms input[type="checkbox"] {
  width: 16px;
  height: 16px;
  vertical-align: -2px;
  margin-right: 8px;
}
.ldo-terms a {
  color: #111;
  text-decoration: underline;
}

/* Submit button (full width, black) + message */
.ldo-actions {
  margin-top: 10px;
}
.ldo-submit {
  width: 100%;
  height: 44px;
  border: none;
  border-radius: 4px;
  background: #111;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.02s ease;
}
.ldo-submit:hover {
  opacity: 0.92;
}
.ldo-submit:active {
  transform: translateY(1px);
}
.ldo-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.ldo-msg {
  margin-top: 10px;
  font-size: 13px;
  color: red;
}

/* Honeypot hidden */
.ldo-hp {
  display: none !important;
}

/* Mobile tweaks */
@media (max-width: 560px) {
  .ldo-form {
    padding: 0 12px;
  }
  .ldo-children-dobs .dob-group {
    gap: 8px;
  }
}
