:root {
  --bg: #f5f7fb;
  --ink: #132238;
  --muted: #64748b;
  --card: #ffffff;
  --line: #d9e2ef;
  --brand: #1266d6;
  --brand-dark: #0c4faa;
  --soft: #eaf2ff;
  --ok: #0f7b45;
  --bad: #b42318;
  --shadow: 0 18px 50px rgba(19, 34, 56, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at top left, #ffffff 0, var(--bg) 42%, #edf3fb 100%);
  color: var(--ink);
}
.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 56px;
}
.hero {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 28px;
  align-items: stretch;
  min-height: 420px;
}
.hero-copy, .hero-card, .form-section, .disclosures, .info-grid article {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(217,226,239,0.9);
  box-shadow: var(--shadow);
  border-radius: 24px;
}
.hero-copy { padding: 52px; }
.eyebrow {
  color: var(--brand);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: .08em;
  margin: 0 0 14px;
}
h1 {
  font-size: clamp(2.5rem, 7vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
  margin: 0 0 20px;
}
.subhead {
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.55;
  color: var(--muted);
  max-width: 700px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.trust-row span {
  background: var(--soft);
  color: var(--brand-dark);
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
}
.hero-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-card h2, .form-intro h2, .disclosures h2 {
  margin: 0 0 12px;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}
.hero-card p, .form-intro p, .disclosures p, .info-grid p {
  color: var(--muted);
  line-height: 1.55;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-height: 50px;
  border-radius: 14px;
  padding: 14px 18px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
}
.button-primary {
  background: var(--brand);
  color: white;
}
.button-primary:hover { background: var(--brand-dark); }
.full { width: 100%; font-size: 1.05rem; }
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 24px 0;
}
.info-grid article { padding: 24px; box-shadow: none; }
.info-grid h3 { margin: 0 0 8px; }
.form-section { padding: 34px; }
.form-intro { max-width: 760px; margin-bottom: 24px; }
.lead-form label {
  display: block;
  font-weight: 800;
  color: #24364f;
  margin-bottom: 16px;
}
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
  padding: 13px 14px;
  font-size: 1rem;
  color: var(--ink);
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  outline: 3px solid rgba(18, 102, 214, 0.16);
  border-color: var(--brand);
}
.field-grid.two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.consent-row {
  display: grid !important;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  font-weight: 600 !important;
  color: var(--muted) !important;
  line-height: 1.45;
}
.consent-row input { width: auto; margin-top: 2px; }
.hp { display: none !important; }
.form-message {
  min-height: 24px;
  margin: 16px 0 0;
  font-weight: 800;
}
.form-message.ok { color: var(--ok); }
.form-message.bad { color: var(--bad); }
.disclosures {
  margin-top: 24px;
  padding: 24px;
  box-shadow: none;
}
.disclosures p { font-size: .9rem; }
@media (max-width: 860px) {
  .hero, .info-grid, .field-grid.two { grid-template-columns: 1fr; }
  .hero-copy { padding: 34px 24px; }
  .form-section { padding: 24px; }
}
