.erp-assessment {
	max-width: 1100px;
	margin: 0 auto;
	padding: 48px;
	background: #0b0c22;
	background-image: radial-gradient(circle at top right, rgba(91, 61, 246, 0.25), transparent 55%);
	color: #fff;
	border-radius: 16px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.erp-assessment__title {
	text-align: center;
	font-weight: 700;
	font-size: 32px;
	color: #fff;
	margin-bottom: 28px;
}

.erp-assessment__progress {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
	position: relative;
}

.erp-assessment__progress::before {
	content: '';
	position: absolute;
	top: 18px;
	left: 0;
	right: 0;
	height: 2px;
	background: rgba(255, 255, 255, 0.15);
	z-index: 0;
}

.erp-assessment__step-indicator {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
	cursor: pointer;
	text-align: center;
}

.erp-assessment__step-num {
	width: 36px;
	height: 36px;
	line-height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.6);
	font-weight: 600;
	margin-bottom: 8px;
	transition: all 0.25s ease;
}

.erp-assessment__step-label {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
	font-weight: 500;
}

.erp-assessment__step-indicator.active .erp-assessment__step-num {
	background: var(--theme-color, #5b3df6);
	color: #fff;
}

.erp-assessment__step-indicator.active .erp-assessment__step-label {
	color: #fff;
}

.erp-assessment__step-indicator.completed .erp-assessment__step-num {
	background: #1cb56a;
	color: #fff;
}

.erp-assessment__step-title {
	margin-bottom: 32px;
	font-weight: 700;
	color: #fff;
}

.erp-assessment .row.g-3 {
	--bs-gutter-y: 1.75rem;
}

.erp-assessment .mb-3 {
	margin-bottom: 2rem !important;
}

.erp-assessment__checks {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 12px;
}

.erp-assessment .form-label {
	color: rgba(255, 255, 255, 0.85);
}

.erp-assessment .form-label.d-block {
	font-weight: 600;
	font-size: 15px;
	color: #fff;
	margin-bottom: 16px;
}

.erp-assessment .text-muted {
	color: rgba(255, 255, 255, 0.5) !important;
}

.erp-assessment .form-control,
.erp-assessment .form-select {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #fff;
	border-radius: 8px;
	padding: 10px 14px;
}

.erp-assessment .form-control::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.erp-assessment .form-control:focus,
.erp-assessment .form-select:focus {
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--theme-color, #5b3df6);
	color: #fff;
	box-shadow: 0 0 0 3px rgba(91, 61, 246, 0.25);
}

.erp-assessment .form-select option {
	background: #0b0c22;
	color: #fff;
}

.erp-assessment .form-check.form-check-inline {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	padding: 10px 18px 10px 14px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	transition: all 0.2s ease;
}

.erp-assessment .form-check.form-check-inline:hover {
	border-color: rgba(91, 61, 246, 0.55);
	background: rgba(91, 61, 246, 0.1);
}

.erp-assessment .form-check-label {
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
	white-space: nowrap;
	cursor: pointer;
}

.erp-assessment .form-check-input {
	float: none;
	width: 17px;
	height: 17px;
	margin: 0;
	flex-shrink: 0;
	cursor: pointer;
	background-color: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.35);
}

.erp-assessment .form-check-input:checked {
	background-color: var(--theme-color, #5b3df6);
	border-color: var(--theme-color, #5b3df6);
}

.erp-assessment .invalid-feedback {
	color: #ff8080;
}

.erp-assessment__alert.alert-danger {
	background: rgba(220, 53, 69, 0.15);
	border-color: rgba(220, 53, 69, 0.4);
	color: #ff9b9b;
}

.erp-assessment__alert.alert-success {
	background: rgba(28, 181, 106, 0.15);
	border-color: rgba(28, 181, 106, 0.4);
	color: #6fe3a6;
}

.erp-assessment__actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 32px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.erp-assessment-btn {
	display: inline-block;
	padding: 12px 32px;
	border-radius: 8px;
	border: none;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.erp-assessment-btn--next,
.erp-assessment-btn--finish {
	background: var(--theme-color, #5b3df6);
	color: #fff;
}

.erp-assessment-btn--next:hover,
.erp-assessment-btn--finish:hover {
	opacity: 0.9;
	color: #fff;
}

.erp-assessment-btn--back {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.erp-assessment-btn--back:hover {
	background: rgba(255, 255, 255, 0.15);
}

.erp-assessment-btn--finish:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.erp-assessment .is-invalid {
	border-color: #dc3545;
}

.erp-assessment-banner-cta {
	display: inline-block;
	margin-top: 32px;
	padding: 14px 36px;
	background: #fff;
	color: #1a1a1a;
	font-weight: 600;
	font-size: 16px;
	border-radius: 999px;
	text-decoration: none;
	transition: all 0.2s ease;
}

.erp-assessment-banner-cta:hover {
	background: var(--theme-color, #5b3df6);
	color: #fff;
}

.erp-assessment-banner-caption {
	margin-top: 18px;
	font-size: 15px;
	opacity: 0.75;
}

/* Scoped override: reduce the large empty space above the homepage hero
   content on laptop-sized screens only (leaves mobile/tablet and large
   desktop monitors untouched). */
@media only screen and (min-width: 1025px) and (max-width: 1919.98px) {
	.elementor-element-66da0c8b {
		--padding-top: 180px !important;
	}
}

/* Scoped override: shrink the homepage hero's own headline (widget 4d588547)
   to match the smaller size used below, without touching the sitewide
   heading styles used by other pages. */
.elementor-element-4d588547 .section__title-title {
	font-size: 42px !important;
}

@media only screen and (max-width: 1199.98px) {
	.elementor-element-4d588547 .section__title-title {
		font-size: 34px !important;
	}
}

@media only screen and (max-width: 767.98px) {
	.elementor-element-4d588547 .section__title-title {
		font-size: 26px !important;
	}
}

.erp-assessment-home-cta {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	max-width: 900px;
	text-align: left;
}

.erp-assessment-home-cta__heading {
	color: #fff;
	font-family: var(--ff-inter);
	font-size: 42px;
	line-height: 1.25;
	font-weight: 600;
	margin: 0 0 12px;
}

.erp-assessment-home-cta__subheading {
	color: rgba(255, 255, 255, 0.7);
	font-family: "Inter Tight", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.36px;
	margin: 0 0 16px;
}

@media only screen and (max-width: 1199.98px) {
	.erp-assessment-home-cta__heading {
		font-size: 34px;
	}
}

@media only screen and (max-width: 767.98px) {
	.erp-assessment-home-cta {
		margin-top: 16px;
		padding-top: 16px;
	}

	.erp-assessment-home-cta__heading {
		font-size: 26px;
		margin-bottom: 10px;
	}

	.erp-assessment-home-cta__subheading {
		font-size: 15px;
		margin-bottom: 14px;
	}

	.erp-assessment-banner-cta {
		padding: 12px 24px;
		font-size: 15px;
	}
}

@media (max-width: 576px) {
	.erp-assessment {
		padding: 24px;
	}

	.erp-assessment__step-label {
		display: none;
	}
}
