.bariatr-bmi-page {
	--bg: #f1f5fb;
	--card: #ffffff;
	--text: #244966;
	--muted: #5f7f98;
	--accent: #1ea95f;
	--soft: #e9faef;
	--danger: #c62d27;
	--blue: #00adff;
	--blue-soft: #7bd4ff;
	--gray: #d1d1d4;
	--yellow: #f5e23a;
	--white: #ffffff;
	--shadow-lg: 0 18px 40px rgba(67, 67, 67, 0.12);
	--shadow-md: 0 10px 24px rgba(67, 67, 67, 0.1);
	--r-xl: 30px;
	--r-lg: 20px;
	--r-md: 14px;
	--container: 1240px;
	color: var(--text);
	font-family: Montserrat, Inter, "Public Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.bariatr-bmi-page * {
	box-sizing: border-box;
}

.bariatr-bmi-page button,
.bariatr-bmi-page input {
	font: inherit;
}

.bariatr-bmi-page.page {
	width: min(100% - 32px, var(--container));
	margin: 24px auto;
	display: grid;
	gap: 50px;
}

.bariatr-bmi-page .section {
	background: var(--white);
	border-radius: var(--r-xl);
	padding: 36px;
	box-shadow: var(--shadow-lg);
	position: relative;
	overflow: hidden;
}

html.anim-ready .bariatr-bmi-page .section {
	opacity: 0;
	transform: translateY(22px);
	transition:
		opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.anim-ready .bariatr-bmi-page .section.is-visible {
	opacity: 1;
	transform: translateY(0);
}

html.anim-ready .bariatr-bmi-page .section .reveal-item {
	opacity: 0;
	transform: translateY(12px);
	transition:
		opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--reveal-delay, 0ms);
}

html.anim-ready .bariatr-bmi-page .section.is-visible .reveal-item {
	opacity: 1;
	transform: translateY(0);
}

.bariatr-bmi-page .section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 240px;
	height: 6px;
	border-radius: 0 0 8px 0;
	background: linear-gradient(90deg, var(--blue), var(--yellow));
}

.bariatr-bmi-page .kicker {
	margin: 0 0 8px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 12px;
	font-weight: 700;
	color: #648091;
}

.bariatr-bmi-page .title {
	margin: 0;
	text-align: center;
	font-size: 44px;
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: 0;
	color: #273f4f;
}

.bariatr-bmi-page .subtitle {
	margin: 14px auto 0;
	max-width: 940px;
	text-align: center;
	font-size: 16px;
	line-height: 1.66;
	color: #566068;
}

.bariatr-bmi-page .text-highlight {
	background: var(--yellow);
	color: #111111;
	font-weight: 700;
	padding: 0 5px;
}

