/* ════════════════════════════════════════════════════════════════════════
   PRO STAR TCN — PUBLIC WEBSITE (Landing) — PROFESSIONAL LIGHT THEME
   ────────────────────────────────────────────────────────────────────────
   Loaded AFTER styles.css on every public page so it overrides the legacy
   dark / gradient `.lp-*` rules. Design goals (agency feedback):
     • LIGHT mode is the default and the identity.
     • NO gradients anywhere — solid brand colour only.
     • Full-width, desktop-first responsive layout (not a phone column).
     • Calm, professional, SEO-friendly marketing site.
   All class names match the markup the i18n + CMS JS expects, so the live
   content machinery keeps working untouched.
   ════════════════════════════════════════════════════════════════════════ */

:root {
  --lp-max:        1180px;
  --lp-radius:     18px;
  --lp-radius-sm:  12px;
  --lp-gap:        24px;
  --lp-shadow:     0 1px 2px rgba(15,23,42,0.04), 0 8px 24px rgba(15,23,42,0.06);
  --lp-shadow-lg:  0 12px 40px rgba(15,23,42,0.10);
  --lp-ring:       1px solid var(--border-soft);
}

/* ─── PAGE SHELL ──────────────────────────────────────────────────────── */
.lp-page {
  background: var(--bg-main);
  color: var(--text-main);
  min-height: 100vh;
  font-family: var(--font-display);
  overflow-x: hidden;
  font-weight: 500;
}

/* ─── HEADER ──────────────────────────────────────────────────────────── */
/* `.lp-page` prefix raises specificity above the legacy 2-class
   `.lp-header.scrolled` rule in styles.css that painted the bar black. */
.lp-page .lp-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(16px, 4vw, 48px);
  background: rgba(255,255,255,0.86) !important;
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border-soft);
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.lp-page .lp-header.scrolled {
  background: rgba(255,255,255,0.94) !important;
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 4px 20px rgba(15,23,42,0.06);
}
.lp-brand { display: flex; align-items: center; gap: 10px; }
.lp-brand .mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 900; overflow: hidden;
}
.lp-brand .text { font-size: 17px; font-weight: 800; color: var(--text-main); }

.lp-nav { display: none; align-items: center; gap: 28px; }
.lp-nav a {
  color: var(--text-secondary); font-size: 14px; font-weight: 600;
  text-decoration: none; transition: color .2s; position: relative; padding: 4px 0;
}
.lp-nav a:hover, .lp-nav a.active { color: var(--primary); }
.lp-nav a::after {
  content: ""; position: absolute; bottom: -4px; inset-inline: 0; height: 2px;
  background: var(--primary); border-radius: 2px;
  transform: scaleX(0); transition: transform .2s;
}
.lp-nav a:hover::after, .lp-nav a.active::after { transform: scaleX(1); }

.lp-header-right { display: flex; align-items: center; gap: 10px; }
.lp-header-right > button[onclick] {     /* language switch */
  background: var(--bg-card) !important;
  border: 1px solid var(--border-main) !important;
  color: var(--text-secondary) !important;
  padding: 8px 14px !important; border-radius: 10px; cursor: pointer;
  font-size: 12.5px; font-weight: 700; font-family: inherit;
  display: inline-flex; align-items: center; gap: 6px; transition: all .2s;
}
.lp-header-right > button[onclick]:hover {
  border-color: var(--primary) !important; color: var(--primary) !important;
}

.lp-cta {
  background: var(--primary); color: #fff; border: none;
  border-radius: 10px; padding: 11px 22px; font-size: 14px; font-weight: 800;
  cursor: pointer; font-family: inherit; transition: background .2s, transform .15s;
}
.lp-cta:hover { background: var(--primary-hover); transform: translateY(-1px); }

.lp-mobile-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--bg-card); border: 1px solid var(--border-main);
  color: var(--text-main); cursor: pointer; font-size: 19px;
}
.lp-mobile-nav {
  display: none; position: fixed; top: 68px; inset-inline: 0; z-index: 99;
  flex-direction: column; gap: 4px;
  background: var(--bg-card); border-bottom: 1px solid var(--border-soft);
  padding: 12px clamp(16px, 4vw, 48px) 18px;
  box-shadow: var(--lp-shadow);
}
.lp-mobile-nav.open { display: flex; }
.lp-mobile-nav a {
  color: var(--text-main); font-weight: 700; font-size: 15px; text-decoration: none;
  padding: 12px 8px; border-radius: 10px; border-bottom: 1px solid var(--border-soft);
}
.lp-mobile-nav a:last-child { border-bottom: none; }
.lp-mobile-nav a:hover { background: var(--bg-hover); color: var(--primary); }

/* Single source of truth for the nav/hamburger breakpoint — !important so
   the legacy 820px rules in styles.css can't reopen the hamburger on
   desktop. Hamburger shows ONLY on phones (< 860px). */
