/* MerchantPulse Pricing — extends theme.css */

/* ─── PRICING HERO ─────────────────────────────── */
.pricing-hero {
  padding: 120px 48px 80px;
  text-align: center;
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pricing-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(240,165,0,0.1);
  border: 1px solid rgba(240,165,0,0.25);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.pricing-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}
.pricing-hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.65;
}
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}
.pricing-toggle-label { color: var(--white); font-weight: 500; cursor: pointer; }
.pricing-toggle-label.active { color: var(--amber); }
.toggle-switch {
  width: 48px;
  height: 26px;
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.toggle-switch.on { background: rgba(240,165,0,0.25); border-color: rgba(240,165,0,0.4); }
.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--muted);
  border-radius: 50%;
  transition: left 0.2s, background 0.2s;
}
.toggle-switch.on .toggle-knob { left: 25px; background: var(--amber); }
.save-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(240,165,0,0.12);
  border: 1px solid rgba(240,165,0,0.25);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ─── PRICING TABLE ────────────────────────────── */
.pricing-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px 36px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { border-color: rgba(255,255,255,0.15); }
.pricing-card.popular {
  border-color: rgba(240,165,0,0.4);
  background: linear-gradient(180deg, rgba(240,165,0,0.06) 0%, var(--surface) 60%);
  box-shadow: 0 0 40px rgba(240,165,0,0.08);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--amber);
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.tier-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
}
.price-period {
  font-size: 14px;
  color: var(--muted);
}
.tier-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 32px;
}
.tier-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 28px;
}
.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.tier-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: var(--off-white);
  line-height: 1.4;
}
.feature-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(240,165,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-check svg { width: 10px; height: 10px; }
.btn-tier {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
.btn-tier-primary {
  background: var(--amber);
  color: var(--navy);
}
.btn-tier-primary:hover { opacity: 0.85; }
.btn-tier-outline {
  background: transparent;
  color: var(--amber);
  border: 1px solid rgba(240,165,0,0.35);
}
.btn-tier-outline:hover { background: rgba(240,165,0,0.08); }

/* ─── FAQ ──────────────────────────────────────── */
.faq-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 48px 100px;
}
.faq-header {
  text-align: center;
  margin-bottom: 60px;
}
.faq-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 12px;
}
.faq-sub {
  font-size: 16px;
  color: var(--muted);
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--amber); }
.faq-toggle {
  font-size: 20px;
  color: var(--muted);
  transition: transform 0.2s, color 0.2s;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); color: var(--amber); }
.faq-a {
  display: none;
  padding: 0 0 24px;
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ─── TRUST BAR ────────────────────────────────── */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}
.trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(240,165,0,0.1);
  border: 1px solid rgba(240,165,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  .pricing-hero { padding: 100px 24px 60px; }
  .pricing-hero-title { font-size: 36px; }
  .pricing-section { padding: 60px 24px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
  .pricing-card.popular { order: -1; }
  .faq-section { padding: 0 24px 80px; }
  .trust-bar { padding: 32px 24px; }
  .trust-inner { gap: 24px; }
}