/* Service Card */
.service-card-lg {
	background: #fff;
	border-radius: 16px;
	border: 1px solid #e5e7eb;
	overflow: hidden;
	transition: all 0.3s ease;
	position: relative;
}

.service-card-lg:hover {
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	border-color: #acfca5;
	transform: translateY(-4px);
}

/* Accent Bar */
.service-card-lg__accent {
	height: 4px;
	background: #acfca5;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.service-card-lg:hover .service-card-lg__accent {
	transform: scaleX(1);
}

/* Content */
.service-card-lg__content {
	padding: 40px;
}

/* Icon */
.service-card-lg__icon {
	width: 72px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(172, 252, 165, 0.15);
	border-radius: 12px;
	color: #25463f;
	margin-bottom: 24px;
	transition: background 0.3s ease;
	font-size: 28px;
}

.service-card-lg:hover .service-card-lg__icon {
	background: rgba(172, 252, 165, 0.25);
}

.service-card-lg__icon svg {
	width: 28px;
	height: 28px;
}

/* Title */
.service-card-lg__title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 16px;
	letter-spacing: -0.01em;
}

/* Description */
.service-card-lg__text {
	font-size: 1rem;
	color: #6b7280;
	line-height: 1.7;
	margin-bottom: 24px;
}

/* Feature List */
.service-card-lg__list {
	margin-bottom: 28px;
	list-style: none;
	padding: 0;
}

.service-card-lg__list li {
	font-size: 0.9375rem;
	color: #1a1a1a;
	padding: 8px 0;
	padding-left: 24px;
	position: relative;
	border-bottom: 1px solid #e5e7eb;
}

.service-card-lg__list li:last-child {
	border-bottom: none;
}

.service-card-lg__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	background: #acfca5;
	border-radius: 50%;
}

/* Button */
.sbl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 0.875rem;
	padding: 10px 22px;
	border-radius: 6px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.sbl-btn--outline {
	background: transparent;
	color: #25463f;
	border-color: #25463f;
}

.sbl-btn--outline:hover {
	background: #25463f;
	color: #fff;
	transform: translateY(-2px);
}
