/**
Theme Name: CarFinance
**/

.grecaptcha-badge {
	display: none
}

/* ===================== DESIGN TOKENS (carfinance-design-map.html + logo) ===================== */
:root {
	/* Brand action color */
	--cf-brand: rgba(42, 90, 140, 0.92);
	--cf-brand-dark: #1A3A5C;
	--cf-brand-light: #3A6FA8;

	/* Navy — тёмные секции, фоны */
	--cf-primary: #1A3A5C;
	--cf-primary-light: #2A5A8C;
	--cf-primary-dark: #0F2640;

	/* Amber — только эмоциональные climax-акценты */
	--cf-accent: #F5A623;
	--cf-accent-light: #FFD47A;
	--cf-accent-dark: #C47D0A;

	--cf-green: #4CAF50;
	--cf-green-light: #81C784;
	--cf-red: #E24B4A;

	/* Surfaces */
	--cf-bg: #FFFFFF;
	--cf-bg-alt: #F7F8FA;
	--cf-bg-dark: #0B1B2B;

	/* Text */
	--cf-text: #222222;
	--cf-text-muted: #5A6472;
	--cf-text-light: #8E96A0;

	/* Borders */
	--cf-border: #E2E6EB;
	--cf-border-light: #F0F2F5;

	/* Radii */
	--cf-radius-sm: 8px;
	--cf-radius: 12px;
	--cf-radius-lg: 18px;

	/* Font */
	--cf-font: 'Manrope', -apple-system, sans-serif;
}

/* ===================== HERO SECTION ===================== */

.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	font-family: 'Manrope', sans-serif;
	color: #fff;
}

/* --- Video --- */
.hero__video-wrap {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.hero__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: blur(2px) brightness(0.45) saturate(0.7);
	transform: scale(1.05);
}

/* --- Overlay --- */
.hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(11,27,43,0.82) 0%, rgba(11,27,43,0.50) 50%, rgba(11,27,43,0.88) 100%);
}

/* --- Content --- */
.hero__content {
	position: relative;
	z-index: 2;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	max-width: 820px;
	width: 100%;
	margin: 0 auto;
	padding: 40px 24px 110px;
	gap: 22px;
	justify-content: flex-start;
	padding-top: clamp(40px, 8vh, 90px);
}

/* --- Title --- */
.hero__title {
	font-size: clamp(30px, 5vw, 52px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.02em;
	margin: 0;
}

/* --- Subtitle --- */
.hero__subtitle {
	font-size: clamp(15px, 1.8vw, 18px);
	font-weight: 400;
	line-height: 1.65;
	color: rgba(255,255,255,0.72);
	max-width: 580px;
	margin: 0;
}

/* --- Country pills --- */
.hero__countries {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	max-width: 100%;
	padding: 2px 0;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}
.hero__countries::-webkit-scrollbar { display: none; }

.hero__country-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 9px 18px;
	font-size: 14px;
	font-weight: 600;
	color: rgba(255,255,255,0.9);
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 100px;
	white-space: nowrap;
	text-decoration: none;
	transition: all 0.25s;
	flex-shrink: 0;
}
.hero__country-pill:hover {
	background: rgba(255,255,255,0.18);
	border-color: rgba(255,255,255,0.3);
	color: #fff;
	transform: translateY(-2px);
	text-decoration: none;
}
.hero__country-flag {
	font-size: 18px;
	line-height: 1;
}

/* --- CTA --- */
.hero__cta {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 8px;
}
.hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 36px;
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	font-weight: 700;
	border-radius: 12px;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.3s;
	white-space: nowrap;
	border: none;
}
.hero__btn:hover {
	transform: translateY(-2px);
	text-decoration: none;
}
.hero__btn--primary {
	background: linear-gradient(135deg, var(--cf-primary) 0%, var(--cf-primary-light) 100%);
	color: #fff;
	box-shadow: 0 4px 20px rgba(26,58,92,0.45);
}
.hero__btn--primary:hover {
	box-shadow: 0 8px 32px rgba(26,58,92,0.6);
	color: #fff;
}
.hero__btn--accent {
	background: var(--cf-accent);
	color: #1a1a1a;
	box-shadow: 0 4px 20px rgba(245,166,35,0.3);
	animation: heroPulseGold 2.5s ease-in-out infinite;
}
.hero__btn--accent:hover {
	box-shadow: 0 8px 32px rgba(245,166,35,0.55);
	color: #1a1a1a;
}
@keyframes heroPulseGold {
	0%, 100% { box-shadow: 0 4px 20px rgba(245,166,35,0.3); }
	50% { box-shadow: 0 4px 36px rgba(245,166,35,0.55); }
}

/* --- Stats --- */
.hero__stats {
	position: relative;
	z-index: 2;
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 24px;
	margin-top: auto;
	background: rgba(11,27,43,0.5);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-top: 1px solid rgba(255,255,255,0.07);
}
.hero__stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	padding: 0 clamp(16px, 4vw, 48px);
}
.hero__stat + .hero__stat {
	border-left: 1px solid rgba(255,255,255,0.1);
}
.hero__stat-number {
	font-size: clamp(24px, 3.5vw, 34px);
	font-weight: 800;
	line-height: 1.1;
}
.hero__stat-accent {
	color: var(--cf-accent);
}
.hero__stat-label {
	font-size: clamp(11px, 1.4vw, 13px);
	font-weight: 500;
	color: rgba(255,255,255,0.5);
	white-space: nowrap;
}

/* --- Animations --- */
.hero__anim {
	opacity: 0;
	transform: translateY(20px);
	animation: heroIn 0.6s ease forwards;
}
.hero__anim--1 { animation-delay: 0.1s; }
.hero__anim--2 { animation-delay: 0.25s; }
.hero__anim--3 { animation-delay: 0.4s; }
.hero__anim--4 { animation-delay: 0.55s; }
.hero__anim--5 { animation-delay: 0.7s; }

@keyframes heroIn {
	to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive --- */
@media (max-width: 768px) {
	.hero__content {
		padding: 32px 16px 32px;
		gap: 16px;
		padding-top: clamp(24px, 5vh, 56px);
	}
	.hero__countries {
		padding: 4px 16px;
		margin: 0 -16px;
		width: calc(100% + 32px);
	}
	.hero__country-pill {
		padding: 7px 14px;
		font-size: 13px;
	}
	.hero__cta {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}
	.hero__btn {
		padding: 15px 24px;
		font-size: 15px;
		text-align: center;
	}
	.hero__stats {
		flex-wrap: wrap;
		gap: 12px 0;
		padding: 18px 16px;
	}
	.hero__stat {
		width: 50%;
		padding: 6px 0;
	}
	.hero__stat + .hero__stat { border-left: none; }
	.hero__stat:nth-child(even) { border-left: 1px solid rgba(255,255,255,0.1); }
}

/* ===================== /HERO SECTION ===================== */

/* ===================== NAV DROPDOWN (Каталог) ===================== */
.has-dropdown { position: relative; }
.has-dropdown > a { display: inline-flex; align-items: center; gap: 4px; }
.nav-chev {
	width: 10px;
	height: 10px;
	transition: transform 0.2s;
	flex-shrink: 0;
}
.has-dropdown:hover .nav-chev { transform: rotate(180deg); }
ul.nav-dropdown {
	display: none !important;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 12px;
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
	padding: 12px 0 8px;
	min-width: 220px;
	z-index: 100;
	list-style: none;
	flex-direction: column;
	flex-wrap: nowrap;
	margin: 0;
}
/* Invisible bridge — fills gap between trigger and dropdown so hover isn't lost */
.has-dropdown::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	height: 16px;
	display: none;
}
.has-dropdown:hover::after { display: block; }
.has-dropdown:hover > ul.nav-dropdown { display: flex !important; }
.nav-dropdown li { margin: 0; }
.nav-dropdown li a {
	display: flex !important;
	align-items: center;
	gap: 10px;
	padding: 10px 18px;
	font-size: 14px !important;
	font-weight: 500 !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
	color: #1B1C1C !important;
	text-decoration: none;
	transition: background 0.15s, color 0.15s;
	white-space: nowrap;
}
.nav-dropdown li a:hover {
	background: #F5F7FA;
	color: #009EE3 !important;
}
/* Kill inherited nav underline animation on dropdown links */
.nav-dropdown li a::after { display: none !important; }
.nav-dropdown__flag {
	font-size: 18px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
}
.nav-dropdown__flag img.emoji {
	width: 18px !important;
	height: 18px !important;
	margin: 0 !important;
}
@media (max-width: 991px) {
	.nav-dropdown { display: none !important; }
}
/* ===================== /NAV DROPDOWN ===================== */


/* ===================== MODAL FORMS V2 ===================== */
.field__label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #1B1C1C;
	margin-bottom: 8px;
}
.field__select-group {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.field__chip {
	cursor: pointer;
}
.field__chip input {
	display: none;
}
.field__chip span {
	display: inline-block;
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 500;
	border-radius: 100px;
	border: 1px solid #E2E6EB;
	background: #F7F8FA;
	color: #5A6472;
	transition: all 0.2s;
	cursor: pointer;
}
.field__chip input:checked + span {
	background: #1A3A5C;
	color: #fff;
	border-color: #1A3A5C;
}
.field__chip:hover span {
	border-color: #1A3A5C;
}

/* Vigoda calculator */
.vigoda-result {
	background: #F0FAF0;
	border: 1px solid #C8E6C9;
	border-radius: 12px;
	padding: 16px;
	margin: 4px 0;
}
.vigoda-result__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 4px 0;
}
.vigoda-result__row span {
	font-size: 14px;
	color: #5A6472;
}
.vigoda-result__save {
	font-size: 22px;
	font-weight: 800;
	color: #4CAF50;
}
.vigoda-result__price {
	font-size: 18px;
	font-weight: 700;
	color: #1A3A5C;
}
.vigoda-result__note {
	font-size: 11px;
	color: #8E96A0;
	margin-top: 8px;
	margin-bottom: 0;
}
/* ===================== /MODAL FORMS V2 ===================== */

/* ===================== HEADER V2 ===================== */

/* Right group: phone + callback pinned right */
.header__right-group {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-left: auto;
}
.header__phone-block {
	display: flex;
	align-items: center;
}
.header__phone-main {
	text-align: right;
	position: relative;
}
.header__phone-number {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 22px;
	font-weight: 700;
	color: #1B1C1C;
	text-decoration: none;
	line-height: 1.2;
	transition: color 0.2s;
}
.header__phone-number:hover {
	color: var(--cf-brand);
}
.header__phone-number svg {
	flex-shrink: 0;
}
.header__phone-sub {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	margin-top: 3px;
}
.header__phone-label {
	font-size: 12px;
	color: var(--cf-brand);
	font-weight: 500;
}

/* Cities dropdown */
.header__cities-toggle {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	background: none;
	border: none;
	padding: 0;
	font-size: 12px;
	font-weight: 500;
	color: #999;
	cursor: pointer;
	transition: color 0.2s;
	font-family: inherit;
	text-decoration: underline;
	text-decoration-style: dotted;
	text-underline-offset: 2px;
}
.header__cities-toggle:hover,
.header__cities-toggle[aria-expanded="true"] {
	color: var(--cf-brand);
	text-decoration-color: var(--cf-brand);
}
.header__cities-toggle[aria-expanded="true"] svg {
	transform: rotate(180deg);
}
.header__cities-toggle svg {
	transition: transform 0.2s;
}
.header__cities-dropdown {
	display: none;
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.12);
	padding: 8px 0;
	min-width: 240px;
	z-index: 100;
	border: 1px solid rgba(0,0,0,0.06);
}
.header__cities-dropdown.open {
	display: block;
	animation: dropdownFade 0.2s ease-out;
}
@keyframes dropdownFade {
	from { opacity: 0; transform: translateY(-6px); }
	to { opacity: 1; transform: translateY(0); }
}
.header__city-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 16px;
	gap: 16px;
	transition: background 0.15s;
}
.header__city-item:hover {
	background: #f5f8fa;
}
.header__city-item span {
	font-size: 13px;
	color: #999;
	font-weight: 400;
}
.header__city-item a {
	font-size: 14px;
	font-weight: 600;
	color: #1B1C1C;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s;
}
.header__city-item a:hover {
	color: var(--cf-brand);
}

/* Callback button */
.header__callback-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--cf-brand);
	color: #fff;
	border: none;
	border-radius: 10px;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	font-family: inherit;
	white-space: nowrap;
}
.header__callback-btn:hover {
	background: var(--cf-brand-dark);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(26,58,92,0.35);
}

/* Responsive header */
@media (max-width: 1199px) {
	.header__phone-number {
		font-size: 18px;
	}
	.header__cities-toggle {
		display: none;
	}
	.header__callback-btn {
		padding: 10px 16px;
		font-size: 13px;
	}
}
@media (max-width: 991px) {
	.header__right-group {
		margin-left: 0;
	}
	.header__phone-block {
		display: none;
	}
	.header__callback-btn {
		padding: 8px 14px;
	}
}
/* Mobile menu phone */
.menu__phone {
	display: none;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	margin-bottom: 8px;
}
.menu__phone b {
	font-size: 22px;
	color: #1B1C1C;
	font-weight: 700;
}
.menu__phone span {
	font-size: 12px;
	color: var(--cf-brand);
	font-weight: 500;
}
@media (max-width: 991px) {
	.menu__phone {
		display: flex;
	}
}
/* --- Nav v2: animated underline + active state --- */
.nav ul li a {
	position: relative;
	padding: 6px 0;
	transition: color 0.25s ease;
}
.nav ul li a::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: var(--cf-brand);
	border-radius: 2px;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.3s ease;
}
.nav ul li a:hover::after,
.nav ul li.is-active a::after {
	transform: scaleX(1);
}
.nav ul li.is-active a {
	color: #1A3A5C;
}
/* ===================== /HEADER V2 ===================== */

/* ===================== STICKY MOBILE CTA BAR ===================== */
.sticky-cta {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99;
	display: none;
	gap: 10px;
	padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
	background: rgba(255,255,255,0.98);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-top: 1px solid var(--cf-border);
	box-shadow: 0 -8px 30px rgba(15,38,64,0.12);
	transform: translateY(110%);
	transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.sticky-cta.is-visible {
	transform: translateY(0);
}
.sticky-cta__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 18px;
	border-radius: 12px;
	font-family: var(--cf-font);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.2s ease, background 0.2s ease;
	white-space: nowrap;
	min-height: 50px;
}
.sticky-cta__btn--call {
	flex: 0 0 auto;
	background: var(--cf-bg-alt);
	color: var(--cf-primary);
	border: 1px solid var(--cf-border);
	padding: 14px;
	min-width: 50px;
}
.sticky-cta__btn--call span {
	display: none;
}
.sticky-cta__btn--main {
	flex: 1;
	background: var(--cf-brand);
	color: #fff;
	box-shadow: 0 6px 20px rgba(26,58,92,0.3);
}
.sticky-cta__btn--main:hover,
.sticky-cta__btn--main:active {
	background: var(--cf-brand-dark);
	color: #fff;
	text-decoration: none;
}
.sticky-cta__btn--call:hover,
.sticky-cta__btn--call:active {
	background: var(--cf-brand);
	color: #fff;
	border-color: var(--cf-brand);
	text-decoration: none;
}

/* На мобиле — показываем */
@media (max-width: 767px) {
	.sticky-cta {
		display: flex;
	}
	body.has-sticky-cta {
		padding-bottom: 80px;
	}
}
/* ===================== /STICKY MOBILE CTA BAR ===================== */

/* ===================== INLINE LEAD FORM ===================== */
.lead-inline {
	padding: 80px 0;
	background: linear-gradient(180deg, var(--cf-bg) 0%, var(--cf-bg-alt) 100%);
	font-family: var(--cf-font);
}
.lead-inline__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
	gap: 48px;
	align-items: center;
	max-width: 1120px;
	margin: 0 auto;
}

/* --- Text column --- */
.lead-inline__text {
	max-width: 460px;
}
.lead-inline__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cf-text-light);
	margin-bottom: 16px;
}
.lead-inline__eyebrow-line {
	width: 28px;
	height: 1px;
	background: var(--cf-brand);
}
.lead-inline__title {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--cf-text);
	margin: 0 0 14px;
}
.lead-inline__lead {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--cf-text-muted);
	margin: 0 0 22px;
}
.lead-inline__pillars {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.lead-inline__pillars li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	font-weight: 500;
	color: var(--cf-text);
}
.lead-inline__pillars svg {
	flex-shrink: 0;
	color: var(--cf-green);
}

