:root {
	--red: #ae1800;
	--ink: rgba(0, 0, 0, 0.9);
	--ink-45: rgba(0, 0, 0, 0.45);
	--border: rgba(102, 71, 63, 0.25);
	--bg: #eae9e9;
	--card: #f3f2f2;
	--white: #ffffff;
	--radius-s: 4px;
	--radius: 8px;
	--radius-l: 12px;
	--container-max: 1020px;
}

* {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: "Onest", "Helvetica Neue", Arial, sans-serif;
	color: var(--ink);
	background: var(--card);
	line-height: 1.2;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
p {
	margin: 0;
}

h1 {
	margin: 0;
}

h2 {
	margin: 0;
	line-height: 1;
}

.page {
	position: relative;
	z-index: 1;
}

.container {
	width: 100%;
	max-width: calc(var(--container-max) + 32px);
	margin: 0 auto;
	padding: 0 16px;
	position: relative;
	box-sizing: border-box;
}

/* ---------------------------------------------------------
   Background decorative image (bottom)
   --------------------------------------------------------- */
.bg-decor {
	margin-top: 32px;
	width: 100%;
}
.bg-decor img {
	width: 100%;
	height: auto;
	display: block;
}

/* ---------------------------------------------------------
   Visibility utilities
   --------------------------------------------------------- */
.show-desktop {
	display: none;
}
.show-mobile {
	display: block;
}

/* ---------------------------------------------------------
   Reusable bits
   --------------------------------------------------------- */
.hr {
	height: 0.5px;
	background: var(--border);
	width: 100%;
}
.hr.full {
	width: 100%;
}

.mark-red {
	color: var(--red);
}

.section-title {
	margin: 0;
	font-weight: 600;
	font-size: 24px;
	line-height: 1;
	color: var(--ink);
}
.section-sub {
	margin-top: 8px;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.2;
	color: var(--ink);
}

.dash-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.dash-list li {
	position: relative;
	padding-left: 16px;
	font-size: 20px;
	line-height: 1.2;
	color: var(--ink);
}
.dash-list li::before {
	content: "•";
	position: absolute;
	left: 0;
	top: 0;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	cursor: pointer;
	border-radius: var(--radius);
	font-family: inherit;
}
.btn--red {
	background: var(--red);
	color: var(--white);
	padding: 6px 12px 6px;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.2;
}

.stars {
	display: flex;
	align-items: center;
	gap: 6px;
}
.stars img {
	width: 20px;
	height: 20px;
}

/* =========================================================
   HEADER
   ========================================================= */
.header {
	padding-top: 16px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
}
.header__brand {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}
.header__logo {
	width: 72px;
	height: 60px;
	flex-shrink: 0;
}
.header__title {
	font-weight: 600;
	font-size: 24px;
	line-height: 1;
	color: var(--ink);
}
.header__contact {
	text-align: right;
}
.header__contact-label {
	font-size: 22px;
	line-height: 1.2;
}
.header__phone {
	display: block;
	font-weight: 500;
	font-size: 32px;
	color: var(--red);
	line-height: 1;
	margin-top: 4px;
	white-space: nowrap;
}

.hero-note {
	margin-top: 64px;
	font-size: 20px;
	color: var(--ink-45);
}

/* CTA card (mobile) */
.cta-card__note {
	font-size: 20px;
	color: var(--ink);
	margin: 16px 0;
}
.cta-card__box {
	background: var(--white);
	border: 0.5px solid var(--border);
	border-radius: var(--radius);
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.cta-card--alt .cta-card__box {
	background: var(--white);
	border-radius: var(--radius);
	padding: 16px;
	gap: 12px;
}
.cta-card__label {
	font-size: 22px;
	color: var(--ink);
	margin-bottom: 4px;
}
.phone-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-weight: 600;
	font-size: 24px;
	color: var(--red);
}
.phone-link img {
	width: 17px;
	height: 17px;
}

/* =========================================================
   FEATURES + MINI PHOTO (mobile)
   ========================================================= */
.features-mini {
	margin-top: 24px;
	display: flex;
	align-items: flex-start;
	gap: 16px;
}
.features-mini__photo {
	width: 140px;
	height: 140px;
	border-radius: var(--radius);
	overflow: hidden;
	flex-shrink: 0;
}
.features-mini__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.features-mini .dash-list {
	max-width: 187px;
	gap: 6px;
}
.features-mini .dash-list li {
	font-size: 20px;
}

/* =========================================================
   PRICES
   ========================================================= */
.prices {
	margin-top: 24px;
}

/* Mobile price card */
.price-card {
	background: var(--white);
	border: 0.5px solid var(--border);
	border-radius: var(--radius-l);
	padding: 12px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.price-card__title {
	font-weight: 600;
	font-size: 24px;
}
.price-card__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}
.price-mini {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-weight: 500;
	font-size: 22px;
	white-space: nowrap;
}
.price-mini__mark {
	color: var(--red);
}
.price-mini__val {
	color: var(--ink);
}
.price-card__mixer {
	font-size: 20px;
	font-weight: 500;
}
.price-card .btn--red {
	align-self: flex-start;
}

/* Desktop price grid (hidden on mobile; display set in desktop media query) */
.price-grid {
	flex-direction: column;
	gap: 20px;
}

/* =========================================================
   MAP + DELIVERY
   ========================================================= */
.map-section {
	margin-top: 24px;
}
.map-section__inner {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.map-section__map {
	border-radius: var(--radius);
	overflow: hidden;
	height: 250px;
}
.map-section__map img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius);
}
.map-card {
	background: var(--white);
	border: 0.5px solid var(--border);
	border-radius: var(--radius-l);
	padding: 16px;
}
.map-card__title {
	font-weight: 500;
	margin-bottom: 16px;
}

