/* pricing.css — pricing page only */

.pricing-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 32px 80px;
}

/* HEADER */
.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}
.pricing-header .eyebrow-pill {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent-dim);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 100px;
  font-size: 13px;
  color: #60a5fa;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.pricing-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -2px;
  margin-bottom: 14px;
}
.pricing-sub {
  font-size: 18px;
  color: var(--fg-muted);
}

/* CARDS */
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 780px;
  margin: 0 auto 80px;
}

.pricing-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pro-card {
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.15), 0 20px 60px rgba(59, 130, 246, 0.08);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  background: var(--accent);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
  white-space: nowrap;
}

.card-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.plan-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-amount {
  font-family: 'Inter', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -2px;
  line-height: 1;
}
.price-period {
  font-size: 16px;
  color: var(--fg-muted);
}
.plan-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* PLAN BUTTONS */
.plan-btn {
  display: block;
  width: 100%;
  padding: 13px 20px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  letter-spacing: -0.2px;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
}
.plan-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.plan-btn--primary:hover { box-shadow: 0 4px 16px var(--accent-glow); }

.plan-btn--primary {
  background: var(--accent);
  color: white;
}
.plan-btn--secondary {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--fg-muted);
}

/* FEATURE LIST */
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg);
}
.feat-icon {
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}
.feat-yes { color: #22c55e; }
.feat-no { color: var(--fg-subtle); }
.feat-dim { color: var(--fg-muted); }

/* COMPARISON TABLE */
.comparison-section {
  margin-bottom: 80px;
}
.comparison-title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  text-align: center;
}
.comparison-table {
  max-width: 640px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.comp-header {
  display: grid;
  grid-template-columns: 1fr 120px 140px;
  padding: 14px 24px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}
.comp-col-plan {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  text-align: center;
}
.comp-col-plan.pro-col {
  color: var(--accent);
}
.comp-row {
  display: grid;
  grid-template-columns: 1fr 120px 140px;
  padding: 13px 24px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.comp-row:last-child, .comp-row-last {
  border-bottom: none;
}
.comp-feature {
  font-size: 14px;
  color: var(--fg-muted);
}
.comp-val {
  font-size: 14px;
  color: var(--fg-muted);
  text-align: center;
}
.comp-val.pro-col {
  color: var(--fg);
  font-weight: 500;
}
.comp-no {
  color: var(--fg-subtle);
}

/* FAQ */
.faq-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.faq-q {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.faq-a {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 700px) {
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  .faq-section {
    grid-template-columns: 1fr;
  }
  .comp-header, .comp-row {
    grid-template-columns: 1fr 80px 100px;
    padding: 12px 16px;
  }
}
