/* ═══════════════════════════════════════════════════════════
   PRICING PAGE — v4.1 (2026-05-08)
   Extracted from inline <style> block for DS v5.0 compliance.
   All colors match Design System Bible canonical palette.
   5-tier: Free | Pro | Pro+ | Family | Autopilot
   White bg everywhere, emerald #00875A, Fraunces + DM Sans
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,700;0,9..144,900;1,9..144,400&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --pr-navy:        #0A0A0A;
  --pr-emerald:     #00875A;  /* DS canonical: 5.5:1 on white */
  --pr-emerald-h:   #006B4D;  /* DS canonical hover: 7.1:1 on white */
  --pr-emerald-lt:  #E6F9F3;  /* DS canonical tint */
  --pr-emerald-text:#00643E;  /* DS success text: 6.1:1 on #E6F9F3 */
  --pr-white:       #FFFFFF;
  --pr-border:      #E5E7EB;
  --pr-text:        #0A0A0A;
  --pr-body:        #374151;
  --pr-radius:      16px;
  --pr-shadow:      0 2px 12px rgba(0,0,0,.06);
  --pr-shadow-lg:   0 12px 48px rgba(0,0,0,.1);
}

*, *::before, *::after { box-sizing: border-box; }

.pr-page {
  font-family: 'DM Sans', -apple-system, sans-serif;
  color: var(--pr-text);
  background: var(--pr-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── HERO ─────────────────────────────────────────────────── */
.pr-hero {
  background: var(--pr-white);
  text-align: center;
  padding: clamp(3.5rem, 8vw, 5.5rem) 1.5rem clamp(3rem, 6vw, 4.5rem);
  border-bottom: 1px solid var(--pr-border);
}

.pr-hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--pr-text);
  margin: 0 auto .9rem;
  max-width: 680px;
}
.pr-hero-sub {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: var(--pr-body);
  max-width: 480px;
  margin: 0 auto 0;
  line-height: 1.6;
}

