/* UI System: Базовые настройки и переменные */

/* шрифты */
@font-face {
	font-family: "Inter";
	src:
		url("../fonts/Inter/Inter-Regular.woff2") format("woff2"),
		url("../fonts/Inter/Inter-Regular.woff") format("woff"),
		local("Inter-Regular");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	src:
		url("../fonts/Inter/Inter-Medium.woff2") format("woff2"),
		url("../fonts/Inter/Inter-Medium.woff") format("woff"),
		local("Inter-Medium");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	src:
		url("../fonts/Inter/Inter-SemiBold.woff2") format("woff2"),
		url("../fonts/Inter/Inter-SemiBold.woff") format("woff"),
		local("Inter-SemiBold");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	src:
		url("../fonts/Inter/Inter-Bold.woff2") format("woff2"),
		url("../fonts/Inter/Inter-Bold.woff") format("woff"),
		local("Inter-Bold");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

:root {
	/* Цветовая палитра */
	--primary: #0056b3;
	/* Доверительный синий */
	--primary-dark: #003d7a;
	--accent: #e63946;
	/* Экстренный красный */
	--accent-hover: #c1121f;
	--text-main: #2b2d42;
	/* Темно-синий/черный для текста */
	--text-muted: #465059;
	/* Серый текст */
	--bg-light: #f8f9fa;
	/* Светлый фон секций */
	--bg-white: #ffffff;

	/* Сетка и отступы */
	--container-width: 1200px;
	--section-padding: 80px 0;
	--border-radius: 8px;

	/* Тени */
	--shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
	--shadow-strong: 0 10px 30px rgba(0, 0, 0, 0.12);

	/* Шрифты */
	--font-main: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Сброс стилей */
/* Reset and base styles  */
* {
	padding: 0px;
	margin: 0px;
	border: none;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Links */

a,
a:link,
a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	font-size: inherit;
	font-weight: inherit;
}

ul,
ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

img,
svg {
	max-width: 100%;
	height: auto;
}

address {
	font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	background-color: transparent;
}

input::-ms-clear {
	display: none;
}

button,
input[type="submit"] {
	display: inline-block;
	box-shadow: none;
	background-color: transparent;
	background: none;
	cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
	outline: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

legend {
	display: block;
}

html.burger-lock {
	overflow-y: hidden;
}
html.lock {
	overflow-y: hidden;
}

body {
	font-family: var(--font-main);
	color: var(--text-main);
	line-height: 1.6;
	background-color: var(--bg-white);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
body.burger-lock {
	overflow: hidden;
}
body.lock {
	overflow: hidden;
}
body.no-scroll {
	overflow: hidden;
}

/* Сетка */
.container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 20px;
}

.section-padding {
	padding: var(--section-padding);
}
.section-offset {
	margin-bottom: 100px;
}
.bg-light {
	background-color: var(--bg-light);
}

/* Типографика */
.title-h1,
.title-h2,
.title-h3 {
	line-height: 1.2;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.title-h1 {
	font-size: 2.8rem;
}

.title-h2 {
	font-size: 2.2rem;
	text-align: center;
}

.title-h3 {
	font-size: 1.5rem;
}

.section-subtitle {
	max-width: 700px;
	margin: 0 auto;
}

.section-title {
	margin-bottom: 40px;
}

.text-left {
	text-align: left;
}

/* --- Базовые Кнопки (ui.css) --- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 32px;
	font-weight: 600;
	text-decoration: none !important;
	/* Убиваем синие подчеркивания ссылок */
	border-radius: var(--border-radius);
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	font-size: 16px;
	font-family: inherit;
	text-align: center;
}

.btn-primary {
	background-color: var(--primary);
	color: #ffffff !important;
}

.btn-primary:hover {
	background-color: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: var(--shadow-strong);
}

.btn-accent {
	background-color: var(--accent);
	color: #ffffff !important;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.btn-accent:hover {
	background-color: var(--accent-hover);
	transform: scale(1.02);
}

.btn-outline {
	border: 2px solid var(--primary);
	background-color: transparent;
	color: var(--primary) !important;
}

.btn-outline:hover {
	background-color: var(--primary);
	color: #ffffff !important;
}

.btn-sm {
	padding: 10px 20px;
	font-size: 14px;
}

.w-100 {
	width: 100%;
}

@media (max-width: 768px) {
	.btn {
		padding: 15px 20px;
	}
	.btn-accent {
		font-size: 14px;
	}
}

/* Карточки */
.card {
	background: var(--bg-white);
	border-radius: var(--border-radius);
	padding: 30px;
	box-shadow: var(--shadow-soft);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.card-hover:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-strong);
}

/* Вспомогательные классы */
.text-center {
	text-align: center;
}

.text-accent {
	color: var(--accent);
}

.mt-20 {
	margin-top: 20px;
}

.mb-40 {
	margin-bottom: 40px;
}

/* Адаптивность базы */
@media (max-width: 768px) {
	.title-h1 {
		font-size: 2rem;
	}

	.title-h2 {
		font-size: 1.7rem;
		margin-bottom: 20px;
	}

	.section-title {
		margin-bottom: 26px;
	}

	.section-padding {
		padding: 40px 0;
	}

	.section-offset {
		margin-bottom: 60px;
	}

	.card {
		padding: 20px;
	}
}

.swiper-pagination {
	position: static;
	margin-top: 20px;
}
.swiper-pagination-bullet {
	background-color: var(--primary);
}

/* --- УНИВЕРСАЛЬНАЯ СЕТКА НА 2 КОЛОНКИ --- */
.grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: stretch;
}

/* Выравнивание по центру по вертикали (для блока интервенции) */
.grid-2.align-center {
	align-items: center;
}

@media (max-width: 992px) {
	.grid-2 {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

.flex-between {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* =========================================
   1. HEADER (ШАПКА)
========================================= */

.header {
	position: sticky;
	top: 0;
	z-index: 20;
}

.header-contacts {
	display: flex;
	align-items: center;
	gap: 20px;
}

.logo {
	text-decoration: none;
	display: flex;
	flex-direction: row;
}

.logo-name {
	font-size: 24px;
	font-weight: 800;
	color: var(--primary);
	line-height: 1;
}

.logo-name b {
	display: block;
	color: var(--text-main);
}

.logo-pic {
	height: 48px;
	margin-right: 15px;
}

.logo-desc {
	font-size: 11px;
	text-transform: uppercase;
	color: var(--text-muted);
	letter-spacing: 1px;
	display: block;
	margin-top: 8px;
}

.dot-live {
	height: 10px;
	width: 10px;
	background-color: #22c55e;
	border-radius: 50%;
	display: inline-block;
	margin-right: 8px;
	animation: live-pulse 2s infinite;
}

@keyframes live-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
	}

	70% {
		box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
	}
}

/* Телефоны */
.phone-block {
	text-align: right;
	display: flex;
	flex-direction: column;
}

.phone-link {
	font-size: 20px;
	font-weight: 800;
	color: var(--text-main);
	text-decoration: none;
	transition: color 0.3s;
}

.phone-link:hover {
	color: var(--primary);
}

.phone-desc {
	font-size: 12px;
	color: #22c55e;
	font-weight: 600;
}

.header-main {
	padding: 16px 0;
	position: sticky;
	top: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	border-bottom: 1px solid #f1f5f9;
}

.header-left {
	display: flex;
	align-items: center;
	gap: 30px;
}

.header-address {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.header-address span {
	color: var(--text-muted);
	font-size: 12px;
	letter-spacing: 0.5px;
}
.header-address p {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-main);
}

.header-status {
	background: #f0fdf4;
	padding: 6px 14px;
	border-radius: 50px;
	font-size: 13px;
	color: #166534;
	border: 1px solid #dcfce7;
	text-align: center;
}
.header-status b {
	display: block;
}

.nav-menu {
	display: flex;
	gap: 25px;
}

.nav-link {
	text-decoration: none;
	color: var(--text-main);
	font-weight: 600;
	font-size: 14px;
	transition: color 0.2s;
}

.nav-link:hover {
	color: var(--primary);
}

.burger-toggle {
	display: none;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 10px;
	z-index: 1001;
	flex-direction: column;
	gap: 6px;
}

.burger-toggle span {
	display: block;
	width: 30px;
	height: 3px;
	background-color: var(--primary);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.burger-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(7px, 0px);
}
.burger-toggle.active span:nth-child(2) {
	opacity: 0;
}
.burger-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(11px, -6px);
}

/* Оверлей меню */
.mobile-menu-overlay {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: calc(100vh - 80px);
	padding: 40px 20px;
	background-color: rgba(255, 255, 255, 1);
	z-index: 90;
	transform: translateX(100%);
	transition: transform 0.4s ease-in-out;
	flex-direction: column;
	overflow-y: auto;
	box-shadow: inset 0px 3px 19px rgba(0, 0, 0, 0.05);
}

.mobile-menu-overlay.active {
	transform: translateX(0);
}

.mobile-menu-content {
	display: flex;
	flex-direction: column;
	gap: 40px;
	min-height: 100%;
	position: relative;
}

.mobile-nav {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.mobile-nav a {
	display: block;
	color: var(--text-main);
	padding-bottom: 14px;
	border-bottom: 1px solid #ebecee;
}
.mobile-nav a:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.mobile-menu-footer {
	display: flex;
	flex-direction: column;
	margin-top: auto;
	padding-top: 20px;
	border-top: 1px solid #ebecee;
}

.mobile-phone {
	display: block;
	font-size: 18px;
	font-weight: 800;
	line-height: 120%;
	color: var(--primary);
	text-decoration: none;
	margin-bottom: 10px;
}
.mobile-license {
	font-size: 14px;
	color: var(--text-muted);
	margin-bottom: 20px;
}

/* =========================================
   АДАПТИВ ШАПКИ
========================================= */
@media (max-width: 1100px) {
	.logo-name {
		font-size: 20px;
	}
	.phone-link {
		font-size: 18px;
	}
}
@media (max-width: 1024px) {
	.hide-mobile {
		display: none;
	}

	.header {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
	}

	.burger-toggle {
		display: flex;
	}

	.mobile-menu-overlay {
		display: flex;
	}

	main {
		margin-top: 80px;
	}
}

@media (max-width: 768px) {
	.header-main {
		padding: 12px 0;
	}
	main {
		margin-top: 72px;
	}
	.phone-link {
		content: "📞";
		margin-right: 6px;
		font-size: 16px;
	}
}

/* =========================================
   2. HERO SECTION (ПЕРВЫЙ ЭКРАН)
========================================= */
.hero {
	padding: 80px 0;
	background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
	position: relative;
	overflow: hidden;
}

.hero-flex {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 50px;
	align-items: center;
}

.badge-fast {
	display: inline-block;
	background: #fee2e2;
	color: var(--accent);
	padding: 6px 16px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 20px;
}

.hero-title {
	color: var(--primary-dark);
	font-size: 46px;
	margin-bottom: 20px;
}

.hero-subtext {
	color: #475569;
	font-size: 18px;
	line-height: 1.6;
}

.hero-subtext a {
	color: var(--primary);
	font-weight: 600;
	text-decoration: none;
}

.hero-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 35px;
	align-items: flex-start;
}

.cta-sub {
	font-size: 13px;
	color: var(--text-muted);
	padding-left: 5px;
}

/* Карточки-Табы в Hero */
.hero-nav-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}

