:root {
  --o: #c2410c;
  --o2: #9a3412;
  --accent: #c2410c;
  --accent-soft: rgba(194, 65, 12, 0.1);
  --p: #12100e;
  --p2: #0a0908;
  --p-soft: #f3ebe3;
  --blend: linear-gradient(135deg, #c2410c 0%, #ea580c 100%);
  --blend-soft: linear-gradient(165deg, rgba(247, 245, 242, 0.95) 0%, rgba(243, 239, 234, 0.9) 62%);
  --blend-glow:
    radial-gradient(circle at 18% 0%, rgba(194, 65, 12, 0.08), transparent 42%),
    radial-gradient(circle at 90% 10%, rgba(18, 16, 14, 0.04), transparent 38%);
  --blend-line: rgba(194, 65, 12, 0.22);
  --blend-line-strong: rgba(194, 65, 12, 0.36);
  --blend-ink: #9a3412;
  --blend-ink-warm: #c2410c;
  --ink: #12100e;
  --muted: #6b645c;
  --line: rgba(18, 16, 14, 0.1);
  --bg: #f7f5f2;
  --soft: #efeae4;
  --card: #fffcf9;
  --glass: rgba(255, 252, 249, 0.86);
  --glass-strong: rgba(255, 252, 249, 0.94);
  --glass-border: rgba(18, 16, 14, 0.08);
  --shadow: 0 16px 40px rgba(18, 16, 14, 0.08);
  --shadow-hover: 0 22px 48px rgba(18, 16, 14, 0.12);
  --font: "Onest", system-ui, sans-serif;
  --font-display: "Unbounded", "Onest", system-ui, sans-serif;
  --shell: 1280px;
  --page-gutter: clamp(18px, 3vw, 40px);
  --r: 10px;
}
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.lp-page {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  position: relative;
  padding-top: 0;
}

/* Спокойный фон страницы — без баннера на всю высоту */
body.lp-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: var(--bg);
  background-image:
    linear-gradient(180deg, #faf8f6 0%, #f7f5f2 45%, #f1ece6 100%),
    radial-gradient(ellipse 60% 40% at 80% -5%, rgba(194, 65, 12, 0.06), transparent 55%);
}

body.lp-page > *:not(.lp-auth):not(.lp-header) {
  position: relative;
  z-index: 1;
}

body.lp-page > .lp-header {
  position: fixed;
  z-index: 50;
}

body.lp-page > .lp-auth {
  position: fixed;
  z-index: 10000;
}

.lp-shell {
  box-sizing: border-box;
  width: min(var(--shell), calc(100% - (var(--page-gutter) * 2)));
  max-width: var(--shell);
  margin-inline: auto;
}

/* ── Buttons ── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border: 0;
  border-radius: 12px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .15s, box-shadow .2s;
}

.lp-btn:active { transform: translateY(1px); }

.lp-btn-primary {
  background: var(--o);
  color: #fff;
  border-color: transparent;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(194, 65, 12, 0.22);
}

.lp-btn-primary:hover { background: var(--o2); }

.lp-btn-ghost {
  background: var(--card);
  color: var(--ink);
  border: 1px solid var(--line);
}

.lp-btn-ghost:hover { border-color: rgba(255, 106, 0, 0.35); }

.lp-btn-lg { padding: 14px 22px; font-size: 15px; border-radius: 13px; }
.lp-btn-block { width: 100%; }

.lp-text-btn {
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  padding: 9px 16px;
  border-radius: 10px;
  transition: border-color .15s, background .15s;
  box-shadow: 0 2px 10px rgba(17, 24, 39, 0.06);
}

.lp-text-btn:hover {
  border-color: #9ca3af;
  background: #fff;
}

/* ── Hero wrap + header ON banner ── */
.lp-hero-wrap {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 0 64px;
  overflow: visible;
}

.lp-hero-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(120px, 14vh);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(247, 245, 242, 0) 0%,
    rgba(247, 245, 242, 0.55) 100%
  );
}

.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border: 0;
  border-bottom: 0;
  box-shadow: none;
  outline: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.lp-header.is-scrolled {
  background: transparent;
  border: 0;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.lp-header-row {
  display: flex;
  align-items: center;
  gap: 14px;
  box-sizing: border-box;
  width: min(var(--shell), calc(100% - (var(--page-gutter) * 2)));
  max-width: var(--shell);
  margin: 0 auto;
  min-height: 64px;
  padding: 8px 0;
}

.lp-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.lp-header-actions .lp-btn-primary {
  padding: 9px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 20px rgba(194, 65, 12, 0.2);
  white-space: nowrap;
}

.lp-header-actions .lp-btn-primary:hover {
  background: var(--o2);
  box-shadow: 0 10px 24px rgba(154, 52, 18, 0.28);
}

.lp-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  box-shadow: none;
}

.lp-logo img {
  display: block;
  height: 56px;
  width: auto;
  max-width: min(240px, 48vw);
  background: transparent;
}

.lp-nav {
  display: flex;
  gap: 18px;
  margin: 0;
  margin-left: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.lp-nav a {
  color: #0f172a;
  text-decoration: none;
  font-weight: 650;
  font-size: 14px;
  white-space: nowrap;
  transition: color .15s;
  padding: 0;
  border-radius: 0;
  text-shadow: none;
}

.lp-nav a:hover {
  color: var(--o);
  background: transparent;
}

.lp-header-actions .lp-text-btn {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(15, 23, 42, 0.1);
  backdrop-filter: none;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
}

.lp-header-actions .lp-text-btn:hover {
  background: #fff;
}

.lp-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}

