@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&icon_names=check_circle,location_on,request_quote,schedule&display=block");

.lead-split {
  --brand: #1456E6;
  --brand-strong: #0B3DBF;
  --ink-950: #080B11;
  --ink-900: #10141C;
  --ink-700: #2A3140;
  --ink-500: #5A6376;
  --ink-400: #828B9E;
  --ink-300: #AEB6C5;
  --ink-200: #D2D8E2;
  --ink-50: #F6F8FB;
  --blue-200: #B9CEFF;
  --green-600: #0F9D63;
  --green-50: #E9FBF2;
  --red-700: #B91C1C;
  --ring-focus: 0 0 0 3px rgba(46, 107, 255, .35);

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  min-height: calc(100vh - 68px);
  font-family: 'Manrope', system-ui, sans-serif;
}

.lead-split .material-symbols-rounded {
  font-family: 'Material Symbols Rounded';
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
}

.lead-left {
  background: var(--ink-950);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px;
  color: #fff;
}

.lead-eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue-200);
  margin-bottom: 12px;
}

.lead-headline {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
}

.lead-sub {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-400);
  margin-bottom: 40px;
  max-width: 440px;
}

.lead-assurances {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lead-assurance {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-300);
}

.lead-assurance-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lead-assurance-icon .material-symbols-rounded {
  font-size: 20px;
  color: var(--blue-200);
}

.lead-right {
  background: var(--ink-50);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
}

.lead-form-wrap {
  max-width: 520px;
  width: 100%;
}

.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.lead-span2 {
  grid-column: 1 / -1;
}

.lead-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 6px;
  display: block;
}

.lead-field {
  width: 100%;
  height: 52px;
  border: 1.5px solid var(--ink-200);
  border-radius: 14px;
  padding: 0 16px;
  font-size: 15px;
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--ink-900);
  background: #fff;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.lead-field:focus {
  border-color: var(--brand);
  box-shadow: var(--ring-focus);
}

.lead-field::placeholder {
  color: var(--ink-400);
}

select.lead-field {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' fill='none' stroke='%236B7385' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

select.lead-field:invalid,
select.lead-field option[value=""] {
  color: var(--ink-400);
}

.lead-alert {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--red-700);
}

.lead-disclaimer {
  font-size: 11px;
  color: var(--ink-400);
  line-height: 1.6;
  margin-top: 24px;
}

.lead-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.lead-submit {
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Manrope', system-ui, sans-serif;
  cursor: pointer;
  transition: all .2s;
}

.lead-submit:hover {
  background: var(--brand-strong);
}

.lead-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 96px 24px;
  background: var(--ink-50);
  min-height: calc(100vh - 68px);
  font-family: 'Manrope', system-ui, sans-serif;
}

.lead-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green-50, #E9FBF2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.lead-success-icon .material-symbols-rounded {
  font-family: 'Material Symbols Rounded';
  font-size: 36px;
  color: #0F9D63;
}

.lead-success-title {
  font-size: 24px;
  font-weight: 700;
  color: #10141C;
  margin-bottom: 8px;
}

.lead-success-sub {
  font-size: 15px;
  color: #5A6376;
  line-height: 1.6;
  max-width: 380px;
  margin-bottom: 32px;
}

.lead-success-btn {
  background: none;
  border: 1.5px solid #D2D8E2;
  border-radius: 100px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #2A3140;
  text-decoration: none;
  transition: all .2s;
}

.lead-success-btn:hover {
  border-color: #1456E6;
  color: #1456E6;
}

@media only screen and (max-width: 992px) {
  .lead-left {
    padding: 40px 28px;
  }

  .lead-headline {
    font-size: 28px;
  }
}

@media only screen and (max-width: 640px) {
  .lead-grid {
    grid-template-columns: 1fr;
  }

  .lead-span2 {
    grid-column: auto;
  }
}