.card-full {
	grid-column: span 2;
}

.nav-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 20px;
	display: flex;
	align-items: flex-start;
	gap: 15px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: var(--shadow-soft);
	position: relative;
}

.nav-card:hover {
	border-color: var(--primary);
	transform: translateY(-3px);
	box-shadow: var(--shadow-strong);
}

.nav-card-icon {
	font-size: 26px;
	line-height: 1;
}

.nav-card-info {
	flex: 1;
}

.nav-card-title {
	display: block;
	font-weight: 700;
	font-size: 16px;
	color: var(--primary-dark);
	margin-bottom: 4px;
}

.nav-card-desc {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.3;
}

.nav-card-arrow {
	position: absolute;
	bottom: 15px;
	right: 15px;
	font-weight: bold;
	color: var(--primary);
	opacity: 0;
	transition: 0.3s;
}

.nav-card:hover .nav-card-arrow {
	opacity: 1;
	right: 20px;
}

/* Анимация пульса */
.pulse {
	animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
	0% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.4);
	}

	70% {
		transform: scale(1.02);
		box-shadow: 0 0 0 15px rgba(230, 57, 70, 0);
	}

	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
	}
}

/* =========================================
   АДАПТИВ (HEADER + HERO)
========================================= */
@media (max-width: 992px) {
	.hero-flex {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 40px;
	}

	.hero-title {
		font-size: 36px;
	}

	.hero-actions {
		align-items: center;
	}

	.badge-fast {
		margin: 0 auto 20px;
	}

	.hero-nav-grid {
		text-align: left;
	}

	.hero-content {
		text-align: center;
	}
}
@media (max-width: 768px) {
	.nav-card {
		padding: 12px;
	}
}
@media (max-width: 480px) {
	.hero {
		padding: 40px 0;
	}

	.hero-content h1 {
		font-size: 28px;
	}

	.hero-nav-grid {
		grid-template-columns: 1fr;
	}

	.card-full {
		grid-column: span 1;
	}
}

/* =========================================
   БЛОК: КОГДА МЕДЛИТЬ ОПАСНО
========================================= */
.gap-60 {
	gap: 60px;
}

.danger-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

/* Теперь карточка использует глобальный стиль .card, мы лишь добавляем акцент */
.danger-card {
	padding: 20px;
	border-left: 4px solid var(--accent);
	border-radius: var(--border-radius);
	/* Из ui.css */
	box-shadow: var(--shadow-soft);
}

.danger-card b {
	display: block;
	color: var(--accent);
	margin-bottom: 5px;
	font-size: 16px;
}

.danger-card p {
	font-size: 13px;
	color: var(--text-muted);
	margin: 0;
}

/* =========================================
   БЛОК: КВИЗ (КАЛЬКУЛЯТОР)
========================================= */
.quiz-card {
	border-top: 4px solid var(--primary);
}

.quiz-header {
	margin-bottom: 25px;
}

.quiz-step-label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--text-muted);
	letter-spacing: 0.5px;
}

.progress-bar {
	height: 6px;
	background: #edf2f7;
	border-radius: 10px;
	margin-top: 10px;
	overflow: hidden;
}

.progress-fill {
	height: 100%;
	background: var(--primary);
	width: 33%;
	transition: width 0.3s ease;
}

.quiz-step {
	display: none;
}

.quiz-step.active {
	display: block;
	animation: fadeIn 0.4s ease;
}

.quiz-options {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 20px;
}

/* Стилизация кастомных Radio кнопок */
.option {
	position: relative;
	padding: 16px 20px;
	border: 2px solid #edf2f7;
	border-radius: var(--border-radius);
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
}

.option input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.radio-custom {
	width: 20px;
	height: 20px;
	border: 2px solid #cbd5e1;
	border-radius: 50%;
	margin-right: 15px;
	transition: all 0.2s ease;
	display: inline-block;
	position: relative;
	flex-shrink: 0;
}

.option:hover {
	background: #f8fafc;
	border-color: #cbd5e1;
}

.option input:checked ~ .radio-custom {
	border-color: var(--primary);
	background: var(--primary);
	box-shadow: inset 0 0 0 4px #fff;
	/* Создает белую точку внутри */
}

.option input:checked ~ span:last-child {
	font-weight: 600;
	color: var(--primary-dark);
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

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

/* Стилизация популярного тарифа */

.badge-hit {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent);
	color: white;
	padding: 5px 20px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 700;
}

/* --- ВОССТАНОВЛЕНИЕ БЛОКА "ИНТЕРВЕНЦИЯ" --- */
.intervene-block {
	background: #f8fafc;
	border-radius: 20px;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	border: 1px solid #e2e8f0;
}

.intervene-content {
	padding: 40px;
}

.intervene-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Акцентная карточка (например, для новой акции) */
.border-accent {
	border: 2px dashed var(--accent);
}

.border-accent {
	border: 2px solid var(--accent) !important;
}

/* =========================================
   АДАПТИВ ДЛЯ БЛОКОВ (СОБРАН ВМЕСТЕ)
========================================= */
@media (max-width: 992px) {
	.gap-60 {
		gap: 40px;
	}

	/* Меняем порядок: квиз сверху, симптомы снизу */
	.quiz-symptoms .grid-2 {
		display: flex;
		flex-direction: column;
		align-items: stretch;
	}

	.symptoms-box {
		order: 1;
	}

	.quiz-card {
		order: 2;
		margin-bottom: 20px;
	}
}

