/* ============================================================
   MailToPDF — pro page
   Pricing cards + comparison + why-we-charge
============================================================ */

.pro-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================================
   Hero
============================================================ */
.pro-hero {
  text-align: center;
  padding: clamp(48px, 7vw, 90px) 0 clamp(40px, 6vw, 72px);
  border-bottom: 1px solid var(--rule);
}
.pro-hero .hero-meta { margin-bottom: 28px; }
.pro-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 84px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 28px;
}
.pro-title em { color: var(--accent); }
.pro-lede {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 auto;
  font-variation-settings: "opsz" 18, "wght" 380;
}
.pro-lede em { color: var(--accent); }

/* ============================================================
   Pricing cards
============================================================ */
.pro-pricing {
  padding: clamp(60px, 7vw, 100px) 0;
}
.pricing-cards {
  max-width: var(--max-narrow);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
}
@media (max-width: 760px) {
  .pricing-cards { grid-template-columns: 1fr; }
}

.pricing-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
}
.pricing-card-featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.pricing-card-featured .pricing-tag,
.pricing-card-featured .pricing-blurb,
.pricing-card-featured .pricing-period,
.pricing-card-featured .pricing-features li,
.pricing-card-featured .pricing-fineprint,
.pricing-card-featured .pricing-alt {
  color: rgba(243, 237, 224, 0.85);
}
.pricing-card-featured .pricing-amount,
.pricing-card-featured .pricing-features strong {
  color: var(--paper);
}
.pricing-card-featured .pricing-features li::before {
  background: var(--paper);
  opacity: 0.5;
}

.pricing-card-ribbon {
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--accent);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--accent);
}

.pricing-card-head {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.pricing-card-featured .pricing-card-head {
  border-bottom-color: rgba(243, 237, 224, 0.2);
}
.pricing-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 8px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 64px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.pricing-period {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-muted);
}
.pricing-alt {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
}
.pricing-alt strong {
  color: var(--accent);
  font-weight: 600;
}
.pricing-card-featured .pricing-alt strong {
  color: #d49b9b;
}
.pricing-blurb {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-muted);
  margin-bottom: 22px;
  line-height: 1.4;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.pricing-features li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  border-bottom: 1px dotted var(--rule-soft);
}
.pricing-card-featured .pricing-features li {
  border-bottom-color: rgba(243, 237, 224, 0.12);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 16px;
  width: 6px;
  height: 1px;
  background: var(--accent);
}
.pricing-features li code {
  background: var(--bg-warm);
  padding: 1px 6px;
  font-size: 0.85em;
  color: var(--accent);
  border: 1px solid var(--rule-soft);
}
.pricing-card-featured .pricing-features li code {
  background: rgba(250, 246, 236, 0.08);
  border-color: rgba(250, 246, 236, 0.15);
  color: #d49b9b;
}
.pricing-features li em {
  color: var(--ink);
  font-style: italic;
}
.pricing-card-featured .pricing-features li em {
  color: var(--paper);
}
.pricing-features li strong {
  color: var(--ink);
  font-weight: 600;
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid;
  transition: background 0.2s, transform 0.2s, gap 0.25s;
  text-align: center;
}
.pricing-cta:hover {
  transform: translateY(-1px);
  gap: 14px;
}
.pricing-cta-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.pricing-cta-secondary:hover {
  background: var(--ink);
  color: var(--bg);
}
.pricing-cta-primary {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.pricing-cta-primary:hover {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
  color: var(--paper);
}

.pricing-fineprint {
  margin-top: 10px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  text-align: center;
  color: var(--ink-muted);
}

/* ============================================================
   Comparison
============================================================ */
.pro-compare {
  padding: clamp(60px, 7vw, 100px) 0;
}
.pro-compare .comparison-row {
  grid-template-columns: 2fr 1fr 1fr;
}
.pro-compare .comparison-cell em {
  color: var(--ink-faint);
  font-size: 13px;
  margin-left: 6px;
}
.pro-compare .comparison-cell.highlight em {
  color: rgba(243, 237, 224, 0.6);
}

/* ============================================================
   Why we charge
============================================================ */
.pro-why {
  padding: clamp(60px, 7vw, 100px) 0;
}
.pro-why-body {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.pro-why-body p {
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 64ch;
  font-variation-settings: "opsz" 16, "wght" 400;
}
.pro-why-body p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 3em;
  float: left;
  line-height: 0.9;
  margin: 6px 12px 0 0;
  color: var(--accent);
}

/* ============================================================
   FAQ (reuses .faq-list / .faq-item from styles.css)
============================================================ */
.pro-faq {
  padding: clamp(60px, 7vw, 100px) 0;
}

/* ============================================================
   Final CTA tweak — already styled by styles.css .final-cta
============================================================ */
.pro-main .final-cta {
  margin-top: clamp(40px, 6vw, 80px);
}
