.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.price {
  font-size: 32px;
  font-weight: bold;
}

/* =========================
   Pricing Page Styles
========================= */

.pricing-hero {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.pricing-hero p {
  font-size: 20px;
  color: var(--muted);
  margin-bottom: 8px;
}

.pricing-subtitle {
  font-size: 16px !important;
  color: var(--text) !important;
  opacity: 0.8;
}

.pricing-tiers {
  margin-bottom: 64px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.pricing-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(93, 169, 255, 0.2);
}

.card-badge {
  background: var(--accent);
  color: #0b0d12;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
}

.card-header {
  padding: 32px 24px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.card-header h3 {
  font-size: 24px;
  margin: 0 0 16px 0;
}

.price {
  font-size: 48px;
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 4px;
}

.price-desc {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.card-content {
  padding: 24px;
}

.card-description {
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.features-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.features-list li:last-child {
  border-bottom: none;
}

.card-actions {
  text-align: center;
}

.full-width {
  width: 100%;
  text-align: center;
}

.trial-note {
  font-size: 12px;
  color: var(--muted);
  margin: 8px 0 0 0;
}

/* Comparison Table */
.comparison-section {
  margin: 64px 0;
}

.comparison-section h2 {
  text-align: center;
  margin-bottom: 8px;
}

.comparison-section > p {
  text-align: center;
  color: var(--muted);
  margin-bottom: 32px;
}

.comparison-table {
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  background: var(--bg);
  font-weight: bold;
  position: sticky;
  top: 0;
}

.comparison-table th:nth-child(2),
.comparison-table th:nth-child(3),
.comparison-table th:nth-child(4) {
  text-align: center;
  width: 120px;
}

.comparison-table td:nth-child(2),
.comparison-table td:nth-child(3),
.comparison-table td:nth-child(4) {
  text-align: center;
  font-size: 18px;
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: none;
}

/* Special Offers */
.special-offers {
  margin: 64px 0;
}

.special-offers h2 {
  text-align: center;
  margin-bottom: 32px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.offer-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}

.offer-card h3 {
  margin-top: 0;
  margin-bottom: 16px;
}

.offer-card p {
  margin-bottom: 16px;
  line-height: 1.5;
}

/* FAQ Section */
.faq-section {
  margin: 64px 0;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 32px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
}

.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}

.faq-item h4 {
  margin-top: 0;
  margin-bottom: 12px;
}

.faq-item p {
  margin: 0;
  line-height: 1.5;
}

/* CTA Section */
.cta-section {
  text-align: center;
  margin: 64px 0;
  padding: 48px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 18px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .pricing-hero h1 {
    font-size: 36px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .comparison-table {
    font-size: 14px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 8px;
  }

  .offers-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}
