
:root {
  --accent: #8b5cf6;
  --accent2: #4c1d95;
  --ink: #0a0e1a;
  --ink-2: #1a1f2e;
  --muted: #6b7380;
  --bg: #ffffff;
  --bg-2: #f7f8fb;
  --bg-3: #eef0f5;
  --line: #e3e6ee;
  --radius: 4px;
  --font-h: "Manrope", sans-serif;
  --font-b: "Inter", sans-serif;
  --max: 1200px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: var(--font-b); color: var(--ink); background: var(--bg); }
body { line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-h); color: var(--ink); letter-spacing: -0.025em; font-weight: 800; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 4.6vw, 4rem); margin: 0 0 1rem; }
h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); margin: 2.5rem 0 1rem; }
h3 { font-size: 1.4rem; margin: 1.5rem 0 0.75rem; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.promo { background: var(--ink); color: #fff; font-size: 0.85rem; padding: 8px 24px; text-align: center; }
.promo a { color: #fff; text-decoration: underline; }
.promo .dot { display: inline-block; width: 8px; height: 8px; background: #4ade80; border-radius: 50%; margin-right: 8px; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
header.site { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100; }
header.site .nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; gap: 24px; }
header.site .brand img { height: 44px; width: auto; max-width: 280px; }
header.site ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 24px; }
header.site ul a { color: var(--ink); font-weight: 600; font-size: 0.95rem; }
header.site ul a[aria-current="page"] { color: var(--accent); }
header.site .cta { display: flex; gap: 12px; }
.btn { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: #fff; padding: 12px 22px; border-radius: var(--radius); font-weight: 700; font-size: 0.95rem; transition: all 0.2s; }
.btn:hover { background: var(--accent2); text-decoration: none; transform: translateY(-1px); box-shadow: 0 8px 24px -10px var(--accent); }
.btn.ghost { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn.ghost:hover { background: var(--accent); color: #fff; }
.btn.lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0; }
section.hero { background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%); color: #fff; padding: 96px 0 80px; position: relative; overflow: hidden; }
section.hero::after { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: radial-gradient(circle at 70% 50%, rgba(255,255,255,0.08), transparent 70%); pointer-events: none; }
section.hero h1 { color: #fff; max-width: 920px; }
section.hero .lede { font-size: 1.25rem; max-width: 720px; opacity: 0.94; margin: 1rem 0 2rem; }
section.hero .btn { background: #fff; color: var(--accent); }
section.hero .btn:hover { background: #fff; color: var(--accent2); }
section.hero .btn.ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
section.hero .btn.ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }
.eyebrow { display: inline-block; background: rgba(255,255,255,0.18); padding: 6px 14px; border-radius: 100px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 1.25rem; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 24px; margin-top: 48px; max-width: 720px; }
.stat { background: rgba(255,255,255,0.1); border-radius: 12px; padding: 18px 20px; backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.18); }
.stat .num { font-family: var(--font-h); font-size: 2rem; font-weight: 800; line-height: 1; }
.stat .lab { font-size: 0.85rem; opacity: 0.85; margin-top: 6px; }
section { padding: 80px 0; }
section.alt { background: var(--bg-2); }
section.dark { background: var(--ink); color: #fff; }
section.dark h2 { color: #fff; }
section.dark a:not(.btn) { color: #93c5fd; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; transition: all 0.2s; }
.card:hover { border-color: var(--accent); box-shadow: 0 12px 28px -16px rgba(0,0,0,0.15); transform: translateY(-2px); }
.card .icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--accent), var(--accent2)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.4rem; margin-bottom: 16px; }
.card h3 { margin-top: 0; }
.card.dark { background: var(--ink-2); color: #fff; border-color: transparent; }
.card.dark h3 { color: #fff; }
.muted { color: var(--muted); }
.small { font-size: 0.85rem; }
ul.check { list-style: none; padding: 0; }
ul.check li { padding-left: 32px; position: relative; margin: 10px 0; }
ul.check li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 800; font-size: 1.1rem; }
.price { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.plan { background: #fff; border: 2px solid var(--line); border-radius: var(--radius); padding: 36px 28px; position: relative; }
.plan.feat { border-color: var(--accent); transform: scale(1.02); box-shadow: 0 20px 40px -20px var(--accent); }
.plan.feat::before { content: 'MOST POPULAR'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; padding: 6px 16px; border-radius: 100px; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.06em; }
.plan .name { font-family: var(--font-h); font-size: 1.3rem; font-weight: 700; }
.plan .amt { font-size: 2.4rem; font-weight: 800; color: var(--ink); margin: 12px 0 4px; }
.plan .amt sup { font-size: 1.1rem; vertical-align: super; }
.plan .per { color: var(--muted); }
.plan ul.check { margin-top: 18px; }
.plan .btn { width: 100%; justify-content: center; margin-top: 16px; }
.testimonial { background: var(--bg-2); border-left: 4px solid var(--accent); padding: 28px 32px; border-radius: var(--radius); margin: 18px 0; }
.testimonial p { font-style: italic; font-size: 1.1rem; }
.testimonial cite { font-style: normal; font-weight: 700; display: block; margin-top: 12px; }
.testimonial cite span { display: block; color: var(--muted); font-weight: 400; font-size: 0.9rem; }
footer.site { background: var(--ink); color: rgba(255,255,255,0.78); padding: 80px 0 30px; }
footer.site h2, footer.site h3, footer.site .footer-brand { color: #fff; }
footer.site .footer-brand { font-family: var(--font-h); font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; }
footer.site .footer-h { font-weight: 700; color: #fff; margin: 0 0 16px; font-size: 0.95rem; letter-spacing: 0.05em; text-transform: uppercase; }
footer.site ul { list-style: none; padding: 0; margin: 0; }
footer.site ul li { margin: 8px 0; }
footer.site a { color: rgba(255,255,255,0.78); }
footer.site a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 30px; margin-top: 50px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.85rem; }
.sticky-call { display: none; }
@media (max-width: 880px) {
  header.site ul { display: none; }
  header.site .nav { padding: 14px 18px; }
  header.site .cta .btn:not(.lg) { padding: 10px 14px; font-size: 0.85rem; }
  section { padding: 56px 0; }
  section.hero { padding: 60px 0; }
}

/* CRO — floating action button */
.fab { position: fixed; bottom: 24px; right: 24px; z-index: 95; display: flex; flex-direction: column; gap: 12px; }
.fab-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: #fff; padding: 14px 22px; border-radius: 100px; box-shadow: 0 10px 24px -10px var(--accent); font-weight: 700; text-decoration: none; transition: all 0.2s; font-size: 0.95rem; }
.fab-btn:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 14px 32px -10px var(--accent); text-decoration: none; }
.fab-call { animation: fabPulse 3s infinite; }
.fab-email { background: var(--ink-2); }
.fab-email:hover { background: var(--ink); }
.fab-label { font-size: 0.9rem; }
@keyframes fabPulse { 0%, 100% { box-shadow: 0 10px 24px -10px var(--accent); } 50% { box-shadow: 0 14px 30px -8px var(--accent); transform: translateY(-1px); } }

/* CRO — social proof ticker */
.proof-ticker { position: fixed; bottom: 24px; left: 24px; z-index: 90; background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 12px 24px 12px 18px; display: none; align-items: center; gap: 10px; box-shadow: 0 12px 32px -16px rgba(0,0,0,0.2); font-size: 0.92rem; font-weight: 500; max-width: 340px; }
.proof-ticker.show { display: flex; animation: proofIn 0.4s ease-out; }
.proof-ticker .dot { width: 8px; height: 8px; background: #16a34a; border-radius: 50%; animation: pulse 2s infinite; flex: 0 0 8px; }
.proof-ticker button { background: transparent; border: none; font-size: 1.3rem; line-height: 1; cursor: pointer; padding: 0; margin-left: 6px; color: var(--muted); }
@keyframes proofIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* CRO — exit-intent modal */
.modal { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.show { display: flex; animation: modalIn 0.25s ease-out; }
.modal-card { background: #fff; border-radius: var(--radius); padding: 48px 40px; max-width: 540px; width: 100%; position: relative; }
.modal-close { position: absolute; top: 14px; right: 14px; background: var(--bg-2); border: none; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 1.3rem; line-height: 1; color: var(--muted); }
.modal-close:hover { background: var(--bg-3); color: var(--ink); }
@keyframes modalIn { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }

@media (max-width: 720px) {
  .fab { bottom: 16px; right: 16px; gap: 8px; }
  .fab-btn { padding: 12px 18px; font-size: 0.88rem; }
  .fab-email { display: none; }
  .proof-ticker { display: none !important; }
  .modal-card { padding: 32px 24px; }
}
