/*
Theme Name: FinLogistic
Theme URI: https://finlogistic.ru
Author: FinLogistic
Description: Блочная тема лендинга FinLogistic — работа с Китаем под ключ (ФЗ-289).
Version: 1.0.0
Requires at least: 6.4
Requires PHP: 7.4
Text Domain: finlogistic
*/

/* ==========================================================================
   0. Переменные
   ========================================================================== */
:root {
	--container-width: 1440px;
	--gutter: 40px;

	--color-blue: #254aef;
	--color-blue-shadow: rgba(37, 74, 239, 0.32);
	--color-lime: #d5ff8e;
	--color-olive: #7fa938;
	--color-ink: #1e1e1e;
	--color-hero-bg: #eaedf5;
	--color-white: #ffffff;
	--color-line: rgba(17, 18, 23, 0.08);

	--font-body: 'Manrope', sans-serif;

	--header-height: 96px;
}

@media (max-width: 900px) {
	:root {
		--gutter: 20px;
	}
}

/* ==========================================================================
   1. Базовый сброс
   ========================================================================== */
* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	color: var(--color-ink);
	background: var(--color-white);
	margin: 0;
	-webkit-font-smoothing: antialiased;
}

p {
	margin: 0;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

.nav p,
figure {
	margin: 0;
}

:root :where(.wp-site-blocks) > * {
	margin-block-start: 0;
}

main {
	margin-top: 0 !important;
	overflow-x: clip;
}

/* ==========================================================================
   2. Контейнер / утилиты
   ========================================================================== */
.container {
	width: min(var(--container-width), 100% - 2 * var(--gutter));
	margin-inline: auto;
	box-sizing: border-box;
}

:root .container.wp-block-group {
	width: min(var(--container-width), 100% - 2 * var(--gutter));
	max-width: none;
}

.section {
	position: relative;
}

/* ==========================================================================
   3. Шапка (site-header)
   ========================================================================== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: transparent;
	border-bottom: 1px solid transparent;
	transition: border-color 0.25s ease;
}

.site-header::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	background: transparent;
	transition: background-color 0.25s ease;
	pointer-events: none;
}

.site-header.is-scrolled {
	border-bottom-color: rgba(0, 0, 0, 0.15);
}

.site-header.is-scrolled::before {
	background: rgba(255, 255, 255, 0.72);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.site-header__row {
	height: var(--header-height);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.site-logo {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
}

.site-logo__mark {
	width: 41.64px;
	height: 41.64px;
	border-radius: 50%;
	flex-shrink: 0;
}

.site-logo__mark img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.site-logo__word {
	height: 27.34px;
	width: auto;
	display: block;
}

.site-logo__word img {
	height: 100%;
	width: auto;
	display: block;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 44px;
}

.site-nav a {
	font-weight: 600;
	font-size: 14px;
	color: rgba(0, 0, 0, 0.68);
	white-space: nowrap;
	transition: color 0.2s ease;
}

.site-nav a:hover {
	color: var(--color-ink);
}

:root .wp-block-buttons {
	gap: 0;
}

:root .wp-block-button .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	gap: var(--btn-gap, 16px);
	border-radius: 999px;
	font-family: var(--font-body);
	white-space: nowrap;
	border: none;
	cursor: pointer;
	text-align: left;
}

:root .wp-block-button.btn-arrow .wp-block-button__link::after {
	content: '';
	flex-shrink: 0;
	width: var(--arrow-size, 26px);
	height: var(--arrow-size, 26px);
	border-radius: 999px;
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E")
		50% 50% / 12px no-repeat,
		var(--color-lime);
	transition: width 0.25s ease, background-position 0.25s ease;
}

:root .wp-block-button.btn-arrow .wp-block-button__link:hover::after,
:root .wp-block-button.btn-arrow .wp-block-button__link:focus-visible::after {
	width: calc(var(--arrow-size, 26px) + var(--arrow-grow, 6px));
	background-position: calc(50% + var(--arrow-grow, 6px) / 2) 50%, 0 0;
}

:root .wp-block-button.btn--header {
	--arrow-size: 26px;
	--arrow-font: 15px;
	--btn-gap: 16px;
}

:root .wp-block-button.btn--header .wp-block-button__link {
	height: 46px;
	padding: 0 10px 0 23px;
	background: var(--color-blue);
	color: var(--color-white);
	font-size: 16px;
	font-weight: 700;
	transition: background-color 0.2s ease;
}

:root .wp-block-button.btn--header .wp-block-button__link:hover {
	background: #3e61ff;
}

:root .wp-block-button.btn--primary {
	--arrow-size: 44px;
	--arrow-font: 22px;
	--btn-gap: 24px;
}

:root .wp-block-button.btn--primary .wp-block-button__link {
	height: 62px;
	padding: 0 10px 0 28px;
	background: var(--color-blue);
	color: var(--color-white);
	font-size: 16px;
	font-weight: 800;
	box-shadow: 0 17px 24px var(--color-blue-shadow);
	transition: background-color 0.2s ease;
}

:root .wp-block-button.btn--primary .wp-block-button__link:hover {
	background: #3e61ff;
}

:root .wp-block-button.btn--lime .wp-block-button__link {
	height: 44px;
	padding: 0 24px;
	background: var(--color-lime);
	border: 1px solid rgba(213, 255, 142, 0.65);
	color: #000;
	font-size: 14px;
	font-weight: 700;
	justify-content: center;
	transition: background-color 0.2s ease;
}

:root .wp-block-button.btn--lime .wp-block-button__link:hover {
	background: #dbff9d;
}

:root .wp-block-button.btn--outline {
	--arrow-size: 42px;
	--arrow-font: 19px;
	--btn-gap: 10px;
}

:root .wp-block-button.btn--outline .wp-block-button__link {
	height: 50px;
	padding: 0 10px 0 24px;
	background: transparent;
	border: 1px solid #ccc;
	color: #111217;
	font-size: 16px;
	font-weight: 700;
	transition: border-color 0.2s ease;
}

:root .wp-block-button.btn--outline .wp-block-button__link:hover {
	border-color: #adadad;
}

/* ==========================================================================
   4. Hero
   ========================================================================== */
.hero {
	position: relative;
	background: var(--color-hero-bg);
	overflow: clip;
}

.hero__bg {
	z-index: 0;
	pointer-events: none;
}

:root .hero__bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.hero__bg-mobile {
	display: none;
}

:root .hero__bg img {
	position: absolute;
	right: -200px;
	left: auto;
	top: 0;
	height: 100%;
	width: auto;
	max-width: none;
}

@media (max-width: 1600px) {
	:root .hero__bg img {
		right: auto;
		left: -352px;
	}
}

:root .hero__bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, var(--color-hero-bg) 0%, var(--color-hero-bg) 4%, rgba(234, 237, 245, 0) 18%);
}

