/**
 * Landing Pro — стили витрины.
 *
 * Всё изолировано префиксом .lp и живёт на CSS-переменных, которые задаёт
 * оформление страницы (\Landing\Theme). Поэтому один и тот же набор секций
 * выглядит по-разному на разных лендингах, а тема магазина не задета.
 */

/* ================================================================== */
/* ОСНОВА                                                             */
/* ================================================================== */

.lp {
	--lp-primary: #2563eb;
	--lp-primary-soft: rgba(37, 99, 235, .12);
	--lp-primary-dark: #1d4ed8;
	--lp-accent: #f97316;
	--lp-accent-soft: rgba(249, 115, 22, .14);
	--lp-dark: #0f172a;
	--lp-light: #f1f5f9;
	--lp-text: #1e293b;
	--lp-muted: rgba(30, 41, 59, .62);
	--lp-border: rgba(30, 41, 59, .14);
	--lp-bg: #ffffff;
	--lp-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
	--lp-font-heading: var(--lp-font);
	--lp-size: 16px;
	--lp-scale: 1;
	--lp-radius: 12px;
	--lp-radius-sm: 6px;
	--lp-btn-radius: 12px;
	--lp-btn-pad: 14px 28px;
	--lp-btn-size: 16px;
	--lp-container: 1200px;
	--lp-shadow: 0 6px 24px rgba(15, 23, 42, .08);
	--lp-gap: 72px;
	--lp-caps: none;

	font-family: var(--lp-font);
	font-size: var(--lp-size);
	line-height: 1.6;
	color: var(--lp-text);
	background: var(--lp-bg);
	-webkit-font-smoothing: antialiased;
}

.lp *,
.lp *::before,
.lp *::after { box-sizing: border-box; }

.lp img { max-width: 100%; height: auto; }

.lp h1, .lp h2, .lp h3, .lp h4 {
	font-family: var(--lp-font-heading);
	color: inherit;
	margin: 0 0 .5em;
	line-height: 1.2;
	font-weight: 800;
	text-transform: var(--lp-caps);
	letter-spacing: -.01em;
}

.lp h1 { font-size: calc(2.6rem * var(--lp-scale)); }
.lp h2 { font-size: calc(2.1rem * var(--lp-scale)); }
.lp h3 { font-size: calc(1.35rem * var(--lp-scale)); }

.lp p { margin: 0 0 1em; }
.lp p:last-child { margin-bottom: 0; }

.lp a { color: var(--lp-primary); text-decoration: none; }
.lp a:hover { color: var(--lp-primary-dark); }

.lp-body { margin: 0; }

.lp-container {
	width: 100%;
	max-width: var(--lp-container);
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 2;
}

.lp-container--narrow { max-width: min(820px, var(--lp-container)); }
.lp-container--wide   { max-width: min(1560px, max(var(--lp-container), 1560px)); }
.lp-container--full   { max-width: 100%; padding: 0; }

