/* ============================================================
   Redesign core — shared primitives used across redesigned pages.
   Source of truth for the .vr-* button components. view-redesign.css
   still carries its own copy for the vehicle pages until they are
   switched over to this file.
   ============================================================ */

.vr-cta-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	box-sizing: border-box;
	width: 100%;
	padding: 16px 14px;
	border-radius: 12px;
	font-size: 18px;
	font-weight: 500;
	text-decoration: none;
	transition: 0.25s;
}

.vr-cta-btn i {
	font-size: 20px;
}

.vr-cta-call {
	background: var(--main_color);
	color: #fff;
	border: 2px solid var(--main_color);
}

.vr-cta-call:hover {
	background: #fff;
	color: var(--main_color);
}

/* ============================================================
   Trust band — dark credibility strip with outlined circle icons.
   ============================================================ */

.trust-band {
	float: left;
	width: 100%;
	background: #161616;
	padding: 36px 0;
}

.trust-band__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.trust-band__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 5px;
	padding: 8px 16px;
}

.trust-band__item + .trust-band__item {
	border-left: 1px solid #2e2e2e;
}

.trust-band__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border: 2px solid var(--main_color);
	border-radius: 50%;
	margin-bottom: 12px;
	flex-shrink: 0;
}

.trust-band__icon i {
	font-size: 24px;
	color: #fff;
}

.trust-band__title {
	color: #fff;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.3;
}

.trust-band__sub {
	color: #9a9a9a;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.35;
}

@media screen and (max-width: 599px) {
	.trust-band {
		padding: 28px 0;
	}

	.trust-band__item {
		padding: 4px 8px;
	}

	.trust-band__icon {
		width: 52px;
		height: 52px;
		margin-bottom: 8px;
	}

	.trust-band__icon i {
		font-size: 20px;
	}

	.trust-band__title {
		font-size: 14px;
	}

	.trust-band__sub {
		font-size: 12.5px;
	}
}

@media screen and (max-width: 359px) {
	.trust-band__grid {
		grid-template-columns: 1fr;
		row-gap: 18px;
	}

	.trust-band__item + .trust-band__item {
		border-left: none;
		border-top: 1px solid #2e2e2e;
		padding-top: 18px;
	}
}

/* ============================================================
   Section title — centered heading with red accent + underline.
   ============================================================ */

.section-title {
	text-align: center;
	color: #1a1a1a;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.35;
}

.section-title b {
	color: var(--main_color);
	font-weight: 600;
}

.section-title::after {
	content: "";
	display: block;
	width: 64px;
	height: 3px;
	background: var(--main_color);
	margin: 18px auto 0;
}

@media screen and (min-width: 960px) {
	.section-title {
		font-size: 32px;
	}
}

/* ============================================================
   Check list — red-check bullet list parsed from ✔ text lines.
   ============================================================ */

.xp-check-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: fit-content;
	margin: 24px auto;
	padding: 0;
	list-style: none;
	text-align: left;
}

.xp-check-item {
	display: flex;
	align-items: baseline;
	gap: 12px;
	color: #1a1a1a;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.5;
}

.xp-check-item i {
	color: var(--main_color);
	font-size: 14px;
	flex-shrink: 0;
}

/* ============================================================
   Stat row — figures with icon, red value and label.
   ============================================================ */

.stat-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 2px;
}

.stat-item > i {
	font-size: 30px;
	color: var(--main_color);
	margin-bottom: 12px;
}

.stat-value {
	color: var(--main_color);
	font-size: 28px;
	font-weight: 500;
	line-height: 1.2;
}

.stat-label {
	color: #1a1a1a;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
}

@media screen and (max-width: 599px) {
	.stat-item > i {
		font-size: 24px;
		margin-bottom: 8px;
	}

	.stat-value {
		font-size: 22px;
	}

	.stat-label {
		font-size: 12.5px;
	}
}

@media screen and (max-width: 359px) {
	.stat-row {
		grid-template-columns: 1fr;
		row-gap: 24px;
	}
}
