

/* Start:/local/templates/linkpass/css/all.css?177780427668028*/

/* =========================================================
   [БЛОК: Переменные, Reset, Базовые стили и утилиты]
   ========================================================= */
:root {
	--lp-color-primary: #6366f1;
	--lp-color-primary-hover: #4f46e5;
	--lp-color-success: #10b981;
	--lp-color-warning: #f59e0b;
	--lp-color-error: #ef4444;
	--lp-color-surface: #0f0f23;
	--lp-color-surface-light: #1a1a2e;
	--lp-color-surface-lighter: #2d2d4d;
	--lp-color-text-primary: #f8fafc;
	--lp-color-text-secondary: #cbd5e1;
	--lp-color-text-tertiary: #94a3b8;
	--lp-color-border: rgba(255, 255, 255, 0.1);
	--lp-shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
	--lp-shadow-xl: 0 35px 60px -12px rgba(0, 0, 0, 0.6);
	--lp-border-radius: 16px;
	--lp-border-radius-lg: 24px;
	--lp-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

	/* Служебные переменные для адаптива */
	--lp-header-offset: 88px; /* отступ для якорей под фиксированной шапкой */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	background: var(--lp-color-surface);
	color: var(--lp-color-text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a, button { outline: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--lp-color-primary); outline-offset: 2px; border-radius: 8px; }

/* Секции с якорями не прячутся под фиксированным хедером */
section[id] { scroll-margin-top: var(--lp-header-offset); }

/* =========================================================
   [БЛОК: Контейнер]
   ========================================================= */
.lp-container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 24px;
	width: 100%;
}

/* =========================================================
   [БЛОК: Header / Навигация]
   ========================================================= */
.lp-header {
	position: fixed; top: 0; left: 0; right: 0;
	background: rgba(15, 15, 35, 0.95);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--lp-color-border);
	z-index: 1000;
	padding: 16px 0;
}
.lp-header__content { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.lp-header__logo {
	display: flex; align-items: center; gap: 12px;
	color: var(--lp-color-text-primary); font-weight: 700; font-size: 1.25rem; text-decoration: none;
	white-space: nowrap;
}
.lp-header__logo svg { color: var(--lp-color-primary); }

.lp-header__nav { display: flex; align-items: center; gap: 40px; }
.lp-header__nav-link {
	color: var(--lp-color-text-secondary); text-decoration: none; font-weight: 500; position: relative;
	transition: var(--lp-transition);
}
.lp-header__nav-link:hover { color: var(--lp-color-text-primary); }
.lp-header__nav-link::after {
	content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px;
	background: var(--lp-color-primary); transition: width 0.3s ease;
}
.lp-header__nav-link:hover::after { width: 100%; }

.lp-header__actions { display: flex; align-items: center; gap: 12px; }
.lp-header__mobile-toggle {
	display: none; background: none; border: none;
	color: var(--lp-color-text-primary); font-size: 1.5rem; cursor: pointer;
}

/* =========================================================
   [БЛОК: Мобильное меню]
   ========================================================= */
.lp-mobile-nav {
	position: fixed; inset: 0;
	background: var(--lp-color-surface);
	z-index: 1001; /* перекрывает хедер */
	padding: 80px 24px 40px;
	transform: translateX(-100%); transition: transform 0.3s ease;
}
.lp-mobile-nav.active { transform: translateX(0); }
.lp-mobile-nav__close {
	position: absolute; top: 24px; right: 24px;
	background: none; border: none; color: var(--lp-color-text-primary); font-size: 1.5rem; cursor: pointer;
}
.lp-mobile-nav__links { display: flex; flex-direction: column; gap: 24px; }
.lp-mobile-nav__link {
	color: var(--lp-color-text-primary); text-decoration: none; font-size: 1.125rem; font-weight: 500;
	padding: 12px 0; border-bottom: 1px solid var(--lp-color-border);
}

/* =========================================================
   [БЛОК: Hero]
   ========================================================= */
.lp-hero {
	position: relative; min-height: 100vh; display: flex; align-items: center;
	background: var(--lp-color-surface); overflow: hidden; isolation: isolate; padding-top: 80px;
}
.lp-hero__background { position: absolute; inset: 0; z-index: -1; }
.lp-hero__gradient {
	position: absolute; width: 100%; height: 100%;
	background:
		radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 40% 40%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
	animation: lp-gradient-move 20s ease-in-out infinite;
}
.lp-hero__shape { position: absolute; border-radius: 50%; filter: blur(40px); opacity: 0.3; animation: lp-float 15s ease-in-out infinite; }
.lp-hero__shape--1 { width: 300px; height: 300px; background: var(--lp-color-primary); top: 10%; left: 10%; animation-delay: 0s; }
.lp-hero__shape--2 { width: 200px; height: 200px; background: #ec4899; top: 60%; right: 15%; animation-delay: -5s; }
.lp-hero__shape--3 { width: 150px; height: 150px; background: #8b5cf6; bottom: 20%; left: 20%; animation-delay: -10s; }

.lp-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 500px); gap: 80px; align-items: center; padding: 120px 0 80px; }
.lp-hero__content { max-width: 600px; }
.lp-hero__badge { display: inline-flex; background: rgba(99, 102, 241, 0.1); border: 1px solid rgba(99, 102, 241, 0.3); border-radius: 100px; padding: 8px 16px; margin-bottom: 32px; }
.lp-hero__badge-text { font-size: 0.875rem; font-weight: 600; color: var(--lp-color-primary); text-transform: uppercase; letter-spacing: 0.05em; }
.lp-hero__title { font-size: clamp(2.1rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; color: var(--lp-color-text-primary); margin-bottom: 24px; word-break: break-word; }
.lp-hero__title-line { display: block; }
.lp-hero__title-line--accent {
	background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
	-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.lp-hero__description { font-size: 1.125rem; line-height: 1.6; color: var(--lp-color-text-secondary); margin-bottom: 48px; max-width: 500px; }
.lp-hero__actions { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 48px; }
.lp-button {
	display: inline-flex; align-items: center; gap: 12px; padding: 18px 32px; border-radius: var(--lp-border-radius);
	font-weight: 600; font-size: 1rem; text-decoration: none; transition: var(--lp-transition); border: 2px solid transparent;
	cursor: pointer; position: relative; overflow: hidden;
}
.lp-button::before {
	content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent); transition: left 0.5s;
}
.lp-button:hover::before { left: 100%; }
.lp-button--primary { background: var(--lp-color-primary); color: #fff; box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3); justify-content: center; }
.lp-button--primary:hover { background: var(--lp-color-primary-hover); transform: translateY(-2px); box-shadow: 0 20px 40px rgba(99, 102, 241, 0.4); }
.lp-button--ghost { background: transparent; color: var(--lp-color-text-primary); border-color: var(--lp-color-border); }
.lp-button--ghost:hover { background: rgba(255, 255, 255, 0.05); transform: translateY(-2px); border-color: var(--lp-color-primary); }
.lp-button__icon { display: flex; align-items: center; justify-content: center; }
.lp-hero__meta { display: flex; gap: 24px; flex-wrap: wrap; }
.lp-hero__meta-item { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--lp-color-text-secondary); }
.lp-hero__meta-icon { font-size: 1rem; }
.lp-hero__visual { display: flex; justify-content: center; align-items: center; }
.lp-hero__demo { width: 100%; max-width: 400px; }

/* =========================================================
   [БЛОК: Демонстрация (видео окно в Hero)]
   ========================================================= */
.lp-hero__presentation { display: flex; justify-content: center; align-items: center; width: 100%; max-width: 600px; }
.lp-app-window {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 24px; backdrop-filter: blur(20px);
	box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.6);
	transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
	transition: var(--lp-transition); width: 100%;
}
.lp-video-container {
	position: relative; width: 100%; height: 280px; border-radius: 16px; overflow: hidden;
	background: #000; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.lp-video-wrapper { position: relative; width: 100%; height: 100%; border-radius: 16px; overflow: hidden; }
.lp-video { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; display: block; }
.lp-video-fallback {
	position: absolute; inset: 0; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
	display: none; align-items: center; justify-content: center; border-radius: 16px;
}
.lp-fallback-content { text-align: center; color: white; }
.lp-fallback-icon { font-size: 3rem; margin-bottom: 1rem; }
.lp-video-glow {
	position: absolute; inset: 0;
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.1) 50%, transparent 100%);
	pointer-events: none;
}
.lp-video-shine {
	position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
	animation: lp-shine-sweep 6s ease-in-out infinite; pointer-events: none;
}
.lp-video-sound {
	position: absolute; bottom: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%;
	background: rgba(0,0,0,0.7); border: 1px solid rgba(255,255,255,0.2); color: white;
	display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; backdrop-filter: blur(10px);
}
.lp-video-sound:hover { background: rgba(99, 102, 241, 0.8); transform: scale(1.06); }
.lp-video-sound.muted { opacity: 0.85; }

