/**
 * Home — Solutions pillars
 */

/* Pillars / Solutions */
.l1-pillar {
	position: relative;
	background: #fff;
	border: 1px solid var(--l1-line);
	border-radius: var(--l1-radius);
	padding: 1.85rem 1.45rem 1.6rem;
	min-height: 260px;
	display: flex;
	flex-direction: column;
	box-shadow: var(--l1-shadow-sm);
	transition: transform 0.25s, box-shadow 0.25s;
	overflow: hidden;
}
.l1-pillar:hover {
	transform: translateY(-6px);
	box-shadow: var(--l1-shadow-md);
}
.l1-pillar-ico {
	width: 52px; height: 52px; border-radius: 16px;
	display: grid; place-items: center;
	background: var(--gradient); color: #fff;
	font-size: 1.35rem; margin-bottom: 1.1rem;
	box-shadow: var(--l1-shadow-sm);
}
.l1-pillar h3 { font-size: 1.18rem; margin: 0 0 0.55rem; font-weight: 700; }
.l1-pillar p { color: var(--l1-muted); font-size: 0.92rem; margin: 0 0 1rem; line-height: 1.5; flex: 1; }
.l1-pillar a {
	color: var(--l1-purple); font-weight: 700; font-size: 0.9rem;
	display: inline-flex; align-items: center; gap: 0.35rem;
	margin-top: auto;
}
.l1-pillar a:hover { color: var(--l1-cyan); }
