/* ============================================================
   IQ MINDWARE - pricing.css  v1.0
   Scope: /pricing - plan selection, discounts, coaching add-ons.
   Requires: brand.css loaded first.
   Design goal: choose a plan in under 30 seconds. No hidden terms.
   ============================================================ */


/* ============================================================
   1. PRICING PAGE TOKENS
   ============================================================ */
:root {
  /* Plan identity */
  --plan-gt:        #22AAFF;
  --plan-gt-bg:     rgba(34,170,255,.07);
  --plan-gt-bdr:    rgba(34,170,255,.20);

  --plan-zc:        #7ecf00;
  --plan-zc-bg:     rgba(126,207,0,.07);
  --plan-zc-bdr:    rgba(126,207,0,.25);

  --plan-cg:        #a78bfa;
  --plan-cg-bg:     rgba(167,139,250,.07);
  --plan-cg-bdr:    rgba(167,139,250,.22);

  --plan-core:      #f59e0b;
  --plan-core-bg:   rgba(245,158,11,.07);
  --plan-core-bdr:  rgba(245,158,11,.25);

  /* Discount badge */
  --disc-early:     #1a5fa8;
  --disc-early-bg:  rgba(39,100,183,.09);
  --disc-early-bdr: rgba(39,100,183,.22);
  --disc-student:   #2e7d32;
  --disc-student-bg: rgba(46,125,50,.08);
  --disc-student-bdr: rgba(46,125,50,.25);
  --disc-exist:     #6d28d9;
  --disc-exist-bg:  rgba(109,40,217,.07);
  --disc-exist-bdr: rgba(109,40,217,.22);

  /* Guarantee / policy */
  --guarantee-bg:   rgba(46,125,50,.06);
  --guarantee-bdr:  rgba(46,125,50,.22);

  /* Page surfaces */
  --pricing-surface: #eceef2;
  --pricing-rule:    rgba(0,0,0,.09);
  --pricing-card-bg: #ffffff;
  --pricing-card-bdr: rgba(0,0,0,.08);
}


/* ============================================================
   2. PAGE SHELL
   ============================================================ */
body.pricing  { background: var(--pricing-surface); }`r`n.pricing-page { padding-top: 0; }


/* ============================================================
   3. HERO
   ============================================================ */
.pricing-hero {
  background:
    radial-gradient(ellipse 700px 400px at 15% 60%, rgba(245,158,11,.09), transparent 55%),
    radial-gradient(ellipse 800px 500px at 85% 20%, rgba(34,170,255,.10), transparent 55%),
    var(--card-dark);
  border-bottom: 2px solid rgba(255,255,255,.06);
  padding: 64px var(--gutter) 52px;
}
.pricing-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.pricing-hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--plan-core);
  margin-bottom: 14px;
  display: block;
}
.pricing-hero-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -.022em;
  line-height: 1.08;
  margin-bottom: 14px;
  color: var(--tc);
}
.pricing-hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--lime), #1a90e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-hero-desc {
  font-size: 15px;
  color: var(--tcm);
  max-width: 52ch;
  line-height: 1.75;
}
.pricing-hero-desc strong { color: var(--tc); }

/* Hero right - plan count chips */
.pricing-hero-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.pricing-meta-chip {
  padding: 13px 18px;
  border-radius: var(--r-lg);
  min-width: 200px;
  border: 1px solid transparent;
}
.pricing-meta-chip--amber   { background: rgba(245,158,11,.08);  border-color: rgba(245,158,11,.22); }
.pricing-meta-chip--cyan    { background: rgba(34,170,255,.08);   border-color: rgba(34,170,255,.20); }
.pricing-meta-chip--neutral { background: rgba(255,255,255,.04);  border-color: rgba(255,255,255,.09); }
.pricing-meta-chip-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--tcf);
  margin-bottom: 3px;
}
.pricing-meta-chip-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--tc);
}
.pricing-meta-chip--amber .pricing-meta-chip-value { color: var(--plan-core); }


