/* ═══════════════════════════════════════════════════════════════
   CONSTRUCTION ERP — Landing Page
   Brand: Beenian Labs  |  Palette: Deep Navy + Gold + Electric Blue
   ═══════════════════════════════════════════════════════════════ */

/* ── Tokens ──────────────────────────────────────────────────── */
:root {
  --lp-navy: #07112b;
  --lp-navy-mid: #0d1f45;
  --lp-navy-light: #132558;
  --lp-blue: #1e6fff;
  --lp-blue-mid: #3b82f6;
  --lp-gold: #c8980a;
  --lp-gold-light: #f0c040;
  --lp-red: #c0392b;
  --lp-white: #ffffff;
  --lp-off-white: #f0f4ff;
  --lp-text-muted: #8b9cc8;
  --lp-border: rgba(255, 255, 255, 0.1);
  --lp-card-bg: rgba(255, 255, 255, 0.045);
  --lp-card-hover: rgba(255, 255, 255, 0.075);

  --lp-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --lp-radius: 14px;
  --lp-radius-sm: 8px;
}

/* ── Reset ───────────────────────────────────────────────────── */
.lp-root *,
.lp-root *::before,
.lp-root *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Strip focus outlines from all non-interactive elements — the landing
   page uses custom focus states where needed (nav links, buttons). */
.lp-root *:not(a):not(button):not(input):not(textarea):not(select):focus,
.lp-root *:not(a):not(button):not(input):not(textarea):not(select):focus-visible,
.page-enter:focus,
.page-enter:focus-visible {
  outline: none !important;
}

.lp-root {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--lp-white);
  background: var(--lp-navy);
  -webkit-font-smoothing: antialiased;
}
.lp-root a {
  text-decoration: none;
  color: inherit;
}
.lp-root ul {
  list-style: none;
}

/* ── Container ───────────────────────────────────────────────── */
.lp-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ════════════════════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════════════════════ */
.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(7, 17, 43, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.lp-nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lp-nav-logo {
  height: 38px;
  width: auto;
}
.lp-nav-brand-fallback {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-brand-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--lp-blue), var(--lp-red));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: #fff;
}
.lp-brand-text {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
}
.lp-brand-labs {
  color: var(--lp-blue-mid);
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.9rem;
  font-weight: 500;
}
.lp-nav-links a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--lp-transition);
}
.lp-nav-links a:hover {
  color: #fff;
}
.lp-nav-links a.lp-nav-active {
  color: #ffab00;
}
.lp-nav-cta {
  background: var(--lp-blue);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition:
    background var(--lp-transition),
    transform var(--lp-transition) !important;
}
.lp-nav-cta:hover {
  background: #1a5ee0;
  transform: translateY(-1px);
}
.lp-nav-250 {
  background: linear-gradient(135deg, #B22234, #3C3B6E);
  color: #fff !important;
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: transform 0.2s, box-shadow 0.2s !important;
  animation: pulse250 2s ease-in-out infinite alternate;
}
.lp-nav-250:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(178,34,52,0.5);
}
@keyframes pulse250 {
  from { box-shadow: 0 0 0 rgba(178,34,52,0.3); }
  to   { box-shadow: 0 0 12px rgba(178,34,52,0.6); }
}

/* ════════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════════ */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.lp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lp-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.lp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(7, 17, 43, 0.92) 0%,
    rgba(7, 17, 43, 0.78) 45%,
    rgba(7, 17, 43, 0.88) 100%
  );
}

.lp-hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  text-align: center;
}
.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 111, 255, 0.15);
  border: 1px solid rgba(30, 111, 255, 0.35);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #7fb3ff;
  margin-bottom: 28px;
}
.lp-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lp-blue-mid);
  box-shadow: 0 0 8px 2px rgba(59, 130, 246, 0.6);
  animation: lp-pulse 2s ease-in-out infinite;
}
@keyframes lp-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.lp-hero-title {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 24px;
  outline: none;
}
.lp-hero-title:focus,
.lp-hero-title:focus-visible {
  outline: none;
}
.lp-hero-accent {
  background: linear-gradient(90deg, var(--lp-blue-mid), var(--lp-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-hero-sub {
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  max-width: 640px;
  margin: 0 auto 40px;
}
.lp-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.lp-btn {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  transition: all var(--lp-transition);
  cursor: pointer;
}
.lp-btn-primary {
  background: var(--lp-blue);
  color: #fff;
  box-shadow: 0 4px 20px rgba(30, 111, 255, 0.38);
}
.lp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30, 111, 255, 0.55);
}
.lp-btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.lp-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}
.lp-btn-large {
  padding: 16px 40px;
  font-size: 1.05rem;
}

