/* Trust badge */
.trust-badge {
	margin-top: 24px;
	font-size: 15px;
	color: var(--text-secondary);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.9) 100%);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	padding: 20px 24px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	font-weight: 500;
	text-align: center;
	position: relative;
	overflow: hidden;
	animation: fade-in-up 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
}

.trust-badge::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
	animation: shimmer 3s ease-in-out infinite;
}

.trust-item {
	display: inline-block;
	margin: 0 8px;
	font-weight: 600;
	color: var(--text-dark);
	transition: color 0.3s ease;
}

.trust-item:hover { color: var(--primary-color); }

.trust-separator {
	color: var(--border-color);
	font-weight: 400;
	margin: 0 4px;
}

@media (max-width: 768px) {
	.trust-badge { padding: 16px 20px; font-size: 14px; margin-top: 16px; }
	.trust-item { display: block; margin: 4px 0; text-align: center; }
	.trust-separator { display: none; }
}