/* ── BILLING TOGGLE ───────────────────────────────────────── */
.pr-toggle-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .9rem;
  margin: 2.4rem auto 0;
}
.pr-toggle-label {
  font-size: .9rem;
  font-weight: 600;
  color: #6B7280; /* 4.54:1 on white — WCAG AA pass */
  transition: color .2s, font-weight .2s;
  cursor: pointer;
  user-select: none;
}
.pr-toggle-label.active {
  color: var(--pr-text);
  font-weight: 700;
}
.pr-toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  background: #CBD5E1;
  border-radius: 100px;
  cursor: pointer;
  transition: background .25s cubic-bezier(.4,0,.2,1);
  flex-shrink: 0;
}
.pr-toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform .25s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
/* Monthly = gray bg, pill left; Annual = green bg, pill right */
body.billing-monthly .pr-toggle-switch { background: #CBD5E1; }
body.billing-monthly .pr-toggle-switch::after { transform: translateX(0); }
body.billing-annual  .pr-toggle-switch { background: var(--pr-emerald); }
body.billing-annual  .pr-toggle-switch::after { transform: translateX(22px); }
/* Default state before JS (annual) = green + right */
.pr-toggle-switch { background: var(--pr-emerald); }
.pr-toggle-switch::after { transform: translateX(22px); }

.pr-save-global-badge {
  background: var(--pr-emerald-lt);
  color: var(--pr-emerald-text); /* 6.1:1 on #E6F9F3 — WCAG AA */
  font-size: .72rem;
  font-weight: 700;
  padding: .22rem .6rem;
  border-radius: 100px;
  white-space: nowrap;
  transition: opacity .2s, transform .2s;
}
body.billing-monthly .pr-save-global-badge { opacity: .85; transform: scale(1); }
body.billing-annual  .pr-save-global-badge { opacity: 1; transform: scale(1); }

/* Price visibility by billing mode */
/* Default: annual (before JS runs) */
.pr-price-monthly { display: none !important; }
.pr-price-annual  { display: inline !important; }
.pr-savings-row   { display: inline-block !important; }
.pr-link-annual   { display: inline-flex !important; }
.pr-link-monthly  { display: none !important; }

/* Monthly mode */
body.billing-monthly .pr-price-monthly { display: inline !important; }
body.billing-monthly .pr-price-annual  { display: none !important; }
body.billing-monthly .pr-savings-row   { display: none !important; }
body.billing-monthly .pr-link-annual   { display: none !important; }
body.billing-monthly .pr-link-monthly  { display: inline-flex !important; }

/* Annual mode */
body.billing-annual .pr-price-monthly { display: none !important; }
body.billing-annual .pr-price-annual  { display: inline !important; }
body.billing-annual .pr-savings-row   { display: inline-block !important; }
body.billing-annual .pr-savings-pill  { display: inline-flex !important; }
body.billing-annual .pr-link-annual   { display: inline-flex !important; }
body.billing-annual .pr-link-monthly  { display: none !important; }

/* ── FOR BUSINESS LINK ─────────────────────────────────────── */
.pr-biz-link {
  display: block;
  margin: 1.25rem auto 0;
  font-size: .82rem;
  color: #6B7280; /* 4.54:1 on white — WCAG AA */
  text-decoration: none;
  transition: color .18s ease;
}
.pr-biz-link:hover { color: var(--pr-emerald); }
.pr-biz-link span {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── CATALOG DOWNLOAD LINK ─────────────────────────────────── */
.pr-catalog-link {
  display: block;
  margin: 6px auto 0;
  font-size: .82rem;
  color: #6B7280;
  text-decoration: none;
  opacity: 0.8;
  transition: color .18s ease, opacity .18s ease;
}
.pr-catalog-link:hover {
  color: var(--pr-emerald);
  opacity: 1;
}
.pr-catalog-link span {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── PLANS SECTION ──────────────────────────────────────────── */
.pr-plans-section {
  padding: clamp(3rem, 6vw, 5rem) clamp(.75rem, 3vw, 2rem);
  background: var(--pr-white);
  display: flex;
  justify-content: center;
}
.pr-plans-inner {
  max-width: 1400px;
  width: 100%;
}
.pr-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── PLAN CARD ──────────────────────────────────────────────── */
.pr-card {
  background: var(--pr-white);
  border: 1.5px solid var(--pr-border);
  border-radius: var(--pr-radius);
  padding: 1.6rem 1.3rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--pr-shadow);
  transition: transform .2s, box-shadow .2s;
}
.pr-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pr-shadow-lg);
}
.pr-card--popular {
  border-color: var(--pr-emerald);
  border-width: 2px;
  box-shadow: 0 6px 32px rgba(0,135,90,.12);
  z-index: 2;
  box-shadow: 0 8px 40px rgba(0,135,90,.18) !important;
}
.pr-card--popular:hover {
  box-shadow: 0 18px 60px rgba(0,135,90,.24) !important;
  transform: translateY(-4px) !important;
}
.pr-card--autopilot {
  border-color: var(--pr-emerald);
  border-width: 2px;
}
.pr-card--autopilot:hover {
  box-shadow: 0 16px 48px rgba(0,135,90,.14);
}

/* ── TIER BADGES (outlined pills) ──────────────────────────── */
.pr-tier-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 100px;
  white-space: nowrap;
  border: 1.5px solid var(--pr-emerald);
  color: #065F46; /* emerald-800: 7.1:1 on white — WCAG AA */
  background: var(--pr-white);
}

/* Best Value badge */
.pr-best-value-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pr-emerald);
  color: #fff; /* white on #00875A = 5.5:1 — WCAG AA */
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .22rem .7rem;
  border-radius: 0 0 10px 10px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,135,90,.4);
}

