/* =====================================
   PRICING PAGE STYLES
===================================== */

.pricing-section,
.features-section,
.faq-section {
  padding-top: calc(var(--section-space) - 0.5rem);
}

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

.pricing-card {
  position: relative;
  background: rgba(21, 27, 46, 0.8);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.2rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 240, 255, 0.45);
  box-shadow:
    0 0 0 1px rgba(0, 240, 255, 0.2),
    0 14px 30px rgba(0, 0, 0, 0.45);
}

.pricing-card--featured {
  border-color: rgba(0, 240, 255, 0.55);
  background:
    linear-gradient(180deg, rgba(0, 240, 255, 0.08), rgba(21, 27, 46, 0.78));
}

.pricing-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #00161c;
  padding: 0.28rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-header {
  text-align: center;
  margin-bottom: 1.4rem;
}

.pricing-header h3 {
  margin: 0 0 0.3rem;
}

.pricing-price {
  margin: 0.3rem 0;
  font-size: 2.1rem;
  color: var(--primary);
  font-weight: 700;
}

.period {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-left: 0.2rem;
}

.pricing-description {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.features-list {
  list-style: none;
  margin: 0 0 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0.7rem 0;
}

.features-list li {
  padding: 0.45rem 0;
  font-size: 0.92rem;
}

.btn-block {
  width: 100%;
  display: block;
  text-align: center;
}

.features-section {
  background: linear-gradient(180deg, rgba(0, 240, 255, 0.08), rgba(11, 15, 26, 0));
}

.features-section h2,
.faq-section h2 {
  text-align: center;
  margin-bottom: 1.6rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(21, 27, 46, 0.78);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comparison-table thead {
  background: rgba(0, 240, 255, 0.1);
}

.comparison-table th,
.comparison-table td {
  padding: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}

.comparison-table th {
  color: var(--primary);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.faq-item {
  background: rgba(21, 27, 46, 0.74);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.15rem;
}

.faq-item h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.faq-item p {
  margin: 0;
  color: var(--text-muted);
}

@media (max-width: 680px) {
  .pricing-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    display: block;
    overflow-x: auto;
  }
}