/* Hero stats */
.lp-hero-stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.lp-stat {
  text-align: center;
}
.lp-stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--lp-gold-light);
  letter-spacing: -0.02em;
}
.lp-stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--lp-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.lp-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
}

/* Scroll hint */
.lp-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
}
.lp-scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.3);
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  transform: rotate(45deg);
  animation: lp-bounce 0.8s ease-in-out infinite alternate;
}
@keyframes lp-bounce {
  from {
    transform: rotate(45deg) translateY(0);
  }
  to {
    transform: rotate(45deg) translateY(4px);
  }
}

/* ════════════════════════════════════════════════════════════════
   SECTIONS
════════════════════════════════════════════════════════════════ */
.lp-section {
  padding: 100px 0;
  position: relative;
}
.lp-section-dark {
  background: var(--lp-navy);
}
.lp-section-light {
  background: var(--lp-navy-mid);
}

.lp-section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-text-muted);
  border: 1px solid rgba(139, 156, 200, 0.25);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 18px;
}
.lp-tag-blue {
  color: var(--lp-blue-mid);
  border-color: rgba(59, 130, 246, 0.3);
}

.lp-section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin-bottom: 20px;
  color: #fff;
}
.lp-section-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  max-width: 640px;
  margin-bottom: 60px;
}

/* ── Problem grid ────────────────────────────────────────────── */
.lp-problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.lp-problem-card {
  background: var(--lp-card-bg);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 32px 28px;
  transition:
    background var(--lp-transition),
    transform var(--lp-transition);
}
.lp-problem-card:hover {
  background: var(--lp-card-hover);
  transform: translateY(-3px);
}
.lp-problem-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.lp-problem-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.lp-problem-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
}

/* ── Platform section ────────────────────────────────────────── */
.lp-platform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .lp-platform-row {
    grid-template-columns: 1fr;
  }
}

/* Dashboard mockup */
.lp-dashboard-mock {
  background: rgba(7, 17, 43, 0.9);
  border: 1px solid rgba(30, 111, 255, 0.25);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}
.lp-mock-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.lp-mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.lp-dot-red {
  background: #ff5f56;
}
.lp-dot-yellow {
  background: #ffbd2e;
}
.lp-dot-green {
  background: #27c93f;
}
.lp-mock-title {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  margin-left: 4px;
  font-weight: 500;
}
.lp-mock-body {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lp-mock-stat {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.lp-mock-stat span {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.lp-mock-stat small {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}
.lp-mock-blue span {
  color: #60a5fa;
}
.lp-mock-green span {
  color: #34d399;
}
.lp-mock-amber span {
  color: #fbbf24;
}
.lp-mock-purple span {
  color: #a78bfa;
}
.lp-mock-chart {
  grid-column: span 2;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.lp-mock-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 64px;
  margin-bottom: 8px;
}
.lp-bar {
  flex: 1;
  background: rgba(30, 111, 255, 0.3);
  border-radius: 4px 4px 0 0;
  transition: background var(--lp-transition);
}
.lp-bar-active {
  background: rgba(30, 111, 255, 0.85);
}
.lp-mock-chart-label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

/* Platform points */
.lp-platform-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.lp-point {
  display: flex;
  gap: 16px;
}
.lp-point-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  margin-top: 2px;
}
.lp-point-blue {
  background: #1e40af;
}
.lp-point-green {
  background: #065f46;
}
.lp-point-amber {
  background: #78350f;
}
.lp-point-purple {
  background: #4c1d95;
}
.lp-point h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.lp-point p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
}

/* ── Modules grid ────────────────────────────────────────────── */
.lp-modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.lp-module-card {
  background: var(--lp-card-bg);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 32px 28px;
  transition:
    background var(--lp-transition),
    transform var(--lp-transition),
    border-color var(--lp-transition);
}
.lp-module-card:hover {
  background: var(--lp-card-hover);
  transform: translateY(-4px);
  border-color: rgba(30, 111, 255, 0.3);
}
.lp-module-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.lp-module-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.lp-module-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
}
.lp-module-features li {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 4px 0;
  padding-left: 14px;
  position: relative;
}
.lp-module-features li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--lp-blue-mid);
  font-weight: 700;
}

/* ── Tech grid ───────────────────────────────────────────────── */
.lp-tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.lp-tech-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--lp-radius);
  padding: 28px;
  transition: background var(--lp-transition);
}
.lp-tech-card:hover {
  background: rgba(255, 255, 255, 0.07);
}
.lp-tech-icon {
  font-size: 1.75rem;
  margin-bottom: 14px;
}
.lp-tech-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.lp-tech-card p {
  font-size: 0.855rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
}