/* =========================================================
   [БЛОК: Features (Возможности)]
   ========================================================= */
.lp-features { padding: 120px 0; background: var(--lp-color-surface-light); position: relative; }
.lp-features__header { text-align: center; margin-bottom: 80px; }
.lp-features__suptitle {
	display: inline-block; color: var(--lp-color-primary); font-size: 0.875rem; font-weight: 600; text-transform: uppercase;
	letter-spacing: 0.05em; margin-bottom: 16px;
}
.lp-features__title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.2; color: var(--lp-color-text-primary); margin-bottom: 24px; }
.lp-features__description { font-size: 1.125rem; color: var(--lp-color-text-secondary); max-width: 600px; margin: 0 auto; }
.lp-features__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; }
.lp-feature-card {
	background: rgba(255, 255, 255, 0.03); border: 1px solid var(--lp-color-border);
	border-radius: var(--lp-border-radius-lg); padding: 40px; transition: var(--lp-transition);
	position: relative; overflow: hidden;
}
.lp-feature-card::before {
	content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
	background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.05), transparent);
	transition: left 0.6s ease;
}
.lp-feature-card:hover::before { left: 100%; }
.lp-feature-card:hover { transform: translateY(-8px); border-color: rgba(99, 102, 241, 0.3); box-shadow: var(--lp-shadow-lg); }
.lp-feature-card__icon {
	width: 64px; height: 64px; background: rgba(99, 102, 241, 0.1); border-radius: 16px;
	display: flex; align-items: center; justify-content: center; margin-bottom: 24px; font-size: 28px;
}
.lp-feature-card__title { font-size: 1.5rem; font-weight: 600; color: var(--lp-color-text-primary); margin-bottom: 16px; }
.lp-feature-card__description { color: var(--lp-color-text-secondary); line-height: 1.6; margin-bottom: 24px; }
.lp-feature-card__list { list-style: none; }
.lp-feature-card__list-item {
	display: flex; align-items: center; gap: 12px; color: var(--lp-color-text-tertiary);
	margin-bottom: 12px; font-size: 0.875rem;
}
.lp-feature-card__list-item::before { content: '✓'; color: var(--lp-color-success); font-weight: 600; }

/* =========================================================
   [БЛОК: Stats]
   ========================================================= */
.lp-stats { padding: 80px 0; background: var(--lp-color-surface); }
.lp-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.lp-stat-card { text-align: center; padding: 40px 20px; }
.lp-stat-card__number {
	font-size: 3rem; font-weight: 800;
	background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
	-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 8px;
}
.lp-stat-card__label { color: var(--lp-color-text-secondary); font-size: 1rem; font-weight: 500; }

/* =========================================================
   [БЛОК: Security]
   ========================================================= */
.lp-security { 
padding: 120px 0; 
background: var(--lp-color-surface-light); 
box-sizing: border-box;
}

.lp-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
box-sizing: border-box;
}

.lp-security__header { 
text-align: center; 
margin-bottom: 80px; 
box-sizing: border-box;
}

.lp-security__suptitle { 
display: inline-block; 
color: var(--lp-color-primary); 
font-size: 0.875rem; 
font-weight: 600; 
text-transform: uppercase; 
letter-spacing: 0.05em; 
margin-bottom: 16px; 
}

.lp-security__title { 
font-size: clamp(2rem, 4vw, 3rem); 
font-weight: 700; 
line-height: 1.2; 
color: var(--lp-color-text-primary); 
margin-bottom: 24px; 
}

.lp-security__description { 
font-size: 1.125rem; 
color: var(--lp-color-text-secondary); 
max-width: 600px; 
margin: 0 auto; 
}

.lp-security__grid { 
display: grid; 
grid-template-columns: repeat(2, 1fr); 
gap: 40px; 
box-sizing: border-box;
}

.lp-security-metric {
background: rgba(255, 255, 255, 0.03); 
border: 1px solid var(--lp-color-border);
border-radius: var(--lp-border-radius-lg); 
padding: 40px; 
transition: var(--lp-transition);
box-sizing: border-box;
width: 100%;
overflow: hidden;
}

.lp-security-metric:hover { 
border-color: rgba(99, 102, 241, 0.3); 
transform: translateY(-5px); 
box-shadow: var(--lp-shadow-lg); 
}

.lp-security-metric__header { 
display: flex; 
align-items: center; 
gap: 16px; 
margin-bottom: 24px; 
box-sizing: border-box;
}

.lp-security-metric__icon {
width: 60px; 
height: 60px; 
display: flex; 
align-items: center; 
justify-content: center;
background: rgba(99, 102, 241, 0.1); 
border-radius: 16px; 
font-size: 24px;
flex-shrink: 0;
box-sizing: border-box;
}

.lp-security-metric__title { 
font-size: 1.5rem; 
font-weight: 600; 
color: var(--lp-color-text-primary); 
margin: 0;
word-wrap: break-word;
}

.lp-security-metric__description { 
color: var(--lp-color-text-secondary); 
line-height: 1.6; 
margin-bottom: 24px; 
word-wrap: break-word;
}

.lp-security-metric__stats { 
display: grid; 
grid-template-columns: repeat(2, 1fr); 
gap: 20px; 
box-sizing: border-box;
}

.lp-security-stat { 
text-align: center; 
padding: 20px; 
background: rgba(255, 255, 255, 0.02); 
border-radius: var(--lp-border-radius); 
box-sizing: border-box;
word-wrap: break-word;
}

.lp-security-stat__value { 
font-size: 2rem; 
font-weight: 700; 
margin-bottom: 8px; 
word-wrap: break-word;
}

