/* ═══════════════════════════════════════════════════════════
   VERBATIM — Pricing Styles  ·  Minimalist Modern
═══════════════════════════════════════════════════════════ */

#pricing { background: var(--surface-raised); }

/* ── Toggle row ── */
.pricing-toggle-row {
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-4); margin-bottom: var(--space-12);
  flex-wrap: wrap;
}

/* ── Tiers grid ── */
.pricing-grid {
  display: grid; gap: var(--space-5);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 640px)  { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) {
  .pricing-grid { grid-template-columns: repeat(4, 1fr); align-items: end; }
}

/* ── Base pricing card ── */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  border: 1px solid var(--border);
  border-top: 4px solid var(--border);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex; flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Tier border colours */
.pricing-card[data-tier="free"]       { border-top-color: var(--tier-free); }
.pricing-card[data-tier="basic"]      { border-top-color: var(--tier-basic); }
.pricing-card[data-tier="presence"]   { border-top-color: var(--tier-premium); }
.pricing-card[data-tier="enterprise"] { border-top-color: var(--tier-enterprise); }

/* Featured card (Presence) — elevated */
.pricing-card.featured {
  background: var(--white);
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-accent-lg);
}
.pricing-card.featured:hover { box-shadow: var(--shadow-accent-lg); }

@media (min-width: 1200px) {
  .pricing-card.featured { padding-top: 48px; padding-bottom: 48px; margin-top: -12px; }
}

/* Popular badge */
.pricing-popular-badge {
  position: absolute; top: -1px; right: var(--space-5);
  background: var(--gold); color: #FFFFFF;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: 0 4px 14px rgba(0,82,255,0.25);
}

/* ── Card internals ── */
.pricing-tier-name {
  font-family: var(--font-display); font-size: 24px; font-weight: 400;
  color: var(--text-primary); margin-bottom: var(--space-1);
}
.pricing-tagline {
  font-size: 14px; color: var(--text-secondary); margin-bottom: var(--space-6);
  font-style: italic;
}
.pricing-price-row {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: var(--space-1);
}
.pricing-currency { font-size: 18px; font-weight: 600; color: var(--text-muted); }
.pricing-amount {
  font-family: var(--font-display); font-size: 44px; font-weight: 400;
  color: var(--text-primary); line-height: 1;
}
.pricing-period { font-size: 14px; color: var(--text-muted); }
.pricing-original { font-size: 14px; color: var(--text-muted); text-decoration: line-through; margin-left: 4px; }
.pricing-save-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  background: var(--success-bg); color: var(--success);
  padding: 2px 8px; border-radius: var(--radius-full); margin-left: var(--space-2);
  border: 1px solid rgba(22,163,74,0.2);
}
.pricing-billing-note {
  font-size: 12px; color: var(--text-muted); min-height: 18px;
  margin-bottom: var(--space-5);
  font-family: var(--font-mono);
}

/* Tier-coloured check marks */
.pricing-card[data-tier="free"]       .check { color: var(--tier-free); }
.pricing-card[data-tier="basic"]      .check { color: var(--tier-basic); }
.pricing-card[data-tier="presence"]   .check { color: var(--tier-premium); }
.pricing-card[data-tier="enterprise"] .check { color: var(--tier-enterprise); }

.pricing-cta-wrap { margin-top: auto; padding-top: var(--space-6); }
.pricing-cta-wrap .btn { font-size: 14px; padding: 12px 20px; }

/* ── FAQ section (below pricing) ── */
.pricing-faq { max-width: 720px; margin: var(--space-20) auto 0; }
.pricing-faq h3 { font-size: 24px; margin-bottom: var(--space-8); text-align: center; }