.lp-page .lp-mobile-toggle { display: inline-flex !important; }
.lp-page .lp-nav { display: none !important; }
@media (min-width: 860px) {
  .lp-page .lp-nav { display: flex !important; }
  .lp-page .lp-mobile-toggle { display: none !important; }
}

/* ─── SHARED SECTION SCAFFOLD ─────────────────────────────────────────── */
.lp-section,
.lp-benefits { padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 48px); max-width: var(--lp-max); margin: 0 auto; }
.lp-section { text-align: center; }
.lp-eyebrow {
  display: inline-block; font-size: 12px; color: var(--primary); font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 12px;
  padding: 5px 14px; border-radius: 999px; background: var(--primary-soft);
}
.lp-h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 900; line-height: 1.2; margin: 0 auto 16px; color: var(--text-main); max-width: 18ch; }
.lp-section > p.lp-lead, .lp-lead {
  font-size: clamp(15px, 2vw, 17px); color: var(--text-muted); line-height: 1.8;
  max-width: 60ch; margin: 0 auto 48px;
}

/* ─── HERO (two-column, data-rich) ────────────────────────────────────── */
.lp-hero {
  position: relative; overflow: hidden;
  padding: clamp(96px, 13vh, 136px) clamp(16px, 4vw, 48px) clamp(44px, 6vw, 76px);
  background: var(--bg-main);
}
.lp-hero-glow { display: none; }                  /* radial glow removed */
.lp-hero::before {                                 /* subtle dotted texture, no gradient */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: radial-gradient(var(--border-soft) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(circle at 60% 20%, #000 0%, transparent 72%);
          mask-image: radial-gradient(circle at 60% 20%, #000 0%, transparent 72%);
}
.lp-hero-inner {
  position: relative; z-index: 1;
  max-width: var(--lp-max); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.lp-hero-text { text-align: start; }
.lp-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-card); border: 1px solid var(--border-main);
  border-radius: 999px; padding: 7px 16px; margin-bottom: 24px;
  box-shadow: var(--lp-shadow);
}
.lp-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); animation: lp-pulse 2s ease-in-out infinite; }
.lp-pill .text { font-size: 13px; color: var(--text-secondary); font-weight: 700; }
.lp-hero-mark {
  width: 76px; height: 76px; border-radius: 20px; background: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 38px; color: #fff; margin-bottom: 24px; overflow: hidden;
  box-shadow: 0 16px 40px var(--primary-glow);
}
.lp-h1 {
  font-size: clamp(32px, 5vw, 56px); font-weight: 900; line-height: 1.12;
  letter-spacing: -.02em; margin: 0 0 18px; color: var(--text-main);
  max-width: 18ch; -webkit-text-fill-color: currentColor; background: none;
}
.lp-sub {
  font-size: clamp(15px, 1.7vw, 18px); color: var(--text-muted); line-height: 1.85;
  max-width: 54ch; margin: 0 0 30px;
}
.lp-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-start; }
.lp-hero-trust { margin-top: 22px; font-size: 13.5px; color: var(--text-muted); font-weight: 600; display: flex; align-items: center; gap: 8px; }
.lp-hero-trust .av { display: inline-flex; }
.lp-hero-trust .av span { width: 26px; height: 26px; border-radius: 50%; background: var(--primary-soft); border: 2px solid var(--bg-main); display: inline-flex; align-items: center; justify-content: center; margin-inline-start: -8px; color: var(--primary); }
.lp-hero-trust .av span:first-child { margin-inline-start: 0; }

/* ─── Hero creator-dashboard PHONE MOCKUP ─────────────────────────────── */
.lp-hero-visual { display: flex; justify-content: center; }
.lp-mock { position: relative; width: 300px; max-width: 86vw; }

/* Floating badges around the phone */
.lp-mock-badge {
  position: absolute; z-index: 6; display: inline-flex; align-items: center; gap: 7px;
  background: var(--bg-card); border: 1px solid var(--border-soft);
  border-radius: 14px; box-shadow: var(--lp-shadow-lg);
  font-weight: 800; font-size: 12.5px; color: var(--text-main); padding: 9px 13px;
}
.lp-mock-badge [data-lucide] { width: 16px; height: 16px; color: var(--primary); }
.lp-mock-badge-tier { top: 44px; inset-inline-start: -26px; color: var(--primary); animation: lp-float 5s ease-in-out infinite; }
.lp-mock-badge-gift { bottom: 96px; inset-inline-end: -20px; width: 50px; height: 50px; justify-content: center; padding: 0; border-radius: 16px; animation: lp-float 6.5s ease-in-out .8s infinite; }
.lp-mock-badge-gift [data-lucide] { width: 24px; height: 24px; }

