* {
			box-sizing: border-box;
		}

		body {
			margin: 0;
			font-family: Arial, "Open Sans", sans-serif;
			background: #f3f6f9;
			color: #1f2933;
		}

		.vr-calc {
			max-width: 1180px;
			margin: 0 auto;
			padding: 38px 18px 50px;
		}

		.vr-calc__top {
			display: flex;
			align-items: flex-end;
			justify-content: space-between;
			gap: 20px;
			margin-bottom: 22px;
		}

		.vr-calc__title {
			margin: 0 0 8px;
			font-size: 34px;
			line-height: 1.15;
			color: #17212b;
		}

		.vr-calc__subtitle {
			margin: 0;
			color: #687584;
			font-size: 15px;
			line-height: 1.45;
			max-width: 760px;
		}

		.vr-calc__badge {
			flex: 0 0 auto;
			padding: 10px 14px;
			border-radius: 999px;
			background: #e9f5ff;
			color: #0b76bd;
			font-size: 13px;
			font-weight: 700;
			white-space: nowrap;
		}

		.vr-calc__layout {
			display: grid;
			grid-template-columns: minmax(0, 1fr) 390px;
			gap: 22px;
			align-items: start;
		}

		.vr-card {
			background: #fff;
			border: 1px solid #e3e8ef;
			border-radius: 14px;
			box-shadow: 0 12px 34px rgba(16, 36, 64, .07);
		}

		.vr-form-card {
			padding: 24px;
		}

		.vr-result-card {
			position: sticky;
			top: 18px;
			padding: 22px;
		}

		.vr-steps {
			display: grid;
			grid-template-columns: repeat(4, minmax(0, 1fr));
			gap: 8px;
			margin-bottom: 22px;
		}

		.vr-step {
			padding: 10px 12px;
			border-radius: 10px;
			background: #f5f7fa;
			color: #607080;
			font-size: 12px;
			font-weight: 700;
			line-height: 1.25;
		}

		.vr-step span {
			display: block;
			margin-bottom: 4px;
			color: #9aa6b2;
			font-size: 11px;
		}

		.vr-step.is-active {
			background: #e8f2ff;
			color: #115fa8;
		}

		.vr-section {
			margin-top: 24px;
			padding-top: 22px;
			border-top: 1px solid #edf1f5;
		}

		.vr-section:first-of-type {
			margin-top: 0;
			padding-top: 0;
			border-top: 0;
		}

		.vr-section__title {
			margin: 0 0 15px;
			font-size: 20px;
			color: #17212b;
		}

		.vr-section__hint {
			margin: -8px 0 16px;
			color: #778491;
			font-size: 13px;
			line-height: 1.45;
		}

		.vr-grid {
			display: grid;
			grid-template-columns: repeat(2, minmax(0, 1fr));
			gap: 15px;
		}

		.vr-field {
			display: flex;
			flex-direction: column;
			gap: 7px;
		}

		.vr-field--full {
			grid-column: 1 / -1;
		}

		.vr-field label {
			font-size: 13px;
			font-weight: 700;
			color: #46525f;
		}

		.vr-field input,
		.vr-field select {
			width: 100%;
			height: 42px;
			border: 1px solid #d5dde6;
			border-radius: 8px;
			padding: 0 12px;
			font-size: 14px;
			color: #17212b;
			background: #fff;
			outline: none;
		}

		.vr-field input:focus,
		.vr-field select:focus {
			border-color: #1e88d8;
			box-shadow: 0 0 0 3px rgba(30, 136, 216, .13);
		}

		.vr-mini-note {
			font-size: 12px;
			color: #7f8c99;
			line-height: 1.35;
		}

		.vr-option-grid {
			display: grid;
			grid-template-columns: repeat(2, minmax(0, 1fr));
			gap: 12px;
		}

		.vr-check {
			display: flex;
			align-items: flex-start;
			gap: 10px;
			padding: 13px;
			border: 1px solid #e3e8ef;
			border-radius: 10px;
			background: #fbfcfe;
			cursor: pointer;
			min-height: 74px;
		}

		.vr-check input {
			margin-top: 3px;
		}

		.vr-check b {
			display: block;
			margin-bottom: 3px;
			font-size: 14px;
			color: #23313f;
		}

		.vr-check span {
			font-size: 12px;
			color: #748291;
			line-height: 1.35;
		}

		.vr-actions {
			display: flex;
			flex-wrap: wrap;
			gap: 10px;
			margin-top: 24px;
		}

		.vr-btn {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			min-height: 42px;
			padding: 0 20px;
			border: 0;
			border-radius: 8px;
			font-size: 14px;
			font-weight: 800;
			text-decoration: none;
			cursor: pointer;
			transition: opacity .18s ease, transform .18s ease;
		}

		.vr-btn:hover {
			opacity: .92;
			transform: translateY(-1px);
		}

		.vr-btn--primary {
			background: #1e88d8;
			color: #fff;
		}

		.vr-btn--secondary {
			background: #edf2f7;
			color: #314151;
		}

		.vr-btn--green {
			background: #20a052;
			color: #fff;
		}

		.vr-summary {
			padding: 18px;
			border-radius: 14px;
			background: linear-gradient(135deg, #1e88d8 0%, #16a085 100%);
			color: #fff;
			margin-bottom: 18px;
		}

		.vr-summary__label {
			font-size: 13px;
			opacity: .9;
			margin-bottom: 4px;
		}

		.vr-summary__value {
			font-size: 34px;
			font-weight: 900;
			line-height: 1.1;
		}

		.vr-summary__note {
			margin-top: 8px;
			font-size: 12px;
			line-height: 1.35;
			opacity: .9;
		}

		.vr-result-meta {
			display: grid;
			grid-template-columns: repeat(2, minmax(0, 1fr));
			gap: 9px;
			margin-bottom: 16px;
		}

		.vr-meta {
			padding: 10px;
			border-radius: 10px;
			background: #f7f9fb;
			border: 1px solid #edf1f5;
		}

		.vr-meta__label {
			margin-bottom: 3px;
			color: #7b8794;
			font-size: 11px;
		}

		.vr-meta__value {
			font-size: 14px;
			font-weight: 800;
			color: #22313f;
		}

		.vr-table {
			width: 100%;
			border-collapse: collapse;
			font-size: 13px;
		}

		.vr-table tr {
			border-bottom: 1px solid #eef2f6;
		}

		.vr-table tr:last-child {
			border-bottom: 0;
		}

		.vr-table td {
			padding: 9px 0;
			vertical-align: top;
		}

		.vr-table td:first-child {
			color: #4c5b68;
			padding-right: 12px;
		}

		.vr-table td:last-child {
			text-align: right;
			white-space: nowrap;
			font-weight: 800;
			color: #1f2933;
		}

		.vr-alert {
			margin-top: 16px;
			padding: 12px;
			border-radius: 10px;
			background: #fff7e6;
			color: #7a5300;
			font-size: 12px;
			line-height: 1.45;
		}

		.vr-result-actions {
			display: grid;
			gap: 10px;
			margin-top: 16px;
		}

		.vr-hidden {
			display: none !important;
		}

		.vr-invalid {
			margin-top: 10px;
			padding: 12px;
			border-radius: 10px;
			background: #fff1f1;
			color: #9a1c1c;
			font-size: 13px;
			line-height: 1.4;
		}

		@media (max-width: 980px) {
			.vr-calc__layout {
				grid-template-columns: 1fr;
			}

			.vr-result-card {
				position: static;
			}

			.vr-calc__top {
				align-items: flex-start;
				flex-direction: column;
			}
		}

		@media (max-width: 680px) {
			.vr-calc {
				padding: 28px 14px 38px;
			}

			.vr-calc__title {
				font-size: 27px;
			}

			.vr-steps,
			.vr-grid,
			.vr-option-grid,
			.vr-result-meta {
				grid-template-columns: 1fr;
			}

			.vr-form-card,
			.vr-result-card {
				padding: 17px;
			}

			.vr-summary__value {
				font-size: 28px;
			}

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


/* V10: аккуратные подсказки населённых пунктов */
.vr-field--settlement { position: relative !important; }

.vr-suggestions {
	position: static !important;
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 8px !important;
	margin-top: 8px !important;
	max-height: none !important;
	overflow: visible !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.vr-suggestion {
	display: block !important;
	width: 100% !important;
	padding: 11px 12px !important;
	border: 1px solid #d8e2ec !important;
	border-radius: 10px !important;
	background: #fff !important;
	text-align: left !important;
	cursor: pointer !important;
	box-shadow: 0 4px 14px rgba(16, 36, 64, .05) !important;
	font-family: inherit !important;
}

.vr-suggestion:hover {
	border-color: #1e88d8 !important;
	background: #f5faff !important;
}

.vr-suggestion__title {
	display: flex !important;
	align-items: flex-start !important;
	justify-content: space-between !important;
	gap: 10px !important;
	margin-bottom: 6px !important;
	font-size: 14px !important;
	font-weight: 800 !important;
	color: #17212b !important;
	line-height: 1.3 !important;
}

.vr-suggestion__name {
	display: block !important;
	min-width: 0 !important;
	overflow-wrap: anywhere !important;
}

.vr-suggestion__depth {
	display: inline-flex !important;
	flex: 0 0 auto !important;
	align-items: center !important;
	padding: 3px 8px !important;
	border-radius: 999px !important;
	background: #e9f5ff !important;
	color: #0b76bd !important;
	font-size: 12px !important;
	font-weight: 900 !important;
	white-space: nowrap !important;
}

.vr-suggestion__meta {
	display: block !important;
	font-size: 12px !important;
	color: #718091 !important;
	line-height: 1.35 !important;
}


/* V11: читаемые подсказки населённых пунктов */
.vr-field--settlement {
	position: relative !important;
}

.vr-suggestions {
	position: static !important;
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 8px !important;
	margin-top: 8px !important;
	max-height: none !important;
	overflow: visible !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.vr-suggestion {
	display: block !important;
	width: 100% !important;
	padding: 11px 12px !important;
	border: 1px solid #d8e2ec !important;
	border-radius: 10px !important;
	background: #fff !important;
	text-align: left !important;
	cursor: pointer !important;
	box-shadow: 0 4px 14px rgba(16, 36, 64, .05) !important;
	font-family: inherit !important;
}

.vr-suggestion:hover {
	border-color: #1e88d8 !important;
	background: #f5faff !important;
}

.vr-suggestion__title {
	display: flex !important;
	align-items: flex-start !important;
	justify-content: space-between !important;
	gap: 10px !important;
	margin-bottom: 6px !important;
	font-size: 14px !important;
	font-weight: 800 !important;
	color: #17212b !important;
	line-height: 1.3 !important;
}

.vr-suggestion__name {
	display: block !important;
	min-width: 0 !important;
	overflow-wrap: anywhere !important;
}

.vr-suggestion__depth {
	display: inline-flex !important;
	flex: 0 0 auto !important;
	align-items: center !important;
	padding: 3px 8px !important;
	border-radius: 999px !important;
	background: #e9f5ff !important;
	color: #0b76bd !important;
	font-size: 12px !important;
	font-weight: 900 !important;
	white-space: nowrap !important;
}

.vr-suggestion__meta {
	display: block !important;
	font-size: 12px !important;
	color: #718091 !important;
	line-height: 1.35 !important;
}


/* V12: компактный выпадающий список населённых пунктов */
.vr-suggestions {
	position: absolute !important;
	top: calc(100% + 8px) !important;
	left: 0 !important;
	right: 0 !important;
	z-index: 30 !important;
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 0 !important;
	margin-top: 0 !important;
	max-height: 260px !important;
	overflow-y: auto !important;
	background: #fff !important;
	border: 1px solid #d8e2ec !important;
	border-radius: 12px !important;
	box-shadow: 0 12px 30px rgba(16, 36, 64, .12) !important;
}

.vr-suggestion {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 12px !important;
	width: 100% !important;
	padding: 12px 14px !important;
	border: 0 !important;
	border-bottom: 1px solid #eef2f6 !important;
	border-radius: 0 !important;
	background: #fff !important;
	text-align: left !important;
	cursor: pointer !important;
	box-shadow: none !important;
	font-family: inherit !important;
}

.vr-suggestion:last-child {
	border-bottom: 0 !important;
}

.vr-suggestion:hover {
	background: #f5faff !important;
}

.vr-suggestion__title,
.vr-suggestion__meta {
	display: none !important;
}

.vr-suggestion__name {
	display: block !important;
	min-width: 0 !important;
	flex: 1 1 auto !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	color: #17212b !important;
	line-height: 1.3 !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
}

.vr-suggestion__depth {
	display: inline-flex !important;
	flex: 0 0 auto !important;
	align-items: center !important;
	justify-content: center !important;
	min-width: 88px !important;
	padding: 4px 10px !important;
	border-radius: 999px !important;
	background: #e9f5ff !important;
	color: #0b76bd !important;
	font-size: 12px !important;
	font-weight: 900 !important;
	white-space: nowrap !important;
}

.vr-depth-hint {
	display: none !important;
}


/* V15: улучшенный блок фильтра и пометки об ориентировочной стоимости */
.vr-filter-card {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-height: 116px;
	padding: 14px 15px;
	border: 1px solid #dbe6f1;
	border-radius: 12px;
	background: linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
}

.vr-filter-card__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.vr-filter-card__eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .02em;
	text-transform: uppercase;
	color: #6f7e8d;
}

.vr-filter-card__price {
	flex: 0 0 auto;
	padding: 5px 10px;
	border-radius: 999px;
	background: #e7f4ff;
	color: #0b76bd;
	font-size: 13px;
	font-weight: 900;
	white-space: nowrap;
}

.vr-filter-card__name {
	font-size: 16px;
	font-weight: 800;
	line-height: 1.25;
	color: #17212b;
}

.vr-filter-card__hint {
	font-size: 12px;
	line-height: 1.45;
	color: #718091;
}

.vr-filter-card__state {
	align-self: flex-start;
	padding: 5px 9px;
	border-radius: 999px;
	background: #eef5fb;
	color: #415263;
	font-size: 12px;
	font-weight: 700;
}

.vr-filter-card.is-declined {
	background: linear-gradient(180deg, #fff9f4 0%, #fff4ea 100%);
	border-color: #f1ddc8;
}

.vr-filter-card.is-declined .vr-filter-card__price {
	background: #fce7da;
	color: #b2601b;
}

.vr-filter-card.is-declined .vr-filter-card__state {
	background: #fff0e1;
	color: #9c5f21;
}

.vr-summary__label {
	font-weight: 700;
}

.vr-summary__value::before {
	content: 'от ';
	font-size: .58em;
	font-weight: 800;
	vertical-align: middle;
	opacity: .96;
	margin-right: 4px;
}

.vr-table tr:last-child td:first-child::after {
	content: ' (ориентировочно)';
	font-weight: 700;
	color: #738193;
}

.vr-alert {
	border: 1px solid #f1e1b4;
}

@media (max-width: 680px) {
	.vr-filter-card__top {
		flex-direction: column;
		align-items: flex-start;
	}
}


/* V16: исправление сетки и адаптива для ПК/мобилок */
.vr-calc {
	max-width: 1280px;
	padding: 32px 20px 48px;
}

.vr-calc__layout {
	grid-template-columns: minmax(0, 1fr) 420px;
	gap: 24px;
	align-items: start;
}

.vr-form-card,
.vr-result-card {
	overflow: hidden;
}

.vr-form-card {
	padding: 28px;
}

.vr-result-card {
	padding: 24px;
}

.vr-grid,
.vr-option-grid {
	align-items: stretch;
}

.vr-field {
	min-width: 0;
}

.vr-field input,
.vr-field select {
	min-width: 0;
}

.vr-filter-card {
	height: 100%;
	min-height: 130px;
}

.vr-check {
	min-height: 96px;
}

.vr-actions {
	justify-content: flex-start;
	align-items: center;
}

.vr-result-actions .vr-btn,
.vr-actions .vr-btn {
	max-width: 100%;
}

.vr-table td:first-child {
	width: 70%;
}

.vr-table td:last-child {
	width: 30%;
}

@media (max-width: 1180px) {
	.vr-calc__layout {
		grid-template-columns: minmax(0, 1fr) 380px;
		gap: 20px;
	}

	.vr-form-card {
		padding: 22px;
	}

	.vr-result-card {
		padding: 20px;
	}
}

@media (max-width: 940px) {
	.vr-calc__layout {
		grid-template-columns: 1fr;
	}

	.vr-result-card {
		position: static;
	}
}

@media (max-width: 680px) {
	.vr-calc {
		padding: 22px 12px 34px;
	}

	.vr-calc__title {
		font-size: 26px;
	}

	.vr-calc__subtitle {
		font-size: 14px;
	}

	.vr-grid,
	.vr-option-grid,
	.vr-result-meta {
		grid-template-columns: 1fr;
	}

	.vr-form-card,
	.vr-result-card {
		padding: 16px;
		border-radius: 12px;
	}

	.vr-filter-card {
		min-height: 0;
	}

	.vr-check {
		min-height: 0;
	}

	.vr-actions,
	.vr-result-actions {
		grid-template-columns: 1fr;
	}

	.vr-btn {
		width: 100%;
	}

	.vr-table td {
		font-size: 12px;
	}

	.vr-table td:first-child,
	.vr-table td:last-child {
		width: auto;
	}
}


/* V17: визуальный редизайн — чище, современнее, удобнее */
:root {
	--vr-bg: #edf3f8;
	--vr-surface: #ffffff;
	--vr-surface-soft: #f7fafc;
	--vr-border: #dbe7f1;
	--vr-border-strong: #c9d8e5;
	--vr-text: #17212b;
	--vr-text-soft: #667689;
	--vr-blue: #1f88d9;
	--vr-blue-dark: #1569ad;
	--vr-green: #1faa67;
	--vr-teal: #15a39c;
	--vr-shadow: 0 18px 48px rgba(19, 44, 70, .08);
	--vr-radius-xl: 24px;
	--vr-radius-lg: 18px;
	--vr-radius-md: 14px;
}

body {
	background:
		radial-gradient(circle at top left, rgba(31,136,217,.08), transparent 28%),
		linear-gradient(180deg, #f5f8fb 0%, #eef3f8 100%);
	color: var(--vr-text);
}

.vr-calc {
	max-width: 1320px;
	padding: 34px 20px 54px;
}

.vr-calc__top {
	margin-bottom: 26px;
}

.vr-calc__title {
	font-size: clamp(32px, 4vw, 44px);
	line-height: 1.08;
	letter-spacing: -0.03em;
	margin-bottom: 12px;
}

.vr-calc__subtitle {
	max-width: 820px;
	font-size: 16px;
	line-height: 1.55;
	color: var(--vr-text-soft);
}

.vr-calc__layout {
	grid-template-columns: minmax(0, 1fr) 430px;
	gap: 26px;
}

.vr-card {
	border: 1px solid rgba(203, 217, 229, .8);
	border-radius: var(--vr-radius-xl);
	background: rgba(255,255,255,.88);
	backdrop-filter: blur(8px);
	box-shadow: var(--vr-shadow);
}

.vr-form-card,
.vr-result-card {
	padding: 28px;
}

.vr-section {
	margin-top: 28px;
	padding-top: 24px;
}

.vr-section__title {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
	font-size: 18px;
	line-height: 1.2;
}

.vr-section__title::before {
	content: '';
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--vr-blue), var(--vr-teal));
	box-shadow: 0 0 0 6px rgba(31,136,217,.12);
	flex: 0 0 auto;
}

.vr-section__hint {
	font-size: 14px;
	line-height: 1.55;
	color: #758596;
	max-width: 92%;
}

.vr-grid,
.vr-option-grid {
	gap: 16px;
}

.vr-field label {
	font-size: 13px;
	font-weight: 800;
	color: #314253;
	letter-spacing: .01em;
}

.vr-field input,
.vr-field select {
	height: 50px;
	padding: 0 15px;
	border: 1px solid var(--vr-border);
	border-radius: 14px;
	background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
	font-size: 15px;
	transition: border-color .18s ease, box-shadow .18s ease, background .18s ease, transform .18s ease;
}

.vr-field input:hover,
.vr-field select:hover {
	border-color: var(--vr-border-strong);
}

.vr-field input:focus,
.vr-field select:focus {
	border-color: var(--vr-blue);
	box-shadow: 0 0 0 4px rgba(31,136,217,.12);
	background: #fff;
	transform: translateY(-1px);
}

.vr-filter-card {
	min-height: 150px;
	padding: 16px;
	border-radius: 18px;
	border: 1px solid #d7e4f0;
	background: linear-gradient(180deg, #fafdff 0%, #f2f7fb 100%);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.95);
}

.vr-filter-card__eyebrow {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .05em;
	color: #6f8294;
}

.vr-filter-card__price {
	padding: 6px 12px;
	font-size: 12px;
	font-weight: 900;
}

.vr-filter-card__name {
	font-size: 20px;
	line-height: 1.18;
	letter-spacing: -0.02em;
}

.vr-filter-card__hint {
	font-size: 13px;
	line-height: 1.5;
}

.vr-filter-card__state {
	margin-top: auto;
	padding: 6px 10px;
	font-size: 12px;
	font-weight: 800;
}

.vr-check {
	position: relative;
	gap: 12px;
	min-height: 104px;
	padding: 16px;
	border: 1px solid var(--vr-border);
	border-radius: 18px;
	background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
}

.vr-check:hover {
	border-color: #c7d8e6;
	box-shadow: 0 12px 24px rgba(17, 55, 91, .06);
	transform: translateY(-1px);
}

.vr-check input {
	margin-top: 4px;
	accent-color: var(--vr-blue);
	width: 16px;
	height: 16px;
	flex: 0 0 auto;
}

.vr-check b {
	margin-bottom: 6px;
	font-size: 15px;
	line-height: 1.3;
}

.vr-check span {
	font-size: 13px;
	line-height: 1.55;
	color: #758596;
}

.vr-check:has(input:checked) {
	border-color: rgba(31,136,217,.35);
	background: linear-gradient(180deg, #f9fcff 0%, #eef7ff 100%);
	box-shadow: 0 0 0 4px rgba(31,136,217,.07);
}

.vr-actions {
	margin-top: 28px;
	gap: 12px;
}

.vr-btn {
	min-height: 48px;
	padding: 0 22px;
	border-radius: 14px;
	font-size: 15px;
	font-weight: 800;
	box-shadow: 0 10px 20px rgba(14, 46, 76, .08);
}

.vr-btn--primary {
	background: linear-gradient(135deg, #1f8ce0 0%, #176fcb 100%);
}

.vr-btn--green {
	background: linear-gradient(135deg, #21ae5b 0%, #1d9650 100%);
}

.vr-btn--secondary {
	background: #eef3f8;
	color: #304254;
	box-shadow: none;
}

.vr-result-card {
	position: sticky;
	top: 18px;
}

.vr-summary {
	padding: 22px;
	border-radius: 20px;
	background: linear-gradient(135deg, #228be6 0%, #139f91 100%);
	box-shadow: 0 16px 36px rgba(18, 132, 151, .22);
	margin-bottom: 18px;
}

.vr-summary__label {
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .01em;
}

.vr-summary__value {
	margin-top: 4px;
	font-size: clamp(34px, 4vw, 52px);
	line-height: 1.02;
	letter-spacing: -0.04em;
}

.vr-summary__note {
	margin-top: 12px;
	font-size: 13px;
	line-height: 1.5;
	opacity: .95;
}

.vr-result-meta {
	gap: 12px;
	margin-bottom: 18px;
}

.vr-meta {
	padding: 14px 15px;
	border-radius: 16px;
	background: linear-gradient(180deg, #fafcff 0%, #f4f8fb 100%);
	border: 1px solid #e3ecf4;
}

.vr-meta__label {
	font-size: 12px;
	margin-bottom: 6px;
}

.vr-meta__value {
	font-size: 18px;
	line-height: 1.2;
}

.vr-table {
	font-size: 14px;
	background: #fff;
	border: 1px solid #ebf0f5;
	border-radius: 16px;
	overflow: hidden;
}

.vr-table tr {
	border-bottom: 1px solid #edf2f6;
}

.vr-table tr:last-child {
	background: #fbfdff;
}

.vr-table td {
	padding: 12px 14px;
	line-height: 1.4;
}

.vr-table td:first-child {
	color: #506171;
}

.vr-table td:last-child {
	font-size: 15px;
	color: #17212b;
}

.vr-alert {
	margin-top: 18px;
	padding: 14px 15px;
	border-radius: 16px;
	background: linear-gradient(180deg, #fff8ea 0%, #fff3d7 100%);
	font-size: 13px;
	line-height: 1.55;
}

.vr-result-actions {
	margin-top: 18px;
	gap: 12px;
}

.vr-suggestions {
	border-radius: 16px !important;
	border-color: #d7e4ef !important;
	box-shadow: 0 18px 36px rgba(12, 35, 58, .12) !important;
}

.vr-suggestion {
	padding: 13px 14px !important;
}

.vr-suggestion__name {
	font-size: 15px !important;
}

.vr-suggestion__depth {
	min-width: 94px !important;
	padding: 5px 11px !important;
	font-size: 12px !important;
}

@media (max-width: 1180px) {
	.vr-calc__layout {
		grid-template-columns: minmax(0, 1fr) 390px;
		gap: 20px;
	}

	.vr-form-card,
	.vr-result-card {
		padding: 22px;
	}
}

@media (max-width: 980px) {
	.vr-calc__layout {
		grid-template-columns: 1fr;
	}

	.vr-result-card {
		position: static;
	}
}

@media (max-width: 760px) {
	.vr-calc {
		padding: 24px 14px 36px;
	}

	.vr-form-card,
	.vr-result-card {
		padding: 16px;
		border-radius: 18px;
	}

	.vr-calc__title {
		font-size: 28px;
	}

	.vr-calc__subtitle,
	.vr-section__hint,
	.vr-check span,
	.vr-filter-card__hint,
	.vr-summary__note,
	.vr-alert {
		font-size: 13px;
	}

	.vr-grid,
	.vr-option-grid,
	.vr-result-meta {
		grid-template-columns: 1fr;
	}

	.vr-field input,
	.vr-field select {
		height: 48px;
	}

	.vr-filter-card__name {
		font-size: 18px;
	}

	.vr-table {
		font-size: 13px;
	}

	.vr-table td {
		padding: 11px 10px;
	}

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

@media (max-width: 540px) {
	.vr-summary {
		padding: 18px;
		border-radius: 18px;
	}

	.vr-summary__value {
		font-size: 34px;
	}

	.vr-table td:first-child,
	.vr-table td:last-child {
		width: auto;
	}

	.vr-table td:last-child {
		white-space: normal;
	}
}


/* V18: ₽ не переносится на новую строку */
.vr-table td:last-child,
.vr-summary__value,
.vr-filter-card__price {
	white-space: nowrap !important;
	word-break: keep-all !important;
	overflow-wrap: normal !important;
}

@media (max-width: 540px) {
	.vr-table {
		table-layout: fixed !important;
	}

	.vr-table td:first-child {
		width: 58% !important;
	}

	.vr-table td:last-child {
		width: 42% !important;
		white-space: nowrap !important;
		word-break: keep-all !important;
		overflow-wrap: normal !important;
		font-size: 14px !important;
	}

	.vr-table tr:last-child td:last-child {
		font-size: 18px !important;
	}

	.vr-table td {
		padding-left: 8px !important;
		padding-right: 8px !important;
	}
}

@media (max-width: 390px) {
	.vr-table td:first-child {
		width: 55% !important;
	}

	.vr-table td:last-child {
		width: 45% !important;
		font-size: 13px !important;
	}

	.vr-table tr:last-child td:last-child {
		font-size: 17px !important;
	}
}


/* V19: переработан блок фильтра и карточки доп. опций */
.vr-filter-card {
	padding: 18px;
	border-radius: 20px;
	background: linear-gradient(180deg, #fbfdff 0%, #f3f8fc 100%);
	border: 1px solid #d9e7f2;
}

.vr-filter-card__header {
	display: grid;
	grid-template-columns: 52px 1fr auto;
	gap: 14px;
	align-items: center;
	margin-bottom: 12px;
}

.vr-filter-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 16px;
	background: linear-gradient(135deg, #1f8ce0 0%, #16a49d 100%);
	color: #fff;
	font-size: 16px;
	font-weight: 900;
	letter-spacing: .02em;
	box-shadow: 0 12px 24px rgba(31, 140, 224, .22);
}

.vr-filter-card__meta {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

.vr-filter-card__eyebrow {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #6f8294;
}

.vr-filter-card__state {
	align-self: flex-start;
	padding: 5px 10px;
	border-radius: 999px;
	background: #eaf4ff;
	color: #1b72b5;
	font-size: 12px;
	font-weight: 800;
}

.vr-filter-card__price {
	align-self: start;
	padding: 7px 12px;
	border-radius: 999px;
	background: #eef6ff;
	color: #0d76be;
	font-size: 13px;
	font-weight: 900;
	box-shadow: none;
}

.vr-filter-card__name {
	font-size: 18px;
	font-weight: 900;
	line-height: 1.25;
	margin-bottom: 8px;
}

.vr-filter-card__hint {
	font-size: 13px;
	line-height: 1.55;
	color: #6d7d8f;
}

.vr-filter-card.is-declined {
	background: linear-gradient(180deg, #fffaf5 0%, #fff2e8 100%);
	border-color: #efdac5;
}

.vr-filter-card.is-declined .vr-filter-card__icon {
	background: linear-gradient(135deg, #f1a14b 0%, #dd7f32 100%);
	box-shadow: 0 12px 24px rgba(221, 127, 50, .2);
}

.vr-filter-card.is-declined .vr-filter-card__state {
	background: #fff0df;
	color: #a86422;
}

.vr-filter-card.is-declined .vr-filter-card__price {
	background: #fff1e4;
	color: #b16722;
}

.vr-check {
	padding: 0;
	gap: 0;
	overflow: hidden;
}

.vr-check input {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
}

.vr-check__body {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
	padding: 16px 16px 16px 42px;
}

.vr-check__topline {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.vr-check__lead {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.vr-check__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 12px;
	background: #eef6fd;
	color: #166eb3;
	font-size: 16px;
	flex: 0 0 auto;
}

.vr-check__price {
	flex: 0 0 auto;
	padding: 6px 10px;
	border-radius: 999px;
	background: #f2f7fb;
	color: #2a506d;
	font-size: 12px;
	font-weight: 800;
	white-space: nowrap;
}

.vr-check b {
	margin-bottom: 0;
	font-size: 15px;
	line-height: 1.35;
}

.vr-check span {
	font-size: 13px;
	line-height: 1.55;
}

.vr-check:has(input:checked) .vr-check__price {
	background: #e9f3ff;
	color: #176eb7;
}

.vr-check--water .vr-check__icon { background: #eaf7ff; color: #1874c5; }
.vr-check--filter .vr-check__icon { background: #fff1e5; color: #bb6b24; }
.vr-check--geophysics .vr-check__icon { background: #edf6ff; color: #1972bc; }
.vr-check--cementation .vr-check__icon { background: #eef8f1; color: #2b8a53; }

@media (max-width: 760px) {
	.vr-filter-card__header {
		grid-template-columns: 46px 1fr;
	}
	.vr-filter-card__price {
		grid-column: 1 / -1;
		justify-self: start;
	}
	.vr-check__topline {
		flex-direction: column;
	}
	.vr-check__price {
		align-self: flex-start;
	}
}


/* V20: убраны иконки из блока фильтра и карточек опций */
.vr-filter-card__header {
	grid-template-columns: 1fr auto;
	gap: 12px;
}

.vr-check__body {
	padding: 16px 16px 16px 38px;
}

.vr-check__lead {
	gap: 0;
}

.vr-check__icon,
.vr-filter-card__icon {
	display: none !important;
}

.vr-filter-card__meta {
	gap: 8px;
}

.vr-check__topline {
	align-items: center;
}

@media (max-width: 760px) {
	.vr-filter-card__header {
		grid-template-columns: 1fr;
	}
}


/* V21: доработка типографики */
:root {
	--vr-font-main: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--vr-font-headings: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body,
.vr-calc,
.vr-calc * {
	font-family: var(--vr-font-main);
}

.vr-calc {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

.vr-calc__title,
.vr-section__title,
.vr-summary__label,
.vr-summary__value,
.vr-meta__value,
.vr-filter-card__name,
.vr-table td:last-child,
.vr-btn,
.vr-check b,
.vr-field label {
	font-family: var(--vr-font-headings);
}

.vr-calc__title {
	font-weight: 900;
	letter-spacing: -0.045em;
	line-height: 1.04;
}

.vr-calc__subtitle {
	font-size: 15px;
	line-height: 1.7;
	letter-spacing: -0.005em;
	color: #667789;
}

.vr-section__title {
	font-size: 17px;
	font-weight: 850;
	letter-spacing: -0.02em;
}

.vr-section__hint {
	font-size: 14px;
	line-height: 1.65;
	letter-spacing: -0.005em;
	color: #738496;
}

.vr-field label {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.35;
}

.vr-field input,
.vr-field select {
	font-size: 15px;
	font-weight: 500;
	letter-spacing: -0.01em;
	line-height: 1.4;
	color: #203040;
}

.vr-field input::placeholder {
	color: #8b99a8;
	font-weight: 450;
}

.vr-filter-card__eyebrow {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.vr-filter-card__state,
.vr-check__price,
.vr-filter-card__price {
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.01em;
}

.vr-filter-card__name {
	font-size: 17px;
	font-weight: 850;
	line-height: 1.28;
	letter-spacing: -0.02em;
}

.vr-filter-card__hint {
	font-size: 13px;
	line-height: 1.6;
	letter-spacing: -0.005em;
}

.vr-check b {
	font-size: 15px;
	font-weight: 800;
	line-height: 1.35;
	letter-spacing: -0.01em;
}

.vr-check span {
	font-size: 13px;
	line-height: 1.65;
	letter-spacing: -0.005em;
	color: #708194;
}

.vr-btn {
	font-size: 15px;
	font-weight: 850;
	letter-spacing: -0.01em;
}

.vr-summary__label {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.3;
}

.vr-summary__value {
	font-weight: 900;
	line-height: 0.98;
	letter-spacing: -0.055em;
}

.vr-summary__note {
	font-size: 13px;
	line-height: 1.55;
	letter-spacing: -0.005em;
}

.vr-meta__label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: -0.005em;
}

.vr-meta__value {
	font-size: 16px;
	font-weight: 850;
	line-height: 1.25;
	letter-spacing: -0.02em;
}

.vr-table td {
	font-size: 14px;
	line-height: 1.5;
	letter-spacing: -0.005em;
}

.vr-table td:first-child {
	font-weight: 500;
	color: #526373;
}

.vr-table td:last-child {
	font-size: 14px;
	font-weight: 850;
	letter-spacing: -0.015em;
	color: #18222d;
}

.vr-table tr:last-child td:first-child {
	font-size: 15px;
	font-weight: 850;
	color: #17212b;
}

.vr-table tr:last-child td:last-child {
	font-size: 16px;
	font-weight: 900;
}

.vr-alert {
	font-size: 13px;
	line-height: 1.65;
	letter-spacing: -0.005em;
}

.vr-suggestion__name {
	font-size: 15px !important;
	font-weight: 750 !important;
	letter-spacing: -0.01em !important;
}

.vr-suggestion__depth {
	font-size: 12px !important;
	font-weight: 800 !important;
}

@media (max-width: 760px) {
	.vr-calc__title {
		font-size: 30px;
		letter-spacing: -0.04em;
	}

	.vr-calc__subtitle,
	.vr-section__hint,
	.vr-filter-card__hint,
	.vr-check span,
	.vr-summary__note,
	.vr-alert {
		font-size: 13px;
	}

	.vr-section__title {
		font-size: 16px;
	}

	.vr-field input,
	.vr-field select,
	.vr-table td,
	.vr-table td:last-child {
		font-size: 14px;
	}

	.vr-summary__value {
		font-size: 34px;
	}
}


/* V22: убрано "от" из цен */
.vr-summary__value::before {
	content: "" !important;
	margin: 0 !important;
}

.vr-table td:last-child,
.vr-summary__value,
.vr-filter-card__price,
.vr-check__price {
	white-space: nowrap !important;
	word-break: keep-all !important;
	overflow-wrap: normal !important;
}


/* V25: модальная форма заявки */
.vr-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.vr-modal.is-open {
	display: flex;
}

.vr-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(12, 24, 38, .62);
	backdrop-filter: blur(4px);
}

.vr-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(520px, calc(100vw - 32px));
	max-height: calc(100vh - 48px);
	overflow: auto;
	background: #fff;
	border: 1px solid #dde7f0;
	border-radius: 24px;
	box-shadow: 0 26px 90px rgba(12, 24, 38, .28);
	padding: 28px;
}

.vr-modal__close {
	position: absolute;
	top: 14px;
	right: 16px;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 12px;
	background: #f0f5f9;
	color: #425466;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.vr-modal__close:hover {
	background: #e4edf5;
}

.vr-modal__header {
	margin-bottom: 20px;
	padding-right: 42px;
}

.vr-modal__eyebrow {
	margin-bottom: 8px;
	color: #1685c4;
	font-size: 12px;
	font-weight: 850;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.vr-modal__title {
	margin: 0 0 10px;
	color: #17212b;
	font-size: 28px;
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: -.04em;
}

.vr-modal__text {
	color: #667789;
	font-size: 14px;
	line-height: 1.6;
}

.vr-callback-form {
	display: grid;
	gap: 14px;
}

.vr-check--compact .vr-check__body {
	padding-top: 14px !important;
	padding-bottom: 14px !important;
}

.vr-form-message {
	border-radius: 14px;
	padding: 12px 14px;
	font-size: 14px;
	line-height: 1.5;
}

.vr-form-message.is-error {
	background: #fff0f0;
	border: 1px solid #ffd0d0;
	color: #9e1c1c;
}

.vr-form-message.is-success {
	background: #eefaf3;
	border: 1px solid #bfebcf;
	color: #13652c;
}

.vr-btn--wide {
	width: 100%;
	justify-content: center;
}

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

@media (max-width: 540px) {
	.vr-modal {
		padding: 14px;
	}

	.vr-modal__dialog {
		width: 100%;
		padding: 22px;
		border-radius: 20px;
	}

	.vr-modal__title {
		font-size: 24px;
	}
}


/* V28: защита, чтобы форма заявки не отображалась под калькулятором */
.vr-modal[hidden] {
	display: none !important;
}

.vr-modal {
	position: fixed !important;
	inset: 0 !important;
	z-index: 999999 !important;
	display: none !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 24px !important;
}

.vr-modal.is-open {
	display: flex !important;
}

.vr-modal__overlay {
	position: absolute !important;
	inset: 0 !important;
	background: rgba(12, 24, 38, .62) !important;
	backdrop-filter: blur(4px);
}

.vr-modal__dialog {
	position: relative !important;
	z-index: 1 !important;
	width: min(520px, calc(100vw - 32px)) !important;
	max-height: calc(100vh - 48px) !important;
	overflow: auto !important;
	background: #fff !important;
	border: 1px solid #dde7f0 !important;
	border-radius: 24px !important;
	box-shadow: 0 26px 90px rgba(12, 24, 38, .28) !important;
	padding: 28px !important;
}

body.vr-modal-open {
	overflow: hidden !important;
}


/* V30: согласие и Yandex SmartCaptcha */
.vr-check--consent .vr-check__body {
	padding-top: 14px !important;
	padding-bottom: 14px !important;
}

.vr-check--consent a {
	color: #147fd0;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.vr-smartcaptcha {
	border: 1px solid #dbe7f1;
	border-radius: 18px;
	background: #f7fbff;
	padding: 14px;
}

.vr-smartcaptcha__hint {
	margin-bottom: 10px;
	color: #667789;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.4;
}

.vr-smartcaptcha__widget {
	min-height: 100px;
}


/* V33: диагностика загрузки SmartCaptcha */
.vr-smartcaptcha__widget {
	color: #667789;
	font-size: 14px;
	line-height: 1.45;
}


/* V34: SmartCaptcha загружается динамически из JS */
.vr-smartcaptcha__widget {
	min-height: 100px;
}

/* Расширение калькулятора на всю ширину страницы Aspro */
@media (min-width: 1200px) {
	.vr-calc {
		width: min(1540px, calc(100vw - 80px)) !important;
		max-width: none !important;

		margin-left: 50% !important;
		margin-right: 0 !important;
		transform: translateX(-50%) !important;

		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	.vr-calc__layout {
		grid-template-columns: minmax(760px, 1fr) 440px !important;
		gap: 32px !important;
	}

	.vr-form-card {
		padding: 32px !important;
	}

	.vr-result-card {
		padding: 28px !important;
	}
}
