/* ==========================================================================
   Smart Business 360 — Homepage redesign
   Scoped to body.lp-home so other marketing pages are unaffected.
   ========================================================================== */

body.lp-home {
  --lp-navy: #003366;
  --lp-navy-deep: #001a33;
  --lp-navy-mid: #004080;
  --lp-ink: #0f172a;
  --lp-muted: #5b6b7c;
  --lp-line: #e6edf4;
  --lp-surface: #f5f8fb;
  --lp-white: #ffffff;
  --lp-radius: 10px;
  --lp-radius-sm: 8px;
  --lp-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(0, 51, 102, 0.06);
  --lp-header-h: 72px;
  background: var(--lp-white);
  color: var(--lp-ink);
  overflow-x: hidden;
}

body.lp-home section {
  padding-left: 0;
  padding-right: 0;
}

body.lp-home *,
body.lp-home *::before,
body.lp-home *::after {
  box-sizing: border-box;
}

body.lp-home a:focus-visible,
body.lp-home button:focus-visible,
body.lp-home summary:focus-visible {
  outline: 2px solid var(--lp-navy);
  outline-offset: 3px;
}

.lp-skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 2000;
  background: var(--lp-navy);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.lp-skip:focus {
  top: 12px;
}

.lp-wrap {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.lp-section {
  padding: clamp(72px, 9vw, 112px) 0;
}

.lp-section-alt {
  background: var(--lp-surface);
}

.lp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lp-navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.lp-h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: var(--lp-ink);
  margin: 0 0 14px;
}

.lp-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--lp-muted);
  margin: 0;
  max-width: 42rem;
}

.lp-center {
  text-align: center;
}

.lp-center .lp-lead {
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
body.lp-home > header {
  position: sticky !important;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: var(--lp-header-h);
  padding: 12px 5% !important;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

body.lp-home > header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--lp-line);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

body.lp-home .logo-img {
  height: 42px;
}

body.lp-home .main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

body.lp-home nav ul {
  gap: 22px;
}

body.lp-home nav ul li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #334155;
}

body.lp-home nav ul li a.nav-active {
  color: var(--lp-navy);
}

body.lp-home nav ul li a.nav-active::after {
  bottom: -8px;
  height: 2px;
  background: var(--lp-navy);
}

body.lp-home .header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

body.lp-home .header-actions .btn {
  padding: 9px 16px;
  font-size: 0.875rem;
  border-radius: var(--lp-radius-sm);
}

body.lp-home .lp-btn-demo {
  border-width: 1px !important;
}

body.lp-home .header-actions .btn-primary {
  box-shadow: none;
}

body.lp-home .header-actions-mobile .btn {
  width: 100%;
  margin-right: 0 !important;
}

body.lp-home .mobile-menu-toggle {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

@media (max-width: 1200px) {
  body.lp-home nav ul {
    gap: 14px;
  }

  body.lp-home nav ul li a {
    font-size: 0.82rem;
  }
}

@media (max-width: 991px) {
  body.lp-home > header {
    position: sticky !important;
    overflow: visible !important;
    padding: 10px 4% !important;
  }

  body.lp-home .main-nav {
    display: none;
    justify-content: flex-start;
    max-height: min(80vh, 640px);
    overflow-y: auto;
  }

  body.lp-home .main-nav.active {
    display: block !important;
  }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: var(--lp-radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.lp-btn-primary {
  background: var(--lp-navy);
  color: #fff;
  border: 1px solid var(--lp-navy);
}

.lp-btn-primary:hover {
  background: var(--lp-navy-deep);
  color: #fff;
  transform: translateY(-1px);
}

.lp-btn-secondary {
  background: #fff;
  color: var(--lp-navy);
  border: 1px solid var(--lp-line);
}

.lp-btn-secondary:hover {
  border-color: var(--lp-navy);
  color: var(--lp-navy);
}

.lp-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.lp-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: #fff;
}

.lp-btn-light {
  background: #fff;
  color: var(--lp-navy);
  border: 1px solid #fff;
}

.lp-btn-light:hover {
  background: var(--lp-surface);
  color: var(--lp-navy);
}

.lp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lp-navy);
  font-weight: 600;
  text-decoration: none;
}

