/* Forgendo — conversion tweaks (sticky mobile CTA, hero price anchor, badges) */

/* 1. Sticky mobile CTA — mobile only (<=768px), injected by cro.js */
.cro-sticky-cta { display: none; }

@media (max-width: 768px) {
  .cro-sticky-cta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 1100;
    display: flex; align-items: center; justify-content: center;
    height: 56px; padding: 0 44px;
    background: #c8f235; color: #000;
    font-family: var(--body, system-ui, sans-serif); font-weight: 700;
    font-size: 15px; letter-spacing: -0.01em; text-decoration: none;
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.45);
  }
  .cro-sticky-x {
    position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
    background: none; border: none; color: #000; font-size: 22px; line-height: 1;
    cursor: pointer; padding: 6px 10px; opacity: 0.55;
  }
  .cro-sticky-x:hover { opacity: 1; }
  body.cro-has-sticky { padding-bottom: 56px; } /* keep footer reachable */
}

/* 2. Mini pricing anchor under the hero CTA */
.cro-price-anchor {
  font-size: 12px; color: #888888; text-align: center;
  margin: 14px 0 0; letter-spacing: 0.01em;
}

/* 4. Enlarge the differentiation badges (.feature .tag) */
.feature .tag {
  padding: 8px 16px;
  font-size: 13px;
  border-width: 1.5px;
}
@media (max-width: 768px) {
  .feature .tag { display: block; width: fit-content; margin: 12px auto 0; }
}

/* ───────────────────────────────────────────────────────────────────────────
   Homepage premium sections — ported & adapted from the agency-offer page.
   Namespaced .fp-* so nothing collides with the existing landing classes.
   Uses theme vars: --bg-2 (card), --accent, --accent-dim, --line, --muted, --fg
   ─────────────────────────────────────────────────────────────────────────── */

/* Ownership chips (hero) */
.fp-chips { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 1.75rem 0 0; }
.fp-chip {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line); border-radius: 99px; padding: 0.4rem 0.85rem;
  display: inline-flex; align-items: center; gap: 0.45rem; white-space: nowrap;
}
.fp-chip::before { content: "\2713"; color: var(--accent); font-weight: 800; }
@media (max-width: 760px) { .hero .fp-chips { justify-content: center; } }

/* Stat band */
.fp-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
}
@media (max-width: 760px) { .fp-stats { grid-template-columns: repeat(2, 1fr); } }
.fp-stat { background: var(--bg-2); padding: 1.6rem 1.2rem; text-align: center; }
.fp-stat .big { font-family: var(--display); font-weight: 800; font-size: clamp(1.6rem, 4vw, 2.5rem); color: var(--accent); line-height: 1; }
.fp-stat .lbl { display: block; margin-top: 0.55rem; font-size: 0.78rem; color: var(--muted); letter-spacing: 0.01em; line-height: 1.4; }

/* Contrast block ($199 → pennies) */
.fp-contrast { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1.5rem; margin-top: 0.5rem; }
@media (max-width: 760px) { .fp-contrast { grid-template-columns: 1fr; gap: 1rem; text-align: center; } }
.fp-contrast .side { background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; padding: 1.8rem; }
.fp-contrast .side.them { opacity: 0.8; }
.fp-contrast .side.us { border-color: var(--accent-dim); box-shadow: 0 30px 80px -40px rgba(200, 242, 53, 0.25); }
.fp-contrast .k { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.fp-contrast .side.us .k { color: var(--accent-dim); }
.fp-contrast .v { font-family: var(--display); font-weight: 800; font-size: clamp(1.5rem, 4vw, 2.3rem); margin: 0.45rem 0; line-height: 1.05; }
.fp-contrast .side.us .v { color: var(--accent); }
.fp-contrast .d { color: var(--muted); font-size: 0.95rem; }
.fp-contrast .arrow { font-family: var(--display); font-weight: 800; font-size: 2rem; color: var(--accent); text-align: center; }
@media (max-width: 760px) { .fp-contrast .arrow { transform: rotate(90deg); } }

/* Brutal-truth cards (the honest version) */
.fp-truth { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.75rem; }
@media (max-width: 760px) { .fp-truth { grid-template-columns: 1fr; } }
.fp-tcard { background: var(--bg-2); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 12px; padding: 1.5rem; }
.fp-tcard h3 { font-family: var(--display); font-weight: 700; font-size: 1.1rem; margin-bottom: 0.5rem; }
.fp-tcard p { color: var(--muted); font-size: 0.95rem; }

/* Built-by-an-SEO seal */
.fp-seal { display: flex; align-items: center; gap: 1.1rem; background: var(--bg-2); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 12px; padding: 1.4rem 1.7rem; max-width: 640px; margin: 0 auto; }
.fp-seal .big { font-family: var(--display); font-weight: 800; font-size: 1.4rem; color: var(--accent); line-height: 1.05; }
.fp-seal p { color: var(--muted); font-size: 0.97rem; }
@media (max-width: 560px) { .fp-seal { flex-direction: column; text-align: center; } }

/* Open-list "more coming" accent */
.fp-more { color: var(--accent); font-weight: 700; }

/* Desktop sticky CTA bar — mobile keeps the cro.js bar instead (hidden <=768px here) */
.fp-stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; align-items: center; justify-content: center; gap: 1.3rem;
  padding: 0.75rem 1.2rem;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(12px); border-top: 1px solid var(--line);
  transform: translateY(120%); transition: transform 0.3s ease;
}
.fp-stickybar.show { transform: none; }
.fp-stickybar .sb-txt { font-weight: 700; font-size: 0.95rem; line-height: 1.2; }
.fp-stickybar .sb-txt small { display: block; color: var(--muted); font-weight: 400; font-size: 0.76rem; }
.fp-stickybar .btn { padding: 0.6rem 1.4rem; }
@media (max-width: 768px) { .fp-stickybar { display: none; } }

/* Payment trust strip - honest: checkout is hosted by Stripe (card data never
   touches our servers) and Visa/MC/Amex are really accepted via Stripe. Card
   marks are stylised indicators, not partnership/endorsement claims. */
.fp-secure {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  flex-wrap: wrap; margin-top: 1.1rem;
  font-family: var(--mono); font-size: 0.78rem; color: var(--muted); letter-spacing: 0.01em;
}
.fp-secure .fp-lock { width: 14px; height: 14px; color: var(--accent); flex: none; }
.fp-secure-txt strong { color: var(--fg); font-weight: 700; }
.fp-cards { display: inline-flex; gap: 0.4rem; align-items: center; }
.fp-card {
  height: 22px; min-width: 36px; padding: 0 7px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 4px; background: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  font-family: var(--display); font-weight: 800; font-size: 0.68rem; line-height: 1;
}
.fp-card.fp-visa { color: #1434cb; font-style: italic; letter-spacing: 0.02em; }
.fp-card.fp-amex { background: #006fcf; color: #fff; letter-spacing: 0.05em; }
.fp-card.fp-mc { padding: 0 6px; }
.fp-card.fp-mc svg { display: block; height: 14px; width: auto; }
@media (max-width: 760px) { .fp-secure { flex-direction: column; gap: 0.55rem; text-align: center; } }