@media (max-width: 480px) {
	.danger-grid {
		grid-template-columns: 1fr;
	}

	.intervention-actions {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
}

/* =========================================
   БЛОК: ИНТЕРВЕНЦИЯ
========================================= */

.intervention-card {
	padding: 40px;
}

.intervention-card .grid-2 {
	align-items: start;
	grid-template-columns: 450px 1fr;

	display: flex;
	gap: 40px;
}

.badge-soft {
	display: inline-block;
	background: #e1ecf7;
	color: var(--primary);
	padding: 6px 16px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.intervention-actions {
	display: flex;
	align-items: center;
	gap: 20px;
}

.intervention-wrap {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.check-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	list-style: none;
	padding: 0;
}

.check-list li {
	font-size: 16px;
	line-height: 1.5;
	color: var(--text-main);
	position: relative;
	padding-left: 28px;
}

.check-list li::before {
	content: "✓";
	position: absolute;
	top: 4px;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	background: #22c55e;
	border-radius: 50%;
	color: #fff;
	font-weight: 500;
	line-height: 1;
	font-size: 12px;
}

.check-list b {
	color: var(--primary-dark);
}

.intervention-actions {
	display: flex;
	align-items: center;
	gap: 20px;
}

.intervention-btn {
	width: 100%;
}

.info-note {
	font-size: 14px;
	color: var(--text-muted);
}

/* Стили для изображения/заглушки */
.intervention-image {
	position: relative;
	width: 100%;
	max-width: 38%;
}

.img-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: var(--border-radius);
	border-radius: 5px;
	overflow: hidden;
}

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

.intervention-image-btn {
	display: none;
	position: absolute;
	z-index: 3;
	background: var(--accent);
	color: white;
	padding: 10px 40px;
	border-radius: 4px;
	font-weight: 700;
	font-size: 14px;
	box-shadow: var(--shadow-strong);
	width: calc(100% - 40px);
	width: fit-content;
	text-align: center;
	text-decoration: none;
}

/* Адаптивность */
@media (max-width: 992px) {
	.intervention-card {
		padding: 30px 20px;
	}

	.intervention-card .grid-2 {
		flex-direction: column-reverse;
	}

	.intervention-text h2 {
		font-size: 1.8rem;
	}

	.intervention-actions {
		flex-direction: column;
		align-items: flex-start;
	}

	.intervention-image {
		max-width: 100%;
	}
	.intervention-image::after {
		content: "";
		display: block;
		width: 100%;
		height: 60px;
		background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: 2;
	}

	.img-placeholder {
		min-height: 250px;
		max-height: 350px;
	}

	.intervention-image-btn {
		display: block;
		right: 10px;
		bottom: -15px;
		left: 50%;
		bottom: 0;
		transform: translate(-50%, 30%);
	}
}

/* Licenses Styles */

.license-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.licenses__swiper-slide {
	height: auto;
	background: #fff;
	padding: 12px;
	border-radius: var(--border-radius);
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.license-item {
	display: block;
	width: 100%;
	height: 100%;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
	cursor: pointer;
	overflow: hidden;
	padding-top: 1px;
	border-radius: 6px;
	border: 1px solid #00000014;
}

.license-item:hover {
	/* box-shadow: var(--shadow-strong); */
}

.license-item img {
	width: 100%;
	height: 100%;
	min-height: 300px;
	max-height: 400px;
	object-fit: cover;
	object-position: top;
	border-radius: 6px;
	cursor: zoom-in;
	transition: transform 0.4s ease;
}

.license-item img:hover {
	transform: scale(1.04);
}

.license-name {
	font-size: 15px;
	color: var(--text-muted);
	line-height: 1.2;
	text-align: center;
	display: block;
}

/* Адаптивность */
@media (max-width: 768px) {
	.licenses {
		overflow: hidden;
	}
	.licenses__swiper {
		overflow: visible;
	}
	.license-item img {
		min-height: 250px;
		max-height: 320px;
	}
}

/* Контейнер для кнопки */
.mt-40 {
	margin-top: 40px !important;
}

/* =========================================
   БЛОК: ТАБЛИЦА ЦЕН
========================================= */
.table-responsive {
	/* overflow-x: auto; */
	border-radius: var(--border-radius);
	border: 1px solid #edf2f7;
	background: #fff;
	-webkit-overflow-scrolling: touch;
}

.price-table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
	min-width: 600px;
	/* Чтобы не сжималась в кашу на мобилках */
}

.price-table th {
	background: #f8fafc;
	color: var(--text-muted);
	padding: 16px 24px;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.5px;
	border-bottom: 2px solid #edf2f7;
}

.price-table tr {
	border-bottom: 1px solid #edf2f7;
}
.price-table td {
	padding: 18px 24px;
	color: var(--text-main);
	font-size: 15px;
	vertical-align: middle;
}

.price-table tr:last-child td {
	border-bottom: none;
}

.price-table tr:hover td {
	background: #f8fafc;
}

/* Выделение популярной услуги */
.price-table tr.highlight td {
	background-color: #f0f7ff;
	font-weight: 600;
}

.price-table tr.highlight {
	border-left: 3px solid var(--primary);
}

.price-table tr {
	position: relative;
}

.price-table tr:hover .price-descr {
	opacity: 1;
	transform: translateY(0);
}

.price-descr {
	position: absolute;
	top: 90%;
	left: 16%;
	z-index: 2;
	background-color: #fff;
	padding: 14px;
	border-radius: 8px;
	border: 1px solid #d6e4f4;
	font-weight: 400;
	font-size: 14px;
	color: #5e676e;
	width: 100%;
	max-width: 500px;
	opacity: 0;
	transform: translateY(100px);
	pointer-events: none;
	transition: all 0.3s ease;
}

.price-cell {
	font-weight: 800;
	color: var(--primary);
	white-space: nowrap;
	font-size: 16px;
}

td.price-btn {
	padding: 10px 0;
}
td.price-btn button {
	width: 100%;
	padding: 14px 20px;
}

.table-note {
	font-size: 13px;
	color: var(--text-muted);
}

@media (max-width: 768px) {
	.table-responsive {
		overflow-x: auto;
		padding: 0;
	}

	.price-table {
		min-width: auto;
	}

	.price-table th {
		display: none;
	}

	.price-table tr {
		position: relative;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.price-table td:first-child {
		width: 100%;
		border: none;
		padding-right: 30px;
	}
	.price-table td:first-child::after {
		content: "";
		display: block;
		width: 8px;
		height: 8px;
		border-bottom: 1.5px solid #003d7a;
		border-right: 1.5px solid #003d7a;
		transform: rotate(45deg);
		position: absolute;
		top: 17px;
		right: 15px;
		transition: all 0.3s ease;
	}
	.price-table td.open::after {
		transform: rotate(225deg);
	}

	.price-table td {
		padding: 10px 20px;
		flex-grow: 1;
	}

	td.price-btn {
		width: 100%;
		padding: 0 20px 20px;
	}

	.price-descr {
		position: static;
		top: 100%;
		left: 0;
		width: 100%;
		max-width: 100%;
		height: 0;
		overflow: hidden;
		background-color: transparent;
		padding: 0;
		border-radius: 0px;
		border: none;
		transform: translateY(0);
	}

	.price-descr.open {
		height: auto;
		opacity: 1;
		pointer-events: all;
		padding-top: 10px;
	}
}

/* =========================================
   БЛОК: АКЦИИ (PROMO)
========================================= */
.promo-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	max-width: 1000px;
	margin: 0 auto;
}

.promo-mini-card {
	display: flex;
	align-items: center;
	background: #fff;
	padding: 24px;
	border-radius: var(--border-radius);
	border: 1px solid #edf2f7;
	transition: all 0.3s ease;
}

.promo-mini-card:hover {
	border-color: #cbd5e1;
	box-shadow: var(--shadow-soft);
	transform: translateY(-3px);
}

.promo-badge {
	min-width: 60px;
	height: 60px;
	background: #f0f7ff;
	color: var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 18px;
	margin-right: 20px;
	flex-shrink: 0;
}

.border-accent .promo-badge {
	background: #fee2e2;
	color: var(--accent);
}

.promo-info {
	font-size: 14px;
	color: var(--text-muted);
	margin: 0;
	line-height: 1.4;
}

.promo-title {
	font-weight: 600;
	margin-bottom: 6px;
	font-size: 17px;
	color: var(--text-main);
}

/* Адаптивность */
@media (max-width: 768px) {
	.promo-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.promo-mini-card {
		padding: 15px;
		box-shadow: var(--shadow-soft);
	}

	.promo-title {
		font-size: 16px;
		margin-bottom: 4px;
	}

	.promo-badge {
		min-width: 50px;
		height: 50px;
		font-size: 14px;
		margin-right: 15px;
	}
}

/* =========================================
   БЛОК: ТАЙМЛАЙН (КАК ПРОХОДИТ ВЫВОД)
========================================= */
.timeline {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	padding: 20px 0;
}

/* Центральная линия */
.timeline::after {
	content: "";
	position: absolute;
	width: 2px;
	background: #edf2f7;
	top: 0;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.timeline-item {
	padding: 0 40px 40px 40px;
	position: relative;
	width: 50%;
	box-sizing: border-box;
}

/* Чередование сторон */
.timeline-item:nth-child(odd) {
	left: 0;
	text-align: right;
}

.timeline-item:nth-child(even) {
	left: 50%;
	text-align: left;
}

.timeline-item:last-child {
	padding-bottom: 0;
}

/* Кружки с номерами */
.timeline-number {
	position: absolute;
	width: 44px;
	height: 44px;
	background: #fff;
	color: var(--primary);
	border: 2px solid var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 16px;
	z-index: 2;
	top: 0;
}

.timeline-item:nth-child(odd) .timeline-number {
	right: -22px;
}

.timeline-item:nth-child(even) .timeline-number {
	left: -22px;
}

/* Контент карточки */
.timeline-content {
	padding: 30px;
	background: #fff;
	border: 1px solid #edf2f7;
	border-radius: var(--border-radius);
	transition: box-shadow 0.3s;
}

.timeline-content:hover {
	box-shadow: var(--shadow-soft);
}

.timeline-content h3 {
	margin-bottom: 12px;
	color: var(--primary-dark);
	font-size: 1.2rem;
}

.timeline-content p {
	font-size: 14px;
	color: var(--text-muted);
	margin-bottom: 0;
}

.timeline-time {
	display: inline-block;
	margin-top: 15px;
	font-size: 12px;
	font-weight: 700;
	color: var(--text-main);
	background: #f8fafc;
	padding: 6px 14px;
	border-radius: 20px;
	border: 1px solid #edf2f7;
}

/* =========================================
   БЛОК: СТАЦИОНАР (КЛИНИКА)
========================================= */
.clinic-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 50px;
	align-items: start;
}

.warning-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.warn-card {
	background: #fff;
	padding: 24px 20px;
	border-radius: var(--border-radius);
	border: 1px solid #edf2f7;
	border-top: 3px solid var(--accent);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition:
		transform 0.2s,
		box-shadow 0.2s;
}

.warn-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-soft);
}

.warn-icon {
	font-size: 28px;
	margin-bottom: 12px;
	line-height: 1;
}

.warn-card p {
	font-size: 14px;
	margin: 0;
	line-height: 1.4;
	color: var(--text-main);
}

.feature-list {
	list-style: none;
	padding: 0;
	margin-top: 25px;
}

.feature-list li {
	margin-bottom: 20px;
	padding-left: 32px;
	position: relative;
}

.feature-list li::before {
	content: "✔";
	position: absolute;
	left: 0;
	top: 0;
	color: #fff;
	background: var(--primary);
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
}

.feature-list li strong {
	display: block;
	font-size: 16px;
	color: var(--text-main);
	margin-bottom: 4px;
}

.feature-list li span {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.4;
	display: block;
}

.clinic-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.gallery-item img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	border-radius: var(--border-radius);
	display: block;
}

.clinic {
	overflow: hidden;
}

@media (max-width: 768px) {
	.gallery__swiper {
		overflow: visible;
	}
}

/* =========================================
   БЛОК: ОТЗЫВЫ
========================================= */
.reviews-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.review-card {
	display: flex;
	flex-direction: column;
	padding: 30px;
	border: 1px solid #edf2f7;
	background: #fff;
	box-shadow: none;
	/* Убрали сильную тень */
	border-radius: var(--border-radius);
}

.review-meta {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: 10px;
	border-bottom: 1px solid #f1f5f9;
	margin-bottom: 15px;
}

.review-author {
	font-weight: 700;
	color: var(--text-main);
	font-size: 16px;
}

.review-date {
	color: var(--text-muted);
	font-size: 14px;
}

.stars {
	display: flex;
	gap: 2px;
	color: #c3c0bb;
	font-size: 17px;
}
.stars .active {
	color: #fbbf24;
}

.review-img {
	width: 30px;
	height: 30px;
}

.review-main {
	flex-grow: 1;
	margin-bottom: 26px;
}

