/* Landing — палитра как в client-dashboard (арендованная админка) */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

body.landing {
  --lp-accent: #bceb4c;
  --lp-accent-hover: #a8d93f;
  --lp-text: #000;
  --lp-text-muted: #5a5a5a;
  --lp-bg: #fff;
  --lp-surface: #f9f9f9;
  --lp-surface-hover: #f0f0f0;
  --lp-dark: #000;
  --lp-dark-2: #1a1a1a;
  --lp-white: #fff;
  --lp-muted-on-dark: rgba(255, 255, 255, 0.72);
  --lp-border: rgba(0, 0, 0, 0.08);
  --lp-radius: 12px;
  --lp-radius-sm: 12px;
  --lp-radius-pill: 999px;
  --lp-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  --lp-font: 'Manrope', system-ui, -apple-system, sans-serif;
  --lp-container: 1200px;
  /* алиасы для совместимости */
  --lp-lime: var(--lp-accent);
  --lp-lime-hover: var(--lp-accent-hover);
  --lp-muted: var(--lp-muted-on-dark);
  margin: 0;
  font-family: var(--lp-font);
  background: var(--lp-bg);
  color: var(--lp-text);
  line-height: 1.5;
  overflow-x: hidden;
}

body.landing a { text-decoration: none; color: inherit; }
body.landing a.lp-btn-lime { color: var(--lp-text); }
body.landing img { max-width: 100%; height: auto; display: block; }
body.landing button { font-family: inherit; cursor: pointer; }

.lp-container {
  width: min(100% - 2.5rem, var(--lp-container));
  margin-inline: auto;
}

/* Hero shell — единый фон (фото) для навбара и hero */
.lp-hero-shell {
  position: relative;
  overflow: hidden;
}

.lp-hero-shell__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000 url('../img/landing/hero-bg.jpg') center / cover no-repeat;
}

.lp-hero-shell__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  pointer-events: none;
}

/* Текст и навбар поверх затемнённого фото */
.lp-hero-shell .lp-header:not(.is-scrolled) .lp-logo,
.lp-hero-shell .lp-header:not(.is-scrolled) .lp-nav a {
  color: var(--lp-white);
}
.lp-hero-shell .lp-header:not(.is-scrolled) .lp-nav a:hover {
  color: var(--lp-white);
  opacity: 1;
}
.lp-hero-shell .lp-header:not(.is-scrolled) .lp-header-login {
  color: var(--lp-white);
  background: rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 255, 255, 0.22);
}
.lp-hero-shell .lp-header:not(.is-scrolled) .lp-header-login:hover {
  border-color: var(--lp-accent);
  color: var(--lp-white);
  background: rgba(0, 0, 0, 0.55);
}
.lp-hero-shell .lp-header:not(.is-scrolled) .lp-burger {
  background: rgba(255, 255, 255, 0.12);
  color: var(--lp-white);
}

.lp-hero-shell .lp-hero {
  color: var(--lp-white);
}
.lp-hero-shell .lp-hero h1 {
  color: var(--lp-white);
}
.lp-hero-shell .lp-hero-eyebrow {
  color: rgba(255, 255, 255, 0.72);
}
.lp-hero-shell .lp-hero-lead {
  color: rgba(255, 255, 255, 0.82);
}
.lp-hero-shell .lp-hero .lp-btn-outline {
  color: var(--lp-white);
  border-color: rgba(255, 255, 255, 0.4);
}
.lp-hero-shell .lp-hero .lp-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--lp-white);
}
.lp-hero-shell .lp-hero .lp-btn-lime {
  color: var(--lp-text);
}