.hero__body {
	position: relative;
	z-index: 1;
	padding-top: calc(var(--header-height) + 46px);
	padding-bottom: 96px;
}

.hero__eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}

.hero__eyebrow-dash {
	width: 28px;
	height: 6px;
	border-radius: 9px;
	background: var(--color-olive);
	flex-shrink: 0;
}

.hero__eyebrow-text {
	font-weight: 800;
	font-size: 15px;
	letter-spacing: 1.82px;
	text-transform: uppercase;
	color: var(--color-olive);
}

.hero__title {
	margin: 0;
	font-weight: 300;
	font-size: 70px;
	line-height: 1.1;
	letter-spacing: -3.3px;
	color: #000;
	max-width: 730px;
}

.hero__title-break {
	display: inline;
}

@media (max-width: 1800px) {
	:root .hero__title-break {
		display: block;
	}

	:root .hero__title-break + br {
		display: none;
	}

	:root .hero__title strong {
		margin-top: 3px;
	}
}

.hero__title strong {
	display: block;
	font-weight: 800;
	font-size: 79px;
	line-height: 0.82;
	letter-spacing: -3.3px;
	background: linear-gradient(90deg, #000 0%, var(--color-lime) 55%, #718bff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-top: 12px;
}

.hero__subtitle {
	font-weight: 600;
	font-size: 20px;
	line-height: 1.4;
	color: #000;
	margin-top: 25px;
}

.hero__text {
	font-weight: 400;
	font-size: 15px;
	line-height: 1.52;
	color: rgba(0, 0, 0, 0.62);
	max-width: 650px;
	margin-top: 16px;
}

.hero__cta-row {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 32px;
}

.hero__cta-note {
	font-size: 15px;
	line-height: 1.26;
	color: rgba(0, 0, 0, 0.54);
	max-width: 256px;
}

.hero__phone-block {
	margin-top: 40px;
	max-width: min(730px, calc(100vw - 757px));
}

.hero__phone-label {
	font-size: 12px;
	color: rgba(0, 0, 0, 0.52);
	display: block;
	margin-bottom: 8px;
}

.hero__phone-row {
	height: 58px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.28);
}

.hero__phone-row .fl-lead-form,
.hero__phone-row .fl-form-row--inline {
	height: 100%;
}

.hero__consent {
	margin-top: 24px;
	font-size: 12px;
	line-height: 1.5;
	color: #3d472d;
	max-width: min(650px, calc(100vw - 757px));
}

.hero__consent a {
	text-decoration: underline;
	text-underline-offset: 2px;
}

:root .hero__stats {
	position: absolute;
	z-index: 2;
	right: var(--gutter);
	bottom: 60px;
}

.hero__stats {
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	background: rgba(255, 255, 255, 0.68);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 24px;
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
	max-width: 653px;
	display: flex;
	padding: 25px 11px 25px 23px;
}

.hero__stat {
	flex: 1 1 0;
	min-width: 0;
	padding: 5px 18px;
}

.hero__stat + .hero__stat {
	border-left: 1px solid rgba(0, 0, 0, 0.16);
}

.hero__stat-num {
	font-weight: 800;
	font-size: 26px;
	letter-spacing: -1.04px;
	color: #000;
	white-space: nowrap;
}

.hero__stat-label {
	font-size: 15px;
	line-height: 1.08;
	color: rgba(0, 0, 0, 0.6);
	margin-top: 9px;
}

/* ==========================================================================
   4b. Формы заявок (шорткод finlogistic_lead_form)
   ========================================================================== */
.fl-lead-form {
	width: 100%;
}

.fl-form-row--inline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
}

.fl-input {
	flex: 1 1 auto;
	min-width: 0;
	border: none;
	background: none;
	outline: none;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	color: var(--color-ink);
	padding: 0;
}

