/* Шапка: закреплённая стеклянная панель.
   Фирменный цвет – var(--bs-primary) из assets/db/.template.php, шрифт один на сайт (тема).
   Селекторы меню – под разметку $core->menu(): ul > li.parent > ul.
   Стрелки/иконки – Font Awesome (подключён глобально), своих картинок нет. */

.header-1 {
	--bar-h: 76px;
	--bar-h-sm: 60px;
	--bar-top: .75rem;                 /* отступ плашки от верха */
	--bar-side: 1rem;                  /* минимальный отступ от краёв на узких экранах */
	--bar-max: calc(1320px + 100px);   /* сетка темы + по 50px с каждой стороны */
	--bar-radius: 18px;
	--glass: rgba(255, 255, 255, .72);
	--glass-stuck: rgba(255, 255, 255, .88);
	--edge: rgba(255, 255, 255, .55);
	position: relative;
	z-index: 1030;
}
.header-1 .preload * {transition: none !important;}

/* Плавающая плашка: не во всю ширину, а островом. Шире сетки на 50px с каждой стороны,
   поэтому контент внутри (.container темы) остаётся выровненным по общей сетке страницы. */
.header-1 .header-bar {
	position: fixed; z-index: 1030;
	top: var(--bar-top); left: var(--bar-side); right: var(--bar-side);
	margin-inline: auto; max-width: var(--bar-max);
	background: var(--glass);
	backdrop-filter: blur(16px) saturate(180%);
	-webkit-backdrop-filter: blur(16px) saturate(180%);
	border: 1px solid var(--edge);
	border-radius: var(--bar-radius);
	box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);
	transition: background .35s ease, box-shadow .35s ease, top .35s cubic-bezier(.19, 1, .22, 1);
}
/* Без backdrop-filter стекло превратится в прозрачную дырку – отдаём плотный фон. */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
	.header-1 .header-bar {background: rgba(255, 255, 255, .97);}
}
.header-1 .header-bar.is-stuck {top: .375rem; background: var(--glass-stuck); box-shadow: 0 .75rem 2rem rgba(0, 0, 0, .14);}

.header-1 .header-inner {
	height: var(--bar-h);
	display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
	transition: height .35s cubic-bezier(.19, 1, .22, 1);
}
.header-1 .header-bar.is-stuck .header-inner {height: var(--bar-h-sm);}

/* Компенсация высоты: панель выпала из потока, крошки идут под ней в обычном потоке. */
.header-1 .header-spacer {height: calc(var(--bar-h) + var(--bar-top) * 2);}

.header-1 .header-logo {position: relative; z-index: 1020; display: inline-flex; align-items: center; padding-right: 1.5rem;}
.header-1 .header-logo img {max-width: 190px; height: auto; transition: transform .35s cubic-bezier(.19, 1, .22, 1), opacity .25s;}
.header-1 .header-bar.is-stuck .header-logo img {transform: scale(.85);}
@media (hover: hover) and (pointer: fine) {
	.header-1 .header-logo:hover img {opacity: .75;}
}

/* Бургер */
.header-1 .header-toggle {position: relative; z-index: 1020; width: 3rem; height: 3rem; padding: 1rem; cursor: pointer;}
.header-1 .header-toggle > span,
.header-1 .header-toggle::before,
.header-1 .header-toggle::after {display: block; backface-visibility: hidden; width: 1.5rem; height: .125rem; background: var(--bs-body-color); position: absolute; transform: translate(-50%, -50%); top: 50%; left: 50%; transition: .4s cubic-bezier(.19, 1, .22, 1);}
.header-1 .header-toggle::before {content: ''; top: 20%;}
.header-1 .header-toggle::after {content: ''; top: 80%;}
.header-1 .header-checkbox:checked ~ .header-toggle::before {top: 50%; transform: translate(-50%, -50%) rotateZ(135deg);}
.header-1 .header-checkbox:checked ~ .header-toggle::after {top: 50%; transform: translate(-50%, -50%) rotateZ(-135deg);}
.header-1 .header-checkbox:checked ~ .header-toggle > span {transform: translate(-50%, -50%) rotateY(90deg); opacity: 0;}

/* Мобильная выпадающая панель */
.header-1 .header-toolbar {
	position: fixed; z-index: 1000;
	top: var(--bar-top); left: var(--bar-side); right: var(--bar-side);
	margin-inline: auto; max-width: var(--bar-max);
	border-radius: var(--bar-radius); border: 1px solid var(--edge);
	max-height: calc(100dvh - var(--bar-top) * 2); overflow-y: auto;
	background: rgba(255, 255, 255, .97);
	backdrop-filter: blur(18px) saturate(180%);
	-webkit-backdrop-filter: blur(18px) saturate(180%);
	transform: translateY(-100%); opacity: 0; visibility: hidden;
	transition: transform .45s cubic-bezier(.19, 1, .22, 1), opacity .35s ease, visibility .45s;
	padding: calc(var(--bar-h) + 1rem) 1.5rem 2rem;
	box-shadow: 0 1rem 2rem rgba(0, 0, 0, .12);
}
.header-1 .header-checkbox:checked ~ .header-toolbar {transform: translateY(0); opacity: 1; visibility: visible;}

/* Контакты */
.header-1 .header-contacts {gap: .75rem;}
.header-1 .header-city,
.header-1 .header-tel {display: inline-flex; align-items: center; gap: .45rem; margin: 0; white-space: nowrap; color: var(--bs-body-color); text-decoration: none;}
.header-1 .header-city {background: none; border: 0; padding: .25rem .5rem; border-radius: 8px; cursor: pointer; transition: background .2s, color .2s;}
.header-1 .header-city > span {display: inline-block; max-width: 70px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; vertical-align: middle;}
.header-1 .header-city .cities-caret {font-size: .7em; opacity: .5; color: inherit; transition: transform .2s;}
@media (hover: hover) and (pointer: fine) {
	.header-1 .header-city:hover {background: rgba(var(--bs-primary-rgb), .08); color: var(--bs-primary);}
	.header-1 .header-city:hover .cities-caret {transform: translateY(2px);}
}
.header-1 .header-city i,
.header-1 .header-tel i {color: var(--bs-primary); font-size: .875em;}
.header-1 .header-tel {font-weight: 700; transition: color .25s;}
@media (hover: hover) and (pointer: fine) {
	.header-1 .header-tel:hover {color: var(--bs-primary);}
}

/* CTA шапки: подъём и блик переехали в assets/css/custom.css на .btn-primary —
   теперь это общесайтовое поведение всех фирменных кнопок, класса .header-cta больше нет.
   Раскладка иконка+текст держится утилитами Bootstrap прямо в template.php. */

/* Меню */
.header-1 .header-nav ul {list-style: none; display: flex; flex-direction: column; margin: 0; padding: 0;}
.header-1 .header-nav li {position: relative;}
.header-1 .header-nav a {display: block; padding: .625rem .1rem; color: var(--bs-body-color); text-decoration: none; border-bottom: 1px solid rgba(0, 0, 0, .06); transition: color .25s;}
.header-1 .header-nav li.parent > ul {display: none;}
.header-1 .header-nav li.parent.open > ul {display: block;}
.header-1 .header-nav .accordion-toggle {position: absolute; top: .2rem; right: 0; width: 2.25rem; height: 2.25rem; padding: 0; border: none; border-radius: 8px; background: rgba(var(--bs-primary-rgb), .1); color: var(--bs-primary); display: flex; align-items: center; justify-content: center; transition: transform .3s;}
.header-1 .header-nav li.open > .accordion-toggle {transform: rotateZ(180deg);}

