/* AccountPilot marketing landing page — standalone (not loaded with app.css). */
:root {
  --p: #5b1fc8;
  --p-hover: #4a18a5;
  --ink: #08080f;
  --muted: #696876;
  --muted2: #9898a8;
  --gray: #3e3e50;
  --gray2: #55556a;
  --accent: #ede9fa;
  --soft: #f9f8fe;
  --line: rgba(8, 8, 15, 0.08);
  --serif: "Lora", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.lp-container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.lp-eyebrow {
  font-family: var(--sans); font-weight: 500; font-size: 11px;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--p);
}
.lp-section { padding: 96px 0; }
.lp-section--soft { background: var(--soft); }
.lp-section--dark { background: var(--ink); }
.lp-h2 { font-size: clamp(28px, 3.2vw, 42px); }

/* Buttons */
.lp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 500; font-size: 15px; letter-spacing: -0.01em;
  border-radius: 7px; padding: 13px 26px; cursor: pointer; border: none;
  background: var(--p); color: #fff; transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.lp-btn:hover { background: var(--p-hover); }
.lp-btn--sm { font-size: 13.5px; padding: 9px 18px; border-radius: 6px; }
.lp-btn--ghost {
  background: transparent; color: var(--gray); border: 1.5px solid rgba(8, 8, 15, 0.14); font-weight: 400;
}
.lp-btn--ghost:hover { background: transparent; border-color: var(--p); color: var(--p); }
.lp-btn--dark { background: var(--ink); }
.lp-btn--dark:hover { background: #1e1e2a; }

/* Nav */
.lp-nav {
  position: fixed; inset: 0 0 auto 0; height: 64px; z-index: 100; display: flex; align-items: center;
  transition: background 0.25s, box-shadow 0.25s, backdrop-filter 0.25s; background: transparent;
}
.lp-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(8, 8, 15, 0.07);
}
.lp-nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.lp-brand { display: inline-flex; align-items: center; gap: 10px; }
.lp-brand__mark {
  width: 30px; height: 30px; border-radius: 7px; background: var(--p); flex: none;
  display: flex; align-items: center; justify-content: center;
}
.lp-brand__name { font-weight: 600; font-size: 14px; letter-spacing: -0.01em; }
.lp-brand__by { font-size: 12px; color: var(--muted2); margin-left: 5px; }
.lp-nav__links { display: flex; align-items: center; gap: 36px; }
.lp-nav__link { font-size: 13.5px; color: var(--gray); transition: color 0.15s; }
.lp-nav__link:hover { color: var(--p); }
.lp-nav__cta { display: flex; align-items: center; gap: 10px; }

/* Hero */
.lp-hero { padding: 128px 0 96px; }
.lp-hero__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: center; }
/* Let the columns shrink to the viewport instead of expanding to the mockup's
   min-content — otherwise the headline/subtitle overflow and get clipped. */
.lp-hero__grid > * { min-width: 0; }
.lp-badge {
  display: inline-flex; align-items: center; gap: 7px; padding: 5px 12px; border-radius: 100px;
  border: 1px solid rgba(91, 31, 200, 0.18); background: var(--accent); margin-bottom: 28px;
  font-weight: 500; font-size: 12px; color: var(--p);
}
.lp-badge__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--p); flex: none; }
.lp-hero h1 { font-size: clamp(36px, 4.2vw, 56px); line-height: 1.1; margin-bottom: 22px; }
.lp-hero h1 em { font-style: italic; color: var(--p); }
.lp-hero__sub { font-size: 17px; line-height: 1.68; color: #4a4a58; margin-bottom: 36px; max-width: 490px; }
.lp-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin-bottom: 40px; }
.lp-trust__item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--gray); }
.lp-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.lp-rule { max-width: 1240px; margin: 80px auto 0; padding: 0 32px; border-top: 1px solid rgba(8, 8, 15, 0.07); }

/* Generic split header (left title / right paragraph) */
.lp-splithead { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 64px; }
.lp-splithead p { font-size: 16px; line-height: 1.7; color: var(--gray2); }
.lp-centerhead { text-align: center; margin-bottom: 72px; }
.lp-centerhead .lp-eyebrow { margin-bottom: 16px; }