.fl-input::placeholder {
	color: rgba(0, 0, 0, 0.48);
	font-weight: 600;
}

.fl-input--dark {
	color: #fff;
}

.fl-input--dark::placeholder {
	color: rgba(255, 255, 255, 0.52);
}

.fl-btn {
	flex-shrink: 0;
	border: none;
	cursor: pointer;
	border-radius: 999px;
	font-family: var(--font-body);
}

.fl-btn--lime {
	height: 44px;
	padding: 0 24px;
	background: var(--color-lime);
	border: 1px solid rgba(213, 255, 142, 0.65);
	color: #000;
	font-size: 14px;
	font-weight: 700;
	transition: background-color 0.2s ease;
}

.fl-btn--lime:hover {
	background: #dbff9d;
}

.fl-panel {
	display: flex;
	align-items: center;
	gap: 10px;
	height: 64px;
	padding: 6px;
	background: #fff;
	border-radius: 18px;
}

.fl-panel .fl-input {
	padding-left: 20px;
	font-size: 16px;
	font-weight: 400;
	color: #20231d;
}

.fl-panel .fl-input::placeholder {
	color: #20231d;
	font-weight: 400;
}

.fl-btn--dark {
	height: 100%;
	padding: 0 24px;
	background: #15181f;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	border-radius: 13px;
}

.fl-form-success {
	margin-top: 12px;
	font-size: 14px;
	font-weight: 600;
	color: var(--color-olive);
}

/* ==========================================================================
   5. Инфо-плашка (announcement bar)
   ========================================================================== */
.announcement {
	background: var(--color-white);
	border-top: 1px solid var(--color-line);
	border-bottom: 1px solid var(--color-line);
}

.announcement__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding-block: 33px;
}

.announcement__lead {
	display: flex;
	align-items: center;
	gap: 24px;
	min-width: 0;
}

.announcement__pearl {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	flex-shrink: 0;
}

.announcement__text {
	font-weight: 600;
	font-size: 17px;
	line-height: 1.53;
	color: #111217;
}

/* ==========================================================================
   6. Почему с нами проще (карточки-бенто)
   ========================================================================== */
.why-us {
	background: #f1f3f6;
	padding-block: 120px;
}

.why-us__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
	margin-bottom: 64px;
}

.why-us__title {
	margin: 0;
	font-weight: 600;
	font-size: 70px;
	line-height: 1.2;
	color: #111217;
	max-width: 820px;
}

.why-us__note {
	font-weight: 400;
	font-size: 18px;
	line-height: 1.45;
	color: #737780;
	max-width: 360px;
	margin-top: 8px;
}

.why-us__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 241px;
	gap: 20px;
}

.advantage-card {
	position: relative;
	grid-column: span 1;
	border-radius: 30px;
	padding: 30px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.advantage-card--wide {
	grid-column: span 2;
}

.advantage-card__title {
	margin: 0;
	font-weight: 700;
	font-size: 25px;
	line-height: 1.24;
	max-width: 650px;
}

.advantage-card__text {
	margin-top: 8px;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.28;
	max-width: 640px;
}

.advantage-card--blue {
	background: #3155f4;
}

.advantage-card--blue .advantage-card__title {
	color: #fff;
}

.advantage-card--blue .advantage-card__text {
	color: rgba(255, 255, 255, 0.78);
}

.advantage-card--surface {
	background: #fff;
	border: 1px solid #e6e8ee;
}

.advantage-card--outline {
	background: transparent;
	border: 1px solid #b6b9c3;
}

.advantage-card--surface .advantage-card__title,
.advantage-card--outline .advantage-card__title {
	color: #111217;
}

.advantage-card--surface .advantage-card__text,
.advantage-card--outline .advantage-card__text {
	color: #62666f;
}

.advantage-card--lime1 {
	background: #cbff72;
}

.advantage-card--lime2 {
	background: #c8ff67;
}

.advantage-card--lime1 .advantage-card__title,
.advantage-card--lime2 .advantage-card__title {
	color: #111217;
}

.advantage-card--lime1 .advantage-card__text,
.advantage-card--lime2 .advantage-card__text {
	color: #344122;
}

:root .advantage-card__num {
	position: absolute;
	right: 24px;
	bottom: 15px;
	margin: 0;
	font-weight: 800;
	font-size: 76px;
	line-height: 1;
	pointer-events: none;
}

/* ==========================================================================
   7. Формат консультации
   ========================================================================== */
.format {
	background: #fff;
	padding-block: 120px;
}

.format__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
	margin-bottom: 24px;
}

.format__title {
	margin: 0;
	font-weight: 600;
	font-size: 70px;
	line-height: 1.2;
	color: #111217;
	max-width: 760px;
}

.format__note {
	font-weight: 400;
	font-size: 18px;
	line-height: 1.45;
	color: #737780;
	max-width: 520px;
	margin-top: 10px;
}

.format__row {
	display: flex;
	align-items: center;
}

.format__visual {
	flex: 1 1 56.53%;
	min-width: 0;
}

.format__visual img {
	width: 100%;
	height: auto;
	display: block;
}