.review-text {
	font-size: 16px;
	line-height: 1.4;
	color: var(--text-main);
	flex-grow: 1;
	max-height: 138px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.review-btn {
	font-size: 14px;
	color: var(--primary);
	font-weight: 600;
	margin-top: 10px;
}

.review-tag {
	font-size: 14px;
	background: #f0f7ff;
	padding: 6px 12px;
	border-radius: 4px;
	color: var(--primary);
	font-weight: 600;
	text-transform: uppercase;
}

.review-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.review-logo {
	width: 50px;
	height: 50px;
	object-fit: contain;
}

.reviews-plashka {
	padding: 20px 30px;
	border-radius: 20px;
	background: #eaeff5;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 30px;
}

.reviews-plashka-right {
	display: flex;
	align-items: center;
	gap: 26px;
}

.reviews-plashka-name {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	font-size: 30px;
}

.review-plashka-rating {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 40px;
}

.review-plashka-rating .stars {
	font-size: 20px;
	color: #fbbf24;
}
.review-plashka-rating .stars .star-half {
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	background-image: linear-gradient(to right, #fbbf24 55%, #c3c0bb 57%);
}

.review-plashka-link {
	font-size: 14px;
}

/* Скриншоты мессенджеров */
.review-screenshot {
	padding: 20px;
}

.screenshot-placeholder img {
	width: 100%;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	margin-bottom: 15px;
}

.screenshot-caption {
	font-size: 13px;
	text-align: center;
	color: var(--text-muted);
}

/* Логика скрытия отзывов и кнопка */
.hidden-review {
	display: none;
	opacity: 0;
	transform: translateY(15px);
	transition:
		opacity 0.4s ease,
		transform 0.4s ease;
}

.hidden-review.show {
	display: flex;
	opacity: 1;
	transform: translateY(0);
}

.review-screenshot.hidden-review.show {
	display: block;
}

.load-more-btn {
	display: block;
	padding: 16px 32px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 1px solid #cbd5e1;
	background: #fff;
	color: var(--text-main);
	border-radius: 50px;
	margin: 0 auto;
	margin-top: 40px;
}

.load-more-btn:hover {
	border-color: var(--primary);
	color: var(--primary);
	background: #f8fafc;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 15px;
}

.review-form {
	/* background: var(--bg-white); 
	border: 1px solid #edf2f7; 
	color: var(--text-main); */
	margin-top: 60px;
}

.review-form::before {
	top: auto !important;
	bottom: -50%;
	width: 350px !important;
}
.review-form::after {
	content: "";
	position: absolute;
	bottom: -50%;
	left: -10%;
	width: 450px;
	height: 400px;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 50%;
}

.review-form .privacy-policy-label {
	color: rgba(255, 255, 255, 0.7);
}
.review-form .privacy-policy-label a {
	color: rgba(255, 255, 255, 1);
}

@media (max-width: 850px) {
	.reviews-plashka {
		flex-direction: column;
		align-items: stretch;
		gap: 20px;
		margin-bottom: 24px;
	}

	.reviews-plashka-right {
		justify-content: space-between;
	}
}
@media (max-width: 768px) {
	.load-more-btn {
		padding: 12px 24px;
		width: 100%;
		margin-top: 24px;
	}

	.review-card {
		padding: 16px;
	}

	.reviews-plashka {
		padding: 16px;
		border-radius: 14px;
		margin-bottom: 20px;
	}

	.reviews-plashka-right {
		display: flex;
		align-items: center;
		gap: 26px;
	}

	.reviews-plashka-name {
		font-size: 18px;
	}

	.review-plashka-rating {
		font-weight: 700;
		font-size: 20px;
	}

	.review-plashka-rating .stars {
		font-size: 18px;
	}

	.review-plashka-link {
		padding: 16px 18px;
	}

	.review-logo {
		width: 40px;
		height: 40px;
	}
}

/* =========================================
   АДАПТИВ ИТЕРАЦИИ 3 (Таблица, Акции, Таймлайн, Клиника, Отзывы)
========================================= */
@media (max-width: 992px) {
	.clinic-grid,
	.reviews-grid {
		grid-template-columns: 1fr;
	}

	.clinic-gallery {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	/* Перестройка Таймлайна под мобилку (линия уходит влево) */
	.timeline::after {
		left: 22px;
		transform: none;
	}

	.timeline-item {
		width: 100%;
		padding: 0 0 30px 60px !important;
		text-align: left !important;
	}

	.timeline-item:nth-child(even),
	.timeline-item:nth-child(odd) {
		left: 0;
	}

	.timeline-item:nth-child(odd) .timeline-number,
	.timeline-item:nth-child(even) .timeline-number {
		left: 0;
		right: auto;
	}
}

@media (max-width: 480px) {
	.warning-cards {
		grid-template-columns: 1fr;
	}

	.social-links {
		flex-direction: column;
	}
}

/* =========================================
   БЛОК: ЦЕНЫ И ТАРИФЫ
========================================= */

.prices-top {
	margin-bottom: 40px;
}

.prices-subtitle {
	max-width: 700px;
	margin: 0 auto;
}

.price-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	align-items: stretch;
}

/* Переопределяем базовую карточку для тарифов */
.price-card {
	position: relative;
	display: flex;
	flex-direction: column;
	border: 1px solid #e0e7ee;
	box-shadow: none;
	transition: all 0.3s ease;
}

.price-card:hover {
	border-color: #cbd5e1;
	box-shadow: var(--shadow-strong);
	transform: translateY(-4px);
}

/* Популярный тариф */
.card-hit {
	border: 2px solid var(--primary);
	box-shadow: var(--shadow-soft);
}

.card-hit:hover {
	border-color: var(--primary-dark);
}

.badge-hit {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent);
	color: white;
	padding: 6px 20px;
	border-radius: 30px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	white-space: nowrap;
	box-shadow: 0 4px 10px rgba(230, 57, 70, 0.2);
}

.price-header {
	text-align: center;
	border-bottom: 1px solid #edf2f7;
	padding-bottom: 25px;
	margin-bottom: 25px;
}

.price-title {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: var(--primary);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 15px;
}

.price-value {
	font-size: 38px;
	font-weight: 800;
	color: var(--text-main);
	margin-bottom: 10px;
	line-height: 1;
}

.price-desc {
	font-size: 14px;
	color: var(--text-muted);
}

.price-features {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
	list-style-type: none;
}
.price-features li {
	position: relative;
	padding-left: 28px;
}
.price-features li::before {
	content: "✓";
	position: absolute;
	top: 4px;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	background: #22c55e;
	border-radius: 50%;
	color: #fff;
	font-weight: 500;
	line-height: 1;
	font-size: 12px;
}

.price-footer-text {
	display: flex;
	align-items: flex-start;
	/* align-items: center; */
	gap: 10px;
	text-align: left;
}
.price-footer-text img {
	margin-top: 4px;
}

/* Адаптивность */
@media (max-width: 992px) {
	.price-grid {
		grid-template-columns: 1fr;
		max-width: 650px;
		margin: 0 auto;
		gap: 16px;
	}

	.card-hit {
		transform: none;
		order: -1;
		padding-top: 30px;
	}

	.mobile-column {
		flex-direction: column;
		text-align: center;
		gap: 15px;
	}

	.badge-hit {
		top: -14px;
		padding: 6px 20px;
		font-size: 12px;
	}

	.price-header {
		padding-bottom: 16px;
		margin-bottom: 16px;
	}

	.price-value {
		font-size: 26px;
	}

	.price-footer {
		align-items: stretch;
	}
}

/* =========================================
   БЛОК: ВРАЧИ
========================================= */
.doctors-head {
	margin-bottom: 40px;
}

.doctors__swiper-slide {
	height: auto;
}

.doctor-card {
	padding: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.doc-photo {
	width: 100%;
	height: 300px;
	overflow: hidden;
}

.doc-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	transition: transform 0.5s ease;
}

.doctor-card:hover .doc-photo img {
	transform: scale(1.05);
	/* Легкий зум при наведении */
}

.doc-info {
	padding: 20px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.doc-info.hidden {
	display: none;
}

.doc-name {
	font-weight: 600;
	font-size: 18px;
	line-height: 120%;
	margin-bottom: 5px;
	color: var(--text-main);
}

.doc-post {
	color: var(--primary);
	font-weight: 700;
	font-size: 14px;
	/* text-transform: uppercase; */
	margin-bottom: 15px;
	letter-spacing: 0.5px;
}

.doc-exp {
	font-size: 14px;
	margin-bottom: 25px;
	background: #f1f5f9;
	display: inline-block;
	padding: 4px 12px;
	border-radius: 4px;
	align-self: flex-start;
}

.doc-desc {
	font-size: 14px;
	color: var(--text-muted);
	margin-top: auto;
	line-height: 1.5;
}

@media (max-width: 768px) {
	.doctors {
		overflow: hidden;
	}

	.doctors__swiper {
		overflow: visible;
	}

	.doc-photo {
		height: 250px;
	}

	.doc-info {
		padding: 18px 10px;
	}

	.doc-name {
		font-size: 16px;
	}

	.doc-post {
		font-size: 14px;
	}

	.doc-exp {
		font-size: 14px;
		margin-bottom: 25px;
	}
}

/* =========================================
   БЛОК: SEO И ЭКСПЕРТ
========================================= */

.seo-wrapper {
	width: 100%;
	padding: 40px;
	background: #fff;
	border-radius: 20px;
	box-shadow: var(--shadow-soft);
}

.seo-content {
	max-height: 360px;
	overflow: hidden;
	position: relative;
	transition: max-height 0.5s ease;
}

.seo-content::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background: linear-gradient(transparent, #ffffff);
	pointer-events: none;
	transition: opacity 0.3s;
}

.seo-content.expanded::after {
	opacity: 0;
}

.seo-content p,
.seo-text p {
	margin-bottom: 20px;
}

.seo-content h2,
.seo-content h3,
.seo-text h2,
.seo-text h3 {
	color: var(--primary-dark);
	line-height: 1.2;
	font-weight: 700;
	margin-top: 35px;
	margin-bottom: 20px;
}

.seo-content h2:first-child,
.seo-text h2:first-child {
	margin-top: 0;
}

.seo-content h2,
.seo-text h2 {
	font-size: 2.2rem;
}
.seo-content h3,
.seo-text h3 {
	font-size: 1.5rem;
}
.seo-content h4,
.seo-text h4 {
	font-size: 1.2rem;
}

.seo-content a,
.seo-text a,
.seo-text button {
	color: var(--primary);
}
.seo-content a:hover,
.seo-text a:hover,
.seo-text button:hover {
	text-decoration: underline;
}

.seo-content ul,
.seo-text ul {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 20px 0;
}
.seo-content ul li,
.seo-text ul li {
	position: relative;
	padding-left: 20px;
}
.seo-content ul li:before,
.seo-text ul li::before {
	content: "";
	position: absolute;
	left: 0px;
	top: 8px;
	width: 8px;
	height: 8px;
	background: var(--primary);
	border-radius: 100%;
}

.seo-content ol,
.seo-text ol {
	margin: 20px 0;
	list-style-type: none;
	counter-reset: item;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.seo-content ol li,
.seo-text ol li {
	position: relative;
	padding-left: 24px;
	line-height: 1.5;
}
.seo-content ol li::before,
.seo-text ol li::before {
	content: counter(item) ".";
	counter-increment: item;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	font-weight: 600;
	line-height: 1.4;
	color: var(--primary);
}

.seo-content picture {
	display: block;
	width: 100%;
	margin: 20px 0;
}
.seo-content img {
	border-radius: 12px;
	width: 100%;
	object-fit: cover;
	margin: 20px 0;
}

.seo-content table {
	display: block;
	width: fit-content;
	max-width: 100%;
	border-radius: 10px;
	border: 1px solid var(--primary);
	overflow: hidden;
	border-collapse: collapse;
	margin: 24px auto;

	& thead {
		& th {
			border: none;
			padding: 20px 16px;
			font-weight: 600;
			border-bottom: 1px solid #e6e9f1;
			border-right: 1px solid #e6e9f1;
			text-align: center;
			background: #0057b308;
		}
	}

	& tbody {
		& td {
			border-bottom: 1px solid #e6e9f1;
			border-right: 1px solid #e6e9f1;
			padding: 20px 16px;
			vertical-align: top;
		}
		& tr:last-child td {
			border-bottom: none;
		}
	}
}

.seo-content .block {
	border-radius: 0 10px 10px 0;
	border-radius: 10px;
	padding: 15px 20px;
	padding-left: 24px;
	background: #e639470d;
	margin: 20px 0;
	position: relative;
	overflow: hidden;
}
.seo-content .block::before {
	content: "";
	display: block;
	width: 4px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--accent);
}

.seo-content blockquote {
	border-radius: 10px;
	padding: 16px;
	padding-left: 24px;
	background: rgba(53, 182, 247, 0.05);
	margin: 20px 0;
	position: relative;
	overflow: hidden;
}
.seo-content blockquote::before {
	content: "";
	display: block;
	width: 4px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--primary);
}
.seo-content .blockquote-author {
	padding-top: 20px;
	margin-top: 20px;
	border-top: 1px solid #dfede0;
	position: relative;
}
.seo-content .blockquote-post {
	display: block;
	color: var(--text-muted);
	font-size: 14px;
}
.seo-content .blockquote-name {
	display: block;
	font-weight: 600;
}
.seo-content .blockquote-img {
	display: block;
	position: absolute;
	bottom: 0px;
	right: 0;
	width: 66px;
	height: 48px;
	margin: 0;
	object-fit: contain;
}

@media (max-width: 768px) {
	.seo-wrapper {
		padding: 40px 16px;
		border-radius: 16px;
	}

	.seo-content {
		max-height: 460px;
	}

	.seo-content p,
	.seo-text p {
		margin-bottom: 16px;
	}

	.seo-content h2,
	.seo-text h2 {
		font-size: 1.6rem;
	}
	.seo-content h3,
	.seo-text h3 {
		font-size: 1.3rem;
	}
	.seo-content h4,
	.seo-text h4 {
		font-size: 1rem;
	}

	.seo-content ul,
	.seo-text ul {
		margin: 16px 0;
	}
	.seo-content ol,
	.seo-text ol {
		margin: 16px 0;
	}

	.seo-content picture img {
		border-radius: 8px;
	}
	.seo-content img {
		border-radius: 8px;
	}

	.seo-content table {
		overflow-x: auto;
		& thead th,
		& tbody td {
			padding: 12px 10px;
			font-size: 14px;
		}
	}

	.seo-content .block {
		padding: 12px 20px 12px 24px;
	}

	.seo-content blockquote {
		padding: 12px 20px 12px 24px;
	}
	.seo-content .blockquote-author {
		padding-left: 30px;
	}
	.seo-content .blockquote-img {
		bottom: auto;
		right: auto;
		top: 22px;
		left: 0;
		width: 20px;
		height: 20px;
	}
}

.btn-text-expand {
	display: block;
	margin: 30px auto 0;
	background: #f1f5f9;
	border: none;
	color: var(--primary-dark);
	font-weight: 600;
	cursor: pointer;
	font-size: 15px;
	padding: 10px 25px;
	border-radius: 50px;
	transition: background 0.3s;
}

.btn-text-expand:hover {
	background: #e2e8f0;
}

.doctor-verified-block {
	display: flex;
	align-items: flex-start;
	/* Выравнивание по верху иконки */
	gap: 20px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-left: 4px solid #22c55e;
	padding: 25px;
	border-radius: var(--border-radius);
	margin-top: 40px;
}

.verified-icon svg {
	width: 36px;
	height: 36px;
	color: #22c55e;
	flex-shrink: 0;
}

.verified-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.verified-title {
	font-size: 12px;
	text-transform: uppercase;
	color: #64748b;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.verified-name {
	font-size: 18px;
	color: var(--text-main);
}

.verified-desc {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.4;
}

/* --- КОРРЕКЦИЯ ТЕКСТОВОГО КОНТЕЙНЕРА --- */

.btn-text-expand {
	display: block;
	margin: 20px auto 0;
	background: none;
	border: none;
	color: var(--primary);
	font-weight: 700;
	cursor: pointer;
	font-size: 16px;
	border-bottom: 1px dashed var(--primary);
}

/* Стили для блока "Проверено врачом" */

.verified-icon svg {
	width: 40px;
	height: 40px;
	color: #22c55e;
}

.verified-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.verified-title {
	font-size: 12px;
	text-transform: uppercase;
	color: var(--text-muted);
	font-weight: 700;
	letter-spacing: 0.5px;
}

.verified-name {
	font-size: 18px;
	color: var(--text-main);
}

.verified-desc {
	font-size: 14px;
	color: var(--text-muted);
}

.verified-date {
	font-size: 12px;
	color: #64748b;
	margin-top: 4px;
}

@media (max-width: 768px) {
	.doctor-verified-block {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}
}

/* =========================================
   АДАПТИВ ИТЕРАЦИИ 2 (Цены, Врачи, SEO)
========================================= */
@media (max-width: 992px) {
	/* Убрали глючный скейл, ставим хит наверх */
	.mobile-column {
		flex-direction: column;
		text-align: center;
		gap: 15px;
	}

	/* Врачи (делаем горизонтальный скролл на мобилке) */
	.doctors-head {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
		gap: 15px;
	}

	/* SEO */
	.seo-wrapper {
		padding: 30px 20px;
	}

	.doctor-verified-block {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}
}

/* FAQ Accordion */
.faq-item {
	padding: 5px 0;
	cursor: pointer;
	background: #fff;
	border: 1px solid #edf2f7;
	border-radius: 12px;
	margin-bottom: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item.best {
	border-color: #22c55e;
	background: #f7faf8;
}

.faq-question {
	font-weight: 700;
	font-size: 18px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-answer {
	padding-top: 10px;
	color: var(--text-muted);
	display: none;
	transition: all 0.3s ease;
}

.faq-item.active {
	border-color: var(--primary);
	box-shadow: var(--shadow-soft);
}
.faq-item.best.active {
	border-color: #22c55e;
}

.faq-item.active .faq-question span {
	transform: rotate(45deg);
}

.faq-item.active .faq-question {
	border-bottom: 1px solid #edf2f7;
}

.faq-item.active .faq-answer {
	display: block;
	padding: 20px 25px;
}

.faq-question {
	width: 100%;
	padding: 20px 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-size: 16px;
	font-weight: 700;
	color: var(--text-main);
}

.faq-answer {
	overflow: hidden;
	transition:
		max-height 0.3s ease-out,
		padding 0.3s ease;
	color: var(--text-muted);
	font-size: 15px;
	line-height: 1.6;
}

.faq-icon {
	width: 20px;
	height: 20px;
	position: relative;
	transition: transform 0.3s;
}

.faq-icon::before,
.faq-icon::after {
	content: "";
	position: absolute;
	background: var(--primary);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.faq-icon::before {
	width: 12px;
	height: 2px;
}

.faq-icon::after {
	width: 2px;
	height: 12px;
}

.faq-item.active .faq-icon {
	transform: rotate(45deg);
}

.faq-bottom {
	margin-top: 26px;
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-left: 60px;
	position: relative;
}
.faq-bottom::before {
	content: "";
	display: block;
	width: 40px;
	height: 40px;
	background: url("./../img/icons/quote.svg") no-repeat center / contain;
	position: absolute;
	top: 0;
	left: 0;
}

.faq-doc-name {
	font-weight: 600;
	color: var(--text-main);
}

/* Кнопка лайка */
.faq-like-btn {
	display: flex;
	align-items: center;
	gap: 6px;
	background: transparent;
	border: none;
	color: var(--text-muted);
	cursor: pointer;
	font-weight: 600;
	padding: 6px 12px;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.faq-like-btn:hover {
	background: var(--bg-light);
	color: var(--primary);
}

.faq-like-btn svg {
	transition:
		transform 0.2s ease,
		fill 0.2s ease;
}

.faq-like-btn.liked {
	color: var(--primary);
}

.faq-like-btn.liked svg {
	fill: #3f75ae;
	stroke: var(--primary);
	transform: scale(1.1);
}

@media (max-width: 768px) {
	.faq-item {
		padding: 10px 0;
	}
	.faq-question {
		padding: 10px 18px;
	}
	.faq-doc-post {
		font-size: 14px;
	}
	.faq-item.active .faq-answer {
		padding: 10px 18px;
	}
	.faq-bottom {
		margin-top: 20px;
		flex-direction: column;
		justify-content: space-between;
		gap: 10px;
		padding-left: 30px;
	}
	.faq-bottom::before {
		width: 20px;
		height: 20px;
		top: 2px;
	}
}

/* Footer */
footer {
	background: #1a1a1a;
	color: #fff;
	padding: 60px 0 20px;
}

.footer-grid {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}

.footer-phone {
	font-size: 24px;
	color: #fff;
	text-decoration: none;
	font-weight: 800;
}

.footer-bottom {
	text-align: center;
	border-top: 1px solid #333;
	padding-top: 20px;
	font-size: 12px;
	color: #666;
	letter-spacing: 2px;
}

.mobile-sticky-bar {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 10px 20px;
	background: #fff;
	box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
	z-index: 10;
}

@media (max-width: 768px) {
	.mobile-sticky-bar {
		display: block;
	}
}

.phone-link::after {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	background: #22c55e;
	border-radius: 50%;
	animation: phonePulse 1.8s infinite;
}

@keyframes phonePulse {
	0% {
		transform: scale(1);
		opacity: 0.8;
	}

	70% {
		transform: scale(2.5);
		opacity: 0;
	}

	100% {
		opacity: 0;
	}
}

/* =========================================
   3. CTA БЛОКИ (ФОРМЫ ЗАХВАТА)
========================================= */
.cta-block {
	background: var(--primary-dark);
	color: #fff;
	border-radius: 20px;
	padding: 60px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-block::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -10%;
	width: 300px;
	height: 300px;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 50%;
}

.cta-form-inline {
	display: flex;
	gap: 15px;
	max-width: 600px;
	margin: 30px auto 0;
}

/* =========================================
   4. ПОДВАЛ (FOOTER) - ТЕМНАЯ ТЕМА
========================================= */
#footer {
	background: #1a202c;
	color: #a0aec0;
	padding: 80px 0 40px;
}

.footer-main-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 60px;
	margin-bottom: 60px;
}

.footer-title {
	color: #fff;
	margin-bottom: 25px;
	font-size: 20px;
}

.footer-nav {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-nav a {
	color: #a0aec0;
	text-decoration: none;
	transition: color 0.2s;
	font-size: 14px;
}

.footer-nav a:hover {
	color: #fff;
}

.footer-phone-link {
	font-size: 24px;
	font-weight: 800;
	color: #fff;
	text-decoration: none;
}

.footer-legal-section {
	border-top: 1px solid #2d3748;
	padding-top: 40px;
	font-size: 12px;
	line-height: 1.8;
}

/* АДАПТИВ */
@media (max-width: 992px) {
	.header-left {
		gap: 15px;
	}

	.nav-menu {
		display: none;
	}

	.footer-main-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.cta-block {
		padding: 40px 20px;
	}

	.cta-form-inline {
		flex-direction: column;
	}
}

/* --- ФОРМА В ТЕКСТЕ (SEO) --- */
.seo-inline-form {
	background: #f1f5f9;
	border-radius: 12px;
	padding: 30px;
	margin: 40px 0;
	text-align: center;
}

.form-privacy {
	display: block;
	margin-top: 5px;
	font-size: 13px;
	color: var(--text-muted);
}

@media (max-width: 600px) {
	.seo-inline-form {
		padding: 30px 16px;
		margin: 40px 0;
	}
}

/* =========================================
   БЛОК СОЗАВИСИМОСТИ (CODEPENDENCY)
========================================= */
#codependency {
	background-color: #f0f7ff;
	/* Нежно-голубой медицинский фон */
	border-radius: 40px;
	margin: 60px 20px;
}

.badge-soft {
	display: inline-block;
	background: #e1ecf7;
	color: var(--primary);
	padding: 6px 16px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.codep-lead {
	font-size: 18px;
	color: var(--text-muted);
	margin-bottom: 30px;
	line-height: 1.6;
}

/* Настройка списка внутри блока */
.codep-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	list-style: none;
	padding: 0;
	margin-bottom: 0;
}

.codep-list li {
	font-size: 16px;
	line-height: 1.5;
	color: var(--text-main);
	position: relative;
	padding-left: 22px;
}
.codep-list li::before {
	content: "!";
	font-weight: 700;
	color: var(--accent);
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
}
.codep-list b {
	color: var(--primary-dark);
}

/* Карточка решения */
.codep-card {
	position: relative;
	padding: 45px;
	background: #ffffff;
	overflow: hidden;
}

.card-accent-line {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 6px;
	background: var(--primary);
}

.codep-card h3 {
	font-size: 24px;
	margin-bottom: 15px;
	color: var(--primary-dark);
}

/* Сетка внутри карточки */
.solution-grid {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin: 25px 0 35px 0;
}

.solution-item {
	padding-left: 15px;
	border-left: 3px solid #e2e8f0;
}

.solution-title {
	display: block;
	font-weight: 700;
	color: var(--text-main);
	margin-bottom: 4px;
}

.solution-item p {
	font-size: 14px;
	color: var(--text-muted);
	margin: 0;
}

/* Кнопка и подсказка */
.codep-cta .cta-hint {
	display: block;
	text-align: center;
	margin-top: 12px;
	font-size: 13px;
	color: var(--text-muted);
}

/* Адаптивность */
@media (max-width: 992px) {
	#codependency {
		margin: 40px 0;
		border-radius: 0;
	}

	.codep-card {
		padding: 30px 20px;
	}
}

@media (max-width: 480px) {
	.codep-content h2 {
		font-size: 24px;
	}

	.codep-lead {
		font-size: 16px;
	}
}

/* =========================================
   БЛОК КАРТЫ (LOCATION)
========================================= */
#location {
	background-color: #fff;
	padding: 60px 0;
	margin-bottom: 60px;
}

.location-info h2 {
	margin-bottom: 20px;
	color: var(--primary-dark);
}

.location-desc {
	margin-bottom: 30px;
	color: var(--text-muted);
}

.address-card {
	background: #f8fafc;
	padding: 25px;
	border-radius: 12px;
	margin-bottom: 25px;
	border: 1px solid #e2e8f0;
}

.address-item {
	margin-bottom: 15px;
}

.address-item:last-child {
	margin-bottom: 0;
}

.addr-label {
	display: block;
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 2px;
}

.addr-value {
	font-weight: 700;
	color: var(--text-main);
	transition: all 0.3s ease;
}
a.addr-value:hover {
	color: var(--primary);
}

/* Карта и лоадер */
.map-wrapper {
	padding: 0;
	height: 470px;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	background: #eee;
}

.map-placeholder {
	width: 100%;
	height: 100%;
}

.map-loader {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: var(--text-muted);
}

.map {
	position: absolute;
	inset: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
}

.spinner {
	width: 40px;
	height: 40px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid var(--primary);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 10px;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@media (max-width: 992px) {
	.map-wrapper {
		height: 350px;
	}
}
@media (max-width: 768px) {
	.location-actions a {
		width: 100%;
	}
}

/* =========================================
   ОБНОВЛЕННЫЙ ФУТЕР (FOOTER)
========================================= */
#footer {
	background-color: #1a202c;
	/* Глубокий темный фон */
	color: #e2e8f0;
	padding: 80px 0 30px;
	font-size: 14px;
}

.footer-main-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 60px;
	margin-bottom: 50px;
}

