.fab-cp,
.fab-cp * {
	box-sizing: border-box;
}

.fab-cp {
	width: 100%;
	padding: 80px 5%;
	overflow: hidden;
	background: #ffffff;
	font-family: var(--fab-site-font-family, "Poppins", Arial, sans-serif);
}

.fab-cp__inner {
	display: flex;
	flex-direction: column;
	gap: 34px;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
}

.fab-cp__intro {
	text-align: center;
}

.fab-cp__eyebrow,
.fab-cp__mini-heading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	color: #65328F;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.fab-cp__eyebrow::before,
.fab-cp__eyebrow::after,
.fab-cp__mini-heading::before,
.fab-cp__mini-heading::after {
	display: block;
	width: 44px;
	height: 1px;
	background: #C89412;
	content: "";
}

.fab-cp__heading {
	max-width: 1000px;
	margin: 14px auto 0;
	color: #101828;
	font-family: inherit;
	font-size: 35px;
	font-weight: 300;
	line-height: 1.22;
	letter-spacing: -.025em;
	text-transform: none;
}

.fab-cp__description {
	max-width: 800px;
	margin: 16px auto 0;
	color: #667085;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.7;
}

.fab-cp__description p {
	margin: 0;
}

.fab-cp__partners-grid,
.fab-cp__clients-grid {
	display: grid;
	gap: 18px;
	margin-top: 20px;
}

.fab-cp__partners-grid {
	grid-template-columns: repeat(7, minmax(0, 1fr));
}

.fab-cp__clients-grid {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.fab-cp__partner-card,
.fab-cp__client-card {
	position: relative;
	min-width: 0;
	overflow: hidden;
	border: 1px solid #ECECF2;
	border-radius: 14px;
	background: #ffffff;
	box-shadow: 0 10px 30px rgba(16, 24, 40, .055);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease;
}

.fab-cp__partner-card {
	min-height: 130px;
	padding: 20px 16px 16px;
}

.fab-cp__client-card {
	min-height: 150px;
	padding: 20px 16px;
}

.fab-cp__partner-card:hover,
.fab-cp__client-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 38px rgba(16, 24, 40, .085);
}

.fab-cp__card-link {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.fab-cp__partner-logo,
.fab-cp__client-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 auto;
	min-height: 58px;
}

.fab-cp__partner-logo img,
.fab-cp__client-logo img {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: 58px;
	height: auto;
	object-fit: contain;
}

.fab-cp__logo-placeholder {
	color: #667085;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.25;
	text-align: center;
}

.fab-cp__partner-name,
.fab-cp__client-name {
	margin-top: 14px;
	color: #344054;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.4;
	text-align: center;
}

.fab-cp__client-name {
	color: #101828;
	font-weight: 500;
}

.fab-cp__client-location {
	margin-top: 5px;
	color: #667085;
	font-size: 12px;
	font-weight: 300;
	line-height: 1.4;
	text-align: center;
}

.fab-cp__proof-panel {
	display: grid;
	grid-template-columns: minmax(230px, .8fr) minmax(0, 2.2fr);
	align-items: stretch;
	border: 1px solid #ECECF2;
	border-radius: 16px;
	background: #ffffff;
	box-shadow: 0 12px 34px rgba(16, 24, 40, .045);
}

.fab-cp__proof {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 28px 30px;
	border-right: 1px solid #ECECF2;
}

.fab-cp__proof-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 66px;
	width: 66px;
	height: 66px;
	border-radius: 999px;
	background: #F6F2FA;
	color: #65328F;
	font-size: 36px;
	line-height: 1;
}

.fab-cp__proof-icon svg {
	display: block;
	width: 36px;
	height: 36px;
	fill: currentColor;
}

.fab-cp__proof-label {
	color: #65328F;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.fab-cp__proof-count {
	margin-top: 4px;
	color: #65328F;
	font-size: 48px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: -.04em;
}

.fab-cp__proof-text {
	margin-top: 7px;
	color: #667085;
	font-size: 13px;
	font-weight: 300;
	line-height: 1.45;
}

.fab-cp__features {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 24px 30px;
}

.fab-cp__features-heading {
	margin-bottom: 16px;
	color: #65328F;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .06em;
	text-align: center;
	text-transform: uppercase;
}

.fab-cp__features-list {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 24px;
}

.fab-cp__feature {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	min-width: 0;
	text-align: center;
}

.fab-cp__feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 999px;
	background: #F6F2FA;
	color: #65328F;
	font-size: 22px;
	line-height: 1;
}

.fab-cp__feature-icon svg {
	display: block;
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.fab-cp__feature-label {
	margin-top: 8px;
	color: #475467;
	font-size: 12px;
	font-weight: 300;
	line-height: 1.35;
}

.fab-cp__trust {
	display: flex;
	align-items: center;
	gap: 22px;
	padding: 24px 28px;
	border: 1px solid #ECECF2;
	border-radius: 14px;
	background: #ffffff;
	box-shadow: 0 8px 24px rgba(16, 24, 40, .035);
}

.fab-cp__trust-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 54px;
	width: 54px;
	height: 54px;
	border-radius: 999px;
	background: #F6F2FA;
	color: #65328F;
	font-size: 30px;
	line-height: 1;
}

.fab-cp__trust-icon svg {
	display: block;
	width: 30px;
	height: 30px;
	fill: currentColor;
}

.fab-cp__trust-heading {
	color: #101828;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.35;
}

.fab-cp__trust-text {
	margin-top: 4px;
	color: #667085;
	font-size: 13px;
	font-weight: 300;
	line-height: 1.55;
}

@media (max-width: 1024px) {
	.fab-cp {
		padding: 70px 5%;
	}

	.fab-cp__partners-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.fab-cp__clients-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.fab-cp__proof-panel {
		grid-template-columns: 1fr;
	}

	.fab-cp__proof {
		border-right: 0;
		border-bottom: 1px solid #ECECF2;
	}

	.fab-cp__features-list {
		grid-template-columns: repeat(5, minmax(110px, 1fr));
		overflow-x: auto;
		padding-bottom: 4px;
	}
}

@media (max-width: 767px) {
	.fab-cp {
		padding: 54px 20px;
	}

	.fab-cp__eyebrow,
	.fab-cp__mini-heading {
		gap: 10px;
	}

	.fab-cp__eyebrow::before,
	.fab-cp__eyebrow::after,
	.fab-cp__mini-heading::before,
	.fab-cp__mini-heading::after {
		width: 24px;
	}

	.fab-cp__heading {
		font-size: 31px;
	}

	.fab-cp__partners-grid,
	.fab-cp__clients-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.fab-cp__partner-card,
	.fab-cp__client-card {
		min-height: 120px;
		padding: 16px 12px;
	}

	.fab-cp__proof {
		padding: 22px 18px;
	}

	.fab-cp__features {
		padding: 22px 18px;
	}

	.fab-cp__features-list {
		justify-content: flex-start;
		grid-template-columns: repeat(5, 104px);
		gap: 12px;
	}

	.fab-cp__trust {
		align-items: flex-start;
		padding: 20px;
	}

	.fab-cp__trust-icon {
		flex-basis: 46px;
		width: 46px;
		height: 46px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.fab-cp *,
	.fab-cp *::before,
	.fab-cp *::after {
		animation: none !important;
		transition: none !important;
		scroll-behavior: auto !important;
	}
}
