/* =========================================================
   VISIONDECOR WORK PROCESS
========================================================= */

.vd-process-section {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding: 125px 0;
	background: #fcfaf6;
	color: #20232a;
}

.vd-process-section::before {
	position: absolute;
	top: -220px;
	right: -240px;
	width: 520px;
	height: 520px;
	border: 1px solid rgba(91, 42, 134, 0.1);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.vd-process-section::after {
	position: absolute;
	bottom: -260px;
	left: -220px;
	width: 500px;
	height: 500px;
	border: 1px solid rgba(213, 170, 50, 0.14);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

/* =========================================================
   SECTION HEADER
========================================================= */

.vd-process-header {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr);
	align-items: end;
	gap: 90px;
	margin-bottom: 75px;
}

.vd-process-heading {
	max-width: 760px;
}

.vd-process-title {
	margin: 0;
	color: #071a3d;
	font-size: clamp(43px, 5vw, 67px);
	font-weight: 700;
	letter-spacing: -3.4px;
	line-height: 1.07;
}

.vd-process-title span {
	display: block;
	color: #d5aa32;
}

.vd-process-introduction {
	padding-bottom: 6px;
}

.vd-process-introduction p {
	margin: 0 0 20px;
	color: #687080;
	font-size: 15px;
	line-height: 1.9;
}

.vd-process-header-link {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	color: #5b2a86;
	font-size: 13px;
	font-weight: 700;
}

.vd-process-header-link span {
	font-size: 19px;
	transition: transform 250ms ease;
}

.vd-process-header-link:hover span {
	transform: translateX(5px);
}

/* =========================================================
   PROCESS TIMELINE
========================================================= */

.vd-process-timeline {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.vd-process-step {
	position: relative;
	min-width: 0;
	min-height: 310px;
	display: flex;
	flex-direction: column;
	padding: 32px 30px 34px;
	border: 1px solid rgba(7, 26, 61, 0.09);
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 12px 36px rgba(7, 26, 61, 0.06);
	transition:
		transform 300ms ease,
		box-shadow 300ms ease,
		border-color 300ms ease;
}

.vd-process-step:hover {
	border-color: rgba(213, 170, 50, 0.55);
	box-shadow: 0 24px 60px rgba(7, 26, 61, 0.12);
	transform: translateY(-7px);
}

.vd-process-marker {
	width: 54px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 45px;
	border-radius: 50%;
	background: #071a3d;
	box-shadow: 0 10px 25px rgba(7, 26, 61, 0.18);
	color: #d5aa32;
}

.vd-process-marker span {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.4px;
}

.vd-process-step-content h3 {
	margin: 0 0 14px;
	color: #071a3d;
	font-size: 21px;
	font-weight: 700;
	letter-spacing: -0.5px;
	line-height: 1.4;
}

.vd-process-step-content p {
	margin: 0;
	color: #687080;
	font-size: 13px;
	line-height: 1.85;
}

.vd-process-connector {
	position: absolute;
	top: 58px;
	right: -29px;
	z-index: 4;
	width: 29px;
	height: 1px;
	background: rgba(213, 170, 50, 0.6);
}

.vd-process-step:nth-child(3) .vd-process-connector {
	display: none;
}

/* =========================================================
   DIASPORA ASSURANCE PANEL
========================================================= */

.vd-process-assurance {
	position: relative;
	z-index: 2;
	overflow: hidden;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 60px;
	margin-top: 65px;
	padding: 48px 50px;
	border-radius: 22px;
	background:
		radial-gradient(
			circle at 88% 20%,
			rgba(213, 170, 50, 0.2),
			transparent 29%
		),
		linear-gradient(
			135deg,
			#031027,
			#071a3d 58%,
			#28144c
		);
	box-shadow: 0 30px 80px rgba(7, 26, 61, 0.18);
	color: #ffffff;
}

.vd-process-assurance::before {
	position: absolute;
	top: -160px;
	right: -100px;
	width: 330px;
	height: 330px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.vd-process-assurance-content {
	position: relative;
	z-index: 2;
	max-width: 720px;
}

.vd-process-assurance-label {
	margin: 0 0 10px;
	color: #d5aa32;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.8px;
	text-transform: uppercase;
}

.vd-process-assurance-content h3 {
	margin: 0 0 15px;
	color: #ffffff;
	font-size: clamp(26px, 3vw, 38px);
	font-weight: 600;
	letter-spacing: -1.4px;
	line-height: 1.3;
}

.vd-process-assurance-content > p:last-child {
	max-width: 680px;
	margin: 0;
	color: rgba(255, 255, 255, 0.65);
	font-size: 14px;
	line-height: 1.85;
}

.vd-process-assurance-actions {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 15px;
	min-width: 245px;
}

.vd-process-secondary-link {
	color: rgba(255, 255, 255, 0.75);
	font-size: 12px;
	font-weight: 600;
	text-decoration: underline;
	text-decoration-color: rgba(213, 170, 50, 0.55);
	text-underline-offset: 5px;
}

.vd-process-secondary-link:hover {
	color: #ffffff;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {
	.vd-process-header {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-bottom: 55px;
	}

	.vd-process-timeline {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vd-process-step:nth-child(3) .vd-process-connector {
		display: block;
	}

	.vd-process-step:nth-child(even) .vd-process-connector {
		display: none;
	}

	.vd-process-assurance {
		grid-template-columns: 1fr;
		gap: 35px;
	}

	.vd-process-assurance-actions {
		align-items: flex-start;
		min-width: 0;
	}
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
	.vd-process-section {
		padding: 72px 0;
	}

	.vd-process-title {
		font-size: 41px;
		letter-spacing: -2.2px;
	}

	.vd-process-timeline {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.vd-process-step {
		min-height: 0;
		padding: 27px 24px 29px;
		border-radius: 16px;
	}

	.vd-process-marker {
		width: 49px;
		height: 49px;
		margin-bottom: 31px;
	}

	.vd-process-connector,
	.vd-process-step:nth-child(3) .vd-process-connector {
		display: none;
	}

	.vd-process-assurance {
		margin-top: 42px;
		padding: 32px 24px;
		border-radius: 17px;
	}

	.vd-process-assurance-content h3 {
		font-size: 27px;
		letter-spacing: -1px;
	}

	.vd-process-assurance-actions {
		align-items: stretch;
		width: 100%;
	}

	.vd-process-assurance-actions .vd-button {
		width: 100%;
	}

	.vd-process-secondary-link {
		text-align: center;
	}
}