.lp-link:hover {
  gap: 12px;
}

.lp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.lp-hero {
  padding: clamp(36px, 5vw, 64px) 0 clamp(28px, 4vw, 48px);
  background:
    radial-gradient(1200px 420px at 85% -10%, rgba(0, 80, 153, 0.08), transparent 60%),
    linear-gradient(180deg, #f7fafc 0%, #ffffff 72%);
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.lp-hero-grid > * {
  min-width: 0;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--lp-line);
  background: #fff;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--lp-navy);
  margin-bottom: 18px;
}

.lp-badge i {
  font-size: 0.7rem;
}

.lp-hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.55rem);
  font-weight: 750;
  letter-spacing: -0.038em;
  line-height: 1.08;
  color: var(--lp-ink);
  margin: 0 0 18px;
  max-width: 13em;
}

.lp-hero-copy {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--lp-muted);
  margin: 0 0 28px;
  max-width: 38rem;
}

.lp-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.lp-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #475569;
}

.lp-pill i {
  color: var(--lp-navy);
  font-size: 0.72rem;
}

/* Product frame */
.lp-frame {
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 12px;
  box-shadow: var(--lp-shadow);
  overflow: hidden;
}

.lp-frame-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--lp-navy);
  color: #fff;
}

.lp-dots {
  display: flex;
  gap: 5px;
}

.lp-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.lp-frame-title {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.92;
}

.lp-app {
  display: grid;
  grid-template-columns: 148px 1fr;
  min-height: 320px;
}

.lp-side {
  background: #f8fafc;
  border-right: 1px solid var(--lp-line);
  padding: 14px 10px;
}

.lp-side-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  color: #475569;
  font-weight: 500;
}

.lp-side-item i {
  width: 14px;
  color: var(--lp-navy);
  font-size: 0.72rem;
}

.lp-side-item.is-on {
  background: rgba(0, 51, 102, 0.08);
  color: var(--lp-navy);
  font-weight: 650;
}

.lp-main {
  padding: 16px;
}

.lp-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.lp-kpi {
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  padding: 10px;
  background: #fff;
}

.lp-kpi-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lp-kpi-val {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--lp-ink);
  line-height: 1.2;
  margin-top: 2px;
}

.lp-kpi-delta {
  font-size: 0.68rem;
  color: #0f766e;
  font-weight: 600;
}

.lp-rows {
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  overflow: hidden;
}

.lp-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  padding: 9px 12px;
  font-size: 0.75rem;
  border-bottom: 1px solid var(--lp-line);
  align-items: center;
}

.lp-row:last-child {
  border-bottom: none;
}

.lp-row strong {
  font-weight: 600;
  color: var(--lp-ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-chip {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(0, 51, 102, 0.08);
  color: var(--lp-navy);
}

.lp-chip-ok {
  background: rgba(15, 118, 110, 0.1);
  color: #0f766e;
}

.lp-hero-visual {
  position: relative;
  max-width: 100%;
}

.lp-hero-visual .lp-frame {
  transform: perspective(1400px) rotateY(-6deg) rotateX(3deg);
  transform-origin: left center;
}

/* Compact Company Dashboard preview (demo data only) */
.lp-prodash {
  --pd-navy: #003366;
  --pd-navy-deep: #001a33;
  --pd-blue: #2563eb;
  --pd-purple: #6f42c1;
  --pd-green: #059669;
  --pd-bg: #f1f5f9;
  --pd-line: #e2e8f0;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  max-width: 560px;
  margin-left: auto;
  border-radius: 12px;
  border: 1px solid var(--lp-line);
  background: var(--pd-bg);
  box-shadow: var(--lp-shadow);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-6deg) rotateX(3deg);
  transform-origin: left center;
}

.lp-prodash-side {
  background: var(--pd-navy-deep);
  color: #fff;
  padding: 10px 8px;
  overflow: hidden;
}

.lp-prodash-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 2px 4px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 6px;
}

