/* ══════════════════════════════════════════════
   ZeperGo ERP — Landing Page Styles
   ══════════════════════════════════════════════ */

:root {
  /* Primary purple scale */
  --primary-50: #f5f3ff;
  --primary-100: #ede9fe;
  --primary-200: #ddd6fe;
  --primary-300: #c4b5fd;
  --primary-400: #a78bfa;
  --primary-500: #8b5cf6;
  --primary-600: #7c3aed;
  --primary-700: #6d28d9;
  --primary-800: #5b21b6;
  --primary-900: #4c1d95;

  /* Sidebar / hero gradient (dark slate) */
  --sidebar-from: #0f172a;
  --sidebar-mid: #1e293b;
  --sidebar-to: #0f172a;
  --accent-violet: #a78bfa;

  /* Aliases */
  --brand: #7c3aed;
  --brand-deep: #4c1d95;
  --brand-mid: #6d28d9;
  --brand-tint: #f5f3ff;
  --brand-tint2: #ede9fe;
  --grad: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  --grad-h: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);

  /* Status */
  --success: #10B981;
  --success-bg: #D1FAE5;
  --success-dark: #047857;
  --warning: #F59E0B;
  --warning-bg: #FEF3C7;
  --error: #EF4444;
  --error-bg: #FEE2E2;
  --error-dark: #B91C1C;

  /* Surfaces & content */
  --surface: #fff;
  --surface-soft: #F8FAFC;
  --surface-alt: #F1F5F9;
  --text: #0F172A;
  --text-muted: #64748B;
  --text-faint: #94A3B8;
  --border: #e5e7eb;
  --border-soft: #f1f5f9;
  --border-strong: #e2e8f0;

  /* Radius */
  --r-sm: 4px;
  --r: 8px;
  --r-lg: 12px;
  --r-xl: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px -1px rgba(0,0,0,.1);
  --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,.25);

  /* Fonts */
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
.lp-page {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
.lp-page a { text-decoration: none; color: inherit; }
.lp-page a.lp-btn { color: var(--text); }
.lp-page a.lp-btn--primary { color: #fff; }
.lp-page a.lp-btn--white { color: var(--brand); }
.lp-page a.lp-btn--outline-white { color: #fff; }
.lp-page a.lp-btn--outline { color: var(--brand); }
.lp-page img { max-width: 100%; }

/* ── Shared Buttons ── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--r);
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  transition: all .15s;
}
.lp-btn--primary { background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%); border-color: transparent; color: #fff; box-shadow: 0 4px 12px -2px rgba(139,92,246,.35); }
.lp-btn--primary:hover { background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%); box-shadow: 0 6px 16px -2px rgba(124,58,237,.45); transform: translateY(-1px); }
.lp-btn--white { background: #fff; border-color: #fff; color: var(--brand); font-weight: 700; }
.lp-btn--white:hover { background: rgba(255,255,255,.92); color: var(--brand-deep); }
.lp-btn--outline-white { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.lp-btn--outline-white:hover { background: rgba(255,255,255,.1); }
.lp-btn--outline { background: transparent; border-color: var(--brand); color: var(--brand); }
.lp-btn--outline:hover { background: var(--brand-tint); }
.lp-btn--lg { padding: 13px 28px; font-size: 15px; border-radius: var(--r-lg); }
.lp-btn--xl { padding: 18px 40px; font-size: 16px; border-radius: var(--r-lg); }
.lp-btn--sm { padding: 6px 12px; font-size: 12px; }
.lp-btn--full { width: 100%; justify-content: center; }

/* ── LOGO ── */
.lp-logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.lp-logo__mark {
  width: 34px; height: 34px; border-radius: 8px;
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 17px;
  box-shadow: 0 8px 22px rgba(139,92,246,.45);
}
.lp-logo__text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 18px; color: var(--brand);
  letter-spacing: -.03em;
}
.lp-logo__text--white { color: #fff; }
.lp-logo__tag {
  font-size: 9px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--text-muted);
  background: var(--brand-tint); padding: 2px 6px;
  border-radius: 3px; margin-left: 3px; vertical-align: middle;
}
.lp-logo__tag--white { background: rgba(255,255,255,.15); color: rgba(255,255,255,.6); }

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.lp-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
  padding: 0 48px;
  display: flex; align-items: center;
  height: 64px; gap: 24px;
  max-width: 100%;
}
.lp-nav__links {
  display: flex; gap: 2px; flex: 1; margin-left: 16px;
}
.lp-nav__links a {
  padding: 8px 16px; border-radius: var(--r);
  color: var(--text-muted); font-size: 13.5px; font-weight: 500;
  transition: all .15s; cursor: pointer;
}
.lp-nav__links a:hover { color: var(--brand); background: var(--brand-tint); }
.lp-nav__ctas { display: flex; align-items: center; gap: 10px; }
.lp-nav__login {
  color: var(--text-muted); font-size: 13.5px; font-weight: 600;
  padding: 8px 16px; border-radius: var(--r);
  transition: all .15s; cursor: pointer;
}
.lp-nav__login:hover { color: var(--brand); background: var(--brand-tint); }

/* Mobile-only CTA block inside dropdown */
.lp-nav__mobile-ctas { display: none; }

/* Hamburger button — hidden on desktop */
.lp-nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 6px;
  border: none; background: none; cursor: pointer;
  border-radius: var(--r);
  transition: background .15s;
}
.lp-nav__burger:hover { background: var(--brand-tint); }
.lp-nav__burger span {
  display: block; height: 2px; width: 100%;
  background: var(--text); border-radius: 2px;
  transition: all .25s ease;
}
/* Animate to X when open */
.lp-nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.lp-nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Prevent body scroll when menu is open */
body.nav-open { overflow: hidden; }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.lp-hero {
  background: linear-gradient(180deg, var(--sidebar-from) 0%, var(--sidebar-mid) 50%, var(--sidebar-to) 100%);
  padding: 0;
  color: #fff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(139,92,246,.15);
}
.lp-hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,.25), transparent 70%);
  right: -200px; top: -200px;
  pointer-events: none;
}
.lp-hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,.12), transparent 70%);
  left: -100px; bottom: -100px;
  pointer-events: none;
}

