﻿/* ══════════════════════════════════════════════════════
   Kanbano — Marketing / Landing Pages
   Home  ·  Features  ·  Pricing
══════════════════════════════════════════════════════ */

/* ── Beta banner ────────────────────────────────────── */
.lp-beta-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
  color: #1c1917;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1;
}
.lp-beta-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.lp-beta-tag {
  background: #1c1917;
  color: #fbbf24;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 3px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}
.lp-beta-close {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.15);
  border: none;
  border-radius: 4px;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: #1c1917;
  cursor: pointer;
  line-height: 1;
  transition: background .15s;
}
.lp-beta-close:hover { background: rgba(0,0,0,.28); }

/* ── Reset & base ───────────────────────────────────── */
/* Prevent any descendant from widening the layout viewport on mobile —
   Safari/Chrome treat any element wider than `device-width` as the new
   layout-viewport width, which silently breaks `@media (max-width: 768px)`
   queries on phones (the layout viewport jumps to e.g. 1024px, the media
   query never fires, and the desktop nav stays visible with no hamburger).
   `overflow-x: hidden` on .lp-page alone isn't enough because position:fixed
   nav escapes that container's clipping. Pinning html+body fixes it. */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}
.lp-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  color: #0f172a;
  background: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}
.lp-page *, .lp-page *::before, .lp-page *::after { box-sizing: border-box; }

/* ── Nav ────────────────────────────────────────────── */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15,23,42,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.lp-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.lp-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}
.lp-logo i { color: #3b82f6; }
.lp-nav-links {
  display: flex;
  gap: .25rem;
  flex: 1;
}
.lp-nav-link {
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  border-radius: 6px;
  cursor: pointer;
  transition: color .15s, background .15s;
  text-decoration: none;
}
.lp-nav-link:hover, .lp-nav-link.active { color: #fff; background: rgba(255,255,255,.08); }
.lp-nav-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
/* Hamburger toggle + drawer — hidden on desktop, shown ≤768px (see media query at bottom). */
.lp-nav-mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.9);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
}
.lp-nav-mobile-toggle:hover { background: rgba(255,255,255,.08); }
.lp-nav-mobile-drawer {
  display: none;
  background: rgba(15,23,42,.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 12px 20px 16px;
  flex-direction: column;
  gap: 4px;
}
.lp-nav-mlink {
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
}
.lp-nav-mlink:hover, .lp-nav-mlink.active {
  color: #fff; background: rgba(255,255,255,.08);
}
.lp-nav-mbtn {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-top: 4px;
}
.lp-nav-mbtn--ghost {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.9);
}
.lp-nav-mbtn--ghost:hover { background: rgba(255,255,255,.14); }
.lp-nav-mbtn--primary {
  background: #6366f1;
  color: #fff;
}
.lp-nav-mbtn--primary:hover { background: #5658e8; }
/* Custom language selector (replaces <select> for cross-browser flag support) */
.lp-lang-sel { position: relative; }
.lp-lang-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 10px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.85); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: background .15s, border-color .15s;
}
.lp-lang-btn:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.4); }
.lp-lang-dropdown {
  display: none; position: absolute; right: 0; top: calc(100% + 6px);
  background: #1e293b; border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px; padding: 4px; min-width: 160px;
  z-index: 1000; box-shadow: 0 8px 24px rgba(0,0,0,.45);
}
.lp-lang-dropdown.open { display: block; }
.lp-lang-opt {
  display: flex; align-items: center; gap: 8px;
  width: 100%; padding: 8px 10px; border-radius: 6px;
  border: none; background: none; cursor: pointer;
  color: #cbd5e1; font-size: 14px; text-align: left;
}
.lp-lang-opt:hover { background: rgba(255,255,255,.08); }
.lp-lang-opt.active { color: #60a5fa; }
.lp-lang-opt i { margin-left: auto; font-size: 11px; }
.lp-lang-name { flex: 1; }
.lp-btn-ghost {
  padding: 7px 16px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  cursor: pointer;
  transition: all .15s;
}
.lp-btn-ghost:hover { background: rgba(255,255,255,.1); color: #fff; }
.lp-btn-primary {
  padding: 7px 18px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: #3b82f6;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s, transform .1s;
}
.lp-btn-primary:hover { background: #2563eb; transform: translateY(-1px); }

/* ── Full-width section bands ────────────────────────── */
.lp-band {
  border-top: 1px solid #e2e8f0;
}
.lp-band-alt {
  background: #f1f5f9;
  border-top: 1px solid #cbd5e1;
  border-bottom: 1px solid #cbd5e1;
}

/* ── Shared section wrapper ─────────────────────────── */
.lp-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 2rem;
}
.lp-section-sm { padding: 60px 2rem; }
.lp-label {
  display: inline-block;
  background: rgba(59,130,246,.12);
  color: #3b82f6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.lp-label-green { background: rgba(16,185,129,.12); color: #059669; }
.lp-label-purple { background: rgba(139,92,246,.12); color: #7c3aed; }
.lp-h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 .75rem;
  line-height: 1.2;
}
.lp-h2 span { color: #3b82f6; }
.lp-sub {
  font-size: 1.1rem;
  color: #475569;
  max-width: 560px;
  margin: 0 0 2.5rem;
}
.lp-centered { text-align: center; }
.lp-centered .lp-sub { margin-left: auto; margin-right: auto; }

/* ══ HOME PAGE ══════════════════════════════════════════ */

/* ── Hero ───────────────────────────────────────────── */
.lp-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
  display: flex;
  align-items: center;
  padding-top: 64px;
  overflow: hidden;
  position: relative;
}
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(59,130,246,.18) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(139,92,246,.12) 0%, transparent 50%);
}
.lp-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,130,246,.15);
  border: 1px solid rgba(59,130,246,.3);
  color: #93c5fd;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}
