.lead-landing-page {
  min-height: 100vh;
  background: #f6fbff;
}

.lead-header {
  position: absolute;
  border-bottom-color: rgba(0, 120, 201, 0.12);
}

.lead-header .header-actions {
  display: flex;
}

.lead-back-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid rgba(0, 120, 201, 0.24);
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  transition: border-color 180ms ease, transform 180ms ease;
}

.lead-back-link:hover,
.lead-back-link:focus-visible {
  border-color: var(--blue);
  transform: translateY(-1px);
}

.lead-back-link:focus-visible,
.lead-submit:focus-visible,
.lead-consent input:focus-visible,
.lead-field input:focus-visible,
.lead-field select:focus-visible {
  outline: 3px solid rgba(243, 146, 34, 0.58);
  outline-offset: 2px;
}

.lead-hero {
  position: relative;
  min-height: 820px;
  padding: 154px 0 76px;
  overflow: hidden;
  background:
    radial-gradient(circle at 6% 18%, rgba(243, 146, 34, 0.16), transparent 24%),
    radial-gradient(circle at 90% 16%, rgba(0, 120, 201, 0.18), transparent 30%),
    linear-gradient(145deg, #eef9ff 0%, #ffffff 48%, #f8fbfd 100%);
}

.lead-hero::before,
.lead-hero::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.lead-hero::before {
  width: 390px;
  height: 390px;
  top: 116px;
  right: -230px;
  border: 72px solid rgba(0, 120, 201, 0.055);
}

.lead-hero::after {
  width: 180px;
  height: 180px;
  left: 8%;
  bottom: -112px;
  border: 38px solid rgba(243, 146, 34, 0.08);
}

.lead-hero-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: 76px;
  align-items: center;
}

.lead-hero-copy {
  padding: 24px 0;
}

.lead-kicker,
.lead-form-heading > span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  color: #0878bd;
  background: #e7f6ff;
  font-size: 14px;
  font-weight: 800;
}

.lead-hero-copy h1 {
  max-width: 560px;
  margin: 20px 0 18px;
  color: var(--blue-dark);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -1.6px;
}

.lead-hero-copy > p:not(.lead-disclaimer) {
  max-width: 555px;
  margin: 0;
  color: #526579;
  font-size: 20px;
  line-height: 1.75;
}

.lead-benefits {
  margin: 34px 0 28px;
  padding: 0;
  display: grid;
  gap: 16px;
  list-style: none;
}

.lead-benefits li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lead-benefits li > span {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #26c466, #15994c);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(25, 160, 79, 0.18);
}

.lead-benefits div {
  display: grid;
  gap: 2px;
}

.lead-benefits strong {
  color: var(--blue-dark);
  font-size: 17px;
}

.lead-benefits small {
  color: #758496;
  font-size: 14px;
}

.lead-disclaimer {
  max-width: 555px;
  margin: 0;
  padding-top: 21px;
  border-top: 1px solid rgba(45, 59, 79, 0.11);
  color: #758496;
  font-size: 12px;
  line-height: 1.65;
}

.lead-form-card {
  position: relative;
  padding: 36px;
  border: 1px solid rgba(0, 120, 201, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 70px rgba(36, 56, 79, 0.16);
}

.lead-form-card::before {
  position: absolute;
  content: "";
  top: 0;
  right: 36px;
  left: 36px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--orange), #ffd282 42%, var(--blue));
}

.lead-form-heading {
  margin-bottom: 25px;
}

.lead-form-heading h2 {
  margin: 11px 0 4px;
  color: var(--blue-dark);
  font-size: 32px;
  line-height: 1.2;
}

.lead-form-heading p {
  margin: 0;
  color: #7b8998;
  font-size: 14px;
}

.lead-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px 16px;
}

.lead-field {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.lead-field > span {
  color: #35475a;
  font-size: 14px;
  font-weight: 800;
}

.lead-field > span::after {
  content: " *";
  color: #df681a;
}

.lead-field input,
.lead-field select {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid #d8e2ea;
  border-radius: 11px;
  color: var(--ink);
  background: #fbfdff;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.lead-field input:hover,
.lead-field select:hover {
  border-color: #aec8da;
}

.lead-field input:focus,
.lead-field select:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 120, 201, 0.08);
}

.lead-field input::placeholder {
  color: #a6b0bc;
}

.lead-field-wide {
  grid-column: 1 / -1;
}