/* Container for hero content — consistent padding */
.lp-hero__container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 110px 80px 90px;
  position: relative;
  z-index: 1;
}

/* Hero split layout — text left, preview right */
.lp-hero__split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: center;
}
.lp-hero__inner {
  text-align: left;
}
.lp-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: 10px 22px; border-radius: 99px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.8);
  margin-bottom: 40px;
  text-transform: uppercase; letter-spacing: .1em;
  backdrop-filter: blur(10px);
}
.lp-hero__eyebrow-pill {
  background: var(--success); color: #fff;
  padding: 3px 12px; border-radius: 99px;
  font-size: 10.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em;
}
.lp-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 64px; font-weight: 800;
  letter-spacing: -2px;
  margin: 0 0 36px;
  line-height: 1.1;
}
.lp-hero h1 em { font-style: normal; color: var(--accent-violet); font-weight: 800; }
.lp-hero__sub {
  font-size: 19px; color: rgba(255,255,255,.72);
  max-width: 560px; margin: 0 0 48px;
  line-height: 1.7; font-weight: 400;
}
.lp-hero__ctas {
  display: flex; gap: 18px; justify-content: flex-start; flex-wrap: wrap;
}
.lp-hero__meta {
  margin-top: 40px;
  display: flex; gap: 36px; justify-content: flex-start; flex-wrap: wrap;
  font-size: 14px; color: rgba(255,255,255,.55); font-weight: 500;
}
.lp-hero__meta span { position: relative; }
.lp-hero__meta span::before {
  content: '\2713 '; color: var(--success); font-weight: 700;
}

/* Hero Dashboard Preview */
.lp-hero-preview {
  position: relative; z-index: 1;
}
.lp-hero-preview__frame {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.1);
}
.lp-hero-preview__chrome {
  background: #f3f4f6;
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  display: flex; align-items: center; gap: 6px;
}
.lp-hero-preview__dot { width: 10px; height: 10px; border-radius: 50%; }

/* Dashboard Mock */
.lp-dash { display: flex; min-height: 280px; }
.lp-dash__sb {
  width: 180px; background: var(--grad);
  padding: 16px 10px; flex-shrink: 0;
}
.lp-dash__sb-logo {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px; padding: 0 6px;
}
.lp-dash__sb-mark {
  width: 28px; height: 28px; border-radius: 6px;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.lp-dash__sb-name {
  color: #fff; font-weight: 700; font-size: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.lp-dash__sb-item {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 10px; border-radius: 6px;
  margin-bottom: 2px; font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,.6); cursor: default;
}
.lp-dash__sb-item.active { background: rgba(139,92,246,.12); color: var(--accent-violet); border-left: 2px solid var(--accent-violet); padding-left: 8px; font-weight: 600; }
.lp-dash__sb-ico { font-size: 14px; width: 18px; text-align: center; }

