.section-social-proof {
	padding: 4.5rem 0 4rem;
	background: #f1f2f4;
}

.section-social-proof__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
	gap: 1.15rem;
	align-items: stretch;
}

.section-social-proof__stack {
	display: grid;
	grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
	gap: 1.15rem;
}

.section-social-proof__panel {
	border-radius: 0.9rem;
	border: 1px solid rgba(241, 242, 244, 0.12);
	box-shadow: 0 1.25rem 3rem rgba(5, 12, 24, 0.18);
}

.section-social-proof__panel--primary {
	min-height: 33rem;
	background: #efefef;
	padding: 1.7rem 1.7rem 1.55rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

.section-social-proof__panel--secondary {
	min-height: 15.9rem;
}

.section-social-proof__stack .section-social-proof__panel--secondary:first-child {
	background: #a6844a;
	border-color: rgba(166, 132, 74, 0.45);
}

.section-social-proof__stack .section-social-proof__panel--secondary:last-child {
	background: #172033;
	border-color: rgba(241, 242, 244, 0.08);
}

.section-social-proof__panel--stat {
	padding: 1.35rem 1.35rem 1.25rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.section-social-proof__quote-icon {
	width: 3.25rem;
	height: 3.25rem;
	background-color: #1c1c1c;
	mask: url("../../../icons/quote.svg") center / contain no-repeat;
	-webkit-mask: url("../../../icons/quote.svg") center / contain no-repeat;
	align-self: flex-start;
}

.section-social-proof__review {
	margin: 1.4rem 0 2rem;
	max-width: 36rem;
	font-family: var(--ldg-font-body);
	font-size: clamp(1.1rem, 1.6vw, 1.5rem);
	line-height: 1.65;
	color: #1c1c1c;
	text-align: left;
}

.section-social-proof__person {
	display: flex;
	align-items: center;
	gap: 0.95rem;
	width: 100%;
	max-width: 36rem;
}

.section-social-proof__person-image {
	width: 3.55rem;
	height: 3.55rem;
	border-radius: 999px;
	object-fit: cover;
	flex: 0 0 auto;
}

.section-social-proof__person-meta {
	display: flex;
	flex-direction: column;
	gap: 0.18rem;
}

.section-social-proof__person-name {
	margin: 0;
	font-family: var(--ldg-font-display);
	font-size: 1rem;
	line-height: 1.2;
	color: #1c1c1c;
}

.section-social-proof__person-role {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	color: rgba(28, 28, 28, 0.62);
	text-transform: uppercase;
}

.section-social-proof__trend-icon {
	width: 2.3rem;
	height: 2.3rem;
	background-color: #f1f2f4;
	mask: url("../../../icons/trend.svg") center / contain no-repeat;
	-webkit-mask: url("../../../icons/trend.svg") center / contain no-repeat;
}

.section-social-proof__stat-copy {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.section-social-proof__stat-value {
	margin: 0;
	font-family: var(--ldg-font-display);
	font-size: clamp(2.6rem, 4vw, 4.2rem);
	line-height: 0.92;
	color: #f1f2f4;
}

.section-social-proof__stat-label {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	line-height: 1.5;
	color: rgba(241, 242, 244, 0.86);
	text-transform: uppercase;
	white-space: nowrap;
}

.section-social-proof__panel--featured {
	padding: 1.35rem 1.35rem 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.section-social-proof__featured-inner {
	width: 100%;
	max-width: 18rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.section-social-proof__featured-title {
	margin: 0;
	font-family: var(--ldg-font-display);
	font-size: 0.84rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	color: #f1f2f4;
	text-transform: uppercase;
}

.section-social-proof__featured-line {
	width: 5.25rem;
	height: 1px;
	margin: 0.9rem 0 1.1rem;
	background: rgba(241, 242, 244, 0.54);
}

.section-social-proof__featured-logos {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem 1.2rem;
}

.section-social-proof__featured-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 8.25rem;
}

.section-social-proof__featured-logo a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.section-social-proof__featured-logo img {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: 2.35rem;
	object-fit: contain;
}

.section-social-proof__featured-empty {
	font-size: 0.84rem;
	line-height: 1.5;
	color: rgba(241, 242, 244, 0.7);
}

@media (max-width: 780px) {
	.section-social-proof {
		padding: 3rem 0 2.7rem;
	}

	.section-social-proof__grid {
		grid-template-columns: 1fr;
		gap: 0.95rem;
	}

	.section-social-proof__stack {
		grid-template-rows: none;
		gap: 0.95rem;
	}

	.section-social-proof__panel {
		border-radius: 0.75rem;
	}

	.section-social-proof__panel--primary {
		min-height: auto;
		padding: 1.3rem 1.15rem 1.15rem;
		align-items: stretch;
	}

	.section-social-proof__panel--secondary {
		min-height: 12.5rem;
	}

	.section-social-proof__panel--stat,
	.section-social-proof__panel--featured {
		padding: 1.1rem 1rem 1rem;
	}

	.section-social-proof__quote-icon {
		width: 2.5rem;
		height: 2.5rem;
	}

	.section-social-proof__review {
		margin: 1rem 0 1.4rem;
		max-width: none;
		font-size: 1rem;
		line-height: 1.6;
	}

	.section-social-proof__person {
		max-width: none;
		gap: 0.8rem;
	}

	.section-social-proof__person-image {
		width: 3rem;
		height: 3rem;
	}

	.section-social-proof__person-name {
		font-size: 0.95rem;
	}

	.section-social-proof__person-role {
		font-size: 0.64rem;
		letter-spacing: 0.14em;
	}

	.section-social-proof__trend-icon {
		width: 2rem;
		height: 2rem;
	}

	.section-social-proof__stat-value {
		font-size: clamp(2.15rem, 11vw, 3.2rem);
	}

	.section-social-proof__stat-label {
		font-size: 0.68rem;
		letter-spacing: 0.1em;
	}

	.section-social-proof__featured-inner {
		max-width: none;
	}

	.section-social-proof__featured-title {
		font-size: 0.76rem;
		letter-spacing: 0.16em;
	}

	.section-social-proof__featured-line {
		margin: 0.75rem 0 0.95rem;
	}

	.section-social-proof__featured-logos {
		gap: 0.85rem 1rem;
	}

	.section-social-proof__featured-logo {
		max-width: 7rem;
	}

	.section-social-proof__featured-logo img {
		max-height: 2rem;
	}
}