/* Cards (problem / why) */
.lp-cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lp-card {
  padding: 36px 32px; border: 1px solid var(--line); border-radius: 10px; background: #fff;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.lp-card:hover { border-color: rgba(91, 31, 200, 0.25); box-shadow: 0 4px 28px rgba(91, 31, 200, 0.07); }
.lp-card__num { font-family: var(--mono); font-size: 11px; font-weight: 500; color: var(--p); opacity: 0.6; letter-spacing: 0.04em; display: block; margin-bottom: 20px; }
.lp-card__title { font-size: 19px; line-height: 1.3; margin-bottom: 12px; }
.lp-card__body { font-size: 14.5px; line-height: 1.68; color: var(--muted); }

/* Dark result banner */
.lp-banner {
  background: var(--ink); border-radius: 10px; padding: 48px 56px; margin-top: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.lp-banner__item { text-align: center; flex: 1 1 180px; }
.lp-banner__v { font-family: var(--serif); font-weight: 500; font-size: 22px; color: #fff; letter-spacing: -0.015em; margin-bottom: 5px; }
.lp-banner__s { font-size: 13px; color: rgba(255, 255, 255, 0.38); }

/* How it works */
.lp-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.lp-step__bubble {
  width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; background: #fff; border: 1.5px solid rgba(91, 31, 200, 0.25);
}
.lp-step:nth-child(1) .lp-step__bubble, .lp-step:nth-child(4) .lp-step__bubble { background: var(--p); border-color: var(--p); }
.lp-step__num { font-family: var(--mono); font-size: 12px; font-weight: 500; color: var(--p); opacity: 0.55; display: block; margin-bottom: 10px; }
.lp-step__title { font-size: 18px; margin-bottom: 10px; }
.lp-step__detail { font-size: 13.5px; line-height: 1.6; color: var(--muted); margin-bottom: 14px; }
.lp-tag {
  display: inline-block; font-family: var(--mono); font-size: 10.5px; color: var(--p);
  background: var(--accent); padding: 4px 9px; border-radius: 100px;
}

/* Features hairline grid */
.lp-features { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: var(--line); display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
.lp-feature { background: #fff; padding: 32px 30px; transition: background 0.16s; }
.lp-feature:hover { background: #faf9fe; }
.lp-feature__icon { width: 40px; height: 40px; border-radius: 9px; background: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.lp-feature__title { font-size: 17.5px; margin-bottom: 10px; }
.lp-feature__body { font-size: 13.5px; line-height: 1.62; color: var(--muted); }

/* ROI */
.lp-roi__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.lp-panel { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 40px; }
.lp-panel__title { font-family: var(--sans); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); margin-bottom: 28px; }
.lp-slider { margin-bottom: 26px; }
.lp-slider__top { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 10px; }
.lp-slider__label { font-size: 13.5px; color: var(--gray); }
.lp-slider__value { font-family: var(--mono); font-size: 20px; font-weight: 500; color: var(--ink); }
.lp-slider input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 5px; border-radius: 100px; background: var(--accent); outline: none; cursor: pointer; }
.lp-slider input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--p); border: 3px solid #fff; box-shadow: 0 1px 4px rgba(91, 31, 200, 0.35); cursor: pointer; }
.lp-slider input[type="range"]::-moz-range-thumb { width: 16px; height: 16px; border-radius: 50%; background: var(--p); border: 3px solid #fff; cursor: pointer; }
.lp-slider__range { display: flex; justify-content: space-between; margin-top: 7px; font-family: var(--mono); font-size: 10px; color: #b0b0bc; }
.lp-results { display: flex; flex-direction: column; gap: 14px; }
.lp-result { border: 1px solid var(--line); border-radius: 10px; padding: 22px 24px; background: #fff; }
.lp-result--p { background: var(--p); border-color: var(--p); }
.lp-result__label { font-size: 11px; text-transform: uppercase; font-weight: 500; letter-spacing: 0.07em; color: var(--muted); margin-bottom: 8px; }
.lp-result--p .lp-result__label { color: rgba(255, 255, 255, 0.7); }
.lp-result__value { font-family: var(--mono); font-size: 32px; font-weight: 500; color: var(--ink); line-height: 1; }
.lp-result--p .lp-result__value { color: #fff; }
.lp-result__sub { font-size: 12.5px; color: var(--muted); margin-top: 7px; }
.lp-result--p .lp-result__sub { color: rgba(255, 255, 255, 0.7); }

/* Before / after */
.lp-ba { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: stretch; }
.lp-ba__col { padding: 44px 40px; border: 1px solid var(--line); border-radius: 12px; }
.lp-ba__col--after { background: #faf9fe; }
.lp-ba__pill { display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 600; padding: 5px 11px; border-radius: 100px; margin-bottom: 24px; }
.lp-ba__pill--before { color: #92400e; background: #fef3c7; }
.lp-ba__pill--after { color: var(--p); background: var(--accent); }
.lp-ba__item { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-top: 1px solid var(--line); font-size: 14.5px; }
.lp-ba__item:first-of-type { border-top: none; }
.lp-ba__col--before .lp-ba__item { color: var(--gray); }
.lp-ba__col--after .lp-ba__item { color: var(--ink); font-weight: 500; }
.lp-ba__emoji { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex: none; }
.lp-ba__col--before .lp-ba__emoji { background: #fefce8; border: 1px solid rgba(202, 138, 4, 0.12); }
.lp-ba__col--after .lp-ba__emoji { background: var(--accent); border: 1px solid rgba(91, 31, 200, 0.12); }
.lp-ba__arrow { display: flex; align-items: center; justify-content: center; width: 64px; color: var(--p); }

/* Why */
.lp-why { display: grid; grid-template-columns: 320px 1fr; gap: 80px; align-items: start; }
.lp-why__left { position: sticky; top: 96px; }
.lp-why__left h2 { font-size: clamp(26px, 2.8vw, 36px); margin: 16px 0 18px; }
.lp-why__left p { font-size: 14.5px; line-height: 1.7; color: var(--gray2); margin-bottom: 26px; }
.lp-why__list { display: flex; flex-direction: column; gap: 14px; }
.lp-whycard { display: grid; grid-template-columns: 28px 1fr; gap: 12px; padding: 28px 30px; border: 1px solid var(--line); border-radius: 10px; background: #fff; transition: border-color 0.18s, box-shadow 0.18s; }
.lp-whycard:hover { border-color: rgba(91, 31, 200, 0.22); box-shadow: 0 3px 20px rgba(91, 31, 200, 0.06); }
.lp-whycard__num { font-family: var(--mono); font-size: 11px; color: var(--p); opacity: 0.55; }
.lp-whycard__title { font-size: 19px; margin-bottom: 10px; }
.lp-whycard__body { font-size: 14px; line-height: 1.65; color: var(--muted); margin-bottom: 14px; }

/* Ecosystem (dark) */
.lp-eco { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.lp-eco .lp-eyebrow { color: rgba(91, 31, 200, 0.85); margin-bottom: 16px; }
.lp-eco h2 { color: #fff; margin-bottom: 22px; }
.lp-eco__intro { font-size: 16px; line-height: 1.7; color: rgba(255, 255, 255, 0.5); margin-bottom: 24px; }
.lp-eco__callout { font-family: var(--serif); font-size: 17px; font-style: italic; line-height: 1.6; color: rgba(255, 255, 255, 0.75); background: rgba(91, 31, 200, 0.12); border-left: 2px solid var(--p); padding: 18px 22px; border-radius: 8px; margin-bottom: 28px; }
.lp-eco__diagram { border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; background: rgba(91, 31, 200, 0.06); padding: 24px; }
.lp-eco__node { display: flex; align-items: center; gap: 12px; background: var(--p); border-radius: 9px; padding: 14px 18px; color: #fff; font-weight: 600; font-size: 14px; }
.lp-eco__sep { height: 28px; width: 1px; background: rgba(255, 255, 255, 0.18); margin: 4px auto; }
.lp-eco__platform { border: 1px solid rgba(91, 31, 200, 0.4); border-radius: 10px; background: rgba(91, 31, 200, 0.1); overflow: hidden; }
.lp-eco__phead { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: rgba(91, 31, 200, 0.12); font-size: 12px; font-weight: 600; color: rgba(255, 255, 255, 0.8); }
.lp-eco__modules { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255, 255, 255, 0.08); }
.lp-eco__module { background: var(--ink); padding: 16px 16px; transition: background 0.16s; }
.lp-eco__module:hover { background: rgba(91, 31, 200, 0.14); }
.lp-eco__mlabel { font-size: 12.5px; font-weight: 500; color: rgba(255, 255, 255, 0.78); margin-bottom: 3px; }
.lp-eco__mdesc { font-size: 11px; color: rgba(255, 255, 255, 0.3); }

/* Testimonials */
.lp-tcard { border: 1px solid var(--line); border-radius: 12px; background: #fff; padding: 30px 30px; display: flex; flex-direction: column; }
.lp-tcard__metric { background: var(--accent); border-radius: 9px; padding: 14px 16px; margin-bottom: 22px; }
.lp-tcard__num { font-family: var(--mono); font-size: 30px; font-weight: 500; color: var(--p); line-height: 1; }
.lp-tcard__mlabel { font-size: 12.5px; color: var(--p); opacity: 0.65; margin-top: 5px; }
.lp-tcard__quote { font-family: var(--serif); font-size: 16px; font-style: italic; line-height: 1.6; color: #1a1a28; margin-bottom: 22px; flex: 1; }
.lp-tcard__author { border-top: 1px solid var(--line); padding-top: 18px; }
.lp-tcard__name { font-size: 13.5px; font-weight: 600; }
.lp-tcard__role { font-size: 12.5px; color: var(--muted2); margin-top: 3px; }
.lp-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 28px; margin-top: 56px; padding: 28px 40px; border: 1px solid var(--line); border-radius: 12px; }
.lp-strip__label { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; color: #b0b0bc; }
.lp-strip__badge { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 500; color: var(--gray); }

/* Final CTA */
.lp-cta { background: var(--ink); border-radius: 14px; padding: 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.lp-cta .lp-eyebrow { color: rgba(91, 31, 200, 0.85); margin-bottom: 18px; }
.lp-cta h2 { color: #fff; font-size: clamp(26px, 3vw, 40px); margin-bottom: 18px; }
.lp-cta__intro { font-size: 15.5px; line-height: 1.7; color: rgba(255, 255, 255, 0.48); }
.lp-ctabtns { display: flex; flex-direction: column; gap: 14px; }
.lp-ctabtn { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 22px; border-radius: 9px; text-align: left; transition: background 0.15s, border-color 0.15s; }
.lp-ctabtn--primary { background: var(--p); color: #fff; }
.lp-ctabtn--primary:hover { background: var(--p-hover); }
.lp-ctabtn--ghost { background: transparent; border: 1.5px solid rgba(255, 255, 255, 0.18); color: rgba(255, 255, 255, 0.75); }
.lp-ctabtn--ghost:hover { border-color: rgba(255, 255, 255, 0.35); color: #fff; }
.lp-ctabtn__main { font-size: 15px; font-weight: 500; }
.lp-ctabtn__sub { font-size: 12px; opacity: 0.6; margin-top: 3px; }
.lp-ctatrust { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 4px; }
.lp-ctatrust__item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255, 255, 255, 0.35); }

/* Footer */
.lp-footer { background: var(--ink); border-top: 1px solid rgba(255, 255, 255, 0.06); }
.lp-footer__grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; padding: 64px 0 56px; }
.lp-footer__brand .lp-brand__name { color: #fff; }
.lp-footer__tagline { font-size: 13.5px; line-height: 1.68; color: rgba(255, 255, 255, 0.38); margin: 16px 0 18px; max-width: 320px; }
.lp-footer__badges { display: flex; gap: 8px; flex-wrap: wrap; }
.lp-footer__badge { font-size: 11px; font-weight: 500; color: rgba(91, 31, 200, 0.85); border: 1px solid rgba(91, 31, 200, 0.4); border-radius: 100px; padding: 3px 10px; }
.lp-footer__h { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255, 255, 255, 0.28); margin-bottom: 16px; }
.lp-footer__link { display: block; font-size: 13.5px; color: rgba(255, 255, 255, 0.46); padding: 6px 0; transition: color 0.14s; }
.lp-footer__link:hover { color: rgba(255, 255, 255, 0.9); }
.lp-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 22px 0; border-top: 1px solid rgba(255, 255, 255, 0.06); font-size: 12px; color: rgba(255, 255, 255, 0.22); }

/* Product mockup */
.lp-mock { width: 100%; max-width: 680px; border: 1px solid rgba(8, 8, 15, 0.1); border-radius: 12px; background: #fff; box-shadow: 0 8px 64px rgba(91, 31, 200, 0.09), 0 2px 8px rgba(0, 0, 0, 0.05); overflow: hidden; }
.lp-mock__chrome { display: flex; align-items: center; gap: 10px; height: 44px; padding: 0 14px; border-bottom: 1px solid var(--line); }
.lp-mock__dot { width: 9px; height: 9px; border-radius: 50%; }
.lp-mock__addr { flex: 1; height: 22px; border-radius: 6px; background: #eeecf7; display: flex; align-items: center; padding: 0 10px; font-family: var(--mono); font-size: 10px; color: #8a8a9a; }
.lp-mock__head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.lp-mock__badge { font-size: 10.5px; font-weight: 600; padding: 3px 9px; border-radius: 100px; }
.lp-mock__badge--ai { color: var(--p); background: var(--accent); }
.lp-mock__badge--datev { color: #0a7d44; background: #e7f7ee; }
.lp-mock__pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--p); display: inline-block; margin-right: 5px; animation: lpPulse 1.4s infinite; }
@keyframes lpPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.85); } }
.lp-mock__progress { height: 5px; border-radius: 100px; background: var(--accent); margin: 0 16px 14px; overflow: hidden; }
.lp-mock__progress span { display: block; height: 100%; background: var(--p); border-radius: 100px; animation: lpProgress 3.4s ease-in-out infinite; }
@keyframes lpProgress { 0% { width: 14%; } 60% { width: 92%; } 100% { width: 14%; } }
.lp-mock__table { width: 100%; border-collapse: collapse; font-size: 11.5px; }
.lp-mock__table th { text-align: left; font-family: var(--sans); font-size: 9.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted2); padding: 8px 16px; border-bottom: 1px solid var(--line); }
.lp-mock__table td { padding: 9px 16px; border-bottom: 1px solid var(--line); color: var(--gray); }
.lp-mock__table td.num { font-family: var(--mono); }
.lp-mock__vendor { font-weight: 600; color: var(--ink); }
.lp-mock__file { font-family: var(--mono); font-size: 9.5px; color: var(--muted2); }
.lp-mock__status { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 100px; }
.lp-mock__status::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.lp-mock__status--ok { color: #0a7d44; background: #ecfdf5; }
.lp-mock__status--proc { color: #3b0d85; background: var(--accent); }
.lp-mock__status--rev { color: #8a6100; background: #fef9c3; }
.lp-mock__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 16px; border-top: 1px solid var(--line); font-size: 11px; color: var(--muted); }

/* Responsive */
@media (max-width: 1020px) {
  html, body { overflow-x: hidden; }
  .lp-hero h1, .lp-h2, .lp-cta h2, .lp-eco h2, .lp-why__left h2 { overflow-wrap: break-word; word-break: break-word; hyphens: auto; }
  .lp-hero__grid, .lp-splithead, .lp-roi__grid, .lp-eco, .lp-cta { grid-template-columns: 1fr !important; gap: 40px; }
  .lp-cards3, .lp-features, .lp-steps { grid-template-columns: 1fr 1fr !important; }
  .lp-why { grid-template-columns: 1fr; gap: 40px; }
  .lp-why__left { position: static; }
  .lp-cta { padding: 44px 36px; }
}
@media (max-width: 900px) {
  .lp-nav__links, .lp-nav__cta .lp-nav__link { display: none; }
  .lp-ba { grid-template-columns: 1fr; gap: 20px; }
  .lp-ba__arrow { display: none; }
}
@media (max-width: 640px) {
  .lp-container { padding: 0 20px; }
  .lp-cards3, .lp-features, .lp-steps { grid-template-columns: 1fr !important; }
  .lp-eco__modules { grid-template-columns: 1fr; }
  .lp-footer__grid { grid-template-columns: 1fr 1fr; }
}
