/**
 * Pricing Page Styles
 */

.pricing-section {
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    rgba(35, 74, 218, 0.05) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.pricing-header-section {
  margin-bottom: 60px;
}

.pricing-header-section .title-new {
  margin-bottom: 20px;
  color: #141752;
}

.pricing-header-section .subtitle-new {
  font-size: 20px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

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

.pricing-card-wrapper {
  display: flex;
  justify-content: center;
}

.pricing-card {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(20, 23, 82, 0.1);
  padding: 40px;
  width: 100%;
  max-width: 500px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(20, 23, 82, 0.15);
}

.pricing-badge {
  position: absolute;
  top: 30px;
  right: -42px;
  background: #234ada;
  color: white;
  padding: 8px 40px;
  font-weight: 600;
  font-size: 14px;
  transform: rotate(45deg);
}

.pricing-header {
  text-align: center;
  padding-bottom: 30px;
}

.pricing-title {
  font-size: 24px;
  font-weight: 700;
  color: #141752;
  margin-bottom: 20px;
  background-color: transparent;
}

.pricing-price {
  margin-bottom: 20px;
}

.pricing-price .price {
  font-size: 48px;
  font-weight: 700;
  color: #234ada;
}

.pricing-price .period {
  font-size: 16px;
  color: #777;
  margin-left: 5px;
}

.pricing-description {
  color: #555;
  font-size: 16px;
}

.pricing-features {
  margin-bottom: 30px;
}

.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.feature-icon {
  color: #234ada;
  margin-right: 15px;
  font-size: 18px;
}

.feature-text {
  font-size: 16px;
  color: #333;
}

.pricing-cta {
  text-align: center;
}

.pricing-cta .btn-new-primary {
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pricing-current-member,
.pricing-trial {
  margin-top: 15px;
  font-size: 14px;
  color: #777;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(20, 23, 82, 0.1);
  padding: 30px;
  margin-bottom: 30px;
}

.testimonial-quote {
  color: #234ada;
  font-size: 30px;
  margin-bottom: 20px;
}

.testimonial-content {
  font-size: 16px;
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.testimonial-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #141752;
  margin-bottom: 5px;
}

.testimonial-author-info p {
  font-size: 14px;
  color: #777;
  margin: 0;
}

.satisfaction-guarantee {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 25px;
  display: flex;
  align-items: center;
}

.guarantee-icon {
  font-size: 30px;
  color: #234ada;
  margin-right: 20px;
}

.guarantee-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #141752;
  margin-bottom: 5px;
}

.guarantee-content p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.pricing-faq {
  margin-top: 80px;
  text-align: center;
}

.pricing-faq h2 {
  margin-bottom: 40px;
  color: #141752;
}

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

.faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(20, 23, 82, 0.05);
  margin-bottom: 20px;
  overflow: hidden;
  text-align: left;
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(35, 74, 218, 0.05);
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: #141752;
  margin: 0;
}

.faq-icon {
  color: #234ada;
}

.faq-answer {
  padding: 0 20px 20px;
  display: none;
}

.faq-answer.active {
  display: block;
  text-align: left;
}

.faq-icon i.active {
  transform: rotate(180deg);
}

.faq-answer p {
  margin: 0;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}