.footer-col-flex {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
}

.footer-title {
	color: #fff;
	font-size: 18px;
	margin-bottom: 25px;
	font-weight: 700;
}

/* Логотип в футере */
.logo-footer {
	text-decoration: none;
	display: block;
	margin-bottom: 20px;
}

.logo-footer .logo-name {
	color: #fff;
	font-size: 24px;
	font-weight: 800;
}

.logo-footer .logo-name b {
	color: var(--primary);
}

.logo-footer .logo-desc {
	display: block;
	color: #a0aec0;
	font-size: 12px;
	text-transform: uppercase;
}

.footer-mission {
	line-height: 1.6;
	color: #a0aec0;
	margin-bottom: 20px;
}

.age-limit {
	display: inline-block;
	border: 1px solid #4a5568;
	padding: 2px 8px;
	border-radius: 4px;
	color: #a0aec0;
	font-weight: 700;
}

.footer-policy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}
.footer-policy > * {
	font-size: 14px;
	color: var(--text-muted);
	text-align: left;
	text-decoration: underline;
	transition: all 0.3s ease;
}
.footer-policy > *:hover {
	color: #ffffffd8;
}

/* Навигация */
.footer-nav {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-nav a {
	color: #a0aec0;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-nav a:hover {
	color: #fff;
}

/* Контакты */
.footer-contacts-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 30px;
}

