/* ================================================================
   === SAFARI & APPLE FIXES (Добавлено для работы на iOS) ===
   ================================================================ */
html {
	-webkit-text-size-adjust: 100%;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/* Поддержка safe-area для iPhone с челкой */
	padding-top: env(safe-area-inset-top);
	padding-bottom: env(safe-area-inset-bottom);
}

/* Фикс для кнопок и инпутов в Safari (убирает серый фон и скругления) */
button,
input[type="submit"],
input[type="button"] {
	-webkit-appearance: none;
	appearance: none;
}

/* Плавный скролл для iOS */
* {
	-webkit-overflow-scrolling: touch;
}

/* Исправление багов с backdrop-filter в Safari */
.header,
.phone-modal-close {
	-webkit-backdrop-filter: blur(10px);
}

/* Фикс для градиентного текста */
.logo,
.hero-title .accent,
.hero-list li .icon-text-green {
	background-clip: text;
	-webkit-background-clip: text;
}


/* ================================================================
   STYLE.CSS — Полные стили + межэкранные адаптивы + планшет
   ================================================================ */

@font-face {
	font-family: 'Bebas Neue';
	src: url('/local/fonts/BebasNeueRegular.eot');
	src: local('fonts/Bebas Neue Regular'), local('BebasNeueRegular'),
		url('/local/fonts/BebasNeueRegular.eot?#iefix') format('embedded-opentype'),
		url('/local/fonts/BebasNeueRegular.woff') format('woff'),
		url('/local/fonts/BebasNeueRegular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('/local/fonts/Montserrat.eot');
	src: local('fonts/Montserrat-Regular'), local('Montserrat-Regular'),
		url('/local/fonts/Montserrat-Regular.eot?#iefix') format('embedded-opentype'),
		/* url('/local/fonts/Montserrat-Regular.woff') format('woff'), */
		url('/local/fonts/Montserrat-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

.element {
	display: -webkit-box;
	/* OLD - iOS 6-, Safari 3.1-6 */
	display: -ms-flexbox;
	/* TWEENER - IE 10 */
	display: -webkit-flex;
	/* NEW - Chrome */
	display: flex;
	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {

	font-family: 'Montserrat', sans-serif;
	background: #FFFFFF;
	color: #1E1E1E;
	overflow-x: hidden;
}

.container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 20px;
}

/* === Общие стили Swiper === */
.swiper {
	width: 100%;
}

/* Карточки результатов */
.results-swiper .swiper-slide {
	height: auto;
}

/* === ТЕЛЕФОНЫ === */

/* Мобильная версия: слайды по содержимому (SVG) */
.phones-swiper .swiper-slide {
	width: auto;
	display: flex;
	justify-content: center;
}

.phones-swiper .phone {
	max-width: 100%;
	height: auto;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.phones-swiper .phone:hover {
	transform: scale(1.02);
}

/* === ДЕСКТОП: превращаем Swiper в обычную flex-сетку === */
@media (min-width: 768px) {

	/* Убираем overflow:hidden, чтобы слайды не обрезались */
	.phones-swiper {
		overflow: visible !important;
	}

	/* Превращаем wrapper в обычный flex с переносом */
	.phones-swiper .swiper-wrapper {
		display: flex !important;
		flex-wrap: wrap !important;
		justify-content: center !important;
		gap: 20px !important;
		transform: none !important;
		/* Убираем стандартный transform Swiper */
		transition: none !important;
		width: 100% !important;
	}

	/* Каждому слайду задаем равную ширину */
	.phones-swiper .swiper-slide {
		flex: 0 0 calc(25% - 15px) !important;
		/* 4 в ряд минус gap */
		width: calc(25% - 15px) !important;
		max-width: 280px;
		margin: 0 !important;
		/* Убираем margin, который ставит Swiper */
	}

	.phones-swiper .phone {
		width: 100%;
		height: auto;
	}
}

/* Планшеты: 3 в ряд */
@media (min-width: 576px) and (max-width: 767.98px) {
	.phones-swiper .swiper-wrapper {
		display: flex !important;
		flex-wrap: nowrap !important;
		transform: none !important;
	}

	.phones-swiper .swiper-slide {
		flex: 0 0 auto !important;
	}
}

/* ================================================================
   БАЗОВЫЕ КЛАССЫ ВИДИМОСТИ (Desktop-first подход)
   ================================================================ */
.none-d {
	display: none !important;
}

/* Скрываем мобильную версию на desktop */
.none-m {
	display: inherit !important;
}

/* Показываем desktop версию */


.steps-title svg.none-m {
	display: block !important;
	position: absolute;
	top: -15px;
	left: 49%;
	transform: translateX(-50%);
	width: 320px;
	height: 76px;
	z-index: -1;
}

/* ================================================================
   HEADER
   ================================================================ */
.header {
	position: fixed;
	top: 32px;
	left: 53%;
	transform: translateX(-50%);
	width: calc(50% - 60px);
	max-width: 700px;
	background: #FFFFFF;
	border-radius: 30px;
	padding: 12px 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 1000;
	transition: all 0.4s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
	margin-left: -25%;
}

/* Учитываем панель администратора Bitrix */

body:has(.bx-panel-fixed) .header {
    top: 179px;
}

body:has(.bx-panel-fixed.bx-panel-folded) .header {
    top: 71px;
}

.header.expanded {
	width: calc(100% - 80px);
	left: 50%;
	margin-left: 0;
	max-width: 1400px;
}

.logo {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 32px;
	background: linear-gradient(180deg, #F88446 0%, #FF5900 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	letter-spacing: 2px;
	line-height: 1;
}

.logo span {
	font-size: 12px;
	background: linear-gradient(180deg, #99D128 0%, #6BA907 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	letter-spacing: 1px;
}

.burger {
	width: 40px;
	height: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	cursor: pointer;
	background: none;
	border: none;
	position: relative;
}

.burger span {
	display: block;
	height: 2px;
	background: #1E1E1E;
	border-radius: 2px;
	transition: 0.3s;
}

.burger span:nth-child(1) {
	width: 100%;
}

.burger span:nth-child(2) {
	width: 82%;
}

.burger span:nth-child(3) {
	width: 100%;
}

.burger.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
	opacity: 0;
}

.burger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

.burger-wrapper {
	position: relative;
}

.burger-menu {
	position: absolute;
	top: 60px;
	right: -20px;
	background: #FFFFFF;
	border-radius: 20px;
	padding: 20px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
	min-width: 280px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1001;
}

.burger-menu.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.burger-menu a {
	display: block;
	padding: 12px 16px;
	color: #1E1E1E;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	border-radius: 12px;
	transition: background 0.2s;
}

.burger-menu a:hover {
	background: #F6F7FA;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {

	display: flex;
	align-items: center;
	position: relative;
	padding: 30px 0 80px;
	background: #F6F7FA;
	overflow: hidden;
}

.hero .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	width: 100%;
}

.hero-left {
	z-index: 2;
	padding: 160px 0;
}

/* ✅ ИСПРАВЛЕНИЕ: Hero SVG позиционирование */
.hero-title {
	position: relative;
	display: inline-block;
	text-wrap: nowrap;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 60px;
	line-height: 1;
	color: #2E2A26;
	margin-bottom: 24px;
	letter-spacing: 1px;

}

.hero-title .accent {
	background: linear-gradient(180deg, #99D128 0%, #6BA907 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* Desktop SVG (показывается на desktop, класс none-m) */
.hero-title .hero-svg-desktop {
	position: absolute;
	z-index: -1;
	top: -7px;
	left: -7px;
	/* ✅ Добавлено явное позиционирование */
	width: 202px;
	height: 75px;
	pointer-events: none;
}

/* Mobile SVG (показывается на mobile, класс none-d) */
.hero-title .hero-svg-mobile {
	position: absolute;
	z-index: -1;
	top: -8px;
	left: -15px;
	width: 160px;
	height: 55px;
	pointer-events: none;
}

.hero-subtitle {
	position: relative;
	font-size: 20px;
	line-height: 120%;
	color: #1E1E1E;
	margin-bottom: 32px;
	max-width: 540px;
	font-weight: 500;
}

.hero-line-svg {
	position: absolute;
	margin-top: 19px;
	width: 138px;
	height: 7px;
	pointer-events: none;
}

.hero-list {
	list-style: none;
	margin-bottom: 32px;
}

.hero-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 12px;
	color: #1E1E1E;
}

.icon-circle {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #6BA907;
}

.icon-circle.green {
	background: linear-gradient(180deg, #99D128 0%, #6BA907 100%);
}

.icon-circle.orange {
	background: linear-gradient(180deg, #F88446 0%, #FF5900 100%);
}

.icon-circle svg {
	width: 14px;
	height: 14px;
}

.hero-list li .icon-text-green {
	background: linear-gradient(180deg, #1E1E1E 0%, #1E1E1E 100%);
	color: #1E1E1E;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 600;
}

.price-tags {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 24px;
	flex-wrap: wrap;
}

.tag-discount {
	background: linear-gradient(180deg, #F88446 0%, #FF5900 100%);
	color: #FFF;
	padding: 8px 16px;
	border-radius: 16px;
	font-weight: 700;
	font-size: 18px;
	box-shadow: 0 4px 12px rgba(255, 89, 0, 0.2);
}

.tag-price {
	display: flex;
	align-items: baseline;
	gap: 8px;
	background: #FFF;
	padding: 8px 16px;
	border-radius: 16px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.price-new {
	font-weight: 600;
	font-size: 18px;
	color: #1E1E1E;
}

.price-old {
	font-weight: 500;
	font-size: 16px;
	text-decoration: line-through;
	color: #1E1E1E;
	opacity: 0.6;
	font-style: italic;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-wrap: nowrap;
	gap: 10px;
	padding: 24px 50px;
	border-radius: 20px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 18px;
	text-transform: uppercase;
	color: #FFFFFF;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
	line-height: 120%;
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.btn-green {
	background: linear-gradient(180deg, #99D128 0%, #6BA907 100%);
}

.btn-orange {
	background: linear-gradient(180deg, #F88446 0%, #FF5900 100%);
}

.hero-right {
	position: relative;
	height: 790px;
	display: flex;
	align-items: flex-end;
}

.hero-img {
	width: 100%;
	height: 100%;
	background: url('/images/pmain.jpg') center/cover no-repeat;
	border-radius: 20px;
	position: relative;
}

/* ================================================================
   4 БЛОКА
   ================================================================ */
.section {
	padding: 80px 0;
}

.section-title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 50px;
	line-height: 100%;
	text-align: center;
	color: #2E2A26;
	margin-bottom: 20px;
}

.section-subtitle {
	font-size: 20px;
	line-height: 120%;
	text-align: center;
	color: #1E1E1E;
	margin-bottom: 8px;
	font-weight: 500;
}

.method-subtitle-gap {
	margin-bottom: 24px;
}

.method-subtitle-bold {
	margin-bottom: 0;
	font-weight: 600;
}

.accent-green {
	color: #6BA907;
}

.text-light {
	font-weight: lighter;
}

.four-blocks {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	margin-bottom: 48px;
	flex-wrap: nowrap;
	gap: 20px;
}

.four-blocks1 {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	margin-bottom: 48px;
	flex-wrap: nowrap;
	gap: 20px;
}

.dot {
	width: 8px;
	height: 8px;
	margin: 0 auto 12px;
	border-radius: 50%;
	background: #99D128;
	position: relative;
}

.dot::before {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	background: rgba(153, 209, 40, 0.2);
	z-index: 1;
}

.four-blocks::before {
	content: '';
	position: absolute;
	top: 93px;
	left: 12.5%;
	right: 12.5%;
	height: 2px;
	background: linear-gradient(180deg, #99D128 0%, #6BA907 100%);
	z-index: -1;
}

.block-item {
	flex: 1;
	min-height: 200px;
	min-width: 250px;
	max-width: 325px;
	text-align: center;
	padding: 20px 10px;
	position: relative;
	border-radius: 20px;
	background: #fff;
	z-index: 1;
	border: 2px solid #99D128;
}

.block-item1 {
	flex: 1;
	min-height: 200px;
	min-width: 250px;
	max-width: 325px;
	text-align: center;
	padding: 20px 10px;
	position: relative;
	border-radius: 20px;
	background: rgba(246, 247, 250, 1);
	z-index: 1;

}

.block-item:first-child {
	border-left: 2px solid #99D128;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
}

.block-item:last-child {
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
}

.block-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: linear-gradient(180deg, #99D128 0%, #6BA907 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.block-icon::after {
	content: '';
	position: absolute;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 2px solid rgba(107, 169, 7, 0.2);
}

.block-icon svg {
	width: 28px;
	height: 28px;
	fill: #FFF;
}

.block-title {
	text-transform: lowercase;
	font-weight: 600;
	font-size: 18px;
	line-height: 120%;
	margin-bottom: 8px;
	color: #1E1E1E;
}

.block-text {
	font-size: 15px;
	line-height: 130%;
	color: #1E1E1E;
	font-weight: 500;
}

.section-bottom-text {
	font-size: 20px;
	line-height: 120%;
	text-align: center;
	color: #1E1E1E;
	margin: 32px auto;
	max-width: 600px;
	font-weight: 500;
}

.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

/* ================================================================
   МЕТОДИКА
   ================================================================ */
.methodology {
	background: #F6F7FA;
	padding: 80px 0;
}

.metod-btn {
	margin-top: 48px;
}

.method-points {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
	margin-top: 48px;
}

.method-points::before {
	content: '';
	position: absolute;
	top: 10px;
	left: 16.66%;
	right: 16.66%;
	border-top: 2px dashed #6BA907;
	z-index: 0;
}

.method-point {
	flex: 1;
	text-align: center;
	position: relative;
	padding: 0 20px;
}

.method-dot {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: linear-gradient(180deg, #99D128 0%, #6BA907 100%);
	margin: 0 auto 24px;
	position: relative;
	z-index: 2;
}

.method-label {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 8px;
}

.method-desc {
	font-size: 16px;
	font-weight: 500;
	color: #1E1E1E;
}

/* ================================================================
   О КОМПАНИИ
   ================================================================ */
.about-company {
	padding: 150px 0;
}

.about-card {
	background: #F6F7FA;
	border-radius: 40px;
	display: grid;
	grid-template-columns: 1fr 3fr;
	gap: 0;
	position: relative;
	min-height: 230px;
	align-items: end;
	overflow: visible;
}

.about-image {
	max-height: 500px;
	max-width: 200px;
	border-radius: 20px;
	position: relative;
	overflow: visible;
}

.about-image img {
	position: absolute;
	width: 300px;
	height: auto;
	bottom: 40%;
}

.about-right {

	display: flex;
	flex-direction: column;
	gap: 24px;
	padding-bottom: 40px;
}

.about-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.about-item-icon {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	background: linear-gradient(180deg, #F88446 0%, #FF5900 100%);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-item-icon svg {
	width: 18px;
	height: 18px;
	fill: #FFF;
}

.about-item-text {
	font-size: 18px;
	line-height: 130%;
	color: #1E1E1E;
	font-weight: 600;
}

/* ================================================================
   ОРАНЖЕВЫЕ БЛОКИ (РЕЗУЛЬТАТЫ)
   ================================================================ */
.orange-section {
	padding: 80px 0;
	background: #FFFFFF;
}

/* ✅ Заголовок с SVG */
#results .section-title {
	position: relative;
}

#results .section-title span {
	position: relative;
	display: inline-block;
	color: #6BA907;
}

.results-line-1 {
	position: absolute;
	left: 21px;
	margin-top: 52px;
	width: 103px;
	height: 2px;
	pointer-events: none;
}

.results-line-2 {
	position: absolute;
	margin-top: 24px;
	width: 284px;
	height: 4px;
	pointer-events: none;
}

.results-line-mobile {
	position: absolute;
	margin-top: 47px;
	width: 563px;
	height: 4px;
	pointer-events: none;
}

.orange-blocks {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	margin-bottom: 48px;
	flex-wrap: nowrap;
	gap: 20px;
}

.dot1 {
	width: 8px;
	height: 8px;
	margin: 0 auto 12px;
	border-radius: 50%;
	background: #F88446;
	position: relative;
}

.dot1::before {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	background: linear-gradient(180deg, #f8844652 0%, #ff590045 10%);

	z-index: 1;
}

.four-blocks1::before {
	content: '';
	position: absolute;
	top: 96px;
	left: 12.5%;
	right: 12.5%;
	height: 2px;
	background: linear-gradient(180deg, #F88446 0%, #FF5900 100%);
	z-index: 0;
}

.orange-block {
	background: #F6F7FA;
	flex: 1;
	min-height: 200px;
	min-width: 250px;
	max-width: 325px;
	text-align: center;
	padding: 20px 10px;
	position: relative;
	border-radius: 20px;
	z-index: 1;
}

.orange-block-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: linear-gradient(180deg, #F88446 0%, #FF5900 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.orange-block-icon::after {
	content: '';
	position: absolute;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 2px solid rgba(255, 89, 0, 0.2);
}

.orange-block-icon svg {
	width: 28px;
	height: 28px;
	fill: #FFF;
}

.orange-block-title {
	font-weight: 600;
	font-size: 18px;
	line-height: 120%;
	margin-bottom: 8px;
	color: #1E1E1E;
}

.orange-block-text {
	font-size: 15px;
	line-height: 130%;
	color: #1E1E1E;
	font-weight: 500;
}

.orange-dot {
	position: absolute;
	top: 115px;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: linear-gradient(180deg, #F88446 0%, #FF5900 100%);
}

/* ================================================================
   СЛАЙДЕР РЕЗУЛЬТАТОВ
   ================================================================ */
.results-section {
	background: #F6F7FA;
	padding: 80px 0;
	position: relative;
}

.slider-nav {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-bottom: 32px;
}

.slider-nav-btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(180deg, #99D128 0%, #6BA907 100%);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s;
}

.slider-nav-btn:hover {
	transform: scale(1.1);
}

.slider-nav-btn svg {
	width: 20px;
	height: 20px;
	stroke: #FFF;
	stroke-width: 2.5;
	fill: none;
}

.slider {
	display: flex;
	gap: 30px;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding: 20px 10px;
	scrollbar-width: none;
}

.slider::-webkit-scrollbar {
	display: none;
}

.result-card {
	flex: 0 0 420px;
	height: 440px;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	background: #FFF;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
}

.result-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.result-badge {
	position: relative;
	z-index: 5;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: linear-gradient(180deg, #99D128 0%, #6BA907 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFF;
	font-weight: 700;
	font-size: 24px;
	text-transform: uppercase;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.mt-40 {
	margin-top: 40px;
}

.mt-48 {
	margin-top: 48px;
}

.mb-32 {
	margin-bottom: 32px;
}

/* ================================================================
   5 ШАГОВ
   ================================================================ */
.steps-section {
	padding: 80px 0;
}

.steps-title {
	position: relative;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 50px;
	line-height: 100%;
	text-align: center;
	margin-bottom: 48px;
}

.steps-title .highlight {
	color: #6BA907;
	position: relative;
	display: inline-block;
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 20px;
}

.steps-grid.bottom {
	grid-template-columns: repeat(2, 1fr);
	max-width: 860px;
	margin: 20px auto 40px;
}

.step-card {
	border-radius: 20px;
	padding: 24px;
	position: relative;
	overflow: hidden;
	height: 220px;
	display: grid;
	grid-template-columns: 6fr 2fr;
	gap: 16px;
}

/* Step backgrounds */
.step-bg-1 {
	background: url('/images/step1.png') center/cover no-repeat;
}

.step-bg-2 {
	background: url('/images/step2.png') center/cover no-repeat;
}

.step-bg-3 {
	background: url('/images/step3.png') center/cover no-repeat;
}

.step-bg-4 {
	background: url('/images/step4.png') center/cover no-repeat;
}

.step-bg-5 {
	background: url('/images/step5.png') center/cover no-repeat;
}

.step-number-wrap {
	position: relative;
	flex-shrink: 0;
}

.step-number {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #EDEAE9;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.step-number::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border-top: 4px solid #FF5900;
	border-right: 4px solid #FF5900;
	transform: rotate(-45deg);
}

.step-number.green::after {
	border-color: #6BA907;
}

.step-number span {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 28px;
	color: #FF5900;
	position: relative;
	z-index: 1;
}

.step-number.green span {
	color: #6BA907;
}

.step-content {
	flex: 1;
	z-index: 2;
}

.step-name {
	position: relative;
	text-wrap: nowrap;
	font-size: 18px;
	font-weight: 700;
	line-height: 120%;
	color: #1E1E1E;
	margin-bottom: 4px;
}

.num-dop {
	display: flex;
	flex-direction: row;
	gap: 15px;
	align-items: center;
	margin-bottom: 20px;
}

.step-desc {
	font-size: 13px;
	line-height: 130%;
	color: #1E1E1E;
	font-style: italic;
}

.step-image {
	width: 120px;
	height: 140px;
	position: relative;
	flex-shrink: 0;
	border-radius: 12px;
	overflow: hidden;
}

.step-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ✅ SVG для "Завершение программы" */
.steps-grid.bottom .step-card:last-child .step-name {
	position: relative;
	z-index: 1;
}

.step5-svg-desktop {
	position: absolute;
	z-index: -1;
	left: -5px;
	bottom: 36px;
	width: 219px;
	height: 24px;
	pointer-events: none;
}

.step5-svg-mobile {
	position: absolute;
	z-index: -1;
	top: -5px;
	left: -18px;
	width: 285px;
	height: 31px;
	pointer-events: none;
}

.checklist {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-bottom: 40px;
}

.checklist-item {
	display: grid;
	grid-template-columns: 1fr 10fr;
	text-align: left;
	position: relative;
}

.checklist-item-center {
	text-align: center !important;
	position: relative !important;
}

.checklist-dot-center {
	width: 8px;
	height: 8px;
	margin: 0 auto 12px;
	border-radius: 50%;
	background: #99D128;
	position: relative;
}

.checklist-dot-center::before {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	background: rgba(153, 209, 40, 0.2);
}

.checklist-dot {
	width: 8px;
	height: 8px;
	margin: 5px auto 0;
	border-radius: 50%;
	background: #99D128;
	position: relative;
}

.checklist-dot::before {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	background: rgba(153, 209, 40, 0.2);
}

.checklist-text {
	font-size: 16px;
	line-height: 130%;
	font-weight: 600;
	color: #1E1E1E;
}

/* ================================================================
   7 КОНТРОЛЬНЫХ ТОЧЕК
   ================================================================ */
.checkpoints {
	padding: 80px 0;
	background: #FFF;
}

.checkpoints-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 65px;
}

.checkpoints-grid.bottom {
	grid-template-columns: repeat(4, 1fr);
	margin-bottom: 40px;
}

.checkpoint-card {
	background: #F6F7FA;
	border-radius: 20px;
	padding: 24px;
	text-align: center;
	position: relative;
	min-height: 160px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
	overflow: visible;
}

.checkpoint-img-wrapper {
	position: absolute;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 100px;
	border-radius: 50%;
	overflow: visible;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.checkpoint-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.check-badge {
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #99D128;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 3px solid #F6F7FA;
	z-index: 10;
}

.check-badge svg {
	width: 20px;
	height: 20px;
	stroke: #fff;
	stroke-width: 3;
	fill: none;
}

.checkpoint-text {
	font-size: 18px;
	font-weight: 600;
	line-height: 120%;
	color: #1E1E1E;
}

.checkpoint-ideal {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 24px;
}

/* ================================================================
   ТЕЛЕФОНЫ
   ================================================================ */
.phones-section {
	padding: 80px 0;
	background: rgba(246, 247, 250, 1);
}

/* ✅ ИСПРАВЛЕНИЕ: Phones title с SVG */
.phones-title {
	position: relative;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 50px;
	line-height: 100%;
	text-align: center;
	color: #2E2A26;
	margin-bottom: 48px;
}

.phones-title span {
	position: relative;
	display: inline-block;
	color: #6BA907;
}

/* Desktop SVGs */
.phones-line-1 {
	position: absolute;
	top: -4px;
	right: -18px;
	/* ✅ Относительное позиционирование от края span */
	width: 177px;
	height: 58px;
	pointer-events: none;
}

.phones-line-mobile {
	position: absolute;
	top: -4px;
	left: -10px;
	/* ✅ Для мобильной версии */
	width: 178px;
	height: 59px;
	pointer-events: none;
}

.phones-wrap {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-bottom: 48px;
	perspective: 1000px;
	flex-wrap: wrap;
}

.phone {
	width: 280px;
	height: 574px;
	position: relative;
	cursor: pointer;
	transition: transform 0.5s, z-index 0s;
	flex-shrink: 0;
}

.phone:hover {
	transform: translateY(-20px) scale(1.05);
	z-index: 10;
}

.phone.active {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(1.3);
	z-index: 1000;
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.phone-screen {
	width: 100%;
	height: 100%;
	background: #FFF;
	border-radius: 34px;
	overflow: hidden;
	background-size: cover;
	background-position: top center;
	position: relative;
}

.phone-notch {
	position: absolute;
	top: 12px;
	left: 50%;
	transform: translateX(-50%);
	width: 90px;
	height: 24px;
	background: #1E1E1E;
	border-radius: 20px;
	z-index: 5;
}

.phone-screen img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.overlay-bg {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	z-index: 999;
	display: none;
	cursor: pointer;
}

.overlay-bg.active {
	display: block;
}

.checklist-phones {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 40px;
}

/* ================================================================
   ТАРЕЛКА
   ================================================================ */
.plate-section {
	padding: 80px 0;
	background: #fff;
}

.plate-card {
	height: 430px;
	background: #F6F7FA;
	border-radius: 40px;
	padding: 60px;
	display: grid;
	grid-template-columns: 1fr 2fr;
	position: relative;
	overflow: visible;
	align-items: center;
}

.plate-image-container {
	position: relative;
	height: 330px;
	width: 100%;
	z-index: 10;
	overflow: visible;
}

.plate-image {
	width: 200%;
	height: 200%;
	position: absolute;
	top: -185px;
	left: -310px;
	background: url('/images/tarelka.png') center/contain no-repeat;
	z-index: 10;
}

.plate-right {
	z-index: 5;
}

.plate-right h2 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 50px;
	line-height: 100%;
	color: #1E1E1E;
	margin-bottom: 16px;
}

.plate-right p {
	font-size: 16px;
	line-height: 130%;
	color: #1E1E1E;
	margin-bottom: 24px;
	font-weight: 500;
}

.plate-accent {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 32px;
	display: inline-block;
	padding-bottom: 4px;
	position: relative;
}

.text-accent {
	position: absolute;
	left: -13px;
	top: -5px;
	width: 270px;
	height: 32px;
	pointer-events: none;
}

/* ================================================================
   FAQ
   ================================================================ */
.faq-section {
	padding: 80px 0;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.faq-item {
	border-top: 2px solid rgba(214, 214, 214, 1);
	background: #FFF;
	overflow: hidden;
	transition: box-shadow 0.2s;
}

.faq-item:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.faq-item-last {
	border-bottom: 2px solid rgba(214, 214, 214, 1);
}

.faq-question {
	width: 100%;
	padding: 20px 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: #2E2A26;
}

.faq-toggle {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: linear-gradient(180deg, #F88446 0%, #FF5900 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: transform 0.3s;
	position: relative;
}

.faq-toggle::before,
.faq-toggle::after {
	content: '';
	position: absolute;
	background: #FFF;
	border-radius: 2px;
}

.faq-toggle::before {
	width: 14px;
	height: 2px;
}

.faq-toggle::after {
	width: 2px;
	height: 14px;
	transition: transform 0.3s;
}

.faq-item.open .faq-toggle::after {
	transform: rotate(90deg);
}

.faq-item.open .faq-toggle {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.faq-answer-inner {
	padding: 0 24px 24px;
	font-size: 16px;
	line-height: 140%;
	color: #1E1E1E;
	font-weight: 500;
}

/* ================================================================
   ОСТАЛИСЬ ВОПРОСЫ
   ================================================================ */
.questions-section {
	padding: 130px 0;
}

.questions-card {
	background: #F6F7FA;
	border-radius: 40px;
	padding: 60px;
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 60px;
	position: relative;
	height: 350px;
	overflow: visible;
}

.questions-left h2 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 50px;
	line-height: 100%;
	color: #2E2A26;
	margin-bottom: 14px;
}

.questions-sub {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 12px;
	color: #2E2A26;
}

.questions-buttons {
	display: flex;
	gap: 16px;
	flex-wrap: nowrap;
}

.questions-image {
	overflow: visible;
	position: relative;
	height: 447px;
	width: 425px;
	margin-top: 0px;
	margin-bottom: 0px;
}

.questions-circle {
	position: absolute;
	right: -60px;
	bottom: -35px;
	width: 450px;
	height: 450px;
	border-radius: 50%;
	background: #FFF;
	z-index: 0;
}

.questions-photo {
	background-repeat: no-repeat;
	background-position: top;
	background-size: 140% 140%;
	position: absolute;
	right: 35px;
	bottom: 156px;
	width: 350px;
	height: 467px;
	background-image: url(/images/p1.png);
	z-index: 1;
}

.questions-footer {
	margin-top: 10px;
	font-size: 20px;
	font-weight: 600;
	color: #2E2A26;
}

.link-orange {
	color: #FF5900;
	text-decoration: underline;
}

/* ================================================================
   КУПИТЬ
   ================================================================ */
.buy-section {
	padding: 80px 0;
}

.buy-title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 50px;
	line-height: 100%;
	text-align: center;
	color: #2E2A26;
	margin-bottom: 32px;
}

.buy-card {
	max-width: 440px;
	margin: 0 auto;
	border: 2px dashed #99D128;
	border-radius: 20px;
	padding: 32px;
	text-align: center;
	position: relative;
}

.buy-card-tag {
	position: absolute;
	top: -20px;
	right: 20px;
	background: linear-gradient(180deg, #99D128 0%, #6BA907 100%);
	padding: 8px 16px;
	border-radius: 100px;
	color: #FFF;
	font-weight: 700;
	font-size: 18px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	z-index: 5;
}

.buy-name {
	font-size: 18px;
	font-weight: 600;
	line-height: 120%;
	text-align: center;
	color: #2E2A26;
	margin-bottom: 16px;
}

.buy-duration {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 50px;
	line-height: 120%;
	color: #2E2A26;
	margin-bottom: 24px;
}

.buy-price {
	font-size: 24px;
	font-weight: 600;
	color: #2E2A26;
	margin-bottom: 8px;
}

.buy-price-old {
	font-size: 20px;
	font-weight: 500;
	font-style: italic;
	color: #2E2A26;
	opacity: 0.6;
	text-decoration: line-through;
	margin-bottom: 32px;
}

.buy-card .btn {
	width: 100%;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
	background: #73665B;
	padding: 48px 0;
	color: #FFF;
	text-align: center;
}

.footer h3 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 28px;
	margin-bottom: 24px;
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 32px;
	flex-wrap: wrap;
	margin-bottom: 24px;
}

.footer-links a {
	color: #FFF;
	text-decoration: none;
	font-size: 14px;
	opacity: 0.8;
	transition: opacity 0.2s;
}

.footer-links a:hover {
	opacity: 1;
}

.footer-social {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-bottom: 24px;
}

.footer-social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}

.footer-social a:hover {
	background: rgba(255, 255, 255, 0.2);
}

.footer-social svg {
	width: 20px;
	height: 20px;
	stroke: #FFF;
	fill: none;
}

.footer-bottom {
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	font-size: 12px;
	opacity: 0.6;
}


/* ================================================================
   ================================================================
   МЕЖЭКРАННЫЕ АДАПТИВЫ
   ================================================================
   ================================================================ */


/* ================================================================
   📱 БОЛЬШОЙ ТЕЛЕФОН / МАЛЫЙ ПЛАНШЕТ: 481px — 768px
   ================================================================ */
@media (min-width: 481px) and (max-width: 767px) {
	.container {
		padding: 0 24px;
	}

	/* Видимость SVG: показываем мобильные версии */
	.none-d {
		display: inline-block !important;
	}

	.none-m {
		display: none !important;
	}

	.four-blocks1::before {
		width: 2px;
		height: 84%;
		left: 49.8%;
	}

	.four-blocks::before {
		width: 2px;
		height: 84%;
		left: 49.8%;
	}

	/* Header */
	.header {
		top: 16px;
		width: calc(100% - 32px);
		left: 17px;
		transform: none;
		margin-left: 0;
		border-radius: 20px;
		padding: 10px 14px;
	}

	.header.expanded {
		width: calc(100% - 32px);
		max-width: none;
	}

	.logo {
		font-size: 28px;
	}

	.logo span {
		font-size: 10px;
	}

	/* Hero */
	.hero {
		padding: 100px 0 50px;
		min-height: auto;
	}

	.hero .container {
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}

	.hero-left {
		padding: 0;
		order: 1;
		text-align: center;
	}

	.hero-right {
		height: 480px;
		order: 2;
	}

	.hero-title {
		font-size: 46px;
		display: inline-block;
	}

	/* ✅ Hero mobile SVG центрируется под текстом */
	.hero-title .hero-svg-mobile {
		display: block !important;
		left: 23%;
		transform: translateX(-50%);
		top: -7px;
		width: 180px;
		height: 58px;
	}

	.hero-subtitle {
		font-size: 16px;
		line-height: 150%;
		margin-bottom: 24px;
		max-width: 100%;
	}

	.hero-line-svg {
		width: 120px;
		margin-top: 19px;
		left: 80%;
		transform: translateX(-50%);
	}

	.hero-list {
		margin-bottom: 24px;
		display: inline-block;
		text-align: left;
	}

	.hero-list li {
		font-size: 14px;
		margin-bottom: 10px;
	}

	.icon-circle {
		width: 22px;
		height: 22px;
	}

	.price-tags {
		flex-direction: row;
		align-items: center;
		justify-content: center;
		margin-bottom: 24px;
		gap: 10px;
	}

	.tag-discount {
		padding: 8px 14px;
		font-size: 14px;
	}

	.tag-price {
		padding: 8px 14px;
	}

	.price-new {
		font-size: 16px;
	}

	.price-old {
		font-size: 14px;
	}

	.btn {
		width: 100%;
		padding: 18px 40px;
		font-size: 16px;
		border-radius: 16px;
	}

	/* Sections */
	.section {
		padding: 50px 0;
	}

	.section-title,
	.steps-title,
	.phones-title,
	.buy-title {
		font-size: 34px;
	}

	/* 4 блока */
	.four-blocks {
		flex-direction: column;
		gap: 16px;
	}

	.four-blocks1 {
		flex-direction: column;
		gap: 16px;
	}

	.block-item {
		flex: 1 1 100%;
		min-height: 100px;
		min-width: 100%;

		border-radius: 20px !important;
		padding: 24px 16px;
	}

	.block-item1 {
		flex: 1 1 100%;
		min-height: 100px;
		min-width: 100%;

		border-radius: 20px !important;
		padding: 24px 16px;
	}

	.block-icon {
		width: 52px;
		height: 52px;
		margin-bottom: 14px;
	}

	.block-icon::after {
		width: 70px;
		height: 70px;
	}

	.section-bottom-text {
		font-size: 17px;
		margin: 24px auto;
	}

	/* Методика */
	.methodology {
		padding: 50px 20px;
	}

	.method-points {
		flex-direction: column;
		gap: 28px;
		align-items: center;
		position: relative;
		max-width: 400px;
		margin: 0 auto;
	}

	.method-points::before {
		left: 50.3%;
		top: 10px;
		bottom: -8px;
		width: 2px;
		border-left: 2px dashed #6BA907;
		border-top: none;
		right: auto;
		transform: translateX(-50%);
	}

	.method-point {
		padding: 0;
		text-align: left;
		width: 100%;
		padding-left: calc(50% + 30px);
	}

	.method-point:nth-child(2) {
		padding-left: 0;
		padding-right: calc(50% + 20px);
		text-align: right;
	}

	.method-point:nth-child(3) {
		padding-left: calc(50% + 30px);
		padding-right: 0;
		text-align: left;
	}

	.method-dot {
		position: absolute;
		left: 50%;
		top: 4px;
		width: 14px;
		height: 14px;
		transform: translateX(-50%);
		margin: 0;
	}

	.method-label {
		font-size: 18px;
	}

	.method-desc {
		font-size: 15px;
	}

	.methodology .btn-green {
		width: 100%;
		padding: 18px;
		border-radius: 16px;
		font-size: 16px;
	}


	/* О компании */
	.about-company {
		padding: 60px 0;
	}

	.about-card {
		height: 200px;
		grid-template-columns: 1fr 2fr;
		gap: 20px;
		padding: 24px;
		min-height: auto;
	}

	.about-image {
		min-height: 280px;
		max-width: 100%;
		width: 100%;
		margin: 0;
	}

	.about-image img {
		position: relative;
		width: 100%;
		max-width: 350px;
		bottom: auto;
		margin: 104px auto;
		display: block;
		border-radius: 16px;
	}

	.about-right {
		padding: 0;
		gap: 16px;
		align-self: self-start;
	}

	.about-right h2 {
		font-size: 26px !important;
	}

	.about-item {
		gap: 12px;
	}

	.about-item-icon {
		width: 28px;
		height: 28px;
	}

	.about-item-text {
		font-size: 15px;
		line-height: 140%;
	}

	/* Оранжевые блоки */
	.orange-section {
		padding: 50px 0;
	}

	.orange-blocks {
		grid-template-columns: 1fr 1fr;
		gap: 16px;
		margin: 30px 0;
	}

	.orange-blocks::before {
		display: none;
	}

	.orange-block {
		padding: 18px;
	}

	.orange-block-icon {
		width: 52px;
		height: 52px;
	}

	.orange-block-icon::after {
		width: 70px;
		height: 70px;
	}

	.orange-block-title {
		font-size: 16px;
	}

	.orange-block-text {
		font-size: 14px;
	}

	/* ✅ Results SVG — мобильная версия центрируется */
	.results-line-1,
	.results-line-2 {
		display: none !important;
	}

	.results-line-mobile {
		display: block !important;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		top: 31px;
		width: 379px;
		height: 4px;
		margin-top: 0;
	}

	/* Результаты слайдер */
	.results-section {
		padding: 50px 0;
	}

	.result-card {
		flex: 0 0 300px;
		height: 350px;
	}

	.result-badge {
		width: 85px;
		height: 85px;
		font-size: 20px;
	}

	/* 5 шагов */
	.steps-section {
		padding: 50px 0;
	}

	.steps-grid {
		grid-template-columns: 1fr 1fr;
		gap: 16px;
	}

	.steps-grid.bottom {
		display: flex;
		justify-content: center;
		grid-template-columns: 1fr;
		margin: 16px auto 24px;
	}

	.step-card {
		height: auto;
		min-height: 160px;
		grid-template-columns: 3fr 1fr;
		gap: 12px;
		padding: 20px 16px;
	}

	.step-image {
		width: 100px;
		height: 130px;
		margin-top: 0;
	}

	.step-number {
		width: 44px;
		height: 44px;
	}

	.step-number span {
		font-size: 24px;
	}

	.step-name {
		font-size: 16px;
	}

	.step-desc {
		font-size: 12px;
	}

	.num-dop {
		gap: 12px;
		margin-bottom: 14px;
	}

	/* ✅ Steps title SVG — мобильная версия */
	.steps-title svg.none-m {

		position: absolute;
		top: -11px;
		left: 49%;
		transform: translateX(-50%);
		width: 260px;
		height: 62px;
		z-index: -1;
	}

	.steps-title svg.none-d {

		position: absolute;
		top: -8px;
		left: 50%;
		transform: translateX(21%);
		width: 266px;
		height: 56px;
		height: 49px;
		z-index: -1;
	}

	/* SVG "Завершение программы" */
	.step5-svg-desktop {
		display: none !important;
	}

	.step5-svg-mobile {
		display: block !important;
		position: absolute;
		top: -5px;
		left: -10px;
		width: 260px;
		height: 28px;
		z-index: -1;
	}

	/* Чек-лист */
	.checklist {
		grid-template-columns: 1fr;
		gap: 16px;
		margin-bottom: 30px;
	}

	.checklist-item-center {
		text-align: left !important;
		display: grid;
		grid-template-columns: auto 1fr;
		gap: 12px;
		align-items: flex-start;
	}

	.checklist-dot-center {
		margin: 8px 0 0 0;
	}

	.checklist-text {
		font-size: 15px;
	}

	/* Контрольные точки */
	.checkpoints {
		padding: 50px 0;
	}

	.checkpoints-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
		margin-top: 36px;
		margin-bottom: 36px;
	}

	.checkpoints-grid.bottom {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
		margin-bottom: 30px;
	}

	.checkpoint-card {
		padding-top: 55px;
		min-height: auto;
	}

	.checkpoint-img-wrapper {
		top: -40px;
		width: 85px;
		height: 85px;
	}

	.checkpoint-img {
		width: 85px;
		height: 85px;
	}

	.check-badge {
		width: 26px;
		height: 26px;
		border-width: 2px;
	}

	.checkpoint-text {
		font-size: 15px;
	}

	.checkpoint-ideal {
		font-size: 18px;
	}

	/* ✅ Телефоны — центрирование SVG */
	.phones-section {
		padding: 50px 0;
	}

	.phones-title {
		font-size: 32px;
		margin-bottom: 30px;
		text-align: center;
	}

	.phones-title span svg.none-d {
		display: block !important;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		top: -5px;
		width: 180px;
		height: 44px;
		right: auto;
	}

	.phones-wrap {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: flex-start;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		gap: 16px;
		padding: 0 16px 20px;
		margin: 0 -16px 24px;
		scrollbar-width: none;
	}

	.phones-wrap::-webkit-scrollbar {
		display: none;
	}

	.phone {
		width: 220px;
		height: 455px;
		flex-shrink: 0;
		scroll-snap-align: center;
	}

	.phone:hover {
		transform: none;
	}

	.phone-screen {
		border-radius: 28px;
	}

	.phone-notch {
		width: 75px;
		height: 20px;
		top: 10px;
	}

	.checklist-phones {
		grid-template-columns: 1fr;
		gap: 16px;
		margin-top: 24px;
	}

	.steps-title svg.none-m {
		display: block !important;
		position: absolute;
		top: -20px;
		left: 49%;
		transform: translateX(-50%);
		width: 217px;
		height: 76px;
		z-index: -1;
	}

	/* Тарелка */
	.plate-section {
		padding: 50px 0;
	}

	.plate-card {
		grid-template-columns: 1fr 1fr;
		padding: 0;
		height: auto;

		border-radius: 24px;
		background: #F6F7FA;
	}

	.plate-image-container {
		width: 100%;
		height: 200px;

	}

	.plate-image {
		top: -108px;
		left: -87px;
		width: 150%;
		height: 214%;
	}

	.plate-right {
		padding: 24px 20px 32px;
		text-align: center;
	}

	.plate-right h2 {
		font-size: 28px;
		margin-bottom: 14px;
	}

	.plate-right p {
		font-size: 15px;
		margin-bottom: 16px;
		line-height: 140%;
	}

	.plate-accent {
		font-size: 15px;
		margin-bottom: 24px;
	}

	.text-accent {
		left: 50%;
		transform: translateX(-50%);
		width: 250px;
		top: -5px;
	}

	.plate-right .btn {
		width: 100%;
	}

	/* FAQ */
	.faq-section {
		padding: 50px 0;
	}

	.faq-question {
		font-size: 16px;
		padding: 16px 20px;
	}

	.faq-toggle {
		width: 30px;
		height: 30px;
	}

	.faq-answer-inner {
		padding: 0 20px 20px;
		font-size: 15px;
	}

	/* Остались вопросы */
	.questions-section {
		padding: 50px 0;
	}

	.questions-card {
		display: flex;
		flex-direction: column;
		padding: 30px 24px;
		height: auto;
		gap: 24px;
		border-radius: 24px;
	}

	.questions-left {
		z-index: 2;
		width: 350px;
	}

	.questions-left h2 {
		font-size: 28px;
		margin-bottom: 10px;
	}

	.questions-sub {
		font-size: 17px;
		margin-bottom: 16px;
	}

	.questions-image {
		position: absolute;
		width: 100%;
		height: 350px;
		margin-top: 0;
		margin-bottom: 0;
	}

	.questions-circle {
		width: 220px;
		height: 220px;
		right: 0;
		bottom: 0px;
	}

	.questions-photo {
		width: 220px;
		height: 280px;
		right: 0px;
		bottom: 60px;
	}

	.questions-buttons {
		flex-direction: column;
		gap: 12px;
		margin-top: 40px;
	}

	.questions-buttons .btn {
		width: 100%;
		justify-content: center;
		padding: 16px;
		font-size: 15px;
	}

	.questions-card p {
		font-size: 16px;
		text-align: center;
	}

	.questions-footer {
		font-size: 16px;
		margin-top: 8px;
		text-align: center;
	}

	/* Купить */
	.buy-section {
		padding: 50px 0;
	}

	.buy-card {
		max-width: 400px;
		padding: 28px 20px;
	}

	.buy-card-tag {
		top: -16px;
		right: 16px;
		font-size: 14px;
		padding: 6px 12px;
		border-radius: 80px;
	}

	.buy-name {
		font-size: 17px;
	}

	.buy-duration {
		font-size: 40px;
	}

	.buy-price {
		font-size: 22px;
	}

	.buy-price-old {
		font-size: 18px;
	}

	/* Footer */
	.footer {
		padding: 36px 0;
	}

	.footer h3 {
		font-size: 26px;
	}
}

.none-b {
	display: none;
}

/* ================================================================
   📱 ПЛАНШЕТ ПОРТРЕТНЫЙ: 769px — 1024px
   Красивая адаптивная версия для iPad и аналогов
   ================================================================ */
@media (min-width: 768px) and (max-width: 1024px) {
	.container {
		padding: 0 40px;
	}

	/* Видимость SVG: показываем мобильные версии */

	.none-m {
		display: none !important;
	}

	/* Header */
	.header {
		width: calc(100% - 80px);
		left: 40px;
		transform: none;
		margin-left: 0;
		border-radius: 24px;
		padding: 12px 18px;
	}

	.header.expanded {
		left: 13px;
		width: calc(100% - 80px);
		max-width: none;
	}

	.logo {
		font-size: 30px;
	}

	/* ✅ Hero — центрированное содержимое */
	.hero {
		padding: 33px 0 60px;
		min-height: auto;
	}

	.hero .container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.hero-left {
		padding: 0;
		order: 1;
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.hero-right {
		height: 550px;
		order: 2;
	}

	.hero-title {
		font-size: 56px;
		display: inline-block;
	}

	.hero-title .hero-svg-mobile {
		display: block !important;
		left: 24%;
		transform: translateX(-50%);
		top: -10px;
		width: 200px;
		height: 65px;
	}

	.hero-subtitle {
		font-size: 18px;
		max-width: 600px;
		margin-bottom: 28px;
		line-height: 140%;
	}

	.hero-line-svg {
		width: 140px;
		margin-top: 21px;
		left: 20%;
		transform: translateX(-50%);
	}

	.hero-list {
		display: inline-block;
		text-align: left;
		margin-bottom: 28px;
	}

	.hero-list li {
		font-size: 16px;
		margin-bottom: 12px;
	}

	.price-tags {
		justify-content: center;
		margin-bottom: 28px;
	}

	.btn {
		padding: 20px 50px;
		font-size: 17px;
	}

	/* Sections */
	.section {
		padding: 60px 0;
	}

	.section-title {
		font-size: 44px;
		margin-bottom: 18px;
	}

	.section-subtitle {
		font-size: 18px;
	}

	/* ✅ 4 блока — 2x2 красивая сетка */

	.block-item {
		flex: 1 1 calc(50% - 12px);
		max-width: calc(50% - 12px);
		min-width: 280px;
		padding: 24px 20px;
	}

	.block-item1 {
		flex: 1 1 calc(50% - 12px);
		max-width: calc(50% - 12px);
		min-width: 280px;
		padding: 24px 20px;
	}

	.block-icon {
		width: 64px;
		height: 64px;
		margin-bottom: 18px;
	}

	.block-icon::after {
		width: 84px;
		height: 84px;
	}

	.block-title {
		font-size: 19px;
	}

	.block-text {
		font-size: 16px;
	}

	.section-bottom-text {
		font-size: 18px;
		margin: 28px auto;
	}

	/* Методика */
	.methodology {
		padding: 60px 0;
	}

	.method-points {
		gap: 30px;
		margin-top: 40px;
	}

	.method-points::before {
		left: 14%;
		right: 14%;
	}

	.method-dot {
		width: 22px;
		height: 22px;
	}

	.method-label {
		font-size: 20px;
	}

	.method-desc {
		font-size: 16px;
	}

	/* О компании */
	.about-company {
		padding: 80px 0;
	}

	.about-card {
		grid-template-columns: 1fr 2.5fr;
		padding: 36px;
		gap: 20px;
	}

	.about-image {
		max-width: 220px;
		max-height: 450px;
	}

	.about-image img {
		width: 251px;
		bottom: -35px;
		left: -35px;
	}

	.about-right {
		gap: 20px;
		padding-bottom: 20px;
	}

	.about-item-text {
		font-size: 17px;
	}

	/* Оранжевые блоки */
	.orange-section {
		padding: 60px 0;
	}

	.orange-blocks {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
		margin: 40px 0;
	}

	.orange-blocks::before {
		display: none;
	}

	.orange-block {
		padding: 24px 20px;
	}

	.orange-block-icon {
		width: 64px;
		height: 64px;
	}

	.orange-block-icon::after {
		width: 84px;
		height: 84px;
	}

	.orange-block-title {
		font-size: 19px;
	}

	.orange-block-text {
		font-size: 16px;
	}

	/* ✅ Results SVG — центрирование мобильной версии */
	.results-line-1,
	.results-line-2 {
		display: none !important;
	}

	.results-line-mobile {
		display: block !important;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		top: 42px;
		width: 482px;
		height: 4px;
		margin-top: 0;
	}

	/* Результаты */
	.results-section {
		padding: 60px 0;
	}

	.result-card {
		flex: 0 0 380px;
		height: 400px;
	}

	/* ✅ 5 шагов — адаптивная сетка */
	.steps-section {
		padding: 60px 0;
	}

	.steps-title {
		font-size: 44px;
		margin-bottom: 40px;
	}

	.steps-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.steps-grid.bottom {
		grid-template-columns: repeat(2, 1fr);
		max-width: 100%;
		margin: 20px auto 40px;
	}

	.step-card {
		height: 220px;
		padding: 22px;
	}

	/* ✅ Steps title SVG */
	.steps-title svg.none-m {
		display: block !important;
		position: absolute;
		top: -15px;
		left: 49%;
		transform: translateX(-50%);
		width: 280px;
		height: 76px;
		z-index: -1;
	}

	/* ✅ "Завершение программы" SVG */
	.step5-svg-desktop {
		display: none !important;
	}

	.step5-svg-mobile {
		display: block !important;
		left: -5px;
		bottom: 30px;
		width: 240px;
		height: 26px;
	}

	/* Чек-лист */
	.checklist {
		grid-template-columns: 1fr;
		gap: 24px;
		max-width: 600px;
		margin: 0 auto 40px;
	}

	.checklist-item-center {
		display: grid;
		grid-template-columns: auto 1fr;
		text-align: left !important;
		gap: 16px;
	}

	.checklist-dot-center {
		margin: 6px 0 0 0;
	}

	.checklist-text {
		font-size: 16px;
	}

	/* Контрольные точки */
	.checkpoints {
		padding: 60px 0;
	}

	.checkpoints-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
		margin-bottom: 60px;

	}

	.checkpoints-grid.bottom {
		grid-template-columns: repeat(4, 1fr);
		gap: 16px;
		margin-bottom: 40px;
	}

	.checkpoint-card {
		padding-top: 60px;
		min-height: 170px;
	}

	.checkpoint-img-wrapper {
		top: -45px;
		width: 90px;
		height: 90px;
	}

	.checkpoint-img {
		width: 90px;
		height: 90px;
	}

	.checkpoint-text {
		font-size: 16px;
	}

	/* ✅ Телефоны */
	.phones-section {
		padding: 60px 0;
	}

	.phones-title {
		font-size: 44px;
		margin-bottom: 40px;
		text-align: center;
	}

	/* ✅ Phones SVG центрирование */
	.phones-title span svg.none-d {
		display: block !important;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		top: -6px;
		width: 200px;
		height: 47px;
		right: auto;
	}

	.phones-wrap {
		gap: 24px;
		justify-content: center;
		flex-wrap: wrap;
	}

	.phone {
		width: 240px;
		height: 495px;
	}

	.checklist-phones {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
		margin-top: 40px;
	}

	/* Тарелка */
	.plate-right {
		text-align: center;
	}

	.plate-section {
		padding: 60px 0;
	}

	.plate-card {
		grid-template-columns: 1fr;
		padding: 48px;
		height: auto;
		min-height: 400px;
	}

	.plate-image-container {
		height: 300px;
	}

	.plate-image {
		top: -160px;
		left: -220px;
		width: 180%;
		height: 180%;
	}

	.plate-right h2 {
		font-size: 44px;
	}

	.plate-right p {
		font-size: 16px;
	}

	.text-accent {
		left: -10px;
		top: -4px;
		width: 250px;
	}

	/* FAQ */
	.faq-section {
		padding: 60px 0;
	}

	.faq-question {
		font-size: 17px;
		padding: 20px 24px;
	}

	.faq-answer-inner {
		font-size: 16px;
		padding: 0 24px 24px;
	}

	/* Остались вопросы */
	.questions-section {
		padding: 80px 0;
	}

	.questions-card {
		grid-template-columns: 1.2fr 1fr;
		padding: 48px;
		height: auto;
		min-height: 380px;
		gap: 40px;
	}

	.questions-left h2 {
		font-size: 44px;
		margin-bottom: 12px;
	}

	.questions-sub {
		font-size: 18px;
	}

	.questions-image {
		width: 400px;
		height: 450px;
		margin-top: -130px;
		margin-bottom: -40px;
	}

	.questions-circle {
		width: 360px;
		height: 320px;
		right: -55px;
		bottom: -50px;
	}

	.questions-photo {
		width: 260px;
		height: 360px;
		right: 50px;
		bottom: 90px;
	}

	.questions-buttons {
		gap: 14px;
		display: inline-grid;
	}

	.questions-footer {
		font-size: 18px;
	}

	/* Купить */
	.buy-section {
		padding: 60px 0;
	}

	.buy-title {
		font-size: 44px;
	}

	.buy-card {
		padding: 32px;
	}

	.buy-card-tag {
		top: -18px;
		right: 20px;
		font-size: 16px;
		padding: 7px 16px;
	}

	.buy-duration {
		font-size: 48px;
	}

	/* Footer */
	.footer {
		padding: 44px 0;
	}

	.footer h3 {
		font-size: 28px;
	}
}


/* ================================================================
   💻 ПЛАНШЕТ ЛАНДШАФТНЫЙ / МАЛЕНЬКИЙ НОУТ: 1025px — 1200px
   ================================================================ */
@media (min-width: 1025px) and (max-width: 1200px) {
	.container {
		padding: 0 40px;
	}

	/* Header остаётся в desktop стиле */
	.header {
		left: 50%;
		margin-left: -25%;
	}

	/* Hero */
	.hero-title {
		font-size: 56px;
	}

	.hero-title .hero-svg-desktop {
		width: 190px;
		height: 70px;
		top: -6px;
	}

	.hero-subtitle {
		font-size: 19px;
		text-wrap: nowrap;
	}

	.hero-line-svg {
		width: 130px;
		margin-top: 18px;
	}

	.hero-list li {
		font-size: 17px;
	}

	.hero-right {
		height: 700px;
	}

	/* 4 блока — уменьшенный gap */
	.four-blocks {
		gap: 20px;
	}

	.four-blocks1 {
		gap: 20px;
	}


	/* Методика */
	.method-points::before {
		left: 15%;
		right: 15%;
	}

	/* О компании */
	.about-card {
		grid-template-columns: 1fr 3fr;
		padding: 0 20px 20px 0;
	}

	.about-image img {
		width: 260px;
		bottom: -20px;
	}

	/* Оранжевые блоки */
	.orange-blocks {
		gap: 30px;
	}

	/* Результаты */
	.result-card {
		flex: 0 0 380px;
		height: 420px;
	}

	/* 5 шагов */
	.steps-grid {
		gap: 16px;
	}

	.step-card {
		height: 210px;
		padding: 22px;
	}

	/* Контрольные точки */
	.checkpoints-grid.bottom {
		grid-template-columns: repeat(4, 1fr);
		gap: 16px;
	}

	/* Телефоны */
	.phones-wrap {
		gap: 24px;
	}

	.phone {
		width: 260px;
		height: 535px;
	}

	/* ✅ Phones SVG адаптируется */

	.steps-title svg.none-m {
		display: block !important;
		position: absolute;
		top: -15px;
		left: 49%;
		transform: translateX(-50%);
		width: 320px;
		height: 76px;
		z-index: -1;
	}

	/* Тарелка */
	.plate-card {
		padding: 50px;
		height: auto;
		min-height: 420px;
	}

	.plate-image-container {
		width: 116%;
	}

	.plate-image {
		top: -157px;
		left: -280px;
		width: 190%;
		height: 190%;
	}

	.plate-right h2 {
		font-size: 48px;
	}

	/* Остались вопросы */
	.questions-card {
		padding: 50px;
		height: auto;
		min-height: 360px;
	}

	.questions-left h2 {
		font-size: 48px;
	}

	.questions-image {
		width: 240px;
		height: 450px;
		margin-top: -150px;
		margin-bottom: -50px;
	}

	.questions-circle {
		width: 350px;
		height: 350px;
		right: -4px;
		bottom: -60px;
	}

	.questions-photo {
		width: 300px;
		height: 400px;
		right: 60px;
		bottom: -10px;
	}

	/* Купить */
	.buy-duration {
		font-size: 48px;
	}
}


/* ================================================================
   📱 МОБИЛЬНАЯ ВЕРСИЯ: до 480px (существующая, не трогаем)
   ================================================================ */
@media (max-width: 480px) {
	.none-d {
		display: inline !important;
	}

	.none-m {
		display: none !important;
	}

	.text-accent {
		left: -28px;
	}

	.steps-title svg.none-m {
		display: block !important;
		position: absolute;
		top: -26px;
		left: 49%;
		transform: translateX(-50%);
		width: 175px;
		height: 76px;
		z-index: -1;
	}

	.header {
		transform: translateX(27%);
		top: 16px;
		width: calc(100% - 32px);
		left: 16px;
		border-radius: 20px;
		padding: 8px 12px;
	}

	.header.expanded {
		width: calc(100% - 32px);
	}

	.logo {
		font-size: 24px;
	}

	.logo span {
		font-size: 10px;
	}

	.burger {
		width: 32px;
		height: 32px;
	}

	.hero {
		padding: 100px 0 40px;
		background: #FDFDFE;
	}

	.hero .container {
		padding: 0 16px;
	}

	.hero-left {
		text-align: center;
		padding: 0;
		order: 1;
	}

	.hero-title {
		font-size: 40px;
		margin-bottom: 16px;
	}

	.hero-subtitle {
		text-wrap: nowrap;
		font-size: 14px;
		margin-bottom: 20px;
		line-height: 170%;
	}

	.hero-list {
		margin-bottom: 24px;
	}

	.hero-list li {
		font-size: 13px;
		margin-bottom: 8px;
	}

	.icon-circle {
		width: 20px;
		height: 20px;
	}

	.icon-circle svg {
		width: 12px;
		height: 12px;
	}

	.price-tags {
		flex-direction: row;
		align-items: center;
		margin-bottom: 20px;
	}

	.tag-discount {
		padding: 6px 12px;
		font-size: 13px;
		border-radius: 12px;
	}

	.tag-price {
		padding: 6px 12px;
		border-radius: 12px;
	}

	.price-new {
		font-size: 14px;
	}

	.price-old {
		font-size: 12px;
	}

	.btn {
		width: 100%;
		padding: 16px;
		font-size: 15px;
		border-radius: 16px;
	}

	.hero .container {
		display: flow;
	}

	.hero-right {
		height: auto;
		order: 2;
	}

	.hero-img {
		border-radius: 16px;
		height: 400px;
	}

	.section-title {
		font-size: 26px;
		margin-bottom: 16px;
	}

	.section {
		padding: 40px 0;
	}

	.container {
		padding: 0 16px;
	}

	.four-blocks1 {
		flex-direction: column;
		gap: 16px;
	}

	.four-blocks1::before {
		width: 2px;
		height: 84%;
		left: 49.9%;
	}

	.four-blocks {
		flex-direction: column;
		gap: 16px;
	}

	.four-blocks::before {
		width: 2px;
		height: 84%;
		left: 49.9%;
	}

	.block-item {
		flex: 1 1 100%;
		min-height: 100px;
		min-width: 100%;
		border: 2px solid #99D128 !important;
		border-radius: 20px !important;
		padding: 24px 16px;
	}

	.block-item {
		flex: 1 1 100%;
		min-height: 100px;
		min-width: 100%;

		border-radius: 20px !important;
		padding: 24px 16px;
	}

	.orange-block {
		min-height: 100px;
		min-width: 100%;
	}

	.block-icon {
		width: 48px;
		height: 48px;
		margin-bottom: 12px;
	}

	.block-icon::after {
		width: 64px;
		height: 64px;
	}

	.block-icon svg {
		width: 24px;
		height: 24px;
	}

	.block-title {
		font-size: 16px;
	}

	.block-text {
		font-size: 14px;
	}

	.section-bottom-text {
		font-size: 16px;
		margin: 24px auto;
	}

	/* Методика */
	.methodology {
		padding: 50px 20px;
	}

	.method-points {
		flex-direction: column;
		gap: 28px;
		align-items: center;
		position: relative;
		max-width: 400px;
		margin: 0 auto;
	}

	.method-points::before {
		left: 50.3%;
		top: 10px;
		bottom: -8px;
		width: 2px;
		border-left: 2px dashed #6BA907;
		border-top: none;
		right: auto;
		transform: translateX(-50%);
	}

	.method-point {
		padding: 0;
		text-align: left;
		width: 100%;
		padding-left: calc(50% + 30px);
	}

	.method-point:nth-child(2) {
		padding-left: 0;
		padding-right: calc(50% + 20px);
		text-align: right;
	}

	.method-point:nth-child(3) {
		padding-left: calc(50% + 30px);
		padding-right: 0;
		text-align: left;
	}

	.method-dot {
		position: absolute;
		left: 50%;
		top: 4px;
		width: 14px;
		height: 14px;
		transform: translateX(-50%);
		margin: 0;
	}

	.method-label {
		font-size: 18px;
	}

	.method-desc {
		font-size: 15px;
	}

	.methodology .btn-green {
		width: 100%;
		padding: 18px;
		border-radius: 16px;
		font-size: 16px;
	}

	.methodology .section-title {
		font-size: 26px;
		text-transform: uppercase;
		margin-bottom: 16px;
		text-align: center;
		letter-spacing: 0.5px;
	}

	.methodology .section-subtitle {
		font-size: 14px;
		text-align: center;
		margin-bottom: 8px;
		font-weight: 400;
		line-height: 1.4;
	}

	.methodology p[style*="font-weight: 600"] {
		font-size: 15px;
		margin-bottom: 32px !important;
		font-weight: 700 !important;
	}



	.about-company {
		padding: 40px 0;
	}

	.about-card {
		background: #F6F7FA;
		border-radius: 20px;
		display: grid;
		grid-template-columns: 1fr 3fr;
		padding: 5px;
		min-height: auto;
		align-items: center;
	}

	.about-image {
		max-width: 98px;
		max-height: 200px;
		border-radius: 12px;
		position: relative;
		flex-shrink: 0;
		margin: -36px;
		min-height: auto;
	}

	.about-image img {
		position: relative;
		width: 154%;
		bottom: auto;
		border-radius: 12px;
	}

	.about-right {
		padding: 0;
		gap: 16px;
	}

	.about-right h2 {
		font-size: 22px !important;
		margin-bottom: 0;
	}

	.about-item {
		gap: 12px;
		align-items: flex-start;
	}

	.about-item-icon {
		width: 24px;
		height: 24px;
		border-radius: 6px;
	}

	.about-item-icon svg {
		width: 14px;
		height: 14px;
	}

	.about-item-text {
		font-size: 14px;
		line-height: 140%;
	}

	.orange-section {
		padding: 40px 0;
	}

	.results-line-2 {
		width: 242px;
		margin-top: 20px;
		-webkit-margin-top-collapse: 15px;
	}

	.orange-section .section-title {
		font-size: 22px;
	}

	.orange-blocks {
		grid-template-columns: 1fr;
		gap: 16px;
		margin: 24px 0;
	}

	.orange-block-icon {
		width: 48px;
		height: 48px;
	}

	.orange-block-icon::after {
		width: 64px;
		height: 64px;
	}

	.orange-block-title {
		font-size: 16px;
	}

	.orange-block-text {
		font-size: 14px;
	}

	.results-section {
		padding: 40px 0;
	}

	.results-section .section-title {
		font-size: 26px;
	}

	.slider-nav-btn {
		width: 40px;
		height: 40px;
	}

	.slider-nav-btn svg {
		width: 16px;
		height: 16px;
	}

	.result-card {
		flex: 0 0 280px;
		height: 320px;
	}

	.result-badge {
		width: 80px;
		height: 80px;
		font-size: 18px;
	}

	.steps-section {
		padding: 40px 0;
	}

	.steps-title {
		font-size: 26px;
		margin-bottom: 32px;
	}

	.steps-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.steps-grid.bottom {
		grid-template-columns: 1fr;
		margin: 16px auto 24px;
	}

	.step-card {
		height: auto;
		grid-template-columns: 2fr 1fr;
		min-height: 170px;
		gap: 12px;
		padding: 20px 16px;
	}

	.step-content {
		order: 1;
	}

	.step-image {
		order: 2;
		width: 100%;
		height: 160px;
		margin-top: 0;
	}

	.step-number {
		width: 40px;
		height: 40px;
	}

	.step-number span {
		font-size: 24px;
	}

	.step-name {
		font-size: 16px;
	}

	.step-desc {
		font-size: 12px;
	}

	.num-dop {
		gap: 10px;
		margin-bottom: 12px;
	}

	.num-dop svg {
		width: 40px;
		height: 40px;
	}

	.checklist {
		grid-template-columns: 1fr;
		gap: 16px;
		margin-bottom: 24px;
	}

	.checklist-item-center {
		display: grid;
		text-align: left !important;
		grid-template-columns: auto 1fr;
		gap: 12px;
		align-items: flex-start;
	}

	.checklist-dot-center {
		width: 8px;
		height: 8px;
		margin: 8px 0 0 0;
	}

	.checklist-text {
		font-size: 14px;
	}

	.checklist-phones {
		grid-template-columns: 1fr;
		gap: 16px;
		margin-top: 24px;
	}

	.checkpoints {
		padding: 40px 0;
	}

	.checkpoints .section-title {
		font-size: 26px;
	}

	.checkpoints-grid {
		grid-template-columns: 1fr;
		gap: 46px;
		margin-bottom: 50px;
	}

	.checkpoints-grid.bottom {
		grid-template-columns: 1fr;
		gap: 46px;
		margin-bottom: 24px;
	}

	.checkpoint-card {
		padding-top: 60px;
		min-height: auto;
	}

	.checkpoint-img-wrapper {
		top: -40px;
		width: 80px;
		height: 80px;
	}

	.checkpoint-img {
		width: 80px;
		height: 80px;
	}

	.check-badge {
		width: 24px;
		height: 24px;
		border-width: 2px;
	}

	.check-badge svg {
		width: 14px;
		height: 14px;
	}

	.checkpoint-text {
		font-size: 16px;
		margin-top: 0;
	}

	.checkpoints .text-center p {
		font-size: 18px;
	}

	.phones-section {
		padding: 40px 0;
	}

	.phones-title {
		font-size: 26px;
		margin-bottom: 32px;
	}

	.phones-wrap {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: flex-start;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		gap: 16px;
		padding: 0 16px 20px;
		margin: 0 -16px 24px;
		scrollbar-width: none;
	}

	.phones-wrap::-webkit-scrollbar {
		display: none;
	}

	.phone {
		width: 200px;
		height: 410px;
		flex-shrink: 0;
		scroll-snap-align: center;
		border-radius: 32px;
		border-width: 3px;
		padding: 8px;
	}

	.phone:hover {
		transform: none;
	}

	.phone-screen {
		border-radius: 24px;
	}

	.phone-notch {
		width: 70px;
		height: 18px;
		top: 8px;
	}

	.plate-section {
		padding: 40px 0;
	}

	.plate-card {
		background: #FFF;
		border-radius: 20px;
		display: flex;
		flex-direction: column;
		padding: 0;
		height: auto;
		overflow: hidden;
	}

	.plate-image-container {
		width: 100%;
		height: 180px;
		overflow: hidden;
		position: relative;
	}

	.plate-image {
		width: 100%;
		height: 175%;
		position: absolute;
		top: 0;
		left: 0;
		background-size: cover;
		background-position: center;
		transform: none;
	}

	.plate-right {
		border-radius: 20px;
		background: #F6F7FA;
		padding: 24px 20px 32px;
		text-align: center;
	}

	.plate-right h2 {
		font-size: 24px;
		margin-bottom: 12px;
	}

	.plate-right p {
		font-size: 14px;
		margin-bottom: 16px;
		line-height: 140%;
	}

	.plate-accent {
		font-size: 14px;
		margin-bottom: 24px;
	}

	.plate-right .btn {
		width: 100%;
	}

	.faq-section {
		padding: 40px 0;
	}

	.faq-section .section-title {
		font-size: 26px;
	}

	.faq-question {
		font-size: 15px;
		padding: 16px;
	}

	.faq-toggle {
		width: 28px;
		height: 28px;
	}

	.faq-answer-inner {
		padding: 0 16px 16px;
		font-size: 14px;
	}

	.questions-section {
		padding: 40px 0;
	}

	.questions-card {
		background: #F6F7FA;
		border-radius: 20px;
		display: flex;
		flex-direction: column;
		padding: 24px 20px;
		height: auto;
		gap: 24px;
	}

	.questions-left {
		z-index: 2;
	}

	.questions-circle {
		right: -22%;
		bottom: 130px;
		width: 193px;
		height: 193px;
	}

	.questions-photo {
		right: -22%;
		bottom: 112px;
		width: 200px;
		height: 250px;
	}

	.questions-image {
		margin-top: -55px;
		margin-bottom: 0;
		position: absolute;
		height: 389px;
		width: 318px;
		z-index: 1;
	}

	.questions-left h2 {
		font-size: 26px;
		margin-bottom: 8px;
	}

	.questions-sub {
		font-size: 16px;
		margin-bottom: 20px;
	}

	.questions-buttons {
		background: #F6F7FA;
		margin-top: 80px;
		border-radius: 20px;
		flex-direction: column;
		gap: 12px;
	}

	.questions-buttons .btn {
		width: 100%;
		justify-content: center;
		padding: 16px;
		font-size: 15px;
	}

	.questions-card p {
		font-size: 16px;
		margin-top: 8px;
		line-height: 140%;
		text-align: center;
	}

	.questions-card p a {
		color: #FF5900;
		text-decoration: underline;
	}

	.buy-section {
		padding: 40px 0;
	}

	.buy-title {
		font-size: 26px;
		margin-bottom: 24px;
	}

	.buy-card {
		max-width: 100%;
		padding: 24px 16px;
	}

	.buy-card-tag {
		top: -16px;
		right: 16px;
		font-size: 14px;
		padding: 6px 12px;
	}

	.buy-name {
		font-size: 16px;
	}

	.buy-duration {
		font-size: 36px;
	}

	.buy-price {
		font-size: 20px;
	}

	.buy-price-old {
		font-size: 16px;
	}

	.footer {
		padding: 32px 0;
	}

	.footer h3 {
		font-size: 24px;
	}

	.footer-links {
		gap: 16px;
	}

	.footer-links a {
		font-size: 12px;
	}

	.burger-menu {
		min-width: 240px;
		right: -16px;
		top: 50px;
		padding: 12px;
	}

	.burger-menu a {
		font-size: 14px;
		padding: 10px 12px;
	}
}


/* ================================================================
   📱 Очень маленькие экраны: до 360px
   ================================================================ */


/* ================================================================
   🔄 ПЛАВНЫЕ ПЕРЕХОДЫ для промежуточных размеров
   ================================================================ */
@media (min-width: 600px) and (max-width: 768px) {
	.hero-title {
		font-size: 48px;
	}

	.section-title {
		font-size: 36px;
	}

	.questions-left h2 {
		font-size: 30px;
	}

	.phones-title {
		font-size: 34px;
	}
}

/* =========================================
   ИСПРАВЛЕНИЕ 1: SVG ИКОНКИ (Z-INDEX BUG)
   isolation: isolate не дает SVG с z-index: -1 
   улететь под фон секции.
   ========================================= */
.hero-title,
.hero-subtitle,
.steps-title,
.plate-accent,
.steps-grid.bottom .step-card:last-child .step-name {
	isolation: isolate;
}

#results .section-title span {
	isolation: isolate;
}

/* =========================================
   ИСПРАВЛЕНИЕ 2: ПЛАНШЕТНАЯ ВЕРСИЯ (768px - 1024px)
   Делаем вид как на десктопе (перебиваем мобильные правила).
   ========================================= */
@media (min-width: 768px) and (max-width: 1024px) {

	/* HERO: Возвращаем 2 колонки */
	.hero .container {
		grid-template-columns: 1fr 1fr !important;
		gap: 40px !important;
	}

	.hero-left {
		padding: 120px 0 0 !important;
		order: 1 !important;
		text-align: left !important;
	}

	.hero-right {
		height: 600px !important;
		order: 2 !important;
		display: flex !important;
	}

	.hero-img {
		height: 100% !important;
		border-radius: 20px !important;
	}

	/* 4 БЛОКА: В одну линию */
	.four-blocks {
		flex-wrap: nowrap !important;
		gap: 20px !important;
	}

	.four-blocks1 {
		flex-wrap: nowrap !important;
		gap: 20px !important;
	}

	.block-item {
		flex: 1 !important;
		max-width: none !important;
		min-width: 0 !important;
		margin-bottom: 0 !important;
	}

	.block-item1 {
		flex: 1 !important;
		max-width: none !important;
		min-width: 0 !important;
		margin-bottom: 0 !important;
	}

	/* ОРАНЖЕВЫЕ БЛОКИ: 4 колонки */
	.orange-blocks {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 20px !important;
	}

	.orange-blocks::before {
		display: block !important;
	}

	/* ШАГИ: 3 и 2 колонки */
	.steps-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	.steps-grid.bottom {
		justify-content: center;
		display: flex;
		grid-template-columns: repeat(2, 1fr) !important;
		max-width: 860px !important;
	}

	/* КОНТРОЛЬНЫЕ ТОЧКИ: 3 и 4 колонки */
	.checkpoints-grid {
		grid-template-columns: repeat(3, 1fr) !important;
	}

	.checkpoints-grid.bottom {
		grid-template-columns: repeat(4, 1fr) !important;
	}

	/* ТЕЛЕФОНЫ: Сетка как на десктопе */
	.phones-wrap {
		flex-wrap: wrap !important;
		justify-content: center !important;
		gap: 20px !important;
	}

	.phone {
		width: 220px !important;
		height: 450px !important;
	}

	/* ТАРЕЛКА: 2 колонки */
	.plate-card {
		grid-template-columns: 1fr !important;

		height: auto !important;
		min-height: 300px !important;
		overflow: visible !important;
	}

	.plate-image-container {
		height: 300px !important;
	}

	.plate-image {
		width: 100% !important;
		height: 180% !important;
		top: -200px !important;
		left: -8px !important;
	}

	/* ОСТАЛИСЬ ВОПРОСЫ: 2 колонки */
	.questions-card {
		grid-template-columns: 1.5fr 1fr !important;
		padding: 40px !important;
		height: auto !important;
		min-height: 350px !important;
	}

	.questions-left {
		z-index: 2;
		width: 350px;
	}

	.questions-image {
		width: 100% !important;
		height: 450px !important;
		margin-top: -106px !important;
		margin-bottom: -40px !important;
	}

	.questions-circle {
		width: 350px !important;
		height: 350px !important;
	}

	.questions-photo {
		width: 280px !important;
		height: 350px !important;
		bottom: 0px;
		right: 16px;
	}
}

@media (max-width:1024px) {
	.none-b {
		display: inline-block;
	}
}

/* =========================================
   ИСПРАВЛЕНИЕ 3: МОБИЛЬНАЯ ВЕРСИЯ (до 767px)
   Гарантируем, что картинка в Hero не пропадает.
   ========================================= */
@media (max-width: 768px) {
	.metod-btn {
		margin-top: 8px;
	}

	.hero-right {
		padding-top: 20px;
		display: flex !important;
		height: auto !important;
		order: 2 !important;
	}

	.hero-img {
		width: 100% !important;
		height: 500px !important;
		display: block !important;
		border-radius: 16px !important;
	}
}

/* ========== МОДАЛЬНОЕ ОКНО ДЛЯ ТЕЛЕФОНОВ ========== */
.phone-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.92);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	padding: 20px;
}

.phone-modal.active {
	opacity: 1;
	visibility: visible;
}

.phone-modal-content {
	position: relative;
	transform: scale(0.7) translateY(30px);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: default;
	max-width: 95vw;
	max-height: 95vh;
}

.phone-modal.active .phone-modal-content {
	transform: scale(1.0) translateY(0);
}

.phone-modal-content .phone {
	width: 380px;
	height: 780px;
	max-height: 85vh;
	max-width: 90vw;
	aspect-ratio: 277 / 573;
	transform: none !important;
	filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.8));
	margin: 0 auto;
	display: block;
	pointer-events: none;
}

.phone-modal-close {
	position: absolute;
	top: -50px;
	right: -10px;
	width: 44px;
	height: 44px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	color: #fff;
	transition: all 0.3s ease;
	z-index: 10;
	line-height: 1;
	padding: 0;
}

.phone-modal-close:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: rotate(90deg) scale(1.1);
	border-color: rgba(255, 255, 255, 0.5);
}

/* Улучшаем hover на самих телефонах */
.phones-section .phone {
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.phones-section .phone:hover {
	transform: translateY(-15px) scale(1.03);
	filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* На мобильных отключаем hover */
@media (max-width: 768px) {
	.questions-section .container {
		padding: 0;
		overflow: hidden;
	}

	.phones-section .phone:hover {
		transform: none;
		filter: none;
	}

	.phone-modal-content .phone {
		width: 300px;
		height: 620px;
	}

	.phone-modal-close {
		top: -45px;
		right: 50%;
		transform: translateX(50%);
	}

	.phone-modal-close:hover {
		transform: translateX(50%) rotate(90deg) scale(1.1);
	}

	.phones-line-1 {
		position: absolute;
		top: -11px;
		right: -18px;
		/* ✅ Относительное позиционирование от края span */
		width: 125px;
		height: 58px;
		pointer-events: none;
	}

	.dot {
		margin: 0 auto 0;
	}

	.dot1 {
		margin: 0 auto 0;
	}
}

@media (max-width: 480px) {
	.phones-line-1 {
		position: absolute;
		top: -15px;
		right: -15px;
		/* ✅ Относительное позиционирование от края span */
		width: 100px;
		height: 58px;
		pointer-events: none;
		-webkit-margin-top-collapse: -10px;
	}

	.phone-modal-content .phone {
		width: 260px;
		height: 540px;
	}

	.hero-line-svg {
		width: 97px;
	}
}

/* Убираем старые стили активного телефона */
.phone.active {
	position: static !important;
	transform: none !important;
	z-index: auto !important;
	box-shadow: none !important;
}


@media (min-width:768px) and (max-width: 1330px) {
	.four-blocks {
		grid-template-columns: repeat(2, 1fr);
		display: grid;
		flex-wrap: wrap;
		gap: 24px;
	}

	.four-blocks1 {
		grid-template-columns: repeat(2, 1fr);
		display: grid;
		flex-wrap: wrap;
		gap: 24px;
	}
}

@media (min-width:1024px) and (max-width:1330px) {
	.block-item {
		flex: 1 1 100%;
		min-height: 180px;
		min-width: 100%;

		border-radius: 20px !important;
		padding: 24px 16px;
	}

	.block-item1 {
		flex: 1 1 100%;
		min-height: 180px;
		min-width: 100%;

		border-radius: 20px !important;
		padding: 24px 16px;
	}
}

@media (min-width:768px) and (max-width:1330px) {
	.four-blocks1::before {
		display: none;
	}

	.four-blocks::before {
		display: none;
	}

	.dot {
		display: none;
	}

	.dot1 {
		display: none;
	}

}

@media (max-width:450px) {
	.questions-circle {
		right: -10%;
		bottom: 130px;
		width: 193px;
		height: 193px;
	}

	.questions-photo {
		right: -10%;
		bottom: 112px;
		width: 200px;
		height: 250px;
	}
}

@media (max-width:370px) {
	.hero-subtitle {
		font-size: 12px;
	}

	.btn {
		padding: 14px;
		font-size: 14px;
	}

	.hero-line-svg {
		width: 84px;
		margin-top: 16px;
	}

	.about-card {
		grid-template-columns: 1fr 2fr;
	}

	.about-item-text {
		font-size: 13px;
	}

	.questions-circle {
		right: 3%;
	}

	.questions-photo {
		right: 3%;
	}

	.four-blocks1::before {
		left: 49.8%;
	}

	.four-blocks::before {
		left: 49.8%;
	}

}

@media (max-width:350px) {
	.about-item-text {
		font-size: 12px;
	}
}

@media (max-width:330px) {
	.about-item-text {
		font-size: 11.6px;
	}
}