/* =========================================================
   FACTORIES
   ========================================================= */
.factories {
	margin-top: 24px;
}
.factories__head {
	margin-bottom: 16px;
}
.factories__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}
.factory-card {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.factory-card img {
	width: 100%;
	height: 222px;
	object-fit: cover;
	border-radius: var(--radius);
}
.factory-card p {
	font-size: 20px;
}
.factories__note {
	font-size: 20px;
}

/* =========================================================
   CONTENT + CALC LAYOUT
   ========================================================= */
.content-with-calc {
	margin-top: 24px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* Pump + Documents (grouped so Docs can sit beside Pump on desktop) */
.pump-docs {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* Video (desktop big photo; display set in desktop media query) */
.video {
	flex-direction: column;
	gap: 16px;
}
.video__photo {
	border-radius: var(--radius);
	overflow: hidden;
}
.video__photo img {
	width: 100%;
	object-fit: cover;
}
.video__caption {
	align-self: flex-start;
}

/* Portfolio (mobile) */
.portfolio {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.portfolio__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px 16px;
}
.portfolio__card {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.portfolio__card img {
	width: 100%;
	height: 236px;
	object-fit: cover;
	border-radius: var(--radius-s);
	border: 0.5px solid var(--border);
}
.portfolio__mark {
	font-weight: 500;
	font-size: 22px;
}
.portfolio__desc {
	font-size: 20px;
}

/* Pump / mixer / hydro */
.pump {
	margin-top: 8px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.pump .hr {
	margin-bottom: 8px;
}
.pump__head .section-sub {
	margin-top: 8px;
}
.pump__prices {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 20px;
}
.pump__row {
	display: flex;
	align-items: center;
	gap: 4px;
	justify-content: flex-start;
}
.pump__price {
	color: var(--ink);
}
.pump__more {
	font-weight: 500;
	font-size: 24px;
}

/* Mixer fleet (mobile) */
.mixer-fleet {
	margin-top: 16px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.mixer-fleet__photo {
	border-radius: var(--radius);
	overflow: hidden;
	aspect-ratio: 1/1;
}
.mixer-fleet__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Why us (mobile) */
.why-us {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* Lab */
.lab {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.lab .hr {
	margin-bottom: 8px;
}
.lab__mobile {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 8px;
}
.lab__photos {
	display: flex;
	gap: 16px;
}
.lab__photos img {
	flex: 1;
	min-width: 0;
	height: 237px;
	object-fit: cover;
	border-radius: var(--radius-s);
}

/* Documents */
.docs {
	margin-top: 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.docs .hr {
	margin-bottom: 8px;
}
.docs__photos {
	display: flex;
	gap: 16px;
	margin-top: 8px;
}
.docs__photos img {
	flex: 1;
	min-width: 0;
	height: 253px;
	object-fit: cover;
	border-radius: var(--radius-s);
	border: 0.5px solid var(--border);
}
.docs__caption {
	font-size: 22px;
}

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.widgets-panel__arrow {
	cursor: pointer;
}

.reviews__widgets {
	display: grid;
	gap: 12px;
}

.widget-card {
	background: var(--white);
	border: 0.5px solid var(--border);
	border-radius: var(--radius);
	padding: 12px 16px;
	display: flex;
	align-items: flex-start;
	gap: 12px;
}
.widget-card--expanded {
	border: 2px solid #df6438;
}
.widget-card__icon {
	width: 46px;
	height: 46px;
	flex-shrink: 0;
}
.widget-card__icon--round {
	border-radius: 50%;
}
.widget-card__rating {
	display: flex;
	flex-direction: column;
	gap: 4px;
	justify-content: center;
	width: 100%;
}
.widget-card__sum {
	display: flex;
	align-items: center;
	gap: 10px;
}
.widget-card__score {
	font-weight: 600;
	font-size: 24px;
}
.widget-card__sum span:last-child {
	font-size: 22px;
}

.yandex-panel {
	background: var(--white);
	border: 0.5px solid var(--border);
	border-radius: var(--radius);
	padding: 16px;
	padding-bottom: 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.widgets-panel__top {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.widgets-panel__title-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 8px;
}
.widgets-panel__arrow {
	font-weight: 500;
	font-size: 24px;
	color: var(--red);
	line-height: 1;
}
.widgets-panel__arrow-desktop {
	font-weight: 500;
	font-size: 36px;
	color: var(--red);
	line-height: 1;
}
.widgets-panel__score {
	display: flex;
	align-items: center;
	gap: 8px;
}
.widgets-panel__score img {
	width: 27px;
	height: 27px;
}
.widgets-panel__score span {
	font-weight: 500;
	font-size: 36px;
	color: var(--red);
}

.facts {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}
.fact {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 140px;
}
.fact__pct {
	display: flex;
	align-items: center;
	gap: 8px;
}
.fact__pct img {
	width: 20.5px;
	height: 25px;
}
.fact__pct span {
	font-weight: 500;
	font-size: 32px;
}
.fact p {
	font-size: 20px;
}

.yandex-panel__comments {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-top: 16px;
	border-top: 0.5px solid var(--border);
}
.comment {
	background: var(--card);
	border-radius: var(--radius);
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.comment__head {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 20px;
}
.comment__name {
	color: var(--ink);
}
.comment__date {
	color: var(--ink-45);
}
.comment p {
	font-size: 20px;
	margin-top: 10px;
}
.reviews__more {
	color: var(--red);
	font-size: 20px;
	cursor: pointer;
}
.reviews__arrows {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--red);
	font-size: 20px;
}

/* =========================================================
   CALCULATOR
   ========================================================= */
.calc {
	background: var(--white);
	border: 0.5px solid var(--border);
	border-radius: var(--radius-l);
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	order: -1;
}
.calc__title {
	font-weight: 600;
	font-size: 24px;
}
.calc__marks {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.calc__label {
	font-size: 20px;
}
.calc__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}
.mark {
	background: var(--card);
	border: 0.5px solid var(--border);
	border-radius: var(--radius);
	padding: 12px 8px;
	font-family: inherit;
	font-weight: 500;
	font-size: 22px;
	color: var(--ink);
	cursor: pointer;
	text-align: center;
}
.mark--active {
	background: var(--white);
	border: 2px solid var(--red);
	color: var(--red);
	padding: 10px 8px;
}
.calc__volume {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.calc__volume-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.calc__step {
	background: var(--card);
	border: 0.5px solid var(--border);
	border-radius: var(--radius);
	width: 44px;
	height: 34px;
	font-size: 28px;
	font-weight: 500;
	color: var(--ink);
	cursor: pointer;
	font-family: inherit;
	display: flex;
	align-items: center;
	justify-content: center;
}
.calc__volume-val {
	font-weight: 500;
	font-size: 36px;
}
.calc__submit {
	width: 100%;
	padding: 10px 12px 8px;
	font-weight: 500;
	font-size: 28px;
	line-height: 1.2;
	text-align: center;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
	margin-top: 48px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.footer__title {
	font-weight: 600;
	font-size: 24px;
}
.footer__sub {
	font-size: 20px;
}
.footer__phone {
	display: inline-block;
	font-weight: 500;
	font-size: 30px;
	color: var(--red);
	white-space: nowrap;
}

/* =========================================================================
   ============================  DESKTOP  ===================================
   ========================================================================= */

@media (min-width: 780px) {

	.container {
		padding: 0 40px;
	}

	.show-desktop {
		display: block;
	}
	.show-mobile {
		display: none;
	}

	.section-title {
		font-size: 36px;
		font-weight: 500;
	}
	.section-sub {
		font-size: 22px;
		margin-top: 8px;
	}
	.dash-list li {
		font-size: 22px;
	}

	.btn--red {
		font-size: 22px;
		padding: 8px 16px 10px;
	}

	/* Header */
	.header {
		padding-top: 16px;
		align-items: flex-start;
	}
	.header__brand {
		gap: 24px;
		align-items: center;
	}
	.header__logo {
		width: 120px;
		height: 102px;
	}
	.header__title {
		font-weight: 500;
		font-size: 36px;
		max-width: 400px;
	}
	.header__contact {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
		text-align: left;
	}
	.header__contact-label {
		font-size: 22px;
	}
	.header__phone {
		font-size: 32px;
		margin-top: 0;
	}

	.hero-note {
		margin-top: 64px;
		font-size: 20px;
	}

	/* Prices */
	.prices {
		margin-top: 8px;
	}
	.price-grid {
		display: flex;
	}
	.price-grid__row {
		display: flex;
		gap: 32px;
		align-items: flex-start;
		justify-content: space-between;
	}
	.price-grid__col {
		display: flex;
		flex-direction: column;
		gap: 32px;
	}
	.price-item {
		display: flex;
		flex-direction: column;
		gap: 2px;
	}
	.price-item__name {
		display: flex;
		gap: 8px;
		font-weight: 500;
		font-size: 32px;
		line-height: 1;
	}
	.price-item__desc {
		font-size: 20px;
		color: var(--ink-45);
	}
	.price-item__val {
		font-weight: 500;
		font-size: 32px;
	}
	.price-grid__mixer {
		display: flex;
		flex-direction: column;
		gap: 16px;
		align-items: flex-start;
	}
	.price-grid__mixer-text {
		font-weight: 500;
		font-size: 32px;
		line-height: 1;
		width: 190px;
	}
	.price-grid__mixer-photo {
		width: 170px;
		height: 150px;
		border-radius: var(--radius);
		overflow: hidden;
	}
	.price-grid__mixer-photo img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.price-grid__foot {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.price-grid__date {
		font-size: 22px;
	}

	/* Map */
	.map-section {
		margin-top: 48px;
	}
	.map-section__inner {
		flex-direction: row;
		gap: 24px;
		align-items: flex-start;
	}
	.map-section__map {
		flex: 1;
		height: 592px;
		border-radius: 0;
		border: none;
	}
	.map-card {
		width: 287px;
		flex-shrink: 0;
	}
	.map-card__title {
		font-size: 36px;
	}
	.map-card .dash-list {
		gap: 14px;
	}
	.map-card .dash-list li {
		font-size: 22px;
	}

	/* Factories */
	.factories {
		margin-top: 64px;
	}
	.factories__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 24px;
	}
	.factory-card img {
		height: 360px;
	}
	.factory-card p {
		font-size: 30px;
		line-height: 1;
		padding-top: 8px;
	}
	.factories__note {
		display: none;
	}

	/* Content + calc */
	.content-with-calc {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 286px;
		row-gap: 64px;
		align-items: start;
		margin-top: 64px;
	}
	.calc {
		grid-column: 2;
		grid-row: 1;
		width: 286px;
		flex-shrink: 0;
		border-radius: var(--radius-l);
	}

	/* Video */
	.video {
		grid-column: 1;
		display: flex;
	}

	/* Pump + Documents (full width row, side by side) */
	.pump-docs {
		grid-column: 1 / -1;
		flex-direction: row;
		align-items: flex-start;
		gap: 64px;
	}
	.pump-docs .pump {
		width: auto;
	}
	.pump-docs .docs {
		width: 70%;
		margin-top: 12px;
	}

	/* Pump */
	.pump {
		gap: 16px;
	}
	.pump .hr {
		display: none;
	}
	.pump__prices {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 8px;
		font-size: 32px;
	}
	.pump__row {
		gap: 24px;
	}
	.pump__more {
		font-size: 36px;
	}

	/* Lab */
	.lab {
		grid-column: 1 / -1;
		gap: 24px;
		margin-top: 24px;
	}
	.lab .hr {
		display: none;
	}
	.lab__grid {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		grid-template-rows: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}
	.lab__grid img {
		width: 100%;
		height: 383px;
		object-fit: cover;
		border-radius: var(--radius);
	}

	/* Docs / certificates */
	.docs {
		align-items: flex-start;
		margin-top: 0;
		background: var(--white);
		border: 0.5px solid var(--border);
		border-radius: var(--radius-l);
		padding: 16px;
		width: 286px;
	}
	.docs .hr {
		display: none;
	}
	.docs__photos {
		width: auto;
		flex: 0 0 auto;
		gap: 10px;
		margin-top: 0;
	}
	.docs__photos img {
		flex: none;
		width: 137px;
		height: 195px;
	}
	.docs__caption {
		flex: 1;
		font-size: 22px;
		max-width: 287px;
	}

	/* Reviews */
	.reviews {
		grid-column: 1 / -1;
		gap: 16px;
	}
	.reviews__widgets {
		display: flex;
		gap: 16px;
	}
	.widget-card {
		flex: 1;
	}
	.yandex-panel {
		flex-direction: row;
		gap: 24px;
		padding: 32px;
	}
	.widgets-panel__left {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		gap: 32px;
		flex: 1;
		min-width: 0;
		align-self: stretch;
	}
	.widgets-panel__top {
		gap: 32px;
	}
	.widgets-panel__title-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
	.widgets-panel__title-row .section-title {
		max-width: 320px;
	}
	.widgets-panel__arrow {
		display: none;
	}
	.yandex-panel__comments {
		flex: 1.6;
		min-width: 0;
		border-top: none;
		padding-top: 0;
	}
	.comment {
		width: 100%;
	}

	/* Calculator */
	.calc__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.calc__submit {
		font-size: 32px;
	}

	/* Footer */
	.footer {
		max-width: none;
		margin-top: 100px;
		padding-left: 50%;
		padding-right: 40px;
	}
	.footer__title {
		font-size: 36px;
		font-weight: 500;
		max-width: 400px;
	}
	.footer__sub {
		font-size: 20px;
	}
	.bg-decor img {
		height: auto;
	}
	.mark-red-abn {
		color: var(--red);
	}
}

@media (max-width: 1000px) {
	.mark-red-abn {
		color: var(--red);
		width: auto;
	}
	.header__title {
		font-size: 30px;
	}
	.header__phone {
		font-size: 24px;
	}
	.header__brand {
		align-items: start;
	}
	.widget-card__sum {
		display: flex;
		align-items: flex-start;
		gap: 0px;
		flex-direction: column-reverse;
	}
}

@media (max-width: 920px) {
	.mark-red {
		max-width: 98px;
	}
}

@media (max-width: 780px) {
	.header__title {
		font-size: 24px;
	}
	.widget-card__sum {
		display: flex;
		align-items: center;
		gap: 12px;
		flex-direction: row;
	}
}

/* =========================================================
   REVIEWS — COLLAPSIBLE WIDGET CARDS
   ========================================================= */
.widget-card {
	cursor: pointer;
	user-select: none;
}
.yandex-panel:not(.yandex-panel--visible) {
	display: none;
}
.comment--hidden {
	display: none;
}
.widgets-panel__arrow-desktop {
	cursor: pointer;
}
.reviews__arrows span {
	cursor: pointer;
}

/* =========================================================
   GALLERY OVERLAY
   ========================================================= */
.gallery-overlay {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9000;
	background: rgba(10, 10, 10, 0.94);
	flex-direction: column;
	align-items: stretch;
}
.gallery-overlay.gallery--open {
	display: flex;
}
.gallery__close {
	position: absolute;
	top: 12px;
	right: 16px;
	background: none;
	border: none;
	color: #fff;
	font-size: 40px;
	line-height: 1;
	cursor: pointer;
	padding: 4px 8px;
	z-index: 10;
	opacity: 0.8;
}
.gallery__close:hover {
	opacity: 1;
}
.gallery__main {
	flex: 1;
	display: flex;
	align-items: center;
	min-height: 0;
	padding: 60px 8px 16px;
	gap: 4px;
}
.gallery__img-wrap {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	min-height: 0;
	min-width: 0;
	overflow: hidden;
}
.gallery__img {
	max-width: 100%;
	max-height: calc(100vh - 220px);
	object-fit: contain;
	border-radius: var(--radius);
	display: block;
}
.gallery__video {
	display: none;
	max-width: 100%;
	max-height: calc(100vh - 220px);
	border-radius: var(--radius);
}
.gallery--video .gallery__img {
	display: none;
}
.gallery--video .gallery__video {
	display: block;
}
.gallery__caption {
	color: rgba(255, 255, 255, 0.65);
	font-size: 15px;
	text-align: center;
	margin: 0;
}
.gallery__nav {
	background: rgba(255, 255, 255, 0.12);
	border: none;
	color: #fff;
	font-size: 40px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	line-height: 0.8;
	opacity: 0.75;
	padding: 0;
}
.gallery__nav:hover {
	opacity: 1;
	background: rgba(255, 255, 255, 0.2);
}
.gallery__thumbs {
	display: flex;
	gap: 8px;
	padding: 12px 16px 20px;
	overflow-x: auto;
	scrollbar-width: none;
	justify-content: safe center;
	flex-shrink: 0;
}
.gallery__thumbs::-webkit-scrollbar {
	display: none;
}
.gallery__thumb {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: var(--radius-s);
	cursor: pointer;
	opacity: 0.45;
	flex-shrink: 0;
	border: 2px solid transparent;
	transition:
		opacity 0.15s,
		border-color 0.15s;
}
.gallery__thumb--active,
.gallery__thumb:hover {
	opacity: 1;
	border-color: rgba(255, 255, 255, 0.8);
}
.gallery__thumb--video {
	position: relative;
	display: block;
	background: #000;
	overflow: hidden;
}
.gallery__thumb--video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.gallery__thumb-play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 18px;
	pointer-events: none;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}
@media (min-width: 780px) {
	.gallery__main {
		padding: 72px 24px 20px;
		gap: 16px;
	}
	.gallery__img {
		max-height: calc(100vh - 200px);
	}
	.gallery__nav {
		width: 56px;
		height: 56px;
		font-size: 48px;
	}
	.gallery__thumb {
		width: 80px;
		height: 80px;
	}
}





.prices-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	border-bottom: 0.25px solid var(--border);
	max-width: calc(var(--container-max) + 32px);
	margin: 0 auto;
  }
  .prices-header__brand {
	display: flex;
	align-items: center;
	gap: 12px;
  }
  .prices-header__logo {
	height: 36px;
	width: auto;
  }
  .prices-header__back {
	font-size: 15px;
	color: var(--red);
	display: flex;
	align-items: center;
	gap: 4px;
  }
  .prices-header__phone {
	font-size: 17px;
	font-weight: 500;
	color: var(--ink);
  }
  
  /* Layout */
  .prices-body {
	display: flex;
	align-items: flex-start;
	max-width: calc(var(--container-max) + 32px);
	margin: 0 auto;
  }
  
  /* Desktop sidebar */
  .prices-nav {
	display: none;
  }
  
  /* Mobile top nav */
  .prices-nav-mobile {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 24px 0 28px;
	border-bottom: 0.25px solid var(--border);
	margin-bottom: 36px;
  }
  .prices-nav-mobile a {
	font-size: 18px;
	color: var(--red);
	line-height: 1.2;
  }
  
  /* Content area */
  .prices-content {
	flex: 1;
	padding: 28px 20px 80px;
	min-width: 0;
  }
  
  /* Section */
  .price-section {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 48px;
	scroll-margin-top: 20px;
  }
  .price-section__title {
	font-size: 22px;
	font-weight: 500;
	line-height: 1;
	color: var(--ink);
  }
  
  /* Row */
  .price-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	border-top: 0.25px solid var(--border);
	padding-top: 12px;
	gap: 12px;
  }
  .price-row__left {
	display: flex;
	gap: 8px;
	flex: 1;
	flex-wrap: wrap;
  }
  .price-row__mark {
	font-size: 16px;
	line-height: 1.1;
	color: var(--red);
  }
  .price-row__class {
	font-size: 16px;
	line-height: 1.1;
	color: var(--ink);
  }
  .price-row__price {
	font-size: 16px;
	line-height: 1.1;
	color: var(--ink);
	text-align: right;
	white-space: nowrap;
	flex-shrink: 0;
  }
  
  @media (min-width: 780px) {
	.prices-header {
	  padding: 20px 40px;
	}
	.prices-header__logo {
	  height: 44px;
	}
  
	.prices-nav {
	  display: flex;
	  flex-direction: column;
	  gap: 20px;
	  width: 280px;
	  flex-shrink: 0;
	  padding: 40px 32px 40px 40px;
	  position: sticky;
	  top: 0;
	  max-height: 100vh;
	  overflow-y: auto;
	  scrollbar-width: none;
	  border-right: 0.25px solid var(--border);
	}
	.prices-nav::-webkit-scrollbar { display: none; }
	.prices-nav a {
	  font-size: 22px;
	  color: var(--red);
	  line-height: 1.2;
	  transition: opacity 0.15s;
	}
	.prices-nav a:hover { opacity: 0.7; }
  
	.prices-nav-mobile { display: none; }
  
	.prices-content {
	  padding: 40px 56px 96px;
	}
  
	.price-section {
	  gap: 20px;
	  margin-bottom: 72px;
	}
	.price-section__title {
	  font-size: 36px;
	}
	.price-row {
	  padding-top: 16px;
	  gap: 24px;
	}
	.price-row__left { gap: 11px; }
	.price-row__mark,
	.price-row__class,
	.price-row__price {
	  font-size: 28px;
	}
	.docs {
		min-width: 286px;
	}
  }