.lp-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.lp-nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  box-sizing: border-box;
  width: min(var(--shell), calc(100% - (var(--page-gutter) * 2)));
  max-width: var(--shell);
  margin: 0 auto;
  padding: 8px 12px 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  border-radius: 0 0 16px 16px;
}

.lp-nav-mobile a {
  padding: 12px 8px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 650;
}

.lp-nav-mobile .lp-btn { width: 100%; margin-top: 8px; }

/* ── Hero banner — premium full-bleed ── */
.lp-hero-banner {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #e8e2db;
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
}

.lp-hero-photo {
  display: block;
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  min-height: min(68vh, 720px);
  max-height: 780px;
  object-fit: cover;
  object-position: 62% 35%;
  border-radius: 0;
  pointer-events: none;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lp-hero-banner::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(48%, 640px);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(247, 245, 242, 0.92) 0%,
    rgba(247, 245, 242, 0.55) 48%,
    rgba(247, 245, 242, 0) 100%
  );
}

.lp-hero-banner-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  box-sizing: border-box;
  width: min(var(--shell), calc(100% - (var(--page-gutter) * 2)));
  max-width: var(--shell);
  margin: 0 auto;
  opacity: 0;
  transform: translateY(18px);
  animation: lp-hero-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
  padding: clamp(96px, 12vh, 140px) 0 100px;
  display: grid;
  grid-template-columns: minmax(280px, 560px) 1fr;
  align-items: center;
  pointer-events: none;
  overflow: visible;
  border-radius: 0;
}

.lp-hero-banner-inner .lp-btn,
.lp-hero-banner-inner button {
  pointer-events: auto;
}

.lp-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  max-width: 540px;
  width: 100%;
  margin: 0;
}

.lp-badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--o);
  border: 1px solid rgba(194, 65, 12, 0.35);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lp-hero-banner .lp-hero-copy h1 {
  margin: 18px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: #12100e;
  max-width: 11em;
  text-shadow: none;
}

.lp-hero-banner .lp-hero-copy h1 em {
  font-style: normal;
  white-space: nowrap;
  color: var(--o);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: var(--o);
  text-shadow: none;
}

.lp-hero-banner .lp-hero-copy > p {
  margin: 0 0 10px;
  color: #4a453e;
  font-size: 17px;
  max-width: 34ch;
  line-height: 1.5;
  font-weight: 500;
  text-shadow: none;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 28px 0 32px;
}

.lp-hero-banner .lp-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 14px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 460px;
}

.lp-hero-socials {
  position: absolute;
  left: 50%;
  bottom: 0;
  top: auto;
  transform: translate(-50%, 50%);
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(720px, calc(100% - (var(--page-gutter) * 2)));
  max-width: 720px;
  margin: 0;
  padding: 12px 22px;
  border-radius: 16px;
  background: rgba(255, 252, 249, 0.96);
  border: 1px solid rgba(18, 16, 14, 0.08);
  box-shadow: 0 18px 40px rgba(18, 16, 14, 0.1);
  box-sizing: border-box;
  pointer-events: none;
  opacity: 0;
  animation: lp-hero-socials-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
}

.lp-hero-socials-label {
  margin: 0;
  flex: 0 0 auto;
  max-width: 130px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #0b1220;
}

.lp-hero-socials-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex: 1;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.lp-hero-socials-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.15;
  color: #64748b;
}

.lp-hero-socials-list img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
  padding: 3px;
  box-sizing: border-box;
}

.lp-hero-socials-more {
  display: none;
}

.lp-link-demo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.lp-play {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.lp-play::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 11px;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #fff;
}

.lp-hero-banner .lp-trust-row li {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 140px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  color: #0f172a;
}

.lp-hero-banner .lp-trust-row li::before {
  display: none;
}

.lp-trust-ico {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--o);
  border: 1px solid rgba(194, 65, 12, 0.18);
  box-shadow: none;
}

.lp-trust-ico svg {
  width: 16px;
  height: 16px;
}

/* Old floating integrations bar removed — socials live in hero copy */

.lp-integrations,
.lp-integrations-bar,
.lp-integrations-label,
.lp-integrations-list,
.lp-integrations-dots {
  display: none;
}

/* ── Album features block ── */
.lp-below {
  padding: 16px 0 8px;
  background: var(--bg);
}

.lp-album {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(400px, 1fr);
  gap: 16px 24px;
  align-items: stretch;
}

.lp-album-main,
.lp-album-features {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
}

.lp-album-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.lp-album-intro h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.2vw, 32px);
  letter-spacing: -0.035em;
  font-weight: 800;
  line-height: 1.15;
}

.lp-album-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  max-width: 36ch;
}

.lp-feat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: 1fr 1fr;
  flex: 1;
  gap: 12px;
}

.lp-feat-grid-solo {
  grid-template-rows: auto;
  width: 100%;
  max-width: none;
  margin: 0;
}

/* Bento: альбомная компоновка — широкий hero + 2×2 снизу */
.lp-feat-bento {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  max-width: none;
  margin: 0;
  align-items: stretch;
}

.lp-feat-bento-hero {
  grid-column: 1 / -1;
  grid-row: auto;
}

.lp-feat-bento-shop,
.lp-feat-bento-prices,
.lp-feat-bento-team,
.lp-feat-bento-analytics {
  grid-column: auto;
  grid-row: auto;
}

