/* ==========================================================================
   Smart Business 360 — Solution pages
   Shared by approvals, construction, real estate, and WhatsApp CRM pages.
   Scoped to body.lp-sol
   ========================================================================== */

body.lp-sol {
  --lp-navy: #003366;
  --lp-navy-deep: #001a33;
  --lp-ink: #0f172a;
  --lp-muted: #5b6b7c;
  --lp-line: #e6edf4;
  --lp-surface: #f5f8fb;
  --lp-white: #ffffff;
  --lp-radius: 12px;
  --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-sol section {
  padding-left: 0;
  padding-right: 0;
}

body.lp-sol a:focus-visible,
body.lp-sol button:focus-visible,
body.lp-sol summary:focus-visible {
  outline: 2px solid var(--lp-navy);
  outline-offset: 3px;
}

.ls-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;
}

.ls-skip:focus {
  top: 12px;
}

.ls-wrap {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.ls-section {
  padding: clamp(56px, 7vw, 96px) 0;
}

.ls-section-alt {
  background: var(--lp-surface);
}

.ls-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: 12px;
}

.ls-h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 12px;
}

.ls-lead {
  color: var(--lp-muted);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0;
  max-width: 40rem;
}

.ls-center {
  text-align: center;
}

.ls-center .ls-lead {
  margin-inline: auto;
}