/* Header */
.lp-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1rem 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s, box-shadow 0.25s, padding 0.25s, border-color 0.25s, backdrop-filter 0.25s;
}
.lp-header.is-scrolled {
  position: fixed;
  z-index: 280;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--lp-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  padding: 0.65rem 0;
}
.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.lp-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--lp-text);
  letter-spacing: -0.02em;
}
.lp-logo-img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  flex-shrink: 0;
}
.lp-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.lp-nav a {
  color: var(--lp-text);
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.lp-nav a:hover { opacity: 1; color: var(--lp-text); }
.lp-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
/* Как .store-account-link на витрине ресторана */
.lp-header-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  border-radius: 999px;
  color: var(--lp-text);
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.lp-header-login:hover {
  border-color: var(--lp-accent);
  color: var(--lp-accent);
}
.lp-header-login-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.35rem;
  border-radius: var(--lp-radius-pill);
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.15s, background 0.2s, color 0.2s;
}
.lp-btn:active { transform: scale(0.98); }
.lp-btn-lime {
  background: var(--lp-accent);
  color: var(--lp-text);
}
.lp-btn-lime:hover { background: var(--lp-accent-hover); }
.lp-btn-outline {
  background: transparent;
  color: var(--lp-text);
  border: 1.5px solid rgba(0, 0, 0, 0.15);
}
.lp-btn-outline:hover {
  border-color: rgba(0, 0, 0, 0.3);
  background: var(--lp-surface);
}
.lp-btn-dark {
  background: var(--lp-dark);
  color: var(--lp-white);
}
.lp-btn-dark:hover { background: var(--lp-dark-2); }
.lp-btn-white {
  background: var(--lp-white);
  color: var(--lp-dark);
}
.lp-btn-lg {
  padding: 0.95rem 1.75rem;
  font-size: 1rem;
}
.lp-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: var(--lp-surface);
  color: var(--lp-text);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.lp-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.lp-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-burger.is-open span:nth-child(2) { opacity: 0; }
.lp-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.lp-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 290;
  background: var(--lp-white);
  padding: max(1rem, env(safe-area-inset-top)) 1.5rem max(1.5rem, env(safe-area-inset-bottom));
  padding-left: max(1.5rem, env(safe-area-inset-left));
  padding-right: max(1.5rem, env(safe-area-inset-right));
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.08);
}
.lp-mobile-nav.is-open { transform: translateX(0); }
.lp-mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}
.lp-mobile-nav__title {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--lp-text);
}
.lp-mobile-nav__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 12px;
  background: var(--lp-surface);
  color: var(--lp-text);
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.lp-mobile-nav__close:hover {
  background: var(--lp-surface-hover);
  color: var(--lp-text);
}
.lp-mobile-nav__links {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.lp-mobile-nav__links a {
  color: var(--lp-text);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--lp-border);
}
.lp-mobile-nav__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--lp-border);
  flex-shrink: 0;
}
.lp-mobile-nav__btn {
  width: 100%;
  justify-content: center;
}

