/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 3rem 0;
}

.pricing-card {
  background-color: white;
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.popular {
  border: 2px solid var(--accent);
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background-color: var(--accent);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: bold;
}

/* Price Display */
.price {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.price span {
  font-size: 1rem;
  color: var(--gray);
}

/* Features List */
.pricing-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
  color: var(--gray);
}

.pricing-features li:before {
  content: "✓";
  color: var(--success);
  margin-right: 10px;
}

/* FAQ Section */
.faq {
  margin: 3rem 0;
}

.faq-item {
  background-color: white;
  border-radius: 10px;
  padding: 20px 30px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.faq-question {
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  color: var(--gray);
  display: none;
  padding-top: 0.5rem;
}

.faq-item.active .faq-answer {
  display: block;
}