.service-hero {
	position: relative;
	height: 100vh;
	height: 100dvh;
	display: flex;
	align-items: center;
	background: #0c0c0d;
	overflow: hidden;
	padding: 0px 20px;
	background: url("../img/kuzov.jpg") right center/cover no-repeat;
}

/* затемнение фона */
.service-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	/* равномерное мягкое затемнение */
	backdrop-filter: brightness(0.45);
	z-index: 1;
}

/* внутренняя сетка */
.service-hero__inner {
	position: relative;
	z-index: 2;

	display: grid;
	grid-template-columns: 1fr 0.6fr;
	align-items: center;
	gap: 40px;
	padding: 60px 0;
}

@media (max-width: 900px) {
	.service-hero__inner {
		grid-template-columns: 1fr;
	}
}

/* LEFT COLUMN */
.hero-left {
	max-width: 600px;
}

/* тонкая вертикальная линия (стильно!) */
.hero-line {
	width: 3px;
	background: var(--accent);
	height: 60px;
	margin-bottom: 24px;
	border-radius: 5px;

}

.service-hero h1 {
	font-size: clamp(36px, 6vw, 60px);
	line-height: 1.1;
	font-weight: 700;
	color: #fff;
	margin-bottom: 22px;
}

.hero-desc {
	color: #d0d0d0;
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 32px;
	max-width: 540px;
}

/* BUTTONS */
.hero-actions {
	display: flex;
	align-items: center;
	gap: 20px;
}

.hero-btn {
	padding: 14px 28px;
	background: var(--accent);
	color: #fff;
	font-weight: 700;
	border-radius: 10px;
	text-decoration: none;
	transition: 0.2s;
}

.hero-btn:hover {
	background: var(--accent-light);
}

.hero-link {
	color: #fff;
	font-size: 16px;
	text-decoration: none;
	opacity: 0.8;
	transition: 0.2s;
}

.hero-link:hover {
	opacity: 1;
}

/* RIGHT SIDE ACCENT CARD */
.hero-right {
	display: flex;
	justify-content: flex-end;
}

.accent-card {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(12px);
	padding: 28px;
	border-radius: 16px;
	max-width: 320px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	box-shadow: 0 10px 50px rgba(0, 0, 0, 0.4);

	animation: fadeInUp 0.7s ease forwards;
	opacity: 0;
	transform: translateY(20px);
}

.accent-card h3 {
	color: var(--accent);
	font-size: 20px;
	margin-bottom: 6px;
}

.accent-card p {
	color: #dcdcdc;
	font-size: 15px;
	line-height: 1.5;
}

/* small animation */
@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 900px) {
	.hero-right {
		justify-content: flex-start;
		margin-top: 20px;
	}
}


.body-types {
	padding: 120px 0;
	background: #0f0f10;
	color: #fff;
}

.section-title {
	font-size: 38px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 16px;
}

.section-subtitle {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 50px;
	color: #b8b8b8;
	font-size: 17px;
	line-height: 1.6;
}

/* GRID */
.body-types__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

@media (max-width: 900px) {
	.body-types__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.body-types__grid {
		grid-template-columns: 1fr;
	}

	.hero-line {
		margin-top: 70px;
	}
}

/* CARD */
.type-card {
	background: #151517;
	border-radius: 18px;
	padding: 32px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);

	transition: transform .3s ease, box-shadow .3s ease;
}

.type-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 14px 50px rgba(0, 0, 0, 0.55);
}

/* ICON */
.type-icon {
	font-size: 36px;
	margin-bottom: 18px;
	opacity: 0.9;
	text-align: center;
}

/* TITLE */
.type-card h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
	text-align: center;
}

/* TEXT */
.type-card p {
	font-size: 15px;
	color: #bcbcbc;
	line-height: 1.6;
	text-align: center;
}

.works {
	background: #0f0f10;
	color: #fff;
}

.section-title {
	text-align: center;
	font-size: 38px;
	font-weight: 700;
	margin-bottom: 16px;
}

.section-subtitle {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 50px;
	color: #b8b8b8;
	font-size: 17px;
	line-height: 1.6;
}

/* GRID */
.works-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

@media (max-width: 900px) {
	.works-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.works-grid {
		grid-template-columns: 1fr;
	}
}

/* CARD */
.work-card {
	position: relative;
	overflow: hidden;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
	cursor: pointer;
	height: 260px;
}

.work-card:hover .after {
	opacity: 1;
	transform: scale(1.03);
}

.work-card:hover .work-label {
	opacity: 1;
	transform: translateY(0);
}

/* IMAGES */
.work-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .4s ease;
}

/* BEFORE (видно по умолчанию) */
.work-img.before {
	opacity: 1;
}

/* AFTER (появляется при ховере) */
.work-img.after {
	opacity: 0;
	transform: scale(1);
}

/* LABEL */
.work-label {
	position: absolute;
	bottom: 14px;
	left: 14px;
	background: rgba(0, 0, 0, 0.55);
	padding: 8px 16px;
	border-radius: 10px;
	backdrop-filter: blur(4px);
	border: 1px solid rgba(255, 255, 255, 0.15);

	opacity: 0;
	transition: .35s ease;
	transform: translateY(10px);
}

.work-label span {
	font-weight: 600;
	color: var(--accent);
}


.advantage-pro {
	padding: 130px 0;
	background: #0b0b0c;
	color: #fff;
	position: relative;
	overflow: hidden;
}

.adv-pro-title {
	text-align: center;
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 80px;
}

/* LIST */
.adv-pro-list {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

/* EACH ITEM */
.adv-pro-item {
	position: relative;
	padding: 32px 40px;
	border-radius: 20px;

	background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(8px);

	overflow: hidden;
}

/* BIG BACKGROUND NUMBER */
.adv-pro-bgnum {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 140px;
	font-weight: 800;
	opacity: 0.05;
	color: #fff;
	pointer-events: none;
	user-select: none;
	line-height: 1;
}

/* CONTENT */
.adv-pro-content h3 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 10px;
}

.adv-pro-content p {
	color: #bdbdbd;
	font-size: 16px;
	max-width: 600px;
	line-height: 1.6;
}

/* HOVER EFFECT */
.adv-pro-item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg,
			transparent,
			rgba(255, 255, 255, 0.05),
			transparent);
	transform: translateX(-100%);
	transition: .8s;
}

.adv-pro-item:hover::after {
	transform: translateX(100%);
}