/* ============================================================
   FinClarity Monetization Styles v1.0
   PDF Reports, Sponsored Blocks, Email, Advisor, Donations
   ============================================================ */

/* ===================== PDF REPORT ENGINE ===================== */

/* PDF Modal Overlay */
.fc-pdf-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: fcFadeIn 0.2s ease;
}

.fc-pdf-modal {
  background: white;
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 24px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.fc-pdf-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  color: #94a3b8;
  cursor: pointer;
  line-height: 1;
  z-index: 1;
}

.fc-pdf-header {
  text-align: center;
  margin-bottom: 20px;
}

.fc-pdf-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 8px;
}

.fc-pdf-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}

.fc-pdf-header p {
  font-size: 13px;
  color: #64748b;
}

/* Tiers */
.fc-pdf-tier {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  position: relative;
  transition: all 0.2s ease;
}

.fc-pdf-tier:hover {
  border-color: #14b8a6;
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.1);
}

.fc-pdf-tier-pro {
  border-color: #14b8a6;
  background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
}

.fc-pdf-popular {
  position: absolute;
  top: -10px;
  right: 16px;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fc-pdf-tier-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.fc-pdf-tier-name {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
}

.fc-pdf-tier-price {
  font-size: 20px;
  font-weight: 800;
  color: #0f766e;
}

.fc-pdf-features {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.fc-pdf-features li {
  font-size: 13px;
  color: #475569;
  padding: 3px 0;
}

.fc-pdf-btn {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.fc-pdf-btn-free {
  background: #f1f5f9;
  color: #475569;
}
.fc-pdf-btn-free:hover { background: #e2e8f0; }

.fc-pdf-btn-pro {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: white;
}
.fc-pdf-btn-pro:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(20,184,166,0.3); }

.fc-pdf-btn-premium {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #1e293b;
}
.fc-pdf-btn-premium:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(245,158,11,0.3); }

.fc-pdf-trust {
  text-align: center;
  font-size: 11px;
  color: #94a3b8;
  margin-top: 12px;
}

/* PDF Trigger Button */
.fc-pdf-trigger-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.fc-pdf-trigger-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(20,184,166,0.3); }

.fc-pdf-trigger-badge {
  background: rgba(255,255,255,0.2);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
}

.fc-pdf-trigger-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 999;
}

/* Inline CTA */
.fc-pdf-inline-cta {
  margin-top: 12px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #f0fdfa 0%, #f8fafc 100%);
  border: 1px solid rgba(20,184,166,0.2);
  border-radius: 10px;
}

.fc-pdf-inline-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fc-pdf-inline-content span:first-child { font-size: 24px; }

.fc-pdf-inline-content div {
  flex: 1;
}

.fc-pdf-inline-content strong {
  display: block;
  font-size: 13px;
  color: #1e293b;
}

.fc-pdf-inline-content div > span {
  font-size: 11px;
  color: #64748b;
}

.fc-pdf-inline-btn {
  padding: 6px 16px;
  background: #0f766e;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

/* Toast */
.fc-pdf-toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #1e293b;
  color: white;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  z-index: 10001;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.fc-pdf-toast.show { transform: translateX(-50%) translateY(0); }

.fc-pdf-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: fcSpin 0.8s linear infinite;
}

@keyframes fcSpin { to { transform: rotate(360deg); } }
@keyframes fcFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* =================== SPONSORED ENGINE =================== */