.lp-security-stat__value--safe { color: var(--lp-color-success); }
.lp-security-stat__value--warning { color: var(--lp-color-warning); }
.lp-security-stat__value--danger { color: var(--lp-color-error); }

.lp-security-stat__label { 
color: var(--lp-color-text-tertiary); 
font-size: 0.875rem; 
word-wrap: break-word;
}

.lp-security-metric__explanation {
margin-top: 24px; 
padding: 20px; 
background: rgba(255, 255, 255, 0.02); 
border-radius: var(--lp-border-radius);
border-left: 4px solid var(--lp-color-primary);
box-sizing: border-box;
word-wrap: break-word;
}

.lp-security-metric__explanation p { 
color: var(--lp-color-text-secondary); 
font-size: 0.95rem; 
line-height: 1.5; 
margin: 0 0 12px 0;
word-wrap: break-word;
}

.lp-security-metric__explanation p:last-child {
margin-bottom: 0;
}

/* Мобильные устройства 320px - 767px */
@media (max-width: 767px) {
.lp-security { 
padding: 60px 0; 
}

.lp-container {
padding: 0 16px;
}

.lp-security__header { 
margin-bottom: 48px; 
}

.lp-security__suptitle { 
font-size: 0.75rem; 
margin-bottom: 12px; 
}

.lp-security__title { 
font-size: clamp(1.75rem, 4vw, 2.5rem); 
margin-bottom: 16px; 
}

.lp-security__description { 
font-size: 1rem; 
max-width: 100%; 
}

.lp-security__grid { 
grid-template-columns: 1fr; 
gap: 24px; 
}

.lp-security-metric {
padding: 20px; 
margin: 0;
min-width: 0;
}

.lp-security-metric:hover { 
transform: translateY(-2px); 
}

.lp-security-metric__header { 
gap: 12px; 
margin-bottom: 16px; 
}

.lp-security-metric__icon {
width: 44px; 
height: 44px; 
border-radius: 12px; 
font-size: 18px;
}

.lp-security-metric__title { 
font-size: 1.125rem; 
line-height: 1.3;
}

.lp-security-metric__description { 
font-size: 0.9rem;
margin-bottom: 16px; 
line-height: 1.5;
}

.lp-security-metric__stats { 
grid-template-columns: 1fr; 
gap: 12px; 
}

.lp-security-stat { 
padding: 16px 12px; 
}

.lp-security-stat__value { 
font-size: 1.375rem; 
margin-bottom: 6px; 
}

.lp-security-stat__label { 
font-size: 0.75rem; 
line-height: 1.3;
}

.lp-security-metric__explanation {
margin-top: 16px; 
padding: 16px; 
border-left: 3px solid var(--lp-color-primary);
}

.lp-security-metric__explanation p { 
font-size: 0.8rem; 
margin-bottom: 8px;
line-height: 1.4;
}
}

/* Планшеты 768px - 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
.lp-security { 
padding: 80px 0; 
}

.lp-security__header { 
margin-bottom: 60px; 
}

.lp-security__grid { 
gap: 32px; 
}

.lp-security-metric {
padding: 32px; 
}

.lp-security-metric__header { 
gap: 16px; 
margin-bottom: 24px; 
}

.lp-security-metric__icon {
width: 56px; 
height: 56px; 
border-radius: 14px; 
font-size: 22px;
}

.lp-security-metric__title { 
font-size: 1.375rem; 
}

.lp-security-metric__description { 
font-size: 1rem;
margin-bottom: 24px; 
}

.lp-security-metric__stats { 
gap: 16px; 
}

.lp-security-stat { 
padding: 20px; 
}

.lp-security-stat__value { 
font-size: 1.75rem; 
margin-bottom: 8px; 
}

.lp-security-stat__label { 
font-size: 0.85rem; 
}

.lp-security-metric__explanation {
margin-top: 24px; 
padding: 20px; 
}

.lp-security-metric__explanation p { 
font-size: 0.9rem; 
margin-bottom: 16px;
}
}

/* Большие экраны 1440px+ */
@media (min-width: 1440px) {
.lp-security__grid { 
gap: 48px; 
}

.lp-security-metric {
padding: 48px; 
}
}

/* Фикс для очень маленьких экранов */
@media (max-width: 360px) {
.lp-container {
padding: 0 12px;
}

.lp-security-metric {
padding: 16px;
}

.lp-security-metric__header {
flex-direction: column;
text-align: center;
gap: 8px;
}

.lp-security-metric__icon {
width: 40px;
height: 40px;
font-size: 16px;
}

.lp-security-stat {
padding: 12px 8px;
}

.lp-security-stat__value {
font-size: 1.25rem;
}
}
/* =========================================================
   [БЛОК: Open Source]
   ========================================================= */
