/* Страница «Технологии» — /tehnologii/. Собрана 01.09.2026.
   Знаки технологий: цвет бренда в currentColor, плашка — тот же цвет
   с прозрачностью (--c-bg). Анимация одноразовая и короткая: на телефоне
   нет наведения, поэтому знак оживает один раз при появлении на экране. */

.lct-page {
	background: #fafafa;
	background-image: none !important;
	color: #152237;
}

.lct-container {
	width: 1720px;
	max-width: calc(100% - 64px);
	margin: 0 auto;
	padding: 140px 0 120px;
}

.lct-crumbs {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 48px;
	color: #d1d3d7;
	font-size: 16px;
	line-height: 1.4;
}

.lct-crumbs a,
.lct-crumbs span {
	color: #d1d3d7;
}

.lct-crumbs a:hover {
	color: #0070f3;
}

.lct-page h1 {
	margin: 0 0 32px;
	font-size: 72px;
	font-weight: 800;
	line-height: 1.05;
	color: #152237;
}

.lct-page h2 {
	margin: 0 0 20px;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.15;
	color: #152237;
}

.lct-page h3 {
	margin: 0 0 14px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	color: #152237;
}

.lct-page p {
	margin: 0;
	color: #152237;
	font-size: 20px;
	line-height: 1.5;
}

.lct-page p + p {
	margin-top: 18px;
}

.lct-page a:not(.lct-btn) {
	color: #0070f3;
}

.lct-page a:not(.lct-btn):hover {
	opacity: .75;
}

/* ---------- первый экран ---------- */

.lct-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 820px;
	gap: 80px;
	align-items: center;
	margin-bottom: 120px;
}

.lct-lead {
	max-width: 720px;
}

.lct-lead--muted {
	color: #5a6b85;
	font-size: 18px;
}

.lct-hero__media {
	overflow: hidden;
	border-radius: 40px;
}

.lct-hero__media img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
}

.lct-facts {
	display: flex;
	flex-wrap: wrap;
	gap: 48px;
	margin: 40px 0 0;
	padding: 0;
	list-style: none;
}

.lct-facts li {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.lct-facts strong {
	font-size: 40px;
	font-weight: 800;
	line-height: 1;
	color: #152237;
}

.lct-facts span {
	color: #5a6b85;
	font-size: 16px;
	line-height: 1.3;
}

.lct-facts--inline {
	gap: 36px;
	margin-top: 32px;
}

.lct-facts--inline strong {
	font-size: 32px;
}

.lct-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	margin-top: 40px;
	padding: 0 36px;
	border-radius: 12px;
	background: #0070f3;
	color: #fff !important;
	font-size: 17px;
	font-weight: 500;
}

.lct-btn:hover {
	background: #0059c4;
}

/* ---------- секции ---------- */

.lct-section {
	margin-bottom: 110px;
}

.lct-text {
	max-width: 900px;
	margin-bottom: 40px !important;
}

.lct-group + .lct-group {
	margin-top: 36px;
}

.lct-group__title {
	margin: 0 0 16px;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.2;
	color: #5a6b85;
}

.lct-note {
	margin-top: 16px !important;
	color: #5a6b85 !important;
	font-size: 16px !important;
}

/* ---------- плитки технологий ---------- */

.lct-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(164px, 1fr));
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Плитки с приписками — им нужна колонка пошире, чтобы подпись
   ложилась в одну-две строки, а не в столбик по слову. */
.lct-grid--notes {
	grid-template-columns: repeat(auto-fill, minmax(212px, 1fr));
}

.lct-grid--dense {
	grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
	gap: 12px;
}