/* ============================================================
   4. CURRENCY TOGGLE
   ============================================================ */
.pricing-currency-bar {
  background: var(--card-deep);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 0 var(--gutter);
  height: 48px;
  display: flex;
  align-items: center;
}
.pricing-currency-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pricing-currency-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--tcf);
  white-space: nowrap;
  flex-shrink: 0;
}
.pricing-currency-btns {
  display: flex;
  gap: 4px;
}
.pricing-currency-btn {
  font-family: 'DM Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .10em;
  padding: 5px 14px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,.14);
  background: transparent;
  color: var(--tcm);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
  font-family: inherit;
}
.pricing-currency-btn:hover {
  background: rgba(255,255,255,.07);
  color: var(--tc);
}
.pricing-currency-btn.active {
  background: var(--blue-dp);
  color: #fff;
  border-color: var(--blue-dp);
}
.pricing-currency-note {
  font-family: 'DM Mono', monospace;
  font-size: 9.5px;
  letter-spacing: .06em;
  color: var(--tcf);
  margin-left: auto;
}


/* ============================================================
   5. SECTION WRAPPER (shared by all pricing sections)
   ============================================================ */
.pricing-section {
  padding: 64px var(--gutter) 72px;
  border-bottom: 1px solid var(--pricing-rule);
}
.pricing-section:last-of-type { border-bottom: none; }
.pricing-section--light     { background: var(--pricing-surface); }
.pricing-section--light-alt { background: var(--pg-alt); }
.pricing-section--dark {
  background: var(--card-dark);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.pricing-section-inner { max-width: var(--max-w); margin: 0 auto; }

.pricing-section-hd { margin-bottom: 36px; }
.pricing-section-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.pricing-section--light     .pricing-section-eyebrow,
.pricing-section--light-alt .pricing-section-eyebrow { color: var(--blue-dp); }
.pricing-section--dark      .pricing-section-eyebrow { color: var(--cyan); }

.pricing-section-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  letter-spacing: -.018em;
  line-height: 1.15;
  margin-bottom: 6px;
}
.pricing-section--light     .pricing-section-title,
.pricing-section--light-alt .pricing-section-title { color: var(--tl); }
.pricing-section--dark      .pricing-section-title { color: var(--tc); }

.pricing-section-sub {
  font-size: 14px;
  line-height: 1.65;
  max-width: 62ch;
}
.pricing-section--light     .pricing-section-sub,
.pricing-section--light-alt .pricing-section-sub { color: var(--tlm); }
.pricing-section--dark      .pricing-section-sub { color: var(--tcm); }


/* ============================================================
   6. PLAN CARDS
   ============================================================ */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.plan-card {
  background: var(--pricing-card-bg);
  border: 1.5px solid var(--pricing-card-bdr);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--t-base), transform var(--t-base), border-color var(--t-base);
  outline: none;
}
.plan-card:hover {
  box-shadow: 0 10px 32px rgba(0,0,0,.10);
  transform: translateY(-3px);
}
.plan-card:focus-within {
  border-color: var(--blue-dp);
  box-shadow: 0 0 0 3px rgba(39,100,183,.18);
}

/* Coloured top bar */
.plan-card--gt   { border-top: 3px solid var(--plan-gt); }
.plan-card--zc   { border-top: 3px solid var(--plan-zc); }
.plan-card--cg   { border-top: 3px solid var(--plan-cg); }
.plan-card--core {
  border-top: 3px solid var(--plan-core);
  background: linear-gradient(160deg, #fffbf0, #fff 40%);
}

/* Featured / recommended */
.plan-card--featured {
  border-color: var(--plan-core);
  box-shadow: 0 0 0 2px rgba(245,158,11,.18), 0 12px 36px rgba(0,0,0,.12);
}

.plan-card-hd {
  padding: 20px 20px 14px;
  border-bottom: 1px solid var(--pricing-rule);
}
.plan-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: grid; place-items: center;
  font-size: 17px;
  margin-bottom: 10px;
  border: 1px solid transparent;
}
.plan-card--gt   .plan-icon { background: var(--plan-gt-bg);   border-color: var(--plan-gt-bdr); }
.plan-card--zc   .plan-icon { background: var(--plan-zc-bg);   border-color: var(--plan-zc-bdr); }
.plan-card--cg   .plan-icon { background: var(--plan-cg-bg);   border-color: var(--plan-cg-bdr); }
.plan-card--core .plan-icon { background: var(--plan-core-bg); border-color: var(--plan-core-bdr); }

