/* ===== RESET TYPOGRAFII W SEKCJACH LANDINGU ===== */
.ppro-hero h1,
.ppro-hero h2,
.ppro-hero h3,
.ppro-hero h4,
.ppro-hero h5,
.ppro-hero h6,
.ppro-hero label,
.ppro-hero p,
.ppro-benefits h1,
.ppro-benefits h2,
.ppro-benefits h3,
.ppro-benefits h4,
.ppro-benefits h5,
.ppro-benefits h6,
.ppro-benefits label,
.ppro-benefits p {
	margin: 0;
	padding: 0;
	line-height: 1.2;
	font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont,
		"Segoe UI", sans-serif !important;
	font-weight: inherit;
}

/* ===== SEKCJA BENEFITÓW – TŁO / CONTAINER ===== */

.ppro-benefits {
	background-color: #ffffff;
	color: #0f172a;
	font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont,
		"Segoe UI", sans-serif !important;
}

.ppro-benefits-container {
	max-width: 1160px; /* max-w-6xl */
	margin: 0 auto;
	padding: 4rem 1rem 4.5rem; /* py-16 px-4 */
}

@media (min-width: 768px) {
	.ppro-benefits-container {
		padding-left: 1.5rem; /* md:px-6 */
		padding-right: 1.5rem;
		padding-top: 4.5rem;
		padding-bottom: 5rem;
	}
}

/* ===== HEADER SEKCJI ===== */

.ppro-benefits-header {
	text-align: center;
	max-width: 40rem;
	margin: 0 auto 3rem;
}

.ppro-benefits-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.25rem 0.9rem;
	border-radius: 9999px;
	background-color: #ecfdf3;
	font-size: 1rem;
	font-weight: 500;
	color: #047857;
	margin-bottom: 1.1rem;
}

.ppro-benefits-badge-dot {
	width: 0.375rem;
	height: 0.375rem;
	border-radius: 9999px;
	background-color: #16a34a;
}

/* tytuł sekcji – zgodnie z Twoim wymaganiem klasa ppro-benefits-title */
.ppro-benefits-title {
	font-size: 1.9rem;
	letter-spacing: -0.03em;
	font-weight: 600;
	color: #020617;
	margin-bottom: 0.75rem;
	font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont,
		"Segoe UI", sans-serif !important;
	margin-top: 1.5rem !important;
	margin-bottom: 1.5rem !important;
}

@media (min-width: 768px) {
	.ppro-benefits-title {
		font-size: 2.25rem;
	}
}

.ppro-benefits-subtitle {
	font-size: 1rem;
	line-height: 1.7;
	color: #6b7280;
}

@media (min-width: 768px) {
	.ppro-benefits-subtitle {
		font-size: 1.1rem;
	}
}


/* ===== GRID BENEFITÓW ===== */

.ppro-benefits-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1.25rem;
	margin-bottom: 3rem;
}

@media (min-width: 768px) {
	.ppro-benefits-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.ppro-benefits-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* karta */

.ppro-benefit-card {
	position: relative;
	border-radius: 1.25rem; /* rounded-2xl */
	border: 1px solid #e5e7eb;
	background-color: #ffffff;
	padding: 1.35rem 1.4rem 1.45rem;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
	transition: box-shadow 0.15s ease, transform 0.15s ease,
		border-color 0.15s ease, background-color 0.15s ease;
	display: flex;
	flex-direction: column;
}

.ppro-benefit-card:hover {
	transform: translateY(-2px);
	border-color: #cbd5f5;
	box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

/* ikona w kółku */

.ppro-benefit-icon-wrapper {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 9999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.ppro-benefit-icon-wrapper--blue {
	background-color: rgba(59, 130, 246, 0.08);
	border: 1px solid rgba(59, 130, 246, 0.18);
	color: #2563eb;
}

/* Ikona Font Awesome w środku */

.ppro-benefit-icon {
	font-size: 1.1rem;
	line-height: 1;
}

/* tytuł i tekst w karcie */

.ppro-benefit-card-title {
	font-size: 1.2rem;
	font-weight: 600;
	color: #020617 !important;
	margin-bottom: 0.4rem !important;
}

.ppro-benefit-card-text {
	font-size: 1.05rem;
	line-height: 1.7;
	color: #6b7280 !important;
}


/* ===== DÓL SEKCJI – CTA + CASE STUDY ===== */

.ppro-benefits-bottom {
	margin-top: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

/* gradientowy panel CTA */

.ppro-benefits-bottom-gradient {
	border-radius: 1.4rem;
	background-image: linear-gradient(
		to right,
		#eff6ff 0%,
		#ecfdf3 50%,
		#e0f2fe 100%
	);
	padding: 1.25rem 1.25rem 1.3rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: flex-start;
}

@media (min-width: 768px) {
	.ppro-benefits-bottom-gradient {
		padding: 1.5rem 1.75rem;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

.ppro-benefits-bottom-text {
	max-width: 34rem;
}

.ppro-benefits-bottom-title {
	font-size: 1.05rem;
	font-weight: 600;
	color: #022c22;
	margin-bottom: 0.25rem;
}
.ppro-benefits-bottom-desc {
	font-size: 0.95rem;
	line-height: 1.7;
	color: #4b5563;
}


/* przycisk kalkulatora */

.ppro-benefits-bottom-cta {
	display: flex;
	align-items: center;
}

.ppro-benefits-bottom-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	padding: 0.6rem 1.4rem;
	border-radius: 9999px;
	border: none;
	background-color: #059669;
	color: #ffffff;
	font-size: 0.85rem;
	font-weight: 600;
	box-shadow: 0 16px 40px rgba(16, 185, 129, 0.45);
	cursor: pointer;
	transition: background-color 0.15s ease, box-shadow 0.15s ease,
		transform 0.05s ease;
	white-space: nowrap;
}

.ppro-benefits-bottom-btn:hover {
	background-color: #047857;
	box-shadow: 0 20px 50px rgba(16, 185, 129, 0.55);
	transform: translateY(-1px);
}

.ppro-benefits-bottom-btn-icon {
	width: 1.1rem;
	height: 1.1rem;
	border-radius: 9999px;
	background-color: #ecfdf3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* ikona FA w przycisku kalkulatora */
.ppro-benefits-bottom-btn-icon i {
	font-size: 0.8rem;
	color: #059669;
}

/* karta case study */

.ppro-benefits-story {
	border-radius: 1.25rem;
	border: 1px solid #e5e7eb;
	background-color: #ffffff;
	padding: 1.15rem 1.25rem 1.25rem;
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

.ppro-benefits-story-text {
	font-size: 1rem;
	line-height: 1.8;
	color: #111827;
	margin-bottom: 0.75rem;
}


.ppro-benefits-story-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	font-size: 0.75rem;
	color: #6b7280;
}

.ppro-benefits-story-name {
	font-weight: 600;
	color: #111827;
}

.ppro-benefits-story-role {
	font-style: italic;
}
