/* -------------------------------------------------------
   Frontier Boiler Cover Results (Wizard)
   Scoped to .bcr__* classes only.
-------------------------------------------------------- */

:root{
  /* Adjust to match your theme if needed */
  --bcr-navy: #163a64;           /* primary */
  --bcr-navy-2: #0f2f55;         /* hover */
  --bcr-bg: #f4f7fb;             /* page background tint */
  --bcr-card: #ffffff;           /* card background */
  --bcr-border: rgba(15, 47, 85, 0.12);
  --bcr-text: #0f172a;
  --bcr-muted: rgba(15, 23, 42, 0.68);
  --bcr-radius: 18px;
  --bcr-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

body .bcr__container,
body .bcr__journey {
  background: transparent;
}

/* Page rhythm */
.bcr__container{
  padding: 38px 16px 14px;
}

.bcr__journey{
  padding: 14px 16px 70px;
}

.bcr__journeyInner{
  max-width: 920px;       /* slightly wider like your homepage content width */
  margin: 0 auto;
}

/* Heading */
.bcr__title{
  text-align: center;
  margin: 0 0 20px;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--bcr-text);
}

/* Summary card (plan + total) */
.bcr__card{
  background: var(--bcr-card);
  border: 1px solid var(--bcr-border);
  border-radius: var(--bcr-radius);
  padding: 20px 22px;
  box-shadow: var(--bcr-shadow);
  max-width: 920px;
  margin: 0 auto;
}

.bcr__label{
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--bcr-muted);
  margin: 0;
}

.bcr__value{
  font-size: 16px;
  color: var(--bcr-text);
  margin-top: 6px;
}

.bcr__mt{ margin-top: 14px; }
.bcr__muted{ color: var(--bcr-muted); }

/* Wizard shell */
#bcrWizard form{
  margin-top: 24px;
  background: var(--bcr-card);
  border: 1px solid var(--bcr-border);
  border-radius: var(--bcr-radius);
  padding: 26px 26px 22px;
  box-shadow: var(--bcr-shadow);
}

/* Step pills (progress) */
.bcr__stepsMeta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 0 22px;
}

.bcr__stepsMeta [data-bcr-step-pill]{
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--bcr-border);
  background: rgba(22, 58, 100, 0.06);
  color: rgba(15, 23, 42, 0.72);
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
}

.bcr__stepsMeta [data-bcr-step-pill].is-active{
  background: var(--bcr-navy);
  border-color: var(--bcr-navy);
  color: #fff;
}

/* Step title */
.bcr__stepTitle{
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.25;
  color: var(--bcr-text);
  letter-spacing: -0.01em;
}

/* Form layout */
.bcr__grid2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 18px; /* more air between columns than your current */
}

@media (max-width: 760px){
  .bcr__journeyInner{ max-width: 560px; }
  .bcr__grid2{ grid-template-columns: 1fr; }
  #bcrWizard form{ padding: 20px 18px 18px; }
}

/* Fields */
.bcr__field{
  margin: 0 0 16px;
}

.bcr__field label{
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.88);
  margin: 0 0 8px;
}

.bcr__help{
  font-size: 13px;
  color: var(--bcr-muted);
  margin: -2px 0 10px;
}

.bcr__field input[type="text"],
.bcr__field input[type="email"],
.bcr__field input[type="tel"],
.bcr__field select,
.bcr__field textarea{
  width: 100%;
  border: 1px solid rgba(15, 47, 85, 0.18);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 15px;
  line-height: 1.35;
  background: #fff;
  color: var(--bcr-text);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.bcr__field textarea{
  min-height: 120px;
  resize: vertical;
}

.bcr__field input:focus,
.bcr__field select:focus,
.bcr__field textarea:focus{
  border-color: rgba(22, 58, 100, 0.55);
  box-shadow: 0 0 0 4px rgba(22, 58, 100, 0.14);
}

/* Choice groups */
.bcr__choiceGroup{
  display: grid;
  gap: 10px;
  padding: 12px 12px;
  border: 1px solid rgba(15, 47, 85, 0.12);
  border-radius: 14px;
  background: rgba(22, 58, 100, 0.04);
}

.bcr__choice{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  color: rgba(15, 23, 42, 0.90);
}

.bcr__choice input{ margin-top: 2px; }

/* Terms */
.bcr__termsScroll{
  border: 1px solid rgba(15, 47, 85, 0.12);
  border-radius: 14px;
  padding: 14px 14px;
  background: rgba(22, 58, 100, 0.03);
  max-height: 280px;
  overflow: auto;
}

.bcr__agree{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 14px 0 0;
  padding: 12px 12px;
  border: 1px solid rgba(15, 47, 85, 0.12);
  border-radius: 14px;
  background: rgba(22, 58, 100, 0.03);
}

.bcr__agreeInput{ margin-top: 3px; }

/* Hint text */
.bcr__hint{
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--bcr-muted);
}

/* Footer nav */
.bcr__nav{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 47, 85, 0.10);
}

.bcr__btn{
  appearance: none;
  border: 1px solid rgba(15, 47, 85, 0.18);
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .06s ease, box-shadow .15s ease, background .15s ease;
  min-width: 140px;
}

/* Primary */
.bcr__btn:not(.bcr__btn--ghost){
  background: var(--bcr-navy);
  color: #fff;
  border-color: rgba(22, 58, 100, 0.45);
}

.bcr__btn:not(.bcr__btn--ghost):hover{
  background: var(--bcr-navy-2);
  box-shadow: 0 14px 30px rgba(15, 47, 85, 0.18);
}

.bcr__btn:active{ transform: translateY(1px); }

/* Secondary */
.bcr__btn--ghost{
  background: #fff;
  color: var(--bcr-navy);
}

.bcr__btn--ghost:hover{
  box-shadow: 0 14px 30px rgba(15, 47, 85, 0.10);
}

/* Disabled */
.bcr__btn[disabled],
.bcr__btn[aria-disabled="true"]{
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

@media (max-width: 640px){
  .bcr__nav{
    flex-direction: column;
    align-items: stretch;
  }
  .bcr__btn{
    width: 100%;
    min-width: 0;
  }
}