.plan-name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--tl);
  margin-bottom: 4px;
}
.plan-tagline {
  font-size: 12px;
  color: var(--tlm);
  line-height: 1.45;
}

/* Plan pricing block */
.plan-pricing {
  padding: 16px 20px;
  border-bottom: 1px solid var(--pricing-rule);
}
.plan-price-main {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.plan-currency {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--tlm);
  margin-top: 4px;
}
.plan-amount {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--tl);
  line-height: 1;
}
.plan-period {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .06em;
  color: var(--tlf);
}
.plan-price-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tlf);
  margin-bottom: 10px;
}

/* Discount rows */
.plan-discounts {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.plan-discount-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.plan-discount-badge {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .06em;
  padding: 2px 7px;
  border-radius: 3px;
  border: 1px solid transparent;
  white-space: nowrap;
}
.plan-discount-badge--early   { background: var(--disc-early-bg);   border-color: var(--disc-early-bdr);   color: var(--disc-early); }
.plan-discount-badge--student { background: var(--disc-student-bg); border-color: var(--disc-student-bdr); color: var(--disc-student); }
.plan-discount-badge--exist   { background: var(--disc-exist-bg);   border-color: var(--disc-exist-bdr);   color: var(--disc-exist); }
.plan-discount-price {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--tlm);
  white-space: nowrap;
}

