/* Pricing page custom styles */

.pricing-hero {
  text-align: center;
  margin-top: var(--space-12);
  margin-bottom: var(--space-8);
}
.pricing-hero .lead {
  font-size: var(--font-size-4);
  color: var(--color-gray-600);
  margin-top: var(--space-3);
}

.pricing-packages .pricing-card {
  border: 2px solid var(--color-gray-200);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: #fff;
  position: relative;
}
.pricing-packages .pricing-card.recommended {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}
h2 {
  text-align: center;
}
p, ul {
  margin: 0 auto;
  list-style: none;
  text-align: center;
}
.discounts-section {max-width: 700px; margin: 0 auto;}
.pricing-packages .pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.pricing-packages .features {
  margin-bottom: var(--space-5);
}
.pricing-packages .features li {
  margin-bottom: var(--space-2);
  list-style: none;
}
.pricing-packages .button {
  width: 100%;
  margin-top: var(--space-3);
}

.discount-card .discount-list {
  margin-bottom: 0;
  padding-left: var(--space-4);
}
.discount-list li:not(:last-child) {
  margin-bottom: var(--space-2);
}

.payment-methods img {
  height: 36px;
  width: auto;
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: var(--space-1) var(--space-2);
}

.refund-section .card, .support-section .card {
  max-width: 700px;
  margin-inline: auto;
}

.testimonials-section .testimonials-list {
  margin-bottom: var(--space-5);
}
.testimonial {
  font-style: italic;
  color: var(--color-gray-700);
  position: relative;
  padding-left: var(--space-6);
  background-image: url('../assets/quote.svg');
  background-repeat: no-repeat;
  background-position: var(--space-3) var(--space-3);
  background-size: 32px 32px;
}
.testimonial footer {
  margin-top: var(--space-3);
  font-size: var(--font-size-2);
  color: var(--color-primary);
}
.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mt-4 { margin-top: var(--space-4); }

.competitor-section .competitor-table-wrapper {
  overflow-x: auto;
}
.competitor-table {
  width: 100%;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  background: #fff;
  margin: 0 auto;
  font-size: 0.98rem;
  box-shadow: var(--shadow-sm);
}
.competitor-table th, .competitor-table td {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--color-gray-100);
}
.competitor-table th {
  font-weight: 600;
  background: var(--color-gray-100);
  color: var(--color-gray-700);
}
.competitor-table tr:last-child td, .competitor-table tr:last-child th {
  border-bottom: none;
}

.visually-hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .grid-cols-3 {
    grid-template-columns: 1fr !important;
  }
  .testimonials-section .testimonials-list {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 600px) {
  .pricing-hero {
    margin-top: var(--space-6);
  }
  .pricing-hero .lead {
    font-size: var(--font-size-2);
  }
  .competitor-table th, .competitor-table td {
    padding: var(--space-2) var(--space-2);
  }
}