/* --- Form --- */
.lead-inline__form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	background: var(--cf-bg);
	border: 1px solid var(--cf-border);
	border-radius: var(--cf-radius-lg);
	padding: 32px 32px 28px;
	box-shadow: 0 28px 64px -32px rgba(15,38,64,0.22);
}
.lead-inline__field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.lead-inline__field--full {
	grid-column: 1 / -1;
}
.lead-inline__field label {
	font-size: 12px;
	font-weight: 600;
	color: var(--cf-text);
	letter-spacing: 0.02em;
}
.lead-inline__field label span {
	font-weight: 400;
	color: var(--cf-text-light);
}
.lead-inline__field input {
	width: 100%;
	padding: 14px 16px;
	background: var(--cf-bg-alt);
	border: 1px solid var(--cf-border);
	border-radius: var(--cf-radius);
	font-family: var(--cf-font);
	font-size: 14px;
	font-weight: 500;
	color: var(--cf-text);
	transition: border-color 0.2s ease, background 0.2s ease;
}
.lead-inline__field input::placeholder {
	color: var(--cf-text-light);
	font-weight: 400;
}
.lead-inline__field input:focus {
	outline: none;
	border-color: var(--cf-brand);
	background: var(--cf-bg);
	box-shadow: 0 0 0 3px rgba(26,58,92,0.08);
}
.lead-inline__submit {
	grid-column: 1 / -1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 28px;
	background: var(--cf-brand);
	color: #fff;
	border: none;
	border-radius: var(--cf-radius);
	font-family: var(--cf-font);
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(26,58,92,0.3);
	transition: background 0.2s ease, transform 0.2s ease;
}
.lead-inline__submit svg {
	transition: transform 0.3s ease;
}
.lead-inline__submit:hover {
	background: var(--cf-brand-dark);
	transform: translateY(-2px);
}
.lead-inline__submit:hover svg {
	transform: translateX(4px);
}
.lead-inline__submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}
.lead-inline__policy {
	grid-column: 1 / -1;
	font-size: 11px;
	font-weight: 400;
	color: var(--cf-text-light);
	line-height: 1.5;
	margin: 0;
	text-align: center;
}
.lead-inline__policy a {
	color: var(--cf-brand);
	text-decoration: underline;
}
.lead-inline__success {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 18px 22px;
	background: rgba(76,175,80,0.10);
	border: 1px solid rgba(76,175,80,0.35);
	border-radius: var(--cf-radius);
	font-size: 14px;
	font-weight: 600;
	color: var(--cf-green);
}

@media (max-width: 991px) {
	.lead-inline__layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.lead-inline__text {
		max-width: 100%;
		text-align: center;
	}
	.lead-inline__eyebrow {
		justify-content: center;
	}
	.lead-inline__pillars {
		align-items: center;
	}
}
@media (max-width: 640px) {
	.lead-inline {
		padding: 56px 0;
	}
	.lead-inline__form {
		grid-template-columns: 1fr;
		padding: 24px 22px 22px;
	}
}
/* ===================== /INLINE LEAD FORM ===================== */

/* ===================== URGENCY STRIP ===================== */
.urgency {
	background: linear-gradient(90deg, var(--cf-primary) 0%, var(--cf-primary-dark) 100%);
	color: #fff;
	font-family: var(--cf-font);
	border-bottom: 3px solid var(--cf-brand);
}
.urgency__inner {
	display: flex;
	align-items: center;
	gap: 22px;
	padding: 18px 0;
}
.urgency__icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(245,166,35,0.18);
	color: var(--cf-accent);
	border: 1px solid rgba(245,166,35,0.4);
}
.urgency__text {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.urgency__text strong {
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	line-height: 1.35;
}
.urgency__text span {
	font-size: 13px;
	font-weight: 400;
	color: rgba(255,255,255,0.7);
	line-height: 1.5;
}
.urgency__cta {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	padding: 12px 22px;
	background: var(--cf-brand);
	color: #fff;
	border-radius: var(--cf-radius);
	font-family: var(--cf-font);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.2s ease;
}
.urgency__cta:hover {
	background: #fff;
	color: var(--cf-primary);
	text-decoration: none;
	transform: translateY(-1px);
}

@media (max-width: 768px) {
	.urgency__inner {
		flex-direction: column;
		text-align: center;
		gap: 14px;
		padding: 18px 0 20px;
	}
	.urgency__cta {
		width: 100%;
		justify-content: center;
	}
}
/* ===================== /URGENCY STRIP ===================== */

/* ===================== MOBILE GLOBAL ADJUSTMENTS (для блоков main page) ===================== */
@media (max-width: 640px) {
	/* Все H2-заголовки секций main-page */
	.actuals__title,
	.destinations__title,
	.salon-tricks__header h2,
	.self-risks__head h2,
	.checklist__head h2,
	.personal__title,
	.team-block__title,
	.process__title,
	.pricing__title,
	.calc__title,
	.why__title,
	.services__title,
	.faq__title,
	.overpay__title {
		font-size: 24px;
		line-height: 1.25;
	}

	/* Тонкие хейрлайны eyebrow одинаковой ширины */
	.actuals__eyebrow-line,
	.destinations__eyebrow-line,
	.self-risks__eyebrow,
	.checklist__eyebrow-line,
	.personal__eyebrow-line,
	.team-block__eyebrow-line,
	.process__eyebrow-line,
	.pricing__eyebrow-line,
	.calc__eyebrow-line,
	.why__eyebrow-line,
	.services__eyebrow-line,
	.faq__eyebrow-line,
	.overpay__eyebrow-line {
		width: 22px;
	}

	/* Body lead в секциях ужимаем */
	.actuals__lead,
	.destinations__head p,
	.self-risks__head p,
	.checklist__head p,
	.personal__title + .personal__quote,
	.team-block__lead,
	.process__lead,
	.pricing__lead,
	.calc__lead,
	.why__lead,
	.services__lead,
	.faq__lead,
	.overpay__lead {
		font-size: 14px;
		line-height: 1.55;
	}

	/* CTA-кнопки на мобиле — touch target ≥48px и full width в plates */
	.process__foot-link,
	.team-block__foot-link,
	.pricing-card__btn,
	.calc__cta,
	.why__savings-cta,
	.services__foot-cta,
	.faq__foot-cta,
	.salon-tricks__btn,
	.self-risks__btn,
	.overpay__cta {
		min-height: 48px;
	}

	/* Предотвращение горизонтального overflow */
	.actuals,
	.destinations,
	.salon-tricks,
	.self-risks,
	.checklist,
	.personal,
	.team-block,
	.process,
	.pricing,
	.calc,
	.why,
	.services,
	.faq,
	.overpay {
		overflow-x: hidden;
	}
}
@media (max-width: 480px) {
	.actuals__title,
	.destinations__title,
	.salon-tricks__header h2,
	.self-risks__head h2,
	.checklist__head h2,
	.personal__title,
	.team-block__title,
	.process__title,
	.pricing__title,
	.calc__title,
	.why__title,
	.services__title,
	.faq__title,
	.overpay__title {
		font-size: 22px;
	}
}
/* ===================== /MOBILE GLOBAL ===================== */

/* --- Cars block button override (компактная как actuals__foot-link) --- */
.cars__block .btn,
.cars__wrapper .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: auto;
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 600;
	font-family: var(--cf-font);
	border-radius: var(--cf-radius);
	box-shadow: 0 6px 18px rgba(26,58,92,0.20);
	min-height: 44px;
	white-space: nowrap;
}
.cars__block .btn:hover,
.cars__wrapper .btn:hover {
	background: var(--cf-brand-dark);
	transform: translateY(-1px);
	box-shadow: 0 8px 22px rgba(26,58,92,0.30);
}

/* ===================== OVERPAY (узнайте сколько вы переплачиваете) ===================== */
.overpay {
	padding: 88px 0 80px;
	background: var(--cf-bg-alt);
	font-family: var(--cf-font);
	position: relative;
	overflow: hidden;
}
.overpay::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(26,58,92,0.04) 1px, transparent 1.5px);
	background-size: 22px 22px;
	-webkit-mask-image: radial-gradient(circle at 50% 30%, #000 20%, transparent 70%);
	        mask-image: radial-gradient(circle at 50% 30%, #000 20%, transparent 70%);
	pointer-events: none;
}
.overpay .container {
	position: relative;
}

.overpay__head {
	max-width: 760px;
	margin: 0 auto 44px;
	text-align: center;
}
.overpay__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cf-text-light);
	margin-bottom: 16px;
}
.overpay__eyebrow-line {
	width: 28px;
	height: 1px;
	background: var(--cf-brand);
}
.overpay__title {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--cf-text);
	margin: 0 0 14px;
}
.overpay__lead {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--cf-text-muted);
	margin: 0 auto;
	max-width: 600px;
}

/* --- Model pills --- */
.overpay__models {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 36px;
	padding: 8px;
	background: var(--cf-bg);
	border: 1px solid var(--cf-border);
	border-radius: 100px;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}
.overpay-model {
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
	padding: 11px 20px;
	background: transparent;
	border: none;
	border-radius: 100px;
	cursor: pointer;
	font-family: var(--cf-font);
	color: var(--cf-text-muted);
	transition: background 0.25s ease, color 0.25s ease;
	white-space: nowrap;
}
.overpay-model:hover {
	color: var(--cf-text);
	background: var(--cf-bg-alt);
}
.overpay-model.is-active {
	background: var(--cf-brand);
	color: #fff;
	box-shadow: 0 6px 18px -6px rgba(26,58,92,0.4);
}
.overpay-model__name {
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
}
.overpay-model__year {
	font-size: 11px;
	font-weight: 500;
	color: var(--cf-text-light);
	letter-spacing: 0.02em;
}
.overpay-model.is-active .overpay-model__year {
	color: rgba(255,255,255,0.7);
}

/* --- Result panel --- */
.overpay__result {
	background: var(--cf-bg);
	border: 1px solid var(--cf-border);
	border-radius: var(--cf-radius-lg);
	overflow: hidden;
	box-shadow: 0 28px 64px -32px rgba(15,38,64,0.25);
	max-width: 1080px;
	margin: 0 auto;
}
.overpay__result-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding: 22px 32px;
	border-bottom: 1px solid var(--cf-border-light);
}
.overpay__result-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cf-text-light);
}
.overpay__result-tag::before {
	content: '';
	width: 16px;
	height: 1px;
	background: var(--cf-brand);
}
.overpay__result-title {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--cf-text);
	margin: 0;
	transition: color 0.3s ease;
}
.overpay__result-title.is-pulse {
	animation: overpayFade 0.4s ease;
}

/* --- Cells (3 columns) --- */
.overpay__cells {
	display: grid;
	grid-template-columns: 1fr 1fr 1.5fr;
	gap: 0;
}
.overpay-cell {
	padding: 32px 32px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	border-right: 1px solid var(--cf-border-light);
	position: relative;
}
.overpay-cell:last-child {
	border-right: none;
}
.overpay-cell__label {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.12em;
	color: var(--cf-text-light);
	text-transform: uppercase;
}
.overpay-cell__value {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.1;
	font-variant-numeric: tabular-nums;
	letter-spacing: -0.01em;
	transition: color 0.3s ease;
}
.overpay-cell__value.is-pulse {
	animation: overpayPulse 0.5s ease;
}
@keyframes overpayPulse {
	0%   { transform: scale(1.04); opacity: 0.6; }
	100% { transform: scale(1); opacity: 1; }
}
@keyframes overpayFade {
	0%   { opacity: 0.4; transform: translateY(4px); }
	100% { opacity: 1; transform: translateY(0); }
}

/* Bad — серый зачёркнутый, без алярма */
.overpay-cell--bad .overpay-cell__value {
	color: var(--cf-text-light);
	text-decoration: line-through;
	text-decoration-color: rgba(226,75,74,0.6);
	text-decoration-thickness: 2px;
}

/* Good — primary */
.overpay-cell--good .overpay-cell__value {
	color: var(--cf-primary);
}

/* Save — главная клетка с brand-cyan акцентом */
.overpay-cell--save {
	background: linear-gradient(135deg, var(--cf-primary) 0%, var(--cf-primary-dark) 100%);
	color: #fff;
	gap: 12px;
	padding: 32px 36px;
}
.overpay-cell--save::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: var(--cf-brand);
}
.overpay-cell--save .overpay-cell__label {
	color: rgba(255,255,255,0.6);
}
.overpay-cell__value--big {
	font-size: 40px;
	font-weight: 800;
	color: #fff !important;
	letter-spacing: -0.025em;
	line-height: 1;
}
.overpay-cell__pct {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #fff;
	background: var(--cf-brand);
	padding: 6px 12px;
	border-radius: 100px;
	margin-top: 2px;
}

/* CTA */
.overpay__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 22px 32px;
	background: var(--cf-bg);
	color: var(--cf-brand);
	font-family: var(--cf-font);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	border-top: 1px solid var(--cf-border-light);
	transition: background 0.25s ease, color 0.25s ease;
}
.overpay__cta svg {
	transition: transform 0.3s ease;
}
.overpay__cta:hover {
	background: var(--cf-brand);
	color: #fff;
	text-decoration: none;
}
.overpay__cta:hover svg {
	transform: translateX(4px);
}

.overpay__note {
	max-width: 760px;
	margin: 22px auto 0;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.55;
	color: var(--cf-text-light);
	text-align: center;
}

@media (max-width: 991px) {
	.overpay__cells {
		grid-template-columns: 1fr 1fr;
	}
	.overpay-cell--save {
		grid-column: 1 / -1;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		flex-wrap: wrap;
		border-top: 1px solid rgba(255,255,255,0.12);
	}
	.overpay-cell--save::before {
		left: 0;
		right: 0;
		top: 0;
		bottom: auto;
		width: auto;
		height: 3px;
	}
	.overpay-cell--save .overpay-cell__label {
		flex: 1 0 100%;
	}
}
@media (max-width: 640px) {
	.overpay {
		padding: 64px 0 56px;
	}
	.overpay__head {
		margin-bottom: 32px;
	}
	.overpay__models {
		gap: 4px;
		padding: 6px;
		max-width: 100%;
		flex-wrap: wrap;
	}
	.overpay-model {
		padding: 9px 16px;
	}
	.overpay-model__name {
		font-size: 13px;
	}
	.overpay__result-head {
		padding: 18px 22px;
	}
	.overpay__cells {
		grid-template-columns: 1fr;
	}
	.overpay-cell {
		border-right: none;
		border-bottom: 1px solid var(--cf-border-light);
		padding: 22px 24px;
	}
	.overpay-cell--save {
		flex-direction: column;
		align-items: flex-start;
		padding: 26px 24px;
	}
	.overpay-cell--save::before {
		width: 3px;
		height: 100%;
		left: 0;
		top: 0;
		right: auto;
	}
	.overpay-cell:last-child {
		border-bottom: none;
	}
	.overpay-cell__value {
		font-size: 22px;
	}
	.overpay-cell__value--big {
		font-size: 34px;
	}
	.overpay__cta {
		padding: 18px 22px;
		font-size: 13px;
		text-align: center;
	}
}
/* ===================== /OVERPAY ===================== */

/* ===================== PERSONAL (личная ответственность) ===================== */
.personal {
	padding: 96px 0;
	background: var(--cf-bg-alt);
	font-family: var(--cf-font);
	position: relative;
	overflow: hidden;
}
.personal::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(26,58,92,0.04) 1px, transparent 1.5px);
	background-size: 26px 26px;
	-webkit-mask-image: radial-gradient(circle at 70% 50%, #000 20%, transparent 65%);
	        mask-image: radial-gradient(circle at 70% 50%, #000 20%, transparent 65%);
	pointer-events: none;
}

.personal__layout {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: 64px;
	align-items: center;
	z-index: 1;
}

/* --- Контент --- */
.personal__content {
	max-width: 580px;
}
.personal__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cf-text-light);
	margin-bottom: 18px;
}
.personal__eyebrow-line {
	width: 28px;
	height: 1px;
	background: var(--cf-accent);
}
.personal__title {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--cf-text);
	margin: 0 0 24px;
}
.personal__title em {
	font-style: normal;
	color: var(--cf-accent-dark);
}

.personal__quote {
	position: relative;
	margin: 0 0 28px;
	padding: 22px 26px 22px 28px;
	background: var(--cf-bg);
	border-left: 3px solid var(--cf-accent);
	border-radius: 0 var(--cf-radius) var(--cf-radius) 0;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.65;
	color: var(--cf-text);
	box-shadow: 0 12px 28px -18px rgba(15,38,64,0.2);
}
.personal__quote::before {
	content: '"';
	position: absolute;
	top: -8px;
	left: 18px;
	font-size: 60px;
	font-weight: 800;
	line-height: 1;
	color: var(--cf-accent);
	opacity: 0.25;
	font-family: Georgia, serif;
}