/* ════════════════════════════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════════════════════════════ */
.lp-cta-section {
  position: relative;
  padding: 120px 24px;
  text-align: center;
  overflow: hidden;
}
.lp-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lp-cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(7, 17, 43, 0.93) 0%,
    rgba(14, 30, 80, 0.9) 100%
  );
}
.lp-cta-inner {
  position: relative;
  z-index: 1;
}
.lp-cta-logo {
  height: 80px;
  margin-bottom: 28px;
}
.lp-cta-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}
.lp-cta-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  margin: 0 auto 40px;
}
.lp-cta-actions {
  margin-bottom: 24px;
}
.lp-cta-tagline {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════ */
.lp-footer {
  background: #060d1f;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 64px 0 0;
}
.lp-footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
}
@media (max-width: 700px) {
  .lp-footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.lp-footer-logo {
  height: 40px;
  margin-bottom: 12px;
}
.lp-footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}
.lp-footer-links {
  display: flex;
  gap: 48px;
}
.lp-footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffab00;
  margin-bottom: 6px;
}
.lp-footer-col a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--lp-transition);
}
.lp-footer-col a:hover {
  color: #fff;
  text-decoration: underline;
}
.lp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 24px;
  text-align: center;
}
.lp-footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ════════════════════════════════════════════════════════════════
   HAMBURGER + MOBILE MENU
════════════════════════════════════════════════════════════════ */

/* Mobile actions group (hidden on desktop) */
.lp-nav-mobile-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

/* Hamburger button */
.lp-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.lp-hamburger span {
  display: block;
  width: 17px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.lp-hamburger--open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.lp-hamburger--open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.lp-hamburger--open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile slide-down menu */
.lp-mobile-menu {
  display: flex;
  flex-direction: column;
  padding: 0 12px;
  gap: 2px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.22s ease;
  border-top: 0px solid rgba(255, 255, 255, 0.1);
}
.lp-mobile-menu--open {
  max-height: 480px;
  padding: 12px 12px 16px;
  border-top-width: 1px;
}
.lp-mobile-menu a {
  display: block;
  padding: 13px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  transition: background 0.15s ease, color 0.15s ease;
}
.lp-mobile-menu a:hover,
.lp-mobile-menu a:active {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}
.lp-nav-250-mobile {
  background: linear-gradient(135deg, #B22234, #3C3B6E) !important;
  color: #fff !important;
  font-weight: 700 !important;
  margin-top: 6px;
  text-align: center;
}

/* Backdrop (closes menu on outside tap) */
.lp-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99;
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 900px)
════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .lp-platform-row {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .lp-platform-visual {
    order: -1;
  }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 768px)
════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Nav: hide desktop links, show hamburger */
  .lp-nav-links {
    display: none;
  }
  .lp-nav-mobile-actions {
    display: flex;
  }
  .lp-nav-inner {
    height: 60px;
  }

  /* Hero */
  .lp-hero {
    padding: 90px 16px 60px;
    min-height: auto;
  }
  .lp-hero-title {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
    outline: none;
    margin-bottom: 18px;
  }
  .lp-hero-sub {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 28px;
  }
  .lp-hero-badge {
    font-size: 0.72rem;
    padding: 5px 12px;
    margin-bottom: 20px;
  }
  .lp-hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 36px;
  }
  .lp-btn {
    text-align: center;
    padding: 14px 20px;
  }
  .lp-btn-large {
    padding: 15px 20px;
    font-size: 1rem;
  }

  /* Stats row */
  .lp-hero-stats {
    gap: 0;
    justify-content: space-around;
    flex-wrap: nowrap;
  }
  .lp-stat-divider {
    display: block;
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
  }
  .lp-stat-value {
    font-size: 1.15rem;
  }
  .lp-stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.04em;
  }

  /* Scroll hint hidden on mobile — no scrolling gesture needed */
  .lp-scroll-hint {
    display: none;
  }

  /* Sections */
  .lp-section {
    padding: 60px 0;
  }
  .lp-container {
    padding: 0 16px;
  }
  .lp-section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  .lp-section-sub {
    font-size: 0.9rem;
    margin-bottom: 36px;
  }

  /* Grids → single column */
  .lp-problem-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .lp-modules-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .lp-tech-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Cards: tighter padding */
  .lp-problem-card,
  .lp-module-card {
    padding: 24px 20px;
  }
  .lp-tech-card {
    padding: 22px 20px;
  }

  /* Dashboard mockup: smaller on mobile */
  .lp-mock-body {
    padding: 14px;
    gap: 8px;
  }
  .lp-mock-stat span {
    font-size: 1.1rem;
  }

  /* CTA section */
  .lp-cta-section {
    padding: 72px 16px;
  }
  .lp-cta-logo {
    height: 56px;
    margin-bottom: 20px;
  }
  .lp-cta-sub {
    font-size: 0.9rem;
  }

  /* Footer */
  .lp-footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .lp-footer-links {
    flex-wrap: wrap;
    gap: 28px;
  }
}
