/* ─── Page Hero ──────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-height) + 64px) 0 64px;
  background: var(--ink);
}
.page-hero .eyebrow { color: var(--green-mid); }
.page-hero h1 { color: #fff; }
.page-hero .text-muted { color: rgba(255,255,255,0.45); }

/* ─── Currency Toggle ────────────────────────────────────── */
.currency-toggle {
  display: inline-flex; border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-full); overflow: hidden; margin-top: 28px;
}
.currency-btn {
  padding: 8px 20px; background: transparent; color: rgba(255,255,255,0.5);
  border: none; cursor: pointer; font-family: var(--font-display);
  font-size: 13px; font-weight: 700; transition: all 0.2s;
}
.currency-btn.active { background: var(--green); color: #fff; }

/* ─── Pricing Grid ───────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.pc-card {
  border-radius: var(--r-2xl); padding: 32px; border: 1px solid var(--border);
  background: var(--white); position: relative;
}
.pc-card-featured { background: var(--green); border-color: var(--green); color: #fff; }
.pc-chip { margin-bottom: 14px; }
.pc-name { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.pc-card-featured .pc-name { color: #fff; }
.pc-price { font-family: var(--font-display); font-size: 42px; font-weight: 800; color: var(--ink); line-height: 1; }
.pc-card-featured .pc-price { color: #fff; }
.pc-period { font-size: 12px; color: var(--muted); margin-top: 4px; margin-bottom: 12px; }
.pc-card-featured .pc-period { color: rgba(255,255,255,0.5); }
.pc-desc { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.pc-divider { height: 1px; background: var(--border); margin: 16px 0; }
.pc-features { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.pc-features li { font-size: 13px; color: var(--muted); display: flex; align-items: flex-start; gap: 8px; }
.pc-card-featured .pc-features li { color: rgba(255,255,255,0.75); }
.pc-check { color: var(--green-mid); font-weight: 700; flex-shrink: 0; }
.pc-card-featured .pc-check { color: rgba(255,255,255,0.8); }
.pc-feature-no { opacity: 0.5; }
.pc-popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 16px; border-radius: var(--r-full); font-family: var(--font-display); white-space: nowrap;
}

/* ─── Comparison Table ───────────────────────────────────── */
.comparison-table { background: var(--white); border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border); }
.ct-header { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; background: var(--ink-2); padding: 14px 20px; }
.ct-feature-col, .ct-tier-col { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.6); }
.ct-tier-col { text-align: center; }
.ct-tier-featured { color: var(--green-mid) !important; }
.ct-section-head {
  background: var(--sand); padding: 10px 20px;
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  color: var(--green); letter-spacing: 1px; text-transform: uppercase;
  border-top: 1px solid var(--border);
}
.ct-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 11px 20px; border-bottom: 0.5px solid var(--border);
  align-items: center;
}
.ct-row:last-child { border-bottom: none; }
.ct-feature { font-size: 13px; color: var(--ink); }
.ct-val { font-size: 13px; text-align: center; color: var(--muted); }
.ct-yes { color: var(--green); font-weight: 700; }
.ct-no  { color: var(--muted); opacity: 0.4; }
.ct-feat-col { background: rgba(11,94,62,0.05); }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left; padding: 20px 0; background: none; border: none;
  font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--ink);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--green); }
.faq-arrow { font-size: 18px; color: var(--muted); transition: transform 0.2s; }
.faq-answer {
  font-size: 15px; color: var(--muted); line-height: 1.75; max-height: 0;
  overflow: hidden; transition: max-height 0.35s ease; padding-bottom: 0;
}
.faq-item.open .faq-answer { padding-bottom: 20px; }

/* ─── CTA Final ──────────────────────────────────────────── */
.cta-final-section { background: var(--green); padding: 80px 0; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .comparison-table { overflow-x: auto; }
  .ct-header, .ct-row { grid-template-columns: 1.5fr 1fr 1fr 1fr; min-width: 500px; }
}