.lp-opensource { padding: 120px 0; background: var(--lp-color-surface); position: relative; }
.lp-opensource__content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.lp-opensource__text { max-width: 500px; }
.lp-opensource__title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.2; color: var(--lp-color-text-primary); margin-bottom: 24px; }
.lp-opensource__description { font-size: 1.125rem; line-height: 1.7; color: var(--lp-color-text-secondary); margin-bottom: 32px; }
.lp-opensource__features { list-style: none; margin-bottom: 40px; }
.lp-opensource__feature { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; color: var(--lp-color-text-secondary); }
.lp-opensource__feature::before { content: '🔓'; font-size: 1.2rem; }
.lp-opensource__visual { display: flex; justify-content: center; }
.lp-opensource__graphic {
	width: 100%; max-width: 400px; background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--lp-color-border); border-radius: var(--lp-border-radius-lg);
	padding: 40px; backdrop-filter: blur(10px);
}
.lp-graphic { display: flex; flex-direction: column; gap: 20px; }
.lp-graphic__item { display: flex; flex-direction: column; gap: 10px; }
.lp-graphic__label { display: flex; justify-content: space-between; font-size: 0.95rem; color: var(--lp-color-text-secondary); }
.lp-graphic__bar {
	height: 8px; background: rgba(255, 255, 255, 0.1); border-radius: 4px;
	overflow: hidden; position: relative; border: 1px solid rgba(255, 255, 255, 0.05);
}
.lp-graphic__bar-fill {
	height: 100%;
	width: var(--target-width, 100%);
	background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 25%, #ec4899 50%, #f59e0b 75%, #10b981 100%);
	border-radius: 4px;
	box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
	position: relative; overflow: hidden;
	animation: lp-graphic-fill 2s ease-out;
}
.lp-graphic__bar-fill::after {
	content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	animation: lp-shine 3s ease-in-out infinite;
}
.lp-graphic__bar:hover .lp-graphic__bar-fill { box-shadow: 0 0 30px rgba(99, 102, 241, 0.5); transform: scaleY(1.1); transition: all 0.3s ease; }
/* Индивидуальные цвета + целевые ширины */
.lp-graphic__bar--1 .lp-graphic__bar-fill { --target-width: 100%; background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #c084fc 100%); }
.lp-graphic__bar--2 .lp-graphic__bar-fill { --target-width: 100%; background: linear-gradient(90deg, #10b981 0%, #22d3ee 50%, #0ea5e9 100%); }
.lp-graphic__bar--3 .lp-graphic__bar-fill { --target-width: 100%; background: linear-gradient(90deg, #f59e0b 0%, #f97316 50%, #ef4444 100%); }

/* =========================================================
   [БЛОК: For Whom]
   ========================================================= */
.lp-forwhom { padding: 120px 0; background: var(--lp-color-surface-light); position: relative; overflow: hidden; }
.lp-forwhom::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--lp-color-primary), transparent); opacity: 0.3; }
.lp-forwhom__header { text-align: center; margin-bottom: 80px; }
.lp-forwhom__suptitle {
	display: inline-block; color: var(--lp-color-primary); font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
	margin-bottom: 16px; background: rgba(99, 102, 241, 0.1); padding: 8px 16px; border-radius: 100px; border: 1px solid rgba(99, 102, 241, 0.2);
}
.lp-forwhom__title {
	font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.2; color: var(--lp-color-text-primary); margin-bottom: 24px;
	background: linear-gradient(135deg, #ffffff 0%, #a8b9d6 100%);
	-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.lp-forwhom__description { font-size: 1.25rem; color: var(--lp-color-text-secondary); max-width: 500px; margin: 0 auto; line-height: 1.6; }
.lp-forwhom__main { margin-bottom: 100px; }
.lp-forwhom-hero {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
	border: 1px solid var(--lp-color-border); border-radius: var(--lp-border-radius-lg);
	padding: 60px; display: grid; grid-template-columns: auto 1fr; gap: 60px; align-items: center; position: relative; overflow: hidden;
	max-width: 900px; margin: 0 auto; backdrop-filter: blur(20px); box-shadow: var(--lp-shadow-lg); transition: var(--lp-transition);
}
.lp-forwhom-hero:hover { transform: translateY(-5px); border-color: rgba(99, 102, 241, 0.3); box-shadow: var(--lp-shadow-xl); }
.lp-forwhom-hero::before {
	content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
	background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.05), transparent); transition: left 0.6s ease;
}
.lp-forwhom-hero:hover::before { left: 100%; }
.lp-forwhom-hero__visual { position: relative; display: flex; justify-content: center; align-items: center; }
.lp-forwhom-hero__icon {
	width: 140px; height: 140px; background: rgba(99, 102, 241, 0.1); border-radius: 30px; display: flex; align-items: center; justify-content: center;
	color: var(--lp-color-primary); border: 1px solid rgba(99, 102, 241, 0.2); backdrop-filter: blur(10px); position: relative; z-index: 2;
}
.lp-forwhom-hero__icon svg { width: 60px; height: 60px; }
.lp-forwhom-hero__glow {
	position: absolute; width: 200px; height: 200px; background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
	border-radius: 50%; animation: lp-glow-pulse 3s ease-in-out infinite;
}
.lp-forwhom-hero__content { position: relative; z-index: 2; }
.lp-forwhom-hero__title { font-size: 2rem; font-weight: 700; color: var(--lp-color-text-primary); margin-bottom: 20px; line-height: 1.2; }
.lp-forwhom-hero__description { font-size: 1.125rem; color: var(--lp-color-text-secondary); line-height: 1.6; margin-bottom: 32px; max-width: none; }
.lp-forwhom-hero__features { display: grid; grid-template-columns: 1fr; gap: 16px; }
.lp-forwhom-hero__feature {
	display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: rgba(255, 255, 255, 0.03);
	border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.05); transition: var(--lp-transition);
}
.lp-forwhom-hero__feature:hover { background: rgba(255, 255, 255, 0.05); border-color: rgba(99, 102, 241, 0.2); transform: translateX(8px); }
.lp-forwhom-hero__feature-icon {
	font-size: 1.25rem; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
	background: rgba(99, 102, 241, 0.1); border-radius: 8px; flex-shrink: 0;
}
.lp-forwhom-hero__feature span { color: var(--lp-color-text-secondary); font-weight: 500; }

.lp-forwhom__advantages { text-align: center; }
.lp-forwhom__advantages-title { font-size: 2rem; font-weight: 700; color: var(--lp-color-text-primary); margin-bottom: 60px; position: relative; }
.lp-forwhom__advantages-title::after {
	content: ''; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%);
	width: 60px; height: 3px; background: linear-gradient(90deg, var(--lp-color-primary), #8b5cf6); border-radius: 2px;
}
.lp-forwhom__advantages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.lp-advantage {
	display: flex; align-items: flex-start; gap: 20px; text-align: left; padding: 32px;
	background: rgba(255, 255, 255, 0.03); border-radius: var(--lp-border-radius-lg); border: 1px solid var(--lp-color-border);
	transition: var(--lp-transition); position: relative; overflow: hidden;
}
.lp-advantage::before {
	content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
	background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.05), transparent); transition: left 0.6s ease;
}
.lp-advantage:hover::before { left: 100%; }
.lp-advantage:hover { border-color: rgba(99, 102, 241, 0.3); transform: translateY(-5px); box-shadow: var(--lp-shadow-lg); }
.lp-advantage__icon {
	font-size: 2.5rem; flex-shrink: 0; margin-top: 4px; width: 64px; height: 64px;
	display: flex; align-items: center; justify-content: center; background: rgba(99, 102, 241, 0.1); border-radius: 16px;
}
.lp-advantage__content { flex: 1; }
.lp-advantage__title { font-size: 1.25rem; font-weight: 600; color: var(--lp-color-text-primary); margin-bottom: 8px; }
.lp-advantage__description { color: var(--lp-color-text-secondary); font-size: 0.95rem; line-height: 1.5; }

/* =========================================================
   [БЛОК: FAQ]
   ========================================================= */
