.bcp{
  --pink:#F35588;
  --teal:#20B2AA;
  --navy:#10283a;
  --text:#10283a;
  --muted:#64748b;
  --border:#e5edf4;
  --white:#ffffff;
  --shadow-xl:0 24px 60px rgba(16,40,58,0.08);
  --shadow-md:0 12px 28px rgba(16,40,58,0.06);
  width:100%;
  padding:0;
  background:transparent;
  color:var(--text);
}
.bcp,
.bcp *{
  box-sizing:border-box;
}
.bcp__section{
  position:relative;
  width:100%;
  margin:0 auto;
  overflow:hidden;
  border:1px solid #f3d8e2;
  border-radius:30px;
  background:var(--white);
  box-shadow:var(--shadow-xl);
}
.bcp__surface{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(760px 260px at 0% 0%, rgba(243,85,136,0.08), transparent 60%),
    radial-gradient(520px 220px at 100% 0%, rgba(32,178,170,0.08), transparent 56%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,1));
}
.bcp__bgGlow{
  position:absolute;
  pointer-events:none;
  border-radius:999px;
  filter:blur(32px);
}
.bcp__bgGlow--pink{
  top:-32px;
  left:-32px;
  width:144px;
  height:144px;
  background:rgba(253,226,234,0.7);
}
.bcp__bgGlow--teal{
  top:0;
  right:0;
  width:128px;
  height:128px;
  background:rgba(204,248,245,0.6);
}
.bcp__inner{
  position:relative;
  z-index:1;
  padding:20px;
}
.bcp__hero{
  display:block;
}
.bcp__heroTop{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
}
.bcp__heroMark{
  width:56px;
  height:56px;
  flex:0 0 auto;
}
.bcp__mark{
  position:relative;
  display:inline-block;
}
.bcp__markOuter,
.bcp__markInner,
.bcp__markCore{
  position:absolute;
  border-radius:999px;
}
.bcp__markOuter{
  inset:0;
  border:10px solid var(--teal);
  border-right-color:transparent;
  border-bottom-color:transparent;
  transform:rotate(18deg);
  opacity:.9;
}
.bcp__markInner{
  inset:22%;
  border:8px solid var(--pink);
  border-left-color:transparent;
  border-top-color:transparent;
  transform:rotate(-14deg);
  opacity:.9;
}
.bcp__markCore{
  left:50%;
  top:50%;
  width:28%;
  height:28%;
  transform:translate(-50%,-50%);
  background:var(--pink);
  box-shadow:0 0 0 6px rgba(243,85,136,.14);
}
.bcp__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:4px 12px;
  border-radius:999px;
  border:1px solid #fbcfe0;
  background:#fdf2f7;
  color:#be185d;
  font-size:11px;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.bcp__title{
  margin:12px 0 0;
  color:#0f172a;
  font-size:1.9rem;
  line-height:1.08;
  letter-spacing:-.04em;
  font-weight:900;
  text-align:center;
}
.bcp__subtitle{
  max-width:700px;
  margin:10px auto 0;
  color:#64748b;
  font-size:.96rem;
  line-height:1.62;
  text-align:center;
}
.bcp__controls{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  align-items:start;
  margin:22px auto 0;
  max-width:720px;
}
.bcp__control{
  border:1px solid #e8eef4;
  border-radius:20px;
  background:linear-gradient(180deg,#ffffff,#fbfdff);
  padding:14px 14px 12px;
  box-shadow:0 10px 24px rgba(16,40,58,0.05);
  text-align:center;
}
.bcp__controlLabel{
  font-size:10px;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#64748b;
}
.bcp__controlNote{
  margin:10px auto 0;
  color:#64748b;
  font-size:12px;
  line-height:1.6;
  max-width:30ch;
}
.bcp__segmented{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:6px;
  margin:10px auto 0;
  padding:5px;
  max-width:270px;
  border-radius:16px;
  background:#f4f8fb;
  border:1px solid #e7eef4;
  box-shadow:inset 0 1px 1px rgba(16,40,58,0.03);
}
.bcp__segmentedButton{
  border:0;
  border-radius:12px;
  background:transparent;
  color:#5f7285;
  padding:11px 12px;
  font-size:13px;
  font-weight:900;
  cursor:pointer;
  transition:background-color .18s ease,color .18s ease,box-shadow .18s ease,transform .18s ease;
}
.bcp__segmentedButton:hover{
  background:rgba(255,255,255,.8);
}
.bcp__segmentedButton.is-active{
  color:#fff;
  transform:translateY(-1px);
}
.bcp__segmentedButton.is-active[data-accent='teal']{
  background:linear-gradient(180deg,#24c1b9,#20B2AA);
  box-shadow:0 10px 22px rgba(32,178,170,.22);
}
.bcp__segmentedButton.is-active[data-accent='pink']{
  background:linear-gradient(180deg,#f76a98,#F35588);
  box-shadow:0 10px 22px rgba(243,85,136,.22);
}
.bcp__cardsWrap{
  position:relative;
  margin-top:18px;
}
.bcp__grid{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.bcp__card{
  position:relative;
  width:100%;
  padding:0;
  border:1px solid #cfdbe6;
  border-radius:22px;
  background:#fff;
  text-align:left;
  color:var(--text);
  cursor:pointer;
  overflow:hidden;
  transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease, background-color .18s ease;
  box-shadow:0 8px 20px rgba(16,40,58,0.04);
}
.bcp__card:hover{
  transform:translateY(-3px);
}
.bcp__card.is-selected{
  border-color:#f29ab7;
  background:#f8c8d7;
  box-shadow:0 16px 34px rgba(243,85,136,0.14);
}
.bcp__card.is-featured:not(.is-selected){
  border-color:#e8eef4;
}
.bcp__cardGlow{
  display:none;
}
.bcp__cardInner{
  position:relative;
  display:grid;
  grid-template-rows:minmax(72px,auto) auto minmax(72px,auto) 1fr auto;
  height:100%;
  gap:12px;
  padding:16px;
}
.bcp__cardHead{
  position:relative;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  gap:8px;
  min-height:72px;
}
.bcp__cardIdentity{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  min-width:0;
  width:100%;
  text-align:center;
}
.bcp__iconWrap{
  position:relative;
  width:40px;
  height:40px;
  flex:0 0 auto;
}
.bcp__iconMark{
  position:absolute;
  inset:0;
  opacity:.18;
}
.bcp__iconShell{
  position:absolute;
  inset:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid;
  background:#fff;
}
.bcp__iconShell svg{
  width:14px;
  height:14px;
}
.bcp__card[data-accent='pink'] .bcp__iconShell{
  border-color:#fbcfe0;
  background:#fdf2f7;
  color:#db2777;
}
.bcp__card[data-accent='navy'] .bcp__iconShell{
  border-color:#d9e4ee;
  background:#f4f7fa;
  color:#475569;
}
.bcp__card[data-accent='teal'] .bcp__iconShell{
  border-color:#b9efe8;
  background:#f1fcfa;
  color:#0f766e;
}
.bcp__titleWrap{
  display:flex;
  flex:1 1 auto;
  flex-direction:column;
  align-items:center;
  min-width:0;
  padding-top:0;
  text-align:center;
}
.bcp__planName{
  color:#0f172a;
  font-size:17px;
  line-height:1.12;
  font-weight:900;
  letter-spacing:-.02em;
}
.bcp__planSubtitle{
  margin-top:4px;
  color:#64748b;
  font-size:12px;
  line-height:1.45;
  max-width:18ch;
  text-align:center;
}
.bcp__selectDot{
  position:absolute;
  top:0;
  right:0;
  display:flex;
  align-items:center;
  justify-content:center;
  width:20px;
  height:20px;
  border:2px solid #d6e0e9;
  border-radius:999px;
  background:#fff;
  transition:border-color .18s ease,background-color .18s ease,box-shadow .18s ease;
  flex:0 0 auto;
  margin-top:0;
}
.bcp__selectDotIcon{
  opacity:0;
  color:#fff;
  font-size:12px;
  line-height:1;
  font-weight:900;
}
.bcp__card.is-selected .bcp__selectDot{
  border-color:var(--pink);
  background:var(--pink);
  box-shadow:0 0 0 4px rgba(243,85,136,0.10);
}
.bcp__card.is-selected .bcp__selectDotIcon{
  opacity:1;
}
.bcp__priceCard{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  margin-top:0;
  border-radius:16px;
  border:1px solid #edf2f6;
  background:#fbfdff;
  padding:12px 14px;
  box-shadow:none;
  text-align:center;
}
.bcp__priceLabel{
  color:#64748b;
  font-size:9px;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  text-align:center;
}
.bcp__priceRow{
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:4px;
  margin-top:6px;
  color:#0f172a;
  width:100%;
  text-align:center;
}
.bcp__currency{
  font-size:14px;
  font-weight:800;
}
.bcp__priceMajor{
  font-size:30px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.05em;
}
.bcp__priceMinor{
  padding-bottom:3px;
  font-size:11px;
  font-weight:900;
  color:#64748b;
}
.bcp__priceSuffix{
  margin-left:4px;
  padding-bottom:3px;
  font-size:10px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#64748b;
}
.bcp__description{
  min-height:70px;
  margin-top:0;
  color:#64748b;
  font-size:13px;
  line-height:1.55;
}
.bcp__features{
  list-style:none;
  margin:0;
  padding:12px 0 0;
  border-top:1px solid #edf2f6;
}
.bcp__features li{
  display:flex;
  align-items:flex-start;
  gap:8px;
  margin-top:8px;
  color:#334155;
  font-size:13px;
  line-height:1.45;
}
.bcp__features li:first-child{
  margin-top:0;
}
.bcp__featureTick{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:16px;
  height:16px;
  border-radius:999px;
  background:#fdf2f7;
  color:#db2777;
  font-size:10px;
  font-weight:900;
  flex:0 0 auto;
  margin-top:1px;
}
.bcp__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 0;
    padding: 11px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    transition:
        background-color .18s ease,
        border-color .18s ease,
        color .18s ease,
        box-shadow .18s ease,
        transform .18s ease;
    background: #fff;
    color: #0f172a;
    border: 1px solid #dbe6ee;
}

.bcp__button:hover {
    transform: translateY(-1px);
    background: #294F6D;
    color: #fff;
    border-color: #294F6D;
}

.bcp__button:hover .bcp__buttonIcon {
    background: rgba(255, 255, 255, 0.16);
}

.bcp__buttonIcon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #f3f7fa;
    font-size: 14px;
    line-height: 1;
}

.bcp__card.is-selected .bcp__button {
    background: var(--pink);
    color: #fff;
    border-color: var(--pink);
    box-shadow: none;
}

.bcp__card.is-selected .bcp__button:hover {
    background: #294F6D;
    color: #fff;
    border-color: #294F6D;
}

.bcp__card.is-selected .bcp__buttonIcon {
    background: rgba(255, 255, 255, 0.16);
}

.bcp__card[data-accent='teal']:not(.is-selected) .bcp__button {
    border-color: #cfe6e2;
}

.bcp__card[data-accent='navy']:not(.is-selected) .bcp__button {
    border-color: #d8e3eb;
}

.bcp__card[data-accent='pink']:not(.is-selected) .bcp__button {
    border-color: #f5d6e3;
}
@media (max-width:1100px){
  .bcp__grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .bcp__controls{
    grid-template-columns:1fr;
    max-width:none;
  }
}

@media (max-width:767px){
  .bcp__inner{
    padding:18px;
  }
  .bcp__title{
    font-size:1.7rem;
  }
  .bcp__heroTop{
    align-items:flex-start;
  }
  .bcp__heroMark{
    width:48px;
    height:48px;
  }
  .bcp__segmentedButton{
    min-width:0;
  }
  .bcp__grid{
    grid-template-columns:1fr;
  }
  .bcp__description{
    min-height:0;
  }
  .bcp__planName{
    font-size:17px;
  }
  .bcp__controlNote{
    max-width:none;
  }
}

@media (max-width:640px){
  .bcp__control{
    padding:16px;
  }
  .bcp__segmented{
    gap:6px;
  }
  .bcp__segmentedButton{
    flex:1 1 100%;
  }
}