
.pfsc-section {
	--pfsc-navy: #071326;
	--pfsc-text: #59677d;
	--pfsc-orange: #ff6b0b;
	--pfsc-border: #e1e6ec;
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	padding: 0 20px;
	background: transparent;
	font-family: inherit;
}

.pfsc-section *,
.pfsc-section *::before,
.pfsc-section *::after {
	box-sizing: border-box;
}

.pfsc-inner {
	width: min(100%, 1200px);
	margin: 0 auto;
}


.pfsc-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.pfsc-card {
	display: flex;
	min-height: 240px;
	flex-direction: column;
	padding: 22px;
	border: 1px solid var(--pfsc-border);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(7,19,38,.05);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pfsc-card:hover {
	transform: translateY(-3px);
	border-color: rgba(255,107,11,.45);
	box-shadow: 0 14px 34px rgba(7,19,38,.09);
}

.pfsc-card-heading {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	align-items: center;
	gap: 18px;
}

.pfsc-icon {
	display: grid;
	width: 72px;
	height: 72px;
	place-items: center;
	border-radius: 15px;
	background: var(--pfsc-navy);
	color: var(--pfsc-orange);
}

.pfsc-title {
	margin: 0;
	color: var(--pfsc-navy);
	font-size: 20px;
	font-weight: 800;
	letter-spacing: -.02em;
	line-height: 1.25;
}

.pfsc-accent {
	display: block;
	width: 26px;
	height: 3px;
	margin: 16px 0 16px 90px;
	border-radius: 999px;
	background: var(--pfsc-orange);
}

.pfsc-description {
	min-height: 2.8em;
	margin: 0 0 22px;
	color: var(--pfsc-text);
	font-size: 14px;
	line-height: 1.5;
}

.pfsc-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-width: 135px;
	min-height: 40px;
	margin-top: auto;
	padding: 9px 16px;
	border: 2px solid var(--pfsc-orange);
	border-radius: 8px;
	background: var(--pfsc-orange);
	color: #fff !important;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none !important;
	transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.pfsc-button:hover,
.pfsc-button:focus {
	background: #fff;
	color: var(--pfsc-orange) !important;
	transform: translateY(-1px);
}

@media (max-width: 960px) {
	.pfsc-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.pfsc-section {
		padding: 0 18px;
	}

	.pfsc-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}


	.pfsc-card {
		min-height: 0;
		padding: 22px;
	}

	.pfsc-card-heading {
		grid-template-columns: 60px minmax(0, 1fr);
		gap: 18px;
	}

	.pfsc-icon {
		width: 60px;
		height: 60px;
	}

	.pfsc-icon svg {
		width: 26px;
		height: 26px;
	}

	.pfsc-accent {
		margin-left: 76px;
	}

	.pfsc-button {
		width: 100%;
	}
}
