/* assets/css/pricing.css */
/* Hero Section */
.pricing-hero {
  background: linear-gradient(to bottom right, #1e293b, #0f766e);
  padding: 8rem 1rem 6rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pricing-hero .bg-decor {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  width: 16rem;
  height: 16rem;
  background: #14b8a6;
  border-radius: 9999px;
  filter: blur(6rem);
  opacity: 0.1;
  pointer-events: none;
}
/* Sticky Tabs */
.pricing-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  background: #fff;
  border-radius: 9999px;
  padding: 0.25rem;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.pricing-tab {
  flex: 1;
  padding: 0.75rem 1rem;
  text-align: center;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.pricing-tab.active {
  background: #0f766e;
  color: #fff;
}
/* Containers */
.pricing-container {
  display: none;
  padding: 2rem 1rem;
}
.pricing-container.active {
  display: block;
}
/* Cards */
.pricing-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.pricing-card.popular {
  border: 2px solid #0f766e;
  background: linear-gradient(to right, #0f766e, #14b8a6);
  color: #fff;
}
.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f766e;
}
.pricing-card.popular .price {
  color: #fff;
}
/* CTA Buttons */
.pricing-cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #0f766e;
  color: #fff;
  border-radius: 9999px;
  font-weight: 600;
  text-align: center;
  transition: background 0.3s, transform 0.3s;
}
.pricing-cta:hover {
  background: #0d5c56;
  transform: scale(1.02);
}
/* Trust Badge Strip */
.trust-strip {
  display: flex;
  justify-content: center;
  gap: 2rem;
  background: #f3f4f6;
  padding: 1rem;
  font-weight: 600;
  color: #111827;
}
/* Accordion */
.accordion {
  max-width: 800px;
  margin: 2rem auto;
}
.accordion-item {
  border-bottom: 1px solid #e5e7eb;
}
.accordion-header {
  cursor: pointer;
  padding: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1rem;
}
.accordion-item.active .accordion-body {
  max-height: 200px; /* enough for content */
  padding: 1rem;
}
