/* ═══════════════════════════════════════════════
   FORGE Command — Conversion Features CSS (Cleaned)
   Only: Mobile CTA + Trust Strip
   ═══════════════════════════════════════════════ */

/* ─── Floating Mobile CTA ─── */
.fc-mobile-cta {
  display: none;
}
@media (max-width: 768px) {
  .fc-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    background: linear-gradient(135deg, #CCA600 0%, #FFD000 50%, #FFE04D 100%);
    box-shadow: 0 -4px 16px rgba(0,0,0,0.4);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .fc-mobile-cta.fc-visible {
    transform: translateY(0);
  }
  .fc-mobile-cta__link {
    color: #000;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    font-family: var(--fc-font, 'Inter', sans-serif);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .fc-mobile-cta__link svg {
    width: 18px;
    height: 18px;
  }
}

/* ─── Trust Signals Strip ─── */
.fc-trust-strip {
  padding: 28px 0;
  background: var(--fc-bg-secondary, #1C1C1C);
  border-bottom: 1px solid var(--fc-border, #3A3A3A);
}
.fc-trust-strip__inner {
  max-width: var(--fc-max-width, 1200px);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.fc-trust-strip__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fc-text-secondary, #B0B0B0);
  font-family: var(--fc-font, 'Inter', sans-serif);
  white-space: nowrap;
}
.fc-trust-strip__check {
  width: 22px;
  height: 22px;
  background: rgba(52, 199, 89, 0.12);
  border: 1px solid rgba(52, 199, 89, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fc-trust-strip__check svg {
  width: 12px;
  height: 12px;
  color: #34C759;
}
@media (max-width: 600px) {
  .fc-trust-strip__inner {
    gap: 20px;
  }
  .fc-trust-strip__badge {
    font-size: 12px;
    gap: 6px;
  }
  .fc-trust-strip__check {
    width: 18px;
    height: 18px;
  }
  .fc-trust-strip__check svg {
    width: 10px;
    height: 10px;
  }
}
