:root {
  --ll-color-primary: #1a73e8;
  --ll-color-secondary: #f9ab00;
  --ll-color-background: #f5f5f5;
  --ll-color-text-primary: #1a1a2e;
  --ll-color-text-secondary: #5f6368;
  --ll-font-heading: 'Inter', sans-serif;
  --ll-font-body: 'Inter', sans-serif;
  --ll-color-success: #34a853;
  --ll-color-error: #ea4335;
  --ll-shadow-card: 0 2px 16px rgba(0, 0, 0, 0.10);
  --ll-radius: 8px;
  --ll-progress-bg: #b8ccdf;
  --ll-progress-fill: #0b4a8a;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--ll-font-body);
  background: var(--ll-color-background);
  color: var(--ll-color-text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.header {
  background: #fff;
  border-bottom: 3px solid var(--ll-color-primary);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.logo-icon {
  width: 32px;
  height: 32px;
}
.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ll-color-primary);
  letter-spacing: -0.5px;
}
.logo-text-accent {
  color: var(--ll-color-secondary);
}
.secure-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--ll-color-text-secondary);
  font-weight: 500;
}
.progress-bar-wrap {
  width: 100%;
  height: 8px;
  background: var(--ll-progress-bg);
  position: relative;
}
.progress-bar-fill {
  height: 100%;
  background: var(--ll-progress-fill);
  transition: width 0.5s ease;
  width: 12.5%;
}
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 0;
}
.hero-heading {
  font-size: 2.8rem;
  font-weight: 900;
  text-align: center;
  color: var(--ll-color-text-primary);
  max-width: 800px;
  line-height: 1.15;
  margin-bottom: 12px;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--ll-color-text-secondary);
  text-align: center;
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.5;
}
.form-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--ll-shadow-card);
  padding: 32px 36px;
  width: 100%;
  max-width: 680px;
  margin-bottom: 20px;
}
.form-step {
  display: none;
  animation: fadeSlideIn 0.4s ease;
}
.form-step.active {
  display: block;
}
.step-title {
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
  color: var(--ll-color-text-primary);
}
.step-subtitle {
  font-size: 1rem;
  color: var(--ll-color-text-secondary);
  margin-bottom: 24px;
  font-weight: 600;
}
.zip-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
}
.field-group {
  flex: 1;
  position: relative;
}
.field-label {
  position: absolute;
  top: -9px;
  left: 14px;
  background: #fff;
  padding: 0 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ll-color-primary);
}
.field-input {
  width: 100%;
  padding: 18px 16px;
  border: 2px solid var(--ll-color-primary);
  border-radius: var(--ll-radius);
  font-size: 1.05rem;
  font-family: var(--ll-font-body);
  color: var(--ll-color-text-primary);
  outline: none;
  transition: border-color 0.2s;
}
.field-input:focus {
  border-color: var(--ll-color-primary);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.12);
}
.field-input.error {
  border-color: var(--ll-color-error);
}
.field-select {
  width: 100%;
  padding: 18px 16px;
  border: 2px solid var(--ll-color-primary);
  border-radius: var(--ll-radius);
  font-size: 1.05rem;
  font-family: var(--ll-font-body);
  color: var(--ll-color-text-primary);
  outline: none;
  background: #fff;
  cursor: pointer;
  appearance: none;
  background-image: url("/assets/icons/chevron-down-gray.svg");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px;
  transition: border-color 0.2s;
}
.field-select:focus {
  border-color: var(--ll-color-primary);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.12);
}
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 32px;
  background: var(--ll-color-primary);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: var(--ll-radius);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  border: none;
}
.btn-primary:hover {
  background: #1557b0;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.35);
}
.btn-full {
  width: 100%;
  margin-top: 16px;
}
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--ll-color-text-secondary);
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  margin-top: 16px;
  transition: color 0.2s;
}
.btn-back:hover {
  color: var(--ll-color-primary);
}
.back-row {
  text-align: center;
}
.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.option-card {
  border: 2px solid #e0e0e0;
  border-radius: var(--ll-radius);
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #fff;
  text-decoration: none;
  color: var(--ll-color-text-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.option-card:hover {
  border-color: var(--ll-color-primary);
  background: rgba(26, 115, 232, 0.03);
}
.option-card.selected {
  border-color: var(--ll-color-primary);
  background: rgba(26, 115, 232, 0.06);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.12);
}
.option-card-icon {
  width: 36px;
  height: 36px;
}
.option-card-label {
  font-size: 0.95rem;
  font-weight: 600;
}
.option-card-sub {
  font-size: 0.8rem;
  color: var(--ll-color-text-secondary);
}
.slider-display {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--ll-color-primary);
  margin-bottom: 24px;
}
.slider-wrap {
  padding: 0 8px;
  margin-bottom: 28px;
}
.bill-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(to right, var(--ll-progress-fill) 0%, var(--ll-progress-fill) 50%, var(--ll-progress-bg) 50%, var(--ll-progress-bg) 100%);
  outline: none;
  cursor: pointer;
}
.bill-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ll-color-primary);
  border: 4px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 0.15s ease;
}
.bill-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}
.bill-slider::-moz-range-thumb {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ll-color-primary);
  border: 4px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