.fc-sponsored-block {
  margin: 20px 0;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.fc-sponsored-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.fc-sponsored-label {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
}

.fc-sponsored-tag {
  font-size: 10px;
  color: #94a3b8;
  background: #f1f5f9;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fc-sponsored-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.fc-sponsored-card {
  display: block;
  padding: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.fc-sponsored-card:hover {
  border-color: #14b8a6;
  background: #f0fdfa;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(20,184,166,0.1);
}

.fc-sponsored-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.fc-sponsored-logo {
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  flex-shrink: 0;
}

.fc-sponsored-info { flex: 1; }

.fc-sponsored-brand {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
}

.fc-sponsored-category {
  display: block;
  font-size: 11px;
  color: #94a3b8;
}

.fc-sponsored-highlight {
  font-size: 10px;
  font-weight: 700;
  color: #0f766e;
  background: rgba(20,184,166,0.1);
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.fc-sponsored-tagline {
  font-size: 13px;
  color: #475569;
  line-height: 1.4;
  margin-bottom: 10px;
}

.fc-sponsored-cta {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #0f766e;
}

/* =================== EMAIL SMART BAR =================== */

.fc-email-smart {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 3px solid #14b8a6;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  padding: 16px 20px;
}

.fc-email-smart.show { transform: translateY(0); }

.fc-email-smart-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

.fc-email-smart-close {
  position: absolute;
  top: -8px;
  right: -4px;
  background: none;
  border: none;
  font-size: 20px;
  color: #94a3b8;
  cursor: pointer;
}

.fc-email-smart-content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 200px;
}

.fc-email-smart-icon { font-size: 28px; }

.fc-email-smart-text strong {
  display: block;
  font-size: 14px;
  color: #1e293b;
}

.fc-email-smart-text span {
  font-size: 12px;
  color: #64748b;
}

.fc-email-smart-form {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.fc-email-smart-input {
  padding: 10px 14px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  width: 220px;
  outline: none;
}

.fc-email-smart-input:focus { border-color: #14b8a6; }

.fc-email-smart-btn {
  padding: 10px 20px;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.fc-email-smart-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(20,184,166,0.3); }

.fc-email-smart-success {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #1e293b;
  padding: 8px 0;
}

/* =================== ADVISOR CTA =================== */

.fc-advisor-cta {
  margin: 20px 0;
  padding: 20px;
  background: linear-gradient(135deg, #eff6ff 0%, #f0fdfa 100%);
  border: 1px solid rgba(20,184,166,0.2);
  border-left: 4px solid #3b82f6;
  border-radius: 12px;
}

.fc-advisor-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.fc-advisor-icon { font-size: 28px; }

.fc-advisor-header strong {
  display: block;
  font-size: 16px;
  color: #1e293b;
  margin-bottom: 2px;
}

.fc-advisor-header span {
  font-size: 13px;
  color: #64748b;
  display: block;
}

.fc-advisor-btn {
  padding: 10px 24px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.fc-advisor-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(59,130,246,0.3); }

.fc-advisor-trust {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 10px;
}

/* Lead Form Modal */
.fc-lead-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: fcFadeIn 0.2s ease;
}

.fc-lead-modal {
  background: white;
  border-radius: 16px;
  max-width: 440px;
  width: 100%;
  padding: 28px;
  position: relative;
}

.fc-lead-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  color: #94a3b8;
  cursor: pointer;
}

.fc-lead-modal h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
}

.fc-lead-modal > p {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 20px;
}

.fc-lead-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fc-lead-input {
  padding: 10px 14px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
}

.fc-lead-input:focus { border-color: #3b82f6; }

.fc-lead-textarea {
  min-height: 60px;
  resize: vertical;
}

.fc-lead-submit {
  padding: 12px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.fc-lead-submit:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(59,130,246,0.3); }

.fc-lead-trust {
  font-size: 11px;
  color: #94a3b8;
  text-align: center;
  margin-top: 12px;
}

/* =================== DONATION ENGINE =================== */

.fc-donate-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 998;
  animation: fcSlideUp 0.5s ease;
}

@keyframes fcSlideUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.fc-donate-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: #1e293b;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
}

.fc-donate-btn:hover { background: #0f766e; transform: translateY(-2px); }

.fc-donate-icon { font-size: 18px; }

.fc-donate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: fcFadeIn 0.2s ease;
}

.fc-donate-modal {
  background: white;
  border-radius: 16px;
  max-width: 400px;
  width: 100%;
  padding: 32px;
  text-align: center;
  position: relative;
}

.fc-donate-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  color: #94a3b8;
  cursor: pointer;
}

.fc-donate-emoji { font-size: 48px; display: block; margin-bottom: 8px; }

.fc-donate-modal h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.fc-donate-modal > p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.fc-donate-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fc-donate-option {
  display: block;
  padding: 12px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  background: white;
  transition: all 0.2s ease;
}