/* ── FADE-IN-UP ANIMATION ───────────────────────────────── */
@keyframes prFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pr-reveal {
  opacity: 0;
}
.pr-reveal.is-visible {
  animation: prFadeUp 0.55s cubic-bezier(.22,.68,0,1.2) forwards;
}
.pr-reveal-stagger .pr-reveal:nth-child(1) { animation-delay: 0ms; }
.pr-reveal-stagger .pr-reveal:nth-child(2) { animation-delay: 60ms; }
.pr-reveal-stagger .pr-reveal:nth-child(3) { animation-delay: 120ms; }
.pr-reveal-stagger .pr-reveal:nth-child(4) { animation-delay: 180ms; }
.pr-reveal-stagger .pr-reveal:nth-child(5) { animation-delay: 240ms; }
@media (prefers-reduced-motion: reduce) {
  .pr-reveal, .pr-reveal.is-visible { opacity: 1; animation: none; }
}

.pr-card-tag {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #4B5563; /* 7.0:1 on white — WCAG AA */
  margin-bottom: .4rem;
  margin-top: .6rem;
}
.pr-card--popular .pr-card-tag,
.pr-card--autopilot .pr-card-tag {
  color: var(--pr-emerald);
}

.pr-card-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--pr-text);
  margin-bottom: .4rem;
  line-height: 1.1;
}

.pr-price-block { margin-bottom: 1rem; }
.pr-price-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--pr-text);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: .25rem;
}
.pr-price-num small {
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  color: var(--pr-body);
  letter-spacing: 0;
}

.pr-savings-row {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  color: #065F46 !important; /* emerald-800: 7.1:1 on #E6F9F3 — WCAG AA */
  -webkit-text-fill-color: #065F46 !important;
  background: var(--pr-emerald-lt);
  padding: .2rem .55rem;
  border-radius: 100px;
  margin-top: .35rem;
}

/* Savings row "vs monthly" small text */
.pr-savings-row-note {
  font-size: .62rem;
  opacity: .8;
}

/* CTA button */
.pr-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: .88rem;
  padding: .78rem 1rem;
  min-height: 48px;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: -.01em;
  transition: all .18s cubic-bezier(.4,0,.2,1);
  margin-bottom: 1rem;
}
.pr-cta--emerald {
  background: var(--pr-emerald);
  color: #fff !important; /* §19 DS: white text on green bg — WCAG AA required */
  border: none;
  box-shadow: 0 3px 12px rgba(0,135,90,.25);
}
.pr-cta--emerald:hover {
  background: var(--pr-emerald-h);
  box-shadow: 0 6px 20px rgba(0,135,90,.35);
  transform: translateY(-1px);
  color: #fff !important;
}
.pr-cta--outline {
  background: transparent;
  color: var(--pr-text);
  border: 1.5px solid var(--pr-border);
}
.pr-cta--outline:hover {
  border-color: var(--pr-emerald);
  color: var(--pr-emerald);
  background: var(--pr-emerald-lt);
}
.pr-cta--autopilot {
  background: var(--pr-emerald);
  color: #fff !important; /* §19 DS: white text on green bg */
  border: none;
  box-shadow: 0 4px 16px rgba(0,135,90,.35);
  font-size: .9rem;
}
.pr-cta--autopilot:hover {
  background: var(--pr-emerald-h);
  box-shadow: 0 8px 24px rgba(0,135,90,.45);
  transform: translateY(-1px);
  color: #fff !important;
}

/* Feature list */
.pr-features {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: .52rem;
  flex: 1;
}
.pr-features li {
  display: flex;
  align-items: flex-start;
  gap: .45rem;
  font-size: .8rem;
  line-height: 1.45;
  color: var(--pr-body);
  min-height: 0;
  min-width: 0;
}
.pr-features li strong { color: var(--pr-text); }

.pr-feature-head {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #4B5563; /* 7.0:1 on white — WCAG AA */
  margin: .85rem 0 .55rem;
  padding-top: .75rem;
  border-top: 1px solid var(--pr-border);
}

