.home-page .intro {
	padding-bottom: 4rem;
}
.home-page .intro h1 {
	font-size: clamp(2rem, 4vw, 3.5rem);
}
.trusted-by {
	width: 100%;
	max-width: 480px;
	margin: 0 auto;
}
.trusted-by-header h2 {
	color: #4d3b80;
	font-size: 1.35rem;
	font-weight: 700;
	margin: 0 0 .5rem;
}
.trusted-by-header p {
	font-size: 1rem;
	margin: 0 0 1rem;
}
.trusted-by-slides {
	display: grid;
	overflow: hidden;
	border-radius: 18px;
	background: #20252a;
	box-shadow: 0 12px 32px rgb(0 0 0 / 12%);
}
.trusted-by-slide {
	grid-area: 1 / 1;
	position: relative;
	display: flex;
	align-items: flex-end;
	aspect-ratio: 4 / 5;
	opacity: 0;
	visibility: hidden;
	transition: opacity 350ms ease, visibility 350ms;
}
.trusted-by-slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}
.trusted-by-slide img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.trusted-by-caption {
	position: relative;
	width: 100%;
	padding: 5rem 1.5rem 1.5rem;
	color: #fff;
	background: linear-gradient(transparent, rgb(0 0 0 / 78%) 45%, rgb(0 0 0 / 90%));
}
.trusted-by-caption h3 {
	font-size: clamp(1.25rem, 2.2vw, 1.75rem);
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 .65rem;
}
.trusted-by-caption a {
	color: #fff;
	text-decoration: none;
}
.trusted-by-caption a:hover {
	text-decoration: underline;
}
.trusted-by-caption p {
	font-size: 1rem;
	line-height: 1.5;
	margin: 0;
}
.trusted-by-controls:not([hidden]) {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 1rem;
}
.trusted-by-controls button {
	display: grid;
	place-items: center;
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border: 1px solid #1e47eb;
	border-radius: 50%;
	background: #fff;
	color: #1e47eb;
	font-size: 1.5rem;
	cursor: pointer;
}
.trusted-by-controls button:hover {
	background: #1e47eb;
	color: #fff;
}
.trusted-by a:focus-visible, .trusted-by button:focus-visible {
	outline: 3px solid #eaa52b;
	outline-offset: 4px;
}
.trusted-by-status {
	margin: 0;
	font-size: .85rem;
	text-align: center;
}
@media (max-width: 991px) {
	.trusted-by { margin-top: 3rem; }
}
@media (prefers-reduced-motion: reduce) {
	.trusted-by-slide { transition: none; }
}