/* --- Pillars --- */
.personal__pillars {
	list-style: none;
	padding: 0;
	margin: 0 0 32px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.personal__pillars li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}
.personal__pillar-icon {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(76,175,80,0.12);
	color: var(--cf-green);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.personal__pillars div {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.personal__pillars strong {
	font-size: 15px;
	font-weight: 600;
	color: var(--cf-text);
	line-height: 1.4;
}
.personal__pillars span {
	font-size: 13px;
	font-weight: 400;
	color: var(--cf-text-muted);
	line-height: 1.5;
}

/* --- Signature row --- */
.personal__sign {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 24px;
	border-top: 1px solid var(--cf-border);
}
.personal__sign-name {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.personal__sign-name strong {
	font-size: 15px;
	font-weight: 700;
	color: var(--cf-primary);
	line-height: 1.3;
}
.personal__sign-name span {
	font-size: 12px;
	font-weight: 500;
	color: var(--cf-text-light);
}
.personal__cta {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--cf-brand);
	color: #fff;
	padding: 13px 24px;
	border-radius: var(--cf-radius);
	font-family: var(--cf-font);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 6px 18px rgba(0,158,227,0.35);
	transition: background 0.2s ease, transform 0.2s ease;
}
.personal__cta:hover {
	background: var(--cf-brand-dark);
	color: #fff;
	transform: translateY(-2px);
	text-decoration: none;
}

/* --- Photo block (вдохновение от /about/ и /team/) --- */
.personal__photo {
	position: relative;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	min-height: 540px;
	padding-bottom: 0;
}

/* Большой круг — мягкий фон под фото */
.personal__photo-circle {
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 460px;
	height: 460px;
	max-width: 90%;
	border-radius: 50%;
	background:
		radial-gradient(circle at 35% 30%, rgba(245,166,35,0.18) 0%, transparent 55%),
		linear-gradient(160deg, rgba(26,58,92,0.12) 0%, rgba(26,58,92,0.18) 100%);
	box-shadow: 0 30px 60px -28px rgba(15,38,64,0.18);
	z-index: 1;
}

/* Dot-pattern overlay поверх круга */
.personal__photo-pattern {
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 460px;
	height: 460px;
	max-width: 90%;
	border-radius: 50%;
	background-image: radial-gradient(rgba(26,58,92,0.10) 1px, transparent 1.5px);
	background-size: 22px 22px;
	-webkit-mask-image: radial-gradient(circle at center, #000 30%, transparent 75%);
	        mask-image: radial-gradient(circle at center, #000 30%, transparent 75%);
	z-index: 2;
	pointer-events: none;
}

/* Фото-cutout сверху */
.personal__photo-img {
	position: relative;
	z-index: 3;
	display: block;
	width: 100%;
	max-width: 440px;
	height: auto;
	max-height: 560px;
	object-fit: contain;
	filter: drop-shadow(0 24px 36px rgba(15,38,64,0.25));
}

/* Бейдж-подпись в стиле about */
.personal__photo-badge {
	position: absolute;
	left: 50%;
	bottom: 18px;
	transform: translateX(-50%);
	z-index: 4;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	background: var(--cf-bg);
	border-radius: 100px;
	font-size: 13px;
	font-weight: 600;
	color: var(--cf-primary);
	box-shadow: 0 18px 40px -16px rgba(15,38,64,0.4);
	white-space: nowrap;
}
.personal__photo-badge svg {
	color: var(--cf-green);
	flex-shrink: 0;
}

/* --- Floating stats --- */
.personal__photo-stat {
	position: absolute;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	background: var(--cf-bg);
	border: 1px solid var(--cf-border);
	border-radius: var(--cf-radius);
	padding: 14px 18px;
	box-shadow: 0 18px 40px -18px rgba(15,38,64,0.3);
}
.personal__photo-stat--top {
	top: 14%;
	left: 0;
	animation: personalFloat 4s ease-in-out infinite;
}
.personal__photo-stat--bottom {
	top: 42%;
	right: 0;
	animation: personalFloat 4s ease-in-out infinite 1s;
}
@keyframes personalFloat {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-6px); }
}
.personal__photo-stat-num {
	font-size: 22px;
	font-weight: 700;
	color: var(--cf-primary);
	line-height: 1;
	font-variant-numeric: tabular-nums;
}
.personal__photo-stat-num small {
	font-size: 0.7em;
	font-weight: 700;
	color: var(--cf-accent);
}
.personal__photo-stat-text {
	font-size: 12px;
	font-weight: 500;
	color: var(--cf-text-light);
}

/* --- Responsive --- */
@media (max-width: 991px) {
	.personal {
		padding: 72px 0;
	}
	.personal__layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.personal__photo {
		order: -1;
		min-height: 460px;
	}
	.personal__photo-circle,
	.personal__photo-pattern {
		width: 360px;
		height: 360px;
	}
	.personal__photo-img {
		max-width: 340px;
		max-height: 460px;
	}
	.personal__photo-stat--top {
		top: 8%;
		left: 4%;
	}
	.personal__photo-stat--bottom {
		top: 36%;
		right: 4%;
	}
	.personal__photo-badge {
		bottom: 12px;
		font-size: 12px;
		padding: 10px 18px;
	}
}
@media (max-width: 540px) {
	.personal {
		padding: 56px 0;
	}
	.personal__quote {
		font-size: 14px;
		padding: 20px 22px 20px 24px;
	}
	.personal__sign {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
		gap: 16px;
	}
	.personal__cta {
		width: 100%;
	}
	.personal__photo-stat {
		padding: 10px 14px;
	}
	.personal__photo-stat-num {
		font-size: 18px;
	}
}
/* ===================== /PERSONAL ===================== */

/* ===================== TEAM ===================== */
.team-block {
	padding: 88px 0;
	background: var(--cf-bg);
	font-family: var(--cf-font);
}
.team-block__head {
	max-width: 760px;
	margin: 0 auto 56px;
	text-align: center;
}
.team-block__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cf-text-light);
	margin-bottom: 16px;
}
.team-block__eyebrow-line {
	width: 28px;
	height: 1px;
	background: var(--cf-accent);
}
.team-block__title {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--cf-text);
	margin: 0 0 14px;
}
.team-block__lead {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--cf-text-muted);
	margin: 0 auto 28px;
	max-width: 620px;
}

/* Stats row */
.team-block__stats {
	display: inline-flex;
	gap: 0;
	padding: 18px 32px;
	background: var(--cf-bg-alt);
	border: 1px solid var(--cf-border);
	border-radius: 100px;
}
.team-block__stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	padding: 0 26px;
	border-right: 1px solid var(--cf-border);
}
.team-block__stat:last-child {
	border-right: none;
}
.team-block__stat-num {
	font-size: 22px;
	font-weight: 700;
	color: var(--cf-primary);
	line-height: 1;
	font-variant-numeric: tabular-nums;
}
.team-block__stat-text {
	font-size: 12px;
	font-weight: 500;
	color: var(--cf-text-light);
	white-space: nowrap;
}

/* Grid */
.team-block__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 22px;
	margin-bottom: 40px;
}

/* Card */
.team-card {
	position: relative;
	background: var(--cf-bg);
	border: 1px solid var(--cf-border-light);
	border-radius: var(--cf-radius-lg);
	overflow: hidden;
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.team-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 22px 48px -24px rgba(15,38,64,0.25);
	border-color: var(--cf-accent);
}

.team-card__photo {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background-color: var(--cf-bg-alt);
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	transition: transform 0.6s ease;
}
.team-card:hover .team-card__photo {
	transform: scale(1.05);
}

.team-card__info {
	padding: 18px 20px 22px;
}
.team-card__name {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--cf-text);
	margin: 0 0 6px;
}
.team-card__role {
	display: block;
	font-size: 13px;
	font-weight: 500;
	color: var(--cf-text-muted);
	line-height: 1.5;
}

/* Featured (директор) */
.team-card--featured {
	border-color: var(--cf-accent);
	box-shadow: 0 18px 40px -22px rgba(245,166,35,0.4);
}
.team-card--featured .team-card__name {
	color: var(--cf-primary);
}
.team-card--featured .team-card__role {
	color: var(--cf-accent-dark);
	font-weight: 600;
}
.team-card__ribbon {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	display: inline-block;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--cf-text);
	background: var(--cf-accent);
	padding: 3px 8px;
	border-radius: 100px;
	box-shadow: 0 4px 10px rgba(245,166,35,0.4);
}

/* Footer */
.team-block__foot {
	text-align: center;
}
.team-block__foot-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	background: var(--cf-brand);
	color: #fff;
	border-radius: var(--cf-radius);
	font-family: var(--cf-font);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 6px 20px rgba(0,158,227,0.35);
	transition: background 0.2s ease, transform 0.2s ease;
}
.team-block__foot-link svg {
	transition: transform 0.3s ease;
}
.team-block__foot-link:hover {
	background: var(--cf-brand-dark);
	color: #fff;
	transform: translateY(-2px);
	text-decoration: none;
}
.team-block__foot-link:hover svg {
	transform: translateX(4px);
}

@media (max-width: 768px) {
	.team-block {
		padding: 64px 0;
	}
	.team-block__head {
		margin-bottom: 40px;
	}
	.team-block__stats {
		flex-direction: column;
		gap: 14px;
		padding: 20px 28px;
		border-radius: var(--cf-radius-lg);
	}
	.team-block__stat {
		padding: 0;
		border-right: none;
		border-bottom: 1px solid var(--cf-border);
		padding-bottom: 12px;
	}
	.team-block__stat:last-child {
		border-bottom: none;
		padding-bottom: 0;
	}
	.team-block__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}
@media (max-width: 480px) {
	.team-block__title {
		font-size: 24px;
	}
	.team-card__name {
		font-size: 16px;
	}
	.team-card__role {
		font-size: 12px;
	}
}
/* ===================== /TEAM ===================== */

/* ===================== PROCESS (как мы работаем) ===================== */
.process {
	padding: 80px 0;
	background: var(--cf-bg);
	font-family: var(--cf-font);
	position: relative;
	overflow: hidden;
}
.process__head {
	max-width: 720px;
	margin: 0 auto 56px;
	text-align: center;
}
.process__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cf-text-light);
	margin-bottom: 16px;
}
.process__eyebrow-line {
	width: 28px;
	height: 1px;
	background: var(--cf-accent);
}
.process__title {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--cf-text);
	margin: 0 0 14px;
}
.process__lead {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--cf-text-muted);
	margin: 0 auto;
	max-width: 600px;
}

/* --- Timeline grid --- */
.process__timeline {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
	margin-bottom: 48px;
}

/* Соединительная пунктирная линия по верху, на уровне центров кружков */
.process__line {
	position: absolute;
	top: 32px;
	left: calc(10% + 0px);
	right: calc(10% + 0px);
	height: 1px;
	background-image: linear-gradient(to right, var(--cf-border) 0%, var(--cf-border) 50%, transparent 50%);
	background-size: 12px 1px;
	background-repeat: repeat-x;
	z-index: 0;
}

/* --- Step card --- */
.process-step {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}
.process-step__node {
	position: relative;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--cf-bg);
	border: 1.5px solid var(--cf-border);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--cf-primary);
	transition: all 0.4s ease;
	margin-left: 8px;
}
.process-step:hover .process-step__node {
	border-color: var(--cf-accent);
	background: var(--cf-accent);
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 12px 28px -10px rgba(245,166,35,0.6);
}
.process-step__num {
	position: absolute;
	top: -8px;
	right: -8px;
	min-width: 26px;
	height: 26px;
	padding: 0 6px;
	border-radius: 100px;
	background: var(--cf-primary);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	font-variant-numeric: tabular-nums;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(26,58,92,0.35);
	transition: background 0.4s ease;
}
.process-step:hover .process-step__num {
	background: var(--cf-text);
}

.process-step__body {
	padding-left: 4px;
}
.process-step__body h3 {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--cf-text);
	margin: 0 0 8px;
}
.process-step__body p {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.55;
	color: var(--cf-text-muted);
	margin: 0 0 12px;
}
.process-step__time {
	display: inline-block;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: var(--cf-accent-dark);
	background: rgba(245,166,35,0.10);
	border: 1px solid rgba(245,166,35,0.30);
	padding: 4px 10px;
	border-radius: 100px;
}

/* --- Footer --- */
.process__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 24px 32px;
	background: var(--cf-bg-alt);
	border: 1px solid var(--cf-border);
	border-radius: var(--cf-radius-lg);
}
.process__foot-stat {
	display: flex;
	align-items: baseline;
	gap: 14px;
}
.process__foot-num {
	font-size: 32px;
	font-weight: 700;
	color: var(--cf-primary);
	font-variant-numeric: tabular-nums;
	letter-spacing: -0.01em;
}
.process__foot-text {
	font-size: 14px;
	font-weight: 500;
	color: var(--cf-text-muted);
	max-width: 18ch;
	line-height: 1.4;
}
.process__foot-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 26px;
	background: var(--cf-brand);
	color: #fff;
	border-radius: var(--cf-radius);
	font-family: var(--cf-font);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 6px 20px rgba(0,158,227,0.35);
	transition: background 0.2s ease, transform 0.2s ease;
}
.process__foot-link svg {
	transition: transform 0.3s ease;
}
.process__foot-link:hover {
	background: var(--cf-brand-dark);
	color: #fff;
	transform: translateY(-2px);
	text-decoration: none;
}
.process__foot-link:hover svg {
	transform: translateX(4px);
}

/* --- Responsive: vertical timeline --- */
@media (max-width: 991px) {
	.process__timeline {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.process__line {
		top: 32px;
		bottom: 32px;
		left: 32px;
		right: auto;
		width: 1px;
		height: auto;
		background-image: linear-gradient(to bottom, var(--cf-border) 0%, var(--cf-border) 50%, transparent 50%);
		background-size: 1px 12px;
		background-repeat: repeat-y;
	}
	.process-step {
		flex-direction: row;
		align-items: flex-start;
		gap: 22px;
		padding-bottom: 28px;
	}
	.process-step:last-child {
		padding-bottom: 0;
	}
	.process-step__node {
		flex-shrink: 0;
		margin-left: 0;
	}
	.process-step__body {
		flex: 1;
		padding-top: 4px;
		padding-left: 0;
	}
	.process__foot {
		flex-direction: column;
		text-align: center;
		gap: 18px;
		padding: 24px 22px;
	}
	.process__foot-stat {
		flex-direction: column;
		align-items: center;
		gap: 4px;
	}
	.process__foot-link {
		width: 100%;
		justify-content: center;
	}
}
@media (max-width: 540px) {
	.process {
		padding: 56px 0;
	}
	.process__head {
		margin-bottom: 40px;
	}
	.process-step {
		gap: 18px;
		padding-bottom: 24px;
	}
	.process-step__node {
		width: 56px;
		height: 56px;
	}
	.process__line {
		left: 28px;
		top: 28px;
		bottom: 28px;
	}
	.process__foot-num {
		font-size: 28px;
	}
}
/* ===================== /PROCESS ===================== */

/* ===================== SERVICES SPECTRUM ===================== */
.services {
	padding: 80px 0;
	background: var(--cf-bg);
	font-family: var(--cf-font);
}
.services__head {
	max-width: 720px;
	margin: 0 auto 48px;
	text-align: center;
}
.services__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cf-text-light);
	margin-bottom: 16px;
}
.services__eyebrow-line {
	width: 28px;
	height: 1px;
	background: var(--cf-accent);
}
.services__title {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--cf-text);
	margin: 0 0 14px;
}
.services__lead {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--cf-text-muted);
	margin: 0 auto;
	max-width: 600px;
}

/* --- 3x3 grid --- */
.services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-bottom: 36px;
}

/* --- Card --- */
.service-card {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 26px 26px 24px;
	background: var(--cf-bg);
	border: 1px solid var(--cf-border-light);
	border-radius: var(--cf-radius-lg);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px -22px rgba(15,38,64,0.25);
	border-color: var(--cf-accent);
}

.service-card__icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(26,58,92,0.08);
	color: var(--cf-primary);
	transition: background 0.3s ease, color 0.3s ease;
}
.service-card:hover .service-card__icon {
	background: rgba(26,58,92,0.14);
}
/* main services отличаются толщиной верхней полоски, не цветом */
.service-card--main {
	border-top: 2px solid var(--cf-primary);
}

