:root {
	--h-brand: #1c69d4;
	--h-brand-deep: #1a1a1a;
	--h-accent: #1c69d4;
}

.hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 520px;
	overflow: hidden;
	background: var(--h-brand-deep);
	color: #fff;
}

.hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center center;
}

.hero__bg--desktop {
	background-image: url('../bmwsklep/img/hero-desktop.jpg');
}

.hero__bg--mobile {
	display: none;
	background-image: url('../bmwsklep/img/hero-mobile.jpg');
}

.hero__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(20, 20, 20, .92) 0%, rgba(20, 20, 20, .72) 42%, rgba(20, 20, 20, .15) 72%, rgba(20, 20, 20, 0) 100%);
}

/* align hero content with the header container (same 1320px width) */
.hero .container {
	max-width: 1320px;
}

.hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
}

.hero__box {
	max-width: 560px;
	text-align: left;
}

.hero__d {
	display: inline;
}

.hero__m {
	display: none;
}

.hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 16px;
	font-family: 'Saira Condensed', sans-serif;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1.4px;
	color: #bcd3f2;
}

.hero__seal {
	display: inline-grid;
	place-items: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--h-accent);
	color: #fff;
	font-size: 12px;
}

.hero__title {
	margin: 0 0 14px;
	font-family: 'Saira Condensed', sans-serif;
	font-weight: 800;
	font-size: 46px;
	line-height: 1.03;
	text-transform: uppercase;
	color: #fff;
}

.hero__sub {
	margin: 0 0 26px;
	font-family: 'Montserrat', sans-serif;
	font-size: 17px;
	line-height: 1.5;
	color: rgba(255, 255, 255, .9);
}

.hero__actions {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 22px;
}

.hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 26px;
	border-radius: 10px;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: .3px;
	white-space: nowrap;
	border: 2px solid transparent;
}

.hero__btn--red {
	background: var(--h-accent);
	border-color: var(--h-accent);
	color: #fff;
	box-shadow: 0 8px 20px -8px rgba(28, 105, 212, .7);
}

.hero__btn--red:hover,
.hero__btn--red:focus {
	filter: brightness(1.05);
	color: #fff;
}

.hero__btn--ghost {
	background: transparent;
	border-color: rgba(255, 255, 255, .6);
	color: #fff;
}

.hero__btn--ghost:hover,
.hero__btn--ghost:focus {
	border-color: #fff;
	color: #fff;
}

.hero__trust {
	margin: 0;
	font-size: 13.5px;
	font-weight: 500;
	letter-spacing: .2px;
	color: rgba(255, 255, 255, .88);
}

@media (max-width: 991px) {
	.hero {
		min-height: 460px;
		align-items: flex-end;
	}

	.hero__bg--desktop {
		display: none;
	}

	.hero__bg--mobile {
		display: block;
	}

	.hero__scrim {
		background: linear-gradient(0deg, rgba(20, 20, 20, .96) 14%, rgba(20, 20, 20, .5) 46%, rgba(20, 20, 20, .08) 78%);
	}

	.hero__box {
		max-width: none;
		padding-bottom: 26px;
	}

	.hero__d {
		display: none;
	}

	.hero__m {
		display: inline;
	}

	.hero__title {
		font-size: 30px;
	}

	.hero__sub {
		font-size: 15px;
		margin-bottom: 20px;
	}

	.hero__actions {
		flex-direction: column;
		align-items: stretch;
		margin-bottom: 0;
	}

	.hero__btn {
		width: 100%;
	}
}

/* trust bar */

.trust {
	background: #fff;
}

.trust__wrap {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.trust__item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 22px 18px;
	border-left: 1px solid #eef1f4;
}

.trust__item:first-child {
	border-left: 0;
}

.trust__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	border-radius: 8px;
	background: #e9f1fc;
	color: var(--h-brand);
}

.trust__text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.trust__title {
	font-family: 'Saira Condensed', sans-serif;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: .2px;
	color: var(--h-brand-deep);
}

.trust__desc {
	font-size: 12.5px;
	color: #6b7280;
}

@media (max-width: 899px) {
	.trust__wrap {
		grid-template-columns: repeat(2, 1fr);
	}

	.trust__item {
		flex-direction: column;
		text-align: center;
		gap: 8px;
		border: 0;
		padding: 18px 10px;
	}

	.trust__text {
		align-items: center;
	}
}