.lp-scroll-x { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* --- текстовые блоки из редактора --- */

.lp-rte > *:first-child { margin-top: 0; }
.lp-rte > *:last-child { margin-bottom: 0; }
.lp-rte ul, .lp-rte ol { margin: 0 0 1em; padding-left: 1.3em; }
.lp-rte li { margin-bottom: .4em; }
.lp-rte img { border-radius: var(--lp-radius-sm); }
.lp-rte--2col { column-count: 2; column-gap: 40px; }

@media (max-width: 760px) {
	.lp-rte--2col { column-count: 1; }
}

/* ================================================================== */
/* СЕКЦИЯ                                                             */
/* ================================================================== */

.lp-sec {
	position: relative;
	overflow: hidden;
}

.lp-sec__bg,
.lp-sec__overlay,
.lp-sec__video {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.lp-sec__bg { background-size: cover; background-position: center; }
.lp-sec__bg--fixed { background-attachment: fixed; }
.lp-sec__video { width: 100%; height: 100%; object-fit: cover; }
.lp-sec__overlay { background: #05070d; z-index: 1; }

.lp-sec--bg-light   { background: var(--lp-light); }
.lp-sec--bg-dark    { background: var(--lp-dark); }
.lp-sec--bg-primary { background: var(--lp-primary); }
.lp-sec--bg-accent  { background: var(--lp-accent); }

.lp-text-light,
.lp-text-light h1, .lp-text-light h2, .lp-text-light h3, .lp-text-light h4 { color: #fff; }
.lp-text-light .lp-sec__subtitle,
.lp-text-light .lp-rte { color: rgba(255, 255, 255, .84); }

/* --- отступы --- */

.lp-pt-none { padding-top: 0; }
.lp-pt-xs   { padding-top: calc(var(--lp-gap) * .18); }
.lp-pt-sm   { padding-top: calc(var(--lp-gap) * .38); }
.lp-pt-md   { padding-top: calc(var(--lp-gap) * .68); }
.lp-pt-lg   { padding-top: var(--lp-gap); }
.lp-pt-xl   { padding-top: calc(var(--lp-gap) * 1.45); }

.lp-pb-none { padding-bottom: 0; }
.lp-pb-xs   { padding-bottom: calc(var(--lp-gap) * .18); }
.lp-pb-sm   { padding-bottom: calc(var(--lp-gap) * .38); }
.lp-pb-md   { padding-bottom: calc(var(--lp-gap) * .68); }
.lp-pb-lg   { padding-bottom: var(--lp-gap); }
.lp-pb-xl   { padding-bottom: calc(var(--lp-gap) * 1.45); }

/* --- заголовок секции --- */

.lp-sec__head { margin-bottom: 40px; }
.lp-sec__head--center { text-align: center; margin-left: auto; margin-right: auto; max-width: 780px; }
.lp-sec__head--right { text-align: right; }
.lp-sec__title { margin: 0 0 .35em; }
.lp-sec__subtitle { margin: 0; font-size: 1.2rem; color: var(--lp-muted); }
.lp-sec__more { margin-top: 34px; text-align: center; }

/* --- фигуры на границах --- */

.lp-shape {
	position: absolute;
	left: 0;
	width: 100%;
	height: 70px;
	z-index: 3;
	background: var(--lp-bg);
	pointer-events: none;
}

.lp-shape--top { top: -1px; }
.lp-shape--bottom { bottom: -1px; }

.lp-shape--wave.lp-shape--bottom { clip-path: ellipse(72% 100% at 50% 100%); }
.lp-shape--wave.lp-shape--top    { clip-path: ellipse(72% 100% at 50% 0%); }
.lp-shape--curve.lp-shape--bottom { border-radius: 50% 50% 0 0 / 100% 100% 0 0; }
.lp-shape--curve.lp-shape--top    { border-radius: 0 0 50% 50% / 0 0 100% 100%; }
.lp-shape--slant.lp-shape--bottom { clip-path: polygon(0 100%, 100% 0, 100% 100%); }
.lp-shape--slant.lp-shape--top    { clip-path: polygon(0 0, 100% 0, 0 100%); }
.lp-shape--triangle.lp-shape--bottom { clip-path: polygon(0 100%, 50% 0, 100% 100%); }
.lp-shape--triangle.lp-shape--top    { clip-path: polygon(0 0, 50% 100%, 100% 0); }

/* --- анимация появления --- */

/* Прячем секцию только если скрипт витрины жив: класс lp-js он ставит сам.
   Без него страница видна целиком — сломанный JS не должен обнулять сайт. */
.lp-js .lp-anim { opacity: 0; transition: opacity .6s ease, transform .6s cubic-bezier(.2, .7, .3, 1); }
.lp-js .lp-anim--up    { transform: translateY(28px); }
.lp-js .lp-anim--left  { transform: translateX(-28px); }
.lp-js .lp-anim--right { transform: translateX(28px); }
.lp-js .lp-anim--zoom  { transform: scale(.95); }
.lp-js .lp-anim.is-in  { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	.lp-js .lp-anim { opacity: 1; transform: none; transition: none; }
}

/* --- видимость по устройствам --- */

@media (min-width: 1025px) { .lp-hide-d { display: none !important; } }
@media (min-width: 641px) and (max-width: 1024px) { .lp-hide-t { display: none !important; } }
@media (max-width: 640px) { .lp-hide-m { display: none !important; } }

/* ================================================================== */
/* КНОПКИ И ПОЛЯ                                                      */
/* ================================================================== */

.lp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: var(--lp-btn-pad);
	font-family: inherit;
	font-size: var(--lp-btn-size);
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	background: var(--lp-primary);
	border: 2px solid var(--lp-primary);
	border-radius: var(--lp-btn-radius);
	cursor: pointer;
	text-align: center;
	transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
	text-decoration: none;
}

.lp-btn:hover { background: var(--lp-primary-dark); border-color: var(--lp-primary-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--lp-shadow); }
.lp-btn:active { transform: none; }

.lp-btn--ghost { background: transparent; color: var(--lp-primary); }
.lp-btn--ghost:hover { background: var(--lp-primary); color: #fff; }
.lp-text-light .lp-btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .6); }
.lp-text-light .lp-btn--ghost:hover { background: #fff; color: var(--lp-dark); border-color: #fff; }

.lp-btn--link { background: none; border-color: transparent; color: var(--lp-primary); padding-left: 0; padding-right: 0; }
.lp-btn--link:hover { background: none; color: var(--lp-primary-dark); box-shadow: none; text-decoration: underline; }

.lp-btn--sm { padding: 9px 18px; font-size: 14px; }
.lp-btn--lg { padding: 18px 38px; font-size: calc(var(--lp-btn-size) + 2px); }
.lp-btn--block { display: flex; width: 100%; }

.lp-input,
.lp select.lp-input,
.lp textarea.lp-input {
	width: 100%;
	padding: 12px 14px;
	font-family: inherit;
	font-size: 15px;
	color: var(--lp-text);
	background: #fff;
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius-sm);
	transition: border-color .2s ease, box-shadow .2s ease;
}

.lp-input:focus { outline: none; border-color: var(--lp-primary); box-shadow: 0 0 0 3px var(--lp-primary-soft); }

.lp-radio,
.lp-checkbox {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 8px;
	cursor: pointer;
	font-size: 15px;
}

.lp-req { color: #ef4444; }

.lp-ratio { display: block; position: relative; width: 100%; overflow: hidden; border-radius: var(--lp-radius-sm); }
.lp-ratio::before { content: ''; display: block; }
.lp-ratio--1x1::before  { padding-top: 100%; }
.lp-ratio--4x3::before  { padding-top: 75%; }
.lp-ratio--3x4::before  { padding-top: 133.33%; }
.lp-ratio--16x9::before { padding-top: 56.25%; }
.lp-ratio > img,
.lp-ratio > iframe { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 0; }

.lp-tick, .lp-cross { display: inline-block; width: 18px; height: 18px; position: relative; }
.lp-tick::before { content: ''; position: absolute; left: 3px; top: 8px; width: 5px; height: 9px; border: solid #10b981; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.lp-cross::before, .lp-cross::after { content: ''; position: absolute; left: 8px; top: 3px; width: 2px; height: 13px; background: #cbd5e1; }
.lp-cross::before { transform: rotate(45deg); }
.lp-cross::after { transform: rotate(-45deg); }

.lp-stars { color: #f59e0b; margin-bottom: 12px; letter-spacing: 2px; }

/* ================================================================== */
/* СЕТКА                                                              */
/* ================================================================== */

.lp-grid {
	display: grid;
	grid-template-columns: repeat(var(--lp-cols, 3), minmax(0, 1fr));
	gap: 24px;
}

.lp-grid--va-start   { align-items: start; }
.lp-grid--va-center  { align-items: center; }
.lp-grid--va-stretch { align-items: stretch; }

.lp-grid--slider {
	grid-template-columns: none;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - (var(--lp-cols, 3) - 1) * 24px) / var(--lp-cols, 3));
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 10px;
	-webkit-overflow-scrolling: touch;
}

.lp-grid--slider > * { scroll-snap-align: start; }

@media (max-width: 1024px) {
	.lp-grid { grid-template-columns: repeat(min(var(--lp-cols, 3), 3), minmax(0, 1fr)); }
	.lp-grid--slider { grid-auto-columns: 46%; }
}

@media (max-width: 760px) {
	.lp-grid { grid-template-columns: repeat(min(var(--lp-cols, 3), 2), minmax(0, 1fr)); gap: 16px; }
	.lp-grid--slider { grid-auto-columns: 78%; }
}

@media (max-width: 520px) {
	.lp-grid { grid-template-columns: 1fr; }
	.lp-grid--slider { grid-auto-columns: 86%; }
}

/* ================================================================== */
/* ОБЛОЖКА                                                            */
/* ================================================================== */

.lp-hero { position: relative; display: flex; align-items: center; overflow: hidden; }

.lp-hero--h-small  { min-height: 340px; }
.lp-hero--h-medium { min-height: 520px; }
.lp-hero--h-large  { min-height: 680px; }
.lp-hero--h-full   { min-height: 100vh; }
.lp-hero--h-auto   { min-height: 0; }

.lp-hero__inner { width: 100%; display: grid; gap: 48px; align-items: center; }
.lp-hero--center .lp-hero__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
.lp-hero--left .lp-hero__inner   { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.lp-hero--right .lp-hero__inner  { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); direction: rtl; }
.lp-hero--right .lp-hero__body   { direction: ltr; }
.lp-hero--form .lp-hero__inner   { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); }
.lp-hero--split .lp-hero__inner  { grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); }

.lp-hero__body { max-width: 100%; }
.lp-hero--center .lp-hero__body { max-width: 860px; }

.lp-hero__pretitle {
	display: inline-block;
	margin-bottom: 18px;
	padding: 7px 16px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	background: rgba(255, 255, 255, .16);
	border-radius: 999px;
}

.lp-text-dark .lp-hero__pretitle { background: var(--lp-primary-soft); color: var(--lp-primary); }

.lp-hero__title { font-size: calc(3.1rem * var(--lp-scale)); margin-bottom: .3em; }
.lp-hero__lead { font-size: 1.2rem; margin-bottom: 14px; opacity: .9; }
.lp-hero__text { font-size: 1.08rem; margin-bottom: 28px; }
.lp-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 16px; }
.lp-hero--center .lp-hero__actions { justify-content: center; }
.lp-hero__note { font-size: 14px; opacity: .75; }

.lp-hero__bullets { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px 28px; }
.lp-hero--center .lp-hero__bullets { justify-content: center; }
.lp-hero__bullets li { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 15px; }
.lp-hero__bullets i { color: var(--lp-accent); }
.lp-hero__bullets img { width: 20px; height: 20px; object-fit: contain; }

.lp-hero__aside--image img { width: 100%; border-radius: var(--lp-radius); box-shadow: var(--lp-shadow); }

.lp-hero__scroll {
	position: absolute;
	left: 50%;
	bottom: 22px;
	transform: translateX(-50%);
	width: 26px;
	height: 42px;
	border: 2px solid currentColor;
	border-radius: 14px;
	background: none;
	opacity: .55;
	cursor: pointer;
	z-index: 4;
}

.lp-hero__scroll span { position: absolute; left: 50%; top: 8px; width: 3px; height: 7px; margin-left: -1.5px; background: currentColor; border-radius: 2px; animation: lp-scroll 1.7s infinite; }

@keyframes lp-scroll { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(12px); } 100% { opacity: 0; } }

@media (max-width: 900px) {
	.lp-hero__inner { grid-template-columns: 1fr !important; direction: ltr !important; }
	.lp-hero__title { font-size: calc(2.2rem * var(--lp-scale)); }
	.lp-hero--h-large, .lp-hero--h-full { min-height: 0; }
}

/* ================================================================== */
/* СЛАЙДЕР                                                            */
/* ================================================================== */

.lp-slider { position: relative; overflow: hidden; }
.lp-slider--h-small  { min-height: 320px; }
.lp-slider--h-medium { min-height: 460px; }
.lp-slider--h-large  { min-height: 620px; }
.lp-slider--h-full   { min-height: 100vh; }

.lp-slider__track { position: relative; height: 100%; min-height: inherit; }