.service-card h3 {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--cf-text);
	margin: 0;
}
.service-card p {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.55;
	color: var(--cf-text-muted);
	margin: 0;
}

/* --- Footer plate --- */
.services__foot {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 22px 30px;
	background: var(--cf-bg-alt);
	border: 1px solid var(--cf-border);
	border-radius: var(--cf-radius-lg);
}
.services__foot > svg {
	flex-shrink: 0;
	color: var(--cf-accent);
}
.services__foot-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.services__foot-text strong {
	font-size: 15px;
	font-weight: 700;
	color: var(--cf-text);
	line-height: 1.4;
}
.services__foot-text span {
	font-size: 13px;
	font-weight: 400;
	color: var(--cf-text-muted);
	line-height: 1.5;
}
.services__foot-cta {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--cf-brand);
	color: #fff;
	padding: 13px 24px;
	border-radius: var(--cf-radius);
	font-family: var(--cf-font);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 6px 18px rgba(0,158,227,0.35);
	transition: background 0.2s ease, transform 0.2s ease;
}
.services__foot-cta:hover {
	background: var(--cf-brand-dark);
	color: #fff;
	transform: translateY(-2px);
	text-decoration: none;
}

@media (max-width: 991px) {
	.services__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 640px) {
	.services {
		padding: 56px 0;
	}
	.services__head {
		margin-bottom: 32px;
	}
	.services__grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}
	.service-card {
		padding: 22px 22px 20px;
	}
	.services__foot {
		flex-direction: column;
		text-align: center;
		padding: 22px 22px;
	}
	.services__foot-cta {
		width: 100%;
	}
}
/* ===================== /SERVICES SPECTRUM ===================== */

/* ===================== CALCULATOR ===================== */
.calc {
	padding: 80px 0;
	background: var(--cf-bg);
	font-family: var(--cf-font);
}
.calc__head {
	max-width: 720px;
	margin: 0 auto 48px;
	text-align: center;
}
.calc__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cf-text-light);
	margin-bottom: 16px;
}
.calc__eyebrow-line {
	width: 28px;
	height: 1px;
	background: var(--cf-accent);
}
.calc__title {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--cf-text);
	margin: 0 0 14px;
}
.calc__lead {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--cf-text-muted);
	margin: 0 auto;
	max-width: 600px;
}

/* --- Layout --- */
.calc__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
	gap: 36px;
	align-items: start;
}

/* --- Form --- */
.calc__form {
	background: var(--cf-bg);
	border: 1px solid var(--cf-border);
	border-radius: var(--cf-radius-lg);
	padding: 36px 36px 24px;
	display: flex;
	flex-direction: column;
	gap: 28px;
}
.calc__field {
	border: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.calc__legend {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	font-weight: 600;
	color: var(--cf-text);
	padding: 0;
	width: 100%;
}
.calc__legend-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--cf-bg-alt);
	border: 1px solid var(--cf-border);
	color: var(--cf-accent);
	font-size: 11px;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	flex-shrink: 0;
}
.calc__legend-value {
	margin-left: auto;
	font-size: 14px;
	font-weight: 700;
	color: var(--cf-primary);
	font-variant-numeric: tabular-nums;
}
.calc__legend-value--editable {
	display: inline-flex;
	align-items: baseline;
	gap: 0;
}
.calc__legend-value--editable input[type=text] {
	width: 110px;
	padding: 4px 8px;
	border: 1px solid rgba(26,58,92,0.15);
	border-radius: 4px;
	background: #fff;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	color: var(--cf-primary);
	font-variant-numeric: tabular-nums;
	text-align: right;
	transition: border-color .12s, box-shadow .12s;
}
.calc__legend-value--editable input[type=text]:focus {
	outline: none;
	border-color: var(--cf-accent);
	box-shadow: 0 0 0 2px rgba(245,166,35,0.15);
}
.calc__legend-value--editable input[type=text]:hover {
	border-color: rgba(26,58,92,0.35);
}

/* Pills */
.calc__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.calc__pill {
	cursor: pointer;
}
.calc__pill input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.calc__pill span {
	display: inline-block;
	padding: 10px 18px;
	background: var(--cf-bg);
	border: 1px solid var(--cf-border);
	border-radius: 100px;
	font-size: 13px;
	font-weight: 600;
	color: var(--cf-text-muted);
	transition: all 0.2s ease;
}
.calc__pill:hover span {
	border-color: var(--cf-primary-light);
	color: var(--cf-primary);
}
.calc__pill input:checked + span {
	background: var(--cf-primary);
	border-color: var(--cf-primary);
	color: #fff;
	box-shadow: 0 4px 14px rgba(26,58,92,0.25);
}
.calc__pills--small .calc__pill span {
	padding: 8px 14px;
	font-size: 13px;
}

/* Range slider — кастомизация */
.calc__range {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 6px;
	background: var(--cf-border-light);
	border-radius: 100px;
	outline: none;
	cursor: pointer;
}
.calc__range::-webkit-slider-runnable-track {
	height: 6px;
	background: var(--cf-border-light);
	border-radius: 100px;
}
.calc__range::-moz-range-track {
	height: 6px;
	background: var(--cf-border-light);
	border-radius: 100px;
}
.calc__range::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 22px;
	height: 22px;
	margin-top: -8px;
	background: var(--cf-accent);
	border: 3px solid #fff;
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(245,166,35,0.5);
	cursor: pointer;
	transition: transform 0.15s ease;
}
.calc__range::-webkit-slider-thumb:hover {
	transform: scale(1.1);
}
.calc__range::-moz-range-thumb {
	width: 22px;
	height: 22px;
	background: var(--cf-accent);
	border: 3px solid #fff;
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(245,166,35,0.5);
	cursor: pointer;
}
.calc__range-meta {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	font-weight: 500;
	color: var(--cf-text-light);
}

/* Checkbox */
.calc__check {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 500;
	color: var(--cf-text-muted);
	margin-top: 6px;
	user-select: none;
}
.calc__check input {
	width: 18px;
	height: 18px;
	accent-color: var(--cf-accent);
	cursor: pointer;
}

/* --- Receipt (sticky на десктопе) --- */
.calc__receipt {
	position: sticky;
	top: 100px;
	background: linear-gradient(180deg, var(--cf-primary) 0%, var(--cf-primary-dark) 100%);
	color: #fff;
	border-radius: var(--cf-radius-lg);
	padding: 32px 32px 28px;
	box-shadow: 0 24px 60px -28px rgba(15,38,64,0.55);
}
.calc__receipt-head {
	padding-bottom: 22px;
	margin-bottom: 22px;
	border-bottom: 1px solid rgba(255,255,255,0.16);
}
.calc__receipt-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--cf-accent);
	margin-bottom: 10px;
}
.calc__receipt-title {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	color: #fff;
	margin: 0;
}

/* Breakdown */
.calc__breakdown {
	margin: 0 0 22px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.calc__breakdown div {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
}
.calc__breakdown dt {
	font-size: 13px;
	font-weight: 400;
	color: rgba(255,255,255,0.65);
}
.calc__breakdown dd {
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	margin: 0;
	font-variant-numeric: tabular-nums;
	transition: color 0.3s ease;
}
.calc__breakdown dd.is-pulse {
	animation: calcPulse 0.5s ease;
}
@keyframes calcPulse {
	0%   { color: var(--cf-accent); transform: scale(1.03); }
	100% { color: #fff; transform: scale(1); }
}

/* Total */
.calc__total {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	padding-top: 20px;
	margin-bottom: 22px;
	border-top: 1px dashed rgba(255,255,255,0.25);
}
.calc__total-label {
	font-size: 14px;
	font-weight: 500;
	color: rgba(255,255,255,0.7);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.calc__total-value {
	font-size: 26px;
	font-weight: 700;
	color: var(--cf-accent);
	font-variant-numeric: tabular-nums;
	transition: color 0.3s ease;
}
.calc__total-value.is-pulse {
	animation: calcTotalPulse 0.6s ease;
}
@keyframes calcTotalPulse {
	0%   { transform: scale(1.05); }
	50%  { transform: scale(1.02); }
	100% { transform: scale(1); }
}

/* CTA */
.calc__cta {
	display: block;
	text-align: center;
	background: var(--cf-brand);
	color: #fff;
	padding: 16px 24px;
	border-radius: var(--cf-radius);
	font-family: var(--cf-font);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 6px 20px rgba(0,158,227,0.4);
	transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.3s ease;
}
.calc__cta:hover {
	background: var(--cf-brand-dark);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(0,158,227,0.55);
	text-decoration: none;
}

.calc__note {
	margin: 18px 0 0;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.55;
	color: rgba(255,255,255,0.5);
}

/* --- Responsive --- */
@media (max-width: 991px) {
	.calc__layout {
		grid-template-columns: 1fr;
		gap: 22px;
	}
	.calc__receipt {
		position: static;
	}
	.calc__form {
		padding: 28px 24px 22px;
	}
}
@media (max-width: 540px) {
	.calc {
		padding: 56px 0;
	}
	.calc__head {
		margin-bottom: 32px;
	}
	.calc__form {
		padding: 24px 20px 20px;
		gap: 22px;
	}
	.calc__receipt {
		padding: 26px 22px 22px;
	}
	.calc__total-value {
		font-size: 24px;
	}
	.calc__pill span {
		padding: 9px 14px;
		font-size: 12.5px;
	}
}
/* ===================== /CALCULATOR ===================== */

/* ===================== WHY (почему это выгодно) ===================== */
.why {
	padding: 80px 0;
	background: var(--cf-bg-alt);
	font-family: var(--cf-font);
}
.why__head {
	max-width: 760px;
	margin: 0 auto 48px;
	text-align: center;
}
.why__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cf-text-light);
	margin-bottom: 16px;
}
.why__eyebrow-line {
	width: 28px;
	height: 1px;
	background: var(--cf-accent);
}
.why__title {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--cf-text);
	margin: 0 0 14px;
}
.why__lead {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--cf-text-muted);
	margin: 0 auto;
	max-width: 640px;
}

/* --- Comparison table --- */
.why__compare {
	background: var(--cf-bg);
	border: 1px solid var(--cf-border);
	border-radius: var(--cf-radius-lg);
	overflow: hidden;
	margin-bottom: 32px;
	box-shadow: 0 18px 48px -28px rgba(15,38,64,0.18);
}
.why__compare-head,
.why__row {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: 0;
}
.why__compare-head {
	padding: 18px 28px;
	background: var(--cf-bg-alt);
	border-bottom: 1px solid var(--cf-border);
}
.why__col-label {
	display: flex;
	align-items: center;
	justify-content: center;
}
.why__col-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 100px;
}
.why__col-label--bad .why__col-tag {
	color: var(--cf-red);
	background: rgba(226,75,74,0.10);
	border: 1px solid rgba(226,75,74,0.30);
}
.why__col-label--good .why__col-tag {
	color: var(--cf-accent-dark);
	background: rgba(245,166,35,0.12);
	border: 1px solid rgba(245,166,35,0.40);
}

/* Rows */
.why__row {
	padding: 20px 28px;
	border-bottom: 1px solid var(--cf-border-light);
	transition: background 0.2s ease;
}
.why__row:last-child {
	border-bottom: none;
}
.why__row:hover {
	background: rgba(245,166,35,0.03);
}

.why__param {
	font-size: 13px;
	font-weight: 500;
	color: var(--cf-text-light);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

/* Cells */
.why__cell {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	text-align: center;
	padding: 0 14px;
}
.why__cell strong {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	font-variant-numeric: tabular-nums;
}
.why__cell span {
	font-size: 12px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--cf-text-light);
}
.why__cell svg {
	margin-bottom: 4px;
}
.why__cell--bad {
	color: var(--cf-red);
}
.why__cell--bad strong {
	color: var(--cf-red);
}
.why__cell--good {
	color: var(--cf-green);
}
.why__cell--good strong {
	color: var(--cf-primary);
}

/* --- Savings highlight --- */
.why__savings {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 32px;
	padding: 32px 40px;
	background: linear-gradient(135deg, var(--cf-primary) 0%, var(--cf-primary-dark) 100%);
	border-radius: var(--cf-radius-lg);
	color: #fff;
	box-shadow: 0 22px 50px -24px rgba(15,38,64,0.5);
}
.why__savings-num {
	font-size: 56px;
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: -0.025em;
	color: var(--cf-accent);
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}
.why__savings-num small {
	font-size: 0.45em;
	font-weight: 700;
}
.why__savings-minus {
	margin-right: 4px;
}
.why__savings-text {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.why__savings-text strong {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	color: #fff;
}
.why__savings-text span {
	font-size: 13px;
	font-weight: 400;
	line-height: 1.55;
	color: rgba(255,255,255,0.7);
	max-width: 50ch;
}
.why__savings-cta {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	color: #fff;
	padding: 14px 28px;
	border: 2px solid #fff;
	border-radius: var(--cf-radius);
	font-family: var(--cf-font);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.why__savings-cta:hover {
	background: #fff;
	color: var(--cf-primary);
	transform: translateY(-2px);
	text-decoration: none;
}

@media (max-width: 768px) {
	.why__compare-head,
	.why__row {
		grid-template-columns: 1fr 1fr;
		padding: 18px 20px;
		gap: 14px;
	}
	.why__compare-head .why__col-label:first-child {
		display: none;
	}
	.why__param {
		grid-column: 1 / -1;
		text-align: center;
		padding-bottom: 8px;
		border-bottom: 1px dashed var(--cf-border-light);
		margin-bottom: 4px;
	}
	.why__cell strong {
		font-size: 16px;
	}
	.why__savings {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 20px;
		padding: 28px 24px;
	}
	.why__savings-num {
		font-size: 48px;
	}
	.why__savings-cta {
		width: 100%;
	}
}
@media (max-width: 540px) {
	.why {
		padding: 56px 0;
	}
	.why__head {
		margin-bottom: 32px;
	}
	.why__savings-num {
		font-size: 40px;
	}
}
/* ===================== /WHY ===================== */

/* ===================== FAQ (ответы на вопросы) ===================== */
.faq {
	padding: 80px 0;
	background: var(--cf-bg-alt);
	font-family: var(--cf-font);
}
.faq__head {
	max-width: 720px;
	margin: 0 auto 48px;
	text-align: center;
}
.faq__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cf-text-light);
	margin-bottom: 16px;
}
.faq__eyebrow-line {
	width: 28px;
	height: 1px;
	background: var(--cf-accent);
}
.faq__title {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--cf-text);
	margin: 0 0 14px;
}
.faq__lead {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--cf-text-muted);
	margin: 0 auto;
	max-width: 600px;
}

/* --- Accordion list --- */
.faq__list {
	max-width: 840px;
	margin: 0 auto 36px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq-item {
	position: relative;
	background: var(--cf-bg);
	border: 1px solid var(--cf-border);
	border-radius: var(--cf-radius);
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
	overflow: hidden;
}
.faq-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: var(--cf-accent);
	transform: scaleY(0);
	transform-origin: center;
	transition: transform 0.35s ease;
}
.faq-item:hover {
	border-color: var(--cf-primary-light);
	box-shadow: 0 12px 28px -18px rgba(15,38,64,0.18);
}
.faq-item[open] {
	border-color: var(--cf-accent);
	box-shadow: 0 16px 36px -22px rgba(15,38,64,0.22);
}
.faq-item[open]::before {
	transform: scaleY(1);
}

/* Summary (вопрос) */
.faq-item summary {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 22px 26px;
	cursor: pointer;
	list-style: none;
	user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }

.faq-item__num {
	flex-shrink: 0;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: var(--cf-accent);
	font-variant-numeric: tabular-nums;
	min-width: 22px;
}
.faq-item__q {
	flex: 1;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--cf-text);
}
.faq-item[open] .faq-item__q {
	color: var(--cf-primary);
}

/* Plus / minus icon */
.faq-item__icon {
	flex-shrink: 0;
	position: relative;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--cf-bg-alt);
	border: 1px solid var(--cf-border);
	transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.faq-item__icon::before,
.faq-item__icon::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 9px;
	height: 1.5px;
	background: var(--cf-primary);
	transform: translate(-50%, -50%);
	transition: transform 0.3s ease, background 0.3s ease;
}
.faq-item__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item:hover .faq-item__icon {
	border-color: var(--cf-accent);
}
.faq-item[open] .faq-item__icon {
	background: var(--cf-accent);
	border-color: var(--cf-accent);
	transform: rotate(180deg);
}
.faq-item[open] .faq-item__icon::before,
.faq-item[open] .faq-item__icon::after {
	background: var(--cf-text);
}
.faq-item[open] .faq-item__icon::after {
	transform: translate(-50%, -50%) rotate(0);
}