.format__cards {
	flex: 1 1 46.94%;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

:root .format__cards {
	margin-left: -4.375%;
}

.format-card {
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid #c4c7cd;
	border-radius: 26px;
	padding: 28px 32px;
}

.format-card__label {
	margin: 0 0 8px;
	font-weight: 800;
	font-size: 13px;
	letter-spacing: 1.3px;
	text-transform: uppercase;
	color: #779f3d;
}

.format-card__title {
	margin: 0;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.25;
	color: #111217;
}

.format-card__text {
	margin-top: 12px;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.28;
	color: #6b6f77;
}

/* ==========================================================================
   8. Что вы получите на консультации (тёмная секция)
   ========================================================================== */
.outcomes {
	position: relative;
	background: radial-gradient(ellipse 700px 620px at 6% 96%, #253b9f 0%, #1b2967 33%, #16204b 50%, #11172f 66%, #080a11 100%);
	overflow: clip;
	padding-block: 120px 96px;
}

:root .outcomes__blob {
	position: absolute;
	left: -156px;
	bottom: -16px;
	top: auto;
	width: 45%;
	max-width: 859px;
	pointer-events: none;
	opacity: 0.9;
}

:root .outcomes__orbit {
	position: absolute;
	right: -154px;
	top: -200px;
	width: 46%;
	max-width: 880px;
	pointer-events: none;
}

.outcomes__head {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
	margin-bottom: 56px;
}

.outcomes__title {
	margin: 0;
	font-weight: 600;
	font-size: 70px;
	line-height: 1.1;
	color: #fff;
	max-width: 900px;
}

.outcomes__note {
	font-weight: 400;
	font-size: 18px;
	line-height: 26px;
	color: #aeb6c7;
	max-width: 408px;
	margin-top: 10px;
}

.outcomes__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 20px;
}

.outcome-card {
	display: flex;
	align-items: flex-start;
	gap: 26px;
	backdrop-filter: blur(10.5px);
	-webkit-backdrop-filter: blur(10.5px);
	background: rgba(26, 30, 46, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 28px;
	padding: 30px 34px;
}

.outcome-card__index {
	position: relative;
	flex-shrink: 0;
	width: 54px;
	height: 54px;
}

.outcome-card__index img {
	width: 100%;
	height: 100%;
}

.outcome-card__index p {
	position: absolute;
	inset: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 16px;
	color: #121815;
}

.outcome-card__title {
	margin: 0;
	font-weight: 700;
	font-size: 22px;
	line-height: 1.27;
	color: #fff;
}

.outcome-card__text {
	margin-top: 10px;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.33;
	color: #b9c0cf;
}

.outcomes__market {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 24px;
	background: linear-gradient(90deg, #d5ff8e, #e7ffc0);
	border-radius: 28px;
	padding: 24px 40px;
}

.outcomes__market-icon {
	flex-shrink: 0;
	font-weight: 800;
	font-size: 38px;
	color: #161b12;
}

.outcomes__market-text {
	margin: 0;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.5;
	color: #161b12;
}

/* ==========================================================================
   5b. Успейте подготовиться (баннер-отсчёт)
   ========================================================================== */
.countdown {
	padding-block: 96px;
	background: #fff;
}

.countdown__card {
	position: relative;
	border-radius: 60px;
	background: #05080e;
	overflow: hidden;
	min-height: 707px;
	display: flex;
	align-items: center;
}

:root .countdown__photo {
	position: absolute;
	inset: 0;
	z-index: 0;
}

:root .countdown__photo img {
	position: absolute;
	right: 0;
	top: 0;
	width: 87%;
	height: 100%;
	object-fit: cover;
	object-position: left center;
}

:root .countdown__photo::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(5, 8, 14, 0.98) 0%, rgba(5, 8, 14, 0.86) 45%, rgba(5, 8, 14, 0) 75%);
}

.countdown__body {
	position: relative;
	z-index: 1;
	padding: 68px 60px;
	max-width: 640px;
}

.countdown__eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}

.countdown__eyebrow-dash {
	width: 30px;
	height: 6px;
	border-radius: 99px;
	background: var(--color-lime);
	flex-shrink: 0;
}

.countdown__eyebrow-text {
	font-weight: 800;
	font-size: 15px;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	color: var(--color-lime);
}

.countdown__title {
	margin: 0;
	font-weight: 600;
	font-size: 56px;
	line-height: 1.1;
	color: #fff;
}

.countdown__lead {
	margin-top: 24px;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.65;
	color: #dfe5f3;
}

.countdown__text {
	margin-top: 16px;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.65;
	color: #aeb6c7;
}

.countdown__chip {
	display: inline-flex;
	align-items: center;
	width: 360px;
	gap: 20px;
	margin-top: 32px;
	padding: 20px 28px;
	background: rgba(213, 255, 142, 0.08);
	border: 1px solid rgba(213, 255, 142, 0.45);
	border-radius: 22px;
	box-sizing: border-box;
}

.countdown__chip-fz {
	margin: 0;
	font-weight: 700;
	font-size: 36px;
	color: var(--color-lime);
}

.countdown__chip-note {
	margin: 0;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	color: #c9d1df;
}

/* ==========================================================================
   8b. CTA про 15%
   ========================================================================== */
.cta-15 {
	background: var(--color-lime);
	padding-block: 96px;
}

.cta-15__inner {
	max-width: 1128px;
	margin-inline: auto;
	text-align: center;
}

.cta-15__title {
	margin: 0;
	font-weight: 600;
	font-size: 56px;
	line-height: 1.1;
	color: #111217;
}