/* Phone frame + screen (dark, like the real creator portal) */
.lp-phone {
  position: relative; background: #0E0F14; border-radius: 40px; padding: 11px;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 36px 80px rgba(15,23,42,.30), 0 10px 24px rgba(15,23,42,.16);
}
/* Dynamic-island notch (top) + home indicator (bottom) = real-phone feel */
.lp-phone-island { position: absolute; top: 19px; left: 50%; transform: translateX(-50%); width: 84px; height: 22px; border-radius: 14px; background: #000; z-index: 4; }
.lp-phone-screen {
  background: #15161F; border-radius: 30px; padding: 12px 14px 10px;
  direction: rtl; color: #fff; overflow: hidden;
  display: flex; flex-direction: column; gap: 9px;
}
.lp-phone-screen [data-lucide] { width: 16px; height: 16px; }

/* Status bar */
.m-status { display: flex; align-items: center; justify-content: space-between; padding: 2px 6px 2px; height: 20px; }
.m-time { font-size: 12px; font-weight: 800; color: #fff; letter-spacing: .3px; }
.m-sys { display: inline-flex; align-items: center; gap: 5px; color: #fff; }
.m-sys [data-lucide] { width: 14px; height: 14px; }

/* Home indicator */
.m-home { width: 108px; height: 5px; border-radius: 4px; background: rgba(255,255,255,.32); margin: 6px auto 2px; }

/* Motivational banner */
.m-motivate { display: flex; align-items: center; gap: 11px; background: rgba(124,77,255,.14); border: 1px solid rgba(124,77,255,.30); border-radius: 14px; padding: 11px 12px; }
.m-motivate .mv-ic { width: 38px; height: 38px; border-radius: 11px; background: #7C4DFF; color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.m-motivate .mv-ic [data-lucide] { width: 19px; height: 19px; }
.m-motivate .mv-t { font-size: 13px; font-weight: 800; color: #fff; }
.m-motivate .mv-s { font-size: 11px; color: rgba(255,255,255,.7); font-weight: 600; margin-top: 2px; }

.lp-phone-screen .m-top { display: flex; align-items: center; justify-content: space-between; }
.m-user { display: flex; align-items: center; gap: 10px; }
.m-ava { width: 40px; height: 40px; border-radius: 12px; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 16px; }
.m-name { font-size: 14px; font-weight: 800; color: #fff; }
.m-tier { font-size: 11.5px; font-weight: 800; color: #C9A6FF; display: inline-flex; align-items: center; gap: 4px; margin-top: 2px; }
.m-tier [data-lucide] { width: 13px; height: 13px; }
.m-rank { font-size: 12px; font-weight: 800; color: #FFD479; background: rgba(255,212,121,.12); border: 1px solid rgba(255,212,121,.25); padding: 6px 10px; border-radius: 999px; display: inline-flex; align-items: center; gap: 5px; }
.m-rank [data-lucide] { width: 13px; height: 13px; }

.m-dmd { background: rgba(254,44,85,.13); border: 1px solid rgba(254,44,85,.28); border-radius: 16px; padding: 13px 14px; }
.m-dmd-lbl { font-size: 11.5px; color: rgba(255,255,255,.7); font-weight: 600; margin-bottom: 5px; }
.m-dmd-val { font-size: 27px; font-weight: 900; color: #fff; display: flex; align-items: center; gap: 8px; line-height: 1; }
.m-dmd-val [data-lucide] { width: 24px; height: 24px; color: #FE2C55; }
.m-bar { height: 7px; background: rgba(255,255,255,.12); border-radius: 4px; overflow: hidden; margin: 11px 0 7px; }
.m-bar-fill { height: 100%; width: 8%; background: #FE2C55; border-radius: 4px; transition: width 1.6s cubic-bezier(.2,.8,.2,1); }
.lp-mock.in .m-bar-fill { width: 95%; }
.m-dmd-meta { display: flex; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,.65); font-weight: 700; }
.m-dmd-meta span { display: inline-flex; align-items: center; gap: 4px; }
.m-dmd-meta [data-lucide] { width: 12px; height: 12px; color: #FE2C55; }

.m-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.m-tile { background: #1E1F2B; border: 1px solid rgba(255,255,255,.06); border-radius: 14px; padding: 11px 8px; text-align: center; }
.m-tile .t-ic { color: #FE2C55; display: inline-flex; margin-bottom: 5px; }
.m-tile .t-v { font-size: 20px; font-weight: 900; color: #fff; line-height: 1; }
.m-tile .t-l { font-size: 10.5px; color: rgba(255,255,255,.6); margin-top: 4px; font-weight: 600; }

.m-reward { display: flex; align-items: center; gap: 11px; background: #1E1F2B; border: 1px solid rgba(255,255,255,.06); border-radius: 14px; padding: 12px; }
.m-reward-ic { width: 42px; height: 42px; border-radius: 12px; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.m-reward-ic [data-lucide] { width: 20px; height: 20px; }
.m-reward-body { flex: 1; min-width: 0; }
.m-reward .r-t { font-size: 13px; font-weight: 800; color: #fff; }
.m-reward .r-s { font-size: 11px; color: #6EE7B7; font-weight: 700; margin-top: 2px; }
.m-reward .r-arrow { color: rgba(255,255,255,.45); width: 16px; height: 16px; }

.m-tasks { background: #1E1F2B; border: 1px solid rgba(255,255,255,.06); border-radius: 14px; padding: 13px 14px; }
.m-tasks-h { font-size: 12px; font-weight: 800; color: #fff; margin-bottom: 9px; }
.m-task { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,.55); font-weight: 600; padding: 4px 0; }
.m-task [data-lucide] { width: 16px; height: 16px; color: rgba(255,255,255,.3); }
.m-task.done { color: rgba(255,255,255,.92); }
.m-task.done [data-lucide] { color: #34D399; }

@media (max-width: 860px) {
  .lp-mock { width: 290px; }
  .lp-mock-badge-tier { inset-inline-start: -10px; }
  .lp-mock-badge-gift { inset-inline-end: -8px; }
}

@media (max-width: 860px) {
  .lp-hero-inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .lp-hero-text { text-align: center; }
  .lp-h1, .lp-sub { max-width: 100%; margin-inline: auto; }
  .lp-hero-actions { justify-content: center; }
  .lp-hero-trust { justify-content: center; }
}
.lp-cta-big, .lp-cta-xl {
  background: var(--primary); color: #fff; border: none;
  border-radius: 14px; padding: 16px 34px; font-size: 16px; font-weight: 800;
  cursor: pointer; font-family: inherit; box-shadow: 0 10px 30px var(--primary-glow);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.lp-cta-big:hover, .lp-cta-xl:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: var(--lp-shadow-lg); }
.lp-btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-card); color: var(--text-main);
  border: 1px solid var(--border-main); border-radius: 14px;
  padding: 16px 28px; font-size: 16px; font-weight: 800; cursor: pointer;
  text-decoration: none; transition: all .2s;
}
.lp-btn-secondary:hover { border-color: var(--primary); color: var(--primary); }

/* ─── TRUST / TICKER ──────────────────────────────────────────────────── */
.lp-ticker {
  overflow: hidden; background: var(--bg-card);
  border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft);
  padding: 13px 0;
}
.lp-ticker-track { display: flex; gap: 0; width: max-content; direction: ltr; animation: lp-ticker-scroll 38s linear infinite; will-change: transform; }
.lp-ticker-track:hover { animation-play-state: paused; }
.lp-ticker-item { font-size: 13.5px; color: var(--text-secondary); font-weight: 600; white-space: nowrap; display: flex; align-items: center; gap: 12px; padding: 0 24px; }
.lp-ticker-item .sep { color: var(--primary); display: inline-flex; }
.lp-ticker-item .sep [data-lucide] { width: 13px; height: 13px; }
@keyframes lp-ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── STATS ───────────────────────────────────────────────────────────── */
.lp-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.lp-stat {
  background: var(--bg-card); border: var(--lp-ring); border-radius: var(--lp-radius);
  padding: 30px 20px; text-align: center; box-shadow: var(--lp-shadow);
  border-top-width: 1px !important; transition: transform .2s, box-shadow .2s;
}
.lp-stat:hover { transform: translateY(-4px); box-shadow: var(--lp-shadow-lg); }
.lp-stat .icon { color: var(--primary); margin-bottom: 12px; display: inline-flex; }
.lp-stat .icon [data-lucide] { width: 30px; height: 30px; }
.lp-stat .num { font-size: clamp(30px, 4vw, 42px); font-weight: 900; color: var(--text-main); margin-bottom: 6px; line-height: 1; }
.lp-stat .label { font-size: 13.5px; color: var(--text-muted); font-weight: 600; }

/* ─── BENEFITS (card grid, not stacked rows) ──────────────────────────── */
.lp-benefits-head { text-align: center; margin-bottom: 52px; }
.lp-benefits-head h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 900; color: var(--text-main); }
.lp-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.lp-benefits .lp-benefits-head { grid-column: 1 / -1; }
.lp-benefit {
  background: var(--bg-card); border: var(--lp-ring); border-radius: var(--lp-radius);
  padding: 28px 24px; display: flex; flex-direction: column; align-items: flex-start;
  gap: 14px; margin: 0; box-shadow: var(--lp-shadow); transition: transform .2s, box-shadow .2s, border-color .2s;
}
.lp-benefit:hover { transform: translateY(-4px); box-shadow: var(--lp-shadow-lg); border-color: var(--primary-soft); }
.lp-benefit .ic {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: var(--primary-soft); color: var(--primary); border: none;
  display: flex; align-items: center; justify-content: center;
}
.lp-benefit .ic [data-lucide] { width: 24px; height: 24px; }
.lp-benefit .title { font-size: 17px; font-weight: 800; color: var(--text-main); margin: 0; }
.lp-benefit .desc { font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* ─── HOW IT WORKS (new) ──────────────────────────────────────────────── */
.lp-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: start; }
.lp-step {
  position: relative; background: var(--bg-card); border: var(--lp-ring);
  border-radius: var(--lp-radius); padding: 28px 24px; box-shadow: var(--lp-shadow);
}
.lp-step .n {
  width: 44px; height: 44px; border-radius: 12px; background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 900;
  font-size: 18px; margin-bottom: 16px;
}
.lp-step h3 { font-size: 17px; font-weight: 800; color: var(--text-main); margin: 0 0 8px; }
.lp-step p { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin: 0; }

/* ─── TESTIMONIALS ────────────────────────────────────────────────────── */
.lp-test-card {
  background: var(--bg-card); border: var(--lp-ring); border-radius: var(--lp-radius);
  padding: 36px 32px; margin: 0 auto 20px; max-width: 720px; position: relative;
  overflow: hidden; box-shadow: var(--lp-shadow); text-align: start;
}
.lp-test-card .quote { position: absolute; top: 16px; inset-inline-end: 26px; font-size: 90px; color: var(--primary); opacity: .12; font-family: Georgia, serif; line-height: 1; }
.lp-test-card p { font-size: clamp(16px, 2vw, 19px); color: var(--text-main); line-height: 1.85; margin: 0 0 24px; font-weight: 600; }
.lp-test-foot { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.lp-test-foot .who { display: flex; align-items: center; gap: 12px; }
.lp-test-foot .ava { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; color: #fff; }
.lp-test-foot .name { font-size: 14px; font-weight: 800; color: var(--text-main); }
.lp-test-foot .tier { font-size: 12px; margin-top: 2px; font-weight: 800; }
.lp-test-foot .top { font-size: 11px; color: var(--text-muted); margin-bottom: 2px; }
.lp-test-foot .max { font-size: 17px; font-weight: 900; color: var(--primary); }
.lp-test-dots { display: flex; justify-content: center; gap: 7px; }
.lp-test-dots button { height: 9px; border-radius: 5px; border: none; cursor: pointer; padding: 0; transition: all .3s; background: var(--border-main); }
.lp-test-dots button.active { width: 26px; background: var(--primary); }
.lp-test-dots button:not(.active) { width: 9px; }

/* ─── TIERS ───────────────────────────────────────────────────────────── */
#tiers .lp-tier-row { max-width: 760px; margin-inline: auto; }
.lp-tier-row {
  background: var(--bg-card); border: var(--lp-ring) !important; border-radius: var(--lp-radius-sm);
  padding: 18px 22px; display: flex; align-items: center; gap: 16px; margin-bottom: 12px;
  box-shadow: var(--lp-shadow); text-align: start;
}
.lp-tier-row .ic { width: 42px; height: 42px; border-radius: 11px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 900; }
.lp-tier-row .body { flex: 1; }
.lp-tier-row .top { display: flex; justify-content: space-between; margin-bottom: 8px; gap: 10px; }
.lp-tier-row .top .name { font-size: 14px; font-weight: 800; }
.lp-tier-row .top .range { font-size: 12px; color: var(--text-muted); font-weight: 700; }
.lp-tier-row .bar { height: 7px; background: var(--bg-hover); border-radius: 4px; overflow: hidden; }
.lp-tier-row .fill { height: 100%; border-radius: 4px; background: var(--primary) !important; }

/* ─── FAQ (new accordion) ─────────────────────────────────────────────── */
.lp-faq { max-width: 800px; margin-inline: auto; text-align: start; }
.lp-faq-item { background: var(--bg-card); border: var(--lp-ring); border-radius: var(--lp-radius-sm); margin-bottom: 12px; overflow: hidden; box-shadow: var(--lp-shadow); }
.lp-faq-q { width: 100%; text-align: start; background: none; border: none; cursor: pointer; padding: 20px 22px; font-size: 16px; font-weight: 800; color: var(--text-main); font-family: inherit; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.lp-faq-q .chev { color: var(--primary); transition: transform .25s; flex-shrink: 0; }
.lp-faq-item.open .lp-faq-q .chev { transform: rotate(180deg); }
.lp-faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.lp-faq-item.open .lp-faq-a { max-height: 320px; }
.lp-faq-a p { padding: 0 22px 20px; margin: 0; font-size: 14.5px; color: var(--text-muted); line-height: 1.85; }

/* ─── COMPARE: SOLO vs WITH US (primary / most-important section) ──────── */
.lp-compare {
  position: relative; overflow: hidden;
  background: var(--pink-50);
  border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft);
  padding: clamp(72px, 10vw, 116px) clamp(16px, 4vw, 48px);
}
.lp-compare::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .6;
  background-image: radial-gradient(rgba(254,44,85,.12) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 72%);
          mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 72%);
}
.lp-compare-inner { position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; text-align: center; }
.lp-compare .lp-lead { margin-bottom: 46px; }

.lp-vs { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: stretch; text-align: start; }
.lp-vs-card {
  display: flex; flex-direction: column;
  background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: 24px;
  padding: 34px 30px; box-shadow: var(--lp-shadow); transition: box-shadow .25s;
}
.lp-vs-card:hover { box-shadow: var(--lp-shadow-lg); }
.lp-vs-card.pro { position: relative; border: 2px solid var(--primary); box-shadow: 0 22px 62px var(--primary-glow); padding-top: 40px; }
.lp-vs-card.pro::before { content: ""; position: absolute; top: 0; inset-inline: 26px; height: 4px; background: var(--primary); border-radius: 0 0 4px 4px; }

.lp-vs-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; padding-bottom: 20px; border-bottom: 1px solid var(--border-soft); }
.lp-vs-head .ic { width: 52px; height: 52px; border-radius: 15px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lp-vs-head .ic [data-lucide] { width: 24px; height: 24px; }
.lp-vs-card.solo .lp-vs-head .ic { background: var(--bg-hover); color: var(--text-muted); }
.lp-vs-card.pro  .lp-vs-head .ic { background: var(--primary); color: #fff; }
.lp-vs-head h3 { font-size: 21px; font-weight: 900; color: var(--text-main); margin: 0; }
.lp-vs-head .sub { font-size: 13px; color: var(--text-muted); font-weight: 600; }

.lp-vs-badge { position: absolute; top: -15px; inset-inline-end: 26px; background: var(--primary); color: #fff; font-size: 12.5px; font-weight: 800; padding: 8px 16px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; box-shadow: 0 10px 24px var(--primary-glow); }
.lp-vs-badge [data-lucide] { width: 15px; height: 15px; }

.lp-vs-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; flex: 1; }
.lp-vs-item { display: flex; align-items: flex-start; gap: 13px; font-size: 15.5px; line-height: 1.55; }
.lp-vs-item .ci { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.lp-vs-item .ci [data-lucide] { width: 16px; height: 16px; }
.lp-vs-card.solo .lp-vs-item { color: var(--text-muted); }
.lp-vs-card.solo .lp-vs-item .ci { background: var(--danger-bg); color: var(--danger); }
.lp-vs-card.pro  .lp-vs-item { color: var(--text-main); font-weight: 600; }
.lp-vs-card.pro  .lp-vs-item .ci { background: var(--success-bg); color: var(--success); }

.lp-vs-foot { display: flex; align-items: center; gap: 9px; margin-top: 24px; padding: 14px 16px; border-radius: 14px; font-size: 14px; font-weight: 800; }
.lp-vs-foot [data-lucide] { width: 18px; height: 18px; flex-shrink: 0; }
.lp-vs-foot.solo { background: var(--bg-hover); color: var(--text-muted); }
.lp-vs-foot.pro  { background: var(--success-bg); color: var(--success-fg); }
.lp-vs-cta { margin-top: 16px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--primary); color: #fff; border-radius: 14px; padding: 15px 24px; font-size: 15.5px; font-weight: 800; text-decoration: none; box-shadow: 0 10px 28px var(--primary-glow); transition: background .2s; }
.lp-vs-cta:hover { background: var(--primary-hover); }
.lp-vs-cta [data-lucide] { width: 18px; height: 18px; }

.lp-vs-or { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 3; width: 58px; height: 58px; border-radius: 50%; background: var(--bg-card); border: 1px solid var(--border-main); box-shadow: var(--lp-shadow-lg); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 15px; color: var(--text-main); letter-spacing: .5px; }
@media (max-width: 780px) {
  .lp-vs { grid-template-columns: 1fr; gap: 18px; }
  .lp-vs-or { display: none; }
}

/* ─── BLOG ────────────────────────────────────────────────────────────── */
.lp-blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 22px; margin-top: 8px; text-align: start; }
.lp-blog-card { background: var(--bg-card); border: var(--lp-ring); border-radius: var(--lp-radius); overflow: hidden; text-decoration: none; color: var(--text-main); transition: transform .2s, box-shadow .2s, border-color .2s; display: flex; flex-direction: column; box-shadow: var(--lp-shadow); }
.lp-blog-card:hover { transform: translateY(-4px); box-shadow: var(--lp-shadow-lg); border-color: var(--primary-soft); }
.lp-blog-thumb { width: 100%; aspect-ratio: 16/9; background-size: cover; background-position: center; background-color: var(--bg-hover); }
.lp-blog-thumb-fallback { background: var(--primary-soft); color: var(--primary); display: flex; align-items: center; justify-content: center; }
.lp-blog-thumb-fallback [data-lucide] { width: 48px; height: 48px; }
.lp-blog-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.lp-blog-tag { font-size: 11px; color: var(--primary); font-weight: 800; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .5px; display: inline-flex; align-items: center; gap: 6px; }
.lp-blog-title { font-size: 17px; font-weight: 800; line-height: 1.45; color: var(--text-main); margin-bottom: 8px; }
.lp-blog-excerpt { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; flex: 1; }
.lp-blog-meta { font-size: 11.5px; color: var(--text-muted); margin-top: 12px; }

/* ─── CTA BAND ────────────────────────────────────────────────────────── */
.lp-cta-section { padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 48px); }
.lp-cta-section .glow { display: none; }
.lp-cta-section .inner {
  position: relative; max-width: var(--lp-max); margin: 0 auto;
  background: var(--primary); color: #fff; border-radius: 28px;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 64px); text-align: center;
  overflow: hidden;
}
.lp-cta-section .inner::before {
  content: ""; position: absolute; inset: 0; opacity: .12;
  background-image: radial-gradient(#fff 1.4px, transparent 1.4px); background-size: 22px 22px;
}
.lp-cta-section .inner > * { position: relative; }
.lp-cta-section .rocket { color: #fff; margin-bottom: 18px; display: inline-flex; }
.lp-cta-section .rocket [data-lucide] { width: 48px; height: 48px; }
.lp-cta-section h2 { font-size: clamp(26px, 4vw, 42px); font-weight: 900; margin-bottom: 14px; color: #fff; -webkit-text-fill-color: #fff; background: none; }
.lp-cta-section p { font-size: clamp(15px, 2vw, 18px); color: rgba(255,255,255,.9); margin-bottom: 32px; line-height: 1.8; }
.lp-cta-section .lp-cta-xl { background: #fff; color: var(--primary); box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.lp-cta-section .lp-cta-xl:hover { background: #fff; opacity: .92; }

/* ─── FOOTER ──────────────────────────────────────────────────────────── */
.lp-footer { border-top: 1px solid var(--border-soft); background: var(--bg-card); padding: clamp(48px, 7vw, 72px) clamp(16px, 4vw, 48px) 28px; color: var(--text-muted); font-size: 14px; }
.lp-footer-grid { max-width: var(--lp-max); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 36px; }
.lp-footer-col h4 { color: var(--text-main); font-size: 13px; font-weight: 800; margin: 0 0 16px; text-transform: uppercase; letter-spacing: .6px; }
.lp-footer-col a { display: block; color: var(--text-muted); text-decoration: none; padding: 5px 0; font-size: 14px; transition: color .2s; }
.lp-footer-col a:hover { color: var(--primary); }
.lp-footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.lp-footer-brand .mark { width: 42px; height: 42px; border-radius: 11px; background: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 19px; font-weight: 900; color: #fff; overflow: hidden; }
.lp-footer-brand .text { font-size: 18px; font-weight: 800; color: var(--text-main); }
.lp-footer-tagline { color: var(--text-muted); font-size: 14px; line-height: 1.8; margin-bottom: 18px; max-width: 320px; }
.lp-footer-socials { display: flex; gap: 8px; flex-wrap: wrap; }
.lp-footer-socials a { width: 38px; height: 38px; border-radius: 11px; background: var(--bg-main); border: 1px solid var(--border-soft); color: var(--text-muted); display: inline-flex; align-items: center; justify-content: center; text-decoration: none; transition: all .2s; }
.lp-footer-socials a:hover { background: var(--primary-soft); border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.lp-footer-contact { display: flex; align-items: center; gap: 9px; color: var(--text-muted); font-size: 14px; padding: 5px 0; }
.lp-footer-contact span.ic { width: 20px; display: inline-flex; color: var(--primary); }
.lp-footer-bottom { max-width: var(--lp-max); margin: 0 auto; border-top: 1px solid var(--border-soft); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: var(--text-muted); }

@media (max-width: 920px) { .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .lp-footer-grid { grid-template-columns: 1fr; } }

/* ─── RESPONSIVE GRIDS ────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .lp-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-benefits   { grid-template-columns: repeat(2, 1fr); }
  .lp-steps      { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .lp-stats-grid, .lp-benefits, .lp-steps { grid-template-columns: 1fr; }
}

/* ─── GENERIC PUBLIC CONTENT PAGE (about/services/contact/legal) ──────── */
.lp-content { max-width: 860px; margin: 0 auto; padding: clamp(120px, 16vh, 160px) clamp(16px, 4vw, 48px) clamp(64px, 9vw, 100px); }
.lp-content .lp-eyebrow { margin-bottom: 14px; }
.lp-content h1 { font-size: clamp(30px, 5vw, 46px); font-weight: 900; line-height: 1.15; color: var(--text-main); margin: 0 0 18px; }
.lp-content > p { font-size: clamp(15px, 2vw, 18px); color: var(--text-muted); line-height: 1.9; margin: 0 0 20px; }
.lp-content h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 900; color: var(--text-main); margin: 44px 0 14px; }
.lp-content h3 { font-size: 19px; font-weight: 800; color: var(--text-main); margin: 28px 0 10px; }
.lp-content ul { margin: 14px 0 20px; padding-inline-start: 22px; }
.lp-content li { font-size: 15.5px; color: var(--text-secondary); line-height: 1.9; margin-bottom: 8px; }
.lp-content a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.lp-feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 24px 0; }
@media (max-width: 600px) { .lp-feature-grid { grid-template-columns: 1fr; } }
.lp-feature-card { background: var(--bg-card); border: var(--lp-ring); border-radius: var(--lp-radius); padding: 24px; box-shadow: var(--lp-shadow); }
.lp-feature-card .ic { width: 48px; height: 48px; border-radius: 13px; background: var(--primary-soft); color: var(--primary); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.lp-feature-card h3 { margin: 0 0 8px; font-size: 17px; font-weight: 800; color: var(--text-main); }
.lp-feature-card p { margin: 0; font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* Contact */
.lp-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 8px; }
@media (max-width: 700px) { .lp-contact-grid { grid-template-columns: 1fr; } }
.lp-contact-card { background: var(--bg-card); border: var(--lp-ring); border-radius: var(--lp-radius); padding: 26px; box-shadow: var(--lp-shadow); text-align: start; }
.lp-contact-card .ic { width: 50px; height: 50px; border-radius: 14px; background: var(--primary-soft); color: var(--primary); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.lp-contact-card h3 { margin: 0 0 6px; font-size: 16px; font-weight: 800; color: var(--text-main); }
.lp-contact-card a, .lp-contact-card p { margin: 0; font-size: 14.5px; color: var(--text-muted); text-decoration: none; }
.lp-contact-card a:hover { color: var(--primary); }

/* ─── LOGIN PAGE (light, gradient-free) ──────────────────────────────── */
.login-page { background: var(--bg-main) !important; }
.login-page .glow { display: none !important; }
.login-head .mark { background: var(--primary) !important; color: #fff; box-shadow: 0 10px 30px var(--primary-glow); }
.login-head .name { color: var(--text-main) !important; }
.login-head .sub { color: var(--text-muted) !important; }
.login-form { background: var(--bg-card) !important; border: 1px solid var(--border-soft) !important; box-shadow: var(--lp-shadow); }
.login-form label { color: var(--text-secondary) !important; }
.login-form input { background: var(--bg-input) !important; border: 1px solid var(--border-main) !important; color: var(--text-main) !important; }
.login-form input:focus { border-color: var(--primary) !important; box-shadow: 0 0 0 3px var(--primary-soft); }
.login-form button { background: var(--primary) !important; color: #fff !important; }
.login-form button:hover { background: var(--primary-hover) !important; }

/* Inline gem-icon sizing in dynamic content (testimonials / journey) */
.lp-test-foot .tier [data-lucide] { width: 13px; height: 13px; vertical-align: -2px; }
.lp-test-foot .max [data-lucide]  { width: 16px; height: 16px; vertical-align: -2px; }
.lp-hc-jhead .g [data-lucide]     { width: 14px; height: 14px; }

/* ─── ANIMATIONS ──────────────────────────────────────────────────────── */
@keyframes lp-pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(.8); } }
@keyframes lp-fade-up { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes lp-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes lp-pop { 0% { opacity: 0; transform: translateY(24px) scale(.96); } 60% { opacity: 1; } 100% { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes lp-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Hero "wow" entrance — staggered on first paint */
.lp-hero-text > * { opacity: 0; animation: lp-fade-up .7s cubic-bezier(.2,.8,.2,1) forwards; }
.lp-hero-text > *:nth-child(1) { animation-delay: .05s; }
.lp-hero-text > *:nth-child(2) { animation-delay: .15s; }
.lp-hero-text > *:nth-child(3) { animation-delay: .25s; }
.lp-hero-text > *:nth-child(4) { animation-delay: .35s; }
.lp-hero-text > *:nth-child(5) { animation-delay: .45s; }
.lp-hero-visual { opacity: 0; animation: lp-pop .9s cubic-bezier(.2,.8,.2,1) .35s forwards; }
.lp-phone { animation: lp-float 6s ease-in-out 1.4s infinite; }

/* Scroll reveal — JS toggles `.in` via IntersectionObserver */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* Card hover lift already defined per-component; add icon pop on benefit hover */
.lp-benefit:hover .ic, .lp-step:hover .n, .lp-feature-card:hover .ic { transform: scale(1.08); transition: transform .2s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .lp-ticker-track { animation: none; }
  .lp-hero-text > *, .lp-hero-visual, .lp-phone, .lp-mock-badge { animation: none !important; opacity: 1 !important; transform: none !important; }
  .lp-mock.in .m-bar-fill, .m-bar-fill { transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .lp-pill .dot, .lp-hc-live .d { animation: none !important; }
  * { scroll-behavior: auto !important; }
}
html { scroll-behavior: smooth; }