/* Hero */
.lp-hero {
  position: relative;
  z-index: 1;
  background: transparent;
  color: var(--lp-text);
  padding: 6.5rem 0 4rem;
  min-height: min(92vh, 900px);
  display: flex;
  align-items: center;
}
.lp-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.lp-hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lp-text-muted);
  margin-bottom: 1rem;
}
.lp-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 1.25rem;
  letter-spacing: -0.03em;
}
.lp-hero-lead {
  font-size: 1.1rem;
  color: var(--lp-text-muted);
  max-width: 520px;
  margin: 0 0 2rem;
  line-height: 1.6;
}
.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.lp-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.lp-phone-mockup {
  width: min(100%, 320px);
  aspect-ratio: 9/18.6;
  border-radius: 36px;
  background: linear-gradient(180deg, #2a2a2a 0%, #000 100%);
  /* border: 3px solid rgba(0, 0, 0, 0.12); */
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.18);
  padding: 12px;
  position: relative;
}
.lp-phone-screen {
  border-radius: 28px;
  background: linear-gradient(180deg, #fff 0%, var(--lp-surface) 100%);
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.lp-phone-header {
  background: var(--lp-text);
  color: var(--lp-white);
  padding: 1rem;
  font-weight: 700;
  font-size: 0.85rem;
}
.lp-phone-cards {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.lp-phone-card {
  background: var(--lp-white);
  border-radius: 12px;
  padding: 0.65rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.lp-phone-card-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-hover));
  flex-shrink: 0;
}
.lp-phone-card-text {
  font-size: 0.65rem;
  color: var(--lp-text);
  font-weight: 600;
  line-height: 1.3;
}
.lp-phone-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Слайдер в мокапе телефона */
.lp-phone-screen--slider {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #0d0d0d;
}
.lp-phone-slider-viewport {
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.lp-phone-slider-track {
  display: flex;
  height: 100%;
  gap: 0.35rem;
  transition: transform 0.45s ease;
  will-change: transform;
}
.lp-phone-slide {
  flex: 0 0 calc((100% - (var(--lp-phone-slides-per-view, 1) - 1) * 0.35rem) / var(--lp-phone-slides-per-view, 1));
  min-width: 0;
  height: 100%;
}
.lp-phone-screen--slider .lp-phone-screen-img {
  border-radius: 0;
}

/* Stats */
.lp-stats {
  margin-top: -3rem;
  position: relative;
  z-index: 2;
  padding-bottom: 3rem;
}
.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.lp-stat-card {
  background: var(--lp-white);
  border-radius: var(--lp-radius);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--lp-shadow);
}
.lp-stat-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}
.lp-stat-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--lp-text-muted);
  line-height: 1.45;
}
.lp-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--lp-accent) 35%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--lp-text);
  font-size: 1.25rem;
}
.lp-stat-icon .badge-icon-svg {
  display: block;
}

/* Cities marquee */
.lp-cities {
  background: var(--lp-white);
  padding: 2.5rem 0;
  overflow: hidden;
}
.lp-cities-title {
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 1.5rem;
  color: var(--lp-text);
}
.lp-marquee {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  width: 100%;
}
.lp-marquee-track {
  display: flex;
  gap: 2.5rem;
  animation: lp-marquee 40s linear infinite;
  flex-shrink: 0;
  padding-right: 2.5rem;
}
@keyframes lp-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
.lp-marquee span {
  white-space: nowrap;
  font-weight: 600;
  font-size: 1rem;
  color: var(--lp-text);
}

/* Section common */
.lp-section {
  padding: 5rem 0;
}
.lp-section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lp-text-muted);
  margin-bottom: 0.75rem;
}
.lp-section h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.lp-section-lead {
  font-size: 1.05rem;
  color: var(--lp-text-muted);
  max-width: 640px;
  margin: 0 0 2.5rem;
  line-height: 1.6;
}
.lp-section--dark {
  background: var(--lp-dark);
  color: var(--lp-white);
}
.lp-section--dark .lp-section-label { color: var(--lp-accent); }
.lp-section--dark .lp-section-lead { color: var(--lp-muted-on-dark); }
.lp-section--dark h2 { color: var(--lp-white); }

/* Features grid */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.lp-feature-card {
  background: var(--lp-white);
  border-radius: var(--lp-radius);
  padding: 1.75rem;
  border: 1px solid var(--lp-border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.lp-feature-card:hover {
  box-shadow: var(--lp-shadow);
  transform: translateY(-2px);
}
.lp-feature-card--wide { grid-column: span 2; }
.lp-feature-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 700;
}
.lp-feature-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--lp-text-muted);
  line-height: 1.5;
}
.lp-feature-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lp-text);
  background: color-mix(in srgb, var(--lp-accent) 40%, transparent);
  padding: 0.35rem 0.65rem;
  border-radius: var(--lp-radius-pill);
  margin-bottom: 0.85rem;
}

