.tp-why {
	--tp-primary: #61ce70;
	--tp-primary-dark: #3fa64d;
	--tp-primary-soft: rgba(97, 206, 112, 0.12);
	--tp-primary-border: rgba(97, 206, 112, 0.35);
	max-width: 1200px;
	margin: 0 auto;
	padding: 48px 16px;
}

.tp-why-header {
	text-align: center;
	margin-bottom: 32px;
}

.tp-why-heading {
	margin: 0;
	font-size: 2rem;
	font-weight: 700;
}

.tp-why-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
}

.tp-why-card {
	flex: 0 0 calc((100% - 48px) / 3);
	max-width: calc((100% - 48px) / 3);
	padding: 28px 24px;
	border: 1px solid var(--tp-primary-border);
	border-radius: 16px;
	background: #ffffff;
	transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
	box-sizing: border-box;
}

.tp-why-card:hover {
	border-color: var(--tp-primary);
	box-shadow: 0 12px 28px rgba(97, 206, 112, 0.18);
	transform: translateY(-3px);
}

.tp-why-icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--tp-primary);
	color: #ffffff;
	margin-bottom: 16px;
}

.tp-why-icon svg {
	width: 28px;
	height: 28px;
}

.tp-why-title {
	margin: 0 0 8px;
	font-size: 1.1rem;
	line-height: 1.35;
}

.tp-why-text {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.6;
	opacity: 0.75;
}

@media (max-width: 960px) {
	.tp-why-card {
		flex-basis: calc((100% - 24px) / 2);
		max-width: calc((100% - 24px) / 2);
	}
}

@media (max-width: 640px) {
	.tp-why-card {
		flex-basis: 100%;
		max-width: 100%;
	}

	.tp-why-heading {
		font-size: 1.5rem;
	}
}