.lp-hero-badge i { color: #fbbf24; }
.lp-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 1.25rem;
}
.lp-hero-title .accent { color: #60a5fa; }
.lp-hero-title .accent2 { color: #34d399; }
.lp-hero-desc {
  font-size: 1.15rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}
.lp-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 2.5rem; }
.lp-cta-primary {
  padding: 14px 28px;
  background: #3b82f6;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background .15s, transform .1s, box-shadow .15s;
  box-shadow: 0 4px 14px rgba(59,130,246,.4);
}
.lp-cta-primary:hover { background: #2563eb; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(59,130,246,.5); }
.lp-cta-secondary {
  padding: 14px 28px;
  background: rgba(255,255,255,.08);
  color: #e2e8f0;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  cursor: pointer;
  transition: all .15s;
}
.lp-cta-secondary:hover { background: rgba(255,255,255,.15); color: #fff; }
.lp-hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.lp-hero-stat-val { font-size: 1.5rem; font-weight: 800; color: #fff; }
.lp-hero-stat-lbl { font-size: 12px; color: #64748b; margin-top: 2px; }

/* ── Hero board mockup ──────────────────────────────── */
.lp-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.lp-board-mockup {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 16px;
  width: 100%;
  max-width: 480px;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 24px 64px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.1);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.lp-board-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.lp-board-dot { width: 10px; height: 10px; border-radius: 50%; }
.lp-board-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  margin-left: 4px;
}
.lp-board-cols { display: flex; gap: 10px; }
.lp-board-col { flex: 1; }
.lp-board-col-hdr {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
  padding: 4px 6px;
  background: rgba(255,255,255,.05);
  border-radius: 5px;
  text-align: center;
}
.lp-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 7px;
  font-size: 11px;
  color: rgba(255,255,255,.75);
  line-height: 1.4;
  transition: background .2s;
}
.lp-card:hover { background: rgba(255,255,255,.12); }
.lp-card-bar {
  height: 3px;
  border-radius: 2px;
  margin-bottom: 6px;
  width: 40%;
}
.lp-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}
.lp-card-chip {
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}
.lp-chip-red   { background: rgba(239,68,68,.2);  color: #fca5a5; }
.lp-chip-blue  { background: rgba(59,130,246,.2); color: #93c5fd; }
.lp-chip-green { background: rgba(16,185,129,.2); color: #6ee7b7; }
.lp-mini-avatar {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #3b82f6;
  font-size: 8px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Stats strip ────────────────────────────────────── */
.lp-stats-strip {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.lp-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.lp-stat-item { text-align: center; }
.lp-stat-num { font-size: 2rem; font-weight: 900; color: #0f172a; }
.lp-stat-num span { color: #3b82f6; }
.lp-stat-txt { font-size: 13px; color: #64748b; margin-top: 2px; }

/* ── Feature grid ───────────────────────────────────── */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.lp-feature-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.75rem;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  cursor: default;
}
.lp-feature-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transform: translateY(-3px);
  border-color: #bfdbfe;
}
.lp-feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.fi-blue   { background: #eff6ff; color: #3b82f6; }
.fi-green  { background: #f0fdf4; color: #10b981; }
.fi-purple { background: #faf5ff; color: #8b5cf6; }
.fi-amber  { background: #fffbeb; color: #f59e0b; }
.fi-red    { background: #fff1f2; color: #ef4444; }
.fi-teal   { background: #f0fdfa; color: #14b8a6; }
.fi-indigo { background: #eef2ff; color: #6366f1; }
.fi-pink   { background: #fdf2f8; color: #ec4899; }
.lp-feature-card h3 { font-size: 1rem; font-weight: 700; color: #0f172a; margin: 0 0 .4rem; }
.lp-feature-card p  { font-size: 13.5px; color: #64748b; margin: 0; line-height: 1.6; }

/* ── Views showcase ─────────────────────────────────── */
.lp-views-section { /* background provided by .lp-band-alt wrapper */ }
.lp-views-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.lp-view-card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color .2s, box-shadow .2s;
}
.lp-view-card:hover { border-color: #3b82f6; box-shadow: 0 4px 16px rgba(59,130,246,.1); }
.lp-view-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.lp-view-card h3 { font-size: 1rem; font-weight: 700; margin: 0 0 .2rem; color: #0f172a; }
.lp-view-card p  { font-size: 13px; color: #64748b; margin: 0; }
.lp-view-free-badge {
  margin-left: auto;
  background: #f0fdf4;
  color: #059669;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid #bbf7d0;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Comparison section ─────────────────────────────── */
.lp-compare-section { background: #0f172a; color: #fff; }
.lp-compare-section .lp-h2 { color: #fff; }
.lp-compare-section .lp-sub { color: #94a3b8; }
.lp-compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  font-size: 14px;
}
.lp-compare-table th {
  padding: 12px 16px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.lp-compare-table th:first-child { text-align: left; color: #94a3b8; }
.lp-compare-table .col-us { color: #60a5fa; font-size: 15px; }
.lp-compare-table .col-them { color: #64748b; }
.lp-compare-table td {
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  text-align: center;
  color: rgba(255,255,255,.6);
}
.lp-compare-table td:first-child { text-align: left; color: rgba(255,255,255,.8); font-weight: 500; }
.lp-compare-table .yes  { color: #34d399; font-size: 16px; }
.lp-compare-table .no   { color: #475569; font-size: 16px; }
.lp-compare-table .paid { color: #f59e0b; font-size: 12px; font-weight: 700; }
.lp-compare-table tbody tr:hover td { background: rgba(255,255,255,.03); }
.lp-us-col { background: rgba(59,130,246,.08); }

/* ── Pricing preview on home ────────────────────────── */
.lp-pricing-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 360px));
  gap: 1.25rem;
  margin-top: 2.5rem;
  justify-content: center;
}
.lp-pricing-preview--3 {
  grid-template-columns: repeat(3, minmax(220px, 340px));
}
.lp-price-preview-card {
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.75rem;
  position: relative;
  text-align: center;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.lp-price-preview-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 24px rgba(59,130,246,.12);
  transform: translateY(-4px);
}
.lp-price-preview-card.featured {
  border-color: #3b82f6;
  background: linear-gradient(135deg, #eff6ff, #fff);
  box-shadow: 0 4px 20px rgba(59,130,246,.15);
}
.lp-ppc-name { font-size: 13px; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: .06em; }
.lp-ppc-price { font-size: 2.25rem; font-weight: 900; color: #0f172a; margin: .5rem 0 .25rem; }
.lp-ppc-price span { font-size: 1rem; font-weight: 500; color: #64748b; }
.lp-ppc-desc { font-size: 13px; color: #64748b; margin-bottom: 1.25rem; }
.lp-ppc-btn {
  display: block;
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid #3b82f6;
  transition: all .15s;
}
.lp-ppc-btn-outline { background: transparent; color: #3b82f6; }
.lp-ppc-btn-outline:hover { background: #3b82f6; color: #fff; }
.lp-ppc-btn-solid { background: #3b82f6; color: #fff; }
.lp-ppc-btn-solid:hover { background: #2563eb; border-color: #2563eb; }
.lp-ppc-features { list-style: none; padding: 0; margin: 1rem 0 0; text-align: left; }
.lp-ppc-features li {
  font-size: 13px; color: #475569;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-ppc-features li i { color: #10b981; font-size: 11px; flex-shrink: 0; }

/* ── Final CTA ──────────────────────────────────────── */
.lp-cta-section {
  background: linear-gradient(135deg, #1e3a5f, #0f172a);
  text-align: center;
  padding: 100px 2rem;
}
.lp-cta-section h2 { font-size: 2.5rem; font-weight: 900; color: #fff; margin: 0 0 1rem; }
.lp-cta-section p  { font-size: 1.1rem; color: #94a3b8; margin: 0 auto 2rem; max-width: 480px; }

/* ── Footer ─────────────────────────────────────────── */
.lp-footer {
  background: #0f172a;
  border-top: 1px solid rgba(255,255,255,.06);
}
.lp-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
}
.lp-footer-brand .lp-logo { margin-bottom: .75rem; }
.lp-footer-brand p { color: #475569; font-size: 13.5px; max-width: 280px; }
.lp-footer-links { display: flex; gap: 3rem; }
.lp-footer-col h4 { color: rgba(255,255,255,.7); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 .75rem; }
.lp-footer-col a  { display: block; color: #475569; font-size: 14px; cursor: pointer; margin-bottom: .4rem; transition: color .15s; }
.lp-footer-col a:hover { color: rgba(255,255,255,.8); }
.lp-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.lp-footer-bottom p { color: #334155; font-size: 13px; margin: 0; }
.lp-footer-badges { display: flex; gap: 8px; }
.lp-footer-badge {
  font-size: 11px;
  color: #475569;
  border: 1px solid #1e293b;
  padding: 3px 10px;
  border-radius: 20px;
}

/* ══ FEATURES PAGE ══════════════════════════════════════ */
.lp-features-hero {
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  padding: 120px 2rem 80px;
  text-align: center;
}
.lp-features-hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; color: #fff; margin: 0 0 1rem; }
.lp-features-hero p  { font-size: 1.15rem; color: #94a3b8; max-width: 600px; margin: 0 auto; }

.lp-feat-category { padding: 70px 0; border-bottom: 1px solid #e2e8f0; }
.lp-feat-category:last-child { border-bottom: none; }
.lp-feat-category-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: start;
}
.lp-feat-category-inner.reverse { direction: rtl; }
.lp-feat-category-inner.reverse > * { direction: ltr; }
.lp-feat-cat-info .lp-label { margin-bottom: .75rem; }
.lp-feat-cat-info h2 { font-size: 1.6rem; font-weight: 800; color: #0f172a; margin: 0 0 .6rem; }
.lp-feat-cat-info p  { font-size: 14px; color: #64748b; line-height: 1.7; margin: 0; }
.lp-feat-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.lp-feat-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  transition: box-shadow .15s, border-color .15s;
}
.lp-feat-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,.06); border-color: #bfdbfe; }
.lp-feat-item-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}
.lp-feat-item h4 { font-size: 13.5px; font-weight: 700; color: #0f172a; margin: 0 0 .2rem; }
.lp-feat-item p  { font-size: 12.5px; color: #64748b; margin: 0; line-height: 1.5; }

/* Full comparison table */
.lp-full-compare {
  background: #0f172a;
  padding: 80px 2rem;
}
.lp-full-compare h2 { text-align: center; font-size: 2rem; font-weight: 800; color: #fff; margin: 0 0 .5rem; }
.lp-full-compare p  { text-align: center; color: #64748b; font-size: 1rem; margin: 0 auto 2.5rem; }
.lp-fct {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.lp-fct th {
  padding: 12px 16px;
  text-align: center;
  color: rgba(255,255,255,.5);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-bottom: 2px solid rgba(255,255,255,.08);
}
.lp-fct th:first-child { text-align: left; }
.lp-fct th.us     { color: #60a5fa; border-bottom-color: #3b82f6; }
.lp-fct th.us-pro { color: #fbbf24; border-bottom-color: #f59e0b; }
.lp-fct th.us-biz { color: #a78bfa; border-bottom-color: #7c3aed; }
.lp-fct td {
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  text-align: center;
  color: rgba(255,255,255,.5);
}
.lp-fct td:first-child { text-align: left; color: rgba(255,255,255,.75); font-weight: 500; }
.lp-fct tr:hover td { background: rgba(255,255,255,.02); }
.lp-fct .fct-yes    { color: #34d399; }
.lp-fct .fct-no     { color: #334155; }
.lp-fct .fct-paid   { color: #f59e0b; font-size: 11px; font-weight: 700; }
.lp-fct .fct-us-col  { background: rgba(59,130,246,.07); }
.lp-fct .fct-pro-col { background: rgba(245,158,11,.06); }
.lp-fct .fct-biz-col { background: rgba(124,58,237,.06); }
.lp-fct .fct-section td {
  background: rgba(255,255,255,.04);
  font-weight: 700;
  color: rgba(255,255,255,.4);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 6px 16px;
}

/* ══ PRICING PAGE ═══════════════════════════════════════ */
.lp-pricing-hero {
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  padding: 120px 2rem 80px;
  text-align: center;
}
.lp-pricing-hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; color: #fff; margin: 0 0 .75rem; }
.lp-pricing-hero p  { font-size: 1.1rem; color: #94a3b8; max-width: 520px; margin: 0 auto 2rem; }
.lp-period-toggle {
  display: inline-flex;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 4px;
  gap: 4px;
}
.lp-period-btn {
  padding: 8px 20px;
  border: none;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  background: transparent;
  color: rgba(255,255,255,.6);
}
.lp-period-btn.active { background: #3b82f6; color: #fff; box-shadow: 0 2px 8px rgba(59,130,246,.4); }
.lp-annual-badge {
  display: inline-block;
  background: rgba(16,185,129,.15);
  color: #34d399;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 6px;
}

/* Pricing cards */
.lp-pricing-cards {
  max-width: 780px;
  margin: 3rem auto 0;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  align-items: start;
}
.lp-plan-card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 1.75rem;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.lp-plan-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,.1); transform: translateY(-4px); }
.lp-plan-card.popular {
  border-color: #3b82f6;
  box-shadow: 0 8px 32px rgba(59,130,246,.2);
  transform: scale(1.03);
}
.lp-plan-card.popular:hover { transform: scale(1.03) translateY(-4px); }
.lp-popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #3b82f6;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: .04em;
}
.lp-plan-name { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: #64748b; margin-bottom: .4rem; }
.lp-plan-beta-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #15803d; font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  margin-bottom: .75rem; letter-spacing: .02em;
}
.lp-plan-beta-badge i { font-size: 10px; }
.lp-plan-price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: .15rem; }
.lp-plan-currency { font-size: 1.25rem; font-weight: 700; color: #0f172a; align-self: flex-start; margin-top: 8px; }
.lp-plan-amount { font-size: 3rem; font-weight: 900; color: #0f172a; line-height: 1; }
.lp-plan-amount-free { color: #15803d; }
.lp-plan-regular-price { font-size: 12px; color: #94a3b8; margin-bottom: .25rem; text-decoration: line-through; }
.lp-plan-per { font-size: 13px; color: #94a3b8; }
.lp-plan-annual-note { font-size: 12px; color: #10b981; font-weight: 600; margin-bottom: 1rem; min-height: 18px; }
.lp-plan-desc { font-size: 13.5px; color: #64748b; line-height: 1.6; margin-bottom: 1.25rem; }
.lp-plan-btn {
  display: block;
  width: 100%;
  padding: 11px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s;
  text-align: center;
  margin-bottom: 1.5rem;
  border: 2px solid transparent;
}
.lp-plan-btn-outline {
  background: transparent;
  border-color: #e2e8f0;
  color: #475569;
}
.lp-plan-btn-outline:hover { border-color: #3b82f6; color: #3b82f6; }
.lp-plan-btn-primary {
  background: #3b82f6;
  color: #fff;
  box-shadow: 0 4px 12px rgba(59,130,246,.35);
}
.lp-plan-btn-primary:hover { background: #2563eb; box-shadow: 0 6px 16px rgba(59,130,246,.45); }
.lp-plan-btn-dark {
  background: #0f172a;
  color: #fff;
}
.lp-plan-btn-dark:hover { background: #1e293b; }
.lp-plan-divider { border: none; border-top: 1px solid #f1f5f9; margin: 0 0 1.25rem; }
.lp-plan-features { list-style: none; padding: 0; margin: 0; }
.lp-plan-features li {
  font-size: 13px;
  color: #475569;
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.lp-plan-features li i { color: #10b981; font-size: 11px; margin-top: 3px; flex-shrink: 0; }
.lp-plan-features li.dim { color: #94a3b8; }
.lp-plan-features li.dim i { color: #cbd5e1; }
.lp-plan-limit {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  background: #f1f5f9;
  color: #64748b;
  border-radius: 4px;
  padding: 1px 5px;
  margin-left: 4px;
  vertical-align: middle;
}

/* Pricing comparison table */
.lp-pricing-compare-wrap {
  max-width: 1200px;
  margin: 5rem auto 0;
  padding: 0 2rem 5rem;
}
.lp-pricing-compare-wrap h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 2rem;
  text-align: center;
}
.lp-pct {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.lp-pct th {
  padding: 10px 16px;
  text-align: center;
  font-weight: 800;
  font-size: 13px;
  border-bottom: 2px solid #e2e8f0;
  color: #64748b;
}
.lp-pct th:first-child { text-align: left; }
.lp-pct th.pct-popular { color: #3b82f6; border-bottom-color: #3b82f6; }
.lp-pct td {
  padding: 10px 16px;
  border-bottom: 1px solid #f1f5f9;
  text-align: center;
  color: #475569;
}
.lp-pct td:first-child { text-align: left; color: #0f172a; font-weight: 500; }
.lp-pct .pct-yes   { color: #10b981; font-size: 16px; }
.lp-pct .pct-no    { color: #cbd5e1; font-size: 16px; }
.lp-pct .pct-pop   { background: rgba(59,130,246,.04); }
.lp-pct .pct-group td {
  background: #f8fafc;
  font-weight: 700;
  font-size: 12px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 7px 16px;
}
.lp-pct tr:hover td { background: #fafbff; }
.lp-pct .pct-group:hover td { background: #f8fafc; }

/* FAQ */
.lp-faq-section { background: #f8fafc; }
.lp-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.lp-faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}
.lp-faq-item h4 { font-size: 14.5px; font-weight: 700; color: #0f172a; margin: 0 0 .5rem; }
.lp-faq-item p  { font-size: 13.5px; color: #64748b; margin: 0; line-height: 1.6; }

/* ── 3-column pricing grid ────────────────────────── */
.lp-pricing-cards--3 {
  max-width: 1100px;
  grid-template-columns: repeat(3, 1fr);
}

/* ── Storage badge inside plan card ──────────────── */
.lp-plan-storage-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: .85rem;
}
.lp-plan-storage-badge i { font-size: 11px; }

/* ── Storage comparison strip ────────────────────── */
.lp-storage-strip {
  max-width: 860px;
  margin: 3.5rem auto 0;
  padding: 0 2rem;
}
.lp-storage-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #0f172a;
  border-radius: 20px;
  padding: 2rem 1rem;
}
.lp-storage-item {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
}
.lp-storage-item--highlight {
  position: relative;
}
.lp-storage-item--highlight::before,
.lp-storage-item--highlight::after {
  content: '';
  position: absolute;
  top: -1.5rem; bottom: -1.5rem;
  width: 2px;
  background: rgba(59,130,246,.3);
}
.lp-storage-item--highlight::before { left: 0; }
.lp-storage-item--highlight::after  { right: 0; }
.lp-storage-arrow {
  color: #334155;
  font-size: 18px;
  padding: 0 .25rem;
  flex-shrink: 0;
}
.lp-storage-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin: 0 auto .6rem;
}
.lp-storage-icon--free { background: #1e293b; color: #94a3b8; }
.lp-storage-icon--pro  { background: #1e3a8a; color: #93c5fd; }
.lp-storage-icon--biz  { background: #312e81; color: #a5b4fc; }
.lp-storage-amount {
  font-size: 2rem;
  font-weight: 900;
  color: #f1f5f9;
  line-height: 1;
  margin-bottom: .2rem;
}
.lp-storage-item--highlight .lp-storage-amount { color: #93c5fd; font-size: 2.4rem; }
.lp-storage-plan {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #64748b;
  margin-bottom: .5rem;
}
.lp-storage-item--highlight .lp-storage-plan { color: #3b82f6; }
.lp-storage-note {
  font-size: 12px;
  color: #475569;
  line-height: 1.4;
  max-width: 170px;
  margin: 0 auto;
}
.lp-storage-link-note {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 13px;
  color: #64748b;
}
.lp-storage-link-note i { color: #3b82f6; margin-right: 4px; }
.lp-storage-link-note strong { color: #0f172a; }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .lp-plan-card.popular { transform: none; }
  .lp-plan-card.popular:hover { transform: translateY(-4px); }
  .lp-pricing-cards--3 { grid-template-columns: 1fr 1fr; max-width: 680px; }
  .lp-pricing-cards--3 .lp-plan-card:last-child { grid-column: span 2; max-width: 360px; margin: 0 auto; width: 100%; }
  .lp-pricing-preview--3 { grid-template-columns: 1fr 1fr; max-width: 680px; }
  .lp-pricing-preview--3 .lp-price-preview-card:last-child { grid-column: span 2; max-width: 360px; margin: 0 auto; width: 100%; }
}
@media (max-width: 768px) {
  .lp-hero-inner { grid-template-columns: 1fr; }
  .lp-hero-visual { display: none; }
  .lp-views-grid { grid-template-columns: 1fr; }
  .lp-feat-category-inner { grid-template-columns: 1fr; gap: 2rem; }
  .lp-feat-category-inner.reverse { direction: ltr; }
  .lp-feat-list { grid-template-columns: 1fr; }
  .lp-pricing-cards { grid-template-columns: 1fr; max-width: 420px; }
  .lp-pricing-cards--3 { grid-template-columns: 1fr; max-width: 420px; }
  .lp-pricing-cards--3 .lp-plan-card:last-child { grid-column: auto; max-width: 100%; }
  .lp-pricing-preview--3 { grid-template-columns: 1fr; max-width: 420px; }
  .lp-pricing-preview--3 .lp-price-preview-card:last-child { grid-column: auto; max-width: 100%; }
  .lp-storage-strip-inner { flex-direction: column; gap: 1.5rem; }
  .lp-storage-arrow { transform: rotate(90deg); }
  .lp-storage-item--highlight::before,
  .lp-storage-item--highlight::after { display: none; }
  .lp-footer-inner { grid-template-columns: 1fr; }
  .lp-footer-links { flex-wrap: wrap; gap: 1.5rem; }
  .lp-faq-grid { grid-template-columns: 1fr; }
  .lp-compare-table { font-size: 12px; }
  /* On mobile, both the inline desktop links and the desktop-only action
     buttons hide. The hamburger replaces them and opens the drawer. */
  .lp-nav-links   { display: none; }
  .lp-nav-actions { display: none; }
  .lp-nav-mobile-toggle { display: inline-flex; }
  .lp-nav-inner { padding: 0 1rem; }

  /* Feature-comparison table: 7 columns can't fit on a phone, so allow
     horizontal scroll on the table specifically (the page itself stays
     locked via overflow-x:hidden on body). Wrapping the table in a
     scroll container would be cleaner but the markup is already shipped;
     applying scroll here works for both .lp-fct and .lp-compare-table. */
  .lp-fct, .lp-compare-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
  .lp-fct th, .lp-fct td,
  .lp-compare-table th, .lp-compare-table td {
    white-space: normal;     /* per-cell text still wraps inside the cell */
  }

  /* Migrate-page per-tool comparison cards. The inline grid is
     1fr/auto/1fr (before / arrow / after) which can't fit two cards
     side-by-side on a 360px phone. Collapse to single column and
     rotate the arrow so it points down between stacked cards. */
  .lp-migrate-compare {
    grid-template-columns: 1fr !important;
  }
  .lp-migrate-compare > div > .fa-arrow-right,
  .lp-migrate-card .fa-arrow-right {
    transform: rotate(90deg);
  }
  /* Drawer slides down inside the fixed nav when .open is toggled by JS.
     The drawer position is naturally below the inner nav row because it's
     a sibling block element inside the (otherwise flex) nav container. */
  #lp-nav.open .lp-nav-mobile-drawer { display: flex; }
  /* Subtle highlight on the toggle when the drawer is open so the user
     sees it's "selected"/closeable. */
  #lp-nav.open .lp-nav-mobile-toggle {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.3);
  }
}