.footer-contact {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: all 0.3s ease;
}
a.footer-contact:hover {
	color: #fff;
}

.footer-phone-link {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
}
.footer-phone-link:hover {
	text-decoration: underline;
}

.networks {
	display: flex;
	gap: 10px;
}
.network {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}
.network:hover {
	background: rgba(255, 255, 255, 0.25);
}

/* Юридический блок */
.footer-divider {
	border: none;
	border-top: 1px solid #2d3748;
	margin-bottom: 40px;
}

.footer-legal-section {
	color: #718096;
	font-size: 12px;
	line-height: 1.5;
}

.legal-info p,
.legal-disclaimers p {
	margin-bottom: 10px;
}

.footer-warning {
	margin-top: 30px;
	font-weight: 800;
	font-size: 16px;
	color: #4a5568;
	text-align: center;
	letter-spacing: 1px;
}

.footer-copyright {
	text-align: center;
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid #2d3748;
	color: #4a5568;
	font-size: 11px;
}

/* Адаптивность */
@media (max-width: 992px) {
	.footer-main-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 600px) {
	#footer {
		padding: 50px 0 20px;
	}

	.footer-main-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footer-col-flex {
		display: contents;
	}

	.footer-policy {
		order: 4;
	}

	.footer-warning {
		font-size: 14px;
	}
}

/* --- ТЕ САМЫЕ "УДАЧНЫЕ" ФОРМЫ --- */
.form-input,
.form-textarea {
	width: 100%;
	padding: 14px 25px;
	background: #ffffff;
	border: 2px solid #edf2f7;
	outline: none;
	border-radius: 12px;
	font-size: 16px;
	transition: all 0.3s ease;
}
.form-textarea {
	resize: none;
	min-height: 116px;
}

.form-input:focus,
.form-textarea:focus {
	border-color: var(--primary);
	box-shadow: 0 8px 20px rgba(0, 86, 179, 0.1);
	outline: none;
}

/* =========================================
   БЛОК: ФОРМЫ И ПОЛИТИКА КОНФИДЕНЦИАЛЬНОСТИ
========================================= */

/* Унифицированная вертикальная форма */
.form-vertical {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

/* Унифицированная горизонтальная форма */
.form-group-inline {
	display: flex;
	gap: 15px;
	align-items: stretch;
	justify-content: center;
	flex-wrap: wrap;
}

.form-group-inline .form-input {
	flex: 1;
	min-width: 220px;
}

/* Стилизация блока согласия */
.privacy-policy-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 12px;
	color: var(--text-muted);
	text-align: left;
	cursor: pointer;
	line-height: 1.4;
	margin-top: 5px;
}

.privacy-policy-label button {
	text-decoration: underline;
	transition: color 0.2s ease;
}

/* Кастомный чекбокс */
.custom-checkbox {
	appearance: none;
	-webkit-appearance: none;
	min-width: 18px;
	width: 18px;
	height: 18px;
	border: 2px solid #cbd5e1;
	border-radius: 4px;
	background-color: #fff;
	position: relative;
	cursor: pointer;
	transition: all 0.2s ease;
	margin-top: 1px;
	flex-shrink: 0;
}

.custom-checkbox:hover {
	border-color: var(--primary);
}