/* Included items */
.plan-includes {
  padding: 14px 20px;
  flex: 1;
  border-bottom: 1px solid var(--pricing-rule);
}
.plan-includes-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tlf);
  margin-bottom: 8px;
}
.plan-include-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.plan-include-list li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 12.5px;
  color: var(--tlm);
  line-height: 1.4;
}
.plan-include-check {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(46,125,50,.10);
  border: 1px solid rgba(46,125,50,.25);
  color: #2e7d32;
  display: grid; place-items: center;
  font-size: 8px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

/* "Choose this if" line */
.plan-choose-if {
  padding: 11px 20px;
  font-size: 12px;
  color: var(--tlm);
  line-height: 1.5;
  background: rgba(0,0,0,.015);
  border-bottom: 1px solid var(--pricing-rule);
  font-style: italic;
}
.plan-choose-if strong { color: var(--tl); font-style: normal; }

/* Card CTA */
.plan-card-ft {
  padding: 14px 16px;
}
.plan-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 11px 16px;
  border-radius: var(--r-md);
  font-size: 13.5px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: inherit;
  line-height: 1;
  transition: filter var(--t-fast), transform var(--t-fast);
  outline: none;
}
.plan-cta:hover  { filter: brightness(1.06); transform: translateY(-1px); }
.plan-cta:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px; }
.plan-card--gt   .plan-cta { background: var(--cyan);      color: #fff; }
.plan-card--zc   .plan-cta { background: var(--plan-zc);   color: #1a2000; }
.plan-card--cg   .plan-cta { background: var(--plan-cg);   color: #fff; }
.plan-card--core .plan-cta {
  background: linear-gradient(180deg, var(--plan-core), #d97706);
  color: #fff;
  box-shadow: 0 4px 16px rgba(245,158,11,.30);
}

/* Upgrade note under grid */
.plan-upgrade-note {
  font-family: 'DM Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .04em;
  color: var(--tlf);
  padding: 12px 0 0;
  border-top: 1px solid var(--pricing-rule);
  margin-top: 4px;
}
.plan-upgrade-note a { color: var(--blue-dp); text-decoration: none; border-bottom: 1px solid rgba(39,100,183,.25); }


/* ============================================================
   7. DISCOUNT MATRIX
   ============================================================ */
.discount-table-wrap {
  border: 1px solid var(--pricing-card-bdr);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--pricing-card-bg);
}
.discount-table {
  width: 100%;
  border-collapse: collapse;
}
.discount-table th {
  font-family: 'DM Mono', monospace;
  font-size: 9.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tlf);
  text-align: left;
  padding: 11px 20px;
  border-bottom: 1px solid var(--pricing-rule);
  background: rgba(0,0,0,.02);
  font-weight: 500;
}
.discount-table td {
  padding: 12px 20px;
  font-size: 13px;
  color: var(--tlm);
  border-bottom: 1px solid var(--pricing-rule);
  vertical-align: middle;
}
.discount-table tr:last-child td { border-bottom: none; }
.discount-table td:first-child { font-weight: 700; color: var(--tl); }
.discount-constraint {
  font-size: 11.5px;
  font-family: 'DM Mono', monospace;
  color: var(--tlf);
  padding: 12px 20px;
  border-top: 1px solid var(--pricing-rule);
  background: rgba(0,0,0,.015);
  line-height: 1.6;
}


/* ============================================================
   8. COACHING ADD-ON CARDS
   ============================================================ */
.coaching-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 16px;
}
.coaching-card {
  background: var(--card-mid);
  border: 1.5px solid rgba(255,255,255,.14);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.coaching-card-hd {
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: var(--card-deep);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.coaching-card-hd-left { display: flex; align-items: center; gap: 12px; }
.coaching-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(34,170,255,.12);
  border: 1px solid rgba(34,170,255,.25);
  display: grid; place-items: center;
  font-size: 17px; flex-shrink: 0;
}
.coaching-name {
  font-size: 16px; font-weight: 800;
  color: var(--tc); letter-spacing: -.01em; margin-bottom: 2px;
}
.coaching-tagline { font-size: 12px; color: var(--tcf); font-family: 'DM Mono', monospace; letter-spacing: .04em; }
.coaching-price-chip {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}
.coaching-price-amount {
  font-size: 22px; font-weight: 800;
  color: var(--tc); letter-spacing: -.02em; line-height: 1;
}
.coaching-price-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: .10em;
  text-transform: uppercase; color: var(--tcf);
}
.coaching-card-body { padding: 0; }
.coaching-row {
  display: grid; grid-template-columns: 130px 1fr;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.coaching-row:last-child { border-bottom: none; }
.coaching-row-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: .10em; text-transform: uppercase;
  color: var(--cyan-lt);
  padding: 13px 12px 13px 24px;
  background: rgba(0,0,0,.15);
  border-right: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: flex-start; padding-top: 15px;
}
.coaching-row-value {
  padding: 13px 24px 13px 16px;
  font-size: 13px; color: var(--tcm); line-height: 1.6;
}
.coaching-row-value strong { color: var(--tc); }
.coaching-card-ft {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(0,0,0,.10);
  display: flex; gap: 8px; align-items: center;
}
.coaching-cta {
  display: inline-flex; align-items: center;
  padding: 9px 20px;
  border-radius: var(--r-md);
  font-size: 13px; font-weight: 800;
  text-decoration: none; cursor: pointer;
  border: none; font-family: inherit; line-height: 1;
  transition: filter var(--t-fast);
  background: linear-gradient(180deg, var(--cyan), #1a90e0);
  color: #fff;
}
.coaching-cta:hover { filter: brightness(1.08); }
.coaching-cta:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px; }
.coaching-cta-secondary {
  display: inline-flex; align-items: center;
  padding: 9px 14px;
  border-radius: var(--r-md);
  font-size: 12.5px; font-weight: 700;
  color: var(--tcm); background: transparent;
  border: 1px solid rgba(255,255,255,.14);
  text-decoration: none; cursor: pointer; font-family: inherit; line-height: 1;
  transition: background var(--t-fast), color var(--t-fast);
}
.coaching-cta-secondary:hover { background: rgba(255,255,255,.07); color: var(--tc); }
.coaching-refund-note {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: .04em;
  color: var(--tcf); line-height: 1.6;
  padding: 12px 0 0;
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 4px;
}


/* ============================================================
   9. SUBSCRIPTION PREVIEW (Phase 1)
   ============================================================ */
.sub-preview-table-wrap {
  border: 1px solid var(--pricing-card-bdr);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--pricing-card-bg);
  margin-bottom: 12px;
}
.sub-preview-table {
  width: 100%;
  border-collapse: collapse;
}
.sub-preview-table th {
  font-family: 'DM Mono', monospace;
  font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--tlf); text-align: left;
  padding: 10px 20px;
  border-bottom: 1px solid var(--pricing-rule);
  background: rgba(0,0,0,.02); font-weight: 500;
}
.sub-preview-table th:not(:first-child) { text-align: right; }
.sub-preview-table td {
  padding: 12px 20px;
  font-size: 13px; color: var(--tlm);
  border-bottom: 1px solid var(--pricing-rule);
  vertical-align: middle;
}
.sub-preview-table td:not(:first-child) {
  text-align: right;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
}
.sub-preview-table tr:last-child td { border-bottom: none; }
.sub-preview-table td:first-child { font-weight: 700; color: var(--tl); }
.sub-preview-note {
  font-family: 'DM Mono', monospace;
  font-size: 10.5px; letter-spacing: .04em;
  color: var(--tlf); line-height: 1.6;
  padding: 12px 0 0;
}
.sub-phase-badge {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: .08em;
  padding: 2px 8px; border-radius: 3px;
  background: rgba(245,158,11,.10);
  border: 1px solid rgba(245,158,11,.28);
  color: #92400e;
  margin-left: 6px;
  vertical-align: middle;
}


