/* ── Pricing Page ──────────────────────────────────────── */

.pricing-hero {
  background: var(--navy);
  padding: 5rem 0 3.5rem;
  position: relative; overflow: hidden;
}
.pricing-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(232,97,10,.15) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Cards ─────────────────────────────────────────────── */
.pricing-cards-section { padding: 4rem 0; background: var(--parchment); }

.pricing-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1.25rem; align-items: start;
}

.pc {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  display: flex; flex-direction: column;
  position: relative;
  transition: box-shadow .25s, transform .25s;
}
.pc:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.pc-featured {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--shadow-navy);
  transform: scale(1.03);
}
.pc-featured:hover { transform: scale(1.03) translateY(-4px); }
.pc-featured .pc-name,
.pc-featured .pc-price,
.pc-featured .pc-hook { color: rgba(255,255,255,.9) !important; }
.pc-featured .pc-per { color: rgba(255,255,255,.5) !important; }
.pc-featured .pc-feats li { color: rgba(255,255,255,.75); }
.pc-featured .pc-feats li.yes::before { color: var(--orange-light); }
.pc-featured .pc-feats li.no { color: rgba(255,255,255,.3); }
.pc-featured .pc-fine { color: rgba(255,255,255,.35); }

.pc-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff;
  font-family: var(--font-ui); font-size: .67rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  padding: .22rem 1rem; border-radius: 20px; white-space: nowrap;
}

.pc-top { margin-bottom: .75rem; }
.pc-name {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  color: var(--navy); margin-bottom: .4rem;
}
.pc-price-row { display: flex; align-items: baseline; gap: .2rem; margin-bottom: .3rem; }
.pc-price { font-family: var(--font-ui); font-size: 2.1rem; font-weight: 700; color: var(--orange-dark); line-height: 1; }
.pc-per   { font-family: var(--font-ui); font-size: .82rem; color: var(--muted); }
.pc-hook  { font-size: .83rem; color: var(--muted); font-style: italic; }

.pc-divider {
  display: flex; align-items: center; gap: .75rem; margin: 1rem 0;
}
.pc-divider::before, .pc-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.pc-featured .pc-divider::before, .pc-featured .pc-divider::after { background: rgba(255,255,255,.15); }

.pc-feats { list-style: none; display: flex; flex-direction: column; gap: .55rem; flex: 1; margin-bottom: 1.5rem; }
.pc-feats li {
  font-family: var(--font-ui); font-size: .86rem;
  padding-left: 1.35rem; position: relative; line-height: 1.4;
  color: var(--ink-soft);
}
.pc-feats li.yes::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 700; }
.pc-feats li.no         { color: var(--muted-light); }
.pc-feats li.no::before { content: '—'; position: absolute; left: 0; color: var(--muted-light); }
.pc-feats li.hi         { font-weight: 500; }
.pc-feats li.gold       { color: var(--orange-dark); }

.pc-cta {
  width: 100%; justify-content: center; cursor: pointer;
  font-size: .92rem;
}
.pc-fine { font-family: var(--font-ui); font-size: .7rem; color: var(--muted); text-align: center; margin-top: .55rem; font-style: italic; }

/* ── Comparison ────────────────────────────────────────── */
.comparison-section { background: var(--parchment-2); padding: 5rem 0; }
.comp-header { margin-bottom: 2.5rem; }
.comp-wrap { overflow-x: auto; border-radius: var(--r-md); box-shadow: var(--shadow-sm); }

.comp-table { width: 100%; border-collapse: collapse; background: var(--white); min-width: 580px; }
.comp-table thead th {
  background: var(--navy); color: rgba(255,255,255,.85);
  font-family: var(--font-ui); font-size: .74rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  padding: .9rem 1.1rem; text-align: center;
}
.comp-table thead th.feat-col { text-align: left; }
.col-feat { background: rgba(232,97,10,.08) !important; color: var(--orange-dark) !important; }

.comp-table tbody td {
  padding: .8rem 1.1rem; border-bottom: 1px solid var(--border);
  font-family: var(--font-ui); font-size: .86rem;
  text-align: center; color: var(--ink-soft);
}
.comp-table tbody td.feat-col { text-align: left; font-weight: 500; color: var(--ink); }
.comp-table tbody tr:nth-child(even) { background: var(--parchment); }
.comp-table tbody tr:last-child td  { border-bottom: none; }
.comp-table tbody td.col-feat { background: rgba(232,97,10,.04); font-weight: 500; color: var(--orange-dark); }

/* ── FAQ ───────────────────────────────────────────────── */
.faq-section { padding: 5rem 0; background: var(--white); }
.faq-list { margin-top: 2.5rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  padding: 1.1rem 2rem 1.1rem 0;
  cursor: pointer; list-style: none; position: relative;
  color: var(--navy); transition: color .15s;
}
.faq-q:hover { color: var(--orange-dark); }
.faq-q::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.3rem; font-weight: 300; color: var(--orange); }
details[open] .faq-q::after { content: '−'; }
.faq-a { font-size: .93rem; color: var(--muted); line-height: 1.75; padding-bottom: 1.1rem; max-width: 600px; }

/* ── CTA ───────────────────────────────────────────────── */
.pricing-cta-section { background: var(--navy); padding: 5rem 0; position: relative; overflow: hidden; }
.pricing-cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(232,97,10,.18) 0%, transparent 65%);
  pointer-events: none;
}
.pricing-cta-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center;
}
.cta-icon-sm { width: 60px; height: 60px; filter: drop-shadow(0 4px 12px rgba(232,97,10,.5)); }
.pricing-cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: .5rem; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1000px) {
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .pc-featured  { transform: scale(1); }
  .pc-featured:hover { transform: translateY(-4px); }
}
@media (max-width: 560px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