.custom-checkbox:checked {
	background-color: var(--primary);
	border-color: var(--primary);
}

.custom-checkbox:checked::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 5px;
	height: 9px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: translate(-40%, -65%) rotate(45deg);
}

.form__inner {
	max-width: 760px;
	margin: 30px auto 0;
}
.form__inner .privacy-policy-label {
	justify-content: center;
	color: rgba(255, 255, 255, 0.7);
}

/* Адаптив для форм */
@media (max-width: 768px) {
	.form-group-inline {
		flex-direction: column;
	}

	.form-group-inline .btn {
		width: 100%;
	}
}

/* =========================================
   ТАЙМЛАЙН: КОМПАКТНЫЙ ИНТЕРАКТИВНЫЙ ВИД
========================================= */
.timeline {
	padding: 10px 0;
	/* Сужаем общие границы секции */
}

.timeline-item {
	padding-bottom: 20px !important;
	/* Было 40px, уплотняем шаг */
}

.timeline-content {
	padding: 18px 25px;
	/* Компактные внутренние отступы */
	cursor: pointer;
	position: relative;
	user-select: none;
	/* Защита от случайного выделения текста при клике */
}

/* Индикатор раскрытия (плюсик) */
.timeline-content::before {
	content: "+";
	position: absolute;
	right: 20px;
	top: 18px;
	font-size: 24px;
	line-height: 1;
	color: var(--primary);
	transition: transform 0.3s ease;
	font-weight: 400;
}

/* Крестик при активном состоянии */
.timeline-content.is-open::before {
	transform: rotate(45deg);
	color: var(--text-muted);
}

.timeline-content h3 {
	margin-bottom: 5px;
	font-size: 1.1rem;
	padding-right: 20px;
	/* Защита от наложения на плюсик */
}

/* Настраиваем скрытый текст */
.timeline-content p {
	max-height: 0;
	opacity: 0;
	margin: 0;
	overflow: hidden;
	transition:
		max-height 0.4s ease,
		opacity 0.3s ease,
		margin 0.3s ease;
	font-size: 14px;
}

/* Раскрытое состояние карточки */
.timeline-content.is-open p {
	max-height: 250px;
	/* Лимит высоты для плавного открытия */
	opacity: 1;
	margin-top: 10px;
	margin-bottom: 15px;
	/* Восстанавливаем отступ до бейджа со временем */
}

.timeline-time {
	margin-top: 5px;
	transition: transform 0.3s ease;
}

/* =========================================
   БЛОК: ЛИЦЕНЗИИ И СЕРТИФИКАТЫ (E-E-A-T)
========================================= */

.eeat-trust-text {
	max-width: 850px;
	margin: 0 auto 40px;
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-main);
	text-align: center;
}

@media (max-width: 480px) {
	.eeat-trust-text {
		font-size: 14px;
		text-align: left;
	}
}

/* --- БЛОК СПОСОБОВ ОПЛАТЫ --- */
.payment-methods-wrap {
	margin-top: 40px;
	padding: 25px;
	background: #ffffff;
	border: 1px dashed #cbd5e1;
	/* Пунктирная рамка подчеркивает сервисный характер */
	border-radius: var(--border-radius);
	text-align: center;
}

.payment-methods-title {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--text-muted);
	margin-bottom: 20px;
}

.payment-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px 30px;
}

.payment-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 600;
	color: var(--text-main);
}

/* Маленькие иконки-индикаторы */
.payment-item::before {
	content: "✓";
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	background: var(--primary);
	color: #fff;
	border-radius: 50%;
	font-size: 12px;
}

/* Специальный стиль для рассрочки */
.payment-item.promo {
	color: var(--accent);
}

.payment-item.promo::before {
	background: var(--accent);
}

@media (max-width: 768px) {
	.payment-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		text-align: left;
	}

	.payment-methods-wrap {
		padding: 20px 15px;
	}
}

/* =========================================
   БЛОК: ГЕОГРАФИЯ ВЫЕЗДОВ (ТЕКСТОВЫЙ СПИСОК)
========================================= */
.geo-section {
	border-top: 1px solid #e2e8f0;
}

.tabs-nav {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 30px;
}

.tab-btn {
	background: #fff;
	border: 1px solid #cbd5e1;
	color: var(--text-main);
	padding: 10px 20px;
	border-radius: 50px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.tab-btn:hover {
	border-color: var(--primary);
	color: var(--primary);
}

.tab-btn.active {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
}

.tab-pane {
	display: none;
	animation: fadeIn 0.3s ease;
}

.tab-pane.active {
	display: block;
}

/* Многоколоночный список */
.geo-list {
	list-style: none;
	padding: 0;
	margin: 0;
	column-count: 4;
	column-gap: 30px;
}

.geo-list li {
	margin-bottom: 12px;
	break-inside: avoid;
}

/* Обычный текст вместо ссылок */
.geo-list span {
	color: var(--text-muted);
	font-size: 14px;
	display: inline-block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(5px);
	}

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

/* Адаптив */
@media (max-width: 992px) {
	.geo-list {
		column-count: 3;
	}
}

@media (max-width: 768px) {
	.geo-list {
		column-count: 2;
		column-gap: 15px;
	}

	.geo-nav {
		flex-direction: column;
	}

	.tab-btn {
		flex: 1;
		min-width: 140px;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.geo-list {
		column-count: 1;
	}

	.tab-btn {
		width: 100%;
	}
}

/* =========================================
   БЛОК НАДЗОРНЫХ ОРГАНОВ
========================================= */
.supervisory-grid {
	display: grid;
	/* Создаем две равные колонки на десктопе, которые схлопнутся в одну на мобилках */
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
}

.supervisory-card {
	background: #fff;
	padding: 30px;
	border-radius: 12px;
	border: 1px solid #cbd5e1;
	/* Используем цвет бордера, как в ваших табах */
	transition: box-shadow 0.3s ease;
}

.supervisory-card:hover {
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.supervisory-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-main);
	margin-top: 0;
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--primary);
	display: inline-block;
}

.supervisory-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.supervisory-list li {
	font-size: 15px;
	line-height: 1.5;
	color: var(--text-muted);
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.supervisory-list strong {
	color: var(--text-main);
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.supervisory-list a {
	color: var(--primary);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s ease;
}

.supervisory-list a:hover {
	color: var(--text-main);
	text-decoration: underline;
}

/* =========================================
   МОДАЛЬНЫЕ ОКНА (ПОПАПЫ)
========================================= */

/* Темный фон с размытием */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(15, 23, 42, 0.6); /* Темно-синий оттенок под твой дизайн */
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;

	/* Для плавной анимации */
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.modal-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Сама карточка попапа */
.modal-content {
	background: #fff;
	width: 100%;
	max-width: 480px;
	border-radius: 24px;
	padding: 40px;
	position: relative;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);

	/* Анимация "выплывания" снизу */
	transform: translateY(30px);
	transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	display: none; /* Скрыты по умолчанию внутри оверлея */
}

.modal-overlay.active .modal-content.active {
	display: block;
	transform: translateY(0);
}

/* Крестик закрытия */
.modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: #f1f5f9;
	border: none;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	font-size: 24px;
	color: #64748b;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s;
}

.modal-close:hover {
	background: #fee2e2;
	color: var(--accent);
	transform: rotate(90deg); /* Микро-взаимодействие */
}

/* Тексты внутри */
.modal-content h3 {
	margin-bottom: 12px;
	font-size: 24px;
	color: var(--text-main);
	/* padding-right: 30px;  */
}

.modal-content p {
	font-size: 15px;
	color: var(--text-muted);
	margin-bottom: 25px;
	line-height: 1.5;
}

/* Настройка сетки формы внутри попапа */
.modal-form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.modal-form textarea.form-input {
	height: auto;
	padding-top: 20px;
	resize: vertical; /* Позволяет тянуть поле только вниз */
}

/* Мелкий шрифт согласия */
.modal-legal {
	font-size: 12px !important;
	text-align: center;
	margin-top: 15px !important;
	margin-bottom: 0 !important;
	color: #94a3b8 !important;
}
.modal-legal button {
	text-decoration: underline;
	transition: all 0.3s ease;
}
.modal-legal button:hover {
	color: #666e7a !important;
}

@media (max-width: 480px) {
	.modal-content {
		padding: 30px 20px;
	}
}

.popup {
	height: 100vh;
	left: 50%;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	top: 50%;
	transform: translate3d(-50%, -50%, 0);
	width: 100%;
	z-index: 2000;
	transition: opacity 0.4s ease;
	overflow-y: auto;
	background: rgba(48, 44, 68, 0.6);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	display: none;
}

.popup.active {
	display: block;
}

.popup__body {
	width: 100%;
	min-height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 15px 20px;
}

.popup__body-doc {
	align-items: flex-start;
}

.popup.open {
	opacity: 1;
	pointer-events: all;
}

.popup__content {
	width: 100%;
	max-width: 582px;
	border-radius: 32px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	padding: 32px 40px;
	background: #ffffff;
	scale: 0.3;
	transition: scale 0.4s ease;
}

.popup.open .popup__content {
	scale: 1;
}

