/* ------------------------------------------------------
   SECONDARY PAGES — BenCode Studio
------------------------------------------------------ */

.page-title {
  font-size: 42px;
  font-weight: 800;
  color: #1f1028;
  margin-bottom: 10px;
}

.page-subtitle {
  font-size: 18px;
  color: #555;
  max-width: 650px;
  margin: 0 auto 40px;
}

/* ------------------------------------------------------
   PRICING PAGE
------------------------------------------------------ */

.pricing-hero-section {
  padding: 120px 0 60px;
  text-align: center;
}

.pricing-table-section {
  padding: 40px 0 100px;
}

.pricing-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.pricing-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  text-align: center;
  transition: 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(106,27,154,0.15);
}

.pricing-card.featured {
  border: 3px solid #6a1b9a;
  box-shadow: 0 20px 40px rgba(106,27,154,0.15);
}

.price {
  font-size: 36px;
  font-weight: 700;
  color: #4a148c;
  margin: 10px 0 20px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 25px 0 35px;
}

.pricing-card ul li {
  margin-bottom: 10px;
  color: #555;
  font-size: 16px;
}

/* ------------------------------------------------------
   FAQ PAGE
------------------------------------------------------ */

.faq-hero-section {
  padding: 120px 0 60px;
  text-align: center;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  padding: 25px 30px;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(106,27,154,0.12);
}

.faq-item h3 {
  margin: 0 0 10px;
  font-weight: 700;
  color: #4a148c;
}

.faq-item p {
  color: #555;
}

/* ------------------------------------------------------
   TESTIMONIALS PAGE
------------------------------------------------------ */

.testimonials-section {
  padding: 120px 0 80px;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 40px;
}

.testimonial-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 18px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.07);
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(106,27,154,0.18);
}

.testimonial-text {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-size: 16px;
  font-weight: 700;
  color: #4a148c;
}

/* ------------------------------------------------------
   GENERAL UTILITY
------------------------------------------------------ */

.container {
  width: min(1100px, 90vw);
  margin: 0 auto;
}
/* Rating stars (purple) */
.rating-stars {
  display: inline-flex;
  align-items: center;
}

/* Add Review form styles */
.add-review-section {
  padding: 120px 0 80px;
}

.bencodestudio-review-form .form-row {
  margin-bottom: 18px;
}

.bencodestudio-review-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.bencodestudio-review-form label span {
  color: #c62828;
}

.bencodestudio-review-form input[type="text"],
.bencodestudio-review-form input[type="email"],
.bencodestudio-review-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 1rem;
}

.bencodestudio-review-form textarea {
  resize: vertical;
}

.form-success {
  color: #2e7d32;
  margin-bottom: 20px;
  font-weight: 600;
}

.form-error {
  color: #c62828;
  margin-bottom: 20px;
  font-weight: 600;
}
