/* Pricing CSS */

.pt-xl {
  padding-top: 8rem;
}
.mb-lg {
  margin-bottom: 3rem;
}
.mb-xl {
  margin-bottom: 5rem;
}
.mb-md {
  margin-bottom: 1.5rem;
}

.pricing-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.pricing-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Toggle */
.toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.toggle-switch {
  width: 50px;
  height: 26px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  position: relative;
  cursor: pointer;
  transition: var(--transition-fast);
}

.toggle-switch.active {
  background: var(--primary);
}

.toggle-knob {
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: var(--transition-fast);
}

.toggle-switch.active .toggle-knob {
  left: 27px;
}

.save-badge {
  font-size: 0.75rem;
  color: var(--primary);
  margin-left: 0.25rem;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  padding: 2.5rem;
  border-radius: var(--radius-md);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.highlight {
  border: 1px solid var(--primary);
  background: rgba(37, 99, 235, 0.05);
  backdrop-filter: blur(15px);
}

.best-value-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
}

.price-block {
  margin: 1.5rem 0;
  display: flex;
  align-items: baseline;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  margin-right: 2px;
}

.amount {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.period {
  color: var(--text-muted);
  margin-left: 0.5rem;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.check {
  color: var(--text-muted);
}
.check-blue {
  color: var(--primary);
  font-weight: bold;
}
.text-blue {
  color: var(--primary) !important;
}

/* Table */
.table-container {
  padding: 2rem;
  border-radius: var(--radius-md);
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th {
  text-align: left;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  color: #d1d5db;
}

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

.comparison-table th:not(:first-child),
.comparison-table td:not(:first-child) {
  text-align: center;
  width: 20%;
}

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

/* FAQ */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  padding: 1.5rem;
  border-radius: var(--radius-sm);
}

.faq-item h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.footer-bottom-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