.lp-feat-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.85fr);
  gap: 28px 36px;
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 28px 32px;
  border-radius: calc(var(--r) + 8px);
  border: 1px solid var(--glass-border);
  background:
    var(--blend-glow),
    linear-gradient(165deg, rgba(255, 244, 234, 0.92) 0%, rgba(255, 250, 245, 0.86) 62%);
  box-shadow: var(--shadow-hover);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.lp-feat-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--blend);
}

.lp-feat-hero-copy {
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.lp-feat-hero h3 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.03em;
  font-weight: 800;
  line-height: 1.2;
  max-width: none;
}

.lp-feat-hero p {
  margin: 0;
  max-width: 56ch;
  font-size: 15px;
  line-height: 1.55;
  color: #4b5563;
  font-weight: 550;
}

.lp-feat-hero-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.lp-feat-hero-points li {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 252, 248, 0.92);
  border: 1px solid var(--glass-border);
  font-size: 13.5px;
  font-weight: 700;
  color: #1f2937;
  box-shadow: 0 6px 16px rgba(62, 39, 20, 0.06);
}

.lp-feat-hero-points li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--blend);
  vertical-align: middle;
}

.lp-feat-pack > article:not(.lp-feat-hero) {
  gap: 6px 14px;
  padding: 20px 22px;
  background: var(--glass);
  border-color: var(--glass-border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.lp-feat-bento > article:not(.lp-feat-hero) {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "ico tag"
    "ico title"
    "ico body";
  align-content: start;
  align-items: start;
  column-gap: 14px;
  row-gap: 6px;
  min-height: 0;
  border-radius: var(--r);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.lp-feat-bento > article:not(.lp-feat-hero) .lp-feat-tag {
  grid-area: tag;
  align-self: center;
}

.lp-feat-bento > article:not(.lp-feat-hero) .lp-ico {
  grid-area: ico;
  align-self: start;
  margin-top: 2px;
}

.lp-feat-bento > article:not(.lp-feat-hero) h3 {
  grid-area: title;
  margin: 0;
}

.lp-feat-bento > article:not(.lp-feat-hero) p {
  grid-area: body;
  margin: 0;
  max-width: none;
}

.lp-feat-bento > article:not(.lp-feat-hero):hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: var(--blend-line-strong);
}

.lp-feat-bento-team,
.lp-feat-bento-analytics {
  padding: 22px 24px;
}

.lp-feat-bento-team .lp-ico,
.lp-feat-bento-analytics .lp-ico {
  margin-left: 0;
}

.lp-feat-bento-team h3,
.lp-feat-bento-analytics h3 {
  flex: none;
  font-size: 17px;
}

.lp-feat-bento-team p,
.lp-feat-bento-analytics p {
  flex: none;
  max-width: none;
  font-size: 14px;
}

.lp-feat-pack > article:not(.lp-feat-hero)::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--blend);
}

.lp-feat-tag {
  display: inline-flex;
  align-self: start;
  padding: 3px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 90, 0, 0.12), rgba(15, 23, 42, 0.06));
  color: var(--blend-ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lp-feat-pack .lp-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.lp-feat-pack .lp-ico.c-teal,
.lp-feat-pack .lp-ico.c-mint {
  background: #fff1e6;
  color: #ea580c;
}

.lp-feat-pack .lp-ico.c-yellow {
  background: #fff1e6;
  color: #1a2332;
}

.lp-feat-pack .lp-ico.c-purple {
  background: linear-gradient(135deg, #fff1e6, #ffe8d6);
  color: #c2410c;
}

.lp-feat-pack h3 {
  font-size: 15px;
}

.lp-feat-pack p {
  font-size: 13px;
  line-height: 1.5;
  font-weight: 550;
}

.lp-feat-bento-team h3,
.lp-feat-bento-analytics h3 {
  font-size: 17px;
}

.lp-feat-bento-team p,
.lp-feat-bento-analytics p {
  font-size: 14px;
}

.lp-feat-pack > article:not(.lp-feat-hero):hover {
  border-color: var(--blend-line-strong);
  box-shadow: var(--shadow-hover);
}

.lp-feat-grid article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  height: 100%;
  min-height: 0;
  padding: 16px 14px;
  border-radius: var(--r);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.lp-feat-grid article:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 106, 0, 0.18);
}

.lp-ico {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  flex-shrink: 0;
}

.lp-ico svg { width: 18px; height: 18px; }