.lp-dash__main { flex: 1; padding: 16px 20px; background: #fff; }
.lp-dash__topbar {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px; font-size: 13px; color: var(--text);
}
.lp-dash__topbar-search {
  margin-left: auto;
  background: var(--surface-soft); border: 1px solid var(--border-soft);
  padding: 5px 14px; border-radius: 6px;
  font-size: 12px; color: var(--text-faint);
}
.lp-dash__avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--brand-tint); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}

.lp-dash__kpis { display: flex; gap: 10px; margin-bottom: 16px; }
.lp-dash__kpi {
  flex: 1; background: var(--surface-soft);
  border: 1px solid var(--border-soft);
  border-radius: 8px; padding: 12px;
}
.lp-dash__kpi-lbl { font-size: 11px; color: var(--text-muted); margin-bottom: 4px; }
.lp-dash__kpi-val {
  font-size: 20px; font-weight: 800; color: var(--brand);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.lp-dash__kpi-trend { font-size: 11px; color: var(--success); font-weight: 600; margin-top: 2px; }

.lp-dash__panels { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lp-dash__panel {
  border: 1px solid var(--border-soft);
  border-radius: 8px; padding: 14px;
}
.lp-dash__panel-h {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; font-weight: 600; color: var(--text);
  margin-bottom: 10px;
}
.lp-dash__chart { height: 80px; }
.lp-dash__chart svg { width: 100%; height: 100%; }
.lp-dash__row {
  display: flex; gap: 8px; padding: 6px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 11px; color: var(--text-muted);
}
.lp-dash__row:last-child { border-bottom: 0; }
.lp-dash__row-id { flex: 2; font-weight: 600; color: var(--text); }
.lp-dash__row-name { flex: 2; }
.lp-dash__row-status { flex: 1; text-align: right; font-weight: 600; }
.lp-dash__row-status--ok { color: var(--success); }
.lp-dash__row-status--pending { color: var(--warning); }

/* Trust Bar */
.lp-hero__trust {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.12);
}
.lp-hero__trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 56px;
}
.lp-hero__trust-label {
  text-align: center;
  font-size: 11px; text-transform: uppercase;
  letter-spacing: .12em; font-weight: 600;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}
.lp-hero__logos {
  display: flex; gap: 48px; justify-content: center; flex-wrap: wrap;
  align-items: center;
}
.lp-hero__logo-pill {
  background: transparent;
  border: none;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.4);
  letter-spacing: .1em;
  transition: color .15s;
}
.lp-hero__logo-pill:hover { color: rgba(255,255,255,.7); }