/* Split block */
.lp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.lp-split-visual {
  border-radius: var(--lp-radius);
  background: linear-gradient(135deg, color-mix(in srgb, var(--lp-accent) 35%, #fff), var(--lp-surface));
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lp-delivery-visual {
  background: linear-gradient(160deg, color-mix(in srgb, var(--lp-accent) 45%, #fff) 0%, var(--lp-surface) 100%);
  border-radius: var(--lp-radius);
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.lp-delivery-visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.lp-delivery-badge {
  position: relative;
  z-index: 1;
  background: var(--lp-text);
  color: var(--lp-accent);
  padding: 1rem 1.5rem;
  border-radius: var(--lp-radius-sm);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Steps */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.lp-step {
  display: flex;
  align-items: stretch;
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  overflow: hidden;
  min-height: 168px;
}
.lp-section--dark .lp-step {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}
.lp-step-media {
  flex: 0 0 42%;
  min-width: 0;
  background: var(--lp-surface);
}
.lp-step-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 168px;
  object-fit: cover;
}
.lp-step-media-placeholder {
  width: 100%;
  height: 100%;
  min-height: 168px;
  background: linear-gradient(
    160deg,
    color-mix(in srgb, var(--lp-accent) 35%, #fff) 0%,
    var(--lp-surface) 100%
  );
}
.lp-step-body {
  flex: 1;
  min-width: 0;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lp-design-cta {
  margin-top: 2rem;
  text-align: center;
}
.lp-step-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--lp-text);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.lp-section--dark .lp-step-num {
  color: var(--lp-accent);
  opacity: 0.65;
}
.lp-step h4 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
}
.lp-step p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--lp-text-muted);
  line-height: 1.45;
}
.lp-section--dark .lp-step p {
  color: var(--lp-muted-on-dark);
}

/* Integrations logos */
.lp-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.lp-logo-pill {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-pill);
  padding: 0.65rem 1.25rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--lp-text);
}

/* Support grid */
.lp-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.lp-support-item {
  background: var(--lp-white);
  border-radius: var(--lp-radius-sm);
  padding: 1.25rem;
  border: 1px solid var(--lp-border);
}
.lp-support-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
.lp-support-item span {
  font-size: 0.85rem;
  color: var(--lp-text-muted);
}

/* Marketing cards */
.lp-marketing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.lp-marketing-card {
  background: linear-gradient(160deg, var(--lp-dark) 0%, var(--lp-dark-2) 100%);
  color: var(--lp-white);
  border-radius: var(--lp-radius);
  padding: 1.5rem;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.75rem;
}
.lp-marketing-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--lp-accent) 22%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-accent);
  flex-shrink: 0;
}
.lp-marketing-card-icon .badge-icon-svg {
  display: block;
}
.lp-marketing-cta {
  margin-top: 2rem;
  text-align: center;
}
.lp-marketing-card h4 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
}
.lp-marketing-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--lp-muted-on-dark);
}

/* Pricing */
.lp-pricing-toggle {
  display: inline-flex;
  background: var(--lp-surface);
  border-radius: var(--lp-radius-pill);
  padding: 4px;
  margin-bottom: 2.5rem;
}
.lp-pricing-toggle button {
  border: none;
  background: transparent;
  padding: 0.6rem 1.25rem;
  border-radius: var(--lp-radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--lp-text-muted);
  transition: background 0.2s, color 0.2s;
}
.lp-pricing-toggle button.is-active {
  background: var(--lp-accent);
  color: var(--lp-text);
}
.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.lp-pricing-grid--plans {
  grid-template-columns: repeat(3, 1fr);
}
.lp-pricing-trial {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.9rem;
}
.lp-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--lp-white);
  border-radius: var(--lp-radius);
  padding: 2rem;
  border: 2px solid var(--lp-border);
}
.lp-price-card.is-featured {
  border-color: var(--lp-accent);
}
.lp-price-discount-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--lp-accent);
  color: var(--lp-text);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  border-radius: var(--lp-radius-pill);
}
.lp-price-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--lp-text-muted);
}
.lp-price-value {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}
.lp-price-value span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--lp-text-muted);
}
.lp-price-value--old {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--lp-text-muted);
  text-decoration: line-through;
  margin-bottom: 0;
}
.lp-price-value--muted {
  color: var(--lp-text-muted);
}
.lp-price-total-note {
  font-size: 0.85rem;
  color: var(--lp-text-muted);
  margin: 0 0 0.75rem;
}
.lp-price-cta {
  width: 100%;
  margin-top: auto;
}
.lp-price-description {
  font-size: 0.9rem;
  color: var(--lp-text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex: 1;
}
.lp-price-note {
  font-size: 0.85rem;
  color: var(--lp-text-muted);
  margin-bottom: 1.5rem;
}
.lp-price-features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}
.lp-price-features li {
  padding: 0.45rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--lp-border);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.lp-price-features li::before {
  content: '✓';
  color: var(--lp-text);
  font-weight: 700;
  flex-shrink: 0;
}
.lp-price-group-title {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lp-text-muted);
  margin: 1.25rem 0 0.5rem;
}