@media (min-width: 1200px) {
	.header-1 .header-toolbar {position: static; border: 0; border-radius: 0; box-shadow: none; max-width: none; background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; transform: none; opacity: 1; visibility: visible; overflow: visible; max-height: none; flex: auto; padding: 0;}
	.header-1 .header-nav > ul {flex-direction: row;}
	.header-1 .header-nav a {border: none;}
	.header-1 .header-nav li.parent > a {padding-right: 1.3rem;}
	.header-1 .header-nav .accordion-toggle {display: none;}

	/* подчёркивание растёт от центра */
	.header-1 .header-nav > ul > li > a::before {content: ''; position: absolute; left: 1rem; right: 1rem; bottom: .2rem; height: 2px; background: var(--bs-primary); transform: scaleX(0); transition: transform .3s cubic-bezier(.19, 1, .22, 1);}
	.header-1 .header-nav > ul > li:hover > a::before,
	.header-1 .header-nav > ul > li.active > a::before {transform: scaleX(1);}
	.header-1 .header-nav > ul > li:hover > a,
	.header-1 .header-nav > ul > li.active > a {color: var(--bs-primary);}

	/* выпадашки: анимируем opacity/transform, поэтому display оставляем block */
	.header-1 .header-nav li.parent > ul,
	.header-1 .header-nav li.parent.open > ul {display: block;}
	.header-1 .header-nav li ul {
		position: absolute; z-index: 1000; white-space: nowrap; padding: .5rem; min-width: 100%;
		border-radius: 12px; border: 1px solid var(--edge);
		background: rgba(255, 255, 255, .9);
		backdrop-filter: blur(16px) saturate(180%);
		-webkit-backdrop-filter: blur(16px) saturate(180%);
		box-shadow: 0 1rem 2rem rgba(0, 0, 0, .12);
		opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(10px);
		transition: opacity .28s ease, transform .28s cubic-bezier(.19, 1, .22, 1), visibility .28s;
	}
	.header-1 .header-nav > ul > li > ul {top: 100%; left: 0;}
	.header-1 .header-nav li li ul {top: -.5rem; left: 100%; margin-left: .25rem;}
	/* мостик: без него .25rem зазора до подменю гасят :hover при переводе курсора */
	.header-1 .header-nav li li ul::before {content: ''; position: absolute; top: 0; left: -.25rem; width: .25rem; height: 100%;}
	.header-1 .header-nav li.parent:hover > ul,
	.header-1 .header-nav li.parent:focus-within > ul {opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);}
	.header-1 .header-nav li ul a {border-radius: 8px; padding: .5rem .75rem;}
	.header-1 .header-nav li ul a:hover {background: rgba(var(--bs-primary-rgb), .08); color: var(--bs-primary);}

	.header-1 .header-nav li.parent > a {padding-right: 1.75rem;}
	.header-1 .header-nav li.parent > a::after {content: '\f107'; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: .7rem; position: absolute; top: 50%; right: .5rem; transform: translateY(-50%); transition: transform .3s;}
	.header-1 .header-nav li.parent:hover > a::after {transform: translateY(-50%) rotateZ(180deg);}
	.header-1 .header-nav li li.parent > a::after {content: '\f105'; transform: translateY(-50%);}
	.header-1 .header-nav li li.parent:hover > a::after {transform: translateY(-50%) translateX(3px);}
}

@media (min-width: 1400px) {
	.header-1 .header-nav a {padding: .625rem 1rem;}
}

/* Попап выбора города: список грузится AJAX-ом (см. template.js + controllers/custom/cities_get.php) */
.cities-list {display: grid; grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr)); gap: .25rem;}
.cities-item {display: block; padding: .5rem .75rem; border-radius: 8px; color: var(--bs-body-color); text-decoration: none; transition: background .2s, color .2s;}
.cities-item:hover {background: rgba(var(--bs-primary-rgb), .08); color: var(--bs-primary);}
.cities-item.is-active {background: var(--bs-primary); color: var(--bs-primary-text); font-weight: 700;}
#cities .modal-dialog {max-width: 56rem;}

/* Крошки: в потоке, под панелью */
.header-1 .breadcrumbs {padding: 1rem 0 .25rem;}
.header-1 .breadcrumbs .breadcrumb {margin: 0; flex-wrap: wrap;}
.header-1 .breadcrumbs a {color: var(--bs-secondary-color); text-decoration: none; transition: color .2s;}
.header-1 .breadcrumbs a:hover {color: var(--bs-primary);}
.header-1 .breadcrumbs .breadcrumb-item.active a {color: var(--bs-body-color); pointer-events: none;}

/* Пункты меню без своей страницы (href="#").
   Родитель-категория (li.parent) — приглушённый, но кликабельный (раскрывает подменю).
   Лист без ссылки (li без .parent) — серый, некликабельный, с бейджем «скоро» (как в services-map-1). */
.header-1 .header-nav li.parent > a[href="#"] {color: var(--bs-secondary-color);}
.header-1 .header-nav li:not(.parent) > a[href="#"] {color: var(--bs-secondary-color); opacity: .75; pointer-events: none; cursor: default;}
.header-1 .header-nav li:not(.parent) > a[href="#"]::after {
	content: "скоро";
	display: inline-block;
	margin-left: .4rem;
	padding: .05rem .4rem;
	font-size: .7em;
	line-height: 1.4;
	border-radius: .5rem;
	background: rgba(var(--bs-primary-rgb), .08);
	color: var(--bs-primary);
	vertical-align: middle;
	opacity: .9;
}

@media (prefers-reduced-motion: reduce) {
	.header-1 *, .header-1 *::before, .header-1 *::after {transition: none !important; animation: none !important;}
}




.home-1 {position: relative;}

/* Заголовок: 1-я строка тёмная, 2-я (город) — красным с новой строки */
.home-1 .title {display: block; line-height: 1.05; letter-spacing: -0.02em;}
.home-1 .subtitle {display: block; line-height: 1.05; letter-spacing: -0.02em;}

/* Абзац-обращение под заголовком */
.home-1 .hero-intro {max-width: 34rem; line-height: 1.55;}

/* Фон-картинка растягивается на всю площадь блока */
.home-1 .module-background.image {background-size: 100% 100% !important;}

