/* Boiler Cover Plans (BCP) — standalone, no Tailwind required */

.bcp {
  --bg: #193566;
  --bgDeep: #0f2446;

  --surface: rgba(255,255,255,0.07);
  --surface2: rgba(255,255,255,0.10);

  --stroke: rgba(255,255,255,0.14);
  --strokeSoft: rgba(255,255,255,0.10);

  --muted: rgba(255,255,255,0.72);
  --muted2: rgba(255,255,255,0.58);

  /* Accent */
  --accentFrom: #f97316;
  --accentTo: #fdba74;

  position: relative;
  overflow: hidden;
  color: #fff !important;
  background:
    radial-gradient(900px 520px at 18% 8%, rgba(255,255,255,0.12), rgba(255,255,255,0)),
    linear-gradient(180deg, var(--bg), var(--bgDeep)) !important;
}

/* SVG sprite hidden */
.bcp__sprite { position:absolute; width:0; height:0; overflow:hidden; }

/* Icon used in bullets */
.bcp__iconUse { width:16px; height:16px; display:block; }

.bcp, .bcp * { box-sizing: border-box; }

/* Hardening against theme */
.bcp button {
  font: inherit !important;
  letter-spacing: inherit !important;
  text-transform: none !important;
}
.bcp h1, .bcp h2, .bcp h3, .bcp p { margin: 0; }

.bcp__fx{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(520px 520px at -120px -120px, rgba(56,189,248,0.12), transparent 60%),
    radial-gradient(560px 560px at calc(100% + 260px) 40px, rgba(249,115,22,0.12), transparent 60%),
    linear-gradient(180deg, transparent, rgba(0,0,0,0.10), rgba(0,0,0,0.35));
}
.bcp__fx::after{
  content:"";
  position:absolute;
  inset:0;
  opacity:0.30;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.10) 1px, transparent 0);
  background-size:18px 18px;
}

.bcp__inner{
  position:relative;
  margin:0 auto;
  max-width:1192px;
  padding:60px 24px 60px;
}

.bcp__header{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  text-align:center;
}
@media (min-width:768px){
  .bcp__header{ flex-direction:row; align-items:flex-end; text-align:left; }
}

.bcp__kicker{
  font-weight:800;
  letter-spacing:0.18em;
  font-size:12px;
  color:rgba(255,255,255,0.70);
}
.bcp__title{
  margin-top:8px;
  font-weight:900;
  letter-spacing:-0.02em;
  line-height:1.1;
  font-size:30px;
}
@media (min-width:640px){ .bcp__title{ font-size:36px; } }

.bcp__subtitle{
  margin-top:12px;
  font-weight:600;
  font-size:14px;
  color:var(--muted);
}

.bcp__controls{
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:center;
}
@media (min-width:768px){ .bcp__controls{ align-items:flex-end; } }

/* Toggle */
.bcp__toggle{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:10px 12px;
  border-radius:999px !important;
  border:1px solid var(--stroke) !important;
  background:var(--surface) !important;
  box-shadow:0 18px 60px rgba(0,0,0,0.30) !important;
}
.bcp__toggleTitle{
  font-size:12px;
  font-weight:900;
  letter-spacing:0.04em;
  color:rgba(255,255,255,0.85);
  margin-right:4px;
}
.bcp__toggleLabel{
  font-size:12px;
  font-weight:900;
  color:rgba(255,255,255,0.60);
}
.bcp__toggleLabel--left{ color:rgba(255,255,255,1); }

.bcp__toggleSwitch{
  width:44px !important;
  height:24px !important;
  border-radius:999px !important;
  border:0 !important;
  background:rgba(255,255,255,0.20) !important;
  position:relative !important;
  cursor:pointer !important;
  outline:none !important;
  padding:0 !important;
  margin:0 !important;
  -webkit-appearance:none !important;
  appearance:none !important;
}
.bcp__toggleSwitch:focus-visible{
  box-shadow:0 0 0 3px rgba(249,115,22,0.28) !important;
}
.bcp__toggleKnob{
  width:20px;
  height:20px;
  border-radius:999px;
  background:#fff;
  position:absolute;
  top:2px;
  left:2px;
  transition:transform 180ms ease;
  box-shadow:0 6px 18px rgba(0,0,0,0.25);
}

/* Fee-free state (£0) */
.bcp.is-fee-free .bcp__toggleSwitch{ background: var(--accentFrom) !important; }
.bcp.is-fee-free .bcp__toggleKnob{ transform: translateX(20px); }
.bcp.is-fee-free .bcp__toggleLabel--left{ color: rgba(255,255,255,0.60); }
.bcp.is-fee-free .bcp__toggleLabel--right{ color: rgba(255,255,255,1); }