.lp-slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity .5s ease;
	color: #fff;
}

.lp-slide.is-active { position: relative; opacity: 1; visibility: visible; }
.lp-slide__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.lp-slide__bg--mobile { display: none; }
.lp-slide__inner { width: 100%; padding-top: 60px; padding-bottom: 60px; }
.lp-slide--center .lp-slide__inner { text-align: center; }
.lp-slide--right .lp-slide__inner { text-align: right; }
.lp-slide__title { font-size: calc(2.6rem * var(--lp-scale)); color: #fff; }
.lp-slide__text { margin-bottom: 24px; font-size: 1.05rem; color: rgba(255, 255, 255, .88); }

.lp-slider__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 46px;
	height: 46px;
	font-size: 28px;
	line-height: 1;
	color: #fff;
	background: rgba(15, 23, 42, .4);
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	z-index: 4;
}

.lp-slider__arrow:hover { background: rgba(15, 23, 42, .7); }
.lp-slider__arrow--prev { left: 18px; }
.lp-slider__arrow--next { right: 18px; }

.lp-slider__dots { position: absolute; left: 0; right: 0; bottom: 18px; display: flex; justify-content: center; gap: 9px; z-index: 4; }
.lp-slider__dot { width: 10px; height: 10px; padding: 0; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .45); cursor: pointer; }
.lp-slider__dot.is-active { background: #fff; width: 26px; border-radius: 5px; }

@media (max-width: 640px) {
	.lp-slide__bg--mobile { display: block; }
	.lp-slide__bg:not(.lp-slide__bg--mobile) { display: none; }
	.lp-slide__title { font-size: calc(1.7rem * var(--lp-scale)); }
	.lp-slider__arrow { display: none; }
}

/* ================================================================== */
/* КОНТЕНТ                                                            */
/* ================================================================== */

.lp-heading--center { text-align: center; }
.lp-heading--right { text-align: right; }
.lp-heading--small .lp-rte { font-size: 1.1rem; }
.lp-heading--large .lp-rte { font-size: 1.4rem; }
.lp-heading--line::after { content: ''; display: block; width: 64px; height: 4px; margin-top: 18px; background: var(--lp-accent); border-radius: 2px; }
.lp-heading--center.lp-heading--line::after { margin-left: auto; margin-right: auto; }
.lp-heading--right.lp-heading--line::after { margin-left: auto; }

.lp-text { display: grid; gap: 44px; align-items: center; }
.lp-text--img-right { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); }
.lp-text--img-right .lp-text__media { order: 2; }
.lp-text--img-left { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); }
.lp-text--img-none { grid-template-columns: 1fr; }
.lp-text--img-top, .lp-text--img-bottom { grid-template-columns: 1fr; gap: 28px; }
.lp-text--img-bottom .lp-text__media { order: 2; }
.lp-text__media.is-round img,
.lp-text__media.is-round .lp-ratio { border-radius: var(--lp-radius); }
.lp-text__media img { width: 100%; box-shadow: var(--lp-shadow); border-radius: var(--lp-radius-sm); }
.lp-text__actions { margin-top: 26px; }

@media (max-width: 860px) {
	.lp-text { grid-template-columns: 1fr !important; gap: 26px; }
	.lp-text--img-right .lp-text__media { order: 0; }
}

.lp-col { display: flex; flex-direction: column; gap: 12px; }
.lp-col--card { padding: 26px; background: #fff; border-radius: var(--lp-radius); box-shadow: var(--lp-shadow); }
.lp-col--bordered { padding: 26px; border: 1px solid var(--lp-border); border-radius: var(--lp-radius); }
.lp-col__image img { width: 100%; border-radius: var(--lp-radius-sm); }
.lp-col__icon { font-size: 32px; color: var(--lp-primary); }
.lp-col__icon img { width: 44px; height: 44px; object-fit: contain; }
.lp-col__title { margin: 0; font-size: 1.2rem; }
.lp-col .lp-btn { align-self: flex-start; margin-top: auto; }

/* --- преимущества --- */

.lp-feature { display: flex; gap: 16px; }
.lp-feature--card,
.lp-feature--tile { flex-direction: column; padding: 28px; background: #fff; border-radius: var(--lp-radius); box-shadow: var(--lp-shadow); }
.lp-feature--tile { background: var(--lp-primary-soft); box-shadow: none; }
.lp-feature--plain { flex-direction: column; }
.lp-feature--numbered { flex-direction: column; }
.lp-feature--inline { align-items: flex-start; }

.lp-text-light .lp-feature--card { background: rgba(255, 255, 255, .08); box-shadow: none; }
.lp-text-light .lp-feature--tile { background: rgba(255, 255, 255, .08); }

.lp-feature__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 58px;
	height: 58px;
	font-size: 24px;
	color: var(--lp-primary);
	background: var(--lp-primary-soft);
	border-radius: 50%;
}

.lp-feature__icon img { width: 30px; height: 30px; object-fit: contain; }
.lp-feature--icon-square .lp-feature__icon { border-radius: var(--lp-radius-sm); }
.lp-feature--icon-plain .lp-feature__icon { width: auto; height: auto; background: none; font-size: 32px; }
.lp-feature--icon-none .lp-feature__icon { display: none; }
.lp-feature--color-accent .lp-feature__icon { color: var(--lp-accent); background: var(--lp-accent-soft); }
.lp-feature--color-dark .lp-feature__icon { color: var(--lp-dark); background: var(--lp-light); }
.lp-text-light .lp-feature__icon { background: rgba(255, 255, 255, .14); color: #fff; }

.lp-feature__num { font-size: 2.4rem; font-weight: 800; line-height: 1; color: var(--lp-primary); opacity: .35; }
.lp-feature__title { margin: 0 0 .4em; font-size: 1.15rem; }
.lp-feature__text { font-size: .97rem; color: var(--lp-muted); }
.lp-text-light .lp-feature__text { color: rgba(255, 255, 255, .8); }

/* --- этапы --- */

.lp-steps { display: grid; grid-template-columns: repeat(var(--lp-cols, 4), minmax(0, 1fr)); gap: 26px; }
.lp-steps--vertical { grid-template-columns: 1fr; gap: 18px; }

.lp-step { position: relative; display: flex; flex-direction: column; gap: 12px; }
.lp-steps--vertical .lp-step { flex-direction: row; align-items: flex-start; gap: 20px; }
.lp-steps--cards .lp-step { padding: 26px; background: #fff; border-radius: var(--lp-radius); box-shadow: var(--lp-shadow); }
.lp-text-light .lp-steps--cards .lp-step { background: rgba(255, 255, 255, .08); box-shadow: none; }

.lp-step__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 46px;
	height: 46px;
	font-size: 18px;
	font-weight: 800;
	color: #fff;
	background: var(--lp-primary);
	border-radius: 50%;
	position: relative;
	z-index: 2;
}

.lp-steps--timeline .lp-step::after {
	content: '';
	position: absolute;
	top: 23px;
	left: 46px;
	right: -26px;
	height: 2px;
	background: var(--lp-border);
	z-index: 1;
}

.lp-steps--timeline .lp-step:last-child::after { display: none; }

.lp-steps--arrows .lp-step { padding: 24px 24px 24px 34px; background: var(--lp-light); clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%, 18px 50%); }

.lp-step__icon { font-size: 28px; color: var(--lp-primary); }
.lp-step__icon img { width: 38px; height: 38px; object-fit: contain; }
.lp-step__image img { width: 100%; border-radius: var(--lp-radius-sm); }
.lp-step__title { margin: 0 0 .3em; font-size: 1.1rem; }
.lp-step__duration { display: inline-block; margin-bottom: 8px; font-size: 13px; color: var(--lp-accent); font-weight: 700; }
.lp-step__text { font-size: .95rem; color: var(--lp-muted); }
.lp-text-light .lp-step__text { color: rgba(255, 255, 255, .8); }

@media (max-width: 860px) {
	.lp-steps { grid-template-columns: 1fr; }
	.lp-steps--timeline .lp-step::after { display: none; }
	.lp-steps--arrows .lp-step { clip-path: none; border-radius: var(--lp-radius-sm); }
}

/* --- вкладки --- */

.lp-tabs--side { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: 32px; }
.lp-tabs__nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.lp-tabs--side .lp-tabs__nav { flex-direction: column; margin-bottom: 0; }

.lp-tabs__btn {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 13px 20px;
	font: inherit;
	font-weight: 700;
	color: inherit;
	text-align: left;
	background: transparent;
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius-sm);
	cursor: pointer;
	transition: all .2s ease;
}