.lct-chip {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	padding: 22px 14px 20px;
	box-sizing: border-box;
	border: 1px solid #e9eef5;
	border-radius: 22px;
	background: #fff;
	text-align: center;
	transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.lct-chip:hover {
	transform: translateY(-3px);
	border-color: var(--c);
	box-shadow: 0 14px 32px rgba(21, 34, 55, .1);
}

.lct-chip__mark,
.lct-card__mark {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border-radius: 18px;
	background: var(--c-bg);
	color: var(--c);
	transition: transform .35s ease;
}

.lct-card__mark {
	width: 64px;
	height: 64px;
	border-radius: 20px;
	margin-bottom: 24px;
}

.lct-chip:hover .lct-chip__mark {
	transform: translateY(-4px) scale(1.06);
}

.lct-chip__name {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.2;
	color: #152237;
}

.lct-chip__note {
	margin-top: -6px;
	color: #5a6b85;
	font-size: 13px;
	line-height: 1.3;
}

.lct-glyph {
	display: block;
	overflow: visible;
}

/* ---------- карточки CMS ---------- */

.lct-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.lct-card {
	padding: 44px;
	border: 1px solid #e9eef5;
	border-radius: 32px;
	background: #fff;
	transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.lct-card:hover {
	transform: translateY(-3px);
	border-color: var(--c);
	box-shadow: 0 18px 40px rgba(21, 34, 55, .09);
}

.lct-card p {
	font-size: 18px;
}

/* ---------- блок «картинка + текст» ---------- */

.lct-split {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 64px;
	align-items: center;
	margin-top: 56px;
}

.lct-split__media {
	overflow: hidden;
	border-radius: 32px;
}

.lct-split__media img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
}

.lct-split--reverse .lct-split__media {
	order: 2;
}

.lct-split__copy .lct-group:first-child {
	margin-top: 0;
}

/* ---------- анимация ---------- */

.lct-js .lct-chip,
.lct-js .lct-card {
	opacity: 0;
	transform: translateY(14px);
}

.lct-js .lct-chip.is-in,
.lct-js .lct-card.is-in {
	opacity: 1;
	transform: none;
	transition: opacity .5s ease, transform .5s ease, border-color .3s ease, box-shadow .3s ease;
}

.lct-chip.is-in .lct-glyph,
.lct-card.is-in .lct-glyph {
	animation: lct-rise .6s ease both;
}

.lct-chip[data-anim="pop"].is-in .lct-glyph {
	animation: lct-pop .6s cubic-bezier(.34, 1.56, .64, 1) both;
}

.lct-chip[data-anim="turn"].is-in .lct-glyph {
	animation: lct-turn .7s cubic-bezier(.34, 1.4, .64, 1) both;
}

.lct-chip[data-anim="pulse"].is-in .lct-glyph {
	animation: lct-pulse .9s ease both;
}

.lct-chip[data-anim="dip"].is-in .lct-glyph {
	animation: lct-dip .7s cubic-bezier(.34, 1.5, .64, 1) both;
}

.lct-chip[data-anim="fly"].is-in .lct-glyph {
	animation: lct-fly .7s cubic-bezier(.22, .9, .3, 1) both;
}

.lct-chip[data-anim="spin"].is-in .lct-orbits {
	animation: lct-spin 1.6s cubic-bezier(.3, .8, .3, 1) both;
}

.lct-chip[data-anim="spin"]:hover .lct-orbits {
	animation: lct-spin 7s linear infinite;
}

.lct-chip[data-anim="draw"].is-in .lct-glyph path {
	stroke-dasharray: 44;
	animation: lct-draw .9s ease both;
}

.lct-chip[data-anim="dots"].is-in .lct-glyph circle {
	animation: lct-pop .6s cubic-bezier(.34, 1.56, .64, 1) both;
}

.lct-chip[data-anim="dots"].is-in .lct-glyph circle:nth-child(2) { animation-delay: .08s; }
.lct-chip[data-anim="dots"].is-in .lct-glyph circle:nth-child(3) { animation-delay: .16s; }
.lct-chip[data-anim="dots"].is-in .lct-glyph circle:nth-child(4) { animation-delay: .24s; }

.lct-orbits,
.lct-glyph circle,
.lct-glyph path {
	transform-box: fill-box;
	transform-origin: center;
}

.lct-orbits {
	transform-box: view-box;
}

@keyframes lct-rise {
	from { opacity: 0; transform: translateY(6px); }
	to { opacity: 1; transform: none; }
}

@keyframes lct-pop {
	from { opacity: 0; transform: scale(.45); }
	to { opacity: 1; transform: none; }
}

@keyframes lct-turn {
	from { opacity: 0; transform: rotate(-25deg) scale(.7); }
	to { opacity: 1; transform: none; }
}

@keyframes lct-pulse {
	0% { opacity: 0; transform: scale(.8); }
	55% { opacity: 1; transform: scale(1.1); }
	100% { opacity: 1; transform: none; }
}

@keyframes lct-dip {
	from { opacity: 0; transform: translateY(-10px); }
	to { opacity: 1; transform: none; }
}

@keyframes lct-fly {
	from { opacity: 0; transform: translate(-12px, 8px); }
	to { opacity: 1; transform: none; }
}

@keyframes lct-spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

@keyframes lct-draw {
	from { stroke-dashoffset: 44; }
	to { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
	.lct-js .lct-chip,
	.lct-js .lct-card {
		opacity: 1;
		transform: none;
	}

	.lct-chip .lct-glyph,
	.lct-card .lct-glyph,
	.lct-chip .lct-orbits,
	.lct-chip .lct-glyph circle,
	.lct-chip .lct-glyph path {
		animation: none !important;
	}

	.lct-chip:hover,
	.lct-card:hover,
	.lct-chip:hover .lct-chip__mark {
		transform: none;
	}
}

/* ---------- адаптив ---------- */

@media (max-width: 1499px) {
	.lct-hero {
		grid-template-columns: minmax(0, 1fr) 620px;
		gap: 56px;
	}

	.lct-page h1 { font-size: 56px; }
}

@media (max-width: 1199px) {
	.lct-container { padding: 110px 0 90px; }

	.lct-hero {
		grid-template-columns: 1fr;
		gap: 40px;
		margin-bottom: 80px;
	}

	.lct-hero__media { order: -1; }

	.lct-page h1 { font-size: 44px; }
	.lct-page h2 { font-size: 32px; }

	.lct-section { margin-bottom: 80px; }

	.lct-cards,
	.lct-split {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.lct-split--reverse .lct-split__media { order: 0; }
}

@media (max-width: 767px) {
	.lct-container {
		max-width: calc(100% - 32px);
		padding: 90px 0 64px;
	}

	.lct-crumbs { margin-bottom: 28px; font-size: 14px; }

	.lct-page h1 { font-size: 32px; margin-bottom: 20px; }
	.lct-page h2 { font-size: 24px; }
	.lct-page h3 { font-size: 20px; }

	.lct-page p,
	.lct-card p { font-size: 16px; }

	.lct-lead--muted { font-size: 15px; }

	.lct-hero__media,
	.lct-split__media { border-radius: 20px; }

	.lct-facts { gap: 24px; margin-top: 28px; }
	.lct-facts strong { font-size: 28px; }
	.lct-facts--inline strong { font-size: 24px; }
	.lct-facts span { font-size: 14px; }

	.lct-btn { height: 52px; margin-top: 28px; padding: 0 26px; font-size: 16px; }

	.lct-section { margin-bottom: 56px; }
	.lct-text { margin-bottom: 28px !important; }

	.lct-grid,
	.lct-grid--dense {
		grid-template-columns: repeat(auto-fill, minmax(106px, 1fr));
		gap: 10px;
	}

	.lct-chip {
		gap: 10px;
		padding: 16px 8px 14px;
		border-radius: 18px;
	}

	.lct-chip__mark { width: 46px; height: 46px; border-radius: 15px; }
	.lct-chip__mark svg { width: 26px; height: 26px; }
	.lct-chip__name { font-size: 13px; }
	.lct-chip__note { margin-top: -4px; font-size: 11px; }

	.lct-grid--notes {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	}

	.lct-card { padding: 24px; border-radius: 22px; }
	.lct-card__mark { width: 54px; height: 54px; margin-bottom: 18px; }

	.lct-split { margin-top: 32px; gap: 24px; }
}
.lct-cta h2 {
	margin: 0 0 24px;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0;
	color: #152237;
}
.lct-cta .text {
	margin: 0;
	color: #152237;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0;
}
.lct-cta {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 820px;
	gap: 96px;
	align-items: start;
	margin-bottom: 0 !important;
}
.lct-cta__copy {
	max-width: 760px;
}
.lct-cta .text {
	max-width: 690px;
}
.lct-cta__form #cta_form,
.lct-cta__form .cta_form {
	margin: 0;
}
.lct-cta__form {
	width: 820px;
	max-width: 100%;
}
.lct-cta #cta_form,
.lct-cta form {
	width: 820px;
	max-width: 100%;
}
#cta_form.lct-cta form {
	display: grid !important;
	grid-template-columns: 238px 558px;
	column-gap: 24px;
	row-gap: 32px;
	align-items: start;
}
#cta_form.lct-cta form .form_inputs {
	grid-column: 1 / -1;
	grid-row: 1;
	width: 100%;
	display: grid !important;
	grid-template-columns: 398px 398px;
	gap: 24px !important;
	margin-bottom: 0;
}
#cta_form.lct-cta form .form_inputs label:first-child {
	grid-column: 1 / -1;
	width: 100% !important;
}
#cta_form.lct-cta form .form_inputs label.labelsmall {
	width: 398px !important;
}
#cta_form.lct-cta form .formlabel {
	margin-bottom: 8px;
	color: #5a6b85;
	font-size: 16px;
	line-height: 1.2;
}
#cta_form.lct-cta form .form_inputs input {
	height: 64px;
	background: #edf0f3;
	border-color: #edf0f3;
	border-radius: 8px;
	color: #152237;
	font-size: 18px;
	letter-spacing: 0;
}
#cta_form.lct-cta form > .formlabel,
#cta_form.lct-cta form > p,
#cta_form.lct-cta form .hidden-fields-container,
#cta_form.lct-cta form .lachatte-antispam,
#cta_form.lct-cta form .wpcf7-spinner,
#cta_form.lct-cta form .form_select,
#cta_form.lct-cta form .wpcf7-checkbox {
	display: none !important;
}
#cta_form.lct-cta form .form_acceptance {
	grid-column: 2;
	grid-row: 2;
	display: flex;
	width: 558px;
	margin-left: 0;
	padding-top: 0;
}
#cta_form.lct-cta form .form_acceptance .wpcf7-list-item {
	display: flex;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}