.bariatr-bmi-page .about-text a,
.bariatr-bmi-page .card a,
.bariatr-bmi-page .bmi-copy-list a {
	color: #007fbd;
	font-weight: 800;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.bariatr-bmi-page .about-text a:hover,
.bariatr-bmi-page .about-text a:focus,
.bariatr-bmi-page .card a:hover,
.bariatr-bmi-page .card a:focus,
.bariatr-bmi-page .bmi-copy-list a:hover,
.bariatr-bmi-page .bmi-copy-list a:focus {
	color: #005f8e;
}

.bariatr-bmi-page .about-block {
	display: grid;
	gap: 0;
	align-items: center;
}

.bariatr-bmi-page .about-title {
	margin: 0 0 20px;
	font-size: 33px;
	line-height: 1.05;
	letter-spacing: 0;
	font-weight: 800;
	color: #273f4f;
}

.bariatr-bmi-page .about-text {
	margin: 0;
	font-size: 16px;
	line-height: 1.75;
	color: #4f5b64;
}

.bariatr-bmi-page .about-text + .about-text {
	margin-top: 0;
}

.bariatr-bmi-page .about-grid {
	margin-top: 22px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.bariatr-bmi-page .card {
	background: #f8fcff;
	border-radius: var(--r-lg);
	padding: 24px;
	box-shadow: var(--shadow-md);
}

.bariatr-bmi-page .card p {
	margin: 0;
	font-size: 16px;
	line-height: 1.72;
	color: #4f5d67;
}

.bariatr-bmi-page .card p + p {
	margin-top: 0;
}

.bariatr-bmi-page .card p + .bmi-copy-list {
	margin-top: 0;
}

.bariatr-bmi-page .bmi-copy-list {
	margin: 12px 0 0;
	padding-left: 22px;
	color: #4f5d67;
	font-size: 16px;
	line-height: 1.72;
}

.bariatr-bmi-page .bmi-copy-list:first-child {
	margin-top: 0;
}

.bariatr-bmi-page .bmi-copy-list li + li {
	margin-top: 4px;
}

.bariatr-bmi-page .approach {
	margin-top: 22px;
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 18px;
	align-items: stretch;
}

.bariatr-bmi-page .approach-copy {
	background: linear-gradient(125deg, #eff9ff 0%, #ffffff 66%);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.bariatr-bmi-page .approach-copy h3 {
	margin: 0 0 12px;
	font-size: 34px;
	line-height: 1.1;
	font-weight: 700;
	color: #345465;
}

.bariatr-bmi-page .approach-copy p {
	margin: 0;
	font-size: 16px;
	line-height: 1.67;
	color: #4f5f69;
}

.bariatr-bmi-page .approach-visual {
	min-height: 230px;
	padding: 0;
	overflow: hidden;
	background: #e7eef3;
}

.bariatr-bmi-page .approach-visual img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	object-position: center;
	display: block;
}

.bariatr-bmi-page .adv-card {
	background: #fff;
	border-radius: var(--r-md);
	box-shadow: var(--shadow-md);
	min-height: 170px;
	padding: 20px;
	position: relative;
	overflow: hidden;
}

.bariatr-bmi-page .adv-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--blue), var(--blue-soft));
}

.bariatr-bmi-page .adv-card h3 {
	margin: 10px 0 10px;
	font-size: 24px;
	line-height: 1.15;
	color: #365265;
	font-weight: 700;
}

.bariatr-bmi-page .adv-card p {
	margin: 0;
	font-size: 15px;
	line-height: 1.58;
	color: #51606a;
}

.bariatr-bmi-page .bmi-table-grid {
	margin-top: 20px;
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 10px;
}

.bariatr-bmi-page .bmi-table-grid .adv-card {
	--category-line: linear-gradient(90deg, var(--blue), var(--blue-soft));
	border: 1px solid rgba(0, 173, 255, 0.12);
	border-radius: 12px;
	box-shadow: 0 8px 22px rgba(67, 67, 67, 0.07);
	min-height: 0;
	padding: 14px 14px 16px;
}

.bariatr-bmi-page .bmi-table-grid .adv-card::before {
	background: var(--category-line);
	height: 5px;
}