.pr-check-icon { flex-shrink: 0; margin-top: .1rem; width: 15px; height: 15px; }

/* ── ONE-TIME PRODUCTS SECTION ─────────────────────────── */
.pr-otp-section {
  background: var(--pr-white);
  border-top: 1px solid var(--pr-border);
  padding: clamp(3rem, 6vw, 5rem) clamp(.75rem, 3vw, 2rem);
}
.pr-otp-inner { max-width: 1200px; margin: 0 auto; }
.pr-section-eyebrow {
  text-align: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pr-emerald);
  margin-bottom: .7rem;
}
.pr-section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 900;
  letter-spacing: -.025em;
  color: var(--pr-text);
  text-align: center;
  margin-bottom: .6rem;
  line-height: 1.1;
}
.pr-section-sub {
  text-align: center;
  font-size: .95rem;
  color: var(--pr-body);
  margin-bottom: 2.8rem;
}
.pr-section-sub--faq {
  margin-bottom: 2rem;
}

.pr-otp-group { margin-bottom: 2.5rem; }
.pr-otp-group:last-child { margin-bottom: 0; }
.pr-otp-group-title {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pr-text);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--pr-border);
}
.pr-otp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .9rem;
}
.pr-otp-card {
  background: var(--pr-white);
  border: 1.5px solid var(--pr-border);
  border-radius: var(--pr-radius);
  padding: 1.25rem 1.15rem 1.1rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--pr-shadow);
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.pr-otp-card:hover { transform: translateY(-2px); box-shadow: var(--pr-shadow-lg); }
.pr-otp-badge {
  position: absolute;
  top: .8rem; right: .8rem;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .18rem .48rem;
  border-radius: 100px;
  background: var(--pr-emerald-lt);
  color: #065F46; /* emerald-800: 7.1:1 on #E6F9F3 */
}
.pr-otp-name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--pr-text);
  padding-right: 3.5rem;
  margin-bottom: .3rem;
  line-height: 1.3;
}
.pr-otp-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--pr-text);
  letter-spacing: -.02em;
  margin-bottom: .15rem;
}
.pr-otp-price small {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  color: var(--pr-body);
}
.pr-otp-desc {
  font-size: .78rem;
  color: var(--pr-body);
  line-height: 1.45;
  flex: 1;
  margin-bottom: .8rem;
}
.pr-otp-cta {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: .8rem;
  padding: .58rem .8rem;
  border-radius: 9px;
  text-decoration: none;
  background: var(--pr-emerald);
  color: #fff !important; /* §19 DS: white text on green bg */
  transition: all .18s;
  box-shadow: 0 2px 8px rgba(0,135,90,.2);
}
.pr-otp-cta:hover {
  background: var(--pr-emerald-h);
  box-shadow: 0 4px 14px rgba(0,135,90,.3);
  color: #fff !important;
}

/* 2-column add-ons grid */
.pr-otp-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 640px) { .pr-otp-grid--2 { grid-template-columns: 1fr; } }

