/* ============================================================
   Social Stardom — Lift Pack (conversion layer)
   v: 20260519-lift-01
   Self-contained. Injects:
   - Floating WhatsApp + Call FABs (right rail, mobile + desktop)
   - Top urgency strip ("We're taking 4 new clients in May")
   - Exit-intent / scroll-trigger lead bar
   - Sticky bottom CTA on mobile
   No dependency on the React app. Survives bundle failure.
   ============================================================ */

:root {
  --lp-green: #25D366;
  --lp-green-dark: #128C7E;
  --lp-ink: #0e0f10;
  --lp-bone: #f4f1ea;
  --lp-amber: #f59e0b;
  --lp-shadow: 0 8px 24px rgba(0,0,0,.18), 0 2px 6px rgba(0,0,0,.10);
}

/* ----- 1. URGENCY STRIP (top of every page) ----- */
.lp-strip {
  position: relative;
  width: 100%;
  background: var(--lp-ink);
  color: #fff;
  font: 500 12px/1 "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  letter-spacing: 0.02em;
  z-index: 998;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.lp-strip-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 10px 56px 10px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}
.lp-strip .lp-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  margin-right: 6px;
  vertical-align: 1px;
  box-shadow: 0 0 0 0 rgba(34,197,94,.65);
  animation: lp-pulse 2.2s ease-out infinite;
}
.lp-strip a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.lp-strip a:hover { text-decoration-thickness: 2px; }
.lp-strip-close {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  color: rgba(255,255,255,.55);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 4px 8px;
}
.lp-strip-close:hover { color: #fff; }
@keyframes lp-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.65); }
  70%  { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* ----- 2. FLOATING ACTION RAIL (WhatsApp + Call) ----- */
.lp-rail {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 9997;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
.lp-rail .lp-fab {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  box-shadow: var(--lp-shadow);
  transition: transform .18s ease, box-shadow .18s ease, width .25s ease;
  position: relative;
  overflow: hidden;
}
.lp-rail .lp-fab svg {
  width: 26px; height: 26px;
  flex-shrink: 0;
}
.lp-rail .lp-fab .lp-fab-label {
  display: none;
  font: 600 13px/1 "Inter Tight", -apple-system, sans-serif;
  letter-spacing: 0.01em;
  white-space: nowrap;
  padding-right: 4px;
}
.lp-rail .lp-fab--wa { background: var(--lp-green); }
.lp-rail .lp-fab--wa:hover { background: var(--lp-green-dark); }
.lp-rail .lp-fab--tel { background: var(--lp-ink); }
.lp-rail .lp-fab--tel:hover { background: #1f2937; }
.lp-rail .lp-fab:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.25); }
.lp-rail .lp-fab:active { transform: translateY(0); }

/* WhatsApp pulse halo */
.lp-rail .lp-fab--wa::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(37,211,102,.55);
  animation: lp-halo 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes lp-halo {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Wide variant on desktop (expanded with label) */
@media (min-width: 900px) {
  .lp-rail { right: 24px; bottom: 28px; gap: 14px; }
  .lp-rail .lp-fab {
    width: auto;
    padding: 0 18px 0 16px;
    height: 52px;
  }
  .lp-rail .lp-fab .lp-fab-label { display: inline-block; }
}

/* Bubble tooltip (mobile preview message) */
.lp-rail .lp-bubble {
  pointer-events: auto;
  align-self: flex-end;
  background: #fff;
  color: var(--lp-ink);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px 14px 4px 14px;
  padding: 12px 14px;
  font: 500 13px/1.4 "Inter Tight", -apple-system, sans-serif;
  max-width: 230px;
  box-shadow: var(--lp-shadow);
  position: relative;
  margin-bottom: -4px;
  animation: lp-bubble-in .55s cubic-bezier(.16,1,.3,1) .6s both;
}
.lp-rail .lp-bubble strong { display: block; font-weight: 600; margin-bottom: 3px; }
.lp-rail .lp-bubble .lp-bubble-close {
  position: absolute;
  top: 4px; right: 6px;
  background: transparent; border: 0;
  font-size: 16px; line-height: 1; cursor: pointer; color: #888;
  padding: 4px;
}
.lp-rail .lp-bubble.lp-bubble-hidden { display: none; }
@keyframes lp-bubble-in {
  from { opacity: 0; transform: translateY(8px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ----- 3. EXIT-INTENT / RE-ENGAGE MODAL ----- */
.lp-modal {
  position: fixed;
  inset: 0;
  background: rgba(14,15,16,.66);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.lp-modal.lp-open {
  opacity: 1;
  pointer-events: auto;
}
.lp-modal-card {
  background: var(--lp-bone);
  color: var(--lp-ink);
  border: 1.5px solid var(--lp-ink);
  max-width: 520px;
  width: 100%;
  padding: 36px 32px 30px;
  position: relative;
  transform: translateY(14px) scale(.98);
  transition: transform .35s cubic-bezier(.16,1,.3,1);
  border-radius: 4px;
  font-family: "Inter Tight", -apple-system, sans-serif;
}
.lp-modal.lp-open .lp-modal-card { transform: translateY(0) scale(1); }
.lp-modal-eyebrow {
  font: 500 11px/1 "Geist Mono", ui-monospace, monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #555;
  margin: 0 0 14px;
}
.lp-modal h2 {
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  font-weight: 500;
}
.lp-modal h2 em {
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-style: italic; font-weight: 400;
}
.lp-modal p {
  font-size: 15px; line-height: 1.5;
  margin: 0 0 20px;
  color: #2a2b2d;
}
.lp-modal-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.lp-btn {
  display: inline-flex;
  align-items: center; gap: 8px;
  padding: 12px 18px;
  border: 1.5px solid var(--lp-ink);
  background: var(--lp-ink); color: #fff;
  text-decoration: none;
  font-weight: 500; font-size: 14px;
  border-radius: 999px;
  transition: opacity .18s ease, transform .18s ease;
}
.lp-btn:hover { opacity: .88; transform: translateY(-1px); }
.lp-btn--wa { background: var(--lp-green); border-color: var(--lp-green); }
.lp-btn--wa:hover { background: var(--lp-green-dark); border-color: var(--lp-green-dark); }
.lp-btn--ghost { background: transparent; color: var(--lp-ink); }
.lp-modal-close {
  position: absolute;
  top: 10px; right: 10px;
  background: transparent;
  border: 0;
  font-size: 24px; line-height: 1;
  cursor: pointer;
  color: #555; padding: 6px 10px;
}
.lp-modal-close:hover { color: var(--lp-ink); }
.lp-modal-foot {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed rgba(0,0,0,.18);
  font: 500 12px/1.4 "Geist Mono", ui-monospace, monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #555;
  display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap;
}

/* ----- 4. TRUST STRIP ("As trusted by…") ----- */
.lp-trust {
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 18px 22px;
  z-index: 1;
  position: relative;
}
.lp-trust-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 28px;
  font: 500 13px/1.3 "Inter Tight", -apple-system, sans-serif;
  color: #2a2b2d;
}
.lp-trust-item { display: inline-flex; align-items: center; gap: 8px; }
.lp-trust-item svg { width: 16px; height: 16px; flex-shrink: 0; opacity: .85; }
.lp-trust-sep { width: 1px; height: 14px; background: rgba(0,0,0,.15); }
@media (max-width: 700px) {
  .lp-trust { padding: 14px 14px; }
  .lp-trust-inner { gap: 10px 18px; font-size: 12px; }
  .lp-trust-sep { display: none; }
}

/* ----- 5. RESPONSIVE / REDUCED MOTION ----- */
@media (prefers-reduced-motion: reduce) {
  .lp-strip .lp-dot,
  .lp-rail .lp-fab--wa::before { animation: none; }
  .lp-modal, .lp-modal-card, .lp-rail .lp-bubble { transition: none; animation: none; }
}

@media (max-width: 480px) {
  .lp-rail { right: 12px; bottom: 14px; gap: 10px; }
  .lp-rail .lp-fab { width: 50px; height: 50px; }
  .lp-rail .lp-fab svg { width: 22px; height: 22px; }
  .lp-rail .lp-bubble { max-width: 200px; font-size: 12.5px; padding: 10px 12px; }
  .lp-strip-inner { padding: 10px 40px 10px 16px; font-size: 11.5px; gap: 8px; }
}

/* Body padding when strip is visible (prevents overlap on fixed headers) */
body.lp-strip-on { /* hook for any layout that needs to push down */ }