.provider-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.provider-radio {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 2px solid #e0e0e0;
  border-radius: var(--ll-radius);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  color: var(--ll-color-text-primary);
}
.provider-radio:hover {
  border-color: var(--ll-color-primary);
  background: rgba(26, 115, 232, 0.03);
}
.provider-radio.selected {
  border-color: var(--ll-color-primary);
  background: rgba(26, 115, 232, 0.06);
}
.radio-circle {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  border: 2px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.provider-radio.selected .radio-circle {
  border-color: var(--ll-color-primary);
}
.radio-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ll-color-primary);
  transform: scale(0);
  transition: transform 0.2s ease;
}
.provider-radio.selected .radio-dot {
  transform: scale(1);
}
.provider-name {
  font-size: 1rem;
  font-weight: 500;
}
.more-options-wrap {
  margin-bottom: 8px;
}
.contact-grid {
  display: grid;
  gap: 14px;
}
.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-field {
  position: relative;
}
.contact-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ll-color-text-secondary);
  margin-bottom: 6px;
}
.contact-input {
  width: 100%;
  padding: 14px 14px;
  border: 2px solid #ddd;
  border-radius: var(--ll-radius);
  font-size: 1rem;
  font-family: var(--ll-font-body);
  color: var(--ll-color-text-primary);
  outline: none;
  transition: border-color 0.2s;
}
.contact-input:focus {
  border-color: var(--ll-color-primary);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.12);
}
.contact-input.focused-label {
  border: 2px solid var(--ll-color-primary);
}
.float-label-wrap {
  position: relative;
}
.float-label {
  position: absolute;
  top: -9px;
  left: 14px;
  background: #fff;
  padding: 0 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ll-color-primary);
  display: none;
}
.float-label.visible {
  display: block;
}
.address-sub {
  text-align: center;
  color: var(--ll-color-primary);
  font-weight: 600;
  margin-bottom: 22px;
}
.geo-line {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--ll-color-text-secondary);
  font-weight: 500;
}
.geo-text {
  margin-right: 6px;
}
.geo-change {
  color: var(--ll-color-primary);
  text-decoration: none;
  font-weight: 600;
}
.geo-change:hover {
  text-decoration: underline;
}
.geo-edit-slot:empty {
  display: none;
}
.geo-edit > .contact-field + .contact-field {
  margin-top: 14px;
}
.geo-edit {
  margin-top: 14px;
}
.state-select {
  padding: 14px 14px;
  font-size: 1rem;
  border: 2px solid #ddd;
}
.state-select:focus {
  border-color: var(--ll-color-primary);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.12);
}
.input-readonly {
  background: #f5f6f7;
  color: var(--ll-color-text-secondary);
  cursor: default;
}
.zip-note {
  font-size: 0.72rem;
  color: var(--ll-color-text-secondary);
  margin-top: 5px;
}
.zip-note a {
  color: var(--ll-color-primary);
  font-weight: 600;
  text-decoration: none;
}
.zip-note a:hover {
  text-decoration: underline;
}
.error-msg {
  font-size: 0.75rem;
  color: var(--ll-color-error);
  margin-top: 4px;
  display: none;
}
.matched-header {
  text-align: center;
  margin-bottom: 20px;
}
.matched-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ll-color-text-primary);
  margin-bottom: 12px;
}
.matched-badge {
  display: inline-block;
  background: linear-gradient(135deg, #0b4a8a, #1a73e8);
  color: #fff;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.takes-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: var(--ll-color-primary);
  font-weight: 600;
}
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--ll-color-text-secondary);
  font-weight: 500;
}
.disclaimer {
  font-size: 0.7rem;
  color: #999;
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}
.disclaimer a {
  color: var(--ll-color-primary);
  text-decoration: underline;
}
.footer {
  background: #fff;
  padding: 16px 24px;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  margin-top: auto;
}
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-text {
  font-size: 0.8rem;
  color: var(--ll-color-text-secondary);
}
.footer-link {
  font-size: 0.8rem;
  color: var(--ll-color-text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover {
  color: var(--ll-color-primary);
}
.footer-sep {
  color: #ddd;
  font-size: 0.75rem;
}
.loading-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.92);
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.loading-overlay.show {
  display: flex;
}
.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #e0e0e0;
  border-top-color: var(--ll-color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.loading-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ll-color-text-primary);
}
.loading-sub {
  font-size: 0.9rem;
  color: var(--ll-color-text-secondary);
}
.success-screen {
  text-align: center;
  padding: 20px 0;
}
.success-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}
.success-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ll-color-success);
  margin-bottom: 8px;
}
.success-msg {
  font-size: 1rem;
  color: var(--ll-color-text-secondary);
  line-height: 1.6;
}
#sa1fd {
  margin-top: 14px;
}
@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (min-width: 577px) and (max-width: 1024px) {
  .hero-heading {
    font-size: 2.2rem;
  }
}
@media (max-width: 576px) {
  .hero-heading {
    font-size: 1.7rem;
  }
  .hero-sub {
    font-size: 0.95rem;
  }
  .form-card {
    padding: 24px 20px;
  }
  .zip-row {
    flex-direction: column;
  }
  .option-grid {
    grid-template-columns: 1fr;
  }
  .contact-row {
    grid-template-columns: 1fr;
  }
  .trust-bar {
    gap: 12px;
  }
  .logo-text {
    font-size: 1.1rem;
  }
  .step-title {
    font-size: 1.25rem;
  }
  .slider-display {
    font-size: 1.5rem;
  }
}