/* ── COMPARISON TABLE ───────────────────────────────────── */
.pr-compare-section {
  padding: clamp(3rem, 6vw, 5rem) clamp(.75rem, 3vw, 2rem);
  background: var(--pr-white);
}
.pr-compare-inner { max-width: 1280px; margin: 0 auto; }
.pr-compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--pr-radius);
  border: 1.5px solid var(--pr-border);
  box-shadow: var(--pr-shadow);
}
.pr-compare-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-size: .83rem;
}
.pr-compare-table thead tr {
  background: #F9FAFB;
  border-bottom: 2px solid var(--pr-border);
}
.pr-compare-table th {
  padding: .95rem .8rem;
  text-align: center;
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--pr-text);
  white-space: nowrap;
}
.pr-compare-table th:first-child {
  text-align: left;
  padding-left: 1.3rem;
  font-size: .78rem;
  text-transform: none;
  letter-spacing: 0;
}
.pr-compare-table th.th-popular {
  color: var(--pr-emerald);
  position: relative;
}
.pr-compare-table th.th-popular::after {
  content: 'Most Popular';
  display: block;
  font-size: .58rem;
  color: var(--pr-emerald);
  margin-top: .15rem;
  letter-spacing: .06em;
}
.pr-compare-table th.th-auto {
  color: var(--pr-text);
}
.pr-compare-table td {
  padding: .6rem .8rem;
  text-align: center;
  border-bottom: 1px solid #F3F4F6;
  vertical-align: middle;
}
.pr-compare-table td:first-child {
  text-align: left;
  padding-left: 1.3rem;
  font-weight: 500;
  color: var(--pr-text);
}
.pr-compare-table tbody tr:last-child td { border-bottom: none; }
.pr-compare-table tbody tr:hover td { background: #F9FAFB; }
.pr-compare-table .pr-tick {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  background: var(--pr-emerald-lt);
  border-radius: 50%;
}
.pr-compare-table .pr-cross {
  display: inline-block; width: 16px; height: 2px;
  background: #D1D5DB;
  border-radius: 2px;
  vertical-align: middle;
}
.pr-compare-table .pr-section-row td {
  background: #F9FAFB;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--pr-body);
  padding: .5rem 1.3rem;
  border-bottom: 1px solid var(--pr-border);
}

/* ── FAQ ────────────────────────────────────────────────── */
.pr-faq-section {
  background: var(--pr-white);
  border-top: 1px solid var(--pr-border);
  padding: clamp(3rem, 6vw, 5rem) clamp(.75rem, 3vw, 2rem);
}
.pr-faq-inner {
  max-width: 740px;
  margin: 0 auto;
}
.pr-faq-item {
  border-bottom: 1px solid var(--pr-border);
}
.pr-faq-item:first-of-type { border-top: 1px solid var(--pr-border); }
.pr-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  color: var(--pr-text);
  font-family: 'DM Sans', sans-serif;
  user-select: none;
  transition: color .15s;
  line-height: 1.4;
}
.pr-faq-q:hover { color: var(--pr-emerald); }
.pr-faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 1.5px solid var(--pr-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
  color: var(--pr-body);
  font-size: .9rem;
  font-weight: 300;
}
.pr-faq-item.open .pr-faq-icon {
  background: var(--pr-emerald);
  border-color: var(--pr-emerald);
  color: #fff;
  transform: rotate(45deg);
}
.pr-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease-out, padding .2s ease-out;
  font-size: .88rem;
  color: var(--pr-body);
  line-height: 1.65;
  padding-bottom: 0;
}
.pr-faq-item.open .pr-faq-a {
  max-height: 500px;
  padding-bottom: 1.1rem;
  transition: max-height .3s ease-in, padding .2s ease-in;
}

/* ── FINAL CTA ──────────────────────────────────────────── */
.pr-final-cta {
  background: var(--pr-white);
  border-top: 1px solid var(--pr-border);
  text-align: center;
  padding: clamp(3.5rem, 7vw, 5.5rem) 1.5rem;
}
.pr-final-cta h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--pr-text);
  letter-spacing: -.025em;
  margin-bottom: .7rem;
  line-height: 1.1;
}
.pr-final-cta p {
  font-size: 1rem;
  color: var(--pr-body);
  margin-bottom: 1.8rem;
}
.pr-final-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--pr-emerald);
  color: #fff !important; /* §19 DS: white text on green bg */
  font-weight: 700;
  font-size: 1rem;
  padding: .9rem 2.2rem;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,135,90,.35);
  transition: all .2s;
}
.pr-final-cta-btn:hover {
  background: var(--pr-emerald-h);
  box-shadow: 0 8px 30px rgba(0,135,90,.45);
  transform: translateY(-2px);
  color: #fff !important;
}
.pr-final-cta-note {
  display: block;
  font-size: .8rem;
  color: #6B7280; /* 4.54:1 on white — WCAG AA min */
  margin-top: 1rem;
}

