/* Pricing page styles — extends theme.css variables */

/* NAV OVERRIDES for wider layout */
.nav-inner--wide {
  max-width: 1200px;
  justify-content: space-between;
}
.nav-logo {
  text-decoration: none;
  color: var(--fg);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-link {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link:hover,
.nav-link--active {
  color: var(--fg);
}

/* PRICING HERO */
.pricing-hero {
  border-bottom: 1px solid var(--border);
}
.pricing-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px 64px;
}
.pricing-headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.pricing-headline em {
  font-style: normal;
  color: var(--accent);
}
.pricing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.65;
}

/* PRICING GRID */
.pricing-grid-section {
  padding: 64px 0 80px;
  border-bottom: 1px solid var(--border);
}
.pricing-grid-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.pricing-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}

/* PLAN CARD */
.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.plan-card--featured {
  border-color: var(--accent);
  background: rgba(255, 77, 0, 0.06);
  /* Slightly raised */
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(255, 77, 0, 0.12);
}
.plan-card--dfy {
  border-color: rgba(240, 237, 232, 0.2);
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 20px;
}

.plan-header {
  margin-bottom: 24px;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}
.plan-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--fg);
}
.plan-per {
  font-size: 15px;
  color: var(--fg-muted);
}
.plan-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* FEATURE LIST */
.plan-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-features li {
  font-size: 14px;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 10px;
}
.plan-features li.feat-no {
  color: var(--fg-muted);
  opacity: 0.5;
}
.feat-check {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.feat-x {
  color: var(--fg-muted);
  font-size: 13px;
  flex-shrink: 0;
}

/* CTA BUTTONS */
.plan-btn {
  display: block;
  text-align: center;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  margin-top: auto;
}
.plan-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.plan-btn--primary {
  background: var(--accent);
  color: #fff;
}
.plan-btn--secondary {
  background: var(--surface-2);
  color: var(--fg);
  border: 1px solid var(--border);
}

/* TRUST STRIP */
.pricing-trust {
  border-bottom: 1px solid var(--border);
}
.pricing-trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-muted);
  padding: 0 40px;
}
.trust-icon {
  font-size: 18px;
}
.trust-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* FAQ */
.pricing-faq {
  border-bottom: 1px solid var(--border);
}
.pricing-faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px;
}
.faq-headline {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.8px;
  margin-bottom: 40px;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
}
.faq-item h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.faq-item p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .pricing-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .plan-card--featured {
    transform: none;
  }
  .proof-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .pricing-grid-4 {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .trust-item {
    padding: 12px 20px;
  }
  .trust-divider {
    display: none;
  }
  .proof-strip-grid {
    grid-template-columns: 1fr;
  }
}

/* ── PROOF STRIP ───────────────────────────── */
.proof-strip {
  border-bottom: 1px solid var(--border);
}
.proof-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
}
.proof-strip-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  margin-bottom: 32px;
}
.proof-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.proof-card {
  background: var(--surface);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.proof-stat {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--accent);
  line-height: 1;
}
.proof-label {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ── FAQ ACCORDION ─────────────────────────── */
.pricing-faq {
  border-bottom: 1px solid var(--border);
}
.pricing-faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px;
}
.faq-headline {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.8px;
  margin-bottom: 48px;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-row {
  border-bottom: 1px solid var(--border);
}
.faq-row:first-child {
  border-top: 1px solid var(--border);
}
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 24px 0;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq-q {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
}
.faq-icon {
  flex-shrink: 0;
  color: var(--fg-muted);
  transition: transform 0.25s ease;
  display: flex;
  align-items: center;
}
.faq-answer {
  padding-bottom: 24px;
}
.faq-answer p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 640px;
}

/* ── CLOSING CTA ───────────────────────────── */
.closing-cta {
  border-bottom: 1px solid var(--border);
}
.closing-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.closing-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.closing-cta-sub {
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 40px;
}
.closing-cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.closing-cta-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