/* Header */
body.lp-sol > 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-sol > 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-sol .logo-img { height: 42px; }
body.lp-sol .main-nav { flex: 1; display: flex; justify-content: center; }
body.lp-sol nav ul { gap: 22px; }
body.lp-sol nav ul li a { font-size: 0.9rem; font-weight: 500; color: #334155; }
body.lp-sol nav ul li a.nav-active { color: var(--lp-navy); }
body.lp-sol nav ul li a.nav-active::after { bottom: -8px; height: 2px; background: var(--lp-navy); }
body.lp-sol .header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
body.lp-sol .header-actions .btn { padding: 9px 16px; font-size: 0.875rem; border-radius: 8px; }
body.lp-sol .header-actions .btn-primary { box-shadow: none; }
body.lp-sol .header-actions .btn-primary:hover { transform: none; box-shadow: none; }
body.lp-sol .header-actions-mobile .btn { width: 100%; margin-right: 0 !important; }
body.lp-sol .mobile-menu-toggle { width: 40px; height: 40px; border-radius: 8px; }

body.lp-sol nav.main-nav ul.dropdown-menu {
  border: 1px solid var(--lp-line);
  border-radius: 12px;
  box-shadow: var(--lp-shadow);
  padding: 8px;
}

body.lp-sol nav.main-nav ul.dropdown-menu > li > a.dropdown-item {
  border-radius: 8px;
  font-size: 0.84rem;
}

body.lp-sol [id] { scroll-margin-top: calc(var(--lp-header-h) + 16px); }

@media (max-width: 1200px) {
  body.lp-sol nav ul { gap: 14px; }
  body.lp-sol nav ul li a { font-size: 0.82rem; }
}

@media (max-width: 991px) {
  body.lp-sol > header { position: sticky !important; overflow: visible !important; padding: 10px 4% !important; }
  body.lp-sol .main-nav { display: none; justify-content: flex-start; max-height: min(80vh, 640px); overflow-y: auto; }
  body.lp-sol .main-nav.active { display: block !important; }
}

/* Buttons */
.ls-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.ls-btn-primary { background: var(--lp-navy); color: #fff; border: 1px solid var(--lp-navy); }
.ls-btn-primary:hover { background: var(--lp-navy-deep); color: #fff; transform: translateY(-1px); }
.ls-btn-secondary { background: #fff; color: var(--lp-navy); border: 1px solid var(--lp-line); }
.ls-btn-secondary:hover { border-color: var(--lp-navy); color: var(--lp-navy); }
.ls-btn-light { background: #fff; color: var(--lp-navy); border: 1px solid #fff; }
.ls-btn-light:hover { background: var(--lp-surface); color: var(--lp-navy); }
.ls-btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.28); }
.ls-btn-ghost:hover { border-color: #fff; color: #fff; }
.ls-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* Breadcrumb */
.ls-crumb {
  padding: 18px 0 0;
  font-size: 0.85rem;
}

.ls-crumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--lp-muted);
}

.ls-crumb a { color: var(--lp-navy); text-decoration: none; font-weight: 500; }
.ls-crumb li:not(:last-child)::after { content: "/"; margin-left: 8px; color: #94a3b8; }

/* Hero */
.ls-hero {
  padding: 28px 0 48px;
  background:
    radial-gradient(900px 320px at 90% -10%, rgba(0, 80, 153, 0.1), transparent 60%),
    linear-gradient(180deg, #f4f8fb 0%, #ffffff 80%);
}

.ls-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.ls-hero-grid > * { min-width: 0; }

.ls-hero h1 {
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0 0 14px;
}

.ls-hero-copy {
  color: var(--lp-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 38rem;
}

.ls-frame {
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 12px;
  box-shadow: var(--lp-shadow);
  overflow: hidden;
  min-width: 0;
}

.ls-frame-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--lp-navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
}

.ls-dots { display: flex; gap: 5px; }
.ls-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.35); }

/* Benefits */
.ls-pills {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.ls-pill {
  border: 1px solid var(--lp-line);
  background: #fff;
  border-radius: 10px;
  padding: 18px 16px;
}

.ls-pill i { color: var(--lp-navy); margin-bottom: 8px; }
.ls-pill h3 { font-size: 0.95rem; margin: 0 0 4px; }
.ls-pill p { font-size: 0.82rem; color: var(--lp-muted); margin: 0; line-height: 1.45; }

/* Split */
.ls-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.ls-list { list-style: none; margin: 16px 0 0; padding: 0; }
.ls-list li { display: flex; gap: 10px; margin-bottom: 10px; color: #334155; font-size: 0.95rem; line-height: 1.5; }
.ls-list i { color: var(--lp-navy); margin-top: 4px; font-size: 0.75rem; }

/* Cards */
.ls-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ls-cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ls-kpis-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.ls-card {
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 10px;
  padding: 22px 20px;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.ls-card:hover { transform: translateY(-3px); border-color: #c5d4e3; }
.ls-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: 12px;
}
.ls-card h3, .ls-card h4 { font-size: 1.02rem; margin: 0 0 8px; }
.ls-card p { font-size: 0.9rem; color: var(--lp-muted); margin: 0; line-height: 1.55; }

/* Workflow */
.ls-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.ls-flow-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ls-flow-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.ls-flow-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.ls-flow-7 { grid-template-columns: repeat(7, minmax(0, 1fr)); }

.ls-related {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.ls-related a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lp-navy);
  text-decoration: none;
  border: 1px solid var(--lp-line);
  padding: 8px 12px;
  border-radius: 8px;
  background: #fff;
}
.ls-related a:hover { border-color: var(--lp-navy); }

.ls-node {
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 10px;
  padding: 16px 14px;
  text-align: center;
  position: relative;
}

.ls-node strong { display: block; font-size: 0.88rem; margin-bottom: 4px; }
.ls-node span { font-size: 0.75rem; color: var(--lp-muted); }
.ls-node .ls-status {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(15,118,110,0.1);
  color: #0f766e;
}

.ls-node.is-wait .ls-status { background: rgba(0,51,102,0.08); color: var(--lp-navy); }
.ls-node.is-run .ls-status { background: rgba(0,51,102,0.12); color: var(--lp-navy); }

.ls-chain { display: flex; flex-direction: column; padding: 18px 20px 22px; }
.ls-chain-step {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
  padding-bottom: 14px;
}
.ls-chain-step:last-child { padding-bottom: 0; }
.ls-chain-rail { display: flex; flex-direction: column; align-items: center; }
.ls-chain-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--lp-navy);
  box-shadow: 0 0 0 4px rgba(0, 51, 102, 0.12);
  flex-shrink: 0;
}
.ls-chain-step.is-current .ls-chain-dot { background: #0f766e; box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.16); }
.ls-chain-step:not(:last-child) .ls-chain-rail::after {
  content: "";
  flex: 1;
  width: 2px;
  min-height: 18px;
  background: var(--lp-line);
  margin-top: 6px;
}
.ls-chain-step strong { display: block; font-size: 0.88rem; }
.ls-chain-step span { font-size: 0.75rem; color: var(--lp-muted); }

.ls-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
}
.ls-badge-yes { background: rgba(15, 118, 110, 0.12); color: #0f766e; }
.ls-badge-no { background: var(--lp-surface); color: #475569; }

.ls-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.ls-ol { margin: 0 0 16px; padding: 0 0 0 1.15rem; color: #334155; }
.ls-ol li { margin-bottom: 8px; line-height: 1.55; }

/* Product UI bits */
.ls-rows { border: 1px solid var(--lp-line); border-radius: 8px; overflow: hidden; }
.ls-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 9px 12px;
  font-size: 0.78rem;
  border-bottom: 1px solid var(--lp-line);
  align-items: center;
}
.ls-row:last-child { border-bottom: none; }
.ls-row strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ls-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);
}

.ls-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 14px; }
.ls-kpi { border: 1px solid var(--lp-line); border-radius: 8px; padding: 10px; }
.ls-kpi-label { font-size: 0.65rem; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.04em; }
.ls-kpi-val { font-size: 0.95rem; font-weight: 700; margin-top: 4px; }

/* Gantt */
.ls-gantt { padding: 14px; }
.ls-gantt-row { display: grid; grid-template-columns: minmax(72px, 110px) minmax(0, 1fr); gap: 10px; align-items: center; margin-bottom: 8px; font-size: 0.75rem; }
.ls-bar { height: 10px; background: rgba(0,51,102,0.12); border-radius: 99px; overflow: hidden; }
.ls-bar > span { display: block; height: 100%; background: var(--lp-navy); border-radius: 99px; }

/* Property inventory */
.ls-inv {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.ls-inv-item {
  border: 1px solid var(--lp-line);
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
  background: #fff;
}

.ls-inv-swatch { width: 12px; height: 12px; border-radius: 50%; margin: 0 auto 8px; }
.ls-inv-item.is-avail .ls-inv-swatch { background: #0f766e; }
.ls-inv-item.is-res .ls-inv-swatch { background: #b45309; }
.ls-inv-item.is-book .ls-inv-swatch { background: var(--lp-navy); }
.ls-inv-item.is-sold .ls-inv-swatch { background: #334155; }
.ls-inv-item strong { display: block; font-size: 0.88rem; }

/* WhatsApp mock */
.ls-wa {
  display: grid;
  grid-template-columns: 140px 1fr 150px;
  min-height: 280px;
}

.ls-wa-col { border-right: 1px solid var(--lp-line); padding: 10px; background: #f8fafc; }
.ls-wa-col:last-child { border-right: none; }
.ls-wa-chat { background: #fff; padding: 12px; }
.ls-wa-item { font-size: 0.72rem; padding: 8px; border-radius: 6px; margin-bottom: 6px; color: #475569; }
.ls-wa-item.is-on { background: rgba(0,51,102,0.08); color: var(--lp-navy); font-weight: 600; }
.ls-bubble { font-size: 0.75rem; padding: 8px 10px; border-radius: 10px; margin-bottom: 8px; max-width: 90%; background: #f1f5f9; }
.ls-bubble.out { background: rgba(0,51,102,0.08); margin-left: auto; }

/* Feature tabs */
.ls-tabs { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; margin-bottom: 20px; }
.ls-tabs::-webkit-scrollbar { display: none; }
.ls-tab {
  appearance: none; border: 1px solid var(--lp-line); background: #fff; color: #475569;
  border-radius: 999px; padding: 8px 14px; font: inherit; font-size: 0.82rem; font-weight: 600;
  cursor: pointer; white-space: nowrap;
}
.ls-tab[aria-selected="true"] { background: var(--lp-navy); border-color: var(--lp-navy); color: #fff; }
.ls-tab-panel {
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 12px;
  padding: 24px 22px;
}
.ls-tab-panel[hidden] { display: none; }

/* Docs (approvals detail) */
.ls-doc { margin-top: 8px; }
.ls-doc p { color: var(--lp-muted); line-height: 1.65; margin: 0 0 14px; }
.ls-doc h3 { font-size: 1.25rem; margin: 32px 0 12px; }
.ls-doc h4 { font-size: 1.05rem; margin: 24px 0 10px; }
.ls-table { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--lp-line); border-radius: 10px; overflow: hidden; margin: 12px 0 20px; background: #fff; }
.ls-table th { background: var(--lp-surface); text-align: left; padding: 12px 14px; font-size: 0.85rem; }
.ls-table td { padding: 12px 14px; border-top: 1px solid var(--lp-line); font-size: 0.88rem; color: #334155; }
.ls-code { background: rgba(0,51,102,0.08); color: var(--lp-navy); padding: 2px 7px; border-radius: 4px; font-family: ui-monospace, monospace; font-size: 0.82rem; }
.ls-note { background: var(--lp-surface); border: 1px solid var(--lp-line); border-radius: 10px; padding: 14px 16px; font-size: 0.88rem; color: var(--lp-muted); margin: 12px 0 20px; }
.ls-step { display: flex; gap: 12px; padding: 14px 16px; border: 1px solid var(--lp-line); border-radius: 10px; background: #fff; margin-bottom: 10px; }
.ls-step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--lp-navy); color: #fff; display: grid; place-items: center; font-size: 0.8rem; font-weight: 700; flex-shrink: 0; }
.ls-toc { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 28px; }
.ls-toc a { font-size: 0.8rem; color: var(--lp-navy); text-decoration: none; border: 1px solid var(--lp-line); padding: 6px 10px; border-radius: 999px; background: #fff; }
.ls-toc a:hover { border-color: var(--lp-navy); }

/* FAQ */
.ls-faq { max-width: 760px; margin: 32px auto 0; }
.ls-faq-item { border-bottom: 1px solid var(--lp-line); }
.ls-faq-item summary {
  list-style: none; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 18px 0; cursor: pointer; font-weight: 650; font-size: 1.02rem;
}
.ls-faq-item summary::-webkit-details-marker { display: none; }
.ls-faq-item summary i { color: #94a3b8; transition: transform 0.2s ease; }
.ls-faq-item[open] summary i { transform: rotate(45deg); color: var(--lp-navy); }
.ls-faq-answer { padding: 0 0 18px; color: var(--lp-muted); line-height: 1.7; animation: ls-in 0.2s ease; }

@keyframes ls-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}

/* Mid / final CTA */
.ls-midcta {
  border: 1px solid var(--lp-line);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  background: #fff;
}

.ls-final {
  padding: clamp(64px, 8vw, 96px) 0;
  background: var(--lp-navy-deep);
  color: #fff;
  text-align: center;
}

.ls-final h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -0.03em; margin: 0 0 12px; color: #fff; }
.ls-final p { color: rgba(255,255,255,0.78); max-width: 36rem; margin: 0 auto 28px; line-height: 1.6; }
.ls-final .ls-actions { justify-content: center; }

/* Footer */
body.lp-sol .footer-clean { background: #07111c; padding: 72px 5% 28px; }
body.lp-sol .ls-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  max-width: 1180px;
  margin: 0 auto 48px;
}
body.lp-sol .footer-logo img { height: 40px; width: auto; filter: none; }
body.lp-sol .footer-bottom { max-width: 1180px; margin: 0 auto; text-align: left; }
.ls-social { display: flex; gap: 10px; margin-top: 16px; }
.ls-social a {
  width: 36px; height: 36px; display: grid; place-items: center;
  border: 1px solid #223042; border-radius: 8px; color: #cbd5e1; text-decoration: none;
}
.ls-social a:hover { color: #fff; border-color: #fff; }

.ls-alerts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.ls-alert {
  background: #fff; border: 1px solid var(--lp-line); border-radius: 10px; padding: 16px;
  text-align: center; font-size: 0.88rem; font-weight: 650;
}
.ls-alert i { display: block; color: var(--lp-navy); margin-bottom: 8px; }

/* Reveal */
body.lp-sol .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
body.lp-sol .reveal.active { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .ls-flow, .ls-flow-5, .ls-flow-6, .ls-flow-7 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ls-pills, .ls-inv, .ls-alerts, .ls-kpis-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ls-wa { grid-template-columns: 120px 1fr 130px; }
}

@media (max-width: 1024px) {
  .ls-hero-grid, .ls-split, .ls-cards, .ls-cards-2 { grid-template-columns: 1fr; }
  .ls-flow-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .ls-wrap { width: calc(100% - 32px); }
  .ls-pills, .ls-inv, .ls-alerts, .ls-kpis-5, .ls-flow, .ls-flow-4, .ls-flow-5, .ls-flow-6, .ls-flow-7 { grid-template-columns: 1fr; }
  .ls-wa { grid-template-columns: 1fr; }
  .ls-wa-col { display: block; border-right: none; border-bottom: 1px solid var(--lp-line); }
  .ls-wa-col:last-child { border-bottom: none; }
  .ls-wa-chat { display: block; border-bottom: 1px solid var(--lp-line); }
  .ls-actions { flex-direction: column; align-items: stretch; }
  .ls-btn { width: 100%; }
  body.lp-sol .ls-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .ls-wrap { width: calc(100% - 28px); }
  body.lp-sol .ls-footer-grid { grid-template-columns: 1fr; }
  .ls-kpis { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  body.lp-sol *, body.lp-sol *::before, body.lp-sol *::after {
    animation: none !important;
    transition: none !important;
  }
  body.lp-sol .reveal { opacity: 1; transform: none; }
}