.lp-faq { padding: 120px 0; background: var(--lp-color-surface); position: relative; }
.lp-faq__header { text-align: center; margin-bottom: 80px; }
.lp-faq__suptitle {
	display: inline-block; color: var(--lp-color-primary); font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
	margin-bottom: 16px; background: rgba(99, 102, 241, 0.1); padding: 8px 16px; border-radius: 100px; border: 1px solid rgba(99, 102, 241, 0.2);
}
.lp-faq__title {
	font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.2; color: var(--lp-color-text-primary); margin-bottom: 24px;
	background: linear-gradient(135deg, #ffffff 0%, #a8b9d6 100%);
	-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.lp-faq__description { font-size: 1.25rem; color: var(--lp-color-text-secondary); max-width: 500px; margin: 0 auto; line-height: 1.6; }
.lp-faq__content { display: grid; grid-template-columns: 1fr 400px; gap: 80px; align-items: start; }
.lp-faq__items { display: flex; flex-direction: column; gap: 16px; }
.lp-faq-item { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--lp-color-border); border-radius: var(--lp-border-radius-lg); overflow: hidden; transition: var(--lp-transition); }
.lp-faq-item:hover { border-color: rgba(99, 102, 241, 0.3); box-shadow: var(--lp-shadow-lg); }
.lp-faq-item__header { display: flex; align-items: center; justify-content: space-between; padding: 32px; cursor: pointer; gap: 20px; }
.lp-faq-item__question { font-size: 1.125rem; font-weight: 600; color: var(--lp-color-text-primary); line-height: 1.4; flex: 1; margin: 0; }
.lp-faq-item__icon {
	width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(99, 102, 241, 0.1);
	border-radius: 10px; color: var(--lp-color-primary); flex-shrink: 0; transition: var(--lp-transition);
}
.lp-faq-item__icon svg { transition: transform 0.3s ease; }
.lp-faq-item.active .lp-faq-item__icon svg { transform: rotate(180deg); }
.lp-faq-item__answer { padding: 0 32px 32px; display: none; }
.lp-faq-item.active .lp-faq-item__answer { display: block; animation: lp-faq-slide 0.3s ease-out; }
.lp-faq-item__answer p, .lp-faq-item__answer li, .lp-faq-item__answer strong { color: var(--lp-color-text-secondary); }
.lp-faq-item__answer ul { list-style: none; margin: 16px 0; }
.lp-faq-item__answer li { line-height: 1.6; margin-bottom: 8px; padding-left: 20px; position: relative; }
.lp-faq-item__answer li::before { content: '•'; color: var(--lp-color-primary); position: absolute; left: 8px; font-weight: bold; }
.lp-faq__sidebar { position: sticky; top: 100px; }
.lp-faq__support {
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
	border: 1px solid rgba(99, 102, 241, 0.2); border-radius: var(--lp-border-radius-lg);
	padding: 40px; text-align: center; backdrop-filter: blur(10px);
}
.lp-faq__support-icon { font-size: 3rem; margin-bottom: 20px; }
.lp-faq__support-title { font-size: 1.5rem; font-weight: 600; color: var(--lp-color-text-primary); margin-bottom: 12px; }
.lp-faq__support-text { color: var(--lp-color-text-secondary); line-height: 1.6; margin-bottom: 24px; }
.lp-faq__support-links { display: flex; flex-direction: column; gap: 12px; }
.lp-faq__support-link {
	display: flex; align-items: center; justify-content: space-between; padding: 12px 16px;
	background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px;
	color: var(--lp-color-text-primary); text-decoration: none; transition: var(--lp-transition); font-weight: 500;
}
.lp-faq__support-link:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(99, 102, 241, 0.3); transform: translateY(-2px); }
.lp-faq__support-link svg { opacity: 0.7; transition: opacity 0.3s ease; }
.lp-faq__support-link:hover svg { opacity: 1; }

/* =========================================================
   [БЛОК: Download CTA]
   ========================================================= */
.lp-download-cta {
	padding: 120px 0; background: linear-gradient(135deg, var(--lp-color-surface) 0%, var(--lp-color-surface-light) 100%);
	position: relative; overflow: hidden;
}
.lp-download-cta::before {
	content: ''; position: absolute; inset: 0;
	background:
		radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
	pointer-events: none;
}
.lp-download-cta__content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.lp-download-cta__text { max-width: 500px; }
.lp-download-cta__badge { display: inline-flex; background: rgba(99, 102, 241, 0.1); border: 1px solid rgba(99, 102, 241, 0.3); border-radius: 100px; padding: 8px 16px; margin-bottom: 32px; }
.lp-download-cta__badge-text { font-size: 0.875rem; font-weight: 600; color: var(--lp-color-primary); text-transform: uppercase; letter-spacing: 0.05em; }
.lp-download-cta__title {
	font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.2; color: var(--lp-color-text-primary); margin-bottom: 24px;
	background: linear-gradient(135deg, #ffffff 0%, #a8b9d6 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.lp-download-cta__description { font-size: 1.25rem; line-height: 1.6; color: var(--lp-color-text-secondary); margin-bottom: 40px; }
.lp-download-cta__features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.lp-download-cta__feature { display: flex; align-items: center; gap: 12px; color: var(--lp-color-text-secondary); font-weight: 500; }
.lp-download-cta__feature-icon {
	width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
	background: rgba(99, 102, 241, 0.1); border-radius: 8px; font-size: 1rem;
}
.lp-download-cta__actions { display: flex; flex-direction: column; gap: 24px; }
.lp-download-cta__main-action { display: flex; flex-direction: column; gap: 16px; }
.lp-download-cta__button { min-width: 280px; font-size: 1.125rem; padding: 20px 40px; }
.lp-download-cta__version { color: var(--lp-color-text-tertiary); font-size: 0.875rem; text-align: center; }
.lp-download-cta__secondary { text-align: center; }
.lp-download-cta__link {
	display: inline-flex; align-items: center; gap: 8px; color: var(--lp-color-text-secondary); text-decoration: none; font-weight: 500; transition: var(--lp-transition);
}
.lp-download-cta__link:hover { color: var(--lp-color-primary); transform: translateX(4px); }
.lp-download-cta__visual { display: flex; flex-direction: column; gap: 60px; }
.lp-download-cta__platforms { display: flex; justify-content: center; gap: 40px; }
.lp-download-cta__platform {
	display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 24px;
	background: rgba(255, 255, 255, 0.03); border: 1px solid var(--lp-color-border); border-radius: var(--lp-border-radius-lg);
	transition: var(--lp-transition); min-width: 120px;
}
.lp-download-cta__platform:hover { border-color: rgba(99, 102, 241, 0.3); transform: translateY(-5px); box-shadow: var(--lp-shadow-lg); }
.lp-download-cta__platform-icon {
	width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
	background: rgba(99, 102, 241, 0.1); border-radius: 12px; color: var(--lp-color-primary);
}
.lp-download-cta__platform span { color: var(--lp-color-text-primary); font-weight: 600; font-size: 0.875rem; }
.lp-download-cta__stats { display: flex; justify-content: center; gap: 40px; }
.lp-download-cta__stat { text-align: center; }
.lp-download-cta__stat-number { font-size: 2rem; font-weight: 700; color: var(--lp-color-primary); margin-bottom: 4px; }
.lp-download-cta__stat-label { color: var(--lp-color-text-secondary); font-size: 0.875rem; font-weight: 500; }

/* Кнопки в колонку + счётчик загрузок + донат */
.lp-download-cta__buttons-column { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; width: 100%; max-width: 100%; }
.lp-download-counter {
	display: flex; align-items: center; gap: 12px; padding: 16px 20px;
	background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--lp-border-radius); transition: var(--lp-transition); justify-content: center; width: 100%;
	word-break: break-word;
}
.lp-download-counter:hover { border-color: rgba(99, 102, 241, 0.3); transform: translateY(-2px); }
.lp-download-counter__icon { font-size: 1.5rem; opacity: 0.8; }
.lp-download-counter__content { display: flex; flex-direction: column; gap: 2px; }
.lp-download-counter__number { font-size: 1.1rem; font-weight: 700; color: var(--lp-color-text-primary); line-height: 1; }
.lp-download-counter__label { font-size: 0.75rem; color: var(--lp-color-text-tertiary); line-height: 1; }
.lp-donate-button { background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%); border-color: rgba(236, 72, 153, 0.3); width: 100%; justify-content: center; }
.lp-donate-button:hover { background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(239, 68, 68, 0.2) 100%); border-color: rgba(236, 72, 153, 0.5); }

/* Список платформ (иконки) */
.lp-platforms-list__items { display: flex; justify-content: center; gap: 40px; align-items: center; }
.lp-platforms-list__item { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--lp-color-text-secondary); transition: var(--lp-transition); }
.lp-platforms-list__item:hover { color: var(--lp-color-text-primary); transform: translateY(-2px); }
.lp-platforms-list__icon { font-size: 2rem; opacity: 0.8; }
.lp-platforms-list__item span { font-size: 0.875rem; font-weight: 500; }

