.bc-solupage {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  color: #111;
  background: #fff;
  font-family: inherit;
}
.bc-solupage * { box-sizing: border-box; }

.bc-container{
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.bc-section{ padding: 72px 0; }
.bc-muted{ opacity: .75; }

.bc-grid{ display: grid; gap: 28px; }
.bc-2col{ grid-template-columns: 1.1fr .9fr; align-items: center; }
.bc-3col{ grid-template-columns: repeat(3, 1fr); }
.bc-4col{ grid-template-columns: repeat(4, 1fr); }

.bc-divider{ height: 1px; background: rgba(0,0,0,.10); }

.bc-badgebar{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.bc-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 999px;
  font-size: 14px;
  background: rgba(0,0,0,.03);
}

.bc-card{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 18px;
  padding: 22px;
  background: #fff;
}
.bc-card h3{
  margin: 0 0 10px 0;
  font-size: 20px;
  line-height: 1.2;
}
.bc-card p{
  margin: 0;
  line-height: 1.65;
}

.bc-hero{
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,0));
}
.bc-hero h1{
  margin: 0 0 14px 0;
  line-height: 1.02;
  font-size: clamp(36px, 4.2vw, 62px);
}
.bc-hero p{
  margin: 0 0 18px 0;
  line-height: 1.7;
  font-size: clamp(16px, 1.15vw, 18px);
  max-width: 700px;
}
.bc-hero-media{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.03);
}
.bc-hero-media img{
  width: 100%;
  height: auto;
  display: block;
}

.bc-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.bc-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid rgba(0,0,0,.10);
  transition: transform .12s ease, opacity .12s ease, background .12s ease;
}
.bc-btn:hover{
  transform: translateY(-1px);
  opacity: .94;
}
.bc-btn-primary{
  background: #111;
  color: #fff;
}
.bc-btn-ghost{
  background: rgba(0,0,0,.03);
  color: #111;
}
.bc-icon{
  width: 18px;
  height: 18px;
  display: inline-block;
}

.bc-list{
  list-style: none;
  padding: 0;
  margin: 18px 0 0 0;
  display: grid;
  gap: 14px;
}
.bc-li{
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
}
.bc-li svg{
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.bc-pack-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.bc-pack{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 18px;
  padding: 22px;
  background: #fff;
}
.bc-pack h3{
  margin: 0 0 8px 0;
  font-size: 22px;
}
.bc-price{
  display: inline-block;
  margin-bottom: 12px;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}
.bc-pack ul{
  margin: 0;
  padding-left: 18px;
  line-height: 1.7;
}
.bc-pack li + li{ margin-top: 4px; }

.bc-table-wrap{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}
.bc-table-head{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
  padding: 16px 18px;
  background: rgba(0,0,0,.04);
  font-weight: 800;
}
.bc-table-row{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
  padding: 16px 18px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.bc-table-row strong{
  display: block;
  margin-bottom: 4px;
}
.bc-table-row span{
  display: block;
  opacity: .8;
  line-height: 1.55;
}
.bc-table-price{
  font-weight: 800;
  white-space: nowrap;
}

.bc-category{
  margin-top: 26px;
}
.bc-category:first-child{ margin-top: 0; }
.bc-category h3{
  margin: 0 0 14px 0;
  font-size: 28px;
}
.bc-category-note{
  margin: 0 0 20px 0;
  opacity: .75;
  line-height: 1.6;
}

.bc-faq details{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  padding: 16px 18px;
  background: #fff;
}
.bc-faq details + details{ margin-top: 12px; }
.bc-faq summary{
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}
.bc-faq summary::-webkit-details-marker{ display: none; }
.bc-faq p{
  margin: 10px 0 0 0;
  line-height: 1.7;
}

.bc-cta{
  background: rgba(0,0,0,.03);
}

.bc-mini{
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1100px){
  .bc-2col,
  .bc-3col,
  .bc-4col,
  .bc-pack-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px){
  .bc-section{ padding: 56px 0; }
  .bc-hero{ min-height: auto; }
  .bc-table-head,
  .bc-table-row{
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
