/* Section Background */
.why-section {
	padding: 60px 0;
	background: linear-gradient(to bottom, #ffffff, #f9fafb);
}

.why-section > .container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	text-align: center;
}

/* Typography */
.why-section .heading {
	font-size: 36px !important;
	font-weight: 700;
	color: #111827;
	margin-bottom: 16px;
}

.why-section .subtitle {
	font-size: 20px;
	color: #4b5563;
	margin-bottom: 8px;
}

.why-section .description {
	font-size: 18px;
	color: #6b7280;
	margin-bottom: 56px;
}

/* Grid Layout */
.why-section .cards-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}

@media (min-width: 768px) {
	.why-section .cards-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1024px) {
	.why-section .cards-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Card Styles */
.why-section .card {
	background: #ffffff;
	border-radius: 16px;
	box-shadow:
		0 10px 15px -3px rgba(0, 0, 0, 0.1),
		0 4px 6px -2px rgba(0, 0, 0, 0.05);
	padding: 32px;
	text-align: left;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.why-section .card.visible {
	opacity: 1;
	transform: translateY(0);
}

.why-section .card:hover {
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	transform: translateY(-12px);
}

/* Icon Container */
.why-section .icon-wrapper {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	font-size: 28px;
	margin-bottom: 24px;
	transition: transform 0.4s ease;
}

.why-section .card:hover .icon-wrapper {
	transform: scale(1.1);
}

/* Color variants for icons */
.why-section .icon-blue {
	background: #ebf8ff;
	color: #2563eb;
}
.why-section .icon-green {
	background: #f0fdf4;
	color: #16a34a;
}
.why-section .icon-purple {
	background: #f3e8ff;
	color: #9333ea;
}
.why-section .icon-orange {
	background: #fff7ed;
	color: #ea580c;
}
.why-section .icon-cyan {
	background: #ecfeff;
	color: #0891b2;
}
.why-section .icon-pink {
	background: #fdf2f8;
	color: #c026d3;
}
.why-section .icon-indigo {
	background: #eef2ff;
	color: #4f46e5;
}
.why-section .icon-gray {
	background: #f3f4f6;
	color: #374151;
}

/* Card Typography */
.why-section .card-title {
	font-size: 20px;
	font-weight: 600;
	color: #111827;
	margin-bottom: 12px;
}

.why-section .card-text {
	color: #4b5563;
	line-height: 1.6;
}

.why-section .card-text ul {
	list-style: disc inside;
	margin-top: 8px;
}

.card-text li {
	margin-bottom: 4px;
}
