/* Standalone /pricing page — the homepage pricing tier footer surfaced with
   dental-specific deliverables so outreach can paste one URL into cold
   follow-ups. Uses theme tokens from theme.css; mirrors the conventions in
   public/css/comparison.css and public/css/case-study.css. */

.pricing-page {
  background: var(--bg);
  min-height: 100vh;
  padding: 5rem 1.25rem 4rem;
}

.pricing-shell {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 3rem;
}

.pricing-kicker {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.pricing-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.pricing-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 720px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.featured { border-color: var(--amber); }

.pricing-header { margin-bottom: 1.25rem; }

/* Note: .pricing-name / .pricing-amount / .amount / .period / .pricing-desc
   / .pricing-features / .pricing-feature are declared in theme.css and reused
   on the standalone page — don't redefine them here. */

.pricing-card .btn-primary,
.pricing-card .btn-secondary { width: 100%; text-align: center; margin-top: 1.5rem; }

/* ─── Dental-specific deliverables block (per-tier) ─── */
.pricing-card-dental {
  margin: 1.25rem 0 1.5rem;
  padding: 1.1rem 1.2rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  border-left: 3px solid var(--amber);
}

.pricing-card-dental-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.85rem;
}

.pricing-card-dental-row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.55rem 0;
  border-top: 1px solid var(--border);
}

.pricing-card-dental-row:first-of-type { border-top: none; padding-top: 0; }

.pricing-card-dental-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pricing-card-dental-value {
  font-size: 0.88rem;
  color: var(--cream-2);
  line-height: 1.55;
}

/* ─── Page-level CTA + fineprint ─── */
.pricing-cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 0.25rem;
}

.pricing-fineprint {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  font-style: italic;
}

/* ─── Responsive: collapse the 3-column grid on small screens ─── */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .pricing-page { padding: 3rem 1rem 2rem; }
  .pricing-shell { padding: 1.75rem 1.25rem; }
}