#cta_form.lct-cta form .form_acceptance .wpcf7-list-item label {
	display: block;
}
#cta_form.lct-cta form .form_acceptance .wpcf7-list-item .wpcf7-list-item-label {
	width: 534px;
	min-height: 57px;
	padding-left: 36px;
	box-sizing: border-box;
	font-size: 14px;
	line-height: 1.2;
}
#cta_form.lct-cta form .form_acceptance .wpcf7-list-item .wpcf7-list-item-label:before,
#cta_form.lct-cta form .form_acceptance .wpcf7-list-item .wpcf7-list-item-label:after {
	left: 0;
}
#cta_form.lct-cta form .form_acceptance .wpcf7-list-item .wpcf7-list-item-label:after {
	left: 5px;
}
#cta_form.lct-cta form input[type="submit"] {
	grid-column: 1;
	grid-row: 2;
	width: 238px;
	min-width: 238px;
	height: 56px;
	box-sizing: border-box;
	font-size: 16px;
}
@media (max-width: 1799px) {
.lct-cta h2 {
		font-size: 36px;
	}
}
@media (max-width: 1199px) {
.lct-cta {
		grid-template-columns: 1fr;
		gap: 36px;
	}
.lct-cta__form,
.lct-cta form {
		width: min(820px, 100%);
	}
}
@media (max-width: 767px) {
.lct-cta h2 {
		font-size: 28px;
		line-height: 1.18;
	}
.lct-cta h2 {
		margin-bottom: 24px;
		font-size: 24px;
		line-height: 1.2;
	}
.lct-cta .text {
		font-size: 16px;
		line-height: 1.5;
	}
.lct-cta {
		gap: 40px;
	}
.lct-cta__copy {
		max-width: min(328px, 100%);
	}
.lct-cta .text {
		font-size: 16px;
		line-height: 1.4;
	}
.lct-cta__form,
.lct-cta form {
		width: min(328px, 100%);
		max-width: 100%;
	}
#cta_form.lct-cta form {
		grid-template-columns: 1fr;
		row-gap: 24px;
	}
#cta_form.lct-cta form .form_inputs {
		display: grid !important;
		grid-template-columns: 1fr;
		gap: 24px !important;
	}
#cta_form.lct-cta form .form_inputs label.labelsmall {
		width: 100% !important;
	}
#cta_form.lct-cta form .formlabel {
		margin-bottom: 8px;
		font-size: 14px;
		line-height: 1.2;
	}
#cta_form.lct-cta form .form_inputs input {
		height: 46px;
		font-size: 16px;
	}
#cta_form.lct-cta form input[type="submit"] {
		grid-column: 1;
		grid-row: 3;
		width: 100%;
		min-width: 0;
		height: 50px;
		margin: 0;
		font-size: 15px;
	}
#cta_form.lct-cta form .form_acceptance {
		grid-column: 1;
		grid-row: 2;
		display: block;
		width: 100%;
		margin-left: 0;
		margin-top: 0;
		margin-bottom: 0;
	}
#cta_form.lct-cta form .form_acceptance .wpcf7-list-item .wpcf7-list-item-label {
		width: 100%;
		min-height: 0;
		font-size: 14px;
		line-height: 1.2;
	}
}