/* === PRICING PAGE === */
.pricing-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing-heading {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 20px;
}

.pricing-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.pricing-card:hover {
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-2px);
}

.pricing-card.featured {
  border-color: var(--accent);
  background: var(--surface);
  transform: scale(1.02);
}

.pricing-card.featured:hover {
  border-color: var(--accent);
  transform: scale(1.02) translateY(-2px);
}

.card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.card-plan {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}

.card-price {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.card-price span {
  font-size: 22px;
  font-weight: 500;
  color: var(--muted);
}

.card-clips {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.card-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.card-features li {
  font-size: 15px;
  color: var(--text);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-features li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: var(--accent-dim);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F59E0B' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.btn-checkout {
  display: block;
  text-align: center;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  background: var(--border);
  color: var(--text);
  transition: background 0.2s;
  margin-top: auto;
}

.btn-checkout:hover {
  background: #3a3a45;
}

.btn-checkout-accent {
  background: var(--accent);
  color: #000;
}

.btn-checkout-accent:hover {
  background: #e08c0a;
}

/* FAQ */
.pricing-faq {
  max-width: 700px;
  margin: 0 auto;
}

.faq-heading {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 36px;
  letter-spacing: -0.5px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 8px;
}

.faq-a {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 900px) {
  .pricing-main { padding: 60px 24px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-2px); }
}

@media (max-width: 600px) {
  .pricing-heading { font-size: 36px; }
  .card-price { font-size: 40px; }
}