.close-popup {
	position: absolute;
	top: -47px;
	right: -47px;
	cursor: pointer;
	border-radius: 12px;
	width: 47px;
	height: 47px;
	transition: all 0.3s linear;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.close-popup svg path {
	transition: all 0.3s ease;
}

@media (hover: hover) {
	.close-popup:hover {
		background: rgba(255, 255, 255, 0.3);
	}
	.close-popup:hover svg path {
		stroke: var(--accent);
	}
}

@media (max-width: 768px) {
	.popup__content {
		border-radius: 20px;
		padding: 16px 20px;
	}

	.close-popup {
		top: -67px;
		right: 0;
	}
}

/* =========================================
   ПОПАП КАРТОЧКИ ВРАЧА
========================================= */
.doctor-modal {
	max-width: 700px;
	padding: 30px;
}

.modal-close-doc {
	position: absolute;
	top: 20px;
	right: 20px;
	background: #f1f5f9;
	border: none;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	font-size: 24px;
	color: #64748b;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s;
}

.modal-close-doc:hover {
	background: #fee2e2;
	color: var(--accent);
	transform: rotate(90deg); /* Микро-взаимодействие */
}

/* 1. Верхний блок (Grid для точного контроля отступов) */
.doctor-top-section {
	display: grid;
	grid-template-columns: 1fr 140px;
	gap: 25px;
	align-items: start;
	margin-bottom: 25px;
	border-bottom: 1px solid #e2e8f0;
	padding-bottom: 20px;
	width: 100%;
}

.doctor-name {
	margin: 0 0 8px 0;
	font-size: 22px;
	color: var(--text-main);
	line-height: 1.2;
}

.doctor-position {
	font-size: 15px;
	color: var(--primary);
	font-weight: 600;
	margin-bottom: 12px;
}

.doctor-experience {
	font-size: 14px;
	color: var(--text-muted);
}

.doctor-experience strong {
	color: var(--text-main);
}

.doctor-photo-right img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	object-fit: cover;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* 2. Центральный блок */
.doctor-section-title {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 12px 0;
	color: var(--text-main);
}

.doctor-desc {
	font-size: 14px;
	line-height: 1.6;
	color: var(--text-muted);
	margin-bottom: 20px;
}

.doctor-education-list {
	list-style: none;
	padding: 0;
	margin: 0 0 25px 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.doctor-education-list li {
	font-size: 14px;
	line-height: 1.5;
	color: var(--text-muted);
	position: relative;
	padding-left: 15px;
}

.doctor-education-list li::before {
	content: "•";
	color: var(--primary);
	font-weight: bold;
	position: absolute;
	left: 0;
}

/* 3. Слайдер дипломов (Native CSS Scroll) */
.doctor-diplomas-section {
	max-width: 100%;
}

.diplomas-scroll-container {
	display: flex;
	overflow-x: auto;
	gap: 15px;
	padding-bottom: 15px;
	max-width: 100%;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	/* Скрываем стандартный скроллбар в Firefox и IE */
	scrollbar-width: thin;
	scrollbar-color: #cbd5e1 transparent;

	scroll-padding-left: 15px;
}

/* Стилизация скроллбара для Chrome/Safari */
.diplomas-scroll-container::-webkit-scrollbar {
	height: 4px;
}
.diplomas-scroll-container::-webkit-scrollbar-track {
	background: #f1f5f9;
	border-radius: 10px;
}
.diplomas-scroll-container::-webkit-scrollbar-thumb {
	background: #cbd5e1;
	border-radius: 10px;
}

.diploma-slide,
.doc-diploma {
	flex: 0 0 200px; /* Фиксированная ширина карточки диплома */
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.doc-diploma img,
.diploma-slide img {
	width: 100%;
	height: 140px;
	object-fit: cover;
	border-radius: 6px;
	border: 1px solid #e2e8f0;
	cursor: pointer;
}

.diploma-caption {
	font-size: 12px;
	color: var(--text-muted);
	line-height: 1.4;
	text-align: center;
}

.modal-content-politic {
	max-width: 1000px;
}

.popup-politic-section {
	width: 100%;
	max-height: 680px;
	overflow-y: auto;
	padding-right: 20px;
}
.popup-politic-section::-webkit-scrollbar {
	width: 4px;
	border-radius: 10px;
}
.popup-politic-section::-webkit-scrollbar {
	background: #ced8e2;
	border-radius: 10px;
}
.popup-politic-section::-webkit-scrollbar-thumb {
	background: var(--primary);
	border-radius: 10px;
}

/* Адаптив под мобильные устройства */
@media (max-width: 768px) {
	.popup-politic-section {
		max-height: 560px;
	}
}
@media (max-width: 480px) {
	.doctor-top-section {
		grid-template-columns: 1fr;
		display: flex;
		flex-direction: column-reverse;
		align-items: center;
		text-align: center;
	}
	.doctor-photo-right {
		width: 160px;
	}
	.doctor-education-list li {
		text-align: left;
	}

	.doctor-info-left {
		width: 100%;
		text-align: left;
	}

	.doctor-info-left .doctor-name {
		font-size: 18px;
		margin-bottom: 4px;
		text-align: left;
		padding: 0;
	}

	.doctor-info-left .doctor-position {
		font-size: 14px;
		text-align-last: left;
		margin-bottom: 8px;
	}

	.doctor-section-title {
		font-size: 16px;
	}
}

.scroll-top {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100px;
	background: #fff;
	border: 1px solid var(--primary);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	position: fixed;
	bottom: 40px;
	left: 40px;
	z-index: 5;
	transition: all 0.3s ease;
}
.scroll-top svg path {
	transition: all 0.3s ease;
}
.scroll-top:hover {
	background: var(--primary);
}
.scroll-top:hover svg path {
	fill: #fff;
}

.scroll-top.hidden {
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
}
@media (max-width: 768px) {
	.scroll-top {
		bottom: 106px;
		left: 20px;
		padding: 10px;
		width: 46px;
		height: 46px;
	}
}


.not-found__wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    max-width: 400px;
    text-align: center;
    margin: 0 auto 80px;
}
.not-found__num {
    color: #0056b3;
    font-size: 180px;
    line-height: 90%;
}

@media (max-width: 768px) {
    .not-found__wrap {
        max-width: 100%;
        margin: 50px auto;
    }
    .not-found__num {
        font-size: 100px;
    }
}
/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.converse-card-wrapper_hidden {
	bottom: -90px;
	transition: 0.5s;
}

.converse-card-wrapper_hidden a {
	pointer-events: none;
}

.converse-card__close_hidden {
	opacity: 0;
}

.converse-card-wrapper_hidden:hover {
	bottom: 0;
}

.converse-card-wrapper_hidden:hover a {
	pointer-events: all;
}

.converse-card {
	padding: 10px;
	position: relative;
	border-radius: 15px 15px 0 0;
	background: #0056b3;
	background: linear-gradient(90deg, #D7E7FF 0%, rgba(117, 172, 255, 1) 10%, rgba(117, 172, 255, 1) 90%, #D7E7FF 100%);
	box-shadow: 0px 0px 10px 5px #00000040;
	width: 95%;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
}

.converse-card__item p {
	font-size: 16px;
	font-family: inter, sans-serif;
	font-weight: 700;
	color: #FFFFFF;
	overflow: hidden;
	text-wrap: nowrap;
	transition: 0.5s;
	text-align: left;
}

.converse-card__item:hover p {
	text-shadow: 0px 0px 5px #ffffff;
}

.converse-card__item {
	flex: 1;
	display: flex;
	gap: 12px;
	align-items: center;
	flex-direction: column;
}

.converse-card__item picture {
	width: 50px;
	height: 50px;
	transition: 0.3s;
}

.converse-card__item:hover picture {
	transform: scale(1.2);
}

.converse-card__item picture img {
	width: 100%;
	height: 100%;
}

.converse-card__close img {
	width: 100%;
	height: 100%;
}

.converse-card__close picture {
	width: 20px;
	height: 20px;
	background-color: #FFFFFF;
	border: 3px solid #FFF;
	border-radius: 50%;
}

.converse-card__close {
	position: absolute;
	top: -5px;
	right: -5px;
	transition: 0.5s;
	display: flex;
}

.converse-card__close:hover {
	transform: rotate(180deg) scale(1.2);
	transition: 0.5s;
}

.special-font-size-3 .converse-card {
	display: none;
}

@media (width <=600px) {
	.converse-card__item p {
		font-size: 12px;
	}
    .converse-card__item--mob {
        display: none;
    }
	.converse-card__item img {
		width: 40px;
	}

	button.header__chat.converse-card__item {
		padding-top: 10px;
	}
}

.converse-widget {
	display: grid;
	position: fixed;
	bottom: 5px;

	box-shadow: 0px 0px 20px 0px rgba(166, 198, 141, 0.3);
	padding: 10px 30px;
	align-items: center;
	z-index: 999;
	border-radius: 50px;
	background: #fff;
	width: 1300px;
	gap: 24px;
	grid-template-columns: auto 600px auto auto auto;
	left: 50%;
	transform: translateX(-50%);
	transition: all .4s;
	border-radius: var(--border-radius);
	background: #0056b3;
}

.converse-widget.hide {
	bottom: -85px;
}

.converse-widget__big-btn {
	background: rgba(220, 52, 55, 1);
	color: #fff;
	padding: 12px 24px;
	text-align: center;
	border-radius: 30px;
	animation: pulse 2s infinite;
	cursor: pointer;
}

.converse-widget__24-left {
	width: 10px;
	height: 10px;
	display: block;
	border-radius: 50%;
	background: rgba(91, 197, 177, 1);
}

.converse-widget__24 {
	display: flex;
	align-items: center;
	gap: 8px;
}

.converse-widget__24-right {
	display: flex;
	flex-direction: column;
}

.converse-widget__24-right span:nth-child(1) {
	font-size: 24px;
	color: rgba(58, 58, 58, 1);
	font-weight: 600;
}

.converse-widget__24-right span:nth-child(2) {
	font-size: 14px;
	color: rgba(130, 130, 130, 1);
}

.converse-widget__btn-item-left {
	min-width: 44px;
	height: 44px;
	background: rgba(38, 133, 253, 1);
	display: block;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.converse-widget__btn-item {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}

.converse-widget__btn-item:hover .converse-widget__btn-item-left {
	background: rgba(220, 52, 55, 1);
}

.converse-widget__btn-item-right span:nth-child(1) {
	font-size: 18px;
}

.converse-widget__btn-item-right span:nth-child(2) {
	font-size: 14px;
	color: rgba(130, 130, 130, 1);
}

.converse-widget__btn-item-right {
	font-size: 16px;
	color: rgba(46, 47, 69, 1);
}

.converse-widget__cross {
	position: absolute;
	right: -30px;
	top: -30px;
	width: 36px;
	height: 36px;
	background: rgba(220, 52, 55, 1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 0px 20px 0px rgba(166, 198, 141, 0.3);
	cursor: pointer;
}

.converse-widget__cross:hover {
	background: #0056b3;
}

@media(max-width: 1400px) {
	.converse-widget__big-btn {
		width: 400px;
	}

	.converse-widget {
		max-width: 90%;
		display: flex;
	}

	.converse-widget__btn-item-right {
		display: none;
	}
}

@media(max-width: 768px) {
	.converse-widget__big-btn span {
		display: none;
	}

	.converse-widget.hide {
		bottom: -70px;
	}

	.converse-widget__24 {
		display: none;
	}

	.converse-widget {
		gap: 8px;
		padding: 8px 8px;
		max-width: 90%;
	}

	.converse-widget__cross {
		right: -10px;
		top: -40px;
	}
}