.bariatr-bmi-page .bmi-table-grid .adv-card:nth-child(1) {
	--category-line: linear-gradient(90deg, #f5e23a, #d9a928);
}

.bariatr-bmi-page .bmi-table-grid .adv-card:nth-child(2) {
	--category-line: linear-gradient(90deg, #35b96f, #8bd36f);
}

.bariatr-bmi-page .bmi-table-grid .adv-card:nth-child(3) {
	--category-line: linear-gradient(90deg, #f5e23a, #e28c31);
}

.bariatr-bmi-page .bmi-table-grid .adv-card:nth-child(4) {
	--category-line: linear-gradient(90deg, #f0a13f, #dd5a56);
}

.bariatr-bmi-page .bmi-table-grid .adv-card:nth-child(5) {
	--category-line: linear-gradient(90deg, #dd5a56, #c62d27);
}

.bariatr-bmi-page .bmi-table-grid .adv-card:nth-child(6) {
	--category-line: linear-gradient(90deg, #c62d27, #7f1712);
}

.bariatr-bmi-page .bmi-table-grid .adv-card h3 {
	font-size: 20px;
	line-height: 1.1;
	margin: 6px 0 4px;
}

.bariatr-bmi-page .bmi-table-grid .adv-card p {
	font-size: 14px;
	line-height: 1.4;
}

.bariatr-bmi-page .bmi-table-grid + .about-block {
	margin-top: 22px;
}

.bariatr-bmi-page .bmi-inline-visual {
	margin: 24px 0 0;
	border-radius: var(--r-lg);
	background: #e8f8ff;
	box-shadow: var(--shadow-md);
	overflow: hidden;
}

.bariatr-bmi-page .bmi-inline-visual img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.bariatr-bmi-page .ops-grid {
	margin-top: 22px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
	gap: 20px;
}

.bariatr-bmi-page .ops-photo {
	min-height: 340px;
	padding: 0;
	overflow: hidden;
	background: #e7eef3;
}

.bariatr-bmi-page .ops-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.bariatr-bmi-page .ops-text {
	font-size: 16px;
	line-height: 1.72;
	color: #4f5f67;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.bariatr-bmi-page .ops-text-content {
	margin: 0;
}

.bariatr-bmi-page .price {
	margin-top: 22px;
	border-radius: var(--r-lg);
	background: linear-gradient(120deg, rgba(245, 226, 58, 0.58), rgba(255, 255, 255, 0.88));
	box-shadow: var(--shadow-md);
	padding: 28px;
	font-size: 17px;
	line-height: 1.7;
	display: grid;
	grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
	gap: 28px;
	align-items: center;
	text-align: left;
	color: #4e4e4e;
}

.bariatr-bmi-page .price-photo {
	margin: 0;
	border-radius: var(--r-md);
	background: #ffffff;
	overflow: hidden;
	box-shadow: var(--shadow-md);
}

.bariatr-bmi-page .price-photo img {
	display: block;
	width: 100%;
	height: 360px;
	object-fit: cover;
	object-position: 50% 18%;
}

.bariatr-bmi-page .price-content {
	min-width: 0;
}

.bariatr-bmi-page .price-copy {
	margin: 0;
}

.bariatr-bmi-page .price-copy + .price-copy {
	margin-top: 0;
}

.bariatr-bmi-page .price-btn {
	margin-top: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	border: 0;
	border-radius: 999px;
	background: var(--blue);
	color: #ffffff;
	text-decoration: none;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
	box-shadow: 0 8px 18px rgba(0, 173, 255, 0.25);
}

.bariatr-bmi-page .price-btn:hover,
.bariatr-bmi-page .price-btn:focus {
	background: #0098e1;
	color: #ffffff;
	transform: translateY(-1px);
	box-shadow: 0 10px 20px rgba(0, 173, 255, 0.28);
}

.bariatr-bmi-page .price-btn:disabled {
	cursor: not-allowed;
	opacity: 0.65;
	transform: none;
}

.bariatr-bmi-page .bmi-faq {
	display: grid;
	gap: 14px;
	margin-top: 24px;
}

.bariatr-bmi-page .bmi-faq summary {
	cursor: pointer;
	font-size: 18px;
	font-weight: 700;
	color: #365265;
}

.bariatr-bmi-page .bmi-faq p {
	margin-top: 12px;
}

.bariatr-bmi-page .bmi-calculator-section {
	background:
		radial-gradient(circle at 10% 0%, rgba(0, 173, 255, 0.16), transparent 28rem),
		linear-gradient(180deg, #f8fcff 0%, var(--bg) 100%);
}

.bariatr-bmi-page .bmi-card {
	background: var(--card);
	border-radius: 20px;
	box-shadow: 0 18px 44px rgba(33, 103, 156, 0.14), inset 0 0 0 1px rgba(0, 173, 255, 0.1);
	max-width: none;
	padding: 22px;
	width: 100%;
	margin: 0 auto;
}

.bariatr-bmi-page .header {
	margin-bottom: 14px;
}

.bariatr-bmi-page .eyebrow {
	color: #3579aa;
	display: block;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0;
	margin-bottom: 6px;
	text-transform: uppercase;
}

.bariatr-bmi-page .header h1 {
	font-size: 32px;
	line-height: 1.14;
	margin: 0;
	color: var(--text);
	font-weight: 800;
}

.bariatr-bmi-page .result-meter {
	--shift: 0.36;
	--ink: #11673b;
	color: var(--ink);
	height: 118px;
	margin-bottom: 14px;
	position: relative;
}

.bariatr-bmi-page .status {
	font-size: 13px;
	font-weight: 900;
	left: 50%;
	position: absolute;
	text-align: center;
	text-transform: uppercase;
	top: 0;
	transform: translateX(-50%);
	white-space: nowrap;
}

.bariatr-bmi-page .meter-window {
	background: linear-gradient(180deg, #fffdfa 0%, #f7f7f4 100%);
	border-radius: 12px;
	box-shadow:
		0 8px 18px rgba(58, 46, 13, 0.12),
		inset 0 0 0 1px rgba(93, 73, 22, 0.24),
		inset 0 0 0 4px rgba(255, 245, 205, 0.56);
	height: 54px;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 32px;
}

.bariatr-bmi-page .meter-tape {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 58%),
		linear-gradient(180deg, transparent 0 56%, rgba(246, 195, 13, 0.96) 56% 100%),
		linear-gradient(90deg, #d0a208 0%, #ccb11d 24%, #8dc349 31.159%, #1ea95f 40.58%, #8fa341 46%, #c99600 50%, #d07d3a 54%, #dd5a56 59.42%, #cc423d 64.5%, #c62d27 68.841%, #a1211d 74.5%, #8f1713 100%);
	bottom: 0;
	left: calc(var(--shift) * -130%);
	position: absolute;
	top: 0;
	transition: left 260ms ease;
	width: 230%;
}

.bariatr-bmi-page .meter-tape::before,
.bariatr-bmi-page .meter-tape::after {
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
}

.bariatr-bmi-page .meter-tape::before {
	background: repeating-linear-gradient(90deg, rgba(35, 25, 9, 0.55) 0 1px, transparent 1px 8px);
	height: 52%;
}

.bariatr-bmi-page .meter-tape::after {
	background: repeating-linear-gradient(90deg, rgba(22, 15, 7, 0.86) 0 2px, transparent 2px 40px);
	height: 82%;
}

.bariatr-bmi-page .meter-pointer {
	background: var(--ink);
	border-radius: 999px;
	box-shadow: 0 0 0 1px #fff, 0 4px 10px rgba(0, 0, 0, 0.24);
	height: 74px;
	left: 50%;
	position: absolute;
	top: 22px;
	transform: translateX(-50%);
	width: 3px;
	z-index: 2;
}

.bariatr-bmi-page .bmi-value {
	align-items: center;
	background: rgba(255, 255, 255, 0.88);
	border-radius: 999px;
	box-shadow: inset 0 0 0 1px currentColor, 0 6px 14px rgba(12, 33, 53, 0.18);
	display: flex;
	font-size: 50px;
	font-weight: 900;
	justify-content: center;
	left: 50%;
	line-height: 1;
	min-width: 152px;
	padding: 8px 22px;
	position: absolute;
	top: 58px;
	transform: translate(-50%, -50%);
	z-index: 3;
}

.bariatr-bmi-page .controls {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bariatr-bmi-page .control {
	background: #fff;
	border: 1px solid #e0f2ff;
	border-radius: 20px;
	box-shadow: 0 16px 34px rgba(0, 173, 255, 0.08);
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px 18px;
	padding: 16px 22px 18px;
	position: relative;
	align-items: center;
}

.bariatr-bmi-page .control span {
	color: var(--muted);
	font-size: 14px;
	font-weight: 800;
}

.bariatr-bmi-page .control strong {
	color: #2f6f9d;
	font-size: 22px;
}

.bariatr-bmi-page .screen-reader-text,
.bariatr-bmi-page .bmi-native-input[type="number"] {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
	opacity: 0;
	pointer-events: none;
}

.bariatr-bmi-page .wheel-control .screen-reader-text {
	position: static !important;
	display: block;
	width: auto !important;
	height: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: visible !important;
	clip: auto !important;
	clip-path: none !important;
	white-space: normal !important;
	border: 0 !important;
	opacity: 1;
	pointer-events: auto;
	color: #2f78ad;
	font-size: 32px;
	font-weight: 900;
	line-height: 1;
	text-align: right;
}

.bariatr-bmi-page .wheel-control--weight .screen-reader-text {
	color: #a82b2e;
}

.bariatr-bmi-page .wheel-control {
	align-content: start;
}

.bariatr-bmi-page .wheel-control .wheel-title {
	color: #4c86b8;
	display: block;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.2;
	text-align: left;
}

.bariatr-bmi-page .wheel-window {
	--wheel-row-height: 78px;
	display: none;
	height: calc(var(--wheel-row-height) * 5);
	border: 2px solid #e0f2ff;
	border-radius: 22px;
	background: #ffffff;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding-block: 0;
	scroll-padding-block: 0;
	scroll-snap-type: y mandatory;
	box-shadow: inset 0 0 0 1px rgba(0, 173, 255, 0.03);
	scrollbar-color: #9edcff #eef9ff;
	scrollbar-width: thin;
	touch-action: pan-y;
	-webkit-overflow-scrolling: touch;
}

.bariatr-bmi-page .wheel-window::-webkit-scrollbar {
	width: 8px;
}

.bariatr-bmi-page .wheel-window::-webkit-scrollbar-track {
	background: #eef9ff;
	border-radius: 999px;
}

.bariatr-bmi-page .wheel-window::-webkit-scrollbar-thumb {
	background: #9edcff;
	border-radius: 999px;
}

.bariatr-bmi-page .wheel-window::-webkit-scrollbar-thumb:hover {
	background: #6bcfff;
}

.bariatr-bmi-page .wheel-spacer {
	height: calc(var(--wheel-row-height) * 2);
	pointer-events: none;
}

.bariatr-bmi-page .wheel-value {
	display: grid;
	place-items: center;
	width: 100%;
	min-height: var(--wheel-row-height);
	border: 0;
	background: transparent;
	color: #8ab3d6;
	cursor: pointer;
	font-size: 42px;
	font-weight: 400;
	line-height: 1;
	padding: 0 12px;
	scroll-snap-align: center;
	transition: color 0.18s ease, font-weight 0.18s ease, transform 0.18s ease;
}

.bariatr-bmi-page .wheel-control--weight .wheel-value {
	color: #e57979;
}

.bariatr-bmi-page .wheel-value:hover,
.bariatr-bmi-page .wheel-value:focus {
	outline: none;
	color: #2f78ad;
	transform: scale(1.02);
}

.bariatr-bmi-page .wheel-control--weight .wheel-value:hover,
.bariatr-bmi-page .wheel-control--weight .wheel-value:focus {
	color: #b52f32;
}

.bariatr-bmi-page .wheel-value.is-selected {
	color: #2f78ad;
	font-size: 43px;
	font-weight: 900;
}

.bariatr-bmi-page .wheel-control--weight .wheel-value.is-selected {
	color: #a82b2e;
}

.bariatr-bmi-page input[type="range"] {
	--track: rgba(0, 173, 255, 0.24);
	--thumb-ring: rgba(0, 173, 255, 0.36);
	--thumb-shadow: rgba(0, 173, 255, 0.18);
	appearance: none;
	background: transparent;
	cursor: pointer;
	grid-column: 1 / -1;
	height: 28px;
	width: 100%;
}

.bariatr-bmi-page .wheel-control--weight input[type="range"] {
	--track: rgba(211, 66, 61, 0.22);
	--thumb-ring: rgba(211, 66, 61, 0.34);
	--thumb-shadow: rgba(211, 66, 61, 0.16);
}

.bariatr-bmi-page input[type="range"]::-webkit-slider-runnable-track {
	background: var(--track);
	border-radius: 999px;
	height: 10px;
}

.bariatr-bmi-page input[type="range"]::-webkit-slider-thumb {
	appearance: none;
	background: #fff;
	border-radius: 50%;
	box-shadow: inset 0 0 0 2px var(--thumb-ring), 0 8px 20px var(--thumb-shadow);
	height: 24px;
	margin-top: -7px;
	width: 24px;
}

.bariatr-bmi-page input[type="range"]::-moz-range-track {
	background: var(--track);
	border: 0;
	border-radius: 999px;
	height: 10px;
}

.bariatr-bmi-page input[type="range"]::-moz-range-thumb {
	background: #fff;
	border: 0;
	border-radius: 50%;
	box-shadow: inset 0 0 0 2px var(--thumb-ring), 0 8px 20px var(--thumb-shadow);
	height: 24px;
	width: 24px;
}

.bariatr-bmi-page input[type="number"] {
	border: 0;
	border-radius: 10px;
	box-shadow: inset 0 0 0 1px rgba(0, 173, 255, 0.18);
	color: #2f6f9d;
	font-weight: 800;
	padding: 10px 12px;
	width: 100%;
}

.bariatr-bmi-page input[type="number"]:focus {
	box-shadow: inset 0 0 0 1px rgba(0, 173, 255, 0.35), 0 0 0 3px rgba(0, 173, 255, 0.18);
	outline: none;
}

.bariatr-bmi-page .advice {
	background: var(--soft);
	border-radius: 14px;
	box-shadow: inset 0 0 0 1px rgba(0, 173, 255, 0.1);
	margin-top: 16px;
	padding: 16px;
}

.bariatr-bmi-page .advice h2 {
	color: var(--accent);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.bariatr-bmi-page .advice p {
	color: #315f7f;
	font-size: 15px;
	line-height: 1.55;
	margin: 0;
}

.bariatr-bmi-page .advice ul {
	color: #315f7f;
	font-size: 14px;
	line-height: 1.5;
	margin: 12px 0 0;
	padding-left: 20px;
}

.bariatr-bmi-page .advice li + li {
	margin-top: 6px;
}

.bariatr-bmi-page .bmi-result-action {
	align-items: center;
	background:
		linear-gradient(90deg, rgba(0, 173, 255, 0.12), rgba(245, 226, 58, 0.18)),
		#ffffff;
	border: 1px solid rgba(0, 173, 255, 0.18);
	border-radius: 18px;
	box-shadow: 0 14px 34px rgba(33, 103, 156, 0.12);
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 16px;
	margin-top: 16px;
	overflow: hidden;
	padding: 18px 20px;
	position: relative;
	text-align: left;
}

.bariatr-bmi-page .bmi-result-action::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 6px;
	background: linear-gradient(180deg, var(--blue), var(--yellow));
}

.bariatr-bmi-page .bmi-result-action[hidden] {
	display: none;
}

.bariatr-bmi-page .bmi-result-action .price-btn {
	margin: 0;
	min-width: 230px;
	order: 2;
	padding: 15px 24px;
}

.bariatr-bmi-page .bmi-result-action p {
	color: #435566;
	font-size: 15px;
	line-height: 1.55;
	margin: 0;
	order: 1;
	padding-left: 14px;
}

.bariatr-bmi-page .bmi-result-action p::before {
	color: #273f4f;
	content: "Рекомендована консультація";
	display: block;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.25;
	margin-bottom: 4px;
}

body.bariatr-bmi-modal-open {
	overflow: hidden;
}

.bariatr-bmi-page .bmi-modal {
	position: fixed;
	z-index: 99999;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 20px;
}

.bariatr-bmi-page .bmi-modal[hidden] {
	display: none;
}

.bariatr-bmi-page .bmi-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(15, 35, 48, 0.64);
	backdrop-filter: blur(5px);
}

.bariatr-bmi-page .bmi-modal-panel {
	position: relative;
	z-index: 1;
	width: min(100%, 560px);
	max-height: calc(100vh - 40px);
	overflow: auto;
	border: 1px solid rgba(0, 173, 255, 0.16);
	border-radius: 24px;
	background:
		linear-gradient(145deg, rgba(239, 249, 255, 0.95), rgba(255, 255, 255, 0.98) 52%, rgba(255, 251, 219, 0.66)),
		#ffffff;
	box-shadow: 0 28px 70px rgba(15, 35, 48, 0.34);
	padding: 34px;
}

.bariatr-bmi-page .bmi-modal-panel::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(90deg, var(--blue), var(--yellow));
}

.bariatr-bmi-page .bmi-modal-panel .kicker,
.bariatr-bmi-page .bmi-modal-panel .title,
.bariatr-bmi-page .bmi-modal-panel .subtitle {
	text-align: left;
}

.bariatr-bmi-page .bmi-modal-panel .title {
	font-size: 32px;
	line-height: 1.12;
	padding-right: 44px;
}

.bariatr-bmi-page .bmi-modal-panel .subtitle {
	margin-left: 0;
	margin-right: 0;
	max-width: 460px;
}

.bariatr-bmi-page .bmi-modal-close {
	position: absolute;
	top: 14px;
	right: 14px;
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 50%;
	background: #ffffff;
	color: #273f4f;
	cursor: pointer;
	font-size: 28px;
	line-height: 1;
	box-shadow: 0 8px 22px rgba(33, 103, 156, 0.12);
	transition: transform 0.18s ease, background-color 0.18s ease;
}

.bariatr-bmi-page .bmi-modal-close:hover,
.bariatr-bmi-page .bmi-modal-close:focus {
	background: #eaf8ff;
	transform: translateY(-1px);
}

.bariatr-bmi-page .bmi-popup-form {
	display: grid;
	gap: 14px;
	margin-top: 24px;
}

.bariatr-bmi-page .bmi-popup-form label {
	display: grid;
	gap: 8px;
	color: #273f4f;
	font-size: 14px;
	font-weight: 800;
}

.bariatr-bmi-page .bmi-popup-form input {
	width: 100%;
	border: 1px solid rgba(0, 173, 255, 0.22);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.62), 0 10px 22px rgba(33, 103, 156, 0.08);
	color: #273f4f;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	padding: 14px 16px;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.bariatr-bmi-page .bmi-popup-form input:focus {
	background: #ffffff;
	border-color: rgba(0, 173, 255, 0.55);
	box-shadow: 0 0 0 4px rgba(0, 173, 255, 0.14), 0 12px 24px rgba(33, 103, 156, 0.1);
	outline: none;
}

.bariatr-bmi-page .bmi-popup-status {
	background: rgba(255, 255, 255, 0.66);
	border-radius: 12px;
	margin: 0;
	color: #566068;
	font-size: 14px;
	line-height: 1.45;
	padding: 0;
}

.bariatr-bmi-page .bmi-popup-status:empty {
	display: none;
}

.bariatr-bmi-page .bmi-popup-status:not(:empty) {
	padding: 10px 12px;
}

.bariatr-bmi-page .bmi-popup-status[data-status="success"] {
	color: #157347;
}

.bariatr-bmi-page .bmi-popup-status[data-status="error"] {
	color: #aa0423;
}

.bariatr-bmi-page .bmi-popup-form .price-btn {
	margin-top: 4px;
	max-width: none;
	padding: 15px 22px;
	width: 100%;
}

@media (max-width: 1100px) {
	.bariatr-bmi-page .about-grid,
	.bariatr-bmi-page .approach,
	.bariatr-bmi-page .ops-grid {
		grid-template-columns: 1fr;
	}

	.bariatr-bmi-page .price {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.bariatr-bmi-page .price-photo img {
		height: 320px;
	}

	.bariatr-bmi-page .section {
		padding: 30px 24px;
	}

	.bariatr-bmi-page .bmi-table-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.bariatr-bmi-page.page {
		width: min(100% - 20px, var(--container));
		margin: 14px auto;
		padding-bottom: 30px;
		gap: 34px;
	}

	.bariatr-bmi-page .section {
		border-radius: 20px;
		padding: 24px 16px;
	}

	.bariatr-bmi-page .title {
		font-size: 32px;
	}

	.bariatr-bmi-page .about-title {
		font-size: 30px;
		line-height: 1.08;
	}

	.bariatr-bmi-page .header h1 {
		font-size: 28px;
	}

	.bariatr-bmi-page .bmi-card {
		padding: 18px 12px;
	}

	.bariatr-bmi-page .controls {
		gap: 12px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bariatr-bmi-page .control {
		border-radius: 22px;
		gap: 10px;
		grid-template-columns: 1fr;
		padding: 12px;
	}

	.bariatr-bmi-page .wheel-control .wheel-title {
		font-size: 22px;
		text-align: center;
	}

	.bariatr-bmi-page .wheel-control .screen-reader-text,
	.bariatr-bmi-page .bmi-native-input[type="range"] {
		position: absolute !important;
		width: 1px !important;
		height: 1px !important;
		padding: 0 !important;
		margin: -1px !important;
		overflow: hidden !important;
		clip: rect(0, 0, 0, 0) !important;
		white-space: nowrap !important;
		border: 0 !important;
		opacity: 0;
		pointer-events: none;
	}

	.bariatr-bmi-page .wheel-window {
		display: block;
		border-radius: 18px;
		--wheel-row-height: 60px;
		scrollbar-width: none;
	}

	.bariatr-bmi-page .wheel-window::-webkit-scrollbar {
		display: none;
	}

	.bariatr-bmi-page .wheel-value {
		font-size: 30px;
		padding: 0 4px;
	}

	.bariatr-bmi-page .wheel-value.is-selected {
		font-size: 32px;
	}

	.bariatr-bmi-page .status {
		white-space: normal;
		width: 100%;
	}

	.bariatr-bmi-page .bmi-value {
		font-size: 44px;
	}

	.bariatr-bmi-page .bmi-table-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bariatr-bmi-page .approach-copy h3 {
		font-size: 28px;
	}

	.bariatr-bmi-page .ops-photo {
		min-height: 230px;
	}

	.bariatr-bmi-page .price {
		padding: 22px 16px;
		font-size: 16px;
	}

	.bariatr-bmi-page .price-btn {
		width: 100%;
		max-width: 300px;
	}

	.bariatr-bmi-page .bmi-result-action {
		grid-template-columns: 1fr;
		justify-items: stretch;
		padding: 18px;
		text-align: center;
	}

	.bariatr-bmi-page .bmi-result-action p {
		padding-left: 0;
	}

	.bariatr-bmi-page .bmi-result-action .price-btn {
		min-width: 0;
		order: 1;
		width: 100%;
	}

	.bariatr-bmi-page .bmi-result-action p {
		order: 2;
	}

	.bariatr-bmi-page .bmi-modal {
		padding: 12px;
	}

	.bariatr-bmi-page .bmi-modal-panel {
		padding: 24px 18px;
	}

	.bariatr-bmi-page .bmi-modal-panel .title {
		font-size: 28px;
	}
}

@media (max-width: 480px) {
	.bariatr-bmi-page.page {
		width: min(100% - 16px, var(--container));
		padding-bottom: 24px;
	}

	.bariatr-bmi-page .section {
		padding: 18px 12px;
	}

	.bariatr-bmi-page .title {
		font-size: 28px;
	}

	.bariatr-bmi-page .bmi-table-grid {
		grid-template-columns: 1fr;
	}

	.bariatr-bmi-page .bmi-card {
		border-radius: 18px;
		padding: 14px 8px;
	}

	.bariatr-bmi-page .controls {
		gap: 8px;
	}

	.bariatr-bmi-page .control {
		border-radius: 18px;
		padding: 8px;
	}

	.bariatr-bmi-page .wheel-control .wheel-title {
		font-size: 18px;
	}

	.bariatr-bmi-page .wheel-window {
		border-radius: 16px;
		--wheel-row-height: 50px;
	}

	.bariatr-bmi-page .wheel-value {
		font-size: 25px;
	}

	.bariatr-bmi-page .wheel-value.is-selected {
		font-size: 27px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html.anim-ready .bariatr-bmi-page .section,
	html.anim-ready .bariatr-bmi-page .section .reveal-item {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}