.fc-donate-option:hover { border-color: #14b8a6; background: #f0fdfa; }

.fc-donate-note {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 16px;
}

/* =================== CONVERSION OPTIMIZATION =================== */

.fc-social-proof {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #64748b;
  padding: 6px 0;
  margin-top: -4px;
  margin-bottom: 8px;
}

.fc-proof-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: fcPulse 2s ease infinite;
  flex-shrink: 0;
}

@keyframes fcPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.fc-save-result {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e2e8f0;
}

.fc-save-btn, .fc-share-result-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
}

.fc-save-btn:hover, .fc-share-result-btn:hover {
  background: #f0fdfa;
  border-color: #14b8a6;
  color: #0f766e;
}

/* ============= PRICING PSYCHOLOGY ENGINE ============= */

/* --- Post-Result Panel (Systems 1+2+3+10) --- */
.fc-psych-panel {
  margin: 16px 0;
  padding: 0;
}

/* System 1: Congrats / Free confirmation */
.fc-psych-congrats {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 10px;
  margin-bottom: 12px;
}

.fc-psych-congrats-icon { font-size: 24px; flex-shrink: 0; }

.fc-psych-congrats-text strong {
  display: block;
  font-size: 15px;
  color: #065f46;
}

.fc-psych-congrats-text span {
  font-size: 12px;
  color: #047857;
}

/* System 2: Premium Insight CTA */
.fc-psych-insight {
  padding: 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 12px;
}

.fc-psych-insight-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.fc-psych-insight-icon { font-size: 20px; }

.fc-psych-optional-badge {
  display: inline-block;
  padding: 2px 8px;
  background: #dbeafe;
  color: #1e40af;
  font-size: 10px;
  font-weight: 700;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fc-psych-insight-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.fc-psych-insight-check {
  font-size: 13px;
  color: #475569;
  padding-left: 4px;
}

.fc-psych-insight-cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.fc-psych-insight-btn {
  padding: 10px 22px;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.fc-psych-insight-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(20, 184, 166, 0.3);
}

.fc-psych-insight-price {
  font-size: 14px;
  color: #64748b;
}

.fc-psych-price-anchor {
  text-decoration: line-through;
  color: #94a3b8;
  font-size: 13px;
}

.fc-psych-price-actual {
  font-weight: 700;
  color: #0f766e;
}

.fc-psych-insight-note {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  color: #94a3b8;
  font-style: italic;
}

/* System 3: Value Stacking */
.fc-psych-value-stack {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(20, 184, 166, 0.05);
  border-radius: 8px;
  margin-bottom: 12px;
}

.fc-psych-value-icon { font-size: 16px; }

.fc-psych-value-text {
  font-size: 12px;
  color: #64748b;
}

/* System 10: Loss Aversion */
.fc-psych-loss-aversion {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 10px;
  margin-bottom: 4px;
}

.fc-psych-loss-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }

.fc-psych-loss-text {
  font-size: 13px;
  color: #78350f;
  line-height: 1.5;
}

.fc-psych-loss-link {
  color: #b45309;
  font-weight: 600;
  text-decoration: none;
}

.fc-psych-loss-link:hover {
  text-decoration: underline;
}

/* --- System 4: Smart Recommendations --- */
.fc-psych-smart-rec {
  margin: 16px 0;
  padding: 18px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

.fc-psych-rec-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.fc-psych-rec-icon { font-size: 20px; }

.fc-psych-rec-title {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  flex: 1;
}

.fc-psych-rec-tag {
  display: inline-block;
  padding: 2px 8px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 10px;
  font-weight: 600;
  border-radius: 10px;
  text-transform: uppercase;
}

.fc-psych-rec-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.fc-psych-rec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.fc-psych-rec-item:hover {
  background: #f0fdfa;
  border-color: rgba(20, 184, 166, 0.3);
  transform: translateX(2px);
}

.fc-psych-rec-item-icon { font-size: 18px; flex-shrink: 0; }

.fc-psych-rec-item-text {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: #334155;
}

.fc-psych-rec-item-tag {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(20, 184, 166, 0.1);
  color: #0f766e;
  font-size: 10px;
  font-weight: 600;
  border-radius: 10px;
  flex-shrink: 0;
}

.fc-psych-rec-explore {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #0f766e;
  text-decoration: none;
}

.fc-psych-rec-explore:hover {
  text-decoration: underline;
}

/* --- System 5: Enhanced Lead Gen --- */
.fc-psych-lead-gen {
  margin: 12px 0;
}

.fc-psych-lead-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 10px;
}