/* Answer */
.faq-item__a {
	padding: 4px 26px 24px 66px;
	border-top: 1px dashed var(--cf-border-light);
	margin-top: -1px;
}
.faq-item__a p {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.65;
	color: var(--cf-text-muted);
	margin: 18px 0 0;
	max-width: 64ch;
}

/* --- Footer --- */
.faq__foot {
	max-width: 840px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 24px 32px;
	background: var(--cf-bg);
	border: 1px solid var(--cf-border);
	border-radius: var(--cf-radius-lg);
}
.faq__foot-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.faq__foot-text strong {
	font-size: 16px;
	font-weight: 700;
	color: var(--cf-text);
	line-height: 1.3;
}
.faq__foot-text span {
	font-size: 13px;
	font-weight: 400;
	color: var(--cf-text-muted);
	line-height: 1.5;
}
.faq__foot-cta {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--cf-brand);
	color: #fff;
	padding: 14px 26px;
	border-radius: var(--cf-radius);
	font-family: var(--cf-font);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 6px 18px rgba(0,158,227,0.35);
	transition: background 0.2s ease, transform 0.2s ease;
}
.faq__foot-cta:hover {
	background: var(--cf-brand-dark);
	color: #fff;
	transform: translateY(-2px);
	text-decoration: none;
}

@media (max-width: 768px) {
	.faq {
		padding: 64px 0;
	}
	.faq-item summary {
		padding: 18px 20px;
		gap: 14px;
	}
	.faq-item__q {
		font-size: 16px;
	}
	.faq-item__a {
		padding: 4px 20px 22px 56px;
	}
	.faq__foot {
		flex-direction: column;
		text-align: center;
		padding: 22px 22px;
	}
	.faq__foot-cta {
		width: 100%;
	}
}
@media (max-width: 540px) {
	.faq {
		padding: 56px 0;
	}
	.faq__head {
		margin-bottom: 36px;
	}
	.faq-item__a {
		padding: 4px 18px 20px 50px;
	}
}
/* ===================== /FAQ ===================== */

/* ===================== PRICING ===================== */
.pricing {
	padding: 80px 0;
	background: var(--cf-bg-alt);
	font-family: var(--cf-font);
	position: relative;
	overflow: hidden;
}
.pricing__head {
	max-width: 720px;
	margin: 0 auto 48px;
	text-align: center;
}
.pricing__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cf-text-light);
	margin-bottom: 16px;
}
.pricing__eyebrow-line {
	width: 28px;
	height: 1px;
	background: var(--cf-accent);
}
.pricing__title {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--cf-text);
	margin: 0 0 14px;
}
.pricing__lead {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--cf-text-muted);
	margin: 0 auto;
	max-width: 600px;
}

/* --- Grid --- */
.pricing__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	align-items: stretch;
}

/* --- Card --- */
.pricing-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--cf-bg);
	border: 1px solid var(--cf-border);
	border-radius: var(--cf-radius-lg);
	padding: 32px 30px 30px;
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.pricing-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 22px 48px -24px rgba(15,38,64,0.25);
	border-color: var(--cf-accent);
}

.pricing-card__top {
	border-bottom: 1px solid var(--cf-border-light);
	padding-bottom: 22px;
	margin-bottom: 24px;
}
.pricing-card__tag {
	display: inline-block;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	color: var(--cf-text-light);
	margin-bottom: 12px;
}
.pricing-card__name {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--cf-primary);
	margin: 0 0 10px;
}
.pricing-card__desc {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--cf-text-muted);
	margin: 0;
}

.pricing-card__price {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 24px;
}
.pricing-card__price-from {
	font-size: 14px;
	font-weight: 500;
	color: var(--cf-text-light);
}
.pricing-card__price-value {
	font-size: 28px;
	font-weight: 700;
	color: var(--cf-primary);
	letter-spacing: -0.005em;
}

.pricing-card__features {
	list-style: none;
	padding: 0;
	margin: 0 0 30px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}
.pricing-card__features li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--cf-text);
}
.pricing-card__features svg {
	flex-shrink: 0;
	width: 14px;
	height: 14px;
	color: var(--cf-green);
	margin-top: 4px;
}

.pricing-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 24px;
	background: transparent;
	color: var(--cf-brand);
	border: 1.5px solid var(--cf-brand);
	border-radius: var(--cf-radius);
	font-family: var(--cf-font);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
	cursor: pointer;
}
.pricing-card__btn:hover {
	background: var(--cf-brand);
	color: #fff;
	transform: translateY(-2px);
	text-decoration: none;
}

/* --- Featured (middle) --- */
.pricing-card--featured {
	background: linear-gradient(180deg, var(--cf-primary) 0%, var(--cf-primary-dark) 100%);
	border-color: var(--cf-primary);
	color: #fff;
	box-shadow: 0 24px 60px -28px rgba(15,38,64,0.55);
	transform: translateY(-12px);
}
.pricing-card--featured:hover {
	transform: translateY(-16px);
	border-color: var(--cf-accent);
	box-shadow: 0 30px 70px -28px rgba(15,38,64,0.6);
}
.pricing-card--featured .pricing-card__top {
	border-bottom-color: rgba(255,255,255,0.18);
}
.pricing-card--featured .pricing-card__tag {
	color: var(--cf-accent);
}
.pricing-card--featured .pricing-card__name {
	color: #fff;
}
.pricing-card--featured .pricing-card__desc {
	color: rgba(255,255,255,0.7);
}
.pricing-card--featured .pricing-card__price-from {
	color: rgba(255,255,255,0.55);
}
.pricing-card--featured .pricing-card__price-value {
	color: #fff;
}
.pricing-card--featured .pricing-card__features li {
	color: rgba(255,255,255,0.88);
}
.pricing-card--featured .pricing-card__features svg {
	color: var(--cf-accent);
}
.pricing-card--featured .pricing-card__btn {
	background: var(--cf-accent);
	color: var(--cf-text);
	border-color: var(--cf-accent);
}
.pricing-card--featured .pricing-card__btn:hover {
	background: var(--cf-accent-light);
	border-color: var(--cf-accent-light);
	color: var(--cf-text);
}

.pricing-card__ribbon {
	position: absolute;
	top: 16px;
	right: 16px;
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	color: var(--cf-text);
	background: var(--cf-accent);
	padding: 6px 12px;
	border-radius: 100px;
	box-shadow: 0 4px 14px rgba(245,166,35,0.45);
}

/* --- Footer note --- */
.pricing__foot {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	max-width: 760px;
	margin: 40px auto 0;
	padding: 18px 24px;
	background: var(--cf-bg);
	border: 1px solid var(--cf-border);
	border-radius: var(--cf-radius);
	font-size: 13px;
	line-height: 1.6;
	color: var(--cf-text-muted);
}
.pricing__foot svg {
	flex-shrink: 0;
	color: var(--cf-accent);
	margin-top: 1px;
}

@media (max-width: 991px) {
	.pricing__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}
	.pricing-card--featured {
		transform: none;
		order: -1;
	}
	.pricing-card--featured:hover {
		transform: translateY(-4px);
	}
}
@media (max-width: 540px) {
	.pricing {
		padding: 56px 0;
	}
	.pricing__head {
		margin-bottom: 32px;
	}
	.pricing-card {
		padding: 26px 24px 24px;
	}
	.pricing-card__price-value {
		font-size: 26px;
	}
}
/* ===================== /PRICING ===================== */

/* ===================== ACTUALS (cars with segment tabs) ===================== */
.actuals {
	padding: 80px 0;
	background: var(--cf-bg-alt);
	font-family: var(--cf-font);
}
.actuals__head {
	max-width: 720px;
	margin: 0 auto 40px;
	text-align: center;
}
.actuals__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cf-text-light);
	margin-bottom: 16px;
}
.actuals__eyebrow-line {
	width: 28px;
	height: 1px;
	background: var(--cf-accent);
}
.actuals__title {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--cf-text);
	margin: 0 0 14px;
}
.actuals__lead {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--cf-text-muted);
	margin: 0 auto;
	max-width: 600px;
}

/* --- Pure-CSS tabs --- */
.actuals__tabs-wrap {
	position: relative;
}
.actuals__radio {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.actuals__tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-bottom: 36px;
	padding: 6px;
	background: var(--cf-bg);
	border: 1px solid var(--cf-border);
	border-radius: 100px;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}
.actuals__tab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 22px;
	font-family: var(--cf-font);
	font-size: 14px;
	font-weight: 600;
	color: var(--cf-text-muted);
	border-radius: 100px;
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease;
	user-select: none;
}
.actuals__tab:hover {
	color: var(--cf-primary);
}

/* Active tab via :checked sibling */
#actuals-all:checked       ~ .actuals__tabs label[for="actuals-all"],
#actuals-premium:checked   ~ .actuals__tabs label[for="actuals-premium"],
#actuals-middle:checked    ~ .actuals__tabs label[for="actuals-middle"],
#actuals-budget:checked    ~ .actuals__tabs label[for="actuals-budget"],
#actuals-electric:checked  ~ .actuals__tabs label[for="actuals-electric"] {
	background: var(--cf-primary);
	color: #fff;
	box-shadow: 0 4px 14px rgba(26,58,92,0.25);
}

/* --- Grid filter logic --- */
.actuals__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

/* hidden by default when filter active */
#actuals-premium:checked  ~ .actuals__grid .actual-card:not([data-segment="premium"]),
#actuals-middle:checked   ~ .actuals__grid .actual-card:not([data-segment="middle"]),
#actuals-budget:checked   ~ .actuals__grid .actual-card:not([data-segment="budget"]),
#actuals-electric:checked ~ .actuals__grid .actual-card:not([data-segment="electric"]) {
	display: none;
}

/* --- Card --- */
.actual-card {
	background: var(--cf-bg);
	border: 1px solid var(--cf-border-light);
	border-radius: var(--cf-radius-lg);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.actual-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px -20px rgba(15,38,64,0.25);
	border-color: var(--cf-accent);
}
.actual-card__link {
	display: block;
	color: inherit;
	text-decoration: none;
}
.actual-card__link:hover {
	color: inherit;
	text-decoration: none;
}

.actual-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--cf-bg-alt);
}
.actual-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}
.actual-card:hover .actual-card__media img {
	transform: scale(1.05);
}
.actual-card__segment {
	position: absolute;
	top: 14px;
	left: 14px;
	display: inline-block;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.05em;
	padding: 6px 12px;
	border-radius: 100px;
	background: rgba(26,58,92,0.92);
	color: #fff;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}
.actual-card__segment--premium  { background: rgba(26,58,92,0.92); }
.actual-card__segment--middle   { background: rgba(42,90,140,0.92); }
.actual-card__segment--budget   { background: rgba(76,175,80,0.92); }
.actual-card__segment--electric { background: rgba(245,166,35,0.95); color: var(--cf-text); }

.actual-card__body {
	padding: 20px 22px 22px;
}
.actual-card__title {
	font-size: 19px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--cf-text);
	margin: 0 0 14px;
}
.actual-card__specs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px 16px;
	margin: 0 0 18px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--cf-border-light);
}
.actual-card__specs div {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.actual-card__specs dt {
	font-size: 12px;
	font-weight: 500;
	color: var(--cf-text-light);
	letter-spacing: 0.04em;
}
.actual-card__specs dd {
	font-size: 14px;
	font-weight: 500;
	color: var(--cf-text);
	margin: 0;
}
.actual-card__foot {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
}
.actual-card__price {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.actual-card__price-value {
	font-size: 22px;
	font-weight: 700;
	color: var(--cf-primary);
	line-height: 1;
}
.actual-card__price small {
	font-size: 12px;
	font-weight: 400;
	color: var(--cf-text-light);
}
.actual-card__cta {
	font-size: 13px;
	font-weight: 600;
	color: var(--cf-primary);
	transition: color 0.2s ease, transform 0.2s ease;
}
.actual-card:hover .actual-card__cta {
	color: var(--cf-accent-dark);
	transform: translateX(3px);
}

.actuals__empty {
	grid-column: 1 / -1;
	text-align: center;
	color: var(--cf-text-muted);
	font-size: 15px;
	padding: 40px 0;
}

.actuals__foot {
	text-align: center;
	margin-top: 36px;
}
.actuals__foot-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 30px;
	background: var(--cf-primary);
	color: #fff;
	border-radius: var(--cf-radius);
	font-family: var(--cf-font);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 6px 20px rgba(26,58,92,0.25);
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.actuals__foot-link svg {
	transition: transform 0.3s ease;
}
.actuals__foot-link:hover {
	background: var(--cf-primary-light);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(26,58,92,0.35);
	text-decoration: none;
}
.actuals__foot-link:hover svg {
	transform: translateX(4px);
}

@media (max-width: 991px) {
	.actuals__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 640px) {
	.actuals {
		padding: 56px 0;
	}
	.actuals__tabs {
		gap: 4px;
		padding: 4px;
	}
	.actuals__tab {
		padding: 9px 16px;
		font-size: 13px;
	}
	.actuals__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}
/* ===================== /ACTUALS ===================== */

/* ===================== DESTINATIONS (editorial expanding panels) ===================== */
.destinations {
	padding: 96px 0 88px;
	background: var(--cf-bg);
	font-family: var(--cf-font);
	position: relative;
	overflow: hidden;
}
.destinations::before {
	content: '';
	position: absolute;
	top: 0; right: 0;
	width: 50vw;
	height: 100%;
	background: radial-gradient(60% 80% at 100% 30%, rgba(245,166,35,0.06), transparent 70%);
	pointer-events: none;
}

/* --- Editorial header (по design-map: H2 24-28/700/lh1.3/center) --- */
.destinations__head {
	max-width: 720px;
	margin: 0 auto 48px;
	text-align: center;
	position: relative;
}
.destinations__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cf-text-light);
	margin-bottom: 16px;
}
.destinations__eyebrow-line {
	width: 28px;
	height: 1px;
	background: var(--cf-accent);
}
.destinations__title {
	font-family: var(--cf-font);
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--cf-text);
	margin: 0 0 14px;
}
.destinations__lead {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--cf-text-muted);
	margin: 0 auto;
	max-width: 600px;
}

/* --- Expanding panels --- */
.dest-panels {
	display: flex;
	gap: 6px;
	height: 440px;
	margin-bottom: 32px;
	border-radius: 2px;
	overflow: hidden;
}
.dest-panel {
	position: relative;
	flex: 1 1 0;
	min-width: 0;
	overflow: hidden;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	isolation: isolate;
	transition: flex-grow 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.dest-panel:first-child { border-radius: 2px 0 0 2px; }
.dest-panel:last-child  { border-radius: 0 2px 2px 0; }
.dest-panel:hover,
.dest-panel:focus-visible {
	flex-grow: 5;
	color: #fff;
	text-decoration: none;
	outline: none;
}

/* Backgrounds — единая брендовая палитра, страновой акцент сверху */
.dest-panel__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(180deg, var(--cf-primary) 0%, var(--cf-primary-dark) 60%, var(--cf-bg-dark) 100%);
	transition: transform 1s ease, filter 0.6s ease;
}
.dest-panel__bg::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 4px;
	background: var(--cf-accent);
	opacity: 0;
	transition: opacity 0.5s ease;
}
.dest-panel:hover .dest-panel__bg {
	transform: scale(1.08);
	filter: brightness(1.05);
}
.dest-panel:hover .dest-panel__bg::before {
	opacity: 1;
}

/* Лёгкий тонирующий слой страны (едва заметно) */
.dest-panel--korea .dest-panel__bg { background-image: linear-gradient(180deg, rgba(200,16,46,0.18), transparent 35%), linear-gradient(180deg, var(--cf-primary) 0%, var(--cf-primary-dark) 60%, var(--cf-bg-dark) 100%); }
.dest-panel--china .dest-panel__bg { background-image: linear-gradient(180deg, rgba(222,41,16,0.20), transparent 35%), linear-gradient(180deg, var(--cf-primary) 0%, var(--cf-primary-dark) 60%, var(--cf-bg-dark) 100%); }
.dest-panel--japan .dest-panel__bg { background-image: linear-gradient(180deg, rgba(188,0,45,0.18), transparent 35%), linear-gradient(180deg, var(--cf-primary) 0%, var(--cf-primary-dark) 60%, var(--cf-bg-dark) 100%); }
.dest-panel--usa   .dest-panel__bg { background-image: linear-gradient(180deg, rgba(0,40,104,0.32), transparent 35%), linear-gradient(180deg, var(--cf-primary) 0%, var(--cf-primary-dark) 60%, var(--cf-bg-dark) 100%); }
.dest-panel--uae   .dest-panel__bg { background-image: linear-gradient(180deg, rgba(0,115,47,0.20), transparent 35%), linear-gradient(180deg, var(--cf-primary) 0%, var(--cf-primary-dark) 60%, var(--cf-bg-dark) 100%); }
.dest-panel--europe .dest-panel__bg { background-image: linear-gradient(180deg, rgba(0,51,153,0.30), transparent 35%), linear-gradient(180deg, var(--cf-primary) 0%, var(--cf-primary-dark) 60%, var(--cf-bg-dark) 100%); }