/* ══════════════════════════════════════════════
   SECTIONS (shared)
══════════════════════════════════════════════ */
.lp-section { padding: 80px 40px; }
.lp-section--alt { background: var(--surface-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.lp-section-max { max-width: 1180px; margin: 0 auto; }
.lp-section-eyebrow {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--brand); margin-bottom: 10px;
}
.lp-section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px; font-weight: 800;
  letter-spacing: -.025em; color: var(--text);
  max-width: 560px; margin: 0 0 16px; line-height: 1.2;
}
.lp-section-sub {
  font-size: 16px; color: var(--text-muted);
  max-width: 520px; line-height: 1.65; margin-bottom: 48px;
}
.lp-center { text-align: center; }
.lp-center .lp-section-title { margin-left: auto; margin-right: auto; }
.lp-center .lp-section-sub { margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════════════
   PROBLEM → SOLUTION
══════════════════════════════════════════════ */
.lp-ps { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; text-align: left; }
.lp-ps__card { padding: 28px; border-radius: var(--r-lg); border: 1px solid var(--border); }
.lp-ps__card--bad { background: #fef2f2; border-color: #fecaca; }
.lp-ps__card--good { background: linear-gradient(180deg, var(--primary-50) 0%, #fff 100%); border-color: var(--primary-300); }
.lp-ps__label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: 18px;
}
.lp-ps__label--bad { color: var(--error); }
.lp-ps__label--good { color: var(--success); }
.lp-ps__item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 13px; line-height: 1.5; }
.lp-ps__icon {
  width: 20px; height: 20px; border-radius: 50%;
  flex-shrink: 0; margin-top: 1px; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.lp-ps__icon--bad { background: #fee2e2; color: var(--error-dark); }
.lp-ps__icon--good { background: var(--success); color: #fff; }
.lp-ps__divider {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 8px;
}
.lp-ps__divider-vs {
  font-size: 11px; color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase; letter-spacing: .1em;
}
.lp-ps__divider-arrow { font-size: 20px; color: var(--brand); }

/* ══════════════════════════════════════════════
   FEATURES GRID
══════════════════════════════════════════════ */
.lp-feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left; }
.lp-feat-card {
  padding: 24px; background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all .2s;
}
.lp-feat-card:hover {
  border-color: var(--primary-300);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.lp-feat-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary-100), var(--primary-50));
  border: 1px solid var(--primary-100);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.lp-feat-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.lp-feat-text { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 10px; }
.lp-feat-link {
  font-size: 12px; font-weight: 600; color: var(--brand);
  cursor: pointer; transition: color .12s;
}
.lp-feat-link:hover { color: var(--brand-mid); }

/* ══════════════════════════════════════════════
   CUSTOMIZATION SECTION
══════════════════════════════════════════════ */
.lp-custom-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.lp-custom-mockup {
  background: var(--sidebar-from);
  border-radius: var(--r-xl);
  padding: 12px;
  position: relative;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(139,92,246,.15);
}
.lp-custom-window {
  background: #fff; border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.lp-custom-bar {
  background: var(--surface-soft);
  border-bottom: 1px solid var(--border);
  padding: 8px 14px;
  display: flex; align-items: center; gap: 6px;
}
.lp-custom-dot { width: 9px; height: 9px; border-radius: 50%; }
.lp-mock-body { display: flex; min-height: 180px; }
.lp-mock-sb {
  width: 120px; background: var(--grad);
  padding: 14px 8px; flex-shrink: 0;
}
.lp-mock-sb-item {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 8px; border-radius: 5px; margin-bottom: 2px;
  font-size: 10px; font-weight: 600; color: rgba(255,255,255,.6);
}
.lp-mock-sb-item.active { background: rgba(139,92,246,.12); color: var(--accent-violet); }
.lp-mock-sb-item::before { content: '\25B8'; font-size: 8px; }
.lp-mock-content { flex: 1; padding: 14px; }
.lp-mock-kpi-row { display: flex; gap: 8px; margin-bottom: 12px; }
.lp-mock-kpi { flex: 1; background: var(--brand-tint); border-radius: 6px; padding: 8px; font-size: 10px; }
.lp-mock-kpi__val { font-size: 16px; font-weight: 800; color: var(--brand); font-family: 'Plus Jakarta Sans', sans-serif; }
.lp-mock-kpi__lbl { color: var(--text-muted); margin-top: 2px; }
.lp-mock-table-row {
  display: flex; gap: 8px; padding: 5px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 10px; color: var(--text-muted);
}
.lp-custom-callout {
  margin-top: 16px;
  background: rgba(139,92,246,.08);
  border: 1px solid rgba(139,92,246,.15);
  border-radius: var(--r-lg);
  padding: 12px 16px;
}
.lp-custom-callout__title {
  font-size: 11px; font-weight: 700; color: var(--accent-violet);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px;
}
.lp-custom-callout__text { font-size: 12px; color: rgba(255,255,255,.7); }

.lp-custom-list { margin-top: 8px; }
.lp-custom-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.lp-custom-item__check {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--success); color: #fff;
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.lp-custom-item__title { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.lp-custom-item__sub { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ══════════════════════════════════════════════
   PRICING TEASER
══════════════════════════════════════════════ */
.lp-pt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left; }
.lp-pt-card {
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden; background: #fff;
  transition: all .2s;
  display: flex; flex-direction: column;
}
.lp-pt-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.lp-pt-card--pop { border-color: var(--brand); box-shadow: var(--shadow); position: relative; }
.lp-pt-card__badge {
  background: var(--brand); color: #fff;
  text-align: center; padding: 5px;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
}
.lp-pt-card__top { padding: 24px 24px 20px; flex: 1; }
.lp-pt-name { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.lp-pt-desc { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.5; }
.lp-pt-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 38px; font-weight: 800;
  letter-spacing: -.03em; color: var(--text);
  margin-bottom: 2px;
}
.lp-pt-price span { font-size: 14px; color: var(--text-muted); font-weight: 400; font-family: 'Inter', sans-serif; }
.lp-pt-users { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; }
.lp-pt-feats {
  list-style: none; padding: 0; margin: 0 0 24px;
  border-top: 1px solid var(--border-soft); padding-top: 16px;
}
.lp-pt-feats li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; padding: 4px 0;
}
.lp-pt-feats .ok { color: var(--success); font-weight: 700; flex-shrink: 0; }
.lp-pt-feats .no { color: var(--text-faint); flex-shrink: 0; }
.lp-pt-card__foot { padding: 0 24px 24px; }
.lp-pt-note { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 24px; }

/* Enterprise row */
.lp-enterprise-row {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1080px; margin: 20px auto 0;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: #fff;
}
.lp-enterprise-row__title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.lp-enterprise-row__sub { font-size: 13px; color: var(--text-muted); }

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.lp-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left; }
.lp-testi-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 28px;
}
.lp-testi-stars { color: #F59E0B; font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.lp-testi-quote {
  font-size: 14px; line-height: 1.75; color: var(--text);
  margin-bottom: 20px; font-style: italic;
}
.lp-testi-author { display: flex; align-items: center; gap: 12px; }
.lp-testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 14px; flex-shrink: 0;
}
.lp-testi-name { font-size: 13px; font-weight: 700; }
.lp-testi-role { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ══════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════ */
.lp-cta-banner {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-700) 100%);
  padding: 80px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.lp-cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(255,255,255,.15), transparent 50%);
  pointer-events: none;
}
.lp-cta-banner h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 40px; font-weight: 800;
  letter-spacing: -1px;
  margin: 0 auto 14px; max-width: 720px; line-height: 1.1;
  position: relative; z-index: 1;
}
.lp-cta-banner p {
  font-size: 17px; color: rgba(255,255,255,.9);
  max-width: 440px; margin: 0 auto 32px; line-height: 1.6;
  position: relative; z-index: 1;
}
.lp-cta-banner__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.lp-footer {
  background: var(--sidebar-from);
  color: #fff;
  padding: 56px 40px 32px;
}
.lp-footer__top {
  max-width: 1200px; margin: 0 auto 32px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.lp-footer__brand-text {
  font-size: 13px; color: rgba(255,255,255,.55);
  margin-top: 16px; line-height: 1.6; max-width: 320px;
}
.lp-footer__col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: rgba(255,255,255,.85); margin: 0 0 14px;
}
.lp-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.lp-footer__col a { font-size: 13px; color: rgba(255,255,255,.55); transition: color .12s; cursor: pointer; }
.lp-footer__col a:hover { color: #fff; }
.lp-footer__bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center;
  justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,.45);
}
.lp-footer__bottom-links { display: flex; gap: 20px; }
.lp-footer__bottom-links a { color: rgba(255,255,255,.45); transition: color .12s; cursor: pointer; }
.lp-footer__bottom-links a:hover { color: #fff; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .lp-hero__container { padding: 60px 40px 48px; }
  .lp-hero__split { grid-template-columns: 1fr; gap: 40px; }
  .lp-hero__inner { text-align: center; padding-right: 0; }
  .lp-hero h1 { font-size: 44px; }
  .lp-hero__sub { margin: 0 auto 32px; max-width: 560px; }
  .lp-hero__ctas { justify-content: center; }
  .lp-hero__meta { justify-content: center; }
  .lp-hero-preview { max-width: 640px; margin: 0 auto; }
  .lp-hero__trust-inner { padding: 24px 40px; }
  .lp-feat-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-custom-split { grid-template-columns: 1fr; gap: 40px; }
  .lp-dash__panels { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* ── MOBILE NAVBAR ── */
  .lp-nav {
    padding: 0 20px; height: 58px; gap: 0;
    /* Remove backdrop-filter so position:fixed children
       aren't trapped inside the navbar's containing block */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #fff;
  }
  .lp-nav__ctas { display: none !important; }
  .lp-nav__burger { display: flex; margin-left: auto; }

  /* Mobile nav dropdown — hidden by default, slides in when .open */
  .lp-nav__links {
    position: fixed;
    top: 58px; left: 0; right: 0;
    bottom: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    margin: 0;
    flex: none;
    background: #fff;
    padding: 8px 20px 32px;
    overflow-y: auto;
    z-index: 99;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    border-top: 1px solid var(--border);
  }
  .lp-nav__links.open {
    display: flex;
  }
  .lp-nav__links a {
    display: block;
    padding: 16px 16px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    border-radius: 0;
    border-bottom: 1px solid var(--border-soft);
  }
  .lp-nav__links a:last-of-type { border-bottom: none; }
  .lp-nav__links a:hover,
  .lp-nav__links a:active {
    background: var(--brand-tint);
    color: var(--brand);
  }

  /* Mobile CTAs inside menu */
  .lp-nav__mobile-ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid var(--border);
  }
  .lp-nav__mobile-ctas .lp-nav__login {
    display: block;
    text-align: center;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--r);
    border: 1px solid var(--border);
    color: var(--text);
  }
  .lp-nav__mobile-ctas .lp-btn {
    padding: 14px 16px;
    font-size: 15px;
    justify-content: center;
  }

  /* ── HERO MOBILE ── */
  .lp-hero__container { padding: 48px 20px 40px; }
  .lp-hero__split { gap: 32px; }
  .lp-hero h1 { font-size: 32px; letter-spacing: -1px; }
  .lp-hero__eyebrow { font-size: 10px; padding: 6px 12px; margin-bottom: 20px; }
  .lp-hero__sub { font-size: 15px; line-height: 1.6; margin-bottom: 28px; }
  .lp-hero__ctas { flex-direction: column; align-items: center; gap: 10px; }
  .lp-hero__ctas .lp-btn { width: 100%; justify-content: center; }
  .lp-hero__meta { flex-direction: column; gap: 8px; align-items: center; }
  .lp-hero__trust-inner { padding: 20px; }
  .lp-hero__logos { gap: 16px; }
  .lp-hero__logo-pill { font-size: 10px; }

  /* Dashboard preview mobile */
  .lp-hero-preview { margin: 0 auto; }
  .lp-dash { flex-direction: column; }
  .lp-dash__sb { width: 100%; padding: 12px; display: flex; gap: 4px; flex-wrap: wrap; }
  .lp-dash__sb-logo { display: none; }
  .lp-dash__kpis { flex-wrap: wrap; }
  .lp-dash__kpi { min-width: 45%; }

  /* Other sections mobile */
  .lp-section { padding: 60px 20px; }
  .lp-section-title { font-size: 28px; }
  .lp-section-sub { font-size: 14px; }
  .lp-ps { grid-template-columns: 1fr; }
  .lp-ps__divider { flex-direction: row; padding: 10px 0; }
  .lp-ps__divider-arrow { transform: rotate(90deg); }
  .lp-feat-grid { grid-template-columns: 1fr; }
  .lp-pt-grid { grid-template-columns: 1fr; }
  .lp-testi-grid { grid-template-columns: 1fr; }
  .lp-enterprise-row { flex-direction: column; text-align: center; gap: 16px; }
  .lp-cta-banner { padding: 60px 20px; }
  .lp-cta-banner h2 { font-size: 28px; }
  .lp-cta-banner__btns { flex-direction: column; align-items: center; }
  .lp-footer { padding: 40px 20px 24px; }
  .lp-footer__top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .lp-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .lp-hero h1 { font-size: 28px; }
  .lp-hero__container { padding: 40px 16px 32px; }
  .lp-hero__trust-inner { padding: 16px; }
  .lp-hero__logos { gap: 12px; }
  .lp-footer__top { grid-template-columns: 1fr; }
  .lp-dash__kpis { flex-direction: column; }
  .lp-dash__kpi { min-width: 100%; }

  /* Dashboard preview compact */
  .lp-dash__main { padding: 12px; }
  .lp-dash__topbar { font-size: 11px; gap: 8px; }
  .lp-dash__topbar-search { padding: 4px 10px; font-size: 10px; }
  .lp-dash__avatar { width: 24px; height: 24px; font-size: 9px; }
  .lp-dash__kpi-val { font-size: 16px; }
  .lp-dash__kpi { padding: 8px; }
  .lp-dash__kpi-lbl { font-size: 10px; }
  .lp-dash__panel { padding: 10px; }
  .lp-dash__panel-h { font-size: 10px; }
  .lp-dash__row { font-size: 9px; }

  /* Customization mock compact */
  .lp-mock-sb { width: 80px; padding: 10px 4px; }
  .lp-mock-sb-item { font-size: 8px; padding: 4px 4px; }
  .lp-mock-content { padding: 10px; }
  .lp-mock-kpi-row { gap: 4px; margin-bottom: 8px; }
  .lp-mock-kpi { padding: 6px; font-size: 8px; }
  .lp-mock-kpi__val { font-size: 12px; }
  .lp-mock-table-row { font-size: 8px; }
  .lp-custom-mockup { padding: 8px; }

  /* Sections tighter padding */
  .lp-section { padding: 48px 16px; }
  .lp-section-title { font-size: 24px; }
  .lp-section-sub { font-size: 13px; margin-bottom: 32px; }

  /* Problem vs Solution cards */
  .lp-ps__card { padding: 20px; }
  .lp-ps__item { font-size: 12px; }

  /* Features cards */
  .lp-feat-card { padding: 18px; }
  .lp-feat-icon { width: 40px; height: 40px; font-size: 18px; margin-bottom: 14px; }
  .lp-feat-text { font-size: 12px; }

  /* Pricing cards */
  .lp-pt-card__top { padding: 18px 16px 16px; }
  .lp-pt-card__foot { padding: 0 16px 18px; }
  .lp-pt-price { font-size: 32px; }
  .lp-pt-feats li { font-size: 12px; }

  /* Enterprise row */
  .lp-enterprise-row { padding: 16px; }
  .lp-enterprise-row__title { font-size: 14px; }
  .lp-enterprise-row__sub { font-size: 12px; }

  /* Testimonials */
  .lp-testi-card { padding: 20px; }
  .lp-testi-quote { font-size: 13px; }
  .lp-testi-avatar { width: 36px; height: 36px; font-size: 12px; }

  /* CTA banner */
  .lp-cta-banner { padding: 48px 16px; }
  .lp-cta-banner h2 { font-size: 24px; }
  .lp-cta-banner p { font-size: 14px; }

  /* Footer compact */
  .lp-footer { padding: 32px 16px 20px; }
  .lp-footer__top { gap: 20px; }
  .lp-footer__brand-text { font-size: 12px; }
  .lp-footer__col a { font-size: 12px; }
}

