/* ─── Pricing Page ─── */
.pricing-page {
  padding-top: 80px;
  min-height: 100vh;
}

/* ─── Hero ─── */
.pricing-hero {
  text-align: center;
  padding: 80px 48px 64px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--section-bg) 0%, var(--bg) 100%);
}

.pricing-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 100px;
}

.pricing-headline {
  font-size: clamp(48px, 7vw, 88px);
  color: var(--fg);
  margin-bottom: 16px;
}

.pricing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 440px;
  margin: 0 auto;
}

/* ─── Plan Grid ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 64px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ─── Plan Card ─── */
.plan-card {
  background: var(--section-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.plan-card:hover {
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.plan-featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(245,158,11,0.06) 0%, var(--section-bg) 60%);
}

.plan-featured:hover {
  border-color: var(--accent);
}

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

.plan-header {
  margin-bottom: 32px;
}

.plan-tier {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  display: block;
  margin-bottom: 16px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 12px;
}

.price-dollar {
  font-size: 28px;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1;
}

.price-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--fg);
  line-height: 1;
}

.price-cents {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--fg-muted);
  line-height: 1;
}

.price-period {
  font-size: 15px;
  color: var(--fg-muted);
  margin-left: 4px;
}

.plan-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  font-style: italic;
}

/* ─── Features List ─── */
.plan-features {
  list-style: none;
  flex: 1;
  margin-bottom: 32px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(245,158,11,0.08);
  line-height: 1.4;
}

.feature:last-child { border-bottom: none; }

.check-icon {
  color: var(--accent);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 700;
}

.x-icon {
  color: var(--fg-muted);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.5;
}

.feature.included { color: var(--fg); }
.feature.excluded { color: var(--fg-muted); }

/* ─── CTA Button ─── */
.plan-cta {
  display: block;
  text-align: center;
  width: 100%;
  padding: 14px 20px;
  font-size: 14px;
}

.plan-featured .plan-cta {
  background: var(--accent);
  color: #09090b;
}

.plan-featured .plan-cta:hover {
  background: #fbbf24;
}

/* ─── FAQ Section ─── */
.pricing-faq {
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 48px 96px;
  border-top: 1px solid var(--border);
}

.faq-title {
  font-size: clamp(32px, 4vw, 56px);
  color: var(--fg);
  margin-bottom: 48px;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 64px;
}

.faq-item { }

.faq-q {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: var(--fg);
  margin-bottom: 10px;
}

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

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    padding: 40px 24px;
  }

  .plan-featured {
    order: -1;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pricing-hero { padding: 60px 24px 48px; }
  .pricing-faq { padding: 48px 24px 72px; }
}

@media (max-width: 480px) {
  .price-amount { font-size: 52px; }
  .price-cents { font-size: 26px; }
  .plan-card { padding: 32px 24px; }
}