.lp-prodash-logo {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #1d4ed8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.48rem;
  font-weight: 800;
  flex-shrink: 0;
}

.lp-prodash-nav {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 0.55rem;
  font-weight: 500;
}

.lp-prodash-nav span {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 6px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
  overflow: hidden;
}

.lp-prodash-nav span i {
  width: 11px;
  text-align: center;
  font-size: 0.55rem;
}

.lp-prodash-nav span.is-on {
  background: rgba(59, 130, 246, 0.28);
  color: #fff;
  font-weight: 650;
}

.lp-prodash-main {
  min-width: 0;
  background: var(--pd-bg);
  display: flex;
  flex-direction: column;
}

.lp-prodash-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  background: #fff;
  border-bottom: 1px solid var(--pd-line);
}

.lp-prodash-search {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid var(--pd-line);
  color: #94a3b8;
  font-size: 0.58rem;
}

.lp-prodash-tools {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--pd-navy);
  font-size: 0.68rem;
}

.lp-prodash-tools > span {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lp-prodash-bell {
  position: relative;
}

.lp-prodash-bell::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 3px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ef4444;
}

.lp-prodash-avatar {
  width: 22px !important;
  height: 22px !important;
  border-radius: 50%;
  background: #7c3aed;
  color: #fff;
  font-size: 0.5rem;
  font-weight: 700;
  margin-left: 2px;
}

.lp-prodash-body {
  padding: 8px 10px 10px;
}

.lp-prodash-head {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 6px;
}

.lp-prodash-head h3 {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 750;
  color: var(--pd-navy-deep);
}

.lp-prodash-head p {
  margin: 1px 0 0;
  font-size: 0.55rem;
  color: #64748b;
}

.lp-prodash-actions {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.lp-prodash-actions span {
  padding: 3px 7px;
  border-radius: 6px;
  border: 1px solid var(--pd-line);
  background: #fff;
  font-size: 0.5rem;
  font-weight: 650;
  color: var(--pd-navy);
}

.lp-prodash-actions span.is-primary {
  background: var(--pd-navy);
  border-color: var(--pd-navy);
  color: #fff;
}

.lp-prodash-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 7px;
}

.lp-prodash-tabs span {
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.55rem;
  font-weight: 650;
  background: #e2e8f0;
  color: #334155;
}

.lp-prodash-tabs span.is-on {
  background: var(--pd-navy);
  color: #fff;
}

.lp-prodash-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
  margin-bottom: 6px;
}

.lp-prodash-kpi {
  position: relative;
  background: #fff;
  border: 1px solid var(--pd-line);
  border-radius: 8px;
  padding: 6px 7px 5px;
  overflow: hidden;
  min-width: 0;
}

.lp-prodash-kpi::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--pd-accent, var(--pd-blue));
}

.lp-prodash-kpi.accent-purple { --pd-accent: var(--pd-purple); --pd-soft: rgba(111, 66, 193, 0.12); }
.lp-prodash-kpi.accent-blue { --pd-accent: var(--pd-blue); --pd-soft: rgba(37, 99, 235, 0.12); }
.lp-prodash-kpi.accent-green { --pd-accent: var(--pd-green); --pd-soft: rgba(5, 150, 105, 0.12); }

.lp-prodash-kpi-top {
  display: flex;
  justify-content: space-between;
  gap: 2px;
  margin-bottom: 2px;
}

.lp-prodash-kpi-top span {
  font-size: 0.42rem;
  font-weight: 750;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #94a3b8;
}

.lp-prodash-kpi-top em {
  font-style: normal;
  font-size: 0.42rem;
  font-weight: 700;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--pd-soft);
  color: var(--pd-accent);
}

.lp-prodash-kpi-top em.is-new {
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
}

.lp-prodash-kpi-mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
}