.lp-tabs__btn:hover { border-color: var(--lp-primary); }
.lp-tabs__btn.is-active { color: #fff; background: var(--lp-primary); border-color: var(--lp-primary); }
.lp-tabs--pills .lp-tabs__btn { border-radius: 999px; }
.lp-tabs__pane { display: none; }
.lp-tabs__pane.is-active { display: block; animation: lp-fade .3s ease; }
.lp-tabs__image { margin-bottom: 20px; }
.lp-tabs__image img { width: 100%; border-radius: var(--lp-radius); }

@keyframes lp-fade { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 860px) {
	.lp-tabs--side { grid-template-columns: 1fr; gap: 20px; }
	.lp-tabs--side .lp-tabs__nav { flex-direction: row; }
}

/* --- вопросы и ответы --- */

.lp-faq { display: grid; grid-template-columns: repeat(var(--lp-cols, 1), minmax(0, 1fr)); gap: 14px; align-items: start; }

.lp-faq__item { border-radius: var(--lp-radius); overflow: hidden; }
.lp-faq--card .lp-faq__item { background: #fff; box-shadow: var(--lp-shadow); }
.lp-faq--bordered .lp-faq__item { border: 1px solid var(--lp-border); }
.lp-faq--plain .lp-faq__item { border-bottom: 1px solid var(--lp-border); border-radius: 0; }
.lp-text-light .lp-faq--card .lp-faq__item { background: rgba(255, 255, 255, .08); box-shadow: none; }

.lp-faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 20px 22px;
	font: inherit;
	font-weight: 700;
	font-size: 1.03rem;
	color: inherit;
	text-align: left;
	background: none;
	border: 0;
	cursor: pointer;
}

.lp-faq__chevron { flex: 0 0 auto; width: 11px; height: 11px; border: solid currentColor; border-width: 0 2px 2px 0; transform: rotate(45deg); transition: transform .25s ease; opacity: .5; }
.lp-faq__item.is-open .lp-faq__chevron { transform: rotate(-135deg); }
.lp-faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.lp-faq__a .lp-rte { padding: 0 22px 22px; color: var(--lp-muted); }
.lp-text-light .lp-faq__a .lp-rte { color: rgba(255, 255, 255, .8); }

/* --- хронология --- */

.lp-timeline { position: relative; }
.lp-timeline::before { content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; margin-left: -1px; background: var(--lp-border); }
.lp-timeline--left::before { left: 15px; }

.lp-timeline__item { position: relative; width: 50%; padding: 0 42px 36px 0; }
.lp-timeline__item:nth-child(even) { margin-left: 50%; padding: 0 0 36px 42px; }
.lp-timeline--left .lp-timeline__item,
.lp-timeline--left .lp-timeline__item:nth-child(even) { width: 100%; margin-left: 0; padding: 0 0 30px 48px; }

.lp-timeline__marker { position: absolute; top: 6px; right: -8px; width: 16px; height: 16px; background: var(--lp-primary); border: 3px solid var(--lp-bg); border-radius: 50%; }
.lp-timeline__item:nth-child(even) .lp-timeline__marker { right: auto; left: -8px; }
.lp-timeline--left .lp-timeline__marker,
.lp-timeline--left .lp-timeline__item:nth-child(even) .lp-timeline__marker { left: 8px; right: auto; }

.lp-timeline__card { padding: 22px 24px; background: #fff; border-radius: var(--lp-radius); box-shadow: var(--lp-shadow); }
.lp-text-light .lp-timeline__card { background: rgba(255, 255, 255, .08); box-shadow: none; }
.lp-timeline__date { display: inline-block; margin-bottom: 8px; font-size: 13px; font-weight: 800; color: var(--lp-accent); letter-spacing: .04em; }
.lp-timeline__title { margin: 0 0 .4em; font-size: 1.12rem; }
.lp-timeline__image { margin: 12px 0; }
.lp-timeline__image img { width: 100%; border-radius: var(--lp-radius-sm); }

@media (max-width: 760px) {
	.lp-timeline::before { left: 15px; }
	.lp-timeline__item,
	.lp-timeline__item:nth-child(even) { width: 100%; margin-left: 0; padding: 0 0 26px 48px; }
	.lp-timeline__marker,
	.lp-timeline__item:nth-child(even) .lp-timeline__marker { left: 8px; right: auto; }
}

/* --- сравнение --- */

.lp-compare table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--lp-radius); overflow: hidden; }
.lp-compare th, .lp-compare td { padding: 15px 18px; text-align: center; border-bottom: 1px solid var(--lp-border); }
.lp-compare thead th { font-weight: 800; background: var(--lp-light); }
.lp-compare tbody th { text-align: left; font-weight: 600; }
.lp-compare--striped tbody tr:nth-child(odd) td,
.lp-compare--striped tbody tr:nth-child(odd) th { background: rgba(15, 23, 42, .02); }
.lp-compare .is-highlight { background: var(--lp-primary-soft) !important; font-weight: 700; }
.lp-compare__note { margin-top: 14px; font-size: 14px; color: var(--lp-muted); }

/* --- цитата --- */