/* ── POPULAR BADGE ──────────────────────────────────────── */
.pr-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pr-emerald);
  color: #fff !important; /* §19 DS: white text on green bg */
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: .26rem .9rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(0,135,90,.4);
  z-index: 2;
}

/* ── SOCIAL PROOF ──────────────────────────────────────── */
.pr-social-proof {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  color: var(--pr-body);
  margin-bottom: .5rem;
}
.pr-social-proof-dot {
  width: 7px; height: 7px;
  background: var(--pr-emerald);
  border-radius: 50%;
  flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .55; }
}
.pr-social-proof strong { color: var(--pr-text); font-weight: 700; }

.pr-testimonial {
  font-size: .72rem;
  color: #4B5563; /* 7.0:1 on white — WCAG AA */
  font-style: italic;
  line-height: 1.5;
  padding: .55rem .7rem;
  background: var(--pr-emerald-lt);
  border-radius: 8px;
  margin-bottom: .85rem;
  border-left: 2px solid var(--pr-emerald);
}
.pr-testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: #4B5563; /* 7.0:1 on white — WCAG AA */
  font-size: .65rem;
  margin-top: .25rem;
}

/* ── LOSS FRAMING ──────────────────────────────────────── */
.pr-loss-frame {
  font-size: .7rem;
  color: #78350F; /* amber-900: 7.5:1 on #FFFBEB — WCAG AA */
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: 8px;
  padding: .48rem .65rem;
  margin-top: .8rem;
  margin-top: auto;
  line-height: 1.5;
}

/* ── ANNUAL SAVINGS NUDGE ──────────────────────────────── */
.pr-annual-nudge {
  display: block;
  font-size: .68rem;
  color: var(--pr-emerald);
  font-weight: 700;
  text-align: center;
  margin: -.4rem 0 .7rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: .9;
  transition: opacity .15s;
  letter-spacing: .01em;
}
.pr-annual-nudge:hover { opacity: 1; }
body.billing-annual .pr-annual-nudge { display: none !important; }

/* ── URGENCY BAR ──────────────────────────────────────── */
.pr-urgency-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  background: #FFFBEB;
  border: 1.5px solid #FCD34D;
  border-radius: 10px;
  padding: .7rem 1.1rem;
  font-size: .8rem;
  color: #92400E; /* 6.37:1 on #FFFBEB — WCAG AA */
  font-weight: 600;
  margin: 1.4rem auto 0;
  max-width: 490px;
  line-height: 1.4;
  text-align: center;
}
.pr-urgency-pulse {
  display: inline-block;
  width: 8px; height: 8px;
  background: #F59E0B;
  border-radius: 50%;
  flex-shrink: 0;
  animation: urgencyPulse 1.8s ease-in-out infinite;
}
@keyframes urgencyPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .55; transform: scale(.8); }
}

/* ── TRUST STRIP ──────────────────────────────────────── */
.pr-trust-strip {
  background: #F8FFFE;
  border-top: 1px solid #D1FAE5;
  border-bottom: 1px solid #D1FAE5;
  padding: 1.6rem 1.5rem;
}
.pr-trust-strip-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  align-items: center;
  text-align: center;
}
.pr-trust-headline {
  font-size: .85rem;
  font-weight: 600;
  color: var(--pr-body);
}
.pr-trust-headline strong {
  color: var(--pr-emerald);
  font-weight: 800;
}
.pr-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.pr-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  font-size: .72rem;
  font-weight: 600;
  color: var(--pr-body);
  background: var(--pr-white);
  border: 1px solid #D1FAE5;
  border-radius: 100px;
  padding: .32rem .8rem;
  white-space: nowrap;
  min-height: 0;
  min-width: 0;
}