.lp-prodash-kpi-mid strong {
  font-size: 0.72rem;
  font-weight: 750;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.lp-prodash-kpi-mid i {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pd-soft);
  color: var(--pd-accent);
  font-size: 0.55rem;
  flex-shrink: 0;
}

.lp-prodash-spark {
  display: flex;
  align-items: flex-end;
  gap: 1px;
  height: 12px;
  margin-top: 3px;
}

.lp-prodash-spark i {
  flex: 1;
  border-radius: 1px 1px 0 0;
  background: #dbe3ef;
  height: 40%;
  font-style: normal;
}

.lp-prodash-spark i:nth-child(2) { height: 55%; }
.lp-prodash-spark i:nth-child(3) { height: 48%; }
.lp-prodash-spark i:nth-child(4) { height: 68%; }
.lp-prodash-spark i:nth-child(5) { height: 58%; }
.lp-prodash-spark i:nth-child(6) { height: 74%; }
.lp-prodash-spark i.is-tip {
  height: 88%;
  background: var(--pd-accent);
}

.lp-prodash-charts,
.lp-prodash-bottom {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 5px;
  margin-bottom: 5px;
}

.lp-prodash-card {
  background: #fff;
  border: 1px solid var(--pd-line);
  border-radius: 8px;
  padding: 7px 8px;
  min-width: 0;
}

.lp-prodash-card h4 {
  margin: 0 0 4px;
  font-size: 0.58rem;
  font-weight: 700;
  color: #334155;
}

.lp-prodash-line {
  width: 100%;
  height: 48px;
  display: block;
}

.lp-prodash-legend {
  display: flex;
  gap: 8px;
  margin-top: 2px;
  font-size: 0.45rem;
  color: #64748b;
  font-weight: 600;
}

.lp-prodash-legend i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  margin-right: 3px;
  vertical-align: middle;
  font-style: normal;
}

.lp-prodash-pie-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
}

.lp-prodash-pie {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  background: conic-gradient(#10b981 0 12.5%, #3b82f6 12.5% 100%);
  box-shadow: inset 0 0 0 10px #fff;
}

.lp-prodash-pie-wrap ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.48rem;
  color: #475569;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lp-prodash-pie-wrap li i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  margin-right: 4px;
  vertical-align: middle;
  font-style: normal;
}

