

/* Start:/local/templates/rosveb/css/contract-template.css?178774716511250*/
.dhct-page {
	--dhct-bg: #F8F8F8;
	--dhct-graphite: #22252A;
	--dhct-accent: #C05A3A;
	--dhct-support: #D7C7B5;
	--dhct-white: #FFFFFF;
	--dhct-muted: #66696E;
	--dhct-line: rgba(34, 37, 42, 0.12);

	margin-top: 8px;
	padding: 24px 0 72px;

	background-color: var(--dhct-bg);
	box-shadow: 0 0 0 100vmax var(--dhct-bg);
	clip-path: inset(0 -100vmax);
	color: var(--dhct-graphite);
}

.dhct-page *,
.dhct-page *::before,
.dhct-page *::after {
	box-sizing: border-box;
}

.dhct-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
	gap: 54px;
	align-items: center;
	margin-top: 72px;
	padding: 48px 64px;
	overflow: visible;

	border-radius: 24px;
	background-color: var(--dhct-graphite);
	background-image:
		radial-gradient(circle at 82% 18%, rgba(192, 90, 58, 0.26), transparent 28%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 48%);
	box-shadow: 0 24px 70px rgba(34, 37, 42, 0.16);
}

.dhct-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;

	color: var(--dhct-accent);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.dhct-eyebrow::before {
	display: block;
	width: 28px;
	height: 2px;

	background-color: currentColor;
	content: "";
}

.dhct-eyebrow--light {
	color: var(--dhct-support);
}

.dhct-hero__title {
	max-width: 710px;
	margin: 0 0 24px;

	color: var(--dhct-white);
	font-size: clamp(36px, 3.5vw, 56px);
	font-weight: 600;
	line-height: 1.08;
	letter-spacing: -0.035em;
}

.dhct-hero__text {
	max-width: 660px;
	margin: 0;

	color: rgba(255, 255, 255, 0.72);
	font-size: 17px;
	line-height: 1.65;
}

.dhct-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.dhct-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 13px 24px;

	border: 1px solid transparent;
	border-radius: 10px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
	transition:
		background-color 0.25s ease,
		border-color 0.25s ease,
		color 0.25s ease,
		transform 0.25s ease;
}

.dhct-button:hover {
	transform: translateY(-2px);
	text-decoration: none;
}

.dhct-button--accent {
	background-color: var(--dhct-accent);
	color: var(--dhct-white);
}

.dhct-button--accent:hover {
	background-color: #A9492F;
	color: var(--dhct-white);
}

.dhct-email-link {
	align-self: center;

	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	text-decoration: none;
	transition: color 0.25s ease;
}

.dhct-email-link:hover {
	color: var(--dhct-white);
	text-decoration: none;
}

.dhct-document {
	position: relative;
	margin: -112px 0 -10px;
	padding: 28px 30px 30px;

	border-radius: 12px;
	background-color: #ffffff;
	box-shadow:
		0 24px 60px rgba(0, 0, 0, 0.24),
		16px 16px 0 rgba(215, 199, 181, 0.16);
	transform: rotate(1.2deg);
	transition: transform 0.4s ease;
}

.dhct-hero:hover .dhct-document {
	transform: rotate(0deg) translateY(-4px);
}

.dhct-document::before {
	position: absolute;
	top: 0;
	right: 0;
	width: 82px;
	height: 82px;

	background: linear-gradient(225deg, rgba(34, 37, 42, 0.08) 0 50%, transparent 50%);
	content: "";
}

.dhct-document__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 30px;
}

.dhct-document__mark {
	display: block;
	width: 138px;

	line-height: 0;
}

.dhct-document__logo {
	display: block;
	width: 100%;
	height: auto;
}