/* ── Extra-small screens (320px) ── */
@media (max-width: 360px) {
  .lp-nav { padding: 0 12px; }
  .lp-hero__container { padding: 32px 12px 24px; }
  .lp-hero h1 { font-size: 24px; letter-spacing: -0.5px; margin-bottom: 20px; }
  .lp-hero__eyebrow { font-size: 9px; padding: 5px 10px; gap: 8px; margin-bottom: 16px; }
  .lp-hero__eyebrow-pill { font-size: 9px; padding: 2px 8px; }
  .lp-hero__sub { font-size: 14px; margin-bottom: 24px; }
  .lp-hero__ctas .lp-btn { padding: 14px 16px; font-size: 14px; }
  .lp-hero__meta { margin-top: 24px; gap: 6px; font-size: 12px; }

  /* Dashboard sidebar items smaller */
  .lp-dash__sb { padding: 8px; gap: 2px; }
  .lp-dash__sb-item { padding: 4px 6px; font-size: 10px; gap: 4px; }
  .lp-dash__sb-ico { font-size: 11px; width: 14px; }

  /* Trust bar */
  .lp-hero__trust-inner { padding: 14px 12px; }
  .lp-hero__trust-label { font-size: 9px; margin-bottom: 12px; }
  .lp-hero__logo-pill { font-size: 9px; }
  .lp-hero__logos { gap: 8px; }

  /* Sections */
  .lp-section { padding: 40px 12px; }
  .lp-section-title { font-size: 22px; }

  /* Cards */
  .lp-ps__card { padding: 16px; }
  .lp-feat-card { padding: 16px; }
  .lp-testi-card { padding: 16px; }
  .lp-pt-card__top { padding: 16px 14px 14px; }
  .lp-pt-card__foot { padding: 0 14px 16px; }

  /* CTA banner */
  .lp-cta-banner { padding: 40px 12px; }
  .lp-cta-banner h2 { font-size: 22px; }

  /* Footer */
  .lp-footer { padding: 28px 12px 16px; }

  /* Mobile menu tighter */
  .lp-nav__links { padding: 8px 12px 24px; }
  .lp-nav__links a { padding: 14px 12px; font-size: 15px; }
}