.lp-ico.c-orange { background: #fff1e6; color: #ea580c; }
.lp-ico.c-green { background: #e8f8ef; color: #16a34a; }
.lp-ico.c-blue { background: #e8f1ff; color: #2563eb; }
.lp-ico.c-purple { background: var(--p-soft); color: var(--p); }
.lp-ico.c-teal { background: #e6f7f5; color: #0d9488; }
.lp-ico.c-pink { background: #fce7f3; color: #db2777; }
.lp-ico.c-mint { background: #ecfdf5; color: #059669; }
.lp-ico.c-yellow { background: #fef9c3; color: #ca8a04; }

.lp-feat-grid h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.lp-feat-grid p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--muted);
}

.lp-album-side {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 14px;
  min-width: 0;
}

.lp-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.lp-stats article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 12px;
  border-radius: var(--r);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-width: 0;
}

.lp-stat-ico {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(255, 106, 0, 0.12);
  color: var(--o);
}

.lp-stat-ico svg { width: 16px; height: 16px; }

.lp-stats strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.lp-stats span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.3;
}

.lp-how-block {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 16px;
  border-radius: calc(var(--r) + 2px);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.lp-how-head { margin-bottom: 14px; }

.lp-how-head h2 {
  margin: 0 0 4px;
  font-size: 20px;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.lp-how-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.lp-how-flow {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  flex: 1;
}

.lp-how-flow > li {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 14px 12px;
  border-radius: var(--r);
  background: var(--soft);
  border: 1px solid rgba(17, 24, 39, 0.04);
}

.lp-how-flow > li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -9px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #d1d5db;
  border-right: 2px solid #d1d5db;
  transform: translateY(-50%) rotate(45deg);
  z-index: 1;
}

.lp-how-num,
.lp-step-num {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--o);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.lp-how-ico {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0 0 10px;
  color: #374151;
}

.lp-how-ico svg { width: 22px; height: 22px; }

.lp-how-flow h3 {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 800;
}

.lp-how-flow p {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
}

/* ── Generic sections ── */
.lp-section {
  padding: 36px 0;
  background: transparent;
}

main {
  background: transparent;
}

/* Карточки поверх продолженного фона баннера — тёплое стекло */
.lp-glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
}

.lp-section-head {
  margin-bottom: 20px;
}

.lp-section-head-center {
  text-align: center;
}

.lp-section-head-center p {
  margin-left: auto;
  margin-right: auto;
}

.lp-section-sub-oneline {
  white-space: normal;
  max-width: 42rem !important;
  text-align: center;
}

.lp-section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}

.lp-section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  max-width: 46ch;
}

/* Why grid */
.lp-why-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.lp-why-grid article {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 16px 20px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}

.lp-why-grid article:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.lp-why-ico {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.lp-why-ico svg {
  width: 22px;
  height: 22px;
}

.lp-why-ico.c-orange { background: linear-gradient(145deg, #fff1e6, #ffe0c2); color: #ea580c; }
.lp-why-ico.c-green { background: linear-gradient(145deg, #ecfdf5, #d1fae5); color: #059669; }
.lp-why-ico.c-purple { background: linear-gradient(145deg, #eef2f6, #e2e8f0); color: #1a2332; }
.lp-why-ico.c-blue { background: linear-gradient(145deg, #eff6ff, #dbeafe); color: #2563eb; }
.lp-why-ico.c-red { background: linear-gradient(145deg, #fef2f2, #fee2e2); color: #dc2626; }
.lp-why-ico.c-yellow { background: linear-gradient(145deg, #fffbeb, #fef3c7); color: #d97706; }

.lp-why-grid h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.lp-why-grid p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

/* Steps */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-steps li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 14px 16px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 210px;
}

.lp-steps-flow > li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 40px;
  right: -18px;
  width: 18px;
  height: 2px;
  background: #94a3b8;
  z-index: 1;
}

.lp-steps-flow > li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 36px;
  right: -14px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #64748b;
  border-top: 2px solid #64748b;
  transform: rotate(45deg);
  z-index: 2;
}

.lp-steps .lp-step-num {
  width: 28px;
  height: 28px;
  margin-bottom: 2px;
  background: #2563eb;
  font-size: 13px;
}

.lp-steps h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.lp-steps p {
  margin: 0;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.4;
}

.lp-step-visual {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
}

.lp-step-visual img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.1);
}

.lp-step-inbox {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #eff6ff;
  color: #2563eb;
  display: grid;
  place-items: center;
}

.lp-step-inbox svg {
  width: 22px;
  height: 22px;
}

.lp-step-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.lp-step-ai {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffd4b8, #ff5a00);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(255, 90, 0, 0.28);
}

.lp-step-post {
  width: 100%;
  max-width: 120px;
  height: 54px;
  border-radius: 10px;
  background: linear-gradient(135deg, #e0f2fe, #fce7f3);
  border: 1px solid var(--line);
  display: grid;
  grid-template-rows: 1fr 14px;
  overflow: hidden;
}

.lp-step-post span:first-child {
  background: linear-gradient(120deg, #93c5fd, #94a3b8);
}

.lp-step-post span:last-child {
  background: #fff;
}

.lp-step-lead {
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
}

.lp-step-avatar {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 11px;
  font-weight: 800;
}

.lp-step-chart {
  width: 100%;
  max-width: 110px;
}

.lp-step-chart svg {
  width: 100%;
  height: 28px;
  display: block;
}

/* Compare */
.lp-compare-section {
  padding-top: 28px;
  padding-bottom: 40px;
}

.lp-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}

.lp-compare-photos .lp-compare-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1024 / 591;
  object-fit: contain;
  object-position: center;
  border-radius: 22px;
  box-shadow: var(--shadow);
  background: transparent;
}

.lp-compare-photos .lp-compare-photo:last-of-type {
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.06),
    0 10px 28px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(15, 23, 42, 0.06);
}

.lp-compare-arrow {
  align-self: center;
  width: 64px;
  height: 64px;
  border-radius: 0;
  display: grid;
  place-items: center;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.lp-compare-arrow img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 22px rgba(255, 90, 0, 0.28));
}

/* legacy compare cards kept for other pages if needed */
.lp-compare-before,
.lp-compare-after {
  display: none;
}

/* Duo landscape pairs */
.lp-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.lp-duo-alive {
  gap: 18px;
}

.lp-duo,
.lp-feat-grid,
.lp-feat-grid-solo,
.lp-feat-bento,
.lp-feat-hero,
.lp-compare,
.lp-faq,
.lp-pricing-row,
.lp-pricing-cta,
.lp-marquee {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.lp-card {
  border-radius: calc(var(--r) + 6px);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 22px;
}

.lp-chip {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--p-soft);
  color: var(--p);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* AI card */
.lp-ai-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: center;
}

.lp-ai-mock {
  padding: 14px;
  border-radius: calc(var(--r) + 2px);
  background: linear-gradient(160deg, #fff8f3, var(--p-soft));
  border: 1px solid rgba(255, 90, 0, 0.14);
}

.lp-chat { display: grid; gap: 8px; }

.lp-chat-bubble {
  max-width: 92%;
  padding: 10px 12px;
  border-radius: var(--r);
  font-size: 12.5px;
  line-height: 1.4;
  font-weight: 600;
}

.lp-chat-bubble.in {
  background: var(--card);
  color: var(--ink);
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.lp-chat-bubble.out {
  margin-left: auto;
  background: linear-gradient(135deg, var(--p), var(--p2));
  color: #fff;
}

.lp-ai-copy h2,
.lp-time-card h2,
.lp-integ-card h2,
.lp-for-card h2,
.lp-facts-card h2,
.lp-voices-card h2 {
  margin: 8px 0 10px;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -0.03em;
  font-weight: 800;
}

.lp-ai-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.lp-ai-copy li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  font-weight: 650;
  color: #374151;
}

.lp-ai-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--p-soft);
  box-shadow: inset 0 0 0 4px var(--p);
}

/* Time card */
.lp-time-card {
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 90, 0, 0.12), transparent 45%),
    var(--card);
}

.lp-time-lead {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.lp-time-stats {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.lp-time-stats div {
  padding: 12px 14px;
  border-radius: var(--r);
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.lp-time-stats strong {
  display: block;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.lp-time-stats span {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 600;
}

.lp-time-banner {
  margin: auto 0 0;
  padding: 12px 14px;
  border-radius: var(--r);
  background: linear-gradient(135deg, var(--p), var(--p2));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

/* Integrations + audience */
.lp-block-eyebrow {
  display: inline-flex;
  margin-bottom: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 90, 0, 0.12), rgba(15, 23, 42, 0.06));
  color: var(--blend-ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lp-integ-card,
.lp-for-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  background:
    var(--blend-glow),
    var(--glass);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
}

.lp-integ-card::before,
.lp-for-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--blend);
  opacity: 0.95;
}

.lp-integ-card h2,
.lp-for-card h2 {
  margin: 4px 0 8px;
}

.lp-integ-card p,
.lp-for-card > p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.lp-integ-groups {
  display: grid;
  gap: 10px;
}

.lp-integ-label {
  margin: 4px 0 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blend-ink);
}

.lp-block-full {
  width: 100%;
}

.lp-integ-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-integ-grid-services {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.lp-integ-tile.t-ai {
  grid-column: auto;
  background: linear-gradient(135deg, #fff7ed, #fff1e6);
  border-color: var(--blend-line-strong);
}

.lp-for-grid.lp-for-audience {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.lp-integ-tile {
  display: grid;
  place-items: center;
  gap: 7px;
  min-height: 84px;
  padding: 12px 8px;
  border-radius: 14px;
  background: rgba(255, 250, 245, 0.88);
  border: 1px solid var(--glass-border);
  box-shadow: 0 6px 16px rgba(62, 39, 20, 0.06);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  color: #1f2937;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.lp-integ-tile:hover {
  transform: translateY(-2px);
  border-color: var(--blend-line-strong);
  box-shadow: 0 12px 24px rgba(10, 15, 26, 0.08);
}

.lp-integ-tile img {
  width: 30px;
  height: 30px;
  border-radius: 9px;
}

.lp-integ-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
}

.lp-integ-tile.t-drom .lp-integ-mark { background: linear-gradient(135deg, #f97316, #ea580c); }
.lp-integ-tile.t-drive .lp-integ-mark { background: linear-gradient(135deg, #fb923c, #ff5a00); }
.lp-integ-tile.t-ms .lp-integ-mark { background: linear-gradient(135deg, #94a3b8, #1a2332); }
.lp-integ-tile.t-yd .lp-integ-mark { background: linear-gradient(135deg, #fdba74, #ea580c); }
.lp-integ-tile.t-ai {
  grid-column: auto;
  background: linear-gradient(135deg, #fff7ed, #fff1e6);
  border-color: var(--blend-line-strong);
}
.lp-integ-tile.t-ai .lp-integ-mark {
  background: var(--blend);
}

.lp-integ-text {
  font-size: 12px;
  font-weight: 800;
  color: #374151;
}

.lp-for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.lp-for-grid.lp-for-audience {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.lp-for-grid div,
.lp-for-item {
  padding: 14px 12px;
  border-radius: var(--r);
  background: var(--glass);
  border: 1px solid var(--glass-border);
}

.lp-for-item {
  display: grid;
  gap: 6px;
  padding: 16px 16px 16px 18px;
  border: 1px solid var(--glass-border);
  background: var(--glass-strong);
  box-shadow: 0 8px 20px rgba(62, 39, 20, 0.08);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.lp-for-item.a-shop { border-left: 4px solid #ff5a00; }
.lp-for-item.a-service { border-left: 4px solid #0f766e; }
.lp-for-item.a-promo { border-left: 4px solid #1a2332; }

.lp-for-item:hover {
  transform: translateY(-2px);
  border-color: var(--blend-line-strong);
  box-shadow: 0 14px 28px rgba(10, 15, 26, 0.08);
}

.lp-for-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 2px;
}

.lp-for-num {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 90, 0, 0.4);
}

.lp-for-tag {
  display: inline-flex;
  align-self: start;
  margin-bottom: 0;
  padding: 4px 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 90, 0, 0.12), rgba(15, 23, 42, 0.06));
  color: var(--blend-ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lp-for-item.a-shop .lp-for-tag {
  background: rgba(255, 106, 0, 0.12);
  color: #c2410c;
}
.lp-for-item.a-shop .lp-for-num { color: rgba(194, 65, 12, 0.5); }

.lp-for-item.a-service .lp-for-tag {
  background: rgba(15, 118, 110, 0.12);
  color: #0f766e;
}
.lp-for-item.a-service .lp-for-num { color: rgba(15, 118, 110, 0.5); }

.lp-for-item.a-promo .lp-for-tag {
  background: rgba(15, 23, 42, 0.08);
  color: #1a2332;
}
.lp-for-item.a-promo .lp-for-num { color: rgba(26, 35, 50, 0.45); }

.lp-for-grid strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.lp-for-item strong {
  margin-bottom: 0;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.lp-for-grid span {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 600;
}

.lp-for-item > span:not(.lp-for-tag):not(.lp-for-num) {
  line-height: 1.5;
  font-weight: 550;
}

/* Reviews marquee */
.lp-reviews {
  padding-top: 12px;
  padding-bottom: 8px;
  overflow-x: clip;
}

.lp-reviews > .lp-shell {
  overflow: hidden;
}

.lp-marquee {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-top: 8px;
  overflow: hidden;
  border-radius: calc(var(--r) + 4px);
  contain: paint;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.lp-marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  padding: 8px 0 18px;
  animation: lp-marquee 48s linear infinite;
}

.lp-marquee:hover .lp-marquee-track {
  animation-play-state: paused;
}

.lp-review-card {
  flex: 0 0 320px;
  max-width: 320px;
  display: grid;
  gap: 12px;
  padding: 18px 18px 16px;
  border-radius: calc(var(--r) + 4px);
  background: var(--glass-strong);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
  position: relative;
  overflow: hidden;
}

.lp-review-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--blend);
}

.lp-review-stars {
  font-size: 13px;
  letter-spacing: 0.08em;
  background: var(--blend);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.lp-review-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #374151;
  font-weight: 600;
}

.lp-review-card footer {
  display: grid;
  gap: 2px;
  margin-top: auto;
}

.lp-review-card footer strong {
  font-size: 13.5px;
  letter-spacing: -0.01em;
}

.lp-review-card footer span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

@keyframes lp-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Facts + voices */
.lp-facts-card {
  background: linear-gradient(145deg, #0f1623 0%, var(--p) 48%, #334155 100%);
  color: #fff;
  border: 0;
}

.lp-facts-card h2 { color: #fff; }

.lp-facts-card > p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.lp-facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lp-facts-grid div {
  padding: 14px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.lp-facts-grid strong {
  display: block;
  font-size: clamp(22px, 2.8vw, 28px);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.lp-facts-grid span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

.lp-voices {
  display: grid;
  gap: 10px;
}

.lp-voices blockquote {
  margin: 0;
  padding: 14px;
  border-radius: var(--r);
  background: var(--soft);
  border: 1px solid var(--line);
}

.lp-voices p {
  margin: 0 0 8px;
  font-size: 13.5px;
  line-height: 1.45;
  color: #374151;
  font-weight: 600;
}

.lp-voices footer {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

/* FAQ */
.lp-faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.lp-faq details {
  border-radius: var(--r);
  background: var(--glass-strong);
  border: 1px solid var(--glass-border);
  padding: 4px 14px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
}

.lp-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 28px 14px 0;
  font-weight: 750;
  font-size: 14.5px;
  position: relative;
}

.lp-faq summary::-webkit-details-marker { display: none; }

.lp-faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 12px;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.14), rgba(255, 90, 0, 0.14));
  color: var(--blend-ink);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.lp-faq details[open] {
  border-color: var(--blend-line-strong);
}

.lp-faq details[open] summary::after { content: "–"; }

.lp-faq details p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}

/* Pricing */
.lp-pricing { padding-bottom: 48px; }

.lp-pricing-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.lp-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 18px;
  border-radius: calc(var(--r) + 6px);
  background: var(--glass-strong);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  overflow: hidden;
}

.lp-price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--blend);
  opacity: 0.75;
}

.lp-price-card.hot {
  border-color: var(--blend-line-strong);
  box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.12), var(--shadow);
}

.lp-price-card.hot::before {
  opacity: 1;
}

.lp-price-card em {
  position: absolute;
  top: 14px;
  right: 14px;
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.14), rgba(255, 90, 0, 0.14));
  color: var(--blend-ink);
}

.lp-price-card h3 { margin: 0; font-size: 18px; }
.lp-price-card .price { margin: 0; }

.lp-price-card .price b {
  font-size: 28px;
  letter-spacing: -0.03em;
}

.lp-price-card .price small {
  color: var(--muted);
  font-weight: 650;
}

.lp-price-lead {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.lp-price-card ul {
  margin: 4px 0 12px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
  flex: 1;
}

.lp-price-card li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: #374151;
  font-weight: 600;
}

.lp-price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1a2332;
  font-weight: 800;
}

.lp-price-card .lp-btn { width: 100%; margin-top: auto; }

.lp-pricing-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 22px 10px;
  border-radius: calc(var(--r) + 6px);
  background:
    var(--blend-glow),
    var(--glass-strong);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  position: relative;
  overflow: hidden;
}

.lp-pricing-cta::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--blend);
}

.lp-pricing-cta h3 {
  margin: 0 0 6px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.lp-pricing-cta > div > p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.lp-pricing-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 440px;
}

.lp-pricing-form input {
  flex: 1 1 180px;
  min-width: 0;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font: inherit;
}

.lp-pricing-form input:focus {
  outline: none;
  border-color: rgba(255, 106, 0, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.12);
}

.lp-pricing-note {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.lp-pricing-plant img {
  display: block;
  width: 150px;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(17, 24, 39, 0.12));
}

/* Footer — dark with brand subscribe */
.lp-footer {
  margin-top: 72px;
  padding: 72px 0 28px;
  background: #0a0908;
  color: #e8e4df;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 2;
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.8fr) 1.2fr;
  gap: 22px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-footer h4 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-footer a {
  display: block;
  margin-bottom: 8px;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
}

.lp-footer a:hover { color: #fff; }

.lp-footer-brand p {
  margin: 12px 0 14px;
  max-width: 280px;
  font-size: 14px;
  line-height: 1.5;
  color: #94a3b8;
}

.lp-footer-brand img,
.lp-footer-logo {
  display: block;
  height: 56px;
  width: auto;
  max-width: 240px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-sizing: content-box;
}

.lp-social { display: flex; gap: 8px; }

.lp-social a {
  display: inline-grid !important;
  place-items: center;
  width: auto;
  min-width: 40px;
  height: 36px;
  padding: 0 10px !important;
  margin: 0 !important;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff !important;
  font-size: 12px;
  font-weight: 800;
}

.lp-news-form {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.lp-news-form input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
}

.lp-news-form input::placeholder { color: #94a3b8; }

.lp-news-form button {
  border: 0;
  border-radius: 10px;
  padding: 0 14px;
  background: linear-gradient(135deg, var(--p), var(--p2));
  color: #fff;
  font: inherit;
  font-weight: 750;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}

.lp-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 18px;
  font-size: 13px;
  color: #94a3b8;
}

.lp-footer-bottom a {
  display: inline;
  margin: 0 0 0 14px;
  color: #94a3b8;
}

/* Auth modal */
body.lp-auth-open { overflow: hidden; }

.lp-auth[hidden] { display: none !important; }

.lp-auth {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: max(24px, 4vh) 16px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.lp-auth-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: rgba(17, 24, 39, 0.62);
}

.lp-auth-card {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  margin: auto 0;
  padding: 28px 24px;
  border-radius: calc(var(--r) + 6px);
  background: var(--card);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  display: grid;
  gap: 12px;
}

.lp-auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 4px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.06);
}

.lp-auth-tab {
  border: 0;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.lp-auth-tab.is-active {
  color: #111827;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12);
}

.lp-auth-x {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
  color: var(--muted);
}

.lp-auth-brand {
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--o);
  font-size: 12px;
}

.lp-auth-card h2 { margin: 0; font-size: 28px; }

.lp-auth-hint { margin: 0; color: var(--muted); font-size: 14px; }

#lpAuthRegisterFields { display: grid; gap: 10px; }
#lpAuthRegisterFields[hidden] { display: none !important; }

.lp-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.lp-auth-card label { display: grid; gap: 6px; font-size: 14px; }

.lp-auth-card input,
.lp-auth-card select {
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font: inherit;
}

.lp-auth-card input:focus,
.lp-auth-card select:focus {
  outline: none;
  border-color: rgba(255, 90, 0, 0.4);
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1);
}

.lp-check {
  display: flex !important;
  align-items: flex-start;
  gap: 8px;
  grid-template-columns: none !important;
}

.lp-check input { margin-top: 3px; }

.lp-check a { color: var(--p); }

.lp-auth-err {
  padding: 10px 12px;
  border-radius: 10px;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 13px;
}

/* Reveal animations — modern SaaS scroll motion */
@keyframes lp-hero-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lp-hero-socials-in {
  from {
    opacity: 0;
    transform: translate(-50%, 62%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 50%);
  }
}

.lp-reveal {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  filter: blur(2px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.lp-reveal[data-anim="up"] {
  transform: translate3d(0, 40px, 0);
}

.lp-reveal[data-anim="left"] {
  transform: translate3d(-36px, 24px, 0);
}

.lp-reveal[data-anim="right"] {
  transform: translate3d(36px, 24px, 0);
}

.lp-reveal[data-anim="scale"] {
  transform: translate3d(0, 28px, 0) scale(0.96);
}

.lp-reveal[data-anim="fade"] {
  transform: translate3d(0, 16px, 0);
  filter: blur(6px);
}

.lp-reveal.is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: none;
}

/* Children no longer hide behind parent section reveals */

@media (prefers-reduced-motion: reduce) {
  .lp-hero-banner-inner,
  .lp-hero-socials {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .lp-hero-socials {
    transform: translate(-50%, 50%);
  }

  .lp-reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .lp-nav { display: none; }
  .lp-burger { display: inline-flex; }

  .lp-logo img {
    height: 58px;
    max-width: min(240px, 54vw);
  }

  .lp-header-row {
    min-height: 78px;
    gap: 12px;
    padding: 6px 8px 0;
  }

  .lp-album {
    grid-template-columns: 1fr;
  }

  .lp-album-intro {
    flex-direction: column;
  }

  .lp-feat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .lp-why-grid,
  .lp-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-section-sub-oneline {
    white-space: normal;
  }

  .lp-steps-flow > li:not(:last-child)::before,
  .lp-steps-flow > li:not(:last-child)::after {
    display: none;
  }

  .lp-steps li {
    min-height: 0;
  }

  .lp-duo,
  .lp-ai-card,
  .lp-compare {
    grid-template-columns: 1fr;
  }

  .lp-feat-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-feat-hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .lp-feat-bento-hero {
    grid-column: 1 / -1;
  }

  .lp-feat-bento-shop,
  .lp-feat-bento-prices,
  .lp-feat-bento-team,
  .lp-feat-bento-analytics {
    grid-column: auto;
  }

  .lp-compare-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .lp-how-flow > li:not(:last-child)::after {
    display: none;
  }

  .lp-how-flow {
    grid-template-columns: 1fr;
  }

  .lp-pricing-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1100px) {
  .lp-integ-grid,
  .lp-integ-grid-services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp-for-grid.lp-for-audience {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .lp-shell { width: min(var(--shell), calc(100% - (var(--page-gutter) * 2))); }

  .lp-feat-bento {
    grid-template-columns: 1fr;
  }

  .lp-review-card {
    flex-basis: min(300px, 82vw);
    max-width: min(300px, 82vw);
  }

  .lp-header-actions .lp-btn-primary { display: none; }

  .lp-nav-mobile:not([hidden]) { display: flex; }

  .lp-hero-wrap { padding-bottom: 56px; }

  .lp-hero-banner,
  .lp-hero-photo,
  .lp-hero-banner::after,
  .lp-hero-banner-inner {
    border-radius: 0;
  }

  .lp-hero-photo {
    min-height: 520px;
    max-height: 620px;
    object-position: 70% 30%;
  }

  .lp-hero-banner-inner {
    width: calc(100% - 32px);
    padding: 88px 0 96px;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .lp-hero-banner .lp-hero-copy h1 {
    font-size: 30px;
  }

  .lp-hero-banner .lp-hero-copy h1 { max-width: none; font-size: 28px; }

  .lp-hero-socials {
    left: 50%;
    right: auto;
    width: calc(100% - 28px);
    max-width: none;
    bottom: 0;
    top: auto;
    transform: translate(-50%, 50%);
    padding: 12px 14px;
    border-radius: 18px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .lp-hero-socials-label {
    max-width: none;
    width: 100%;
  }

  .lp-hero-socials-list {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px 14px;
    width: 100%;
  }

  .lp-hero-socials-list li {
    flex: 0 0 auto;
  }

  .lp-feat-grid,
  .lp-why-grid,
  .lp-steps,
  .lp-faq,
  .lp-pricing-row,
  .lp-facts-grid,
  .lp-integ-grid,
  .lp-integ-grid-services,
  .lp-stats {
    grid-template-columns: 1fr 1fr;
  }

  .lp-for-grid,
  .lp-for-grid.lp-for-audience {
    grid-template-columns: 1fr;
  }

  .lp-integ-tile.t-ai {
    grid-column: auto;
  }

  .lp-pricing-cta {
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 16px;
  }

  .lp-pricing-plant { align-self: end; }

  .lp-footer-grid { grid-template-columns: 1fr; }

  .lp-footer-bottom a {
    display: block;
    margin: 0 0 6px;
  }

  .lp-2col { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lp-btn { transition: none; }
  .lp-marquee-track {
    animation: none;
    padding-inline: 16px;
    overflow-x: auto;
    max-width: 100vw;
  }
  .lp-marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }
  .lp-review-card[aria-hidden="true"] {
    display: none;
  }
}


/* ── Premium polish layer ── */
h1, h2, h3, .lp-logo {
  font-family: var(--font-display);
}

.lp-btn {
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.lp-btn-lg {
  padding: 14px 22px;
  font-size: 15px;
  border-radius: 12px;
}

.lp-header-actions .lp-btn-primary {
  border-radius: 10px;
  background: var(--o);
  box-shadow: 0 8px 20px rgba(194, 65, 12, 0.2);
}

.lp-nav a {
  font-weight: 600;
  color: #2a2622;
}

.lp-section {
  padding: 72px 0;
}

.lp-card,
.lp-feat-bento > article,
.lp-for-item,
.lp-price-card,
.lp-review-card,
.lp-integ-card {
  border-radius: 14px !important;
  border-color: rgba(18, 16, 14, 0.08) !important;
  box-shadow: 0 10px 28px rgba(18, 16, 14, 0.05) !important;
}

.lp-feat-tag,
.lp-for-tag {
  border-radius: 8px !important;
  background: var(--accent-soft) !important;
  color: var(--o) !important;
}

.lp-compare-photo {
  border-radius: 14px !important;
  box-shadow: 0 16px 40px rgba(18, 16, 14, 0.1) !important;
}

.lp-footer-bottom {
  margin-top: 28px;
  padding-top: 22px;
  color: #9a9288;
}

.lp-news-form button {
  background: var(--o);
  color: #fff;
}

.lp-ico.c-purple {
  background: rgba(194, 65, 12, 0.1) !important;
  color: var(--o) !important;
}