/* «Скоро» состояние: не-clickable панель */
.dest-panel--soon { cursor: default; pointer-events: auto; }
.dest-panel--soon:hover { transform: none; }
.dest-panel--soon .dest-panel__overlay { opacity: 0.92; }
.dest-panel--soon::after {
	content: ''; position: absolute; inset: 0;
	background: repeating-linear-gradient(45deg, transparent 0 18px, rgba(255,255,255,0.03) 18px 20px);
	pointer-events: none; z-index: 3;
}
.dest-panel__badge--soon {
	background: rgba(245,166,35,0.22) !important;
	color: var(--cf-accent, #F5A623) !important;
	border: 1px solid rgba(245,166,35,0.5);
}
.dest-panel__cta--disabled {
	opacity: 0.65;
	cursor: default;
	color: rgba(255,255,255,0.7) !important;
}
.dest-panel__cta--disabled:hover { transform: none; }

.dest-panel__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, transparent 0%, rgba(11,27,43,0.25) 50%, rgba(11,27,43,0.85) 100%);
}

/* Subtle noise via SVG data-uri */
.dest-panel__noise {
	position: absolute;
	inset: 0;
	z-index: 1;
	opacity: 0.05;
	mix-blend-mode: overlay;
	pointer-events: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* --- Corner: number + ISO (caption: 12px / 500) --- */
.dest-panel__corner {
	position: absolute;
	top: 22px;
	left: 22px;
	right: 22px;
	z-index: 4;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 8px;
}
.dest-panel__num {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.12em;
	color: rgba(255,255,255,0.55);
	font-variant-numeric: tabular-nums;
	transition: color 0.4s ease;
}
.dest-panel__num::before {
	content: '— ';
	color: var(--cf-accent);
	font-weight: 700;
}
.dest-panel__iso {
	display: inline-block;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.10em;
	color: rgba(255,255,255,0.55);
	border: 1px solid rgba(255,255,255,0.2);
	padding: 4px 9px;
	border-radius: 2px;
	background: rgba(0,0,0,0.18);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	transition: color 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}
.dest-panel:hover .dest-panel__num,
.dest-panel:focus-visible .dest-panel__num {
	color: var(--cf-accent);
}
.dest-panel:hover .dest-panel__iso,
.dest-panel:focus-visible .dest-panel__iso {
	color: var(--cf-accent);
	border-color: rgba(245,166,35,0.55);
	background: rgba(245,166,35,0.10);
}

/* --- Collapsed name (vertical) --- */
.dest-panel__collapsed {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
	padding: 22px 10px 30px;
	transition: opacity 0.45s ease, transform 0.6s ease;
}
.dest-panel__name {
	font-family: var(--cf-font);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	color: #fff;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	white-space: nowrap;
	text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.dest-panel__rule {
	width: 1px;
	height: 36px;
	background: var(--cf-accent);
	opacity: 0.7;
}
.dest-panel:hover .dest-panel__collapsed,
.dest-panel:focus-visible .dest-panel__collapsed {
	opacity: 0;
	transform: translateY(8px);
}

/* --- Expanded view --- */
.dest-panel__expanded {
	position: absolute;
	inset: 0;
	z-index: 3;
	padding: 70px 30px 28px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: flex-end;
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.45s ease 0.2s, transform 0.55s ease 0.15s;
	pointer-events: none;
}
.dest-panel:hover .dest-panel__expanded,
.dest-panel:focus-visible .dest-panel__expanded {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
.dest-panel__flag {
	display: inline-block;
	align-self: flex-start;
	font-size: 36px;
	line-height: 1;
	margin-bottom: 12px;
	filter: drop-shadow(0 6px 14px rgba(0,0,0,0.45));
	transform: rotate(-3deg);
	transition: transform 0.5s ease 0.25s;
}
.dest-panel:hover .dest-panel__flag,
.dest-panel:focus-visible .dest-panel__flag {
	transform: rotate(0) scale(1.04);
}
.dest-panel__badge {
	align-self: flex-start;
	font-family: var(--cf-font);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--cf-accent);
	padding: 0 0 8px 0;
	border-bottom: 1px solid rgba(245,166,35,0.45);
}
.dest-panel__heading {
	font-family: var(--cf-font);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	color: #fff;
	margin: 6px 0 0;
}
.dest-panel__lead {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255,255,255,0.72);
	margin: 0;
	max-width: 44ch;
	font-weight: 400;
}
.dest-panel__data {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 8px 0 0;
	padding-top: 14px;
	border-top: 1px solid rgba(255,255,255,0.14);
}
.dest-panel__data div {
	display: grid;
	grid-template-columns: 80px 1fr;
	align-items: baseline;
	gap: 16px;
}
.dest-panel__data dt {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.5);
	margin: 0;
}
.dest-panel__data dd {
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	margin: 0;
}
.dest-panel__save {
	color: var(--cf-accent) !important;
	font-weight: 700 !important;
}

.dest-panel__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 12px;
	padding: 14px 0;
	border-top: 1px solid rgba(255,255,255,0.18);
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	transition: color 0.25s ease, border-color 0.25s ease;
	width: 100%;
	justify-content: space-between;
}
.dest-panel__cta svg {
	color: var(--cf-accent);
	transition: transform 0.4s ease;
}
.dest-panel:hover .dest-panel__cta {
	color: var(--cf-accent);
	border-color: var(--cf-accent);
}
.dest-panel:hover .dest-panel__cta svg {
	transform: translateX(8px);
}

/* --- Footer line --- */
.destinations__foot {
	display: flex;
	align-items: center;
	gap: 18px;
	padding-top: 4px;
}
.destinations__foot-line {
	flex: 1;
	height: 1px;
	background: var(--cf-border);
}
.destinations__foot-text {
	font-size: 12px;
	font-weight: 500;
	color: var(--cf-text-light);
}
.destinations__foot-text a {
	color: var(--cf-primary);
	text-decoration: none;
	margin-left: 8px;
	border-bottom: 1px solid var(--cf-accent);
	padding-bottom: 1px;
	transition: color 0.2s ease;
}
.destinations__foot-text a:hover {
	color: var(--cf-accent-dark);
}

/* --- Tablet/Mobile --- */
@media (max-width: 991px) {
	.destinations {
		padding: 72px 0 64px;
	}
	.destinations__head {
		margin-bottom: 36px;
	}
	.destinations__title {
		font-size: 26px;
	}
	.dest-panels {
		flex-direction: column;
		height: auto;
		gap: 6px;
	}
	.dest-panel {
		flex: 0 0 auto;
		height: 86px;
		transition: height 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
	}
	.dest-panel:first-child { border-radius: 2px 2px 0 0; }
	.dest-panel:last-child  { border-radius: 0 0 2px 2px; }
	.dest-panel:hover,
	.dest-panel:focus-visible {
		flex-grow: 0;
		height: 380px;
	}
	.dest-panel__corner {
		top: 18px;
		left: 22px;
		right: 22px;
	}
	.dest-panel__collapsed {
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		gap: 18px;
		padding: 0 22px 0 22px;
	}
	.dest-panel__name {
		writing-mode: horizontal-tb;
		transform: none;
		font-size: 18px;
	}
	.dest-panel__rule {
		width: 28px;
		height: 1px;
	}
	.dest-panel__expanded {
		padding: 60px 24px 24px;
	}
}
@media (max-width: 540px) {
	.destinations {
		padding: 56px 0 48px;
	}
	.destinations__title {
		font-size: 24px;
	}
	.dest-panel:hover,
	.dest-panel:focus-visible {
		height: 360px;
	}
	.dest-panel__heading {
		font-size: 19px;
	}
	.dest-panel__data div {
		grid-template-columns: 70px 1fr;
		gap: 12px;
	}
}
/* ===================== /DESTINATIONS ===================== */

/* ===================== SALON TRICKS ===================== */
.salon-tricks {
	padding: 80px 0;
	background: linear-gradient(180deg, var(--cf-bg-alt) 0%, var(--cf-bg) 100%);
	font-family: var(--cf-font);
}
.salon-tricks .section__title {
	text-align: center;
	margin-bottom: 48px;
}
.salon-tricks .section__title h2 {
	font-size: clamp(24px, 3.4vw, 36px);
	font-weight: 700;
	color: var(--cf-primary);
	margin: 0 0 14px;
	line-height: 1.2;
}
.salon-tricks__lead {
	font-size: clamp(14px, 1.4vw, 16px);
	color: var(--cf-text-muted);
	max-width: 680px;
	margin: 0 auto;
	line-height: 1.6;
}
.salon-tricks__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}
.trick-card {
	position: relative;
	background: var(--cf-bg);
	border: 1px solid var(--cf-border-light);
	border-radius: var(--cf-radius-lg);
	padding: 28px 24px 24px;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	overflow: hidden;
}
.trick-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--cf-red) 0%, var(--cf-accent) 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}
.trick-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(26,58,92,0.10);
	border-color: transparent;
}
.trick-card:hover::before {
	transform: scaleX(1);
}
.trick-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: rgba(226,75,74,0.10);
	color: var(--cf-red);
	margin-bottom: 18px;
}
.trick-card h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--cf-text);
	margin: 0 0 10px;
	line-height: 1.3;
}
.trick-card p {
	font-size: 14px;
	color: var(--cf-text-muted);
	line-height: 1.6;
	margin: 0 0 16px;
}
.trick-card__loss {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	color: var(--cf-red);
	background: rgba(226,75,74,0.08);
	padding: 6px 12px;
	border-radius: 100px;
	letter-spacing: 0.2px;
}

.salon-tricks__cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	background: linear-gradient(135deg, var(--cf-primary) 0%, var(--cf-primary-light) 100%);
	border-radius: var(--cf-radius-lg);
	padding: 32px 40px;
	color: #fff;
	box-shadow: 0 12px 40px rgba(26,58,92,0.25);
}
.salon-tricks__cta-text {
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}
.salon-tricks__cta-text strong {
	font-size: clamp(18px, 2vw, 22px);
	font-weight: 700;
	line-height: 1.3;
	color: #fff;
}
.salon-tricks__cta-text span {
	font-size: 14px;
	color: rgba(255,255,255,0.78);
	line-height: 1.55;
}
.salon-tricks__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--cf-brand);
	color: #fff;
	padding: 16px 32px;
	border-radius: var(--cf-radius);
	font-family: var(--cf-font);
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: 0 4px 18px rgba(0,158,227,0.4);
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.3s ease;
	flex-shrink: 0;
}
.salon-tricks__btn:hover {
	transform: translateY(-2px);
	background: var(--cf-brand-dark);
	box-shadow: 0 8px 28px rgba(0,158,227,0.55);
	color: #fff;
	text-decoration: none;
}
@media (max-width: 991px) {
	.salon-tricks__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 640px) {
	.salon-tricks {
		padding: 56px 0;
	}
	.salon-tricks .section__title {
		margin-bottom: 32px;
	}
	.salon-tricks__grid {
		grid-template-columns: 1fr;
		gap: 14px;
		margin-bottom: 28px;
	}
	.trick-card {
		padding: 22px 20px 20px;
	}
	.salon-tricks__cta {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
		padding: 26px 22px;
		border-radius: var(--cf-radius-lg);
	}
	.salon-tricks__btn {
		width: 100%;
	}
}
/* ===================== /SALON TRICKS ===================== */

/* ===================== SELF-PURCHASE RISKS ===================== */
.self-risks {
	padding: 80px 0;
	background: var(--cf-bg);
	font-family: var(--cf-font);
}
.self-risks__head {
	max-width: 720px;
	margin: 0 auto 48px;
	text-align: center;
}
.self-risks__eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--cf-red);
	background: rgba(226,75,74,0.08);
	padding: 7px 14px;
	border-radius: 100px;
	margin-bottom: 16px;
}
.self-risks__head h2 {
	font-size: clamp(24px, 3.4vw, 36px);
	font-weight: 700;
	color: var(--cf-primary);
	line-height: 1.2;
	margin: 0 0 14px;
}
.self-risks__head p {
	font-size: clamp(14px, 1.4vw, 16px);
	line-height: 1.65;
	color: var(--cf-text-muted);
	margin: 0;
}

.self-risks__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px 28px;
	margin-bottom: 44px;
}
.risk-row {
	display: flex;
	gap: 18px;
	padding: 22px 24px;
	background: var(--cf-bg);
	border: 1px solid var(--cf-border-light);
	border-radius: var(--cf-radius);
	transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.risk-row:hover {
	border-color: rgba(226,75,74,0.35);
	background: var(--cf-bg-alt);
	transform: translateX(3px);
}
.risk-row__mark {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: rgba(226,75,74,0.1);
	color: var(--cf-red);
}
.risk-row__body h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--cf-text);
	margin: 2px 0 8px;
	line-height: 1.3;
}
.risk-row__body p {
	font-size: 14px;
	line-height: 1.6;
	color: var(--cf-text-muted);
	margin: 0;
}

.self-risks__bottom {
	display: flex;
	align-items: center;
	gap: 22px;
	padding: 26px 32px;
	background: linear-gradient(135deg, #FFF8EF 0%, #FFEFD9 100%);
	border: 1px solid rgba(245,166,35,0.35);
	border-radius: var(--cf-radius-lg);
}
.self-risks__bottom-icon {
	flex-shrink: 0;
	color: var(--cf-accent-dark);
}
.self-risks__bottom-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.self-risks__bottom-text strong {
	font-size: clamp(15px, 1.6vw, 18px);
	font-weight: 700;
	color: var(--cf-text);
	line-height: 1.35;
}
.self-risks__bottom-text span {
	font-size: 13.5px;
	color: var(--cf-text-muted);
	line-height: 1.55;
}
.self-risks__btn {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--cf-brand);
	color: #fff;
	padding: 14px 28px;
	border-radius: var(--cf-radius);
	font-family: var(--cf-font);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: 0 4px 14px rgba(0,158,227,0.4);
	transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.2s ease;
}
.self-risks__btn:hover {
	transform: translateY(-2px);
	background: var(--cf-brand-dark);
	box-shadow: 0 8px 24px rgba(0,158,227,0.55);
	color: #fff;
	text-decoration: none;
}

@media (max-width: 768px) {
	.self-risks__grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}
	.self-risks__bottom {
		flex-direction: column;
		text-align: center;
		padding: 24px 22px;
	}
	.self-risks__btn {
		width: 100%;
	}
}
@media (max-width: 640px) {
	.self-risks {
		padding: 56px 0;
	}
	.self-risks__head {
		margin-bottom: 32px;
	}
	.risk-row {
		padding: 18px 18px;
		gap: 14px;
	}
}
/* ===================== /SELF-PURCHASE RISKS ===================== */

/* ===================== WHAT WE CHECK (checklist) ===================== */
.checklist {
	padding: 80px 0;
	background: var(--cf-bg-alt);
	font-family: var(--cf-font);
}
.checklist__head {
	max-width: 720px;
	margin: 0 auto 44px;
	text-align: center;
}
.checklist__eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--cf-green);
	background: rgba(76,175,80,0.1);
	padding: 7px 14px;
	border-radius: 100px;
	margin-bottom: 16px;
}
.checklist__head h2 {
	font-size: clamp(24px, 3.4vw, 36px);
	font-weight: 700;
	color: var(--cf-primary);
	line-height: 1.2;
	margin: 0 0 14px;
}
.checklist__head p {
	font-size: clamp(14px, 1.4vw, 16px);
	line-height: 1.65;
	color: var(--cf-text-muted);
	margin: 0;
}

