/* public/css/pricing.css
 * Owns: /pricing page styles — hero, tier cards, feature matrix, finder block, FAQ, CTA band.
 * Does NOT own: global nav, footer, mobile-cta-bar, theme tokens (all in theme.css).
 */

/* ── HERO ─────────────────────────────────────────────────────────── */
.pr-hero {
  background: #FAFAF7;
  padding: 148px 64px 96px;
  border-bottom: 1px solid var(--border);
}
.pr-hero-inner {
  max-width: 820px;
  margin: 0 auto;
}
.pr-hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.pr-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.pr-hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--charcoal-soft);
  max-width: 680px;
  margin-bottom: 36px;
}
.pr-hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.pr-hero-cta {
  display: inline-block;
  padding: 16px 36px;
  background: var(--gold);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 2px;
  transition: opacity 0.15s;
}
.pr-hero-cta:hover { opacity: 0.88; }
.pr-hero-cta-secondary {
  display: inline-block;
  padding: 16px 28px;
  background: transparent;
  color: var(--charcoal);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.15s, color 0.15s;
}
.pr-hero-cta-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ── SHARED SECTION LABELS ────────────────────────────────────────── */
.pr-section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.pr-section-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 48px;
}

/* ── TIER CARDS ───────────────────────────────────────────────────── */
.pr-tiers {
  background: #FAFAF7;
  padding: 96px 64px;
  border-bottom: 1px solid var(--border);
}
.pr-tiers-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pr-tier-cards {
  display: flex;
  gap: 20px;
  align-items: stretch;
}
.pr-tier-card {
  flex: 1 1 0;
  background: #FFFFFF;
  border: 1px solid #E8E4DB;
  border-radius: 4px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.15s;
  position: relative;
}
.pr-tier-card:hover {
  box-shadow: 0 4px 20px rgba(201,169,97,0.1);
}
.pr-tier-card--featured {
  border-top: 3px solid var(--gold);
  box-shadow: 0 2px 16px rgba(201,169,97,0.12);
}
.pr-tier-ribbon {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0 0 4px 4px;
}
.pr-tier-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.01em;
  line-height: 1;
}
.pr-tier-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--charcoal-soft);
  margin-left: 2px;
}
.pr-tier-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.pr-tier-position {
  font-size: 13px;
  line-height: 1.55;
  color: var(--charcoal-soft);
  padding-bottom: 12px;
  border-bottom: 1px solid #E8E4DB;
}
.pr-tier-deliverables {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pr-tier-deliverables li {
  font-size: 13px;
  line-height: 1.5;
  color: var(--charcoal-soft);
  padding-left: 16px;
  position: relative;
}
.pr-tier-deliverables li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
  top: 1px;
}
.pr-tier-cta {
  display: block;
  padding: 13px 20px;
  background: var(--gold);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 2px;
  text-align: center;
  transition: opacity 0.15s;
  margin-top: 12px;
}
.pr-tier-cta:hover { opacity: 0.88; }
.pr-tier-detail {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.pr-tier-detail:hover { text-decoration: underline; }

/* ── FEATURE MATRIX ───────────────────────────────────────────────── */
.pr-matrix-section {
  background: #FAFAF7;
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
}
.pr-matrix-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pr-matrix-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 4px;
  border: 1px solid #E8E4DB;
}
.pr-matrix {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
  min-width: 820px;
}
/* Sticky header row */
.pr-matrix-header-row {
  position: sticky;
  top: 0;
  z-index: 10;
}
.pr-mth {
  padding: 18px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  background: #FAFAF7;
  border: 1px solid #E8E4DB;
  vertical-align: top;
  white-space: nowrap;
}
.pr-mth--label {
  width: 18%;
  color: var(--charcoal-soft);
  background: #F3F0E9;
}
.pr-mth--featured {
  background: #FAFAF7;
  border-top: 3px solid var(--gold);
}
.pr-mth-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 3px;
  letter-spacing: 0.04em;
  text-transform: none;
}
.pr-mth--featured .pr-mth-name {
  color: var(--gold);
}
.pr-mth-price {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--charcoal-soft);
}
.pr-mth-badge {
  display: inline-block;
  margin-top: 6px;
  background: var(--gold);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
}
/* Category rows */
.pr-mtd--category {
  background: #1A1A2E;
  color: #C9A961;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 16px;
  border: 1px solid #1A1A2E;
}
/* Data cells */
.pr-mtd {
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--charcoal-soft);
  border: 1px solid #E8E4DB;
  background: #FFFFFF;
  vertical-align: middle;
}
.pr-mtd--label {
  font-weight: 600;
  font-size: 13px;
  color: var(--charcoal);
  background: #FAFAF7;
}
.pr-mtd--featured {
  background: #FFFDF7;
  border-left: 2px solid rgba(201,169,97,0.3);
  border-right: 2px solid rgba(201,169,97,0.3);
}
.pr-mtr--alt .pr-mtd { background: #FAFAF7; }
.pr-mtr--alt .pr-mtd--label { background: #F3F0E9; }
.pr-mtr--alt .pr-mtd--featured { background: #FAF6EC; }
.pr-mtd--dash {
  color: #C5C0B5;
  text-align: center;
}
.pr-check {
  color: var(--gold);
  font-weight: 700;
  margin-right: 4px;
}
/* CTA row */
.pr-mtr--cta-row .pr-mtd {
  padding: 20px 16px;
  background: #FAFAF7;
  border-top: 2px solid #E8E4DB;
}
.pr-mtr--cta-row .pr-mtd--featured {
  background: #FAF6EC;
}
.pr-mtd--cta {
  text-align: center;
}
.pr-matrix-cta {
  display: inline-block;
  padding: 10px 18px;
  background: transparent;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1.5px solid var(--gold);
  border-radius: 2px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.pr-matrix-cta:hover {
  background: var(--gold);
  color: #fff;
}
.pr-matrix-cta--featured {
  background: var(--gold);
  color: #fff;
}
.pr-matrix-cta--featured:hover { opacity: 0.88; background: var(--gold); color: #fff; }

/* ── FINDER BLOCK ─────────────────────────────────────────────────── */
.pr-finder {
  background: #FAFAF7;
  padding: 96px 64px;
  border-bottom: 1px solid var(--border);
}
.pr-finder-inner {
  max-width: 1060px;
  margin: 0 auto;
}
.pr-finder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.pr-finder-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pr-finder-icon {
  font-size: 12px;
  color: var(--gold);
}
.pr-finder-h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.3;
  margin: 0;
}
.pr-finder-p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal-soft);
  flex: 1;
  margin: 0;
}
.pr-finder-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.pr-finder-cta:hover { text-decoration: underline; }

/* ── FAQ ──────────────────────────────────────────────────────────── */
.pr-faq {
  background: #FEF0E5;
  padding: 96px 64px;
  border-top: 1px solid #F5D9C4;
  border-bottom: 1px solid var(--border);
}
.pr-faq-inner {
  max-width: 800px;
  margin: 0 auto;
}
.pr-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #E8E4DB;
  border-radius: 4px;
  overflow: hidden;
  background: #FFFFFF;
}
.pr-faq-item {
  border-bottom: 1px solid #E8E4DB;
}
.pr-faq-item:last-child { border-bottom: none; }
.pr-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.1s;
}
.pr-faq-q:hover { background: #FAFAF7; }
.pr-faq-q-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
}
.pr-faq-chevron {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.pr-faq-item[data-open] .pr-faq-chevron {
  transform: rotate(180deg);
}
.pr-faq-a {
  display: none;
  padding: 0 28px 24px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--charcoal-soft);
}
.pr-faq-item[data-open] .pr-faq-a {
  display: block;
}