/* CTA block */
.lp-cta {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 3.5rem;
  color: var(--lp-text);
  text-align: center;
}
.lp-cta h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
}
.lp-cta p {
  margin: 0 auto 2rem;
  max-width: 520px;
  color: var(--lp-text-muted);
}
.lp-cta-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}
.lp-cta-form input,
.lp-cta-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: none;
  border-radius: var(--lp-radius-sm);
  font: inherit;
  background: rgba(255, 255, 255, 0.95);
  color: var(--lp-text);
}
.lp-cta-form textarea { min-height: 90px; resize: vertical; }
.lp-form-consents {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.8rem;
  color: var(--lp-text-muted);
}
.lp-form-consents label {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  cursor: pointer;
}
.lp-form-consents a {
  color: var(--lp-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lp-form-consents a:hover { text-decoration-color: var(--lp-accent); }
.lp-form-consents input { margin-top: 0.2rem; flex-shrink: 0; }

/* FAQ */
.lp-faq {
  max-width: 800px;
  margin: 0 auto;
}
.lp-faq-item {
  border-bottom: 1px solid var(--lp-border);
}
.lp-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  border: none;
  background: none;
  text-align: left;
  font: inherit;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--lp-text);
  cursor: pointer;
}
.lp-faq-question svg {
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--lp-text);
}
.lp-faq-item.is-open .lp-faq-question svg { transform: rotate(180deg); }
.lp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.lp-faq-answer-inner {
  padding: 0 0 1.25rem;
  color: var(--lp-text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Footer */
.lp-footer {
  background: var(--lp-surface);
  color: var(--lp-text);
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--lp-border);
}
.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.lp-footer-brand p {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--lp-text-muted);
  max-width: 280px;
  line-height: 1.5;
}
.lp-footer .lp-logo { color: var(--lp-text); }
.lp-footer-col h4 {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lp-text);
}
.lp-footer-col a {
  display: block;
  color: var(--lp-text-muted);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: color 0.2s;
}
.lp-footer-col a:hover { color: var(--lp-text); }
.lp-footer-bottom {
  border-top: 1px solid var(--lp-border);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--lp-text-muted);
}
.lp-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.lp-footer-legal a { color: var(--lp-text-muted); }
.lp-footer-legal a:hover { color: var(--lp-text); }

/* Modal */
.lp-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.lp-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.lp-modal {
  background: var(--lp-white);
  border-radius: var(--lp-radius);
  padding: 2rem;
  width: min(100%, 440px);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s;
}
.lp-modal-overlay.is-open .lp-modal { transform: translateY(0); }
.lp-modal h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 800;
}
.lp-modal p {
  margin: 0 0 1.5rem;
  color: var(--lp-text-muted);
  font-size: 0.95rem;
}
.lp-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--lp-bg);
  font-size: 1.25rem;
  line-height: 1;
  color: var(--lp-text);
}
.lp-modal-forms {
  position: relative;
}
.lp-modal-form[hidden] {
  display: none !important;
}
.lp-modal .lp-cta-form {
  max-width: none;
  margin: 0;
  gap: 1rem;
}
.lp-modal-form-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.lp-modal .lp-cta-form input,
.lp-modal .lp-cta-form textarea {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
}
.lp-modal-consents {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: var(--lp-radius-sm);
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
}
.lp-modal-consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  cursor: pointer;
}
.lp-modal-consent input[type='checkbox'] {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0.15rem 0 0;
  flex-shrink: 0;
  accent-color: var(--lp-accent);
}
.lp-modal-consent-label {
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--lp-text);
}
.lp-modal-consent-label a {
  color: var(--lp-text);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(0, 0, 0, 0.25);
}
.lp-modal-consent-label a:hover {
  text-decoration-color: var(--lp-accent);
}
.lp-modal-submit {
  width: 100%;
  margin-top: 0;
}
.lp-form-errors {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: #fff0f0;
  color: #b00020;
  font-size: 0.9rem;
}
/* Success modal (after demo lead submit) */
.lp-success-overlay {
  z-index: 310;
}
.lp-success-modal {
  background: var(--lp-white);
  border-radius: var(--lp-radius);
  padding: 2.5rem 2rem 2rem;
  width: min(100%, 400px);
  position: relative;
  text-align: center;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}