/* Кубики-цифры в один ряд (как на главной) */
.home-1 .hero-stats {gap: .5rem; flex-wrap: nowrap; max-width: 100%;}
.home-1 .hero-stat {min-width: 0; padding: .5rem .6rem; border: 1px solid rgba(11, 11, 18, .08); border-radius: .85rem; background: #fff; box-shadow: 0 .5rem 1.5rem rgba(11, 11, 18, .05);}
.home-1 .hero-stat-ico {display: inline-flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; border-radius: .65rem; background: rgba(var(--bs-primary-rgb), .1); flex: 0 0 auto;}
.home-1 .hero-stat-body {display: flex; flex-direction: column; line-height: 1.15; min-width: 0;}
.home-1 .hero-stat-label {line-height: 1.15;}

/* Видео-планшет с 3D-наклоном (клик по всей площади открывает попап с видео) */
.home-1 .card_block {position: relative; perspective: 1000px; transform-style: preserve-3d; max-width: 100%;}
.home-1 .card_block.trigger-play {cursor: pointer;}
.home-1 .card_block .card__inner {position: relative; transition: transform 0.2s;}
.home-1 .card_block .card__inner img {max-width: 100%; height: auto; display: block;}

@media (min-width: 992px) {
	.home-1 .video-col {padding-top: 0;}
}


.module.home-1 {padding:100px 0;}



.company-1 .logo {background: #fff; transition: box-shadow .35s ease;}
.company-1 .logo:hover {box-shadow: 0 .5rem 1.25rem rgba(0, 0, 0, .08);}

.company-1 .logo img {height: 2.75rem; width: auto; max-width: 100%; object-fit: contain; filter: grayscale(100%); opacity: .55; transition: .35s ease;}
.company-1 .logo:hover img {filter: none; opacity: 1;}

@media (prefers-reduced-motion: reduce) {
	.company-1 .logo,
	.company-1 .logo img {transition: none;}
}


.module.company-1 {padding:100px 0;}



.wires-1 {position: relative; padding-top: 12.5rem; z-index: 10;}

.wires-1 .card_block {perspective: 1000px; transform-style: preserve-3d;}
.wires-1 .card_block .card__inner {transition: transform 0.2s; cursor: pointer;}
.wires-1 h2 {text-shadow: -1px 0px #000;}
.wires-1 h2 span {padding: 0 .94rem; border-radius: 5px; display: inline-block;}

.wires-1 .card_block .card__inner img {max-width: 100%;}

@media screen and (min-width: 768px) {
    .wires-1 {padding-top: 16.5rem;}
}
@media screen and (min-width: 992px) {
    .wires-1 h2 {text-shadow: none;}
    .wires-1 {padding-top: 10.5rem;}
}

@media screen and (min-width: 1400px) {
    .wires-1 .card_block .card__inner img {max-width: none;}
}




.four-weeks-1 {position: relative; z-index: 0; overflow-x: clip; padding: 5rem 0 0;}

.four-weeks-1 .term-hand img {height: 2.6rem; width: auto; max-width: 100%;}
.four-weeks-1 .image {min-width: 7.87rem; height: 7.87rem; background: #fff; box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.25); border-radius: 50%;}

.four-weeks-1 .circle {position: relative; z-index: 1; width: 63rem; height: 63rem; float: right; border-radius: 50%; border: 5px dashed #EFABAB;}

/* parallax.js: каждый .layer — полноразмерный слой (inset:0), библиотека двигает его transform'ом;
   позиция самой картинки — на внутреннем .item-* (position:absolute). !important перебивает инлайн от либы. */
.four-weeks-1 .parallaxScene {position: absolute; inset: 0; z-index: -1; pointer-events: none;}
.four-weeks-1 .parallaxScene .layer {position: absolute !important; inset: 0; margin: 0; pointer-events: none;}
/* Компьютер — ниже всех по z-index и почти не двигается (data-depth 0.05); остальные слои выше и подвижнее */
.four-weeks-1 .parallaxScene .layer-1 {z-index: 1;}
.four-weeks-1 .parallaxScene .layer-3 {z-index: 2;}
.four-weeks-1 .parallaxScene .layer-2 {z-index: 3;}
.four-weeks-1 .parallaxScene .layer-4 {z-index: 4;}

.four-weeks-1 .parallaxScene .item-1 {position: absolute; bottom: 20%; left: -30%;}
.four-weeks-1 .parallaxScene .item-2 {position: absolute; bottom: 7%; left: -5%;}
.four-weeks-1 .parallaxScene .item-3 {position: absolute; bottom: 5%; left: -6%;}
.four-weeks-1 .parallaxScene .item-4 {position: absolute; bottom: 29%; left: 27%;}

.four-weeks-1 .mod-item {position: relative; opacity: 0;}
.four-weeks-1 .mod-item.element-show {opacity: 1; transition: all 1.5s;}

@media screen and (min-width: 576px) {
	.four-weeks-1 {padding: 5rem 0;}
	.four-weeks-1 .mod-item:nth-child(2),
	.four-weeks-1 .mod-item:nth-child(3) {margin-left: 7.87rem;}

	/* Точки и пунктирные линии-коннекторы к кругу — только когда круг виден (≥576px) */
	.four-weeks-1 .mod-item::before {content: ''; position: absolute; width: 1.6rem; height: 1.6rem; background: #EFABAB; border-radius: 50%;}
	.four-weeks-1 .mod-item::after {content: ''; position: absolute; width: 5rem; height: 0; border: 3px dashed #EFABAB; z-index: -100;}
	.four-weeks-1 .mod-item:first-child::before {left: -8rem; bottom: -2rem;}
	.four-weeks-1 .mod-item:nth-child(2)::before {left: -11rem; bottom: 3rem;}
	.four-weeks-1 .mod-item:nth-child(3)::before {left: -11rem; bottom: 6rem;}
	.four-weeks-1 .mod-item:last-child::before {left: -8rem; bottom: 10rem;}

	.four-weeks-1 .mod-item:first-child::after {left: -8rem; width: 10rem; bottom: 1rem; transform: rotate(-27.9deg);}
	.four-weeks-1 .mod-item:nth-child(2)::after {left: -10rem; width: 10rem; bottom: 4rem; transform: rotate(-5.38deg);}
	.four-weeks-1 .mod-item:nth-child(3)::after {left: -10rem; bottom: 6rem; width: 10rem; transform: rotate(6.39deg);}
	.four-weeks-1 .mod-item:last-child::after {left: -8rem; width: 10rem; bottom: 8rem; transform: rotate(31.94deg);}
}

@media screen and (min-width: 1200px) {
	.four-weeks-1 .parallaxScene .item-1 {left: -11%;}
}



/* Донорский mod-simple 1-в-1. Красная «клякса» 001.svg — фон блока через design.image.
   Акцент .accept — класс text-primary (красный темы) на всех разрешениях. */
.simple-1 .module-background.image {background-position: center; background-size: 1920px 100% !important;}

.module.simple-1 {padding: 30px 0 100px 0;}

@media screen and (min-width: 1200px) {
	.simple-1 .row {background: none;}
}




.site-types-1 .type-card {background: #fff; box-shadow: 0 .5rem 1.5rem -.75rem rgba(0, 0, 0, .12); transition: transform .2s ease, box-shadow .2s ease;}
.site-types-1 .type-card.has-link:hover {transform: translateY(-.35rem); box-shadow: 0 1.25rem 2.5rem -1rem rgba(var(--bs-primary-rgb), .28);}

.site-types-1 .type-ico {width: 3.5rem; height: 3.5rem; display: flex; align-items: center; justify-content: center; border-radius: 1rem; background: rgba(var(--bs-primary-rgb), .1);}
.site-types-1 .type-ico i {font-size: 1.5rem;}

.site-types-1 .type-title-link {color: #202020; text-decoration: none;}
.site-types-1 .type-title-link:hover {color: var(--bs-primary);}

.site-types-1 .type-desc {line-height: 1.45;}

.site-types-1 .type-meta {padding-top: .5rem;}
.site-types-1 .type-term {margin-top: .15rem;}

.site-types-1 .btn-outline-primary {align-self: flex-start;}


.module.site-types-1 {padding:100px 0;}

.discount-2 {position: relative; overflow: hidden; padding: 3rem 0;}

/* фон-градиент (красный сверху, светлый снизу) — из discount-1 */
.discount-2 .module-background.color {background: linear-gradient(180deg, var(--bs-primary) 70%, #ffffff 70%) !important;}

/* контент выше фона */
.discount-2 .dc-inner {position: relative; z-index: 1;}

/* карточка с формой */
.discount-2 .discount-card {position: relative; z-index: 2; border: 0; border-radius: 1.5rem; max-width: 62rem;}

/* кошелёк + параллакс-монеты — из over-price-1 */
.discount-2 .parallaxScene {position: absolute; inset: 0; z-index: 0; pointer-events: none;}
/* parallax.js: слои полноразмерные (inset:0), либа двигает их transform'ом; позиция картинки — на img.
   position:absolute!important перебивает инлайн position:relative от либы. */
.discount-2 .parallaxScene > div {position: absolute !important; inset: 0; will-change: transform;}
.discount-2 .parallaxScene > div > img {position: absolute; max-width: 100%;}
.discount-2 .item-1 img {top: 8%;  left: 6%;}
.discount-2 .item-2 img {top: 14%; right: 8%;}
.discount-2 .item-3 img {bottom: 24%; right: 5%;}
.discount-2 .item-4 img {bottom: 6%;  left: 9%;}

/* кошелёк теперь ещё один слой параллакса внутри .parallaxScene:
   обёртка-слой .dc-wallet-layer полноразмерная (inset:0 от правила выше), z-index поднимает над монетами;
   позиция самой картинки — на .dc-wallet (перекрытие не задевает inset:0, т.к. это не прямой ребёнок сцены). */
.discount-2 .dc-wallet-layer {z-index: 1;}
.discount-2 .dc-wallet {position: absolute; left: -14.5rem; bottom: -1.5rem; pointer-events: none;}
.discount-2 .dc-wallet img {max-width: 27rem;}

@media (prefers-reduced-motion: reduce) {
	.discount-2 .parallaxScene > div {transition: none;}
}




.price-constructor-1 {overflow: hidden;}

/* Тёмная скруглённая панель конструктора */
.price-constructor-1 .body-carousel {background: linear-gradient(135deg, #26252C 0%, #43414B 27%, #19191E 100%); border-radius: 1.25rem;}

.price-constructor-1 .pc-lead {max-width: 48rem; margin-inline: auto; opacity: .85;}

/* Опции-кнопки */
.price-constructor-1 .pc-opt {display: inline-flex; flex-direction: column; align-items: flex-start; gap: .15rem; padding: .6rem .9rem; border: 1px solid rgba(255, 255, 255, .22); border-radius: .8rem; background: rgba(255, 255, 255, .08); text-align: left; transition: border-color .15s ease, background .15s ease, box-shadow .15s ease, transform .15s ease;}
.price-constructor-1 .pc-opt:hover {border-color: var(--bs-primary); background: rgba(255, 255, 255, .16); transform: translateY(-3px); box-shadow: 0 .7rem 1.6rem -.5rem rgba(0, 0, 0, .55);}
.price-constructor-1 .btn-check:checked + .pc-opt {border-color: var(--bs-primary); background: var(--bs-primary); color: #fff; box-shadow: 0 0 0 1px var(--bs-primary) inset;}
.price-constructor-1 .btn-check:focus-visible + .pc-opt {box-shadow: 0 0 0 .2rem rgba(var(--bs-primary-rgb), .45);}
.price-constructor-1 .pc-opt-label {line-height: 1.1;}
.price-constructor-1 .pc-opt-price--zero {color: rgba(255, 255, 255, .7);}

/* Итоговая карточка */
.price-constructor-1 .pc-summary {position: sticky; top: 1.5rem; padding: 1.5rem; border: 1px solid rgba(11, 11, 18, .1); border-radius: 1.25rem; background: #fff; box-shadow: 0 1rem 2.5rem -1rem rgba(11, 11, 18, .25);}
.price-constructor-1 .pc-total {display: flex; align-items: baseline; flex-wrap: wrap; gap: .35rem; margin: .25rem 0 1.1rem;}


.module.price-constructor-1 {padding:100px 0;}



/* Фон-картинка на всю площадь по центру */
.cases-1 .module-background.image {background-position: center; background-size: cover;}

/* Блок на красном фоне: заголовок и лид — белые (text-white в разметке) */
.cases-1 .cases-lead {max-width: 46rem; margin-inline: auto;}

/* Табы на красном фоне */
.cases-1 .cases-tabs .nav-link {border: 1px solid rgba(255, 255, 255, .5); border-radius: 2rem; padding: .5rem 1.25rem; color: #fff;}
.cases-1 .cases-tabs .nav-link.active {background: #fff; border-color: #fff; color: var(--bs-primary);}

/* Карточки */
.cases-1 .case-card {background: #fff; border: 1px solid rgba(11, 11, 18, .08); border-radius: 1.25rem; overflow: hidden; box-shadow: 0 .5rem 1.5rem -.75rem rgba(11, 11, 18, .12); transition: transform .2s ease, box-shadow .2s ease; color: inherit; text-decoration: none;}
.cases-1 .case-card:hover {transform: translateY(-.35rem); box-shadow: 0 1.25rem 2.5rem -1rem rgba(var(--bs-primary-rgb), .25);}
.cases-1 .case-media {display: block; overflow: hidden;}
.cases-1 .case-media img {width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease;}
.cases-1 .case-card:hover .case-media img {transform: scale(1.04);}
.cases-1 .case-super .case-media {aspect-ratio: 16 / 10;}
.cases-1 .case-title-link {color: #202020; text-decoration: none;}
.cases-1 .case-title-link:hover {color: var(--bs-primary);}

/* Метрики результата */
.cases-1 .case-metric {display: flex; flex-direction: column; padding: .5rem .75rem; border-radius: .65rem; background: rgba(var(--bs-primary-rgb), .06); min-width: 5rem;}
.cases-1 .case-metric-val {line-height: 1.1;}

/* Другие работы — плитка */
.cases-1 .case-other .case-media {aspect-ratio: 4 / 3;}
.cases-1 .case-other-title {display: block; padding: .75rem 1rem;}


.module.cases-1 {padding:100px 0;}

.price-quiz-1 {position: relative; margin: 5rem 0;}
.price-quiz-1 .quiz-img {filter: grayscale(100%); transition-property: filter;}
.price-quiz-1 .quiz-img, .quiz-card {transition: .5s;}
.price-quiz-1 .quiz-card {transition: 1s;	 cursor: pointer; border-radius: .62rem; background: #FFF; box-shadow: .25rem .25rem 1rem 0 rgba(0, 0, 0, 0.15);}
.price-quiz-1 .quiz-card:hover {box-shadow: .25rem .25rem .62rem 0 rgba(0, 0, 0, 0.25) inset;}
.price-quiz-1 .quiz-card:hover > .quiz-img {filter: none;}
.price-quiz-1 .mod-svg {opacity: 0; z-index: -10000;}
.price-quiz-1::before {background: #fff;}
.price-quiz-1 .mod-label .form-control {border: 1px solid #EC3737; padding: 0.7rem 0.75rem;}
.price-quiz-1 .mod-label label {position: absolute; background: #fff; top: -0.8rem; left: 1.5rem; padding: 0 .5rem;}
.price-quiz-1 .quiz-item.anim_no {animation-name: anim_no; animation-duration: 1s;}
.price-quiz-1 .mod-nav .prev {width: 6.56rem; height: 4.56rem; transition: .5s; border: none; background: #fff; display: flex; justify-content: center; align-items: center;}
.price-quiz-1 .mod-nav .prev:hover {background: #ffffffbd;}
.price-quiz-1 .check_mark {display: flex; justify-content: center; align-items: center; border-radius: 50%; border: .25rem solid #EC3737; background: #fff; height: 4rem; min-width: 4rem;}
.price-quiz-1 .mod-bg {background: #EC3737; color: #fff;}
.price-quiz-1 .title-item {width: 100%;}
@media screen and (min-width: 992px) {
	.price-quiz-1 {}
	.price-quiz-1 .mod-bg-red {background: #EC3737;}
	.price-quiz-1 .mod-bg {color: #000;}
	.price-quiz-1 .title-item {position: relative; background: #fff; border-radius: 1.9rem; padding: 1rem 2rem;}
	.price-quiz-1 .check_mark {margin-left: -.25rem; margin-top: -.25rem;position: absolute; left: 0; top:0; height: 4rem; width: 4rem;}
	.price-quiz-1 .image {margin-bottom: 7.5rem;}
	.price-quiz-1 .mod-nav {position: absolute; bottom: 1rem; left: 3rem;}
	.price-quiz-1 .mod-counter {position: absolute; background: #fff; left: 0; top: 5rem; padding: 1rem;}
}
@media screen and (min-width: 1200px) {
	.price-quiz-1 .mod-bg-red {background: none;}
	.price-quiz-1 .mod-nav {bottom: 0;}
	.price-quiz-1 .mod-nav .prev {clip-path: url(#nav-prev);}
	.price-quiz-1 .mod-counter {margin-top: 5rem; position: static; background: none; padding: 0;}
	.price-quiz-1 .mod-bg {background: none;}
	.price-quiz-1::before {background: url('/assets/images/pages/sozdanie-sajtov/price-quiz-1/016.svg') right no-repeat; background-size: 45% 100%;}
}
@media screen and (min-width: 1400px) {
	.price-quiz-1 .mod-counter {padding: 1rem;}
}
@media screen and (min-width: 1600px) {
	.price-quiz-1::before {background-size: 48% 100%;}
}

@-webkit-keyframes bounceOutLeft{
	20%{-webkit-transform:translate3d(20px,0,0);opacity:1;transform:translate3d(20px,0,0)}
	to{-webkit-transform:translate3d(-2000px,0,0);opacity:0;transform:translate3d(-2000px,0,0)}
}
@keyframes bounceOutLeft{
	20%{-webkit-transform:translate3d(20px,0,0);opacity:1;transform:translate3d(20px,0,0)}
	to{-webkit-transform:translate3d(-2000px,0,0);opacity:0;transform:translate3d(-2000px,0,0)}
}
.bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}
.animated.fast{-webkit-animation-duration:.8s;animation-duration:.8s}

@-webkit-keyframes bounceInUp{
	0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}
	0%{-webkit-transform:translate3d(0,3000px,0);opacity:0;transform:translate3d(0,3000px,0)}
	60%{-webkit-transform:translate3d(0,-20px,0);opacity:1;transform:translate3d(0,-20px,0)}
	75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}
	90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}
	to{-webkit-transform:translateZ(0);transform:translateZ(0)}
}
@keyframes bounceInUp{
	0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}
	0%{-webkit-transform:translate3d(0,3000px,0);opacity:0;transform:translate3d(0,3000px,0)}
	60%{-webkit-transform:translate3d(0,-20px,0);opacity:1;transform:translate3d(0,-20px,0)}
	75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}
	90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}
	to{-webkit-transform:translateZ(0);transform:translateZ(0)}
}
@keyframes anim_no{
	0% {
		transform: translateX(-3rem);
	}
	50% {
		transform: translateX(3rem);
	}
	100% {
		transform: translateX(0s);
	}
}




.technics-1 {position: relative; min-height: 100vh; padding: 3rem 0; margin-top: 5rem; display: flex; flex-direction: column; justify-content: center;}

@media (max-width: 576px) {
	.technics-1 {min-height: auto; padding: 2.5rem 0;}
}

.technics-1 .mod-block {border-radius: 5.57px; width: fit-content; background: var(--bs-primary);}
.technics-1 .title {width: fit-content;}

.technics-1 .mod-block__video {width: 100%; height: 37.5rem; cursor: pointer;}

.technics-1 .module-background.image {background-size: 100% 100% !important;}




.work-stages-1 .ws-lead {max-width: 48rem; margin-inline: auto;}

/* Переключатели набора этапов */
.work-stages-1 .ws-tab {border: 2px solid var(--bs-primary); background: transparent; color: var(--bs-primary); border-radius: 2rem; padding: .55rem 1.4rem; font-weight: 700; line-height: 1.2; transition: background .2s ease, color .2s ease;}
.work-stages-1 .ws-tab:hover {background: rgba(var(--bs-primary-rgb), .1);}
.work-stages-1 .ws-tab.active {background: var(--bs-primary); color: var(--bs-primary-text, #fff);}

/* Карточка шага */
.work-stages-1 .ws-step {background: #fff; border: 1px solid rgba(11, 11, 18, .08); border-radius: 1.1rem; padding: 1.5rem; box-shadow: 0 .5rem 1.5rem -.75rem rgba(11, 11, 18, .12); transition: transform .2s ease, box-shadow .2s ease;}
.work-stages-1 .ws-step:hover {transform: translateY(-.35rem); box-shadow: 0 1.25rem 2.5rem -1rem rgba(var(--bs-primary-rgb), .25);}
.work-stages-1 .ws-num {display: inline-flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--bs-primary);}
.work-stages-1 .ws-term {display: inline-flex; align-items: center; padding: .3rem .7rem; border-radius: 2rem; background: rgba(var(--bs-primary-rgb), .1); font-size: .85em;}
.work-stages-1 .ws-list li {margin-bottom: .5rem; line-height: 1.35;}
.work-stages-1 .ws-list li:last-child {margin-bottom: 0;}
.work-stages-1 .ws-check {margin-top: .2rem; flex-shrink: 0;}

/* Доп-этапы режима «Лучшее решение» — чуть другой цвет */
.work-stages-1 .ws-extra .ws-step {background: rgba(var(--bs-primary-rgb), .05); border-color: rgba(var(--bs-primary-rgb), .3);}
.work-stages-1 .ws-extra .ws-num {background: var(--bs-body-color);}

/* Итоговая полоса «30 дней до запуска» */
.work-stages-1 .ws-total {background: var(--bs-primary); border-radius: 1.25rem;}
.work-stages-1 .ws-total-text {opacity: .9;}
.work-stages-1 .ws-total .btn-outline-primary {border-color: #fff; color: #fff;}
.work-stages-1 .ws-total .btn-outline-primary:hover {background: #fff; color: var(--bs-primary);}
.work-stages-1 .ws-total .btn-primary {background: #fff; border-color: #fff; color: var(--bs-primary);}
.work-stages-1 .ws-total .btn-primary:hover {background: rgba(255, 255, 255, .9);}


.module.work-stages-1 {padding:100px 0;}


.whats-included-1 .whats-included-lead {max-width: 46rem;}
.whats-included-1 .card {transition: transform .25s ease, box-shadow .25s ease;}
.whats-included-1 .card:hover {transform: translateY(-.25rem);}
.whats-included-1 .icon-circle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	background: color-mix(in srgb, var(--bs-primary) 12%, transparent);
}



/* Красный фон-волна (design.image) — растяжка на весь блок + контраст текста */
.about-short-1 .module-background.image {background-size: 100% 100% !important; background-position: center !important;}
.about-short-1 {color: #fff;}

.about-short-1 .about-short-intro {max-width: 34rem;}
.about-short-1 .card {transition: transform .25s ease, box-shadow .25s ease;}
.about-short-1 .card:hover {transform: translateY(-.25rem);}
.about-short-1 .h6 {line-height: 1.1;}


.module.about-short-1 {padding:100px 0;}

.federal-channels-1 .fc-inner { position: relative; }
.federal-channels-1 .fc-wrap { position: relative; z-index: 1; }

@media (max-width: 767.98px) {
	.module.federal-channels-1 {padding-top: 50px !important;}
}

/* фон-точки + микрофоны — декор (только lg+) */
.federal-channels-1 .fc-bg {
	position: absolute;
	top: 50%;
	right: -2%;
	transform: translateY(-50%);
	max-width: 46%;
	opacity: .5;
	z-index: 0;
	pointer-events: none;
}
.federal-channels-1 .fc-mic {
	position: absolute;
	z-index: 2;
	pointer-events: none;
	filter: drop-shadow(0 .75rem 1.25rem rgba(0, 0, 0, .18));
}
.federal-channels-1 .fc-mic-1 { width: 5.5rem;  top: -1.75rem;   right: 6%;  animation: fc-float 6s ease-in-out infinite; }
.federal-channels-1 .fc-mic-2 { width: 4.25rem; bottom: -1.25rem; right: 52%; animation: fc-float 7.5s ease-in-out infinite .8s; }
@keyframes fc-float {
	0%, 100% { transform: translateY(0) rotate(-5deg); }
	50%      { transform: translateY(-14px) rotate(5deg); }
}

/* число интервью */
.federal-channels-1 .fc-count-label { max-width: 12rem; line-height: 1.2; }

/* чипы каналов */
.federal-channels-1 .fc-channel {
	padding: .3rem .85rem;
	border: 1px solid rgba(var(--bs-primary-rgb), .25);
	border-radius: 2rem;
	background: rgba(var(--bs-primary-rgb), .05);
	white-space: nowrap;
}

/* превью видео */
.federal-channels-1 .fc-video { text-decoration: none; }
.federal-channels-1 .fc-video-img {
	border-radius: .85rem;
	overflow: hidden;
	background: #000;
	box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .12);
}
.federal-channels-1 .fc-video-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.federal-channels-1 .fc-video:hover .fc-video-img img { transform: scale(1.06); }
.federal-channels-1 .fc-play { background: rgba(0, 0, 0, .2); transition: background .3s ease; }
.federal-channels-1 .fc-video:hover .fc-play { background: rgba(var(--bs-primary-rgb), .6); }
.federal-channels-1 .fc-video-title { transition: color .2s ease; }
.federal-channels-1 .fc-video:hover .fc-video-title { color: var(--bs-primary); }

/* Цитата директора федерального канала (К. Эрнст).
   Мобайл — «третьей колонкой» снизу по центру; десктоп — прижата к низу и правому углу экрана. */
.federal-channels-1 { position: relative; }
.federal-channels-1 .fc-director { margin: 1.5rem auto 0; max-width: 22rem; }
.federal-channels-1 .fc-director img { display: block; width: 100%; height: auto; }

@media (min-width: 992px) {
	.federal-channels-1 .fc-director {
		position: absolute; right: 0; bottom: 0; margin: 0;
		z-index: 2; max-width: min(26rem, 30vw); pointer-events: none;
	}
}


.module.federal-channels-1 {padding:100px 0;}

/* Отзывы — официальный виджет Яндекс.Карт во вкладках. reviews-2 -> имя папки инстанса. */

/* вкладки филиалов */
.reviews-2 .yx-tabs {gap: .5rem; border: 0; flex-wrap: wrap;}
.reviews-2 .yx-tab {
	border: 1px solid rgba(var(--bs-primary-rgb), .3);
	background: transparent;
	color: var(--bs-body-color);
	border-radius: 2rem;
	padding: .5rem 1.35rem;
	line-height: 1.2;
	transition: background .2s, color .2s, border-color .2s;
}
.reviews-2 .yx-tab:hover {border-color: var(--bs-primary); color: var(--bs-primary);}
.reviews-2 .yx-tab.active {background: var(--bs-primary); border-color: var(--bs-primary); color: var(--bs-primary-text);}
.reviews-2 .yx-tab i {color: inherit;}
.reviews-2 .yx-soon {margin-top: -.25rem;}

/* карточка виджета */
.reviews-2 .yx-widget {max-width: 720px; margin: 0 auto; text-align: center;}
.reviews-2 .yx-frame {
	width: 100%;
	height: 620px;
	border: 1px solid rgba(11, 11, 18, .12);
	border-radius: 1.1rem;
	box-sizing: border-box;
	display: block;
	background: var(--bs-body-bg);
	box-shadow: 0 .5rem 1.75rem rgba(11, 11, 18, .06);
}
.reviews-2 .yx-all {
	display: inline-flex;
	align-items: center;
	margin-top: 1rem;
	color: var(--bs-secondary-color);
	text-decoration: none;
	transition: color .2s;
}
.reviews-2 .module-background.image {background-size: 100% 100% !important; background-position: center !important; opacity: .1;}
.module.reviews-2 {padding-bottom: 50px !important;}
.reviews-2 .yx-all:hover {color: var(--bs-primary);}

@media (max-width: 575.98px) {
	.reviews-2 .yx-frame {height: 540px;}
}


.module.reviews-2 {padding:100px 0;}



.dear-customer-1 .skew {position: relative; overflow: hidden;}
.dear-customer-1 .skew-background {height: 100%; overflow-x: hidden;}
.dear-customer-1 .skew-background-external {position: absolute; transform: translateX(-50%); left: 50%; bottom: 0; top: 25px;}

.dear-customer-1 .button-float {width: 6em; height: 6em; border-radius: 50%; border: none; position: relative; background-color: red;}
.dear-customer-1 .button-float::before {content: ""; position: absolute; pointer-events: none; transform: translate(-50%, -50%); top: 50%; left: 50%; border-radius: 50%; z-index: -1;}
.dear-customer-1 .button-float::after {content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: center no-repeat;}
.dear-customer-1 .button-float-pulse-double::before {background-color: rgba(255, 0, 0, 0.5); animation: dearCustomerPulseDouble 1.4s linear infinite;}
.dear-customer-1 .button-float:hover.button-float-content-shake::after {animation: dearCustomerShake 1.4s linear infinite;}

@media (min-width: 768px) {
	.dear-customer-1 .skew-content {float: right; width: 100%; max-width: calc(660px - var(--bs-gutter-x)); height: 100%;}
	.dear-customer-1 .skew-background {border: solid #dc3545; border-width: 0 0 0 24px; transform-origin: 50% 100% 0; transform: skewX(-20deg);}
	.dear-customer-1 .skew-background-internal {position: absolute; top: 0; bottom: 0; left: 50%; width: 100%; overflow: hidden; transform-origin: 50% 100% 0; transform: skewX(20deg) translateX(-50%); z-index: -1;}
	.dear-customer-1 .skew-background-external {transform: none; left: 0; top: 100px;}
}

@media (max-height: 850px) {
	.dear-customer-1 .skew-background-external {top: 20px;}
}

.dear-customer-1 {padding-top: 5rem; position: relative; overflow: hidden;}
.dear-customer-1 .appeal-button-float > .button-float {font-size: 1.5em; box-shadow: 0 0 1.25em rgb(245 58 58);}
.dear-customer-1 .appeal-button-float > .button-float::after {background-image: url(/assets/images/pages/prodvizhenie-saytov/dear-customer-play.svg); background-size: 50%; left: 8% !important;}
.dear-customer-1 .appeal-skew {min-height: 310px; overflow: inherit;}
.dear-customer-1 .skew-width {width: 200%;}

.dear-customer-1 .skew-background-internal {left: 25%;}

@media (min-width: 768px) {
	.dear-customer-1 .appeal-button-float {left: 8em !important;}
	.dear-customer-1 .appeal-skew {min-height: 650px;}
	.dear-customer-1 {padding-top: 0;}
}

.dear-customer-1 .accent {color: var(--bs-primary);}

@keyframes dearCustomerPulseDouble {
	0% {box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.3); width: 6.25em; height: 6.25em;}
	33.3333% {box-shadow: 0 0 0 1.25em rgba(255, 0, 0, 0.3); width: 6.25em; height: 6.25em;}
	50% {box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.3); width: 6.875em; height: 6.875em;}
	66.6666% {box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.3); width: 7.5em; height: 7.5em;}
	100% {box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.3); width: 6.25em; height: 6.25em;}
}
@keyframes dearCustomerShake {
	0% {transform: rotateZ(45deg);}
	10% {transform: rotateZ(-45deg);}
	20% {transform: rotateZ(36deg);}
	30% {transform: rotateZ(-36deg);}
	40% {transform: rotateZ(27deg);}
	50% {transform: rotateZ(-27deg);}
	60% {transform: rotateZ(18deg);}
	70% {transform: rotateZ(-18deg);}
	80% {transform: rotateZ(9deg);}
	90% {transform: rotateZ(-9deg);}
	100% {transform: rotateZ(0);}
}

@media (prefers-reduced-motion: reduce) {
	.dear-customer-1 * {animation: none !important;}
}



.guarantees-bonuses-1 .gb-subtitle {
	max-width: 40rem;
}

.guarantees-bonuses-1 .gb-card {
	border-radius: 1rem;
	transition: transform .2s ease, box-shadow .2s ease;
}
.guarantees-bonuses-1 .gb-card:hover {
	transform: translateY(-.35rem);
	box-shadow: 0 1.25rem 2.5rem rgba(11, 11, 18, .12) !important;
}

.guarantees-bonuses-1 .gb-card-accent {
	border: 1px solid rgba(var(--bs-primary-rgb), .4) !important;
	box-shadow: 0 1rem 2rem rgba(var(--bs-primary-rgb), .14) !important;
}

.guarantees-bonuses-1 .gb-ico {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 50%;
	background: rgba(var(--bs-primary-rgb), .1);
	color: var(--bs-primary);
	flex: 0 0 auto;
}

.guarantees-bonuses-1 .gb-card-accent .gb-ico {
	background: var(--bs-primary);
	color: var(--bs-primary-text, #fff);
}



.module.guarantees-bonuses-1 {padding:80px 0;}


.dont-fall-1 {position: relative;}
.module.dont-fall-1 {padding: 200px 0 100px !important;}
.dont-fall-1 .module-background.image {background-size: 100% 100% !important; background-repeat: no-repeat;}
.dont-fall-1 .image {z-index: -1;}
.dont-fall-1 .image img {max-width: 100%;}
.dont-fall-1 .text-1 {padding-top: 0; z-index: 10; position: relative;}
.dont-fall-1 .text-2 {padding-top: 0; z-index: 10; position: relative;}
.dont-fall-1 .parallaxScene {position: absolute; inset: 0; z-index: 0; pointer-events: none;}
/* parallax.js: каждый .item — полноразмерный слой (inset:0), библиотека двигает его transform'ом;
   позиция/размер самой картинки — на внутреннем img. position:absolute!important перебивает инлайн от либы. */
.dont-fall-1 .parallaxScene > div {position: absolute !important; inset: 0; margin: 0; will-change: transform;}
.dont-fall-1 .parallaxScene > div > img {position: absolute;}
.dont-fall-1 .item-1 img {top: 40%; left: 0%; width: 200px;}
.dont-fall-1 .item-2 img {top: 35%; left: 10%; width: 100px;}
.dont-fall-1 .item-3 img {top: 55%; left: 17%; width: 100px;}
.dont-fall-1 .item-4 img {top: 42%; right: 50%; width: 100px;}
.dont-fall-1 .item-5 img {top: 44%; right: 20%; width: 100px;}
.dont-fall-1 .item-6 img {top: 0; right: -5%; width: 245px;}
.dont-fall-1 .item-7 img {top: 35%; right: 0%; width: 245px;}
.dont-fall-1 .item-8 img {top: 0%; left: 0%; width: 245px;}
/* Читаемость текста поверх фона/декора */
.dont-fall-1 h2 {text-shadow: 0 2px 6px rgba(0, 0, 0, .5);}
.dont-fall-1 .df-plate {margin-bottom: 1.1rem; line-height: 1.4; text-shadow: 0 1px 4px rgba(0, 0, 0, .55);}
.dont-fall-1 .df-plate:last-child {margin-bottom: 0;}
.dont-fall-1 .accent {color: var(--bs-primary);}
/* Кликабельные фразы-триггеры формы — белый бейдж, шрифт наследует текст плашки */
.dont-fall-1 .df-badge {display: inline; font: inherit; cursor: pointer; border: none; padding: .05em .5em; border-radius: .6rem; background: #fff; text-shadow: none; -webkit-box-decoration-break: clone; box-decoration-break: clone;}
.dont-fall-1 .df-badge:hover {background: rgba(255, 255, 255, .85);}

@media screen and (min-width: 992px) {

	.dont-fall-1 .text-1 {padding-top: 15rem;}
	/* Фигура падающего мужчины крупнее на ~40% только на десктопе (≥992px), мобилка не тронута */
	.dont-fall-1 .image img {max-width: min(100%, 860px); width: auto; height: auto; display: inline-block; transform: scale(1.4); transform-origin: center;}
}
@media screen and (min-width: 1200px) {
	.dont-fall-1 .text-2 {padding-top: 1rem;}
}
@media screen and (min-width: 1400px) {
	.dont-fall-1 .text-2 {padding-top: 5rem;}
}
@media screen and (max-width: 767.98px) {
	.module.dont-fall-1 {padding: 50px 0 !important;}
}
@media (prefers-reduced-motion: reduce) {
	.dont-fall-1 .parallaxScene > div {transform: none !important;}
}



.faq-2 .accordion {
	--bs-accordion-btn-focus-box-shadow: none;
	--bs-accordion-active-bg: var(--bs-body-bg);
	--bs-accordion-active-color: var(--bs-primary);
}

.faq-2 .accordion-button {
	text-decoration: none;
	color: var(--bs-body-color);
}

.faq-2 .accordion-button:hover {
	color: var(--bs-primary);
}

.faq-2 .accordion-button::after {
	display: none;
}

.faq-2 .faq-chevron {
	transition: transform 0.3s ease;
}

.faq-2 .accordion-button:not(.collapsed) .faq-chevron {
	transform: rotate(180deg);
}

.faq-2 .accordion-body {
	line-height: 1.6;
}


.module.faq-2 {padding:100px 0;}


.work-for-you-1 .accent {color: var(--bs-primary);}
.work-for-you-1 .wfy-card {transition: transform .25s ease, box-shadow .25s ease;}
.work-for-you-1 .wfy-card:hover {transform: translateY(-.35rem); box-shadow: 0 1.25rem 2.5rem -1rem rgba(var(--bs-primary-rgb), .25);}
.work-for-you-1 .wfy-ico {display: inline-flex; align-items: center; justify-content: center; width: 4rem; height: 4rem; margin-inline: auto; border-radius: 50%; background: rgba(var(--bs-primary-rgb), .1);}


.module.work-for-you-1 {padding:100px 0;}

.services-map-1 .services-tile {
	border: 1px solid rgba(0, 0, 0, .08);
	border-radius: 1rem;
	background: var(--bs-body-bg);
	cursor: pointer;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.services-map-1 .services-tile:hover {
	transform: translateY(-4px);
	box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .08);
	border-color: var(--bs-primary);
}

.services-map-1 .tile-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.25rem;
	height: 3.25rem;
	flex: 0 0 auto;
	border-radius: .85rem;
	background: rgba(var(--bs-primary-rgb), .1);
	color: var(--bs-primary);
}
.services-map-1 .tile-title {
	line-height: 1.15;
}

.services-map-1 .tile-list li {
	padding-block: .4rem;
	border-top: 1px solid rgba(0, 0, 0, .05);
}
.services-map-1 .tile-list > li:first-child {
	border-top: 0;
}
.services-map-1 .tile-list a {
	color: var(--bs-body-color);
	text-decoration: none;
	transition: color .2s ease, padding-left .2s ease;
	display: inline-flex;
	align-items: center;
	gap: .5rem;
}
.services-map-1 .tile-list a::before {
	content: "\f105"; /* fa chevron-right */
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: var(--bs-primary);
	opacity: 0;
	transition: opacity .2s ease;
}
.services-map-1 .tile-list a:hover {
	color: var(--bs-primary);
	padding-left: .35rem;
}
.services-map-1 .tile-list a:hover::before {
	opacity: 1;
}

.services-map-1 .svc-soon {
	opacity: .75;
}
.services-map-1 .svc-soon::after {
	content: "скоро";
	display: inline-block;
	margin-left: .4rem;
	padding: .05rem .4rem;
	border-radius: .5rem;
	background: rgba(var(--bs-primary-rgb), .08);
	color: var(--bs-primary);
	vertical-align: middle;
	opacity: .9;
}

.services-map-1 .tile-sublist {
	margin: .25rem 0 .25rem 1.35rem;
	padding-left: .75rem;
	border-left: 2px solid rgba(var(--bs-primary-rgb), .15);
}
.services-map-1 .tile-sublist li {
	padding-block: .2rem;
	border: 0;
}

/* Выделенная плитка (База знаний/Блог и т.п.) */
.services-map-1 .services-tile--accent {
	border-color: var(--bs-primary);
	background: linear-gradient(180deg, rgba(var(--bs-primary-rgb), .07), rgba(var(--bs-primary-rgb), .02));
	box-shadow: 0 .5rem 1.5rem rgba(var(--bs-primary-rgb), .1);
}
.services-map-1 .services-tile--accent .tile-ico {
	background: var(--bs-primary);
	color: var(--bs-primary-text);
}
.services-map-1 .services-tile--accent:hover {
	box-shadow: 0 1rem 2.5rem rgba(var(--bs-primary-rgb), .18);
}

/* Компактный режим («Другие услуги» внизу страниц) */
.services-map-1 .services-map--compact .services-tile {
	border: 0;
	border-radius: 0;
	background: transparent;
	padding: 0 !important;
}
.services-map-1 .services-map--compact .services-tile:hover {
	transform: none;
	box-shadow: none;
}
.services-map-1 .services-map--compact .tile-ico {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: .6rem;
}
.services-map-1 .services-map--compact .tile-list li {
	border-top: 0;
	padding-block: .2rem;
}

/* Аккордеон секций — заголовок-тумблер + каретка */
.services-map-1 .svc-toggle {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}
.services-map-1 .svc-toggle:hover .tile-title {
	color: var(--bs-primary);
}
.services-map-1 .svc-caret {
	transition: transform .2s ease;
}
.services-map-1 .svc-toggle:not(.collapsed) .svc-caret {
	transform: rotate(180deg);
}


.module.services-map-1 {padding:80px 0;}



.article-1 {padding: 5rem 0;}

.article-1 .article-body {height: 400px; overflow: hidden; position: relative; max-width: 1320px;}

.article-1 .article-body::after {
	content: ''; position: absolute; right: 0; bottom: 0; left: 0; height: 200px;
	background: linear-gradient(to top, var(--bs-body-bg), rgba(255, 255, 255, 0));
	pointer-events: none;
}

.article-1 .article-checkbox:checked ~ .article-schema .article-body {height: auto;}
.article-1 .article-checkbox:checked ~ .article-schema .article-body::after {background: none;}

/* Чекбокс убираем с экрана, но оставляем в фокусируемом потоке – кнопка работает с клавиатуры. */
.article-1 .article-checkbox {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.article-1 .article-checkbox:focus-visible + .article-label {
	box-shadow: 0 0 0 .25rem rgba(var(--bs-primary-rgb), .25);
}

.article-1 .label-less {display: none;}
.article-1 .article-checkbox:checked + .article-label .label-more {display: none;}
.article-1 .article-checkbox:checked + .article-label .label-less {display: inline;}

.article-1 .article-body .body,
.article-1 .article-body {line-height: 1.5;}
.article-1 .article-body p {margin-bottom: 1rem;}
.article-1 .article-body h2 {margin-bottom: 1.5rem;}

.article-1 .article-body th,
.article-1 .article-body td {border: 1px solid #000; padding: 8px; text-align: left;}

.article-1 .article-body img {max-width: 100%; height: auto;}

@media (prefers-reduced-motion: reduce) {
	.article-1 * {animation: none !important; transition: none !important;}
}




.form-min-1 {
	position: relative;
	overflow-x: clip;
	padding-top: 100px;
	padding-bottom: 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* блок боксирован: движок оборачивает вывод в .container (design.container = 1) */
.form-min-1 > .container {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
}

@media (min-width: 768px) {
	.form-min-1 .h-md-100 {height: 100% !important;}
}

.form-min-1 .skew {position: relative; overflow: hidden;}
.form-min-1 .skew-background {height: 100%; overflow-x: hidden;}
.form-min-1 .skew-background-external {position: absolute; transform: translateX(-50%); left: 50%; bottom: 0; top: 25px; display: flex; align-items: flex-end;}

@media (min-width: 768px) {
	.form-min-1 .skew-content {float: right; width: 100%; max-width: calc(660px - var(--bs-gutter-x)); height: 100%;}

	.form-min-1 .skew-background {border: solid var(--bs-primary); border-width: 0 0 0 24px; transform-origin: 50% 100% 0; transform: skewX(-20deg);}
	.form-min-1 .skew-background-internal {position: absolute; top: 0; bottom: 0; left: 50%; width: 100%; overflow: hidden; transform-origin: 50% 100% 0; transform: skewX(20deg) translateX(-50%); z-index: -1;}
	.form-min-1 .skew-background-external {transform: none; left: 0; top: 100px;}
}

/* ── десктоп: скошенная панель — абсолютная правая половина блока во всю высоту (full-bleed до края экрана), как в title-1 ── */
@media (min-width: 992px) {
	.form-min-1 .skew {
		position: absolute;
		overflow: hidden;
		left: 50%;
		width: 50vw;
		top: 0;
		bottom: 0;
	}
}

@media (max-height: 850px) {
	.form-min-1 .skew-background-external {top: 20px;}
}

.form-min-1 .form-consent {padding-top: 1rem; margin-bottom: 1.5rem;}
.form-min-1 .form-consent a {color: inherit; font-weight: 500; text-decoration: underline;}

.form-min-1 .send_form {display: flex; flex-direction: column;}
.form-min-1 .send_form .btn {width: auto; align-self: center;}

@media (min-width: 768px) {
	.form-min-1 .send_form .btn {align-self: flex-start;}
}

/* акценты в тексте */
.form-min-1 .title em,
.form-min-1 .accent {font-style: normal; color: var(--bs-primary);}

/* реквизиты под кнопкой */
.form-min-1 .req-list {display: grid; grid-template-columns: auto 1fr; gap: .2rem .9rem; max-width: 34rem;}
.form-min-1 .req-list > div {display: contents;}
.form-min-1 .req-list dt {margin: 0; font-weight: 500; color: var(--bs-secondary-color); white-space: nowrap;}
.form-min-1 .req-list dd {margin: 0; color: var(--bs-body-color);}
.form-min-1 .req-list a {color: inherit; text-decoration: none;}
.form-min-1 .req-list a:hover {color: var(--bs-primary);}


/* Подвал. Перенос css/_footer.scss + части _components.scss (#scroll-to-top) Zerro v0.1.
   $body-color -> var(--bs-body-color), $danger -> var(--bs-primary), $zindex-fixed -> 1030.
   Фон подвала (var(--bs-light) у донора, .bg-color-light) задаётся не тут, а в .data.php
   -> design.color: движок сам рисует .module-background. Иконка стрелки — Font Awesome
   вместо /images/tmpl/icon/arrow.svg. */

.footer-1 {padding: 3rem 0; position: relative;}
.footer-1 address {font-style: normal; margin: 0;}
.footer-1 a {color: var(--bs-body-color);}
.footer-1 a:hover {color: var(--bs-primary);}
.footer-1 .footer-tel {font-weight: 700;}

.footer-1 ul {display: block; list-style: none; margin: 0; padding: 0;}
.footer-1 ul li {display: block; margin: 0; padding: 0;}
.footer-1 ul li a {display: block; margin: 0; padding: .25rem 0;}
.footer-1 .footer-system ul li a {padding: .1rem 0;}

.footer-1 .btn-outline-primary {color: var(--bs-primary);}
.footer-1 .btn-outline-primary:hover {color: var(--bs-primary-text);}

.footer-1 .scroll-to-top {position: fixed; z-index: 1030; left: 2em; bottom: 2em; width: 2.5rem; height: 2.5rem; font-size: .7rem; display: flex; justify-content: center; align-items: center; border: none; border-radius: .25rem; opacity: 0; pointer-events: none; transition: .5s; background: rgba(0, 0, 0, .2); color: #fff;}
.footer-1 .scroll-to-top.active {opacity: 1; pointer-events: auto;}
.footer-1 .scroll-to-top:hover {background: rgba(0, 0, 0, .3);}

@media (min-width: 576px) {
	.footer-1 .scroll-to-top {font-size: .85rem;}
}
@media (min-width: 768px) {
	.footer-1 .scroll-to-top {font-size: 1rem;}
}


