.gradient-bg {
	background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}
.side-borders {
	background-color: #f9fafb;
}
.plan-card {
	transition: all 0.3s ease;
}
.plan-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.form-control:focus {
	box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

/* Styles responsifs alignés avec contact.html */
@media (max-width: 768px) {
	.flex-mobile-col {
		flex-direction: column;
	}

	.nav-mobile {
		display: flex;
		justify-content: center;
		margin: 1rem 0;
	}

	.w-mobile-full {
		width: 100%;
	}

	.footer-columns {
		flex-direction: column;
		align-items: center;
	}

	.footer-column {
		margin-bottom: 2rem;
		padding-left: 0;
		padding-right: 0;
	}
	
	/* Styles spécifiques aux plans */
	.plan-grid {
		display: flex;
		flex-direction: column;
		gap: 2rem;
	}
	
	.plan-card {
		transform: scale(1) !important; /* Annule scale-105 sur mobile */
		margin-bottom: 1.5rem;
	}
}