.checklist__card {
	background: var(--cf-bg);
	border: 1px solid var(--cf-border);
	border-radius: var(--cf-radius-lg);
	padding: 32px 36px 28px;
	box-shadow: 0 20px 60px -30px rgba(15,38,64,0.2);
}
.checklist__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 14px;
}
.checklist__bar-text strong {
	display: block;
	font-size: 16px;
	font-weight: 700;
	color: var(--cf-text);
	line-height: 1.3;
}
.checklist__bar-text span {
	display: block;
	font-size: 13px;
	color: var(--cf-text-muted);
	margin-top: 2px;
}
.checklist__bar-counter {
	display: inline-flex;
	align-items: baseline;
	gap: 2px;
	font-variant-numeric: tabular-nums;
	font-weight: 800;
	line-height: 1;
}
.checklist__bar-num {
	font-size: 32px;
	color: var(--cf-green);
}
.checklist__bar-divider {
	font-size: 22px;
	color: var(--cf-text-light);
	margin: 0 2px;
}
.checklist__bar-total {
	font-size: 22px;
	color: var(--cf-text-muted);
}
.checklist__progress {
	width: 100%;
	height: 6px;
	background: var(--cf-border-light);
	border-radius: 100px;
	overflow: hidden;
	margin-bottom: 36px;
}
.checklist__progress-fill {
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, var(--cf-green) 0%, var(--cf-green-light) 100%);
	border-radius: 100px;
	box-shadow: 0 0 12px rgba(76,175,80,0.5);
	animation: checklistFill 1.6s ease-out;
	transform-origin: left;
}
@keyframes checklistFill {
	from { transform: scaleX(0); }
	to { transform: scaleX(1); }
}