/* ── CTA BAND ─────────────────────────────────────────────────────── */
.pr-cta-band {
  background: #FAFAF7;
  padding: 96px 64px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.pr-cta-band-inner {
  max-width: 640px;
  margin: 0 auto;
}
.pr-cta-band-eyebrow {
  margin-bottom: 16px;
}
.pr-cta-band-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.2;
}
.pr-cta-band-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal-soft);
  margin-bottom: 36px;
}
.pr-cta-band-btn {
  display: inline-block;
  padding: 18px 40px;
  background: var(--gold);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 2px;
  transition: opacity 0.15s;
}
.pr-cta-band-btn:hover { opacity: 0.88; }

/* ── MOBILE RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 767px) {
  .pr-hero { padding: 120px 24px 64px; }
  .pr-hero-sub { font-size: 16px; }
  .pr-hero-ctas { flex-direction: column; gap: 14px; align-items: flex-start; }
  .pr-hero-cta, .pr-hero-cta-secondary { width: 100%; text-align: center; box-sizing: border-box; }

  .pr-tiers { padding: 64px 24px; }
  .pr-tier-cards {
    flex-direction: column;
    gap: 20px;
  }
  .pr-tier-card { flex: none; }

  .pr-matrix-section { padding: 48px 16px; }
  /* Matrix scrolls horizontally at mobile — no stacking needed */
  .pr-matrix-header-row { position: static; } /* disable sticky on mobile to avoid layout bugs */

  .pr-finder { padding: 64px 24px; }
  .pr-finder-grid { grid-template-columns: 1fr; gap: 40px; }

  .pr-faq { padding: 64px 24px; }
  .pr-faq-q { padding: 18px 20px; }
  .pr-faq-a { padding: 0 20px 20px; }

  .pr-cta-band { padding: 64px 24px; }

  .pr-section-h2 { margin-bottom: 32px; }
}