.lead-consent {
  margin-top: 21px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #5f6f7f;
  font-size: 12px;
  line-height: 1.75;
  cursor: pointer;
}

.lead-consent input {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  margin: 3px 0 0;
  accent-color: var(--blue);
}

.lead-consent a {
  color: #0075bc;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lead-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.lead-form-error {
  min-height: 21px;
  margin: 10px 0 3px;
  color: #bc2f2f;
  font-size: 13px;
  font-weight: 700;
}

.lead-submit {
  width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #078bdc, #006db5);
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(0, 120, 201, 0.24);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.lead-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(0, 120, 201, 0.3);
}

.lead-submit:disabled {
  opacity: 0.68;
  cursor: wait;
  transform: none;
}

.lead-secure-note {
  margin: 12px 0 0;
  color: #8693a0;
  font-size: 11px;
  text-align: center;
}

.lead-secure-note span {
  color: #24ae5e;
}

.lead-success {
  min-height: 440px;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
}

.lead-success > span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #2bc96b, #14994c);
  font-size: 36px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(25, 160, 79, 0.25);
}

.lead-success h2 {
  margin: 24px 0 7px;
  color: var(--blue-dark);
  font-size: 30px;
}

.lead-success p {
  margin: 0 0 22px;
  color: #6d7b8a;
}

.lead-success a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-footer {
  padding: 36px 0;
  color: #fff;
  background: #23364b;
}

.lead-footer .section-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}

.lead-footer img {
  width: 175px;
  display: block;
}

.lead-footer nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: #dbe6ee;
  font-size: 13px;
}

.lead-footer nav a:hover,
.lead-footer nav a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.lead-footer p {
  margin: 0;
  color: #b9c6d1;
  font-size: 12px;
}

.privacy-content a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-content .privacy-updated {
  margin: 0 0 26px;
  color: #7c8997;
  font-size: 13px;
}

.privacy-source-note {
  margin-top: 34px;
  padding: 24px 26px;
  border: 1px solid #cde5f4;
  border-radius: 14px;
  background: #f1f9fe;
}

.privacy-source-note h2 {
  margin-top: 0;
}

.privacy-source-note p {
  margin-bottom: 0;
}

.privacy-content .privacy-legal-note {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #778594;
  font-size: 13px;
}

@media (max-width: 980px) {
  .lead-hero {
    padding-top: 132px;
  }

  .lead-hero-shell {
    max-width: 720px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .lead-hero-copy {
    text-align: center;
  }

  .lead-hero-copy h1,
  .lead-hero-copy > p,
  .lead-disclaimer {
    margin-right: auto;
    margin-left: auto;
  }

  .lead-benefits {
    max-width: 540px;
    margin-right: auto;
    margin-left: auto;
    text-align: right;
  }
}

@media (max-width: 700px) {
  .lead-header .header-shell {
    min-height: 88px;
  }

  .lead-header .brand img {
    width: 190px;
  }

  .lead-back-link {
    min-height: 40px;
    padding: 0 13px;
    font-size: 13px;
  }

  .lead-hero {
    padding: 112px 0 48px;
  }

  .lead-hero-shell {
    width: min(100% - 24px, 620px);
  }

  .lead-hero-copy {
    padding: 8px 6px;
  }

  .lead-hero-copy h1 {
    margin-top: 15px;
    font-size: 40px;
    letter-spacing: -0.8px;
  }

  .lead-hero-copy > p:not(.lead-disclaimer) {
    font-size: 17px;
  }

  .lead-form-card {
    padding: 29px 20px 24px;
    border-radius: 20px;
  }

  .lead-field-grid {
    grid-template-columns: 1fr;
  }

  .lead-field-wide {
    grid-column: auto;
  }

  .lead-form-heading h2 {
    font-size: 27px;
  }

  .lead-footer .section-shell {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
    text-align: center;
  }

  .lead-footer nav {
    flex-wrap: wrap;
    gap: 12px 20px;
  }
}

@media (max-width: 430px) {
  .lead-header .brand img {
    width: 155px;
  }

  .lead-back-link {
    padding: 0 10px;
  }

  .lead-hero-copy h1 {
    font-size: 35px;
  }

  .lead-benefits small {
    font-size: 13px;
  }

  .lead-form-card {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lead-back-link,
  .lead-submit,
  .lead-field input,
  .lead-field select {
    transition: none;
  }
}
