.sm-validation {
	padding: 60px 0;
	background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.sm-validation__title {
	font-size: 36px;
	font-weight: 800;
	margin-bottom: 12px;
	color: #0f172a;
}

.sm-validation__subtitle {
	font-size: 1rem;
	color: #475569;
	margin-bottom: 20px;
}

/* Steps */
.sm-validation__steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	max-width: 960px;
	margin: 0 auto 50px;
}

.sm-step {
	background: rgba(27, 135, 201, 0.08);
	border-radius: 18px;
	padding: 36px 26px;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.sm-step.show {
	opacity: 1;
	transform: translateY(0);
}

.sm-step__icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 18px;
	border-radius: 50%;
	background: var(--accent-gradiant);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: #fff;
	box-shadow: 0 15px 35px rgba(92, 113, 246, 0.35);
}

.sm-step__title {
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: #0f172a;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.sm-step__text {
	font-size: 0.95rem;
	color: #475569;
	line-height: 1.6;
}

/* CTA */
.sm-validation__cta-text {
	font-size: 1.05rem;
	color: #0f172a;
	margin-bottom: 24px;
}

.sm-validation__btn {
	display: inline-block;
	padding: 14px 36px;
	background: linear-gradient(135deg, #22c55e, #16a34a);
	color: #022c22;
	border-radius: 999px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 14px 30px rgba(34, 197, 94, 0.4);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.sm-validation__btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 40px rgba(34, 197, 94, 0.55);
}

.sm-validation__note {
	margin-top: 18px;
	font-size: 0.9rem;
	color: #64748b;
}

/* Responsive */
@media (max-width: 900px) {
	.sm-validation__steps {
		grid-template-columns: 1fr;
	}
}
