/* L1 Process — transparent bg, 1200px content, no desktop side padding */

.elementor-widget-l1_process,
.elementor-widget-l1_process > .elementor-widget-container {
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.l1-pr {
	width: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background: transparent;
	--l1-pr-purple: #3d1f5c;
	--l1-pr-gold: #c4a35a;
}

.l1-pr__inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
	box-sizing: border-box;
}

.l1-pr__header {
	text-align: center;
	margin: 0 0 48px;
	padding: 0;
}

.l1-pr__eyebrow {
	margin: 0 0 10px;
	padding: 0;
	font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #a67c52;
}

.l1-pr__heading {
	margin: 0;
	padding: 0;
	font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	font-size: clamp(26px, 3.2vw, 40px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #1a1a1a;
}

.l1-pr__list {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.l1-pr-step {
	position: relative;
	flex: 1 1 0;
	min-width: 0;
	margin: 0;
	padding: 0 10px;
	text-align: center;
	box-sizing: border-box;
}

.l1-pr-step__visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin: 0 0 22px;
	min-height: 96px;
}

.l1-pr-step__icon {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 88px;
	height: 88px;
	border-radius: 50%;
	background-color: var(--l1-pr-purple);
	box-shadow: 0 10px 22px rgba(61, 31, 92, 0.28);
	box-sizing: border-box;
}

.l1-pr-step__icon img {
	display: block;
	width: 42px;
	height: 42px;
	object-fit: contain;
}

.l1-pr-step__num {
	position: absolute;
	z-index: 3;
	top: 50%;
	left: calc(50% - 86px);
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background-color: var(--l1-pr-purple);
	color: #ffffff;
	font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 4px 10px rgba(61, 31, 92, 0.22);
}

.l1-pr-step__line {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: calc(50% + 52px);
	right: calc(-50% + 52px);
	height: 0;
	border-top: 2px dashed var(--l1-pr-gold);
	transform: translateY(-50%);
	pointer-events: none;
}

.l1-pr-step__line::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -2px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 8px;
	border-color: transparent transparent transparent var(--l1-pr-gold);
	transform: translateY(-50%);
}

.l1-pr-step__title {
	margin: 0 0 10px;
	padding: 0;
	font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.3;
	color: #1a1a1a;
}

.l1-pr-step__desc {
	margin: 0 auto;
	padding: 0;
	max-width: 220px;
	font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	font-size: 14.5px;
	font-weight: 400;
	line-height: 1.55;
	color: #333333;
}

@media (max-width: 991px) {
	.elementor-widget-l1_process > .elementor-widget-container {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	.l1-pr__inner {
		padding-left: 20px;
		padding-right: 20px;
		box-sizing: border-box;
	}

	.l1-pr__header {
		margin-bottom: 36px;
	}

	.l1-pr__list {
		flex-wrap: wrap;
		row-gap: 36px;
	}

	.l1-pr-step {
		flex: 1 1 50%;
		padding: 0 16px;
	}

	.l1-pr-step__line {
		display: none;
	}

	.l1-pr-step:nth-child(odd) .l1-pr-step__line {
		display: block;
		left: calc(50% + 52px);
		right: calc(-100% + 52px);
	}

	.l1-pr-step:nth-child(2n) .l1-pr-step__line {
		display: none;
	}
}

@media (max-width: 640px) {
	.elementor-widget-l1_process > .elementor-widget-container {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	.l1-pr__inner {
		padding-left: 20px;
		padding-right: 20px;
		box-sizing: border-box;
	}

	.l1-pr__list {
		flex-direction: column;
		align-items: center;
		row-gap: 28px;
	}

	.l1-pr-step {
		flex: 0 0 auto;
		width: 100%;
		max-width: 320px;
		padding: 0;
	}

	.l1-pr-step__line {
		display: none !important;
	}

	.l1-pr-step__icon {
		width: 80px;
		height: 80px;
	}

	.l1-pr-step__icon img {
		width: 38px;
		height: 38px;
	}

	.l1-pr-step__num {
		left: calc(50% - 78px);
		width: 26px;
		height: 26px;
		font-size: 12px;
	}

	.l1-pr-step__desc {
		max-width: 260px;
	}
}
