.bp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
}

.bp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.bp-header-left h2 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  display: inline-block;
  margin-right: 8px;
}

.bp-breadcrumb {
  font-size: 11px;
  color: #6b7280;
  display: inline-block;
}

.bp-breadcrumb a {
  color: #6b7280;
  text-decoration: none;
}

.bp-breadcrumb a:hover {
  text-decoration: underline;
}

.bp-btn-outline {
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: 0.2s;
  width: 100%;
}

.bp-btn-outline:hover {
  background: #f9fafb;
}

.bp-btn-primary {
  background: #3b82f6;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
  width: 100%;
}

.bp-btn-primary:hover {
  background: #2563eb;
}

/* Pricing Table */
.bp-pricing-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  overflow-x: auto; /* For horizontal scrolling on small screens */
}

.bp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px; /* Force minimum width to prevent squishing */
}

.bp-table th, .bp-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: top;
}

.bp-table tr:last-child td {
  border-bottom: none;
}

/* Feature Column */
.bp-feature-col {
  width: 20%;
  border-right: 1px solid #f3f4f6;
  background: #fafafa;
}

.bp-table td:first-child {
  font-size: 11px;
  font-weight: 600;
  color: #374151;
  background: #fafafa;
}

/* Plan Columns */
.bp-plan-col {
  width: 20%;
}

.bp-plan-header {
  position: relative;
  padding-bottom: 16px;
}

.bp-badge-current {
  position: absolute;
  top: -10px;
  left: 0;
  background: #dcfce7;
  color: #166534;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

.bp-plan-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
  margin-top: 16px;
}

.bp-plan-desc {
  font-size: 10px;
  color: #6b7280;
  line-height: 1.4;
  margin-bottom: 16px;
  min-height: 28px;
}

.bp-plan-price {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.bp-plan-price span {
  font-size: 10px;
  font-weight: 400;
  color: #6b7280;
}

/* Table cells content */
.bp-table td {
  font-size: 11px;
  color: #4b5563;
}

.bp-check {
  color: #22c55e;
  font-size: 14px;
}

/* Toggle Switch */
.bp-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #111827;
  margin-top: 32px;
}

.toggle {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 18px;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle span {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #3b82f6;
  transition: .2s;
  border-radius: 18px;
}

.toggle span:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: .2s;
  border-radius: 50%;
}

.toggle input:checked + span {
  background-color: #3b82f6;
}

.toggle input:checked + span:before {
  transform: translateX(14px);
}

/* FAQ Section */
.bp-faq-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.bp-faq-title {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.bp-faq-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #f3f4f6;
  cursor: pointer;
}

.bp-faq-item:last-child {
  border-bottom: none;
}

.bp-faq-q {
  font-size: 12px;
  font-weight: 500;
  color: #374151;
}

.bp-faq-icon {
  color: #9ca3af;
  font-size: 14px;
  transition: transform 0.2s;
}

.bp-faq-item:hover .bp-faq-q {
  color: #111827;
}

.bp-faq-item:hover .bp-faq-icon {
  color: #111827;
}

/* Two Column Grid */
.bp-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .bp-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Illustration Cards */
.bp-illus-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  min-height: 180px;
}

.bp-illus-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.bp-illus-card p {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 55%;
}

.bp-illus-card a {
  font-size: 10px;
  font-weight: 700;
  color: #3b82f6;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: auto;
}

.bp-illus-card a:hover {
  text-decoration: underline;
}

.bp-illus-img {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 140px;
  height: auto;
}