/* ── UPGRADE COUNT ───────────────────────────────────── */
.pr-upgrade-count {
  font-size: .72rem;
  color: #374151; /* 8.0:1 on white — WCAG AA */
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: .3rem;
}

/* ── REFERRAL CALLOUT ──────────────────────────────────── */
.pr-referral-section {
  background: #f0fdf9;
  border-top: 1px solid #a7f3d0;
  border-bottom: 1px solid #a7f3d0;
  padding: 40px 24px;
  text-align: center;
}
.pr-referral-inner {
  max-width: 640px;
  margin: 0 auto;
}
.pr-referral-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #dcfce7;
  border: 1px solid #86efac;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: .72rem;
  font-weight: 800;
  color: #166534; /* 8.1:1 on #dcfce7 — WCAG AA */
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
}
.pr-referral-heading {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0A0A0A;
  margin: 0 0 10px;
  line-height: 1.3;
}
.pr-referral-body {
  font-size: .95rem;
  color: #374151;
  margin: 0 0 20px;
  line-height: 1.6;
}
.pr-referral-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pr-emerald);
  color: #fff !important; /* §19 DS: white text on green bg */
  font-weight: 700;
  font-size: .9rem;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,135,90,.25);
  transition: all .2s;
}
.pr-referral-cta:hover {
  background: var(--pr-emerald-h);
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(0,135,90,.35);
  transform: translateY(-1px);
}
.pr-referral-note {
  margin: 12px 0 0;
  font-size: .78rem;
  color: #6B7280; /* 4.54:1 on white — WCAG AA min */
}
.pr-referral-note a {
  color: var(--pr-emerald);
  font-weight: 600;
  text-decoration: none;
}
.pr-referral-note a:hover {
  text-decoration: underline;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .pr-plans-grid { grid-template-columns: repeat(2, 1fr); }
  .pr-card--popular { transform: none !important; }
  .pr-card--popular:hover { transform: translateY(-4px) !important; }

  /* Reset forced 44px sizing from mobile accessibility CSS */
  .pr-card a:not(.pr-cta),
  .pr-card span, .pr-card p, .pr-card li, .pr-card strong, .pr-card cite,
  .pr-otp-card a:not(.pr-otp-cta), .pr-otp-card span, .pr-otp-card p,
  .pr-features li, .pr-features li a,
  .pr-savings-row, .pr-save-global-badge, .pr-otp-badge,
  .pr-tier-badge, .pr-popular-badge, .pr-best-value-badge,
  .pr-card-name, .pr-card-tag, .pr-feature-head,
  .pr-price-num, .pr-price-num small, .pr-testimonial,
  .pr-testimonial cite, .pr-loss-frame, .pr-upgrade-count,
  .pr-annual-nudge, .pr-price-block,
  .pr-toggle-label, .pr-toggle-switch,
  .pr-hero-sub, .pr-biz-link, .pr-catalog-link,
  .pr-urgency-bar, .pr-section-eyebrow, .pr-section-title,
  .pr-section-sub, .pr-final-cta-note,
  .pr-compare-table a, .pr-compare-table span,
  .pr-compare-table td, .pr-compare-table th,
  .pr-faq-q, .pr-faq-a, .pr-faq-item span,
  .pr-trust-strip span, .pr-trust-strip p,
  .pr-otp-name, .pr-otp-price, .pr-otp-price small, .pr-otp-desc {
    min-height: 0 !important;
    min-width: 0 !important;
  }
  .pr-features li a {
    display: inline !important;
  }
}
@media (max-width: 560px) {
  .pr-plans-grid { grid-template-columns: 1fr; max-width: 420px; }
  .pr-otp-grid { grid-template-columns: 1fr 1fr; }
  .pr-card--popular { transform: none !important; }
  .pr-card--popular:hover { transform: translateY(-4px) !important; }
  .pr-plans-inner { max-width: 420px !important; }
}
@media (max-width: 420px) {
  .pr-otp-grid { grid-template-columns: 1fr; }
}