.lp-success-overlay.is-open .lp-success-modal {
  transform: translateY(0) scale(1);
}
.lp-success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--lp-accent);
  color: var(--lp-text);
  box-shadow: 0 8px 24px rgba(188, 235, 76, 0.45);
}
.lp-success-icon svg {
  display: block;
}
.lp-success-modal h3 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--lp-text);
}
.lp-success-text {
  margin: 0 auto 1.75rem;
  max-width: 280px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--lp-text-muted);
}
.lp-success-ok {
  width: 100%;
  max-width: 240px;
}

/* Cookie on landing — как в админке */
body.landing .cookie-consent {
  background: var(--lp-white);
  border-top-color: var(--lp-border);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
}
body.landing .cookie-consent-text { color: var(--lp-text); }
body.landing .cookie-consent-text a { color: var(--lp-text); text-decoration-color: var(--lp-accent); }
body.landing .cookie-consent-actions .btn-primary {
  background: var(--lp-accent);
  color: var(--lp-text);
  border-color: var(--lp-accent);
}
body.landing .cookie-consent-actions .btn-primary:hover {
  background: var(--lp-accent-hover);
  border-color: var(--lp-accent-hover);
}
body.landing .cookie-consent-actions .btn-outline {
  background: var(--lp-surface);
  border-color: var(--lp-border);
  color: var(--lp-text);
}