.bcp__meta{
  font-size:12px;
  font-weight:700;
  color:var(--muted2);
}
.bcp__meta strong{ color: rgba(255,255,255,0.88); font-weight:900; }
.bcp__dot{ margin:0 8px; opacity:0.7; }

/* Grid: 1 col -> 2 col md -> 4 col xl */
.bcp__grid{
  margin-top:32px;
  display:grid;
  gap:20px;
  justify-items:center;
}
@media (min-width:768px){
  .bcp__grid{
    justify-items:stretch;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap:24px;
  }
}
@media (min-width:1280px){
  .bcp__grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap:20px;
  }
}

/* Card */
.bcp__card{
  width:100% !important;
  max-width:360px !important;
  display:block !important;
  text-align:left !important;

  border-radius:24px !important;
  border:1px solid var(--strokeSoft) !important;
  background: var(--surface) !important;

  padding:0 !important;
  margin:0 auto !important;

  cursor:pointer !important;
  outline:none !important;

  box-shadow:0 14px 56px rgba(0,0,0,0.30) !important;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease !important;

  color:#fff !important;
}
@media (min-width:768px){ .bcp__card{ max-width:none !important; } }
@media (max-width:420px){ .bcp__card{ max-width:320px !important; } }

.bcp__card:hover{
  transform: translateY(-2px) !important;
  box-shadow:0 18px 70px rgba(0,0,0,0.38) !important;
  border-color: rgba(255,255,255,0.16) !important;
}

.bcp__card.is-selected{
  border:2px solid rgba(249,115,22,0.55) !important;
  box-shadow:0 24px 84px rgba(0,0,0,0.45) !important;
}

.bcp__card--featured{
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06)) !important;
  border-color: rgba(255,255,255,0.16) !important;
  box-shadow:0 24px 84px rgba(0,0,0,0.45) !important;
  transform: translateY(-6px);
}
@media (max-width:767px){ .bcp__card--featured{ transform:none; } }

.bcp__cardInner{ padding:20px; }
@media (min-width:640px){ .bcp__cardInner{ padding:24px; } }

.bcp__cardTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}

.bcp__nameBlock{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}
.bcp__nameDot{
  width:10px;
  height:10px;
  border-radius:999px;
  background: linear-gradient(90deg, var(--accentFrom), var(--accentTo));
  box-shadow:0 0 0 5px rgba(249,115,22,0.12);
  flex:0 0 auto;
}
.bcp__planName{
  font-weight:900;
  letter-spacing:-0.01em;
  font-size:18px;
  line-height:1.2;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
@media (min-width:640px){ .bcp__planName{ font-size:20px; } }

/* Sub-row (pill + optional badge) to avoid overlap in 4-col */
.bcp__subRow{
  margin-top:10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}

.bcp__planSub{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border-radius:999px;
  padding:6px 12px;
  border:1px solid var(--strokeSoft);
  background: rgba(0,0,0,0.18);
  color: rgba(255,255,255,0.82);
  font-size:11px;
  font-weight:900;
}

.bcp__badge{
  margin-left:auto;
  display:inline-flex;
  align-items:center;
  gap:8px;
  border-radius:999px;
  padding:6px 12px;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:0.06em;
  color:#111;
  background: linear-gradient(90deg, var(--accentFrom), var(--accentTo));
  border:1px solid rgba(0,0,0,0.10);
  box-shadow:0 14px 34px rgba(0,0,0,0.28);
  white-space:nowrap;
}
.bcp__badgeIcon{ font-size:14px; line-height:1; }

.bcp__icon{ width:16px; height:16px; display:inline-flex; align-items:center; justify-content:center; }
.bcp__icon svg{ width:16px; height:16px; display:block; }
.bcp__icon--sm svg{ width:14px; height:14px; }

/* Money capsule */
.bcp__money{
  margin-top:18px;
  position:relative;
  width:100%;
  max-width:270px;
  margin-left:auto;
  margin-right:auto;
  border-radius:16px;
  padding:12px 16px;
  border:1px solid var(--strokeSoft);
  background: rgba(255,255,255,0.06);
  box-shadow:0 18px 55px rgba(0,0,0,0.28);
  overflow:hidden;
}
.bcp__money::before{
  content:"";
  position:absolute;
  inset:0;
  opacity:0.70;
  background: radial-gradient(240px 140px at 18% 8%, rgba(249,115,22,0.18), transparent 62%);
  pointer-events:none;
}
.bcp__money::after{
  content:"";
  position:absolute;
  inset:0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16);
  pointer-events:none;
}
.bcp__moneyRow{
  position:relative;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:4px;
}
.bcp__priceCurrency{ font-size:16px; font-weight:800; color: rgba(255,255,255,0.90); }
.bcp__priceMajor{
  font-size:44px;
  font-weight:950;
  line-height:1;
  letter-spacing:-0.03em;
  background: linear-gradient(90deg, var(--accentFrom), var(--accentTo));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
  text-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.bcp__priceMinor{ padding-bottom:4px; font-size:14px; font-weight:900; color: rgba(255,255,255,0.90); }
.bcp__priceSuffix{ padding-bottom:6px; font-size:11px; font-weight:900; color: rgba(255,255,255,0.70); }
.bcp__moneyNote{
  position:relative;
  margin-top:6px;
  text-align:center;
  font-size:10px;
  font-weight:700;
  color: rgba(255,255,255,0.55);
}

.bcp__rating{
  margin-top:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}
.bcp__ratingLabel{ font-size:11px; font-weight:800; color: var(--muted2); }
.bcp__star{ font-size:14px; line-height:1; opacity:0.25; }
.bcp__star.is-on{ opacity:1; }

.bcp__bullets{
  margin-top:18px;
  display:grid;
  gap:8px;
}
.bcp__bullet{
  display:flex;
  align-items:center;
  gap:10px;
  border-radius:16px;
  padding:8px 12px;
  border:1px solid var(--strokeSoft);
  background: rgba(0,0,0,0.14);
  font-size:14px;
  font-weight:500;
  color: rgba(255,255,255,0.85);
}

.bcp__cardCta{
  margin-top:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-radius:16px;
  padding:12px 16px;
  border:1px solid var(--strokeSoft);
  background: rgba(255,255,255,0.10);
  font-weight:900;
  font-size:14px;
  color:#fff;
}
.bcp__cardCtaIcon{
  width:32px;
  height:32px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,0.10);
  font-weight:950;
}
.bcp__cardCta--featured{
  color:#111;
  border-color: rgba(0,0,0,0.10);
  background: linear-gradient(90deg, var(--accentFrom), var(--accentTo));
}
.bcp__cardCtaIcon--featured{
  background: rgba(0,0,0,0.10);
  color:#111;
}

