.fill-wrapper {
	font-family:
		system-ui,
		-apple-system,
		sans-serif;
	padding: 40px 20px;
}

.fill-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 30px;
	max-width: 350px;
	position: relative;
	cursor: pointer;
	overflow: hidden;
	z-index: 1;
}

.fill-card::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	background: #0ea5e9;
	z-index: -1;
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fill-card:hover::before {
	transform: scaleY(1);
}

.fill-icon {
	font-size: 32px;
	margin-bottom: 16px;
}

.fill-title {
	margin: 0 0 8px 0;
	font-size: 18px;
	color: #0f172a;
	transition: color 0.4s ease;
}

.fill-text {
	margin: 0;
	font-size: 14px;
	color: #077b6;
	line-height: 1.5;
	transition: color 0.4s ease;
}

.fill-card:hover .fill-title,
.fill-card:hover .fill-text {
	color: #ffffff;
}