.dhct-document__status {
	padding: 7px 12px;

	border: 1px solid rgba(192, 90, 58, 0.34);
	border-radius: 999px;
	color: var(--dhct-accent);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.dhct-document__caption {
	margin: 0 0 8px;

	color: var(--dhct-accent);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.dhct-document__title {
	margin: 0 0 20px;

	color: var(--dhct-graphite);
	font-size: 28px;
	font-weight: 600;
	line-height: 1.2;
}

.dhct-document__lines {
	margin: 0;
	padding: 0;

	list-style: none;
}

.dhct-document__lines li {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 10px 0;

	border-top: 1px solid rgba(34, 37, 42, 0.11);
	color: var(--dhct-graphite);
	font-size: 14px;
	font-weight: 500;
}

.dhct-document__lines li::before {
	display: none !important;

	content: none !important;
}

.dhct-document__lines span {
	color: var(--dhct-accent);
	font-size: 11px;
	font-weight: 700;
}

.dhct-section {
	padding-top: 86px;
}

.dhct-section--dark {
	margin-top: 86px;
	padding: 60px;

	border-radius: 24px;
	background-color: var(--dhct-graphite);
	color: var(--dhct-white);
}

.dhct-section__header {
	margin-bottom: 34px;
}

.dhct-section__header--light .dhct-section__title {
	color: var(--dhct-white);
}

.dhct-section__title {
	margin: 0;

	color: var(--dhct-graphite);
	font-size: clamp(30px, 3vw, 46px);
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: -0.025em;
}

.dhct-section__lead {
	max-width: 700px;
	margin: 18px 0 0;

	color: var(--dhct-muted);
	font-size: 17px;
	line-height: 1.65;
}

.dhct-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.dhct-card {
	position: relative;
	padding: 30px;
	overflow: hidden;

	border: 0;
	border-radius: 18px;
	background-color: var(--dhct-white);
	transition:
		box-shadow 0.3s ease,
		transform 0.3s ease;
}

.dhct-card:hover {
	box-shadow: 0 20px 48px rgba(34, 37, 42, 0.12);
	transform: translateY(-6px);
}

.dhct-card--accent {
	background-color: #F3E6E0;
}

.dhct-card__number {
	position: absolute;
	top: 15px;
	right: 20px;

	color: rgba(192, 90, 58, 0.11);
	font-size: 62px;
	font-weight: 800;
	line-height: 0.9;
	letter-spacing: -0.06em;
	pointer-events: none;
}

.dhct-card__title,
.dhct-card p {
	position: relative;
	z-index: 1;
}

.dhct-card__title {
	margin: 0 0 12px;

	color: var(--dhct-graphite);
	font-size: 21px;
	font-weight: 600;
	line-height: 1.3;
}

.dhct-card p {
	margin: 0;

	color: var(--dhct-muted);
	font-size: 14px;
	line-height: 1.6;
}

.dhct-steps {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 0;
	padding: 0;

	list-style: none;
}

.dhct-step {
	position: relative;
	display: block;
	margin-bottom: 0;
	padding: 28px 94px 28px 28px;
	overflow: hidden;

	border: 0;
	border-radius: 16px;
	background-color: rgba(255, 255, 255, 0.045);
	transition:
		background-color 0.3s ease,
		box-shadow 0.3s ease,
		transform 0.3s ease;
}

.dhct-step:hover {
	background-color: rgba(255, 255, 255, 0.08);
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
	transform: translateY(-4px);
}

.dhct-step__number {
	position: absolute;
	top: 14px;
	right: 20px;

	color: rgba(255, 255, 255, 0.1);
	font-size: 64px;
	font-weight: 800;
	line-height: 0.9;
	pointer-events: none;
}

.dhct-step > div {
	position: relative;
	z-index: 1;
}

.dhct-step__title {
	margin: 0 0 7px;

	color: var(--dhct-white);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.35;
}

.dhct-step p {
	margin: 0;

	color: rgba(255, 255, 255, 0.66);
	font-size: 14px;
	line-height: 1.55;
}

.dhct-related {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 22px;
}

.dhct-related__link {
	position: relative;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 4px;
	padding: 26px 84px 26px 28px;

	border: 0;
	border-radius: 16px;
	background-color: var(--dhct-white);
	color: var(--dhct-graphite);
	text-decoration: none;
	transition:
		box-shadow 0.25s ease,
		transform 0.25s ease;
}

.dhct-related__link::after {
	position: absolute;
	top: 50%;
	right: 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;

	border-radius: 50%;
	background-color: rgba(192, 90, 58, 0.1);
	color: var(--dhct-accent);
	font-size: 20px;
	line-height: 1;
	content: "→";
	transform: translateY(-50%);
	transition:
		background-color 0.25s ease,
		color 0.25s ease,
		transform 0.25s ease;
}

.dhct-related__link:hover {
	box-shadow: 0 16px 36px rgba(34, 37, 42, 0.09);
	color: var(--dhct-graphite);
	text-decoration: none;
	transform: translateY(-3px);
}

.dhct-related__link:hover::after {
	background-color: var(--dhct-accent);
	color: var(--dhct-white);
	transform: translate(4px, -50%);
}

.dhct-related__link span {
	color: var(--dhct-muted);
	font-size: 13px;
}

.dhct-related__link strong {
	font-size: 21px;
	font-weight: 600;
	line-height: 1.25;
}

.dhct-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	margin-top: 86px;
	padding: 42px 48px;

	border-radius: 20px;
	background-color: var(--dhct-graphite);
	background-image: radial-gradient(circle at 88% 20%, rgba(192, 90, 58, 0.24), transparent 28%);
	box-shadow: 0 22px 56px rgba(34, 37, 42, 0.16);
}

.dhct-cta__title {
	margin: 0;

	color: var(--dhct-white);
	font-size: clamp(27px, 2.6vw, 38px);
	font-weight: 600;
	line-height: 1.16;
	letter-spacing: -0.02em;
}

.dhct-cta__text {
	max-width: 720px;
	margin: 12px 0 0;

	color: rgba(255, 255, 255, 0.7);
	font-size: 15px;
	line-height: 1.6;
}

@media (max-width: 1199px) {
	.dhct-hero {
		grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
		gap: 40px;
		margin-top: 64px;
		padding: 48px 44px;
	}

	.dhct-document {
		margin-top: -96px;
	}

	.dhct-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 991px) {
	.dhct-page {
		padding-top: 12px;
	}

	.dhct-hero {
		grid-template-columns: 1fr;
		margin-top: 0;
		padding: 48px 38px;
		overflow: hidden;
	}

	.dhct-document {
		max-width: 560px;
		margin: 0;
		transform: none;
	}

	.dhct-section {
		padding-top: 70px;
	}

	.dhct-section--dark {
		margin-top: 70px;
		padding: 46px 36px;
	}

	.dhct-cta {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 767px) {
	.dhct-page {
		padding-bottom: 52px;
	}

	.dhct-hero {
		gap: 34px;
		padding: 38px 24px;

		border-radius: 18px;
	}

	.dhct-hero__title {
		font-size: 34px;
	}

	.dhct-hero__text {
		font-size: 15px;
	}

	.dhct-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.dhct-button {
		width: 100%;
	}

	.dhct-email-link {
		align-self: flex-start;
	}

	.dhct-document {
		padding: 26px 22px 30px;
	}

	.dhct-document__mark {
		width: 120px;
	}

	.dhct-document__top {
		margin-bottom: 30px;
	}

	.dhct-document__title {
		font-size: 24px;
	}

	.dhct-section {
		padding-top: 58px;
	}

	.dhct-section--dark {
		margin-top: 58px;
		padding: 36px 22px;

		border-radius: 18px;
	}

	.dhct-section__header {
		margin-bottom: 26px;
	}

	.dhct-section__title {
		font-size: 30px;
	}

	.dhct-section__lead {
		font-size: 15px;
	}

	.dhct-grid,
	.dhct-steps,
	.dhct-related {
		grid-template-columns: 1fr;
	}

	.dhct-card {
		padding: 26px 24px;
	}

	.dhct-cta {
		margin-top: 58px;
		padding: 34px 24px;

		border-radius: 18px;
	}
}

@media (max-width: 479px) {
	.dhct-hero__title {
		font-size: 30px;
	}

	.dhct-step {
		padding: 20px 72px 20px 20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.dhct-page *,
	.dhct-page *::before,
	.dhct-page *::after {
		transition-duration: 0.01ms !important;
	}
}

/* End */
/* /local/templates/rosveb/css/contract-template.css?178774716511250 */