/* Extras */
.bcp__extras{ margin-top:48px; }

.bcp__extrasHead{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  text-align:center;
}
@media (min-width:640px){
  .bcp__extrasHead{ flex-direction:row; text-align:left; }
}

.bcp__extrasTitle{
  margin-top:6px;
  font-weight:950;
  font-size:14px;
  color: rgba(255,255,255,0.92);
}
.bcp__extrasMeta{
  font-size:12px;
  font-weight:900;
  color: var(--muted2);
}

.bcp__extrasGrid{
  margin-top:16px;
  display:grid;
  gap:12px;
}
@media (min-width:768px){
  .bcp__extrasGrid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.bcp__extra{
  width:100% !important;
  border-radius:18px !important;
  border:1px solid var(--strokeSoft) !important;
  background: var(--surface) !important;
  padding:14px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:12px !important;
  cursor:pointer !important;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease !important;
  box-shadow:0 14px 48px rgba(0,0,0,0.22) !important;
  outline:none !important;
  color:#fff !important;
}
.bcp__extra:hover{ border-color: rgba(255,255,255,0.18) !important; box-shadow:0 18px 60px rgba(0,0,0,0.28) !important; }
.bcp__extra.is-on{
  border-color: rgba(249,115,22,0.45) !important;
  background: rgba(249,115,22,0.08) !important;
}

.bcp__extraIcon{
  width:40px;
  height:40px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.18);
  font-weight:950;
}

.bcp__extraText{ flex:1 1 auto; min-width:0; }
.bcp__extraTitle{ display:block; font-weight:950; font-size:14px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.bcp__extraDesc{ display:block; margin-top:2px; font-weight:800; font-size:12px; color: var(--muted2); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }

.bcp__extraPill{
  font-weight:950;
  font-size:12px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--strokeSoft);
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.95);
  white-space:nowrap;
}
.bcp__extra.is-on .bcp__extraPill{
  color:#111;
  border-color: rgba(0,0,0,0.10);
  background: linear-gradient(90deg, var(--accentFrom), var(--accentTo));
}

/* =========================================
   BCP — Excluded / Not-included option styles
   ========================================= */

/* Apply to the whole bullet row when NOT included */
.bcp__bullet.is-unavailable {
  background: rgba(249,115,22,0.07) !important;
  border-color: rgba(249,115,22,0.22) !important;
  color: rgba(255,255,255,0.72) !important;
}