/* =========================================================
   [БЛОК: Footer]
   ========================================================= */
.lp-footer { background: var(--lp-color-surface); border-top: 1px solid var(--lp-color-border); padding: 80px 0 40px; position: relative; }
.lp-footer__content { display: flex; flex-direction: column; gap: 60px; }
.lp-footer__main { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.lp-footer__brand { display: flex; flex-direction: column; gap: 24px; }
.lp-footer__logo { display: flex; align-items: center; gap: 12px; color: var(--lp-color-text-primary); font-weight: 700; font-size: 1.5rem; }
.lp-footer__logo svg { color: var(--lp-color-primary); }
.lp-footer__logo-text {
	background: linear-gradient(135deg, #ffffff 0%, #a8b9d6 100%);
	-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.lp-footer__description { color: var(--lp-color-text-secondary); line-height: 1.6; font-size: 0.95rem; }
.lp-footer__social { display: flex; gap: 16px; }
.lp-footer__social-link {
	width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--lp-color-border); border-radius: 10px; color: var(--lp-color-text-secondary); transition: var(--lp-transition); text-decoration: none;
}
.lp-footer__social-link:hover { background: rgba(99, 102, 241, 0.1); border-color: rgba(99, 102, 241, 0.3); color: var(--lp-color-primary); transform: translateY(-2px); }
.lp-footer__nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.lp-footer__nav-column { display: flex; flex-direction: column; gap: 16px; }
.lp-footer__nav-title { color: var(--lp-color-text-primary); font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.lp-footer__nav-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.lp-footer__nav-link { color: var(--lp-color-text-secondary); text-decoration: none; font-size: 0.9rem; transition: var(--lp-transition); position: relative; }
.lp-footer__nav-link:hover { color: var(--lp-color-primary); transform: translateX(4px); }
.lp-footer__nav-link::before {
	content: ''; position: absolute; left: -8px; top: 50%; transform: translateY(-50%);
	width: 4px; height: 4px; background: var(--lp-color-primary); border-radius: 50%; opacity: 0; transition: opacity 0.3s ease;
}
.lp-footer__nav-link:hover::before { opacity: 1; }
.lp-footer__divider { height: 1px; background: linear-gradient(90deg, transparent, var(--lp-color-border), transparent); }
.lp-footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.lp-footer__copyright { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.lp-footer__copyright-text { color: var(--lp-color-text-secondary); font-size: 0.875rem; }
.lp-footer__made-with { color: var(--lp-color-text-tertiary); font-size: 0.75rem; }
.lp-footer__badges { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.lp-footer__badge { background: rgba(99, 102, 241, 0.1); border: 1px solid rgba(99, 102, 241, 0.2); border-radius: 100px; padding: 6px 12px; color: var(--lp-color-primary); font-size: 0.75rem; font-weight: 600; }

/* =========================================================
   [БЛОК: Анимации]
   ========================================================= */
@keyframes lp-gradient-move { 0%,100%{transform:scale(1) rotate(0)} 50%{transform:scale(1.1) rotate(180deg)} }
@keyframes lp-float { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-20px) scale(1.05)} }
@keyframes lp-card-pulse { 0%,100%{opacity:1;transform:translateY(0)} 50%{opacity:.8;transform:translateY(-2px)} }
@keyframes lp-graphic-fill { 0%{width:0%} 100%{width:var(--target-width)} }
@keyframes lp-glow-pulse { 0%,100%{opacity:.6;transform:scale(1)} 50%{opacity:.8;transform:scale(1.05)} }
@keyframes lp-faq-slide { from{opacity:0;transform:translateY(-10px)} to{opacity:1;transform:translateY(0)} }
@keyframes lp-shine { 0%{left:-100%} 20%{left:100%} 100%{left:100%} }
@keyframes lp-shine-sweep { 0%{left:-100%} 50%{left:100%} 100%{left:100%} }

/* =========================================================
   [БЛОК: Предпочтение reduce-motion]
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
	.lp-hero__gradient, .lp-hero__shape, .lp-graphic__bar-fill, .lp-forwhom-hero__glow, .lp-video-shine { animation: none !important; }
	.lp-button::before { display: none; }
	.lp-feature-card:hover, .lp-forwhom-hero:hover, .lp-advantage:hover, .lp-forwhom-hero__feature:hover { transform: none; }
	.lp-app-window { transform: none; }
}

/* =========================================================
   [БЛОК: Адаптивность ≥1024, ≥768, ≥480]
   (Сохранил ваши медиа-запросы, чуть доработал)
   ========================================================= */
@media (max-width: 1024px) {
	.lp-hero__grid { grid-template-columns: 1fr; gap: 60px; text-align: center; }
	.lp-hero__description { margin-left: auto; margin-right: auto; }
	.lp-hero__actions { justify-content: center; }
	.lp-hero__meta { justify-content: center; }
	.lp-app-window { transform: none; }

	.lp-opensource__content { grid-template-columns: 1fr; gap: 60px; text-align: center; }
	.lp-opensource__text { margin: 0 auto; }
	.lp-forwhom__advantages-grid { grid-template-columns: repeat(2, 1fr); }
	.lp-stats__grid { grid-template-columns: repeat(2, 1fr); }
	.lp-security__grid { grid-template-columns: 1fr; }
	.lp-faq__content { grid-template-columns: 1fr; gap: 60px; }
	.lp-faq__sidebar { position: static; }
	.lp-download-cta__content { grid-template-columns: 1fr; gap: 60px; text-align: center; }
	.lp-download-cta__text { margin: 0 auto; }
	.lp-download-cta__features { align-items: center; }
	.lp-download-cta__platforms { gap: 20px; }
	.lp-download-cta__stats { gap: 30px; }
	.lp-footer__main { grid-template-columns: 1fr; gap: 60px; }
	.lp-footer__nav { gap: 30px; }
	.lp-header__nav { display: none; }
	.lp-header__mobile-toggle { display: block; }
	.lp-hero__presentation { max-width: 500px; }
	.lp-video-container { height: 250px; }
}

@media (max-width: 768px) {
	.lp-container { padding: 0 16px; }
	.lp-hero__actions { flex-direction: column; align-items: center; }
	.lp-button { width: 100%; max-width: 300px; justify-content: center; }
	.lp-hero__meta { flex-direction: column; align-items: center; gap: 16px; }
	.lp-features__grid { grid-template-columns: 1fr; }
	.lp-feature-card { padding: 30px 24px; }
	.lp-stats__grid { grid-template-columns: 1fr; }
	.lp-forwhom__advantages-grid { grid-template-columns: 1fr; }
	.lp-advantage { padding: 24px; }
	.lp-advantage__icon { width: 56px; height: 56px; font-size: 2rem; }
	.lp-forwhom-hero { grid-template-columns: 1fr; gap: 40px; text-align: center; padding: 50px 40px; }
	.lp-forwhom-hero__visual { order: -1; }
	.lp-forwhom-hero__icon { width: 120px; height: 120px; }
	.lp-forwhom-hero__icon svg { width: 50px; height: 50px; }
	.lp-faq { padding: 80px 0; }
	.lp-faq__header { margin-bottom: 60px; }
	.lp-faq-item__header { padding: 24px; }
	.lp-faq-item__question { font-size: 1rem; }
	.lp-faq-item__answer { padding: 0 24px 24px; }
	.lp-faq__support { padding: 32px 24px; }
	.lp-download-cta { padding: 80px 0; }
	.lp-download-cta__platforms { flex-direction: column; align-items: center; gap: 16px; }
	.lp-download-cta__platform { flex-direction: row; min-width: 200px; padding: 20px; }
	.lp-download-cta__stats { flex-wrap: wrap; gap: 20px; }
	.lp-download-cta__button { min-width: 100%; }
	.lp-footer { padding: 60px 0 30px; }
	.lp-footer__content { gap: 40px; }
	.lp-footer__nav { grid-template-columns: 1fr; gap: 40px; }
	.lp-footer__bottom { flex-direction: column; align-items: flex-start; gap: 24px; }
	.lp-footer__badges { justify-content: flex-start; }
	.lp-hero__presentation { max-width: 100%; }
	.lp-video-container { height: 220px; }
	.lp-app-window { transform: none; }
	.lp-platforms-list__items { gap: 30px; }
	.lp-platforms-list__icon { font-size: 1.75rem; }
}

@media (max-width: 480px) {
	.lp-forwhom-hero { padding: 32px 20px; }
	.lp-forwhom-hero__features { gap: 12px; }
	.lp-forwhom-hero__feature { padding: 10px 14px; }
	.lp-advantage { flex-direction: column; text-align: center; gap: 16px; }
	.lp-advantage__icon { margin-top: 0; }
	.lp-faq-item__header { padding: 20px; }
	.lp-faq-item__icon { width: 36px; height: 36px; }
	.lp-faq__support-links { gap: 8px; }
	.lp-faq__support-link { padding: 10px 14px; font-size: 0.9rem; }
	.lp-download-cta__features { gap: 12px; }
	.lp-download-cta__feature { font-size: 0.9rem; }
	.lp-download-cta__platform { min-width: 160px; padding: 16px; }
	.lp-download-cta__stat-number { font-size: 1.5rem; }
	.lp-footer__main { gap: 40px; }
	.lp-footer__brand { text-align: center; align-items: center; }
	.lp-footer__social { justify-content: center; }
	.lp-footer__nav-column { text-align: center; }
	.lp-footer__copyright { text-align: center; }
	.lp-footer__badges { justify-content: center; }
	.lp-video-container { height: 200px; }
	.lp-app-window { padding: 20px; border-radius: 20px; }
	.lp-platforms-list__items { gap: 20px; }
	.lp-platforms-list__icon { font-size: 1.5rem; }
	.lp-platforms-list__item span { font-size: 0.8rem; }
}

/* =========================================================
   [БЛОК: Точный микролэйаут ≤360 / ≤330 / 320+]
   (Фиксы для самых узких экранов)
   ========================================================= */
@media (max-width: 360px) {
	.lp-container { padding: 0 12px; }
	.lp-hero__grid { gap: 32px; padding: 96px 0 56px; }
	.lp-hero__title { font-size: 1.9rem; }
	.lp-hero__description { font-size: 1rem; margin-bottom: 28px; }
	.lp-button { padding: 14px 20px; }
	.lp-hero__meta { gap: 12px; }
	.lp-forwhom-hero { padding: 24px 16px; gap: 24px; }
	.lp-forwhom__description, .lp-faq__description { font-size: 1rem; }
	.lp-video-container { height: 180px; }
}
@media (max-width: 330px) {
	.lp-hero__badge-text { font-size: 0.75rem; }
	.lp-header__logo span { font-size: 1.1rem; }
	.lp-download-counter { padding: 12px 14px; }
	.lp-advantage__title { font-size: 1.1rem; }
}


.lp-download-counter {
white-space: nowrap;
font-variant-numeric: tabular-nums;
font-feature-settings: "tnum" 1;
}















/* === Privacy Modal === */
.lp-modal[hidden] { display: none; }
.lp-modal { position: fixed; inset: 0; z-index: 10000; }
.lp-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.6); }
.lp-modal__dialog { position: relative; margin: 5vh auto; max-width: 880px; background: #0b0b10; color:#fff; border-radius: 10px; padding: 24px; box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.lp-modal__close { position: absolute; top: 8px; right: 12px; font-size: 22px; background: transparent; border: 0; color: #aaa; cursor: pointer; }
.lp-modal__close:hover { color: #fff; }
.lp-modal__content { max-height: 60vh; overflow: auto; padding-right: 8px; }
.lp-modal__content h3 { margin-top: 1.2em; }
.lp-modal__actions { display:flex; gap: 12px; margin-top: 16px; }
.lp-btn { padding: 10px 16px; border-radius: 8px; border:1px solid #3a3a45; background:#1a1a20; color:#fff; cursor:pointer; }
.lp-btn--primary { background:#4c6fff; border-color:#4c6fff; }
.lp-btn--ghost { background:transparent; }
.lp-btn:focus { outline: 2px solid #4c6fff; outline-offset: 2px; }





/**/
      /* Автономные стили для видео блока */
        .video-overview-block {
            --video-primary: #6366f1;
            --video-primary-hover: #4f46e5;
            --video-surface: #0f0f23;
            --video-surface-light: #1a1a2e;
            --video-text-primary: #f8fafc;
            --video-text-secondary: #cbd5e1;
            --video-text-tertiary: #94a3b8;
            --video-border: rgba(255, 255, 255, 0.1);
            --video-shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            --video-shadow-xl: 0 35px 60px -12px rgba(0, 0, 0, 0.6);
            --video-border-radius: 16px;
            --video-border-radius-lg: 24px;
            --video-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--video-surface-light);
            color: var(--video-text-primary);
            line-height: 1.6;
            border-radius: var(--video-border-radius-lg);
            padding: 60px 40px;
            box-shadow: var(--video-shadow-xl);
            border: 1px solid var(--video-border);
            max-width: 1000px;
            width: 100%;
            margin: 0 auto;
			margin-bottom: 120px;
        }

        .video-overview-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .video-overview-suptitle {
            display: inline-block;
            color: var(--video-primary);
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 16px;
            background: rgba(99, 102, 241, 0.1);
            padding: 8px 16px;
            border-radius: 100px;
            border: 1px solid rgba(99, 102, 241, 0.2);
        }

        .video-overview-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            line-height: 1.2;
            color: var(--video-text-primary);
            margin-bottom: 24px;
            background: linear-gradient(135deg, #ffffff 0%, #a8b9d6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .video-overview-description {
            font-size: 1.25rem;
            color: var(--video-text-secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Video Player */
        .video-player {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--video-border);
            border-radius: var(--video-border-radius-lg);
            overflow: hidden;
            box-shadow: var(--video-shadow-lg);
            max-width: 900px;
            margin: 0 auto;
        }

        .video-player-container {
            position: relative;
            width: 100%;
            background: #000;
            /* Пропорции 1342x912 ≈ 1.47:1 */
            aspect-ratio: 1342 / 912;
            max-height: 600px;
            /* Убираем скругления сверху */
            border-radius: 0 0 var(--video-border-radius) var(--video-border-radius);
            overflow: hidden;
        }

        .video-player-element {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            cursor: pointer;
            /* Убираем скругления у самого видео */
            border-radius: 0;
        }

        .video-player-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 1;
            transition: opacity 0.3s ease;
            cursor: pointer;
            z-index: 2;
            /* Убираем скругления у оверлея */
            border-radius: 0;
        }

        .video-player-container.playing .video-player-overlay {
            opacity: 0;
            pointer-events: none;
        }

        .video-player-play-btn {
            width: 80px;
            height: 80px;
            background: rgba(99, 102, 241, 0.9);
            border: none;
            border-radius: 50%;
            color: white;
            cursor: pointer;
            transition: var(--video-transition);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            position: relative;
            z-index: 3;
        }

        .video-player-play-btn:hover {
            background: var(--video-primary);
            transform: scale(1.1);
        }

        .video-player-title {
            color: white;
            font-size: 1.5rem;
            font-weight: 600;
            text-align: center;
            position: relative;
            z-index: 3;
        }

        /* Video Controls */
        .video-player-controls {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 4;
            /* Убираем скругления у контролов */
            border-radius: 0;
        }

        .video-player-container:hover .video-player-controls,
        .video-player-container.playing .video-player-controls {
            opacity: 1;
        }

        .video-player-control {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 8px;
            border-radius: 6px;
            transition: background-color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 5;
        }

        .video-player-control:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .video-player-progress {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 12px;
            position: relative;
            z-index: 5;
        }

        .video-player-progress-bar {
            flex: 1;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .video-player-progress-fill {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            background: var(--video-primary);
            border-radius: 2px;
            width: 0%;
            transition: width 0.1s linear;
        }

        .video-player-time {
            color: white;
            font-size: 0.875rem;
            font-weight: 500;
            min-width: 100px;
            position: relative;
            z-index: 5;
        }

        /* Video Info - оставляем скругления */
        .video-player-info {
            padding: 32px;
            /* Сохраняем скругления для информационного блока */
            border-radius: 0 0 var(--video-border-radius-lg) var(--video-border-radius-lg);
        }

        .video-player-info-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--video-text-primary);
            margin-bottom: 12px;
        }

        .video-player-info-description {
            color: var(--video-text-secondary);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .video-player-meta {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

        .video-player-duration,
        .video-player-type {
            color: var(--video-text-tertiary);
            font-size: 0.875rem;
            font-weight: 500;
        }

        /* Video Fallback */
        .video-fallback {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            display: none;
            z-index: 1;
            /* Убираем скругления у фолбэка */
            border-radius: 0;
        }

        .video-fallback-content {
            text-align: center;
            color: white;
        }

        .video-fallback-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .video-overview-block {
                padding: 40px 24px;
            }
            
            .video-overview-header {
                margin-bottom: 40px;
            }
            
            .video-player-info {
                padding: 24px;
            }
            
            .video-player-controls {
                padding: 16px;
                gap: 12px;
            }
            
            .video-player-time {
                min-width: 80px;
                font-size: 0.8rem;
            }

            .video-player-container {
                aspect-ratio: 16 / 9;
                max-height: 400px;
            }
        }

        @media (max-width: 480px) {
            .video-overview-block {
                padding: 32px 20px;
            }
            
            .video-player-play-btn {
                width: 60px;
                height: 60px;
            }
            
            .video-player-title {
                font-size: 1.25rem;
            }
            
            .video-player-info-title {
                font-size: 1.25rem;
            }
            
            .video-player-meta {
                flex-direction: column;
                gap: 8px;
            }

            .video-player-container {
                aspect-ratio: 16 / 9;
                max-height: 300px;
            }
        }



   @media (max-width: 400px) {
	 header.lp-header div.lp-container div.lp-header__content a.lp-header__logo span{font-size:13px;}
   }




.video-player {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--video-border);
    /* Убираем все скругления у основного контейнера */
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--video-shadow-lg);
    max-width: 900px;
    margin: 0 auto;
}

.video-player-container {
    position: relative;
    width: 100%;
    background: #000;
    /* Пропорции 1342x912 ≈ 1.47:1 */
    aspect-ratio: 1342 / 912;
    max-height: 600px;
    /* Убираем все скругления у видео контейнера */
    border-radius: 0;
    overflow: hidden;
}

.video-player-element {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    cursor: pointer;
    /* Убираем скругления у самого видео */
    border-radius: 0;
}

.video-player-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    cursor: pointer;
    z-index: 2;
    /* Убираем скругления у оверлея */
    border-radius: 0;
}

.video-player-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 4;
    /* Убираем скругления у контролов */
    border-radius: 0;
}

.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    z-index: 1;
    /* Убираем скругления у фолбэка */
    border-radius: 0;
}

