/* Standalone pricing page styles */

.pricing-page {
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.pricing-hero {
  text-align: center;
  padding: 80px 40px 60px;
}

.pricing-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 16px;
}

.pricing-hero-sub {
  font-size: 17px;
  color: var(--text-muted);
}

.pricing-cards-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 0 40px;
  margin-bottom: 64px;
}

.pricing-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.pricing-card-featured {
  border-color: rgba(212,255,71,0.3);
  background: linear-gradient(160deg, #111116 0%, #14140F 100%);
  box-shadow: 0 0 0 1px rgba(212,255,71,0.1), 0 24px 60px rgba(0,0,0,0.3);
}

.pc-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 20px;
  align-self: flex-start;
}

.pc-tag-featured {
  color: var(--lime);
  background: var(--lime-dim);
  border-color: rgba(212,255,71,0.2);
}

.pricing-card .pc-name {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.pricing-card .pc-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}

.pricing-card .pc-amount {
  font-family: 'Syne', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.pricing-card .pc-period {
  font-size: 16px;
  color: var(--text-muted);
}

.pricing-card .pc-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.pricing-card .pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}

.pricing-card .pc-features li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-card .pc-features li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 50%;
  background: var(--lime-dim);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23D4FF47' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

.pc-cta-btn {
  display: block;
  text-align: center;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 24px;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  margin-bottom: 12px;
}

.pc-cta-btn:hover {
  background: var(--bg-2);
  border-color: rgba(255,255,255,0.15);
}

.pc-cta-btn-primary {
  background: var(--lime);
  color: #0D0D10;
  border-color: var(--lime);
}

.pc-cta-btn-primary:hover {
  background: #c5ec3f;
  border-color: #c5ec3f;
}

.pc-footnote {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  font-style: italic;
}

/* FAQ */
.pricing-faq {
  padding: 0 40px;
}

.faq-title {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 32px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-q {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.faq-a {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .pricing-hero { padding: 48px 20px 40px; }
  .pricing-cards-wrap { grid-template-columns: 1fr; padding: 0 20px; }
  .pricing-faq { padding: 0 20px; }
}