/* ===== AmeriBest Quote (scoped) ===== */
.abq-wrap{
  --abq-blue:#1c6fb8;
  --abq-blue-2:#155a93;
  --abq-accent:#ff0202;
  --abq-text:#ffffff;
  --abq-muted:#e6eef8;
  --abq-card:#2571b8;
  --abq-card-txt:#fff;
  --abq-ring:rgba(255,255,255,.45);
  --abq-radius:14px;
  --abq-shadow:0 18px 50px rgba(0,0,0,.35);

  color:var(--abq-text);
  background: #0f172a;
  background-image: var(--abq-hero);
  background-size: cover;
  background-position: center;
  position: relative;
  isolation: isolate;
  padding: clamp(24px, 6vw, 48px) 0;
}
.abq-wrap::after{
  /* darken for readability */
  content:"";
  position:absolute; inset:0;
  background: rgba(0,0,0,.35);
  z-index:0;
}

.abq-container{
  width:100%;
  max-width:1400px;
  margin:0 auto;
  padding:0 16px;
  position:relative; z-index:1;

  display:grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 4vw, 40px);
  align-items: start;
  margin-top: 80px;
  margin-bottom: 80px;
}

/* Desktop split */
@media (min-width: 960px){
  .abq-container{
    grid-template-columns: 1.1fr .9fr;
  }
}

.abq-col{ min-width:0; }

/* LEFT COPY */
.abq-copy h1{
  margin:0 0 16px 0;
  line-height:1.05;
  font-weight:800;
  font-size: 50px;
  letter-spacing:.2px;
}

.lead {
font-size:17px;
  line-height: 27px;
  font-weight: 700;

}
.bullets {
font-size: 17px;
 line-height: 27px;
 margin-left: 35px;
 margin-top: 14px;
 font-weight: 700;
}
.abq-btn{
  display:inline-block;
  background: transparent;
  color:#fff;
  border:0;
  border-radius:999px;
  padding:12px 20px;
  font-weight:700;
  line-height:1;
  cursor:pointer;
  text-decoration:none;
  margin-top: 25px;
  border: 1px solid #ffffff;
  box-shadow:0 6px 18px rgba(0,0,0,.25);
  transition: transform .15s ease, background .15s ease;
}
.abq-btn:hover{ transform: translateY(-1px); background:#2a7fce; }
.abq-btn:focus{ outline:2px solid var(--abq-ring); outline-offset:2px; }
.abq-btn.abq-muted{ background:#6689b7; }

/* RIGHT CARD */
.abq-card{
  justify-self: end;
  width:100%;
  max-width:560px;
}
@media (max-width: 959.98px){
  .abq-card{ justify-self: stretch; }
}
.abq-card-inner{
  background: var(--abq-card);
  color: var(--abq-card-txt);
  border-radius: var(--abq-radius);
  box-shadow: var(--abq-shadow);
  border:1px solid rgba(255,255,255,.2);
  padding: clamp(18px, 3.5vw, 28px);
}
.abq-card-title{
  margin:0 0 6px 0;
  font-size: clamp(18px, 2.4vw, 26px);
}
.abq-card-sub{
  margin:0 0 18px 0;
  opacity:.95;
  font-size:14px;
}

/* Form */
.abq-form{ display:block; }
.abq-label{ display:block; font-size:14px; margin-bottom:10px; }
.abq-input{
  appearance:none;
  width:100%;
  margin-top:12px;
  padding:18px 14px;
  border-radius:10px;
  border:3px solid rgba(255,255,255,.25);
  background: rgb(37 113 184);
  color:#fff;
  outline: none;
}
.abq-input::placeholder{ color:#e1e7f5; opacity:.85; }
.abq-input:focus{ box-shadow:0 0 0 4px var(--abq-ring); }

.abq-hp{ position:absolute; left:-9999px; width:1px; height:1px; opacity:0; }

/* Steps */
.abq-step{ display:none; }
.abq-step.is-active{ display:block; }

.abq-actions{
  display:flex; gap:10px; justify-content:flex-end; margin-top:12px;
}

/* Progress */
.abq-progress{
  position:relative;
  height:36px;
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  margin-top:16px;
  border:1px solid rgba(0,0,0,.1);
}
.abq-progress-bar{
  height:100%;
  background: linear-gradient(90deg, #2a86e6, #61a4f0);
  width:0%;
  transition: width .25s ease;
}
.abq-progress-pct{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  color:#0b1e33; font-weight:700;
}

/* Status message */
.abq-status{ margin:10px 0; min-height:20px; font-size:14px; }
.abq-status.error{ color:#ffe1e1; }
.abq-status.ok{ color:#eaffea; }