/* Информационный блок оставляем со скруглениями снизу */
.video-player-info {
    padding: 32px;
    /* Сохраняем скругления только снизу для информационного блока */
    border-radius: 0 0 var(--video-border-radius-lg) var(--video-border-radius-lg);
}



/**/
/* Стили для полноэкранного режима */
.video-player-container.fullscreen {
    width: 100vw !important;
    height: 100vh !important;
    max-height: none !important;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: #000;
}

.video-player-container.fullscreen .video-player-element {
    object-fit: contain !important;
}

.video-player-container.fullscreen .video-player-controls {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 25px;
    font-size: 1.1em;
}

.video-player-container.fullscreen .video-player-progress-bar {
    height: 6px;
}

.video-player-container.fullscreen .video-player-control {
    padding: 12px;
    transform: scale(1.2);
}




/* =========================================================
   [ФИКС: Footer / Бейджи в одну строку на десктопе]
   ========================================================= */
/* =========================================================
   [БЛОК: Footer / Правая нижняя часть]
   ========================================================= */

.lp-footer__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    max-width: 720px;
}

.lp-footer__legal-bottom {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin: 0;
    padding: 0;
}

.lp-footer__legal-bottom-item {
    margin: 0;
    padding: 0;
}

.lp-footer__legal-bottom-link {
    display: inline-flex;
    align-items: center;
    color: var(--lp-color-text-tertiary);
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    transition: var(--lp-transition);
}

