.sw-process,
.sw-process * {
	box-sizing: border-box;
}

.elementor-widget-seewell_process_steps {
	margin-block-end: 0;
}

.e-con:has(> .elementor-widget-seewell_process_steps) {
	padding: 0 !important;
}

.sw-process {
	--sw-process-background: #f7f6f2;
	--sw-process-primary: #387e80;
	--sw-process-accent: #c39160;
	--sw-process-text: #333;
	--sw-process-muted: #666;
	width: 100%;
	padding: 80px 24px;
	background: var(--sw-process-background);
	color: var(--sw-process-text);
	font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.sw-process__container {
	width: 100%;
	max-width: 1280px;
	margin-inline: auto;
}

.sw-process__header {
	max-width: 780px;
	margin: 0 auto 52px;
	text-align: center;
}

.sw-process__eyebrow {
	margin: 0 0 20px;
	color: var(--sw-process-accent);
	font-size: 13px;
	font-weight: 750;
	line-height: 1.4;
	letter-spacing: 0.28em;
	text-transform: uppercase;
}

.sw-process__heading {
	margin: 0;
	color: var(--sw-process-primary);
	font-size: clamp(36px, 4vw, 50px);
	font-weight: 750;
	line-height: 1.12;
	letter-spacing: -0.025em;
}

.sw-process__layout {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
	grid-template-areas: "media steps";
	gap: clamp(48px, 6vw, 84px);
	align-items: stretch;
}

.sw-process__layout--image-right {
	grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
	grid-template-areas: "steps media";
}

.sw-process__media {
	position: relative;
	grid-area: media;
	overflow: hidden;
	min-width: 0;
	min-height: 100%;
	border: 1px solid #dedbd3;
	border-radius: 20px;
	background: #e9e7e2;
	box-shadow: 0 8px 24px rgba(38, 61, 57, 0.08);
}

.sw-process .sw-process__image {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.sw-process__placeholder {
	display: flex;
	position: absolute;
	inset: 0;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 8px;
	color: #777;
	text-align: center;
}

.sw-process__placeholder span:first-child {
	font-size: 34px;
	font-weight: 300;
}

.sw-process__steps {
	position: relative;
	grid-area: steps;
	min-width: 0;
	margin: 0;
	padding: 0;
}

.sw-process__highlight {
	position: absolute;
	z-index: 0;
	top: 0;
	right: 0;
	left: 0;
	height: var(--sw-process-highlight-height, 0px);
	border: 1px solid rgba(222, 219, 211, 0.72);
	border-left: 4px solid var(--sw-process-accent);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 12px 30px rgba(38, 61, 57, 0.1);
	opacity: 0;
	pointer-events: none;
	transform: translateY(var(--sw-process-highlight-y, 0px));
	transition: transform 0.5s ease, height 0.5s ease, opacity 0.25s ease;
	will-change: transform, height;
}

.sw-process__steps.is-ready .sw-process__highlight {
	opacity: 1;
}

.sw-process-step {
	position: relative;
	z-index: 1;
	margin: 0;
	border: 0;
	border-radius: 16px;
	padding: 20px 26px;
	background: transparent;
	cursor: pointer;
	outline: 0;
}

.sw-process__steps:not(.is-ready) .sw-process-step.is-active {
	border: 1px solid rgba(222, 219, 211, 0.72);
	border-left: 4px solid var(--sw-process-accent);
	background: #fff;
	box-shadow: 0 12px 30px rgba(38, 61, 57, 0.1);
}

.sw-process-step:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--sw-process-accent) 55%, white);
	outline-offset: -4px;
}

.sw-process-step__topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.sw-process-step__number {
	color: rgba(56, 126, 128, 0.13);
	font-size: clamp(34px, 3vw, 44px);
	font-weight: 750;
	line-height: 1;
	transition: color 0.45s ease;
}

.sw-process-step.is-active .sw-process-step__number {
	color: var(--sw-process-accent);
}

.sw-process-step__icon {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	color: var(--sw-process-primary);
}

.sw-process-step__icon i,
.sw-process-step__icon svg {
	display: block;
	width: 24px;
	height: 24px;
}

.sw-process-step__title {
	margin: 8px 0 0;
	color: #292929;
	font-size: 20px;
	font-weight: 750;
	line-height: 1.3;
}

.sw-process-step__description {
	margin: 8px 0 0;
	color: var(--sw-process-muted);
	font-size: 15px;
	line-height: 1.62;
}

@media (max-width: 900px) {
	.sw-process__layout,
	.sw-process__layout--image-right {
		grid-template-columns: 1fr;
		grid-template-areas: "steps" "media";
		gap: 40px;
	}

	.sw-process__layout--mobile-image-first,
	.sw-process__layout--image-right.sw-process__layout--mobile-image-first {
		grid-template-areas: "media" "steps";
	}

	.sw-process__media {
		min-height: 0;
		aspect-ratio: 4 / 3;
	}
}

@media (max-width: 767px) {
	.sw-process {
		padding: 64px 16px;
	}

	.sw-process__header {
		margin-bottom: 38px;
	}

	.sw-process__eyebrow {
		margin-bottom: 16px;
		font-size: 12px;
	}

	.sw-process__heading {
		font-size: 36px;
	}

	.sw-process-step {
		padding: 18px 20px;
	}

	.sw-process-step__title {
		font-size: 18px;
	}

	.sw-process-step__description {
		font-size: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sw-process__highlight,
	.sw-process-step__number {
		transition: none !important;
	}
}

