.complex {
	position: relative;
    background: url(/img/service_page/home.png) no-repeat top center;
    background-size: cover;
}

.buildings {
	position: relative;
    background: url(/img/service_page/buildings.png) no-repeat top center;
    background-size: cover;
}

.ceiling {
	position: relative;
    background: url(/img/service_page/ceiling.png) no-repeat top center;
    background-size: cover;
}

.f_selfleveling {
	position: relative;
    background: url(/img/service_page/f_selfleveling.png) no-repeat top center;
    background-size: cover;
}


.floor {
	position: relative;
    background: url(/img/service_page/floor.png) no-repeat top center;
    background-size: cover;
}


.walls {
	position: relative;
    background: url(/img/service_page/walls.png) no-repeat top center;
    background-size: cover;
}


.waste_removal {
	position: relative;
    background: url(/img/service_page/waste_removal.png) no-repeat top center;
    background-size: cover;
}

/* белый оверлей */
.main-block::before{
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.6); /* прозрачность */
	z-index: 1;
}

/* чтобы контент был поверх */
.main-block > .container{
	position: relative;
	z-index: 2;
}

/* ===============================
   Информационный блок услуги
   =============================== */

.ba-block{
	padding: 30px 0;
	background: #ffffff;
}

.ba-block .ba-h2{
	font-size: 36px;
	line-height: 1.2;
	margin-bottom: 40px;
	max-width: 900px;
}

.ba-block .ba-grid{
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 50px;
	align-items: start;
}

.ba-block .ba-text{
	font-size: 17px;
	line-height: 1.7;
	color: #333;
}

.ba-block .ba-text p{
	margin-bottom: 18px;
}

.ba-block .ba-text p:last-child{
	margin-bottom: 0;
}

/* список */
.ba-block .ba-list{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.ba-block .ba-item{
	position: relative;
	padding-left: 34px;
    padding-top: 5px;
	font-size: 16px;
	line-height: 1.5;
}

/* галочка */
.ba-block .ba-item:before{
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
	width: 22px;
	height: 22px;
	background: url("/img/icons/ok_shine.svg") no-repeat center / contain;
}

/* ===============================
   Адаптив
   =============================== */

@media (max-width: 992px){

	.ba-block{
		padding: 30px 0;
	}

	.ba-block .ba-h2{
		font-size: 30px;
		margin-bottom: 30px;
	}

	.ba-block .ba-grid{
		grid-template-columns: 1fr;
		gap: 35px;
	}

}

@media (max-width: 576px){

	.ba-block{
		padding: 45px 0;
	}

	.ba-block .ba-h2{
		font-size: 24px;
	}

	.ba-block .ba-text{
		font-size: 15px;
	}

	.ba-block .ba-item{
		font-size: 15px;
		padding-left: 30px;
	}

}
/* ===============================
   Блок бюджета демонтажа
   =============================== */

.service-budget{
	padding: 80px 0;
	background: #ffffff;
}

.service-budget .budget-note{
	padding: 18px 22px;
	background: rgba(0,0,0,.04);
	border-radius: 18px;
	font-size: 15px;
	line-height: 1.5;
}

.service-budget .budget-note strong{
	font-weight: 700;
}

/* контейнер таблицы */
.budget-table-wrap{
	margin-top: 30px;
	background: #ffffff;
	border-radius: 22px;
	box-shadow: 0 12px 32px rgba(0,0,0,.06);
	overflow: hidden;
}

/* горизонтальный скролл */
.budget-scroll{
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

/* сама таблица */
.budget-table-extended{
	width: 100%;
	min-width: 820px;
	border-collapse: collapse;
	font-size: 16px;
}

/* шапка */
.budget-table-extended thead{
	background: rgba(0,0,0,.05);
}

.budget-table-extended th{
	padding: 18px 20px;
	text-align: left;
	font-weight: 700;
	white-space: nowrap;
}

/* строки */
.budget-table-extended td{
	padding: 18px 20px;
	vertical-align: top;
	line-height: 1.5;
}

/* мягкие разделители */
.budget-table-extended tbody tr{
	border-top: 1px solid rgba(0,0,0,.06);
}

/* hover эффект */
.budget-table-extended tbody tr:hover{
	background: rgba(0,0,0,.02);
	transition: 0.2s ease;
}

/* первая колонка — площадь */
.budget-table-extended td:first-child{
	font-weight: 600;
	white-space: nowrap;
}

/* колонка "под ключ" чуть выделим */
.budget-table-extended td:nth-child(3){
	font-weight: 700;
	color: #000;
}

/* нижняя сноска */
.budget-footnote{
	margin-top: 20px;
	font-size: 14px;
	color: #666;
	line-height: 1.4;
}

/* ===============================
   Адаптив
   =============================== */

@media (max-width: 992px){

	.service-budget{
		padding: 60px 0;
	}

	.budget-table-extended{
		font-size: 14px;
		min-width: 720px;
	}

	.budget-table-extended th,
	.budget-table-extended td{
		padding: 14px 16px;
	}

}

@media (max-width: 576px){

	.service-budget{
		padding: 50px 0;
	}

	.budget-note{
		font-size: 14px;
		padding: 14px 16px;
		border-radius: 14px;
	}

}