/* ============================================================
 * css/landing.css — shared styles for keyword landing pages.
 * Reuses tokens from style.css; class prefix: lp-* (landing-page).
 * Mobile-first. Linked from each landing page.
 * ============================================================ */

/* ---------- Hero with screenshot ---------- */
.lp-hero {
  padding: 130px 0 50px;
  background: linear-gradient(135deg, #eff6ff 0%, #ecfeff 60%, #f0fdfa 100%);
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) { .lp-hero { padding: 110px 0 40px; } }

.lp-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 960px) {
  .lp-hero-grid { grid-template-columns: 1.05fr 1fr; gap: 48px; }
}

.lp-hero-text .lp-pretitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,.10);
  color: #1d4ed8;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.lp-hero-text .lp-pretitle .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 0 rgba(22,163,74,.7);
  animation: lpPulse 1.6s infinite;
}
@keyframes lpPulse {
  0%   { box-shadow: 0 0 0 0   rgba(22,163,74,.6); }
  70%  { box-shadow: 0 0 0 9px rgba(22,163,74,0); }
  100% { box-shadow: 0 0 0 0   rgba(22,163,74,0); }
}

.lp-hero-text h1 {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin: 0 0 14px;
}
.lp-hero-text h1 .gradient-text { font-style: normal; }
.lp-hero-text .lp-lead {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 36em;
}
.lp-hero-text .lp-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 18px;
}
.lp-hero-text .lp-trust {
  display: flex; flex-wrap: wrap; gap: 14px 22px;
  font-size: .85rem;
  color: #475569;
}
.lp-hero-text .lp-trust span i { margin-right: 5px; color: #16a34a; }

.lp-hero-shot {
  position: relative;
}
.lp-hero-shot img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 30px 70px rgba(15,23,42,.15);
  border: 1px solid #e2e8f0;
  background: #fff;
  display: block;
}
.lp-hero-shot::before {
  content: '';
  position: absolute;
  inset: -22px -22px auto auto;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(37,99,235,.18), transparent 65%);
  border-radius: 50%;
  z-index: -1;
}
.lp-hero-shot::after {
  content: '';
  position: absolute;
  inset: auto auto -22px -22px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(22,163,74,.18), transparent 65%);
  border-radius: 50%;
  z-index: -1;
}

/* Hero breadcrumb override (smaller, neutral) */
.lp-hero .breadcrumb {
  font-size: .82rem;
  color: #64748b;
  margin: 0 0 16px;
}
.lp-hero .breadcrumb a { color: #2563eb; text-decoration: none; }
.lp-hero .breadcrumb a:hover { text-decoration: underline; }

/* ---------- Section heads ---------- */
.lp-section-head { text-align: center; margin: 0 auto 28px; max-width: 720px; }
.lp-section-head .badge { margin-bottom: 8px; }
.lp-section-head h2 {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #0f172a;
  margin: 6px 0 8px;
  line-height: 1.3;
}
.lp-section-head p { color: #64748b; margin: 0; font-size: 1rem; }

/* ---------- "How it works" steps ---------- */
.lp-steps {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  margin-top: 28px;
}
@media (min-width: 700px)  { .lp-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .lp-steps { grid-template-columns: repeat(4, 1fr); } }

.lp-step {
  background: #fff;
  border: 1px solid #e6ecf2;
  border-radius: 14px;
  padding: 22px 20px;
  position: relative;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.lp-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(15,23,42,.08);
  border-color: #c7d2fe;
}
.lp-step .lp-step-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
  font-family: var(--font-display, 'Syne', sans-serif);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.lp-step h3 {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px;
}
.lp-step p { font-size: .88rem; color: #475569; margin: 0; line-height: 1.6; }

/* ---------- Mini pricing strip ---------- */
.lp-pricing-strip {
  padding: 50px 0 60px;
  background: #f8fafc;
}
.lp-plans {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-top: 24px;
}
@media (min-width: 640px)  { .lp-plans { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .lp-plans { grid-template-columns: repeat(4, 1fr); } }

.lp-plan {
  background: #fff;
  border: 1.5px solid #e6ecf2;
  border-radius: 14px;
  padding: 22px 18px 18px;
  text-align: center;
  position: relative;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.lp-plan:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(15,23,42,.08); }
.lp-plan--popular { border-color: #f59e0b; box-shadow: 0 12px 28px rgba(245,158,11,.18); }
.lp-plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #f43f5e);
  color: #fff; font-weight: 800; font-size: .65rem;
  letter-spacing: .08em; padding: 4px 12px; border-radius: 999px;
  white-space: nowrap;
}
.lp-plan-emoji { font-size: 1.4rem; }
.lp-plan-name {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 1rem; font-weight: 800; color: #0f172a;
  margin: 4px 0;
}
.lp-plan-price {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 1.5rem; font-weight: 800;
  color: #2563eb;
  margin: 6px 0 4px;
}
.lp-plan-price small { font-size: .65rem; color: #64748b; font-weight: 600; }
.lp-plan-cap { font-size: .82rem; color: #475569; margin-bottom: 14px; }
.lp-plan-cap strong { color: #0f172a; }

/* ---------- Module callout strip (showcase one screenshot) ---------- */
.lp-callout-strip {
  background: linear-gradient(135deg, #1e3a5f, #1e40af);
  color: #fff;
  border-radius: 18px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  margin: 24px 0;
}
@media (min-width: 900px) {
  .lp-callout-strip { grid-template-columns: 1.2fr 1fr; padding: 40px; }
}
.lp-callout-strip h2 {
  font-family: var(--font-display, 'Syne', sans-serif);
  color: #fff;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  margin: 0 0 10px;
  line-height: 1.3;
}
.lp-callout-strip p { color: rgba(255,255,255,.92); margin: 0 0 16px; line-height: 1.7; }
.lp-callout-strip .lp-callout-shot img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 24px 50px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.12);
}

/* ---------- Page-content typography ---------- */
.lp-content p { line-height: 1.78; color: #1e293b; margin: 0 0 1em; }
.lp-content a { color: #2563eb; text-decoration: underline; text-underline-offset: 3px; }
.lp-content a:hover { color: #1d4ed8; }
.lp-content ul, .lp-content ol { margin: 0 0 1.2em 1.4em; line-height: 1.78; }
.lp-content li { margin: 0 0 .4em; }
.lp-content strong { color: #0f172a; }

/* ---------- FAQ override (lighter) ---------- */
.lp-faq .faq-grid { grid-template-columns: 1fr !important; max-width: 880px; margin: 0 auto; }