/* ============================================================
   10. GUARANTEES / BILLING CLARITY
   ============================================================ */
.billing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.guarantee-item {
  padding: 20px 20px;
  border-radius: var(--r-lg);
  border: 1px solid var(--pricing-card-bdr);
  background: var(--pricing-card-bg);
  border-left: 3px solid transparent;
}
.guarantee-item--green  { border-left-color: #2e7d32; }
.guarantee-item--blue   { border-left-color: var(--blue-dp); }
.guarantee-item--amber  { border-left-color: var(--plan-core); }
.guarantee-icon { font-size: 18px; margin-bottom: 8px; display: block; }
.guarantee-title {
  font-size: 13.5px; font-weight: 800;
  color: var(--tl); margin-bottom: 5px; letter-spacing: -.01em;
}
.guarantee-text {
  font-size: 12.5px; color: var(--tlm); line-height: 1.6;
}
.guarantee-text strong { color: var(--tl); }


/* ============================================================
   11. PROOF POSTURE (collapsible)
   ============================================================ */
.proof-posture-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  background: rgba(39,100,183,.06);
  border: 1px solid rgba(39,100,183,.16);
  border-radius: var(--r-lg);
  cursor: pointer;
  font-family: inherit;
  gap: 12px;
  transition: background var(--t-fast);
  text-align: left;
}
.proof-posture-toggle:hover { background: rgba(39,100,183,.10); }
.proof-posture-toggle:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px; }
.proof-posture-toggle-left {
  display: flex; align-items: center; gap: 10px;
}
.proof-posture-toggle-icon { font-size: 15px; flex-shrink: 0; }
.proof-posture-toggle-label {
  font-size: 13px; font-weight: 700;
  color: var(--blue-dp); letter-spacing: -.01em;
}
.proof-posture-toggle-sub {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: .08em;
  color: var(--tlf); margin-top: 1px;
}
.proof-posture-chevron {
  width: 14px; height: 14px; flex-shrink: 0;
  color: var(--blue-dp);
  transition: transform 200ms ease;
}
.proof-posture-toggle[aria-expanded="true"] .proof-posture-chevron { transform: rotate(180deg); }

