.dbep-process {
	width: 100%;
	box-sizing: border-box;
	padding: 20px 2px 6px;
	background: #f2f7fb;
}

.dbep-process *,
.dbep-process *::before,
.dbep-process *::after {
	box-sizing: border-box;
}

.dbep-inner {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}

.dbep-stepper {
	display: flex;
	width: 100%;
	max-width: 520px;
	margin: 0 auto 28px;
}

.dbep-step-item {
	position: relative;
	display: flex;
	flex: 1 1 0;
	min-width: 0;
	align-items: center;
	flex-direction: column;
	color: var(--step-color);
}

.dbep-step-item:not(:last-child)::after {
	position: absolute;
	z-index: 0;
	top: 14px;
	left: 50%;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, var(--step-color), var(--next-color));
	content: "";
}

.dbep-step-circle {
	position: relative;
	z-index: 1;
	display: inline-flex;
	width: 30px;
	height: 30px;
	align-items: center;
	justify-content: center;
	border: 3px solid #fff;
	border-radius: 50%;
	background: var(--step-color);
	box-shadow: 0 0 0 2px var(--step-soft);
	color: #fff;
	font-size: 9px;
	font-weight: 700;
	line-height: 1;
}

.dbep-step-label {
	position: relative;
	z-index: 1;
	display: block;
	margin-top: 8px;
	color: var(--step-color);
	font-size: 9px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
}

.dbep-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 14px;
	row-gap: 14px;
}

.dbep-card {
	position: relative;
	display: flex;
	min-width: 0;
	min-height: 200px;
	overflow: hidden;
	flex-direction: column;
	padding: 22px;
	border: 1px solid var(--step-soft);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 4px 16px rgba(20, 49, 77, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dbep-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 26px rgba(20, 49, 77, 0.1);
}

.dbep-card::after {
	position: absolute;
	z-index: 0;
	top: -72.5px;
	right: -72.5px;
	width: 145px;
	height: 145px;
	border-radius: 50%;
	background: var(--step-soft);
	content: "";
	pointer-events: none;
}

.dbep-card > * {
	position: relative;
	z-index: 1;
}

.dbep-card-head {
	display: flex;
	align-items: center;
	margin-bottom: 16px;
	gap: 12px;
}

.dbep-letter {
	display: inline-flex;
	width: 42px;
	height: 42px;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: var(--step-color);
	box-shadow: 0 9px 20px -9px var(--step-color);
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
}

.dbep-card-heading {
	min-width: 0;
}

.dbep-card-eyebrow {
	margin-bottom: 3px;
	color: var(--step-color);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.11em;
	line-height: 1.2;
	text-transform: uppercase;
}

.dbep-card-title {
	margin: 0;
	color: #10234b;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.15;
}

.dbep-card-subtitle {
	margin-bottom: 9px;
	color: #10234b;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
}

.dbep-card-description {
	margin-bottom: 13px;
	color: #5f6b7a;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.65;
}

.dbep-highlight {
	display: flex;
	align-items: center;
	margin-top: auto;
	color: var(--step-color);
	font-size: 10px;
	font-weight: 600;
	line-height: 1.3;
	gap: 7px;
}

.dbep-highlight-icon {
	display: inline-flex;
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--step-soft);
	font-size: 9px;
	font-weight: 700;
	line-height: 1;
}

@media (max-width: 767px) {
	.dbep-process {
		padding: 18px 10px 10px;
	}

	.dbep-stepper {
		margin-bottom: 22px;
	}

	.dbep-step-label {
		font-size: 8px;
	}

	.dbep-cards {
		grid-template-columns: minmax(0, 1fr);
	}

	.dbep-card {
		min-height: 0;
		padding: 20px 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.dbep-card {
		transition: none;
	}
}

