/**
 * Phytest Feature Cards Styles
 * Horizontal row of feature cards with icons
 */

/* Wrapper */
.phytest-feature-cards-wrapper {
	width: 100%;
	padding: 60px 20px;
	background: #ffffff;
}

/* Container */
.phytest-feature-cards-container {
	max-width: 1400px;
	margin: 0 auto;
}

/* Flex Container */
.phytest-feature-cards-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: space-between;
}

/* Individual Card */
.phytest-feature-card {
	background: #ffffff;
	border: 1px solid #EDEDED;
	border-radius: 24px;
	padding: 24px;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	flex: 1 1 calc(25% - 18px);
	min-width: 250px;
	font-family: 'Open Sans', Helvetica, Arial, Lucida, sans-serif;
}

.phytest-feature-card:hover {
	background-color: #FBF6FE;
	transform: translateY(-5px);
}

/* Icon Container */
.phytest-feature-card-icon {
	width: 72px;
	height: 72px;
	background: #f0ecf9;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 32px;
}

.phytest-feature-card-icon svg {
	color: #7b68ee;
	width: 40px;
	height: 40px;
}

/* Card Title */
.phytest-feature-card-title {
	font-size: 20px;
	font-weight: 700;
	color: #363636;
	line-height: 1.3;
}

/* Service List */
.phytest-feature-card-list {
	list-style: none;
	padding: 0 !important;
	margin: 0;
}

.phytest-feature-card-list li {
	font-size: 20px;
	font-weight: 500;
	color: rgba(0, 0, 0, 0.4);
	line-height: 1.6;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.phytest-feature-card-list li:last-child {
	margin-bottom: 0;
}

/* Checkmark */
.phytest-feature-card-list .phytest-checkmark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 16px;
	height: 13px;
}

.phytest-feature-card-list .phytest-checkmark svg {
	width: 16px;
	height: 13px;
	display: block;
}

/* Responsive Design */
@media (max-width: 1200px) {
	.phytest-feature-cards-grid {
		gap: 20px;
	}
	
	.phytest-feature-card {
		padding: 28px 20px;
		flex: 1 1 calc(50% - 10px);
	}
	
	.phytest-feature-card-icon {
		width: 65px;
		height: 65px;
	}
	
	.phytest-feature-card-icon svg {
		width: 36px;
		height: 36px;
	}
	
	.phytest-feature-card-title {
		font-size: 18px;
		margin-bottom: 18px;
	}
}

@media (max-width: 768px) {
	.phytest-feature-cards-wrapper {
		padding: 40px 15px;
	}
	
	.phytest-feature-cards-grid {
		gap: 20px;
	}
	
	.phytest-feature-card {
		padding: 24px;
		flex: 1 1 100%;
	}
	
	.phytest-feature-card-icon {
		width: 60px;
		height: 60px;
	}
	
	.phytest-feature-card-icon svg {
		width: 34px;
		height: 34px;
	}
	
	.phytest-feature-card-title {
		font-size: 18px;
		margin-bottom: 16px;
	}
	
	.phytest-feature-card-list li {
		font-size: 14px;
		margin-bottom: 10px;
	}
}

@media (max-width: 480px) {
	.phytest-feature-cards-wrapper {
		padding: 30px 10px;
	}
	
	.phytest-feature-card {
		padding: 20px;
	}
	
	.phytest-feature-card-icon {
		width: 55px;
		height: 55px;
	}
	
	.phytest-feature-card-icon svg {
		width: 30px;
		height: 30px;
	}
	
	.phytest-feature-card-title {
		font-size: 17px;
		margin-bottom: 14px;
	}
	
	.phytest-feature-card-list li {
		font-size: 13px;
	}
}

/* Animation */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.phytest-feature-card {
	animation: fadeInUp 0.6s ease-out;
}

.phytest-feature-card:nth-child(1) {
	animation-delay: 0s;
}

.phytest-feature-card:nth-child(2) {
	animation-delay: 0.1s;
}

.phytest-feature-card:nth-child(3) {
	animation-delay: 0.2s;
}

.phytest-feature-card:nth-child(4) {
	animation-delay: 0.3s;
}

