 .pricing-hero {
  background: linear-gradient(135deg, #5b46ff, #8d5bff);
  color: #fff;
  border-radius: 32px;
  padding: 3rem 2.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 20px 60px rgba(91, 70, 255, 0.25);
}

.pricing-hero .hero-actions .btn {
  min-width: 200px;
}

.pricing-hero .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.pricing-hero .hero-highlight {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-cards {
  margin-bottom: 3rem;
}

.plan-card {
  background: #fff;
  border-radius: 24px;
  padding: 1.75rem;
  height: 100%;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.plan-card--active {
  border-color: #5b46ff;
  box-shadow: 0 25px 50px rgba(91, 70, 255, 0.25);
}

.plan-card__badge {
  background: rgba(91, 70, 255, 0.1);
  color: #5b46ff;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.plan-card__badge--disabled {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.plan-card__price .price-main {
  display: block;
  font-size: 2rem;
  font-weight: 700;
}

.plan-card__price .price-period {
  font-size: 0.95rem;
  color: #6b7280;
}

.plan-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.plan-card__features li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.95rem;
}

.plan-card__features li:last-child {
  border-bottom: none;
}

.feature-name {
  color: #111827;
  font-weight: 500;
  margin-right: 0.5rem;
}

.feature-value {
  color: #6b7280;
  font-weight: 600;
}

.feature-value--yes {
  color: #16a34a;
}

.feature-value--no {
  color: #ef4444;
}

.plan-card__actions .btn {
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
}

.pricing-table-wrapper .data-surface {
  border-radius: 24px;
  padding: 2rem;
}

.pricing-table-wrapper .table-responsive {
  overflow-x: auto;
}

.plan_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.95rem;
  min-width: 720px;
}

.plan_table thead th {
  background: #f4f6ff;
  color: #111827;
  padding: 1rem;
  text-align: center;
}

.plan_table thead th:first-child {
  text-align: left;
  border-top-left-radius: 16px;
}

.plan_table thead th:last-child {
  border-top-right-radius: 16px;
}

.plan_table tbody th,
.plan_table tbody td,
.plan_table tfoot th {
  padding: 1rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.plan_table tbody th {
  background: #fafafa;
  width: 22%;
}

.plan_table tbody td {
  text-align: center;
  background: #fff;
}

.plan_table td.current,
.plan_table th.current {
  background: rgba(91, 70, 255, 0.08);
  font-weight: 600;
}

.plan_table .planpricing_footer {
  background: #fff;
  text-align: center;
}

.plan_table .planpricing_footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan_table .planpricing_footer li {
  margin-bottom: 0.35rem;
}

.plan_table .planpricing_footer .buy,
.plan_table .change_plan {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: #5b46ff;
  color: #fff;
  font-size: 0.85rem;
  text-decoration: none;
}

.plan_table .planpricing_footer .buy:hover,
.plan_table .change_plan:hover {
  background: #6c5cff;
}

@media (max-width: 992px) {
  .pricing-hero {
    padding: 2.5rem 1.5rem;
  }

  .plan-card {
    padding: 1.5rem;
  }
}