.checklist__groups {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px 40px;
}
.checklist__group-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 1px dashed var(--cf-border);
}
.checklist__group-num {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1px;
	color: var(--cf-accent);
	background: rgba(245,166,35,0.1);
	padding: 5px 10px;
	border-radius: 6px;
	font-variant-numeric: tabular-nums;
}
.checklist__group-head h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--cf-primary);
	margin: 0;
	line-height: 1.3;
}
.checklist__items {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.checklist__items li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}
.checklist__check {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--cf-green);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(76,175,80,0.35);
	margin-top: 1px;
}
.checklist__items li > div {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.checklist__items strong {
	font-size: 14px;
	font-weight: 700;
	color: var(--cf-text);
	line-height: 1.35;
}
.checklist__items span {
	font-size: 13px;
	color: var(--cf-text-muted);
	line-height: 1.5;
}

@media (max-width: 768px) {
	.checklist__card {
		padding: 26px 22px 24px;
	}
	.checklist__groups {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}
@media (max-width: 640px) {
	.checklist {
		padding: 56px 0;
	}
	.checklist__head {
		margin-bottom: 32px;
	}
	.checklist__bar {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	.checklist__bar-num {
		font-size: 28px;
	}
}
/* ===================== /WHAT WE CHECK ===================== */

.bannerOther {
	height: 611px;
	margin-bottom: 0;
}
.bannerOther .banner__elem,
.bannerOther .row,
.bannerOther .container {
	height: 100%;
}
.bannerOther .banner__btns:before {
	display: none;
}

@media (max-width: 767px) {
	.bannerOther:before {
		height: 1082px;
		background-position: top center;
		top: -71px;
		bottom: auto;
	}
	.bannerOther .section__title {
		height: 136px
	}
	.bannerOther + .footer {
		padding-top: 30px;
	}
}

.form__policy input {
	vertical-align: middle;
	margin-right: 3px;
	margin-top: -5px;
}
.modal__form .btn {
	width: 100%
}

div.contacts__block__icon {
	align-items: flex-start;
}
div.contacts__block__icon img {
	margin-top: 4px;
}

/*  26.09.25 */
.banner:before {
	background-image: url(/wp-content/uploads/2025/09/hero__bg-scaled.webp);
}
.banner__item {
	position: relative;
}
.banner__item:after {
	content: '';
	position: absolute;
	width: calc((100vw - 1200px) / 2 + 447px);
	height: 593px;
	left: 745px;
	bottom: -84px;
	background-image: url(/wp-content/uploads/2025/09/hero__bg-anim-scaled.webp);
	background-position: left center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	z-index: -1;
}
.bannerOther .banner__item:after {
	bottom: - 191px;
}
@media (max-width: 1399px) {
	.banner__item:after {
		width: calc((100vw - 970px) / 2 + 314px);
		left: 656px;
	}
	.bannerOther .banner__item:after {
		width: calc((100vw - 970px) / 2 + 550px);
		left: 420px;
	}
}

@media (max-width: 991px) {
	.banner__item:after {
		width: calc((100vw - 710px) / 2 + 200px);
		left: 510px;
	}
	.bannerOther .banner__item:after {
		width: calc((100vw - 710px) / 2 + 310px);
		left: 400px;
	}
}

@media (max-width: 767px) {
	.banner__item:after {
		display: none;
	}
	.banner__car img {
		width: auto;
		height: 370px;
		left: 50%;
		transform: translateX(-50%);
		top: -45px;
	}
}

html {
	scroll-padding-top: 150px;
}

.swiper-slide {
	display: flex!important;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	border-radius: 25px;
}

.video .swiper-slide {
	min-width: 300px;
	max-height: 430px;
}

.video .swiper-button-prev,
.video .swiper-button-next {
	display: flex;
}
.swiper-button-disabled {
	display: none!important;
}


.menu__social,
.menu__callback {
	display: none;
}

.header__wrapper {
	padding: 24px 0;
}

/* Legacy .header.active / .nav__menu ul width:75% / .menu__social / .menu__callback
   overrides removed — all replaced by plugin drawer in cf-korea/assets/header-mobile.css
   which handles mobile nav sitewide. */
.header.open{
	height: 100vh;
}

/* Альтернативный вариант с более точным соответствием */
#CalltouchWidgetFrame {
    z-index: 105!important;
}

.fancybox__content video {
    width: 95%!important;
    max-height: 100vh;
}

/* ===================== BLOG ===================== */

/* --- Hero --- */
.blog-hero {
	background: var(--cf-primary-dark, #0F2640);
	padding: 56px 0 48px;
	text-align: center;
}
.blog-hero__inner {
	max-width: 680px;
	margin: 0 auto;
}
.blog-hero__label {
	display: inline-block;
	font-size: var(--cf-text-12, 12px);
	font-weight: var(--cf-w-semi, 600);
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--cf-cyan, #009EE3);
	margin-bottom: 16px;
}
.blog-hero__title {
	font-family: var(--cf-font, 'Manrope', sans-serif);
	font-size: var(--cf-text-32, 32px);
	font-weight: var(--cf-w-bold, 700);
	color: #fff;
	line-height: 1.25;
	margin: 0 0 14px;
}
.blog-hero__desc {
	font-size: var(--cf-text-16, 16px);
	color: rgba(255,255,255,0.6);
	line-height: 1.6;
	margin: 0;
}

/* --- Breadcrumbs --- */
.blog-breadcrumbs {
	padding: 16px 0;
}
.blog-breadcrumbs .breadcrumb {
	font-size: var(--cf-text-13, 13px);
	color: var(--cf-text-light, #8E96A0);
}
.blog-breadcrumbs .breadcrumb a {
	color: var(--cf-text-muted, #5A6472);
	text-decoration: none;
}
.blog-breadcrumbs .breadcrumb a:hover {
	color: var(--cf-cyan, #009EE3);
}

/* --- Category filters --- */
.blog-cats {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0 0 28px;
}
.blog-cats__item {
	display: inline-block;
	padding: 8px 18px;
	font-size: var(--cf-text-14, 14px);
	font-weight: var(--cf-w-medium, 500);
	color: var(--cf-text-muted, #5A6472);
	background: var(--cf-bg-alt, #F7F8FA);
	border: 1px solid var(--cf-border, #E2E6EB);
	border-radius: 100px;
	text-decoration: none;
	transition: all 0.2s;
}
.blog-cats__item:hover {
	border-color: var(--cf-primary, #1A3A5C);
	color: var(--cf-primary, #1A3A5C);
}
.blog-cats__item.is-active {
	background: var(--cf-primary, #1A3A5C);
	border-color: var(--cf-primary, #1A3A5C);
	color: #fff;
}

/* --- Blog grid --- */
.blog-grid {
	padding: 0 0 64px;
}
.blog-grid__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.blog-grid__empty {
	text-align: center;
	padding: 64px 0;
	color: var(--cf-text-muted, #5A6472);
	font-size: var(--cf-text-16, 16px);
}

/* --- Blog card --- */
.blog-card {
	border-radius: var(--cf-radius, 12px);
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--cf-border, #E2E6EB);
	transition: transform 0.2s var(--cf-ease, ease), box-shadow 0.2s;
}
.blog-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--cf-shadow-lg, 0 20px 48px rgba(15,38,64,0.10));
}
.blog-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
}
.blog-card__img {
	position: relative;
	aspect-ratio: 16/9;
	overflow: hidden;
	background: var(--cf-bg-alt, #F7F8FA);
}
.blog-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s var(--cf-ease, ease);
}
.blog-card:hover .blog-card__img img {
	transform: scale(1.05);
}
.blog-card__no-img {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: var(--cf-border, #E2E6EB);
}
.blog-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 20px;
}
.blog-card__cat {
	display: inline-block;
	width: fit-content;
	font-size: var(--cf-text-11, 11px);
	font-weight: var(--cf-w-semi, 600);
	text-transform: uppercase;
	letter-spacing: 1.2px;
	color: var(--cf-cyan, #009EE3);
	margin-bottom: 10px;
}
.blog-card__title {
	font-size: var(--cf-text-18, 18px);
	font-weight: var(--cf-w-bold, 700);
	color: var(--cf-text, #1A1D22);
	line-height: 1.35;
	margin: 0 0 10px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.blog-card__excerpt {
	font-size: var(--cf-text-14, 14px);
	color: var(--cf-text-muted, #5A6472);
	line-height: 1.55;
	margin: 0;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.blog-card__footer {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid var(--cf-border-light, #F0F2F5);
	font-size: var(--cf-text-12, 12px);
	color: var(--cf-text-light, #8E96A0);
}

/* --- Article hero --- */
.article-hero {
	position: relative;
	padding: 80px 0 56px;
	overflow: hidden;
	background: var(--cf-primary-dark, #0F2640);
}
.article-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	filter: blur(2px);
	transform: scale(1.05);
}
.article-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15,38,64,0.85) 0%, rgba(11,27,43,0.95) 100%);
}
.article-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 720px;
}
.article-hero__cat {
	display: inline-block;
	font-size: var(--cf-text-12, 12px);
	font-weight: var(--cf-w-semi, 600);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--cf-cyan, #009EE3);
	text-decoration: none;
	margin-bottom: 16px;
	transition: opacity 0.2s;
}
.article-hero__cat:hover {
	opacity: 0.8;
}
.article-hero__title {
	font-family: var(--cf-font, 'Manrope', sans-serif);
	font-size: var(--cf-text-40, 40px);
	font-weight: var(--cf-w-bold, 700);
	color: #fff;
	line-height: 1.2;
	margin: 0 0 20px;
}
.article-hero__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: var(--cf-text-14, 14px);
	color: rgba(255,255,255,0.5);
}
.article-hero__sep {
	font-size: 18px;
}

/* --- Article layout --- */
.article-body {
	padding: 40px 0 64px;
}
.article-layout {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 48px;
	align-items: start;
}

/* --- Article content typography --- */
.article-content {
	font-size: var(--cf-text-16, 16px);
	color: var(--cf-text, #1A1D22);
	line-height: 1.75;
}
.article-content h2 {
	font-size: var(--cf-text-24, 24px);
	font-weight: var(--cf-w-bold, 700);
	margin: 40px 0 16px;
	line-height: 1.3;
	color: var(--cf-primary-dark, #0F2640);
}
.article-content h3 {
	font-size: var(--cf-text-20, 20px);
	font-weight: var(--cf-w-semi, 600);
	margin: 32px 0 12px;
	line-height: 1.35;
}
.article-content p {
	margin: 0 0 20px;
}
.article-content ul,
.article-content ol {
	margin: 0 0 24px;
	padding-left: 24px;
}
.article-content li {
	margin-bottom: 8px;
}
.article-content img {
	max-width: 100%;
	height: auto;
	border-radius: var(--cf-radius-sm, 8px);
	margin: 24px 0;
}
.article-content blockquote {
	margin: 28px 0;
	padding: 20px 24px;
	border-left: 4px solid var(--cf-cyan, #009EE3);
	background: var(--cf-bg-alt, #F7F8FA);
	border-radius: 0 var(--cf-radius-sm, 8px) var(--cf-radius-sm, 8px) 0;
	font-style: italic;
	color: var(--cf-text-muted, #5A6472);
}
.article-content blockquote p:last-child {
	margin-bottom: 0;
}
.article-content a {
	color: var(--cf-cyan, #009EE3);
	text-decoration: underline;
	text-underline-offset: 2px;
}
.article-content a:hover {
	color: var(--cf-cyan-dark, #0077B2);
}
/* Article tables — wrapper for horizontal scroll on mobile */
.article-content table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	margin: 28px 0;
	font-size: var(--cf-text-14, 14px);
	line-height: 1.5;
	background: #fff;
	border-radius: var(--cf-radius, 12px);
	overflow: hidden;
	box-shadow:
		0 0 0 1px var(--cf-border, #E2E6EB),
		0 2px 8px rgba(15, 38, 64, 0.04);
}

/* Header */
.article-content thead th {
	background: var(--cf-bg-alt, #F7F8FA);
	color: var(--cf-text-muted, #5A6472);
	font-size: var(--cf-text-11, 11px);
	font-weight: var(--cf-w-bold, 700);
	text-transform: uppercase;
	letter-spacing: 0.8px;
	padding: 12px 18px;
	border-bottom: 2px solid var(--cf-border, #E2E6EB);
	text-align: left;
	white-space: nowrap;
}

/* Cells */
.article-content th,
.article-content td {
	padding: 14px 18px;
	text-align: left;
	vertical-align: middle;
}
.article-content tbody td {
	border-top: 1px solid var(--cf-border-light, #F0F2F5);
	color: var(--cf-text-muted, #5A6472);
}
.article-content tbody tr:first-child td {
	border-top: none;
}

/* First column — model name, bold */
.article-content tbody td:first-child {
	font-weight: var(--cf-w-semi, 600);
	color: var(--cf-text, #1A1D22);
}

/* Last column — price/result, accent */
.article-content tbody td:last-child {
	font-weight: var(--cf-w-bold, 700);
	color: var(--cf-primary-dark, #0F2640);
	white-space: nowrap;
}

/* Bold "Итого" row — last row special treatment */
.article-content tbody tr:last-child td strong,
.article-content tbody tr:last-child td b {
	color: var(--cf-primary-dark, #0F2640);
}
.article-content tbody tr:last-child:has(strong) td,
.article-content tbody tr:last-child:has(b) td {
	border-top: 2px solid var(--cf-border, #E2E6EB);
	background: var(--cf-bg-alt, #F7F8FA);
	font-weight: var(--cf-w-bold, 700);
	color: var(--cf-primary-dark, #0F2640);
}

/* Zebra striping — subtle */
.article-content tbody tr:nth-child(even) {
	background: rgba(247, 248, 250, 0.5);
}

/* Hover */
.article-content tbody tr {
	transition: background 0.15s;
}
.article-content tbody tr:hover {
	background: rgba(0, 158, 227, 0.04);
}

/* Green accent for "Экономия" column (last col positive values) */
.article-content tbody td:last-child:not(:first-child) {
	position: relative;
}

/* Mobile: horizontal scroll wrapper */
@media (max-width: 575px) {
	.article-content table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		white-space: nowrap;
		margin: 20px -14px;
		width: calc(100% + 28px);
		border-radius: 0;
		box-shadow: 0 0 0 1px var(--cf-border, #E2E6EB);
	}
	.article-content th,
	.article-content td {
		padding: 10px 14px;
		font-size: var(--cf-text-13, 13px);
	}
	.article-content thead th {
		font-size: 10px;
		padding: 10px 14px;
	}
}

/* --- Sidebar --- */
.article-sidebar {
	position: sticky;
	top: 100px;
}
.article-cta {
	background: var(--cf-bg-alt, #F7F8FA);
	border: 1px solid var(--cf-border, #E2E6EB);
	border-radius: var(--cf-radius, 12px);
	padding: 28px 24px;
	text-align: center;
	margin-bottom: 28px;
}
.article-cta__icon {
	color: var(--cf-cyan, #009EE3);
	margin-bottom: 14px;
}
.article-cta__title {
	font-size: var(--cf-text-18, 18px);
	font-weight: var(--cf-w-bold, 700);
	color: var(--cf-text, #1A1D22);
	margin-bottom: 8px;
	line-height: 1.35;
}
.article-cta__text {
	font-size: var(--cf-text-14, 14px);
	color: var(--cf-text-muted, #5A6472);
	line-height: 1.5;
	margin: 0 0 18px;
}
.article-cta__btn {
	display: block;
	width: 100%;
	padding: 12px 20px;
	background: var(--cf-cyan, #009EE3);
	color: #fff;
	border: none;
	border-radius: var(--cf-radius-sm, 8px);
	font-size: var(--cf-text-14, 14px);
	font-weight: var(--cf-w-semi, 600);
	font-family: inherit;
	cursor: pointer;
	transition: all 0.2s;
}
.article-cta__btn:hover {
	background: var(--cf-cyan-dark, #0077B2);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0,158,227,0.3);
}

/* Related articles in sidebar */
.article-related {
	border: 1px solid var(--cf-border, #E2E6EB);
	border-radius: var(--cf-radius, 12px);
	padding: 24px;
}
.article-related__heading {
	font-size: var(--cf-text-15, 15px);
	font-weight: var(--cf-w-bold, 700);
	color: var(--cf-text, #1A1D22);
	margin-bottom: 18px;
}
.article-related__item {
	display: flex;
	gap: 12px;
	align-items: center;
	text-decoration: none;
	padding: 10px 0;
	border-top: 1px solid var(--cf-border-light, #F0F2F5);
}
.article-related__item:first-of-type {
	border-top: none;
	padding-top: 0;
}
.article-related__thumb {
	width: 56px;
	height: 56px;
	border-radius: var(--cf-radius-sm, 8px);
	overflow: hidden;
	flex-shrink: 0;
	background: var(--cf-bg-alt, #F7F8FA);
}
.article-related__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.article-related__title {
	display: block;
	font-size: var(--cf-text-13, 13px);
	font-weight: var(--cf-w-semi, 600);
	color: var(--cf-text, #1A1D22);
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.article-related__item:hover .article-related__title {
	color: var(--cf-cyan, #009EE3);
}
.article-related__date {
	display: block;
	font-size: var(--cf-text-11, 11px);
	color: var(--cf-text-light, #8E96A0);
	margin-top: 3px;
}

/* --- Post navigation --- */
.article-nav {
	border-top: 1px solid var(--cf-border, #E2E6EB);
	padding: 32px 0;
}
.article-nav__inner {
	display: flex;
	justify-content: space-between;
	gap: 24px;
}
.article-nav__link {
	display: flex;
	flex-direction: column;
	gap: 4px;
	text-decoration: none;
	max-width: 45%;
}
.article-nav__link--next {
	text-align: right;
	margin-left: auto;
}
.article-nav__label {
	font-size: var(--cf-text-12, 12px);
	color: var(--cf-text-light, #8E96A0);
	text-transform: uppercase;
	letter-spacing: 1px;
}
.article-nav__title {
	font-size: var(--cf-text-15, 15px);
	font-weight: var(--cf-w-semi, 600);
	color: var(--cf-text, #1A1D22);
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.article-nav__link:hover .article-nav__title {
	color: var(--cf-cyan, #009EE3);
}

/* --- Cars embed shortcode --- */
/* --- Car embed block [cf_cars] --- */
.cf-embed {
	margin: 28px 0 36px;
}
.cf-embed__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}
.cf-embed__title {
	font-size: var(--cf-text-20, 20px);
	font-weight: var(--cf-w-bold, 700);
	color: var(--cf-primary-dark, #0F2640);
	margin: 0;
}
.cf-embed__all {
	font-size: var(--cf-text-14, 14px);
	font-weight: var(--cf-w-semi, 600);
	color: var(--cf-cyan, #009EE3);
	text-decoration: none;
	white-space: nowrap;
	transition: opacity 0.2s;
}
.cf-embed__all:hover { opacity: 0.7; }
.cf-embed__grid {
	display: grid;
	gap: 16px;
}
.cf-embed__grid--2 { grid-template-columns: repeat(2, 1fr); }
.cf-embed__grid--3 { grid-template-columns: repeat(3, 1fr); }
.cf-embed__grid--4 { grid-template-columns: repeat(4, 1fr); }

/* --- Car card --- */
.cf-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--cf-border, #E2E6EB);
	border-radius: 6px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform 0.15s var(--cf-ease, ease), box-shadow 0.15s;
}
.cf-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--cf-shadow-md, 0 4px 16px rgba(15,38,64,0.06));
	border-color: #D1D9E2;
}
.cf-card__photo {
	position: relative;
	aspect-ratio: 4/3;
	overflow: hidden;
	background: var(--cf-bg-alt, #F7F8FA);
}
.cf-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s var(--cf-ease, ease);
}
.cf-card:hover .cf-card__photo img {
	transform: scale(1.04);
}
.cf-card__no-photo {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	gap: 6px;
	color: var(--cf-border, #E2E6EB);
}
.cf-card__no-photo span {
	font-size: var(--cf-text-12, 12px);
	color: var(--cf-text-light, #8E96A0);
}
.cf-card__badges {
	position: absolute;
	top: 8px;
	left: 8px;
	display: flex;
	gap: 4px;
	flex-wrap: wrap;
}
.cf-card__badge {
	display: inline-block;
	padding: 3px 8px;
	font-size: 10px;
	font-weight: var(--cf-w-semi, 600);
	border-radius: 4px;
	line-height: 1.3;
}
.cf-card__badge--green {
	background: rgba(34,201,122,0.15);
	color: #16a359;
}
.cf-card__badge--cyan {
	background: rgba(0,158,227,0.12);
	color: var(--cf-cyan, #009EE3);
}
.cf-card__body {
	display: flex;
	flex-direction: column;
	padding: 14px;
	flex: 1;
}
.cf-card__name {
	font-size: var(--cf-text-14, 14px);
	font-weight: var(--cf-w-semi, 600);
	color: var(--cf-text, #1A1D22);
	line-height: 1.3;
	margin-bottom: 6px;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.cf-card__price {
	font-size: var(--cf-text-18, 18px);
	font-weight: var(--cf-w-bold, 700);
	color: var(--cf-primary-dark, #0F2640);
	margin-bottom: 8px;
	line-height: 1.2;
}
.cf-card__price-label {
	font-size: var(--cf-text-11, 11px);
	font-weight: var(--cf-w-semi, 600);
	color: var(--cf-cyan, #009EE3);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.cf-card__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
	font-size: var(--cf-text-13, 13px);
	color: var(--cf-text-muted, #5A6472);
	margin-bottom: 10px;
}
.cf-card__hl {
	font-weight: var(--cf-w-semi, 600);
	color: var(--cf-text, #1A1D22);
}
.cf-card__dot {
	color: var(--cf-text-light, #8E96A0);
	font-size: 10px;
}
.cf-card__specs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6px;
	padding-top: 10px;
	border-top: 1px solid var(--cf-border-light, #F0F2F5);
	margin-bottom: 12px;
}
.cf-card__sp {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.cf-card__sp span {
	font-size: 10px;
	color: var(--cf-text-light, #8E96A0);
	text-transform: uppercase;
	letter-spacing: 0.3px;
}
.cf-card__sp b {
	font-size: var(--cf-text-12, 12px);
	font-weight: var(--cf-w-semi, 600);
	color: var(--cf-text, #1A1D22);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.cf-card__cta {
	margin-top: auto;
	text-align: center;
	padding: 8px 0;
	font-size: var(--cf-text-13, 13px);
	font-weight: var(--cf-w-semi, 600);
	color: var(--cf-cyan, #009EE3);
	border-top: 1px solid var(--cf-border-light, #F0F2F5);
	transition: color 0.2s;
}
.cf-card:hover .cf-card__cta {
	color: var(--cf-cyan-dark, #0077B2);
}

/* --- Pagination override for blog --- */
.blog-grid .nav-links {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 40px;
}
.blog-grid .nav-links a,
.blog-grid .nav-links span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	font-size: var(--cf-text-14, 14px);
	font-weight: var(--cf-w-medium, 500);
	border: 1px solid var(--cf-border, #E2E6EB);
	border-radius: var(--cf-radius-sm, 8px);
	text-decoration: none;
	color: var(--cf-text-muted, #5A6472);
	transition: all 0.2s;
}
.blog-grid .nav-links a:hover {
	border-color: var(--cf-primary, #1A3A5C);
	color: var(--cf-primary, #1A3A5C);
}
.blog-grid .nav-links .current {
	background: var(--cf-primary, #1A3A5C);
	border-color: var(--cf-primary, #1A3A5C);
	color: #fff;
}

/* --- Blog responsive --- */
@media (max-width: 991px) {
	.blog-grid__list {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	.article-layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.article-sidebar {
		position: static;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}
	.article-hero__title {
		font-size: var(--cf-text-32, 32px);
	}
	.cf-embed__grid--3 { grid-template-columns: repeat(2, 1fr); }
	.cf-embed__grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
	.blog-hero {
		padding: 40px 0 32px;
	}
	.blog-hero__title {
		font-size: var(--cf-text-24, 24px);
	}
	.blog-grid__list {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.blog-card__link {
		flex-direction: row;
	}
	.blog-card__img {
		width: 130px;
		flex-shrink: 0;
		aspect-ratio: auto;
	}
	.blog-card__body {
		padding: 14px;
	}
	.blog-card__title {
		font-size: var(--cf-text-15, 15px);
	}
	.blog-card__excerpt {
		display: none;
	}
	.article-hero {
		padding: 48px 0 36px;
	}
	.article-hero__title {
		font-size: var(--cf-text-24, 24px);
	}
	.article-layout {
		gap: 24px;
	}
	.article-sidebar {
		grid-template-columns: 1fr;
	}
	.article-content {
		font-size: var(--cf-text-15, 15px);
	}
	.article-nav__inner {
		flex-direction: column;
		gap: 16px;
	}
	.article-nav__link {
		max-width: 100%;
	}
	.article-nav__link--next {
		text-align: left;
	}
	.cf-embed__grid--2,
	.cf-embed__grid--3,
	.cf-embed__grid--4 {
		grid-template-columns: repeat(2, 1fr);
	}
	.cf-card__specs {
		grid-template-columns: repeat(2, 1fr);
	}
	.blog-cats {
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		padding-bottom: 20px;
	}
	.blog-cats::-webkit-scrollbar { display: none; }
	.blog-cats__item { flex-shrink: 0; }
}

/* ===================== FORM VALIDATION ===================== */
/* Invalid field highlight */
.form input.is-invalid,
.form textarea.is-invalid,
.form select.is-invalid,
.quiz input.is-invalid,
.quiz textarea.is-invalid,
.quiz select.is-invalid,
input.is-invalid,
textarea.is-invalid,
select.is-invalid {
	border-color: #e24b4a !important;
	box-shadow: 0 0 0 3px rgba(226, 75, 74, 0.12) !important;
	background-color: rgba(226, 75, 74, 0.03);
	animation: cf-field-shake 0.3s ease;
}

.form__field.is-invalid,
label.is-invalid,
.field.is-invalid {
	position: relative;
}
.form__field.is-invalid::after,
label.is-invalid::after,
.field.is-invalid::after {
	content: "Обязательное поле";
	display: block;
	font-size: 11px;
	color: #e24b4a;
	margin-top: 4px;
	font-weight: 500;
}

/* Form-level error message */
.form__error-msg {
	display: block;
	padding: 10px 14px;
	margin-bottom: 14px;
	background: rgba(226, 75, 74, 0.08);
	border: 1px solid rgba(226, 75, 74, 0.25);
	border-radius: 6px;
	color: #c03938;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
}

/* Shake animation on invalid submit */
@keyframes cf-field-shake {
	0%, 100% { transform: translateX(0); }
	25% { transform: translateX(-4px); }
	75% { transform: translateX(4px); }
}
.form-shake {
	animation: cf-field-shake 0.4s ease;
}

/* Loading state on submit button */
button.is-loading,
input.is-loading {
	opacity: 0.7;
	cursor: wait;
	position: relative;
}
button.is-loading::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 14px;
	width: 14px;
	height: 14px;
	margin-top: -7px;
	border: 2px solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	animation: cf-spin 0.7s linear infinite;
}
@keyframes cf-spin {
	to { transform: rotate(360deg); }
}

/* ===== Правовые страницы (политика, оферта и т.п.) ===== */
.policy-page {
    padding: 40px 0 70px;
    background: #fff;
}
.policy-page__header {
    max-width: 880px;
    margin: 0 auto 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e5e5e5;
}
.policy-page__header h1 {
    margin: 0;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
    color: #1a1a1a;
    text-align: left;
}
.policy-page__content {
    max-width: 880px;
    margin: 0 auto;
    color: #2c2c2c;
    font-size: 16px;
    line-height: 1.7;
}
.policy-page__content h1 { display: none !important; }
.policy-page__content h2 {
    margin: 32px 0 14px;
    font-size: 21px;
    line-height: 1.3;
    color: #1a1a1a;
    font-weight: 700;
}
.policy-page__content h2:first-child { margin-top: 0; }
.policy-page__content h3 {
    margin: 22px 0 10px;
    font-size: 17px;
    color: #1a1a1a;
    font-weight: 600;
}
.policy-page__content p { margin: 0 0 14px; }
.policy-page__content ul {
    margin: 0 0 18px;
    padding-left: 22px;
    list-style: disc;
}
.policy-page__content ul li {
    margin-bottom: 8px;
    padding-left: 4px;
}
.policy-page__content a {
    color: #009EE3;
    text-decoration: underline;
    word-break: break-word;
}
.policy-page__content a:hover { color: #007bb3; }
.policy-page__content strong { color: #1a1a1a; }
.policy-page__content em { color: #666; font-style: italic; }

@media (max-width: 767px) {
    .policy-page { padding: 28px 0 50px; }
    .policy-page__header { margin-bottom: 20px; padding-bottom: 14px; }
    .policy-page__header h1 { font-size: 24px; }
    .policy-page__content { font-size: 15px; }
    .policy-page__content h2 { font-size: 18px; margin-top: 26px; }
    .policy-page__content h3 { font-size: 16px; }
}

/* ===== Статичная таблица расчётов (AEO / LLM-friendly) ===== */
.calc-examples-llm {
    padding: 60px 0;
    background: #f7f9fc;
}
.calc-examples-llm__head {
    max-width: 920px;
    margin: 0 auto 32px;
    text-align: center;
}
.calc-examples-llm__title {
    font-size: 30px;
    line-height: 1.25;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 14px;
}
.calc-examples-llm__sub {
    color: #555;
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}
.calc-examples-llm__sub strong { color: #1a1a1a; }
.calc-examples-llm__table-wrap {
    overflow-x: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    margin: 0 0 32px;
}
.calc-examples-llm__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    min-width: 640px;
}
.calc-examples-llm__table thead th {
    padding: 16px 14px;
    background: #0B1B2B;
    color: #fff;
    font-weight: 600;
    text-align: left;
    border-bottom: 2px solid #009EE3;
    white-space: nowrap;
}
.calc-examples-llm__table thead th:first-child {
    border-top-left-radius: 12px;
}
.calc-examples-llm__table thead th:last-child {
    border-top-right-radius: 12px;
}
.calc-examples-llm__table tbody td {
    padding: 14px;
    border-bottom: 1px solid #eef1f5;
    color: #333;
}
.calc-examples-llm__table tbody tr:last-child td {
    border-bottom: none;
}
.calc-examples-llm__table tbody tr:hover {
    background: #f5fafe;
}
.calc-examples-llm__table tbody td:first-child {
    background: #f9fbfd;
    font-weight: 500;
    white-space: nowrap;
}
.calc-examples-llm__notes {
    max-width: 920px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 24px 28px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.calc-examples-llm__notes-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 14px;
}
.calc-examples-llm__list {
    margin: 0 0 18px;
    padding-left: 20px;
    list-style: disc;
    color: #2c2c2c;
    font-size: 15px;
    line-height: 1.7;
}
.calc-examples-llm__list li {
    margin-bottom: 8px;
}
.calc-examples-llm__list strong {
    color: #1a1a1a;
}
.calc-examples-llm__disclaimer {
    margin: 0;
    padding-top: 14px;
    border-top: 1px solid #eef1f5;
    color: #777;
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .calc-examples-llm { padding: 40px 0; }
    .calc-examples-llm__title { font-size: 22px; }
    .calc-examples-llm__sub { font-size: 14px; }
    .calc-examples-llm__notes { padding: 18px 20px; }
    .calc-examples-llm__notes-title { font-size: 16px; }
    .calc-examples-llm__list { font-size: 14px; }
    .calc-examples-llm__table { font-size: 13px; }
    .calc-examples-llm__table thead th,
    .calc-examples-llm__table tbody td { padding: 10px; }
}