/* Якоря с фиксированным хедером после скролла */
.lp-section[id],
#about,
#integrations,
#features,
#pricing,
#faq,
#design,
#delivery {
  scroll-margin-top: 5.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .lp-hero-grid,
  .lp-split { grid-template-columns: 1fr; }
  .lp-hero-visual { order: -1; }
  .lp-marketing-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-pricing-grid--plans { grid-template-columns: 1fr; }
  .lp-footer-grid { grid-template-columns: 1fr 1fr; }
  .lp-features-grid { grid-template-columns: 1fr; }
  .lp-feature-card--wide { grid-column: span 1; }
  .lp-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-stats-grid .lp-stat-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  body.landing {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }

  .lp-container {
    width: min(100% - 2rem, var(--lp-container));
  }

  .lp-nav { display: none; }
  .lp-burger { display: flex; }
  .lp-header-login {
    display: inline-flex;
    width: 44px;
    height: 44px;
  }

  .lp-header-inner .lp-logo {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 1.15rem;
  }
  .lp-logo span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .lp-header-actions {
    flex-shrink: 0;
    gap: 0.5rem;
  }
  .lp-header-actions > .lp-btn.lp-btn-lime {
    padding: 0.6rem 0.9rem;
    font-size: 0.8rem;
  }

  .lp-hero-grid {
    gap: 2rem;
  }
  .lp-hero-visual {
    order: 1;
  }
  .lp-hero {
    min-height: auto;
    padding: 5rem 0 2.5rem;
    align-items: flex-start;
  }
  .lp-hero-shell__bg {
    background-position: center top;
  }
  .lp-hero h1 {
    font-size: clamp(1.65rem, 7vw, 2.25rem);
  }
  .lp-hero-lead {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .lp-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .lp-hero-actions .lp-btn {
    width: 100%;
  }
  .lp-phone-mockup {
    width: min(100%, 260px);
    margin-inline: auto;
  }

  .lp-stats {
    margin-top: -1.5rem;
    padding-bottom: 2rem;
  }
  .lp-stats-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .lp-stats-grid .lp-stat-card:last-child {
    grid-column: auto;
  }
  .lp-stat-card {
    padding: 1.25rem 1.15rem;
  }

  .lp-cities {
    padding: 2rem 0;
  }
  .lp-cities-title {
    font-size: 1rem;
    padding-inline: 1rem;
  }
  .lp-marquee span {
    font-size: 0.9rem;
  }

  .lp-section {
    padding: 3.25rem 0;
  }
  .lp-section-lead {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .lp-feature-card {
    padding: 1.35rem;
  }
  .lp-feature-card:hover {
    transform: none;
  }

  .lp-split {
    gap: 2rem;
  }
  .lp-split .lp-btn,
  .lp-design-cta .lp-btn,
  .lp-marketing-cta .lp-btn {
    width: 100%;
  }
  .lp-delivery-visual {
    min-height: 220px;
    padding: 1.25rem;
  }
  .lp-delivery-badge {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
  }

  .lp-logos {
    gap: 0.5rem;
  }
  .lp-logo-pill {
    font-size: 0.85rem;
    padding: 0.45rem 0.85rem;
  }

  .lp-pricing-grid { grid-template-columns: 1fr; }
  .lp-support-grid { grid-template-columns: 1fr; }
  .lp-steps { grid-template-columns: 1fr; }
  .lp-step { flex-direction: column; }
  .lp-step-media { flex-basis: auto; }
  .lp-step-img,
  .lp-step-media-placeholder { min-height: 180px; }
  .lp-marketing-grid { grid-template-columns: 1fr; }
  .lp-price-card {
    padding: 1.5rem;
  }
  .lp-price-value {
    font-size: 2rem;
  }

  .lp-faq-question {
    font-size: 1rem;
    padding: 1rem 0;
  }

  .lp-footer {
    padding: 2.5rem 0 calc(1.5rem + env(safe-area-inset-bottom));
  }
  .lp-footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-bottom: 2rem;
  }
  .lp-footer-brand p {
    max-width: none;
  }
  .lp-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    font-size: 0.75rem;
  }
  .lp-footer-legal {
    flex-direction: column;
    gap: 0.65rem;
  }
  .lp-footer-col .lp-btn {
    width: 100%;
  }

  .lp-cta { padding: 2rem 1.5rem; }

  .lp-modal-overlay {
    padding: 0.75rem;
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
    align-items: flex-end;
  }
  .lp-modal {
    width: 100%;
    max-height: min(92dvh, 100%);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1.5rem 1.25rem 1.25rem;
  }
  .lp-success-overlay {
    padding: 0.75rem;
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
    align-items: flex-end;
  }
  .lp-success-modal {
    width: 100%;
    padding: 2rem 1.25rem 1.5rem;
  }
  .lp-success-ok {
    max-width: none;
  }

  body.landing .cookie-consent-actions {
    width: 100%;
    flex-direction: column;
  }
  body.landing .cookie-consent-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .lp-container {
    width: min(100% - 1.5rem, var(--lp-container));
  }

  .lp-header-actions > .lp-btn.lp-btn-lime {
    display: none;
  }

  .lp-logo {
    font-size: 1.05rem;
    gap: 0.4rem;
  }
  .lp-logo-img {
    width: 1.65rem;
    height: 1.65rem;
  }

  .lp-hero {
    padding-top: 4.75rem;
  }
  .lp-phone-mockup {
    width: min(100%, 220px);
    border-radius: 28px;
    padding: 10px;
  }
  .lp-phone-screen {
    border-radius: 22px;
  }

  .lp-section h2 {
    font-size: clamp(1.45rem, 6.5vw, 1.85rem);
  }
}
