.printing-page {
	margin-bottom: 60px;
	.section-heading {
		display: flex;
		align-items: end;
		justify-content: space-between;
		gap: 40px;
		h2 {
			font-size: 32px;
			line-height: 1;
		}
		> p {
			width: 448px;
			flex-shrink: 0;
			text-align: right;
			text-transform: uppercase;
			color: color-mix(in srgb, var(--textColor) 60%, transparent);
			span {
				color: transparent;
				background: var(--gradient-1);
				background-clip: text;
				-webkit-background-clip: text;
			}
		}
		&.reverse {
			> p {
				text-align: left;
			}
		}
		&.centered {
			align-items: center;
			flex-direction: column;
			gap: 12px;
			> p,
			h2 {
				width: 100%;
				text-align: center;
			}
		}
	}
	.bg-title {
		position: absolute;
		z-index: -1;
		font: 900 158px / 1.09 'Unbounded';
		letter-spacing: -10px;
		text-transform: uppercase;
		white-space: nowrap;
		color: color-mix(in srgb, var(--textColor) 3%, var(--bg-1));
	}
	.hero {
		min-height: 674px;
		overflow: hidden;
		background: color-mix(in srgb, var(--bg-1) 75%, transparent);
		padding-bottom: 90px;
		.wrapper {
			position: relative;
			min-height: inherit;
			padding-top: 120px;
		}
		.breadcrumbs {
			position: relative;
			z-index: 2;
			display: flex;
			gap: 6px;
			font-size: 12px;
			text-transform: uppercase;
			* {
				font-size: inherit;
				color: color-mix(in srgb, var(--textColor) 60%, transparent);
			}
			span:last-child {
				color: var(--bg-3);
			}
		}
		.content {
			position: relative;
			z-index: 2;
			width: 800px;
			margin-top: 80px;
			h1 {
				font-size: 48px;
				line-height: 1;
				span {
					display: block;
					font: inherit;
					line-height: 1.1;
					color: transparent;
					background: var(--gradient-1);
					background-clip: text;
					-webkit-background-clip: text;
				}
			}
			strong {
				display: block;
				margin-top: 6px;
				font-size: 24px;
				font-weight: 500;
				line-height: 1.2;
				letter-spacing: -.5px;
			}
			p {
				margin-top: 6px;
				line-height: 1.2;
				letter-spacing: -.5px;
				color: color-mix(in srgb, var(--textColor) 60%, transparent);
			}
			.btn {
				--pd-h: 0px;
				margin-top: 30px;
				border-radius: 16px;
				background: var(--gradient-1);
			}
		}
		.picture {
			position: absolute;
			top: -825px;
			left: calc(50% - 59px);
			width: 1241px;
			max-width: none;
			pointer-events: none;
			object-fit: contain;
		}
	}
	.benefits {
		.cards {
			display: grid;
			grid-template-columns: repeat(6, minmax(0, 1fr));
			gap: 12px;
			margin-top: 40px;
			article {
				--image-right: 44px;
				--image-bottom: 81px;
				--image-width: 159px;
				--image-height: 182px;
				position: relative;
				grid-column: span 2;
				min-height: 400px;
				display: flex;
				overflow: hidden;
				padding: 40px;
				border: 1px solid transparent;
				border-radius: 12px;
				background: color-mix(in srgb, var(--bg-1) 82%, transparent);
				box-shadow: 0 16px 34px color-mix(in srgb, var(--textColor) 6%, transparent);
				transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
				&:nth-last-child(-n + 2) {
					grid-column: span 3;
					.text {
						margin-top: auto;
					}
				}
				&::before {
					content: attr(data-bg);
					position: absolute;
					left: -10px;
					bottom: -36px;
					font: 900 130px / 1 'Unbounded';
					letter-spacing: -10px;
					text-transform: uppercase;
					white-space: nowrap;
					color: color-mix(in srgb, var(--textColor) 3%, var(--bg-1));
				}
				.text {
					position: relative;
					z-index: 1;
					width: min(420px, 80%);
					h3 {
						font-size: 24px;
						line-height: 1;
						transition: color .3s ease;
					}
					p {
						margin-top: 10px;
						font-size: 20px;
						line-height: 1.2;
						color: var(--textColor2);
					}
				}
				img {
					position: absolute;
					right: var(--image-right);
					bottom: var(--image-bottom);
					width: var(--image-width);
					height: var(--image-height);
					object-fit: contain;
					object-position: right bottom;
					transition: transform .4s var(--anim2);
				}
				&:nth-child(2) {
					--image-right: 52px;
					--image-bottom: 87px;
					--image-width: 170px;
					--image-height: 183px;
				}
				&:nth-child(3) {
					--image-right: 30px;
					--image-bottom: 71px;
					--image-width: 212px;
					--image-height: 205px;
				}
				&:nth-child(4) {
					--image-right: 73px;
					--image-bottom: 66px;
					--image-width: 241px;
					--image-height: 162px;
				}
				&:nth-child(5) {
					--image-right: 70px;
					--image-bottom: 35px;
					--image-width: 202px;
					--image-height: 212px;
				}
			}
		}
	}
	.services {
		position: relative;
		margin-top: 120px;
		.bg-title {
			top: 0;
			left: -20px;
		}
		.wrapper {
			position: relative;
		}
		.content {
			display: grid;
			grid-template-columns: 577px minmax(0, 1fr);
			gap: 40px;
			align-items: center;
			margin-top: 40px;
		}
		.menu {
			display: flex;
			flex-direction: column;
			gap: 34px;
			button {
				position: relative;
				padding: 0 0 12px;
				border: 0;
				background: none;
				text-align: left;
				font-size: 24px;
				font-weight: 900;
				line-height: 1;
				text-transform: uppercase;
				color: color-mix(in srgb, var(--textColor2) 70%, transparent);
				transition: color .3s ease;
				&::after {
					content: '';
					position: absolute;
					bottom: 0;
					left: 0;
					width: 100%;
					height: 2px;
					background: var(--gradient-1);
					transform: scaleX(0);
					transform-origin: left;
					transition: transform .4s ease;
				}
				&.active {
					color: transparent;
					background: var(--gradient-1);
					background-clip: text;
					-webkit-background-clip: text;
					&::after {
						transform: scaleX(1);
					}
				}
			}
		}
		.items {
			position: relative;
			height: 508px;
			overflow: hidden;
			border-radius: 16px;
			box-shadow: 0 16px 34px color-mix(in srgb, var(--textColor) 6%, transparent), 0 63px 63px color-mix(in srgb, var(--textColor) 5%, transparent);
		}
		.item {
			position: absolute;
			inset: 0;
			overflow: hidden;
			border-radius: 16px;
			background: var(--bg-1);
			opacity: 0;
			visibility: hidden;
			pointer-events: none;
			transition: opacity .25s ease, visibility 0s linear .25s;
			.picture {
				position: absolute;
				top: 0;
				right: 0;
				width: 48.25%;
				height: 100%;
				&::after {
					content: '';
					position: absolute;
					inset: 0;
					background: linear-gradient(90deg, var(--bg-1), color-mix(in srgb, var(--bg-1) 78%, transparent) 30%, color-mix(in srgb, var(--bg-1) 46%, transparent) 50%, transparent 62%);
				}
				img {
					position: absolute;
					inset: 0;
					width: 100%;
					height: 100%;
					object-fit: cover;
					&:not(.base) {
						z-index: 1;
						object-position: center bottom;
					}
				}
			}
			&[data-key="corporate"] .picture img:not(.base) {
				object-fit: fill;
			}
			&[data-key="merch"] .picture {
				filter: blur(7px);
			}
			.text {
				position: absolute;
				z-index: 2;
				top: 60px;
				left: 60px;
				width: 553px;
				height: 388px;
				display: flex;
				flex-direction: column;
				justify-content: space-between;
			}
			.tags {
				display: flex;
				flex-wrap: wrap;
				gap: 6px;
				span {
					padding: 3px 16px 5px;
					border: 1px solid color-mix(in srgb, var(--bg-2) 55%, transparent);
					border-radius: 8px;
					font-size: 16px;
					line-height: 1;
					color: transparent;
					background: var(--gradient-1);
					background-clip: text;
					-webkit-background-clip: text;
				}
			}
			.body {
				display: flex;
				flex-direction: column;
				gap: 69px;
				h3 {
					width: 420px;
					font-size: 24px;
					line-height: 1;
				}
				p {
					margin-top: 20px;
					font-size: 20px;
					line-height: 1.2;
					color: var(--textColor2);
				}
				.btn {
					--pd-h: 0px;
					border-radius: 16px;
					background: var(--gradient-1);
				}
			}
			&.active {
				z-index: 1;
				opacity: 1;
				visibility: visible;
				pointer-events: auto;
				transition: opacity .25s ease, visibility 0s;
			}
		}
	}
	.technologies {
		position: relative;
		margin-top: 120px;
		.bg-title {
			top: -30px;
			right: -118px;
		}
		.cards {
			display: grid;
			grid-template-columns: repeat(2, minmax(0, 1fr));
			gap: 12px;
			margin-top: 40px;
			article {
				position: relative;
				min-height: 160px;
				display: grid;
				grid-template-columns: 45% 1fr;
				align-items: center;
				overflow: hidden;
				padding: 38px 40px;
				border: 1px solid transparent;
				border-radius: 12px;
				background: color-mix(in srgb, var(--bg-1) 70%, transparent);
				transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
				&::before {
					content: attr(data-bg);
					position: absolute;
					top: -18px;
					left: -20px;
					font: 900 95px / 1 'Unbounded';
					letter-spacing: -8px;
					text-transform: uppercase;
					white-space: nowrap;
					color: color-mix(in srgb, var(--textColor) 3%, var(--bg-1));
				}
				h3,
				ul {
					position: relative;
					z-index: 1;
				}
				h3 {
					font-size: 24px;
					line-height: 1;
					color: var(--textColor2);
					transition: color .3s ease;
					text-transform: none;
					font-weight: 700;
				}
				ul {
					display: grid;
					grid-template-columns: repeat(2, minmax(0, 1fr));
					gap: 12px;
					list-style: none;
					max-width: 376px;
					margin-left: auto;
					li {
						position: relative;
						padding-left: 18px;
						line-height: 1.2;
						color: var(--textColor2);
						&::before {
							content: '';
							position: absolute;
							top: .45em;
							left: 0;
							width: 6px;
							aspect-ratio: 1;
							background: var(--bg-2);
						}
					}
				}
			}
		}
	}
	.additional {
		position: relative;
		display: grid;
		grid-template-columns: 326px minmax(0, 1fr);
		gap: 38px;
		overflow: hidden;
		margin-top: 120px;
		padding: 80px 60px;
		border: 1px solid transparent;
		border-radius: 12px;
		background: linear-gradient(var(--bg-1), var(--bg-1)) padding-box, var(--gradient-1) border-box;
		> img {
			position: absolute;
			bottom: -500px;
			left: -54px;
			width: 726px;
			pointer-events: none;
			object-fit: contain;
		}
		.intro,
		.cards {
			position: relative;
			z-index: 1;
		}
		.intro {
			p {
				line-height: 1.2;
				text-transform: uppercase;
				color: var(--textColor2);
				max-width: 320px;
				span {
					color: transparent;
					background: var(--gradient-1);
					background-clip: text;
					-webkit-background-clip: text;
				}
			}
			h2 {
				margin-top: 6px;
				font-size: 32px;
				line-height: 1;
			}
		}
		.cards {
			display: grid;
			grid-template-columns: repeat(4, minmax(0, 1fr));
			gap: 12px;
			article {
				min-height: 230px;
				padding: 30px;
				border: 1px solid color-mix(in srgb, var(--textColor) 10%, transparent);
				border-radius: 12px;
				background: color-mix(in srgb, var(--bg-1) 75%, transparent);
				transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
				i {
					display: block;
					width: 30px;
					height: 12px;
					border-top: 3px solid var(--bg-2);
					border-bottom: 3px solid var(--bg-2);
				}
				h3 {
					margin-top: 20px;
					font-size: 20px;
					line-height: 1;
				}
				p {
					margin-top: 10px;
					font-size: 20px;
					line-height: 1.15;
					color: var(--textColor2);
				}
			}
		}
	}
	.prices {
		margin-top: 120px;
		.cards {
			display: grid;
			grid-template-columns: repeat(3, minmax(0, 1fr));
			gap: 12px;
			align-items: center;
			margin-top: 40px;
			article {
				position: relative;
				min-height: 336px;
				display: flex;
				flex-direction: column;
				padding: 40px;
				border: 1px solid color-mix(in srgb, var(--textColor) 10%, transparent);
				border-radius: 12px;
				background: color-mix(in srgb, var(--bg-1) 75%, transparent);
				transition: transform .3s ease, box-shadow .3s ease;
				.title {
					h3 {
						font-size: 24px;
						line-height: 1;
						&::before {
							content: '';
							display: inline-block;
							width: 18px;
							aspect-ratio: 1;
							margin: 0 10px 3px 0;
							border: 1px solid transparent;
							border-radius: 6px;
							background: var(--gradient-1) border-box;
							box-shadow: inset 0 0 0 5px var(--bg-1);
						}
					}
					p {
						margin-top: 6px;
						color: var(--textColor2);
					}
				}
				.details {
					display: flex;
					flex-direction: column;
					gap: 16px;
					margin-top: 32px;
					.time {
						width: fit-content;
						display: flex;
						align-items: center;
						gap: 10px;
						padding: 10px;
						border: 1px solid color-mix(in srgb, var(--textColor) 12%, transparent);
						border-radius: 12px;
						font-size: 14px;
						text-transform: uppercase;
						color: var(--textColor2);
						&::before {
							content: '\e909';
							font: 18px icon;
							color: inherit;
						}
					}
					strong {
						display: flex;
						align-items: center;
						gap: 10px;
						font-size: 28px;
						font-weight: 900;
						&::before {
							content: '\e908';
							font: 24px icon;
						}
					}
				}
				> button {
					width: 100%;
					height: 50px;
					margin-top: auto;
					border: 1px solid var(--textColor2);
					border-radius: 8px;
					background: transparent;
					font-size: 18px;
					font-weight: 900;
					text-transform: uppercase;
					transition: color .3s ease, background .3s ease, border-color .3s ease;
				}
				&.accent {
					min-height: 380px;
					padding-block: 52px;
					border-color: transparent;
					background: linear-gradient(var(--bg-1), var(--bg-1)) padding-box, var(--gradient-1) border-box;
					box-shadow: 0 18px 46px -18px var(--bg-2);
					> button {
						border-color: transparent;
						color: var(--btn-color);
						background: var(--gradient-1);
					}
				}
				.popular {
					position: absolute;
					top: 18px;
					right: -12px;
					width: 110px;
					height: 34px;
					display: flex;
					align-items: center;
					justify-content: center;
					border-radius: 6px;
					background: var(--gradient-1);
					transform: rotate(29deg);
					b {
						font-weight: 900;
						text-transform: uppercase;
						color: var(--btn-color);
					}
				}
			}
		}
	}
	.portfolio,
	.about-request,
	.seo {
		margin-top: 120px;
	}
	.portfolio .info-box {
		h2 {
			margin: auto 0 40px;
			font-size: 48px;
		}
		h3 {
			margin-top: auto;
		}
		p {
			margin-top: 6px;
		}
	}
	.seo {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
		.column {
			&:last-child {
				padding-top: 34px;
			}
			h2 {
				display: flex;
				align-items: center;
				gap: 20px;
				font-size: 16px;
				line-height: 1.2;
				color: var(--textColor2);
				white-space: nowrap;
				&::after {
					content: '\e903';
					font-family: 'icon';
					font-size: 24px;
					transform: rotate(90deg);
				}
			}
			.text {
				display: flex;
				flex-direction: column;
				gap: 4px;
				margin-top: 10px;
				opacity: .6;
				p {
					font-size: 20px;
					line-height: 1.2;
					color: var(--textColor2);
				}
			}
		}
	}
}
@media (max-width: 1600px) {
	.printing-page {
		.benefits .cards article {
			padding: 30px;
		}
		.services {
			.content {
				grid-template-columns: 460px minmax(0, 1fr);
			}
			.item {
				.text {
					left: 40px;
					width: 500px;
				}
			}
		}
		.additional {
			grid-template-columns: 280px minmax(0, 1fr);
			padding-inline: 40px;
			.cards article {
				padding: 24px;
				p {
					font-size: 16px;
				}
			}
		}
	}
}
@media (max-width: 1280px) {
	.printing-page {
		.section-heading {
			h2 {
				font-size: 28px;
			}
			> p {
				width: 360px;
			}
		}
		.bg-title {
			font-size: 120px;
		}
		.hero {
			.content {
				width: 650px;
				h1 {
					font-size: 40px;
				}
				strong {
					font-size: 20px;
				}
			}
			.picture {
				top: -330px;
				width: 1100px;
			}
		}
		.benefits .cards {
			grid-template-columns: repeat(2, minmax(0, 1fr));
			article,
			article:nth-last-child(-n + 2) {
				grid-column: span 1;
				&:last-child {
					grid-column: 1 / -1;
				}
			}
		}
		.services {
			.content {
				grid-template-columns: 330px minmax(0, 1fr);
			}
			.menu button {
				font-size: 19px;
			}
			.item {
				.text {
					left: 30px;
					width: 52%;
				}
				.body {
					gap: 50px;
					h3,
					p {
						width: 100%;
					}
					p {
						font-size: 17px;
					}
					.btn {
						padding-inline: 30px;
						font-size: 16px;
					}
				}
			}
		}
		.technologies .cards article {
			grid-template-columns: 38% 1fr;
			padding: 30px;
			h3 {
				font-size: 20px;
			}
			ul {
				grid-template-columns: 1fr;
			}
		}
		.additional {
			grid-template-columns: 1fr;
			.intro {
				width: 340px;
			}
			.cards {
				grid-template-columns: repeat(2, minmax(0, 1fr));
			}
		}
		.prices .cards article {
			padding: 28px;
			.title h3 {
				font-size: 20px;
			}
			.details strong {
				font-size: 24px;
			}
			> button {
				font-size: 15px;
			}
		}
	}
}
@media (max-width: 1024px) {
	.printing-page {
		.section-heading {
			align-items: start;
			flex-direction: column;
			gap: 12px;
			> p {
				width: auto;
				text-align: left;
			}
			&.reverse p {
				order: 2;
			}
			&.centered {
				align-items: center;
				> p {
					text-align: center;
				}
			}
		}
		.bg-title {
			display: none;
		}
		.hero {
			min-height: 720px;
			padding-bottom: 80px;
			.content {
				width: min(650px, 78%);
			}
			.picture {
				top: -180px;
				left: 40%;
				width: 940px;
				opacity: .45;
			}
		}
		.services,
		.technologies,
		.additional,
		.prices,
		.portfolio,
		.about-request,
		.seo {
			margin-top: 80px;
		}
		.services {
			.content {
				grid-template-columns: 1fr;
			}
			.menu {
				overflow: auto hidden;
				flex-direction: row;
				gap: 20px;
				button {
					min-width: 280px;
				}
			}
			.item {
				.text {
					left: 40px;
					width: 55%;
				}
				.picture {
					width: 48.25%;
				}
			}
		}
		.technologies .cards {
			grid-template-columns: 1fr;
			article {
				grid-template-columns: 35% 1fr;
				ul {
					grid-template-columns: repeat(2, minmax(0, 1fr));
				}
			}
		}
		.additional {
			padding: 50px 30px;
		}
		.prices .cards {
			grid-template-columns: 1fr;
			article,
			article.accent {
				min-height: 0;
				padding: 32px;
				.details {
					margin-bottom: 30px;
				}
			}
		}
		.seo {
			grid-template-columns: 1fr;
			.column {
				&:last-child {
					padding-top: 0;
				}
				h2 {
					white-space: normal;
				}
				.text p {
					font-size: 16px;
				}
			}
		}
	}
}
@media (max-width: 768px) {
	.printing-page {
		.hero {
			min-height: 700px;
			.wrapper {
				padding-top: 90px;
			}
			.content {
				width: 100%;
				margin-top: 70px;
				h1 {
					font-size: clamp(24px, 7.5vw, 40px);
				}
				strong {
					font-size: 18px;
				}
				p {
					font-size: 14px;
				}
				.btn {
					width: 100%;
					justify-content: center;
					padding-inline: 20px;
				}
			}
			.picture {
				top: 0;
				left: 16%;
				width: 760px;
				opacity: .18;
			}
		}
		.benefits .cards {
			grid-template-columns: 1fr;
			article,
			article:nth-last-child(-n + 2),
			article:nth-last-child(-n + 2):last-child {
				--image-right: 10px;
				--image-bottom: 10px;
				--image-width: 48%;
				--image-height: 220px;
				grid-column: auto;
				min-height: 330px;
				padding: 24px;
				.text {
					width: 72%;
					h3 {
						font-size: 20px;
					}
				}
			}
		}
		.services {
			.items {
				height: 620px;
			}
			.item {
				.text {
					inset: 0;
					width: 100%;
					height: 100%;
					padding: 24px;
				}
				.tags span {
					font-size: 13px;
				}
				.body {
					gap: 28px;
					h3 {
						font-size: 20px;
					}
					p {
						font-size: 16px;
					}
					.btn {
						width: 100%;
						justify-content: center;
						padding-inline: 14px;
					}
				}
				.picture {
					top: 0;
					right: -35%;
					bottom: auto;
					width: 100%;
					height: 100%;
					opacity: .2;
				}
			}
		}
		.technologies .cards article {
			grid-template-columns: 1fr;
			gap: 28px;
			padding: 24px;
			h3 {
				font-size: 20px;
			}
			ul {
				grid-template-columns: 1fr;
			}
		}
		.additional {
			padding: 30px 18px;
			> img {
				left: -160px;
				opacity: .2;
			}
			.intro {
				width: auto;
				h2 {
					font-size: 28px;
				}
			}
			.cards {
				grid-template-columns: 1fr;
				article {
					min-height: 0;
				}
			}
		}
		.prices .cards article,
		.prices .cards article.accent {
			padding: 24px;
			.popular {
				right: -18px;
				transform: scale(.8) rotate(29deg);
			}
		}
		.portfolio .info-box h2 {
			font-size: 38px;
		}
	}
}
@media (hover: hover) and (pointer: fine) {
	.printing-page {
		.benefits .cards article:hover,
		.additional .cards article:hover {
			border-color: var(--bg-2);
			box-shadow: 0 18px 34px color-mix(in srgb, var(--bg-2) 12%, transparent);
			transform: translateY(-4px);
		}
		.benefits .cards article:hover {
			h3 {
				color: transparent;
				background: var(--gradient-1);
				background-clip: text;
				-webkit-background-clip: text;
			}
			img {
				transform: translateY(-8px);
			}
		}
		.services .menu button:hover {
			color: var(--bg-2);
		}
		.technologies .cards article:hover {
			border-color: var(--bg-2);
			box-shadow: 0 18px 34px color-mix(in srgb, var(--bg-2) 10%, transparent);
			transform: translateY(-4px);
			h3 {
				color: transparent;
				background: var(--gradient-1);
				background-clip: text;
				-webkit-background-clip: text;
			}
		}
		.prices .cards article:hover {
			box-shadow: 0 18px 34px color-mix(in srgb, var(--bg-2) 12%, transparent);
			transform: translateY(-4px);
			&.accent {
				transform: translateY(-8px);
			}
			> button:not(.bg-animate) {
				border-color: transparent;
				color: var(--btn-color);
				background: var(--gradient-1);
			}
		}
	}
}