.lp-footer__legal-bottom-link:hover {
    color: var(--lp-color-primary);
}

.lp-footer__legal-bottom-link:focus-visible {
    outline: 2px solid var(--lp-color-primary);
    outline-offset: 3px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .lp-footer__right {
        align-items: flex-start;
        max-width: 100%;
    }

    .lp-footer__legal-bottom {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .lp-footer__right {
        align-items: center;
        width: 100%;
    }

    .lp-footer__legal-bottom {
        justify-content: center;
        text-align: center;
        gap: 6px 12px;
    }

    .lp-footer__legal-bottom-link {
        font-size: 0.72rem;
    }
}


@media (min-width: 1025px) {
    .lp-footer__bottom {
        align-items: flex-start;
    }

    .lp-footer__copyright {
        min-width: 0;
    }

    .lp-footer__right {
        flex: 0 0 auto;
        align-items: flex-end;
        max-width: none;
    }

    .lp-footer__right .lp-footer__badges {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-end;
        align-items: center;
        gap: 12px;
        white-space: nowrap;
    }

    .lp-footer__right .lp-footer__badge {
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .lp-footer__legal-bottom {
        justify-content: flex-end;
        width: 100%;
    }
}
/* End */
/* /local/templates/linkpass/css/all.css?177780427668028 */
