/* ── Monetization Components ── */

/* Premium upsell banner */
.premium-upsell {
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(168,85,247,0.08));
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.premium-upsell .upsell-text { flex: 1; min-width: 200px; }
.premium-upsell .upsell-text strong { font-size: 0.95rem; }
.premium-upsell .upsell-text p { font-size: 0.82rem; color: var(--text-secondary); margin-top: 0.2rem; }

.buy-btn {
  background: linear-gradient(135deg, var(--accent), #a855f7);
  color: white;
  border: none;
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: all 0.2s;
}
.buy-btn:hover { box-shadow: 0 0 16px var(--accent-glow); transform: translateY(-1px); }
.buy-btn.outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-light);
}
.buy-btn.outline:hover { background: rgba(124,58,237,0.1); }

/* Affiliate card */
.affiliate-card {
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
}
.affiliate-card .aff-icon { font-size: 1.3rem; flex-shrink: 0; }
.affiliate-card .aff-body { flex: 1; }
.affiliate-card .aff-body strong { display: block; margin-bottom: 0.15rem; }
.affiliate-card .aff-body span { color: var(--text-secondary); font-size: 0.78rem; }
.affiliate-card .aff-link {
  color: var(--accent-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  white-space: nowrap;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all 0.2s;
}
.affiliate-card .aff-link:hover { border-color: var(--accent); background: rgba(124,58,237,0.08); }

/* Lead gen CTA */
.lead-cta {
  background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(5,150,105,0.04));
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 1rem 0;
  text-align: center;
}
.lead-cta strong { color: var(--green); }
.lead-cta p { font-size: 0.85rem; color: var(--text-secondary); margin-top: 0.3rem; }

/* Sponsored badge */
.sponsored-badge {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber);
  border: 1px solid rgba(245,158,11,0.3);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

/* Report upsell card */
.report-card {
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-top: 1.25rem;
  text-align: center;
}
.report-card .report-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-light);
  margin: 0.3rem 0;
}
.report-card p { font-size: 0.82rem; color: var(--text-secondary); }

/* Batch processing upsell */
.batch-upsell {
  background: var(--elevated);
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  margin-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
}
.batch-upsell .price-tag {
  font-weight: 700;
  color: var(--accent-light);
}