/* Icon container (covers your existing .bcp__check) */
.bcp__bullet.is-unavailable .bcp__check {
  background: rgba(249,115,22,0.10) !important;
  color: rgba(249,115,22,0.85) !important;
}

/* If you’re using SVG icons instead of the .bcp__check character */
.bcp__bullet.is-unavailable svg {
  color: rgba(249,115,22,0.80) !important;
  opacity: 1 !important;
}

/* Apply to the option label text when NOT included */
.bcp__excludedLabel {
  display: inline-block !important;
  padding: 1px 6px !important;
  border-radius: 6px !important;
  color: rgba(255,255,255,0.2) !important;
  font-weight: 700 !important;
}

/* Optional: small helper text/legend style (matches your new wording) */
.bcp__excludedLegendLine {
  height: 2px !important;
  width: 28px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,0.38) !important;
  box-shadow: 0 8px 18px rgba(0,0,0,0.18) !important;
}


.bcp__footer{
  margin-top:22px;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  justify-content:space-between;
  gap:12px;
}
@media (min-width:640px){
  .bcp__footer{ flex-direction:row; align-items:center; }
}

.bcp__note{ font-size:12px; font-weight:800; color: var(--muted2); }

.bcp__continue{
  border:1px solid rgba(0,0,0,0.10) !important;
  border-radius:999px !important;
  padding:12px 16px !important;
  font-weight:950 !important;
  font-size:14px !important;
  cursor:pointer !important;
  color:#111 !important;
  background: linear-gradient(90deg, var(--accentFrom), var(--accentTo)) !important;
  box-shadow:0 18px 55px rgba(0,0,0,0.35) !important;
  display:inline-flex !important;
  align-items:center !important;
  gap:10px !important;
}
.bcp__continueIcon{
  width:30px;
  height:30px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(0,0,0,0.10);
  font-weight:950;
}

/* Tooltip (Call Out Fee) */
.bcp__tipWrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bcp__tipBtn {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.80);

  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.bcp__tipBtn:hover {
  background: rgba(255,255,255,0.12);
}

.bcp__tipBtn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(249,115,22,0.28);
}

/* Solid tooltip bubble */
.bcp__tip {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  z-index: 50;

  width: 260px;
  padding: 10px 12px;
  border-radius: 16px;

  background: #0b1b34; /* solid background for readability */
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 55px rgba(0,0,0,0.38);

  color: rgba(255,255,255,0.90);
  font-size: 12px;
  font-weight: 700;
}

/* Optional: small arrow */
.bcp__tip::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 18px;
  width: 12px;
  height: 12px;
  background: #0b1b34;
  border-left: 1px solid rgba(255,255,255,0.14);
  border-top: 1px solid rgba(255,255,255,0.14);
  transform: rotate(45deg);
}

/* Boiler Cover PLans Results Styles */

 .bcr__container{
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px 24px;
  }

  .bcr__title{
    margin: 0;
    font-size: 28px;
    font-weight: 800;
  }

  .bcr__card{
    margin-top: 18px;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
  }

  .bcr__label{ font-weight: 800; margin-bottom: 10px; }
  .bcr__value{ font-weight: 600; }
  .bcr__muted{ opacity: 0.7; font-weight: 600; }
  .bcr__mt{ margin-top: 18px; }
  .bcr__list{ margin: 0; padding-left: 18px; }

  /* Full-bleed terms row (spans viewport width) */
  .bcr__termsRow{
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .bcr__termsInner{
    max-width: 1120px;
    margin: 0 auto;
    padding: 28px 24px 40px;
  }

  .bcr__termsTitle{
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 850;
  }

  /* Fixed height 60% viewport with overflow */
  .bcr__termsScroll{
    height: 60vh;
    overflow: auto;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #f9fafb;
  }

  .bcr__termsActions{
    margin-top: 16px;
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .bcr__agree{
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 700;
    line-height: 1.35;
  }

  .bcr__agreeInput{ margin-top: 3px; }

  .bcr__proceedBtn{
    border: 1px solid rgba(0,0,0,0.10);
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 900;
    cursor: pointer;
    background: #111827;
    color: #fff;
    box-shadow: 0 16px 44px rgba(0,0,0,0.16);
    transition: transform 140ms ease, opacity 140ms ease;
  }

  .bcr__proceedBtn:hover{ transform: translateY(-1px); }

  /* Disabled state: greyed out and not clickable */
  .bcr__proceedBtn[disabled]{
    opacity: 0.45;
    cursor: not-allowed;
    filter: grayscale(1);
    transform: none;
    box-shadow: none;
  }