.lp-prodash-pie-wrap li i.won { background: #10b981; }
.lp-prodash-pie-wrap li i.open { background: #3b82f6; }
.lp-prodash-pie-wrap li i.lost { background: #ef4444; }

.lp-prodash-pipe-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.lp-prodash-pipe-head h4 { margin: 0; }

.lp-prodash-pipe-head > span {
  font-size: 0.48rem;
  font-weight: 700;
  color: var(--pd-blue);
}

.lp-prodash-pipe {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-prodash-pipe-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 5px 7px;
  border-radius: 6px;
  background: #eff6ff;
  color: var(--pd-navy);
  font-size: 0.52rem;
  font-weight: 650;
}

.lp-prodash-pipe-row.is-filled {
  background: var(--pd-navy);
  color: #fff;
}

.lp-prodash-pipe-row span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.lp-prodash-loss {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-prodash-loss li {
  display: flex;
  justify-content: space-between;
  font-size: 0.5rem;
  color: #475569;
  font-weight: 550;
  padding: 3px 0;
  border-bottom: 1px solid var(--pd-line);
}

.lp-prodash-loss li:last-child { border-bottom: none; }
.lp-prodash-loss strong { color: #0f172a; font-weight: 750; }

.lp-prodash-empty {
  margin: 4px 0 0;
  font-size: 0.5rem;
  color: #94a3b8;
  font-weight: 550;
}

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */
.lp-stats {
  padding: 0 0 clamp(48px, 6vw, 72px);
}

.lp-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--lp-line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.lp-stat {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--lp-line);
}

.lp-stat:last-child {
  border-right: none;
}

.lp-stat-num {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 750;
  letter-spacing: -0.04em;
  color: var(--lp-navy);
  line-height: 1;
  margin-bottom: 8px;
}

.lp-stat-label {
  font-size: 0.85rem;
  color: var(--lp-muted);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   Problem / solution
   -------------------------------------------------------------------------- */
.lp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.lp-split.reverse {
  direction: rtl;
}

.lp-split.reverse > * {
  direction: ltr;
}

.lp-feature-list {
  list-style: none;
  margin: 18px 0 24px;
  padding: 0;
}

.lp-feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.5;
}

.lp-feature-list i {
  color: var(--lp-navy);
  margin-top: 4px;
  font-size: 0.75rem;
}

.lp-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 360px;
  margin-inline: auto;
}

.lp-stack-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border: 1px solid var(--lp-line);
  background: #fff;
  font-weight: 650;
  color: var(--lp-ink);
}

.lp-stack-item:first-child {
  border-radius: 10px 10px 0 0;
}

.lp-stack-plus {
  text-align: center;
  color: #94a3b8;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 0;
}

.lp-stack-eq {
  height: 2px;
  background: var(--lp-navy);
  margin: 8px 0;
}

.lp-stack-result {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 18px;
  background: var(--lp-navy);
  color: #fff;
  border-radius: 0 0 10px 10px;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   Module tabs
   -------------------------------------------------------------------------- */
.lp-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  margin: 36px 0 28px;
  border-bottom: 1px solid var(--lp-line);
}

.lp-tabs::-webkit-scrollbar {
  display: none;
}

.lp-tab {
  flex: 0 0 auto;
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 12px 16px;
  margin-bottom: -1px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  line-height: 1.2;
}

.lp-tab[aria-selected="true"] {
  color: var(--lp-navy);
  border-bottom-color: var(--lp-navy);
}

.lp-tab-panel[hidden] {
  display: none;
}

.lp-tab-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: center;
}

.lp-tab-grid h3 {
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.lp-tab-grid p {
  color: var(--lp-muted);
  margin: 0 0 8px;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   Product showcase
   -------------------------------------------------------------------------- */
.lp-showcase + .lp-showcase {
  padding-top: 0;
}

.lp-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-navy);
  margin-bottom: 10px;
}

/* --------------------------------------------------------------------------
   AI workflow
   -------------------------------------------------------------------------- */
.lp-ai {
  background:
    linear-gradient(180deg, #001a33 0%, #003366 100%);
  color: #fff;
}

.lp-ai .lp-kicker,
.lp-ai .lp-h2,
.lp-ai .lp-lead {
  color: #fff;
}

.lp-ai .lp-lead {
  color: rgba(255, 255, 255, 0.78);
}

.lp-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.lp-flow-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 18px 16px;
  min-height: 148px;
}

.lp-flow-step {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
}

.lp-flow-card h3 {
  font-size: 1rem;
  margin: 0 0 8px;
}

.lp-flow-card p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.lp-flow-card.is-accent {
  background: #fff;
  color: var(--lp-ink);
  border-color: #fff;
}

.lp-flow-card.is-accent .lp-flow-step {
  color: var(--lp-navy);
}

.lp-flow-card.is-accent p {
  color: var(--lp-muted);
}

/* --------------------------------------------------------------------------
   Integrations
   -------------------------------------------------------------------------- */
.lp-logo-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.lp-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 96px;
  padding: 16px 8px;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.lp-logo-item:hover {
  border-color: var(--lp-navy);
  transform: translateY(-2px);
}

.lp-logo-item i,
.lp-logo-item .x-logo {
  font-size: 1.45rem;
  color: var(--lp-navy);
}

.lp-int-note {
  margin: 28px 0 0;
  text-align: center;
  color: var(--lp-muted);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   Why cards
   -------------------------------------------------------------------------- */
.lp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.lp-card {
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 10px;
  padding: 22px 20px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.lp-card:hover {
  border-color: #c5d4e3;
  transform: translateY(-2px);
}

.lp-card-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(0, 51, 102, 0.08);
  color: var(--lp-navy);
  margin-bottom: 14px;
}

.lp-card h3 {
  font-size: 1.05rem;
  margin: 0 0 8px;
}

.lp-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--lp-muted);
  margin: 0;
}