.cta-15__subtitle {
	margin-top: 20px;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.5;
	color: #3d472d;
}

.cta-15__form {
	max-width: 830px;
	margin: 32px auto 0;
}

.cta-15__consent {
	margin-top: 20px;
	font-size: 12px;
	line-height: 1.5;
	color: #3d472d;
}

.cta-15__consent a {
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* ==========================================================================
   8c. FAQ
   ========================================================================== */
.faq {
	background: #fff;
	padding-block: 120px;
}

.faq__title {
	margin: 0 0 40px;
	font-weight: 600;
	font-size: 70px;
	line-height: 1.1;
	color: #111217;
}

.faq-item {
	border-top: 1px solid #dfe2e7;
}

.faq-item summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 40px 0;
}

.faq-item summary::-webkit-details-marker,
.faq-item summary::marker {
	display: none;
	content: '';
}

.faq-item__question {
	font-weight: 600;
	font-size: 21px;
	line-height: 1.38;
	color: #111217;
}

.faq-item__icon {
	position: relative;
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #cfd3db;
	transition: transform 0.2s ease;
}

.faq-item__icon::before,
.faq-item__icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	background: #111217;
	transform: translate(-50%, -50%);
}

.faq-item__icon::before {
	width: 14px;
	height: 2px;
}

.faq-item__icon::after {
	width: 2px;
	height: 14px;
}

.faq-item[open] .faq-item__icon {
	transform: rotate(45deg);
}

.faq-item__answer {
	margin: -12px 0 32px;
	max-width: 900px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
	color: #646972;
}

/* ==========================================================================
   8d. Форма заявки + подвал
   ========================================================================== */
.lead-section {
	background: #f1f3f6;
	padding-top: 120px;
}

.lead-section__grid {
	display: flex;
	gap: 40px;
	align-items: flex-start;
}

.lead-section__col {
	flex: 1 1 620px;
	min-width: 0;
}

.lead-section__eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 26px;
}

.lead-section__eyebrow-dash {
	width: 30px;
	height: 6px;
	border-radius: 99px;
	background: #7aa83d;
	flex-shrink: 0;
}

.lead-section__eyebrow-text {
	font-weight: 800;
	font-size: 15px;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	color: #73a92f;
}

.lead-section__title {
	margin: 0;
	font-weight: 600;
	font-size: 56px;
	line-height: 1.1;
	color: #111217;
}

.lead-section__text {
	margin-top: 24px;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.6;
	color: #646972;
	max-width: 650px;
}

.lead-section__phone {
	margin-top: 40px;
	font-weight: 700;
	font-size: 32px;
	color: #111217;
}

.lead-section__tg {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 16px;
	font-weight: 700;
	font-size: 17px;
	color: #111217;
}

.lead-section__tg a {
	text-decoration: underline;
}

.lead-section__tg-icon,
.site-footer__tg-icon {
	width: 21px;
	height: 21px;
	flex-shrink: 0;
}

.lead-section__hours {
	margin-top: 32px;
	font-size: 14px;
	color: #7a7e87;
}

.lead-card {
	flex: 1 1 650px;
	min-width: 0;
	max-width: 650px;
	background: #fff;
	border: 1px solid #e1e4eb;
	border-radius: 34px;
	box-shadow: 0 34px 80px rgba(37, 55, 108, 0.12);
	padding: 44px;
}

.fl-field {
	padding: 12px 0;
	border-bottom: 1px solid #d7dbe2;
}

.fl-field:first-child {
	padding-top: 0;
}

.fl-field__label {
	display: block;
	font-size: 14px;
	color: #343740;
	margin-bottom: 6px;
}

.fl-field__input {
	display: block;
	width: 100%;
	border: none;
	background: none;
	outline: none;
	font-family: var(--font-body);
	font-size: 18px;
	color: #343740;
	padding: 0;
}

.fl-field__input::placeholder {
	color: #969aa3;
}

.fl-consent {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-top: 24px;
}

.fl-consent input[type='checkbox'] {
	width: 20px;
	height: 20px;
	border-radius: 4px;
	border: 1px solid #b4b9c2;
	flex-shrink: 0;
	margin-top: 1px;
	accent-color: var(--color-blue);
}

.fl-consent label {
	font-size: 12px;
	line-height: 1.5;
	color: #969aa3;
}

.fl-consent a {
	text-decoration: underline;
	color: #969aa3;
}

.lead-card .wp-block-button.btn--primary,
.lead-modal__form .wp-block-button.btn--primary {
	display: block;
	margin-top: 24px;
}

.lead-card .wp-block-button.btn--primary .wp-block-button__link,
.lead-modal__form .wp-block-button.btn--primary .wp-block-button__link {
	position: relative;
	width: 100%;
	justify-content: center;
	padding-left: 64px;
	padding-right: 64px;
	border-radius: 16px;
	box-shadow: none;
}

.lead-card .wp-block-button.btn--primary .wp-block-button__link::after,
.lead-modal__form .wp-block-button.btn--primary .wp-block-button__link::after {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}

/* Подвал */
.site-footer-content {
	margin-top: 220px;
}

.site-footer__brand {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-bottom: 64px;
}

.site-footer__brand-mark {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	flex-shrink: 0;
}

.site-footer__brand-mark img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.site-footer__brand-word {
	flex: 1 1 auto;
	min-width: 0;
	height: auto;
}