.lp-quote { margin: 0; text-align: center; }
.lp-quote--card { padding: 40px; background: #fff; border-radius: var(--lp-radius); box-shadow: var(--lp-shadow); }
.lp-text-light .lp-quote--card { background: rgba(255, 255, 255, .08); box-shadow: none; }
.lp-quote__photo { width: 96px; height: 96px; margin-bottom: 20px; object-fit: cover; border-radius: 50%; }
.lp-quote__text { position: relative; margin: 0 0 20px; font-size: 1.2rem; font-style: italic; }
.lp-quote--big .lp-quote__text { font-size: 1.7rem; font-style: normal; font-weight: 600; line-height: 1.4; }
.lp-quote__text::before { content: '\201C'; display: block; font-size: 3.6rem; line-height: .6; color: var(--lp-accent); opacity: .5; }
.lp-quote__author strong { display: block; font-size: 1.02rem; }
.lp-quote__author span { font-size: .92rem; color: var(--lp-muted); }
.lp-text-light .lp-quote__author span { color: rgba(255, 255, 255, .7); }

/* --- SEO-текст --- */

.lp-seotext { position: relative; }
.lp-seotext.is-collapsed .lp-seotext__body { max-height: var(--lp-seo-h, 180px); overflow: hidden; -webkit-mask-image: linear-gradient(180deg, #000 60%, transparent); mask-image: linear-gradient(180deg, #000 60%, transparent); }
.lp-seotext.is-open .lp-seotext__body { max-height: none; -webkit-mask-image: none; mask-image: none; }
.lp-seotext__toggle { margin-top: 14px; padding: 0; font: inherit; font-weight: 700; color: var(--lp-primary); background: none; border: 0; cursor: pointer; }
.lp-seotext__toggle:hover { text-decoration: underline; }

/* --- разделитель --- */

.lp-divider { padding: calc(var(--lp-divider-h, 40px) / 2) 0; text-align: center; }
.lp-divider__line { display: block; height: 1px; background: var(--lp-border); }
.lp-divider__dots i { display: inline-block; width: 6px; height: 6px; margin: 0 5px; background: var(--lp-border); border-radius: 50%; }
.lp-divider__icon { font-size: 22px; color: var(--lp-accent); }

/* ================================================================== */
/* ДОВЕРИЕ                                                            */
/* ================================================================== */

.lp-numbers { display: grid; grid-template-columns: repeat(var(--lp-cols, 4), minmax(0, 1fr)); gap: 24px; text-align: center; }
.lp-numbers--card .lp-number { padding: 28px 20px; background: #fff; border-radius: var(--lp-radius); box-shadow: var(--lp-shadow); }
.lp-numbers--divided .lp-number { border-right: 1px solid var(--lp-border); }
.lp-numbers--divided .lp-number:last-child { border-right: 0; }
.lp-text-light .lp-numbers--card .lp-number { background: rgba(255, 255, 255, .08); box-shadow: none; }

.lp-number__icon { margin-bottom: 10px; font-size: 26px; color: var(--lp-accent); }
.lp-number__icon img { width: 36px; height: 36px; object-fit: contain; }
.lp-number__value { font-family: var(--lp-font-heading); font-size: calc(2.7rem * var(--lp-scale)); font-weight: 800; line-height: 1.1; color: var(--lp-primary); }
.lp-text-light .lp-number__value { color: #fff; }
.lp-number__affix { font-size: .6em; }
.lp-number__label { margin-top: 8px; font-size: .95rem; color: var(--lp-muted); }
.lp-text-light .lp-number__label { color: rgba(255, 255, 255, .78); }

@media (max-width: 760px) {
	.lp-numbers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.lp-numbers--divided .lp-number { border-right: 0; }
}

/* --- отзывы --- */

.lp-review { position: relative; display: flex; flex-direction: column; }
.lp-review--card { padding: 28px; background: #fff; border-radius: var(--lp-radius); box-shadow: var(--lp-shadow); }
.lp-review--quote { padding: 28px 28px 28px 46px; }
.lp-review--quote::before { content: '\201C'; position: absolute; left: 10px; top: 14px; font-size: 3.4rem; line-height: .7; color: var(--lp-accent); opacity: .35; }
.lp-text-light .lp-review--card { background: rgba(255, 255, 255, .08); box-shadow: none; }

.lp-review__text { flex: 1 1 auto; margin-bottom: 20px; font-size: .98rem; }
.lp-review__author { display: flex; align-items: center; gap: 12px; }
.lp-review__author img { width: 48px; height: 48px; object-fit: cover; border-radius: 50%; }
.lp-review__author strong { display: block; font-size: .98rem; }
.lp-review__author span { font-size: .86rem; color: var(--lp-muted); }
.lp-text-light .lp-review__author span { color: rgba(255, 255, 255, .7); }
.lp-review__source { position: absolute; top: 18px; right: 18px; color: var(--lp-muted); }

/* --- команда --- */

.lp-person { display: flex; flex-direction: column; }
.lp-person--card { background: #fff; border-radius: var(--lp-radius); box-shadow: var(--lp-shadow); overflow: hidden; }
.lp-person--card .lp-person__body { padding: 20px 22px 24px; }
.lp-person--round { text-align: center; }
.lp-person--round .lp-person__photo img { width: 168px; height: 168px; border-radius: 50%; margin: 0 auto 16px; }
.lp-person__photo img { display: block; width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.lp-person__name { margin: 0 0 .2em; font-size: 1.1rem; }
.lp-person__position { margin-bottom: 10px; font-size: .9rem; color: var(--lp-accent); font-weight: 600; }
.lp-person__text { font-size: .93rem; color: var(--lp-muted); }
.lp-person__links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 12px; font-size: .88rem; }

/* --- логотипы --- */

.lp-logos__track { display: grid; grid-template-columns: repeat(var(--lp-cols, 6), minmax(0, 1fr)); gap: 20px; align-items: center; }
.lp-logo { display: flex; align-items: center; justify-content: center; padding: 14px; min-height: 76px; }
.lp-logos.is-bordered .lp-logo { border: 1px solid var(--lp-border); border-radius: var(--lp-radius-sm); background: #fff; }
.lp-logo img { max-height: 52px; width: auto; object-fit: contain; }
.lp-logo__text { font-weight: 700; color: var(--lp-muted); font-size: .95rem; text-align: center; }
.lp-logos.is-gray .lp-logo img { filter: grayscale(1); opacity: .7; transition: all .25s ease; }
.lp-logos.is-gray .lp-logo:hover img { filter: none; opacity: 1; }

.lp-logos--marquee { overflow: hidden; }
.lp-logos--marquee .lp-logos__track { display: flex; grid-template-columns: none; width: max-content; animation: lp-marquee 32s linear infinite; }
.lp-logos--marquee .lp-logo { flex: 0 0 auto; width: 190px; }
.lp-logos--marquee:hover .lp-logos__track { animation-play-state: paused; }

@keyframes lp-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 760px) {
	.lp-logos__track { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* --- документы --- */

.lp-docs { display: grid; grid-template-columns: repeat(var(--lp-cols, 4), minmax(0, 1fr)); gap: 22px; }
.lp-docs--list { grid-template-columns: 1fr; gap: 12px; }
.lp-doc { display: flex; flex-direction: column; gap: 12px; }
.lp-docs--card .lp-doc { padding: 18px; background: #fff; border-radius: var(--lp-radius); box-shadow: var(--lp-shadow); }
.lp-docs--list .lp-doc { flex-direction: row; align-items: center; gap: 18px; padding: 14px 18px; border: 1px solid var(--lp-border); border-radius: var(--lp-radius-sm); }
.lp-text-light .lp-docs--card .lp-doc { background: rgba(255, 255, 255, .08); box-shadow: none; }

.lp-doc__preview img { width: 100%; border-radius: var(--lp-radius-sm); aspect-ratio: 3 / 4; object-fit: cover; }
.lp-docs--list .lp-doc__preview img { width: 56px; aspect-ratio: 1 / 1; }
.lp-doc__icon { font-size: 34px; color: var(--lp-accent); }
.lp-doc__body { flex: 1 1 auto; }
.lp-doc__title { font-weight: 700; font-size: .98rem; }
.lp-doc__note { font-size: .85rem; color: var(--lp-muted); }
.lp-doc__link { display: inline-block; margin-top: 8px; font-size: .88rem; font-weight: 700; }

/* --- до и после --- */

.lp-ba { margin: 0; }
.lp-ba__frame { position: relative; overflow: hidden; border-radius: var(--lp-radius); user-select: none; }
.lp-ba__frame img { display: block; width: 100%; }
.lp-ba__before { position: absolute; inset: 0; width: 50%; overflow: hidden; }
.lp-ba__before img { width: auto; max-width: none; height: 100%; object-fit: cover; }
.lp-ba__label { position: absolute; bottom: 14px; padding: 5px 12px; font-size: 12px; font-weight: 700; color: #fff; background: rgba(15, 23, 42, .62); border-radius: 999px; z-index: 3; }
.lp-ba__label--before { left: 14px; }
.lp-ba__label--after { right: 14px; }
.lp-ba__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; margin-left: -1.5px; background: #fff; z-index: 4; pointer-events: none; }
.lp-ba__handle i { position: absolute; top: 50%; left: 50%; width: 40px; height: 40px; margin: -20px 0 0 -20px; background: #fff; border-radius: 50%; box-shadow: 0 2px 10px rgba(0, 0, 0, .3); }
.lp-ba__handle i::before, .lp-ba__handle i::after { content: ''; position: absolute; top: 15px; width: 8px; height: 8px; border: solid var(--lp-dark); border-width: 2px 2px 0 0; }
.lp-ba__handle i::before { left: 10px; transform: rotate(-135deg); }
.lp-ba__handle i::after { right: 10px; transform: rotate(45deg); }
.lp-ba__range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; z-index: 5; }
.lp-ba__title { margin-top: 12px; text-align: center; font-weight: 600; font-size: .95rem; }

/* ================================================================== */
/* МЕДИА                                                              */
/* ================================================================== */

.lp-gallery { display: grid; grid-template-columns: repeat(var(--lp-cols, 4), minmax(0, 1fr)); gap: 18px; }
.lp-gallery--gap-none { gap: 0; }
.lp-gallery--gap-small { gap: 8px; }
.lp-gallery--masonry { display: block; column-count: var(--lp-cols, 4); column-gap: 18px; }
.lp-gallery--masonry .lp-gallery__item { display: block; break-inside: avoid; margin-bottom: 18px; }

.lp-gallery__item { position: relative; display: block; overflow: hidden; border-radius: var(--lp-radius-sm); }
.lp-gallery__item img { display: block; width: 100%; transition: transform .4s ease; }
.lp-gallery__item:hover img { transform: scale(1.05); }
.lp-gallery__caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px 14px 12px; font-size: .88rem; color: #fff; background: linear-gradient(transparent, rgba(15, 23, 42, .75)); }

@media (max-width: 760px) {
	.lp-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.lp-gallery--masonry { column-count: 2; }
}

.lp-video__frame { position: relative; cursor: pointer; background: var(--lp-dark); }
.lp-video__frame img { width: 100%; height: 100%; object-fit: cover; }
.lp-video__play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 74px;
	height: 74px;
	font-size: 24px;
	color: var(--lp-primary);
	background: rgba(255, 255, 255, .92);
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	transition: transform .2s ease;
	z-index: 2;
}
.lp-video__frame:hover .lp-video__play { transform: translate(-50%, -50%) scale(1.08); }
.lp-video__body { margin-top: 14px; }
.lp-video__title { font-weight: 700; }
.lp-video__note { font-size: .88rem; color: var(--lp-muted); }

.lp-banner img { display: block; width: 100%; }
.lp-banner.is-round img { border-radius: var(--lp-radius); }
.lp-banner.is-shadow img { box-shadow: var(--lp-shadow); }

.lp-map { display: grid; gap: 0; }
.lp-map--left  { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.lp-map--right { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
.lp-map--right .lp-map__frame { order: 2; }
.lp-map--left .lp-map__info { order: 2; }
.lp-map__info { padding: 34px; background: #fff; }
.lp-text-light .lp-map__info { background: rgba(255, 255, 255, .08); }
.lp-map__address { margin-bottom: 12px; font-size: 1.05rem; font-weight: 700; }
.lp-map__info .lp-btn { margin-top: 18px; }
.lp-map__frame { position: relative; min-height: var(--lp-map-h, 420px); }
.lp-map__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

@media (max-width: 860px) {
	.lp-map { grid-template-columns: 1fr !important; }
	.lp-map__frame { min-height: 300px; order: 0 !important; }
	.lp-map__info { order: 1 !important; }
}

/* ================================================================== */
/* ПРОДАЖИ                                                            */
/* ================================================================== */

.lp-product { display: flex; flex-direction: column; background: #fff; border-radius: var(--lp-radius); box-shadow: var(--lp-shadow); overflow: hidden; }
.lp-product__image { position: relative; display: block; background: #fff; }
.lp-product__image img { display: block; width: 100%; aspect-ratio: 1 / 1; object-fit: contain; padding: 12px; }
.lp-product__badge { position: absolute; top: 12px; left: 12px; padding: 4px 10px; font-size: 12px; font-weight: 800; color: #fff; background: var(--lp-accent); border-radius: 999px; }
.lp-product__body { display: flex; flex-direction: column; gap: 10px; padding: 16px 18px 20px; flex: 1 1 auto; }
.lp-product__name { font-weight: 700; font-size: .98rem; color: var(--lp-text); }
.lp-product__price { margin-top: auto; font-size: 1.15rem; font-weight: 800; color: var(--lp-primary); }
.lp-product__old { margin-left: 8px; font-size: .85rem; font-weight: 500; color: var(--lp-muted); text-decoration: line-through; }

.lp-pcard { display: grid; gap: 40px; align-items: center; }
.lp-pcard--right { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
.lp-pcard--left  { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.lp-pcard--left .lp-pcard__media { order: 2; }
.lp-pcard__media img { width: 100%; border-radius: var(--lp-radius); background: #fff; }
.lp-pcard__name { margin: 0 0 .4em; font-size: 1.7rem; }
.lp-pcard__bullets { list-style: none; margin: 18px 0; padding: 0; display: grid; gap: 9px; }
.lp-pcard__bullets li { display: flex; align-items: center; gap: 10px; font-size: .96rem; }
.lp-pcard__bullets i { color: var(--lp-accent); }
.lp-pcard__options { display: grid; gap: 16px; margin: 20px 0; }
.lp-pcard__option label { display: block; margin-bottom: 6px; font-weight: 700; font-size: .92rem; }
.lp-pcard__buy { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 22px; }
.lp-pcard__price { font-size: 1.9rem; font-weight: 800; color: var(--lp-primary); }
.lp-pcard__old { margin-left: 10px; font-size: 1rem; font-weight: 500; color: var(--lp-muted); text-decoration: line-through; }
.lp-pcard__qty { width: 92px; }
.lp-pcard__note { margin-top: 14px; font-size: .88rem; color: var(--lp-muted); }

@media (max-width: 860px) {
	.lp-pcard { grid-template-columns: 1fr !important; gap: 24px; }
	.lp-pcard__media { order: 0 !important; }
}

/* --- тарифы --- */

.lp-plan { position: relative; display: flex; flex-direction: column; padding: 32px 28px; background: #fff; border-radius: var(--lp-radius); box-shadow: var(--lp-shadow); }
.lp-plan--flat { box-shadow: none; border: 1px solid var(--lp-border); }
.lp-plan--dark { background: var(--lp-dark); color: #fff; box-shadow: none; }
.lp-plan.is-featured { border: 2px solid var(--lp-primary); transform: translateY(-6px); }
.lp-plan__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); padding: 5px 16px; font-size: 12px; font-weight: 800; color: #fff; background: var(--lp-accent); border-radius: 999px; white-space: nowrap; }
.lp-plan__name { margin: 0 0 .5em; font-size: 1.25rem; }
.lp-plan__price { font-size: 2rem; font-weight: 800; color: var(--lp-primary); line-height: 1.15; }
.lp-plan--dark .lp-plan__price { color: var(--lp-accent); }
.lp-plan__price s { margin-left: 10px; font-size: 1rem; font-weight: 500; color: var(--lp-muted); }
.lp-plan__note { margin-top: 4px; font-size: .86rem; color: var(--lp-muted); }
.lp-plan__text { margin-top: 14px; font-size: .94rem; }
.lp-plan__features { list-style: none; margin: 20px 0; padding: 0; display: grid; gap: 10px; }
.lp-plan__features li { position: relative; padding-left: 26px; font-size: .95rem; }
.lp-plan__features li::before { content: ''; position: absolute; left: 3px; top: 6px; width: 5px; height: 9px; border: solid var(--lp-primary); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.lp-plan__features li.is-off { opacity: .45; text-decoration: line-through; }
.lp-plan__features li.is-off::before { border-color: var(--lp-muted); }
.lp-plan__foot { margin-top: auto; padding-top: 18px; }

/* --- прайс --- */

.lp-price__search { position: relative; max-width: 420px; margin: 0 auto 24px; }
.lp-price__search i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--lp-muted); }
.lp-price__search .lp-input { padding-left: 40px; }

.lp-price__table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--lp-radius); overflow: hidden; }
.lp-price__table th, .lp-price__table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--lp-border); }
.lp-price__table thead th { font-weight: 800; background: var(--lp-light); white-space: nowrap; }
.lp-price__table.is-striped tbody tr:nth-child(even) td { background: rgba(15, 23, 42, .02); }
.lp-price__group td { font-weight: 800; background: var(--lp-primary-soft) !important; color: var(--lp-primary); }
.lp-price__name { font-weight: 600; }
.lp-price__note { display: block; font-size: .82rem; color: var(--lp-muted); }
.lp-price__unit { white-space: nowrap; color: var(--lp-muted); }
.lp-price__value { white-space: nowrap; font-weight: 800; color: var(--lp-primary); }
.lp-price__action { text-align: right; }
.lp-price__footnote { margin-top: 16px; font-size: .88rem; color: var(--lp-muted); }
.lp-price tr.is-hidden { display: none; }

/* --- калькулятор --- */

.lp-calc { padding: 32px; background: #fff; border-radius: var(--lp-radius); box-shadow: var(--lp-shadow); }
.lp-text-light .lp-calc { background: rgba(255, 255, 255, .08); box-shadow: none; }
.lp-calc__fields { display: grid; grid-template-columns: repeat(var(--lp-cols, 2), minmax(0, 1fr)); gap: 22px; }
.lp-calc__label { display: block; margin-bottom: 8px; font-weight: 700; font-size: .94rem; }
.lp-calc__options { display: grid; gap: 6px; }
.lp-calc__range { display: flex; align-items: center; gap: 14px; }
.lp-calc__range input { flex: 1 1 auto; }
.lp-calc__range output { min-width: 62px; font-weight: 800; color: var(--lp-primary); }
.lp-calc__result { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--lp-border); }
.lp-calc__total-label { display: block; font-size: .88rem; color: var(--lp-muted); }
.lp-calc__total-value { font-size: 2rem; font-weight: 800; color: var(--lp-primary); }
.lp-calc__note { margin-top: 16px; font-size: .86rem; color: var(--lp-muted); }

@media (max-width: 640px) {
	.lp-calc { padding: 22px 18px; }
	.lp-calc__fields { grid-template-columns: 1fr; }
}

/* --- таймер --- */

.lp-countdown { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 28px; text-align: center; }
.lp-countdown--card { padding: 34px; background: #fff; border-radius: var(--lp-radius); box-shadow: var(--lp-shadow); }
.lp-text-light .lp-countdown--card { background: rgba(255, 255, 255, .1); box-shadow: none; }
.lp-countdown--inline { justify-content: space-between; text-align: left; }
.lp-countdown__body { flex: 1 1 320px; }
.lp-countdown__text { margin-bottom: 16px; }
.lp-countdown__clock { display: flex; justify-content: center; gap: 12px; }
.lp-countdown--inline .lp-countdown__clock { justify-content: flex-start; }
.lp-countdown__cell { min-width: 76px; padding: 12px 8px; background: var(--lp-primary-soft); border-radius: var(--lp-radius-sm); }
.lp-text-light .lp-countdown__cell { background: rgba(255, 255, 255, .16); }
.lp-countdown__cell span { display: block; font-family: var(--lp-font-heading); font-size: 2rem; font-weight: 800; line-height: 1.05; font-variant-numeric: tabular-nums; }
.lp-countdown__cell small { display: block; margin-top: 2px; font-size: 11px; text-transform: uppercase; letter-spacing: .04em; opacity: .7; }
.lp-countdown__over { font-size: 1.1rem; font-weight: 700; }

@media (max-width: 640px) {
	.lp-countdown__cell { min-width: 64px; }
	.lp-countdown__cell span { font-size: 1.5rem; }
}

/* ================================================================== */
/* ЗАЯВКИ                                                             */
/* ================================================================== */

.lp-cta { display: grid; gap: 30px; align-items: center; text-align: center; }
.lp-cta--split { grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); text-align: left; }
.lp-cta--inline { grid-template-columns: minmax(0, 1fr) auto; text-align: left; }
.lp-cta--card { padding: 40px; background: #fff; border-radius: var(--lp-radius); box-shadow: var(--lp-shadow); }
.lp-cta__media img { width: 100%; border-radius: var(--lp-radius); }
.lp-cta__text { font-size: 1.1rem; margin-bottom: 24px; }
.lp-cta__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.lp-cta:not(.lp-cta--split):not(.lp-cta--inline) .lp-cta__actions { justify-content: center; }
.lp-cta__note { margin-top: 14px; font-size: .88rem; opacity: .75; }

@media (max-width: 860px) {
	.lp-cta { grid-template-columns: 1fr !important; text-align: center; }
	.lp-cta__actions { justify-content: center; }
}

.lp-formsec { display: grid; gap: 40px; align-items: start; }
.lp-formsec--split { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); }
.lp-formsec--wide { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
.lp-formsec--card .lp-formsec__form,
.lp-formsec--plain .lp-formsec__form { max-width: 620px; margin: 0 auto; }
.lp-formsec__bullets { list-style: none; margin: 22px 0; padding: 0; display: grid; gap: 12px; }
.lp-formsec__bullets li { display: flex; align-items: center; gap: 11px; font-size: 1.1rem; }
.lp-formsec__bullets i { color: var(--lp-accent); }
.lp-formsec__image { margin-top: 20px; }
.lp-formsec__image img { width: 100%; border-radius: var(--lp-radius); }
.lp-formsec__intro { margin-bottom: 20px; text-align: center; }

@media (max-width: 860px) {
	.lp-formsec { grid-template-columns: 1fr !important; gap: 26px; }
}

.lp-contacts--with-form { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: 40px; align-items: start; }
.lp-contacts__list { display: grid; grid-template-columns: repeat(var(--lp-cols, 3), minmax(0, 1fr)); gap: 18px; }
.lp-contacts--with-form .lp-contacts__list { grid-template-columns: 1fr 1fr; }
.lp-contact { display: flex; align-items: center; gap: 15px; }
.lp-contact--card { padding: 20px; background: #fff; border-radius: var(--lp-radius); box-shadow: var(--lp-shadow); }
.lp-text-light .lp-contact--card { background: rgba(255, 255, 255, .08); box-shadow: none; }
.lp-contact__icon { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; width: 48px; height: 48px; font-size: 20px; color: var(--lp-primary); background: var(--lp-primary-soft); border-radius: 50%; }
.lp-contact__icon img { width: 24px; height: 24px; object-fit: contain; }
.lp-contact__label { font-size: .82rem; color: var(--lp-muted); }
.lp-contact__value { font-weight: 700; font-size: 1.02rem; color: inherit; }
.lp-contacts__text { margin-top: 22px; }

@media (max-width: 860px) {
	.lp-contacts--with-form { grid-template-columns: 1fr; }
	.lp-contacts__list, .lp-contacts--with-form .lp-contacts__list { grid-template-columns: 1fr; }
}

.lp-socials { text-align: center; }
.lp-socials__text { margin-bottom: 20px; }
.lp-socials__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.lp-social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 56px;
	height: 56px;
	font-size: 22px;
	color: #fff;
	background: var(--lp-social, var(--lp-primary));
	border-radius: 50%;
	transition: transform .2s ease;
}
.lp-social:hover { color: #fff; transform: translateY(-3px); }
.lp-social img { width: 26px; height: 26px; object-fit: contain; }
.lp-socials--square .lp-social { border-radius: var(--lp-radius-sm); }
.lp-socials--wide .lp-social { width: auto; height: auto; padding: 13px 24px; border-radius: var(--lp-btn-radius); font-size: 16px; font-weight: 700; }
.lp-socials--small .lp-social { width: 44px; height: 44px; font-size: 18px; }
.lp-socials--large .lp-social { width: 68px; height: 68px; font-size: 27px; }
.lp-socials--wide.lp-socials--large .lp-social { width: auto; height: auto; }

/* ================================================================== */
/* ФОРМА                                                              */
/* ================================================================== */

.lp-form { padding: 28px; background: #fff; border-radius: var(--lp-radius); box-shadow: var(--lp-shadow); color: var(--lp-text); }
.lp-modal .lp-form, .lp-popup .lp-form { box-shadow: none; }
.lp-form__title { margin-bottom: 8px; font-family: var(--lp-font-heading); font-size: 1.4rem; font-weight: 800; }
.lp-form__text { margin-bottom: 20px; font-size: .94rem; color: var(--lp-muted); }
.lp-form__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 16px; }
.lp-form__field { grid-column: span 12; }
.lp-form__field--6 { grid-column: span 6; }
.lp-form__field--4 { grid-column: span 4; }
.lp-form__field--3 { grid-column: span 3; }
.lp-form__field--8 { grid-column: span 8; }
.lp-form__label { display: block; margin-bottom: 6px; font-weight: 600; font-size: .9rem; }
.lp-form__label span { color: #ef4444; }
.lp-form__help { margin-top: 5px; font-size: .8rem; color: var(--lp-muted); }
.lp-form__hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.lp-form__foot { margin-top: 20px; }
.lp-form__agreement { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 16px; font-size: .84rem; color: var(--lp-muted); }
.lp-form__alert { margin-bottom: 0; }
.lp-form__alert:not(:empty) { margin-bottom: 16px; padding: 12px 16px; font-size: .9rem; border-radius: var(--lp-radius-sm); background: #fef2f2; color: #b91c1c; }
.lp-form .lp-input,
.lp-form input[type="text"],
.lp-form input[type="tel"],
.lp-form input[type="email"],
.lp-form input[type="number"],
.lp-form input[type="date"],
.lp-form input[type="time"],
.lp-form input[type="file"],
.lp-form textarea,
.lp-form select {
	width: 100%;
	padding: 12px 14px;
	font-family: inherit;
	font-size: 15px;
	color: var(--lp-text);
	background: #fff;
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius-sm);
}

.lp-form textarea { min-height: 110px; resize: vertical; }
.lp-form .has-error input,
.lp-form .has-error textarea,
.lp-form .has-error select { border-color: #ef4444; }
.lp-form__error { margin-top: 5px; font-size: .8rem; color: #ef4444; }
.lp-form__success { padding: 34px 24px; text-align: center; }
.lp-form__success i { font-size: 46px; color: #10b981; }
.lp-form__success h4 { margin: 16px 0 8px; }
.lp-form--inline .lp-form__grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }

@media (max-width: 620px) {
	.lp-form__field--6, .lp-form__field--4, .lp-form__field--3, .lp-form__field--8 { grid-column: span 12; }
	.lp-form { padding: 22px 18px; }
}

/* ================================================================== */
/* ШАПКА, ПОДВАЛ, ПАНЕЛЬ                                              */
/* ================================================================== */

.lp-head { position: relative; z-index: 40; padding: 14px 0; background: #fff; border-bottom: 1px solid var(--lp-border); }
.lp-head--dark { background: var(--lp-dark); color: #fff; border-bottom-color: rgba(255, 255, 255, .12); }
.lp-head--transparent { position: absolute; left: 0; right: 0; top: 0; background: transparent; border-bottom: 0; color: #fff; }
.lp-head--fixed { position: sticky; top: 0; }
.lp-head--transparent.lp-head--fixed { position: absolute; }
.lp-head.is-stuck { position: fixed; left: 0; right: 0; top: 0; background: #fff; color: var(--lp-text); box-shadow: 0 2px 14px rgba(15, 23, 42, .1); animation: lp-drop .25s ease; }
.lp-head--dark.is-stuck { background: var(--lp-dark); color: #fff; }

@keyframes lp-drop { from { transform: translateY(-100%); } to { transform: translateY(0); } }

.lp-head__inner { display: flex; align-items: center; gap: 26px; }
.lp-head__logo { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 1.1rem; color: inherit; }
.lp-head__logo img { max-height: 42px; width: auto; }
.lp-head__menu { display: flex; gap: 24px; margin-left: auto; }
.lp-head__menu a { color: inherit; font-weight: 600; font-size: .94rem; }
.lp-head__menu a:hover { color: var(--lp-primary); }
.lp-head__side { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.lp-head__menu + .lp-head__side { margin-left: 0; }
.lp-head__phone { color: inherit; text-align: right; line-height: 1.2; }
.lp-head__phone span { display: block; font-weight: 800; font-size: 1.02rem; white-space: nowrap; }
.lp-head__phone small { font-size: .74rem; opacity: .7; }
.lp-head__burger { display: none; width: 40px; height: 34px; padding: 7px 6px; background: none; border: 0; cursor: pointer; }
.lp-head__burger span { display: block; height: 2px; margin: 4px 0; background: currentColor; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.lp-head.is-open .lp-head__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.lp-head.is-open .lp-head__burger span:nth-child(2) { opacity: 0; }
.lp-head.is-open .lp-head__burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
	.lp-head__burger { display: block; }
	.lp-head__menu {
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		flex-direction: column;
		gap: 0;
		padding: 8px 20px;
		background: #fff;
		color: var(--lp-text);
		box-shadow: var(--lp-shadow);
		display: none;
	}
	.lp-head.is-open .lp-head__menu { display: flex; }
	.lp-head__menu a { padding: 12px 0; border-bottom: 1px solid var(--lp-border); }
	.lp-head__phone small { display: none; }
}

@media (max-width: 620px) {
	.lp-head__phone span { font-size: .9rem; }
	.lp-head__side .lp-btn { display: none; }
}

.lp-crumbs { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 0; padding: 0; font-size: .95rem; color: var(--lp-muted); }
.lp-crumbs li + li::before { content: '/'; margin-right: 8px; opacity: .5; }

.lp-foot { padding: 42px 0; background: var(--lp-dark); color: rgba(255, 255, 255, .78); }
.lp-foot__inner { display: grid; gap: 18px; text-align: center; }
.lp-foot__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.lp-foot__links a { color: rgba(255, 255, 255, .8); font-size: .92rem; }
.lp-foot__links a:hover { color: #fff; }
.lp-foot__copy { font-size: .84rem; opacity: .6; }

.lp-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 60;
	padding: 12px 0;
	background: var(--lp-dark);
	color: #fff;
	transform: translateY(110%);
	transition: transform .3s ease;
}

.lp-bar.is-visible { transform: none; }
.lp-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.lp-bar__text { font-weight: 700; }

@media (max-width: 620px) {
	.lp-bar__text { display: none; }
	.lp-bar .lp-btn { width: 100%; }
}

.lp-preview-bar { padding: 10px 20px; text-align: center; font-size: 14px; font-weight: 700; color: #78350f; background: #fef3c7; }

/* ================================================================== */
/* МОДАЛЬНЫЕ ОКНА                                                     */
/* ================================================================== */

.lp-modal,
.lp-lightbox,
.lp-popup {
	position: fixed;
	inset: 0;
	z-index: 9000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.lp-modal[hidden], .lp-lightbox[hidden], .lp-popup[hidden] { display: none; }

.lp-modal__backdrop,
.lp-popup__backdrop { position: absolute; inset: 0; background: rgba(8, 12, 22, .68); backdrop-filter: blur(2px); }

.lp-modal__window,
.lp-popup__window {
	position: relative;
	width: 100%;
	max-width: 560px;
	max-height: 92vh;
	overflow-y: auto;
	background: var(--lp-bg);
	border-radius: var(--lp-radius);
	box-shadow: 0 24px 64px rgba(8, 12, 22, .38);
	animation: lp-pop .25s ease;
}

@keyframes lp-pop { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }

.lp-modal__close,
.lp-popup__close {
	position: absolute;
	top: 10px;
	right: 12px;
	z-index: 3;
	width: 34px;
	height: 34px;
	font-size: 26px;
	line-height: 1;
	color: var(--lp-muted);
	background: none;
	border: 0;
	cursor: pointer;
}

.lp-modal__close:hover, .lp-popup__close:hover { color: var(--lp-text); }
.lp-modal__body { padding: 6px; }

.lp-popup--bottom-right, .lp-popup--bottom-left { align-items: flex-end; }
.lp-popup--bottom-right { justify-content: flex-end; }
.lp-popup--bottom-left { justify-content: flex-start; }
.lp-popup--bottom-right .lp-popup__backdrop,
.lp-popup--bottom-left .lp-popup__backdrop { background: none; backdrop-filter: none; pointer-events: none; }
.lp-popup__body > .lp-sec:first-child { border-radius: var(--lp-radius) var(--lp-radius) 0 0; }

@media (max-width: 640px) {
	.lp-popup--nomobile { display: none !important; }
}

.lp-lightbox { background: rgba(8, 12, 22, .93); }
.lp-lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--lp-radius-sm); }
.lp-lightbox__close { position: absolute; top: 18px; right: 22px; font-size: 40px; line-height: 1; color: #fff; background: none; border: 0; cursor: pointer; opacity: .8; }
.lp-lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 34px; line-height: 1; color: #fff; background: rgba(255, 255, 255, .12); border: 0; border-radius: 50%; cursor: pointer; }
.lp-lightbox__nav:hover { background: rgba(255, 255, 255, .24); }
.lp-lightbox__nav--prev { left: 18px; }
.lp-lightbox__nav--next { right: 18px; }

.lp-noscroll { overflow: hidden; }

/* ================================================================== */
/* ВСТРАИВАНИЕ В ТЕМУ МАГАЗИНА                                        */
/* ================================================================== */

.lp-embed { --lp-gap: 56px; }
.lp-embed .lp-container--full { padding: 0; }
.lp-page--header-none .lp-main,
.lp-page--header-landing .lp-main { min-height: 40vh; }