.fc-psych-lead-icon { font-size: 22px; flex-shrink: 0; }

.fc-psych-lead-content { flex: 1; }

.fc-psych-lead-content strong {
  display: block;
  font-size: 14px;
  color: #1e3a5f;
  margin-bottom: 2px;
}

.fc-psych-lead-content span {
  font-size: 12px;
  color: #3b82f6;
}

.fc-psych-lead-btn {
  padding: 8px 18px;
  background: #3b82f6;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.fc-psych-lead-btn:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* --- System 6: Enhanced Newsletter --- */
.fc-psych-newsletter {
  margin: 12px 0;
}

.fc-psych-newsletter-inner {
  padding: 16px 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
}

.fc-psych-newsletter-content {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.fc-psych-newsletter-icon { font-size: 22px; flex-shrink: 0; }

.fc-psych-newsletter-content strong {
  display: block;
  font-size: 14px;
  color: #1e293b;
}

.fc-psych-newsletter-content span {
  font-size: 12px;
  color: #64748b;
}

.fc-psych-newsletter-form {
  display: flex;
  gap: 8px;
}

.fc-psych-newsletter-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}

.fc-psych-newsletter-input:focus {
  border-color: #14b8a6;
}

.fc-psych-newsletter-btn {
  padding: 10px 20px;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.fc-psych-newsletter-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.fc-psych-newsletter-success {
  text-align: center;
  padding: 8px 0;
  font-size: 14px;
  color: #065f46;
}

/* --- System 7: Subtle Donation --- */
.fc-psych-support {
  text-align: center;
  padding: 10px 0;
  margin: 8px 0;
}

.fc-psych-support-text {
  font-size: 12px;
  color: #94a3b8;
}

.fc-psych-support-text a {
  color: #0f766e;
  font-weight: 600;
  text-decoration: none;
}

.fc-psych-support-text a:hover {
  text-decoration: underline;
}

/* --- System 8: Widget Licensing CTA --- */
.fc-psych-embed-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  margin: 8px 0;
  background: #f1f5f9;
  border-radius: 8px;
}

.fc-psych-embed-icon { font-size: 14px; }

.fc-psych-embed-text {
  font-size: 12px;
  color: #64748b;
}

.fc-psych-embed-text a {
  color: #0f766e;
  font-weight: 600;
  text-decoration: none;
}

.fc-psych-embed-text a:hover {
  text-decoration: underline;
}

/* --- System 9: Enhanced Social Proof --- */
.fc-psych-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
  padding-left: 8px;
  border-left: 1px solid #e2e8f0;
}

.fc-psych-activity-dot {
  width: 6px;
  height: 6px;
  background: #f59e0b;
  border-radius: 50%;
  animation: fc-psych-pulse 2s infinite;
}

@keyframes fc-psych-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.fc-psych-activity-text {
  font-size: 11px;
  color: #94a3b8;
  font-style: italic;
  transition: opacity 0.3s ease;
}

/* =================== RESPONSIVE =================== */

@media (max-width: 640px) {
  .fc-pdf-modal { padding: 16px; max-height: 95vh; }
  .fc-email-smart-inner { flex-direction: column; align-items: stretch; }
  .fc-email-smart-form { flex-direction: column; }
  .fc-email-smart-input { width: 100%; }
  .fc-sponsored-cards { grid-template-columns: 1fr; }
  .fc-pdf-trigger-float { bottom: 70px; right: 12px; }
  .fc-donate-float { bottom: 70px; left: 12px; }
  .fc-lead-modal { padding: 20px; }
  /* Psychology engine mobile */
  .fc-psych-insight-cta-row { flex-direction: column; align-items: flex-start; }
  .fc-psych-lead-inner { flex-direction: column; text-align: center; }
  .fc-psych-lead-btn { width: 100%; }
  .fc-psych-newsletter-form { flex-direction: column; }
  .fc-psych-newsletter-input { width: 100%; }
  .fc-psych-rec-item-tag { display: none; }
  .fc-psych-social-proof { display: none; }
}
