/* Enhanced Pricing Page Styling */
.ss-plans {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Pricing Grid - Same as Homepage */
.pricing-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 2rem;
}

@media (min-width: 992px) {
  .pricing-grid-enhanced {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Enhanced Plan Cards */
.plan-card-enhanced {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(15,23,42,.55);
  padding: 24px;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  transition: all .3s ease;
}

.plan-card-enhanced::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(45% 45% at 20% 20%, rgba(46,97,197,.22), transparent 62%),
              radial-gradient(45% 45% at 80% 25%, rgba(240,185,11,.14), transparent 62%);
  filter: blur(18px);
  opacity: .9;
  z-index: 0;
}

.plan-card-enhanced > * {
  position: relative;
  z-index: 1;
}

.plan-card-enhanced:hover {
  transform: translateY(-4px);
  border-color: rgba(46,97,197,.35);
  box-shadow: 0 20px 50px rgba(46,97,197,.20), 0 16px 40px rgba(0,0,0,.45);
}

.plan-card-enhanced.featured {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(46,97,197,.45);
  box-shadow: 0 22px 60px rgba(46,97,197,.25), 0 18px 48px rgba(0,0,0,.50);
}

.plan-featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #0b1222;
  background: linear-gradient(135deg, #f6c000, #ffb300);
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(0,0,0,.35);
  z-index: 2;
}

.plan-card-header-enhanced {
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.10);
  margin-bottom: 1.5rem;
}

.plan-card-header-enhanced h3 {
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -.01em;
  color: rgba(255,255,255,.95);
  margin-bottom: 0.5rem;
}

.plan-price-enhanced {
  font-weight: 900;
  font-size: 3rem;
  letter-spacing: -.02em;
  color: rgba(255,255,255,.95);
  line-height: 1;
}

.plan-price-enhanced .currency {
  font-size: 1.8rem;
  opacity: .75;
  margin-right: 4px;
}

.plan-billing-period {
  font-weight: 700;
  font-size: .9rem;
  opacity: .75;
  margin-left: 6px;
}

.plan-features-enhanced {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  flex-grow: 1;
}

.plan-features-enhanced li {
  margin: 12px 0;
  color: rgba(229,231,235,.90);
  font-size: .95rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.plan-features-enhanced li i {
  color: rgb(34,197,94);
  font-size: .85rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.plan-cta-enhanced {
  display: block;
  width: 100%;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  border: none;
  transition: all .2s ease;
  margin-top: auto;
}

.plan-cta-enhanced.primary {
  background: linear-gradient(135deg, #2e61c5, #1e4a99);
  color: #fff;
  box-shadow: 0 12px 28px rgba(46,97,197,.25);
}

.plan-cta-enhanced.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(46,97,197,.35);
}

.plan-cta-enhanced.secondary {
  background: rgba(71,85,105,.65);
  color: rgba(255,255,255,.92);
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
}

.plan-cta-enhanced.secondary:hover {
  background: rgba(71,85,105,.85);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,.35);
}

/* Bot Cards Enhancement */
.bot-card-enhanced {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(15,23,42,.55);
  padding: 20px;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  overflow: hidden;
  transition: all .3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bot-card-enhanced::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(45% 45% at 20% 20%, rgba(46,97,197,.18), transparent 62%);
  filter: blur(18px);
  opacity: .8;
  z-index: 0;
}

.bot-card-enhanced > * {
  position: relative;
  z-index: 1;
}

.bot-card-enhanced:hover {
  transform: translateY(-4px);
  border-color: rgba(46,97,197,.35);
  box-shadow: 0 20px 50px rgba(46,97,197,.15), 0 16px 40px rgba(0,0,0,.45);
}

.bot-header-enhanced {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.bot-title-enhanced {
  font-weight: 800;
  font-size: 1.2rem;
  color: rgba(255,255,255,.95);
  margin: 0;
}

.bot-title-enhanced a {
  color: rgba(255,255,255,.95);
  text-decoration: none;
  transition: color .2s ease;
}

.bot-title-enhanced a:hover {
  color: rgba(46,97,197,1);
}

.bot-premium-badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f6c000, #ffb300);
  color: #0b1222;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.bot-desc-enhanced {
  color: rgba(148,163,184,.90);
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.bot-meta-enhanced {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1rem;
}

.bot-meta-enhanced span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(46,97,197,.15);
  border: 1px solid rgba(46,97,197,.25);
  color: rgba(229,231,235,.90);
  font-size: .85rem;
  font-weight: 700;
}

.bot-actions-enhanced {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.bot-actions-enhanced .btn {
  flex: 1;
}