.proof-posture-body {
  display: none;
  margin-top: 2px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid rgba(39,100,183,.12);
  border-top: none;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
}
.proof-posture-toggle[aria-expanded="true"] + .proof-posture-body { display: block; }
.proof-posture-items {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.proof-posture-item {
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: var(--pricing-surface);
  border: 1px solid var(--pricing-rule);
  border-left: 3px solid transparent;
}
.proof-posture-item--design       { border-left-color: #a78bfa; }
.proof-posture-item--check        { border-left-color: var(--cyan); }
.proof-posture-item--transparency { border-left-color: var(--plan-zc); }
.proof-posture-item--boundary     { border-left-color: #b45309; }
.proof-posture-item-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--tlf); margin-bottom: 5px;
}
.proof-posture-item-text { font-size: 12.5px; color: var(--tlm); line-height: 1.6; }
.proof-posture-item-text strong { color: var(--tl); }


/* ============================================================
   12. FAQ MINI-BLOCK
   ============================================================ */
.faq-list {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--pricing-card-bdr);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--pricing-card-bg);
}
.faq-item {
  border-bottom: 1px solid var(--pricing-rule);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; display: flex;
  align-items: center; justify-content: space-between;
  gap: 12px; padding: 16px 22px;
  font-size: 13.5px; font-weight: 700;
  color: var(--tl); background: none; border: none;
  cursor: pointer; text-align: left; font-family: inherit;
  transition: background var(--t-fast);
}
.faq-question:hover { background: rgba(0,0,0,.02); }
.faq-question:focus-visible { outline: 3px solid var(--cyan); outline-offset: -3px; }
.faq-chevron {
  width: 13px; height: 13px; flex-shrink: 0;
  color: var(--tlf);
  transition: transform 200ms ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 22px 16px;
  font-size: 13px; color: var(--tlm); line-height: 1.7;
  border-top: 1px solid var(--pricing-rule);
}
.faq-item.open .faq-answer { display: block; padding-top: 14px; }
.faq-answer a { color: var(--blue-dp); text-decoration: none; border-bottom: 1px solid rgba(39,100,183,.25); }
.faq-answer a:hover { border-bottom-color: var(--blue-dp); }


/* ============================================================
   13. CTA BAND
   ============================================================ */
.pricing-cta-band {
  background: var(--card-deep);
  padding: 64px var(--gutter);
  border-top: 1px solid rgba(255,255,255,.06);
  text-align: center;
}
.pricing-cta-inner { max-width: 600px; margin: 0 auto; }
.pricing-cta-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--tcf); margin-bottom: 12px; display: block;
}
.pricing-cta-title {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800; letter-spacing: -.02em;
  line-height: 1.1; margin-bottom: 14px; color: var(--tc);
}
.pricing-cta-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--lime), #1a90e0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pricing-cta-desc {
  font-size: 14.5px; color: var(--tcm); line-height: 1.7;
  margin-bottom: 28px; max-width: 46ch; margin-left: auto; margin-right: auto;
}
.pricing-cta-btns {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}


/* ============================================================
   14. RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .plan-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
}
@media (max-width: 900px) {
  .pricing-hero-inner     { grid-template-columns: 1fr; }
  .pricing-hero-meta      { flex-direction: row; flex-wrap: wrap; }
  .pricing-meta-chip      { min-width: 0; flex: 1 1 140px; }
  .coaching-grid          { grid-template-columns: 1fr; }
  .billing-grid           { grid-template-columns: 1fr 1fr; }
  .proof-posture-items    { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .pricing-hero           { padding: 72px var(--gutter) 44px; }
  .plan-grid              { grid-template-columns: 1fr; }
  .billing-grid           { grid-template-columns: 1fr; }
  .pricing-hero-meta      { display: none; }
  .coaching-row           { grid-template-columns: 1fr; }
  .coaching-row-label     { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); padding: 10px 20px; }
  .sub-preview-table      { font-size: 12px; }
  .sub-preview-table th,
  .sub-preview-table td   { padding: 9px 12px; }
}

