/* Process & values */
#process .card { cursor: default; }

.process-steps .step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--gradient-primary);
	background-size: 200% 200%;
	animation: gradient-shift 3s ease infinite;
	color: var(--surface-contrast);
	font-weight: 800;
	font-size: 1.4rem;
	border: 3px solid rgba(255, 255, 255, 0.9);
	margin-bottom: 16px;
	box-shadow: 0 4px 20px rgba(99, 102, 241, 0.5), 0 0 40px rgba(139, 92, 246, 0.3);
	transition: all 0.3s ease;
}

.process-steps .card {
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.process-steps .card:hover {
	transform: translateY(-8px) scale(1.02);
}

.process-steps .card:hover .step-number {
	transform: scale(1.1) rotate(360deg);
	box-shadow: 0 6px 30px rgba(99, 102, 241, 0.6), 0 0 60px rgba(139, 92, 246, 0.4);
	animation-duration: 1.5s;
}

.info-card {
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(79, 172, 254, 0.05) 100%);
	border: 2px solid transparent;
	background-clip: padding-box;
	padding: 24px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	border-radius: var(--border-radius-lg);
	box-shadow: 0 4px 20px rgba(99, 102, 241, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.5);
	position: relative;
}

.info-card::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: var(--gradient-ai);
	border-radius: var(--border-radius-lg);
	z-index: -1;
}

.info-card h3 {
	margin-bottom: 16px;
	color: var(--primary-color);
}

.info-list {
	list-style: none;
	padding: 0;
	margin: 0;
	line-height: 1.8;
	font-size: 16px;
}

.notice {
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	padding: 16px;
	border-radius: var(--border-radius-lg);
}

.notice-warning {
	background: var(--warning-bg);
	border: 1.5px solid var(--warning-border);
	color: var(--warning-text);
}