.lp-card .lp-link {
  margin-top: 12px;
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   Resources
   -------------------------------------------------------------------------- */
.lp-res-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.lp-res-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 10px;
  padding: 24px 22px;
  text-decoration: none;
  color: inherit;
  min-height: 210px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.lp-res-card:hover {
  border-color: var(--lp-navy);
  transform: translateY(-2px);
  color: inherit;
}

.lp-res-card h3 {
  font-size: 1.15rem;
  margin: 0 0 8px;
}

.lp-res-card p {
  color: var(--lp-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0 0 16px;
  flex: 1;
}

.lp-guides {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
  justify-content: center;
}

.lp-guides a {
  color: #475569;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
}

.lp-guides a:hover {
  color: var(--lp-navy);
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.lp-faq-list {
  max-width: 760px;
  margin: 40px auto 0;
}

.lp-faq-item {
  border-bottom: 1px solid var(--lp-line);
}

.lp-faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 650;
  font-size: 1.05rem;
  color: var(--lp-ink);
}

.lp-faq-item summary::-webkit-details-marker {
  display: none;
}

.lp-faq-item summary i {
  color: #94a3b8;
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

.lp-faq-item[open] summary i {
  transform: rotate(45deg);
  color: var(--lp-navy);
}

.lp-faq-answer {
  padding: 0 0 20px;
  color: var(--lp-muted);
  line-height: 1.7;
  animation: lp-faq-in 0.22s ease;
}

@keyframes lp-faq-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   Blog
   -------------------------------------------------------------------------- */
body.lp-home .blog-preview-grid {
  margin-top: 40px;
}

body.lp-home .blog-preview-card {
  border-radius: 10px;
  box-shadow: none;
}

body.lp-home .blog-preview-card:hover {
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   Final CTA
   -------------------------------------------------------------------------- */
.lp-final {
  padding: clamp(72px, 9vw, 108px) 0;
  background: var(--lp-navy-deep);
  color: #fff;
  text-align: center;
}

.lp-final h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  color: #fff;
}

.lp-final p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  max-width: 36rem;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.lp-final .lp-actions {
  justify-content: center;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
body.lp-home .footer-clean {
  background: #07111c;
  padding: 72px 5% 28px;
}

body.lp-home .lp-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  max-width: 1180px;
  margin: 0 auto 48px;
}

body.lp-home .footer-logo img {
  height: 40px;
  width: auto;
  filter: none;
}

body.lp-home .footer-brand p {
  max-width: 280px;
}

.lp-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.lp-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid #223042;
  border-radius: 8px;
  color: #cbd5e1;
  text-decoration: none;
}

.lp-social a:hover {
  color: #fff;
  border-color: #fff;
}

.lp-contact-mini {
  margin-top: 16px;
  font-size: 0.88rem;
  color: #94a3b8;
}

.lp-contact-mini a {
  color: #cbd5e1;
  text-decoration: none;
}

.lp-contact-mini a:hover {
  color: #fff;
}

body.lp-home .footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  text-align: left;
}

/* --------------------------------------------------------------------------
   Reveal
   -------------------------------------------------------------------------- */
body.lp-home .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

body.lp-home .reveal.active {
  opacity: 1;
  transform: none;
}

body.lp-home .lp-hero-visual .lp-prodash {
  animation: lp-reveal-frame 0.8s ease both;
}

@keyframes lp-reveal-frame {
  from {
    opacity: 0;
    transform: perspective(1400px) rotateY(-10deg) rotateX(6deg) translateY(16px);
  }
  to {
    opacity: 1;
    transform: perspective(1400px) rotateY(-6deg) rotateX(3deg) translateY(0);
  }
}

@keyframes lp-flow-in {
  0%,
  100% {
    opacity: 0.72;
  }
  50% {
    opacity: 1;
  }
}

.lp-flow-card {
  animation: lp-flow-in 5s ease-in-out infinite;
}

.lp-flow-card:nth-child(2) {
  animation-delay: 0.35s;
}
.lp-flow-card:nth-child(3) {
  animation-delay: 0.7s;
}
.lp-flow-card:nth-child(4) {
  animation-delay: 1.05s;
}
.lp-flow-card:nth-child(5) {
  animation-delay: 1.4s;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1280px) {
  .lp-logo-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 1100px) {
  body.lp-home .lp-footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .lp-flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .lp-res-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-hero-visual .lp-prodash,
  .lp-hero-visual .lp-frame,
  body.lp-home .lp-hero-visual .lp-prodash,
  body.lp-home .lp-hero-visual .lp-frame {
    transform: none;
    animation: none;
  }
}

@media (max-width: 1024px) {
  .lp-hero-grid,
  .lp-split,
  .lp-tab-grid {
    grid-template-columns: 1fr;
  }

  .lp-split.reverse {
    direction: ltr;
  }

  .lp-hero h1 {
    max-width: none;
  }

  .lp-prodash {
    max-width: 100%;
    margin-left: 0;
  }

  .lp-app {
    grid-template-columns: 120px 1fr;
  }

  .lp-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .lp-wrap {
    width: calc(100% - 32px);
  }

  .lp-stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .lp-stat {
    border-right: none;
    border-bottom: 1px solid var(--lp-line);
  }

  .lp-stat:nth-child(odd) {
    border-right: 1px solid var(--lp-line);
  }

  .lp-stat:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .lp-logo-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .lp-flow {
    grid-template-columns: 1fr 1fr;
  }

  .lp-kpis {
    grid-template-columns: 1fr;
  }

  .lp-prodash {
    grid-template-columns: 1fr;
  }

  .lp-prodash-side {
    display: none;
  }

  .lp-prodash-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-prodash-charts,
  .lp-prodash-bottom {
    grid-template-columns: 1fr;
  }

  body.lp-home .footer-bottom {
    text-align: center;
    justify-content: center;
  }

  body.lp-home .footer-brand,
  body.lp-home .lp-footer-grid {
    text-align: left;
  }

  .lp-social {
    justify-content: flex-start;
  }
}

@media (max-width: 575px) {
  .lp-wrap {
    width: calc(100% - 28px);
  }

  .lp-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .lp-btn {
    width: 100%;
  }

  .lp-cards,
  .lp-res-grid,
  .lp-logo-grid,
  .lp-flow,
  .lp-stats-bar {
    grid-template-columns: 1fr;
  }

  .lp-stat,
  .lp-stat:nth-child(odd) {
    border-right: none;
    border-bottom: 1px solid var(--lp-line);
  }

  .lp-stat:last-child {
    border-bottom: none;
  }

  .lp-app {
    grid-template-columns: 1fr;
  }

  .lp-side {
    display: none;
  }

  .lp-hero-pills {
    flex-direction: column;
    align-items: flex-start;
  }

  body.lp-home .lp-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .lp-tab {
    padding: 10px 12px;
    font-size: 0.82rem;
  }
}

@media (max-width: 374px) {
  .lp-hero h1 {
    font-size: 1.85rem;
  }

  .lp-h2 {
    font-size: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.lp-home *,
  body.lp-home *::before,
  body.lp-home *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  body.lp-home .reveal {
    opacity: 1;
    transform: none;
  }

  .lp-hero-visual .lp-prodash,
  .lp-hero-visual .lp-frame,
  body.lp-home .lp-hero-visual .lp-prodash,
  body.lp-home .lp-hero-visual .lp-frame {
    transform: none;
  }
}

@media (min-width: 1920px) {
  .lp-wrap,
  body.lp-home .lp-footer-grid,
  body.lp-home .footer-bottom {
    max-width: 1240px;
    width: min(1240px, calc(100% - 64px));
  }
}