.site-footer__brand-word img {
	width: 100%;
	height: auto;
	display: block;
}

.site-footer__cols {
	display: grid;
	grid-template-columns: 220px 230px 1fr;
	gap: 40px;
	padding-bottom: 60px;
}

.site-footer__label {
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 1.26px;
	text-transform: uppercase;
	color: #969aa3;
	margin: 0 0 18px;
}

.site-footer__phone {
	font-weight: 700;
	font-size: 17px;
	color: #111217;
	display: block;
}

.site-footer__tg {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 12px;
	font-weight: 700;
	font-size: 17px;
	color: #111217;
}

.site-footer__tg a {
	text-decoration: underline;
}

.site-footer__nav {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__nav li {
	font-weight: 700;
	font-size: 14px;
	color: #111217;
	line-height: 2.2;
}

.site-footer__requisites {
	display: flex;
	gap: 60px;
	flex-wrap: wrap;
}

.site-footer__requisites p {
	font-size: 14px;
	line-height: 1.57;
	color: #343740;
	max-width: 400px;
}

@media (max-width: 1370px) {
	:root .site-footer__cols {
		grid-template-columns: 1fr 1fr;
	}

	:root .site-footer__col--requisites {
		grid-column: 1 / -1;
	}
}

.site-footer__bottom {
	border-top: 1px solid rgba(0, 0, 0, 0.11);
	padding: 28px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

.site-footer__copy {
	font-size: 13px;
	color: #787f8e;
}

.site-footer__policy {
	font-size: 13px;
	color: #000;
	text-decoration: underline;
}

/* ==========================================================================
   9. Адаптив — планшет
   ========================================================================== */
@media (max-width: 1100px) {
	:root .hero__body {
		padding-top: calc(var(--header-height) + 20px);
		padding-bottom: 48px;
	}

	:root .hero__title {
		font-size: 52px;
		max-width: 560px;
	}

	:root .hero__title strong {
		font-size: 58px;
	}

	:root .hero__phone-block,
	:root .hero__consent {
		max-width: 100%;
	}

	:root .hero__stats {
		position: static;
		margin-top: 40px;
		max-width: 100%;
		flex-wrap: wrap;
	}

	:root .hero__stat {
		flex: 1 1 45%;
	}

	:root .why-us__head {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
	}

	:root .why-us__title {
		font-size: 48px;
	}

	:root .why-us__grid {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: minmax(241px, auto);
	}

	:root .format__head {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
	}

	:root .format__title {
		font-size: 48px;
	}

	:root .format__row {
		flex-direction: column;
		align-items: stretch;
	}

	:root .format__cards {
		margin-left: 0;
	}

	:root .countdown__card {
		min-height: auto;
	}

	:root .countdown__body {
		padding: 48px 40px;
		max-width: 100%;
	}

	:root .countdown__title {
		font-size: 40px;
	}

	:root .countdown__photo img {
		width: 100%;
		opacity: 0.35;
	}

	:root .outcomes__head {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
	}

	:root .outcomes__title {
		font-size: 48px;
	}

	:root .outcomes__grid {
		grid-template-columns: 1fr;
	}

	:root .cta-15__title {
		font-size: 36px;
	}

	:root .faq__title {
		font-size: 48px;
	}

	:root .lead-section__grid {
		flex-direction: column;
		align-items: stretch;
	}

	:root .lead-section__col,
	:root .lead-card {
		flex-basis: auto;
	}

	:root .lead-card {
		max-width: 100%;
		margin-top: 40px;
	}

	:root .site-footer-content {
		margin-top: 100px;
	}

	:root .site-footer__cols {
		grid-template-columns: 1fr 1fr;
	}

	:root .site-footer__col--requisites {
		grid-column: 1 / -1;
	}
}

/* ==========================================================================
   10. Адаптив — мобилка
   ========================================================================== */
@media (max-width: 781px) {
	:root {
		--header-height: 64px;
	}

	:root .why-us__note,
	:root .advantage-card__text,
	:root .format__note,
	:root .format-card__text,
	:root .outcomes__note,
	:root .outcome-card__text,
	:root .outcomes__market-text,
	:root .countdown__text,
	:root .cta-15__subtitle,
	:root .lead-section__text {
		font-size: 16px;
	}

	:root .countdown__title {
		font-size: 32px;
	}

	:root .countdown__lead {
		font-size: 20px;
	}

	:root .countdown__chip {
		width: auto;
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	:root .countdown__card {
		border-radius: 20px;
	}

	:root .countdown__body {
		padding: 30px 20px;
	}

	:root .site-header__row {
		gap: 12px;
	}

	:root .site-logo {
		gap: 8px;
		min-width: 0;
	}

	:root .site-logo__mark {
		width: 30px;
		height: 30px;
	}

	:root .site-logo__word {
		height: 18px;
	}

	:root .site-header__row .wp-block-buttons {
		display: none;
	}

	:root .site-nav.wp-block-navigation {
		margin-left: auto;
	}

	:root .site-nav .wp-block-navigation__responsive-container-open {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		padding: 0;
		border-radius: 50%;
		border: 1px solid rgba(0, 0, 0, 0.1);
		background: rgba(255, 255, 255, 0.92);
		box-shadow: 0 4px 14px rgba(17, 18, 23, 0.18);
		color: #111217;
	}

	:root .site-nav .wp-block-navigation__responsive-container:not(.is-menu-open) {
		display: none;
	}

	:root .site-nav .wp-block-navigation__responsive-container.is-menu-open {
		z-index: 200;
	}

	:root .site-nav .wp-block-navigation__responsive-container-content {
		padding: 100px 32px 32px;
	}

	:root .site-nav .wp-block-navigation__responsive-container-close {
		top: 20px;
		right: 20px;
		width: 40px;
		height: 40px;
		border-radius: 50%;
		border: 1px solid rgba(0, 0, 0, 0.15);
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0;
	}

	:root .site-nav .wp-block-navigation__responsive-container-close svg {
		width: 20px;
		height: 20px;
		margin: 0;
	}

	:root .site-nav .wp-block-navigation__responsive-container-content .wp-block-navigation__container {
		width: 100%;
		margin-left: 0;
		gap: 8px !important;
		align-items: center !important;
		justify-content: center !important;
	}

	:root .site-nav .wp-block-navigation-item .wp-block-navigation-item__content {
		font-size: 22px;
		font-weight: 700;
		padding: 12px 0;
	}

	:root .hero {
		background: #f6fbfe;
	}

	:root .hero__bg {
		position: relative;
		inset: auto;
		right: auto;
		left: auto;
		width: 100%;
		height: auto;
		margin: 0;
		overflow: hidden;
	}

	:root .hero__bg-desktop {
		display: none;
	}

	:root .hero__bg-mobile {
		display: block;
		margin: 0;
	}

	:root .hero__bg-mobile img {
		display: block;
		width: 100%;
		height: auto;
		position: static;
	}

	:root .hero__bg::after {
		display: none;
	}

	:root .hero__body {
		padding-top: 0;
		padding-bottom: 20px;
		display: flex;
		flex-direction: column;
	}

	:root .hero__title,
	:root .hero__text,
	:root .hero__subtitle,
	:root .hero__phone-block,
	:root .hero__consent {
		max-width: 100%;
	}

	:root .hero__title {
		font-size: 36px;
	}

	:root .hero__title strong {
		font-size: 40px;
	}

	:root .hero__cta-row {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
	}

	:root .hero__cta-row .wp-block-buttons,
	:root .hero__cta-row .wp-block-button {
		width: 100%;
	}

	:root .wp-block-button.btn--primary .wp-block-button__link {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		justify-content: space-between;
		font-size: 14px;
		padding: 0 6px 0 20px;
	}

	:root .hero__phone-row {
		height: auto;
		padding-bottom: 0;
		border-bottom: none;
	}

	:root .hero__phone-row .fl-form-row--inline {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
	}

	:root .hero__phone-row .fl-input {
		padding-bottom: 12px;
		border-bottom: 1px solid rgba(0, 0, 0, 0.28);
	}

	:root .fl-btn--lime {
		width: 100%;
		height: 48px;
	}

	:root .hero {
		padding-bottom: 20px;
	}

	:root .hero__stats {
		position: static;
		right: auto;
		bottom: auto;
		box-shadow: none;
		background: #fff;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		flex-direction: column;
		align-items: stretch;
		margin-left: var(--gutter);
		margin-right: var(--gutter);
		margin-top: 16px;
		gap: 16px;
	}

	:root .hero__stat + .hero__stat {
		border-left: none;
		border-top: 1px solid rgba(0, 0, 0, 0.16);
		padding-top: 16px;
	}

	:root .announcement__row {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		padding-block: 20px;
	}

	:root .announcement__row .wp-block-buttons,
	:root .announcement__row .wp-block-button {
		width: 100%;
	}

	:root .wp-block-button.btn--outline .wp-block-button__link {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		justify-content: space-between;
	}

	:root .announcement__lead {
		width: 100%;
	}

	:root .why-us {
		padding-block: 64px;
	}

	:root .why-us__title {
		font-size: 34px;
	}

	:root .why-us__grid {
		grid-template-columns: 1fr;
		grid-auto-rows: auto;
	}

	:root .advantage-card,
	:root .advantage-card--wide {
		grid-column: span 1;
		padding: 28px 28px 58px;
	}

	:root .why-us__grid > *:nth-child(6),
	:root .why-us__grid > *:nth-child(7),
	:root .why-us__grid > *:nth-child(8) {
		padding-bottom: 78px;
	}

	:root .advantage-card__title {
		font-size: 21px;
	}

	:root .advantage-card__num {
		font-size: 56px;
	}

	:root .format {
		padding-block: 64px;
	}

	:root .format__title {
		font-size: 34px;
	}

	:root .format-card {
		padding: 22px 24px;
	}

	:root .format-card__title {
		font-size: 20px;
	}

	:root .outcomes {
		padding-block: 64px 140px;
	}

	:root .outcomes__title {
		font-size: 32px;
	}

	:root .outcome-card {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
		padding: 22px;
	}

	:root .outcomes__market {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
		padding: 22px;
	}

	:root .outcomes__orbit {
		opacity: 0.5;
	}

	:root .outcomes__blob {
		left: 0;
		bottom: -30px;
		width: 70%;
		opacity: 1;
	}

	:root .cta-15 {
		padding-block: 56px;
	}

	:root .cta-15__title {
		font-size: 28px;
	}

	:root .fl-panel {
		height: auto;
		flex-direction: column;
		align-items: stretch;
		padding: 10px;
		border-radius: 20px;
	}

	:root .fl-panel .fl-input {
		height: 44px;
		padding-left: 12px;
	}

	:root .fl-btn--dark {
		height: 44px;
	}

	:root .faq {
		padding-block: 64px;
	}

	:root .faq__title {
		font-size: 32px;
		margin-bottom: 24px;
	}

	:root .faq-item summary {
		padding: 24px 0;
		gap: 16px;
	}

	:root .faq-item__question {
		font-size: 17px;
	}

	:root .faq-item__icon {
		width: 34px;
		height: 34px;
	}

	:root .lead-section {
		padding-top: 64px;
	}

	:root .lead-section__title {
		font-size: 34px;
	}

	:root .lead-card {
		padding: 28px;
	}

	:root .site-footer-content {
		margin-top: 64px;
	}

	:root .site-footer__brand {
		gap: 14px;
		margin-bottom: 40px;
	}

	:root .site-footer__brand-mark {
		width: 64px;
		height: 64px;
	}

	:root .site-footer__brand-word {
		flex: 0 0 auto;
		height: 42px;
	}

	:root .site-footer__brand-word img {
		width: auto;
		height: 100%;
	}

	:root .site-footer__cols {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	:root .site-footer__col--requisites {
		grid-column: auto;
	}

	:root .site-footer__requisites {
		flex-direction: column;
		align-items: stretch;
		gap: 24px;
	}

	:root .site-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
}

/* ==========================================================================
   Lead modal (попап заявки + попап "спасибо")
   ========================================================================== */
.lead-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 1000;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

:root .lead-modal.is-open {
	display: flex;
}

.lead-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(17, 18, 23, 0.56);
	backdrop-filter: blur(4px);
}

.lead-modal__dialog {
	position: relative;
	width: 100%;
	max-width: 650px;
	max-height: 90vh;
	overflow-y: auto;
	background: #fff;
	border-radius: 34px;
	box-shadow: 0 34px 80px rgba(37, 55, 108, 0.28);
	padding: 44px;
}

.lead-modal__dialog--success {
	max-width: 480px;
	text-align: center;
	padding: 56px 44px;
}

.lead-modal__close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: #f2f3f6;
	border-radius: 50%;
	font-size: 22px;
	line-height: 1;
	color: #646972;
	cursor: pointer;
}

.lead-modal__title {
	margin: 0;
	font-weight: 600;
	font-size: 32px;
	line-height: 1.15;
	color: #111217;
	padding-right: 32px;
}

.lead-modal__dialog--success .lead-modal__title {
	padding-right: 0;
}

.lead-modal__text {
	margin-top: 14px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.55;
	color: #646972;
}

.lead-modal__form {
	margin-top: 28px;
}

body.lead-modal-open {
	overflow: hidden;
}

@media (max-width: 781px) {
	:root .lead-modal__dialog {
		padding: 32px 24px;
		border-radius: 24px;
	}

	:root .lead-modal__title {
		font-size: 26px;
	}
}

/* ==========================================================================
   Reveal-анимация появления при скролле
   ========================================================================== */
.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

:root .reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.06s; }
.reveal:nth-child(3) { transition-delay: 0.12s; }
.reveal:nth-child(4) { transition-delay: 0.18s; }
.reveal:nth-child(5) { transition-delay: 0.24s; }
.reveal:nth-child(n+6) { transition-delay: 0.3s; }

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

/* ==========================================================================
   Страница 404
   ========================================================================== */
.error-404 {
	min-height: 70vh;
	display: flex;
	align-items: center;
	padding-top: calc(var(--header-height) + 40px);
	padding-bottom: 80px;
}

.error-404__inner {
	text-align: center;
}

.error-404__title {
	margin: 0;
	font-weight: 700;
	font-size: 64px;
	line-height: 1.15;
	color: #111217;
}

.error-404__text {
	margin-top: 16px;
	font-size: 18px;
	color: #62666f;
}

.error-404__inner .wp-block-buttons {
	margin-top: 32px;
	justify-content: center;
}

@media (max-width: 781px) {
	:root .error-404__title {
		font-size: 36px;
	}
}

/* ==========================================================================
   Страница политики конфиденциальности
   ========================================================================== */
.legal-page {
	padding-top: calc(var(--header-height) + 56px);
	padding-bottom: 96px;
}

.legal-page__inner {
	max-width: 780px;
}

.legal-page__title {
	margin: 0 0 8px;
	font-weight: 700;
	font-size: 40px;
	line-height: 1.2;
	color: #111217;
}

.legal-page__heading {
	margin: 40px 0 16px;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.3;
	color: #111217;
}

.legal-page__text {
	margin-top: 14px;
	font-size: 16px;
	line-height: 1.6;
	color: #343740;
}

.legal-page__list {
	margin: 14px 0 0;
	padding-left: 22px;
}

.legal-page__list li {
	font-size: 16px;
	line-height: 1.6;
	color: #343740;
	margin-top: 8px;
}

@media (max-width: 781px) {
	:root .legal-page {
		padding-top: calc(var(--header-height) + 32px);
		padding-bottom: 56px;
	}

	:root .legal-page__title {
		font-size: 28px;
	}

	:root .legal-page__heading {
		font-size: 20px;
	}
}
