/* =====================
   CLIPFORGE — PRICING PAGE
   ===================== */

/* PAGE LAYOUT */
.pricing-page {
  padding: 80px 40px;
  min-height: 100vh;
}
.pricing-page-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* PAGE HEADER */
.pricing-page-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}
.pricing-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
.pricing-page-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 20px;
}
.pricing-page-sub {
  font-size: 18px;
  color: var(--fg-2);
  line-height: 1.65;
}

/* PRICING GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 80px;
}

/* PLAN CARD */
.plan-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.plan-card-featured {
  background: var(--fg);
  color: white;
  border-color: var(--fg);
  transform: scale(1.02);
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
}
.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-header {
  margin-bottom: 28px;
}
.plan-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-2);
  display: block;
  margin-bottom: 16px;
}
.plan-card-featured .plan-name {
  color: rgba(255,255,255,0.5);
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
}
.plan-amount {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 48px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.plan-period {
  font-size: 18px;
  color: var(--fg-2);
}
.plan-card-featured .plan-period {
  color: rgba(255,255,255,0.5);
}
.plan-desc {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.55;
}

/* FEATURES LIST */
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}
.plan-features li {
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.plan-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 2px;
  display: inline-block;
}
.plan-card-featured .plan-features li::before {
  background: rgba(255,255,255,0.25);
}
.plan-card-featured .plan-features li {
  color: rgba(255,255,255,0.85);
}

/* CTA BUTTON */
.plan-btn {
  display: block;
  text-align: center;
  padding: 14px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
}
.plan-btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--fg);
}
.plan-btn-ghost:hover {
  background: var(--bg-2);
}
.plan-btn-accent {
  background: var(--accent);
  color: white;
  border: 1px solid var(--accent);
}
.plan-btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

/* FAQ SECTION */
.pricing-faq {
  border-top: 1px solid var(--border);
  padding-top: 64px;
}
.faq-heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  text-align: center;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
}
.faq-item h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 10px;
  color: var(--fg);
}
.faq-item p {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.65;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .plan-card-featured {
    transform: none;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 640px) {
  .pricing-page {
    padding: 60px 20px;
  }
  .pricing-page-title {
    font-size: 32px;
  }
  .plan-card {
    padding: 28px 24px;
  }
}