.pricing-item {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  position: relative;
  box-shadow: 0 25px 60px -10px rgba(15,23,42,0.06);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border: 2px solid transparent;
  transition: all .25s ease;
}
.pricing-item.featured {
  border-color: #1bbd36;
}
.pricing-item .popular {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #1bbd36;
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pricing-item h3 {
  margin: 0 0 6px;
  font-size: 1.35rem;
}
.pricing-item .description {
  font-size: 0.9rem;
  margin: 0 0 8px;
  color: #555;
}
.pricing-item h4 {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pricing-item h4 sup {
  font-size: 1rem;
}
.pricing-item h4 span {
  font-size: 0.85rem;
  color: #666;
  margin-left: 4px;
}
.cta-btn {
  display: inline-block;
  background: #1bbd36;
  color: #fff;
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  margin: 6px 0;
}
.text-center.small {
  font-size: 0.7rem;
  margin: 0;
  color: #777;
}
.features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.features.short li {
  display: flex;
  align-items: start;
  gap: 8px;
  font-size: 0.85rem;
  margin-bottom: 6px;
}
.features.full {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}
.features.full li {
  display: flex;
  align-items: start;
  gap: 8px;
  font-size: 0.85rem;
}
.features.short li i {
  color: #1bbd36;
}
.features.full li i {
  color: inherit;
}
ul li.na { opacity: 0.35; }
ul li.na i { color: #dc3545; }

.meta {
  font-size: 0.75rem;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* toggle button */
.toggle-more {
  background: transparent;
  border: none;
  color: #1bbd36;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 0;
  align-self: start;
  display: inline-flex;
  gap:4px;
}
.more-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.pricing-item.expanded {
  /* optional slight lift when expanded */
  box-shadow: 0 35px 70px -5px rgba(15,23,42,0.15);
}
