/**
 * VV Child Theme â€” Home Page Styles
 *
 * Contains all homepage section styles.
 * Sections: Hero, Categories, Scroll Stack, Featured Products,
 *           Latest Products, Brands, Testimonials, CTA
 *
 * DO NOT add component or navigation styles here.
 * Those belong in components.css and navigation.css.
 */

/* =============================================================
   HOMEPAGE WRAPPER
   ============================================================= */

/* Override Salient's body overflow:hidden which breaks position:sticky */
body.home {
	overflow: visible !important;
}

.vv-homepage {
	display: block;
}

/* =============================================================
   SECTION BASE
   ============================================================= */

.vv-section {
	padding: 80px 0;
}

/* =============================================================
   HERO
   ============================================================= */

.vv-hero {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 600px;
	padding: 0;
	overflow: hidden;
	background-color: #000000;
}

/* Standalone Stats Section under Hero */
.vv-stats-section {
	background-color: #000000;
	padding: 30px 0;
	position: relative;
	z-index: 5;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	margin-bottom: 16px;
}

/* Background image */
.vv-hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-image: var(--hero-bg-desktop);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	z-index: 0;
	background-color: #000000;
}

@media (max-width: 768px) {
	.vv-hero__bg {
		background-image: var(--hero-bg-mobile, var(--hero-bg-desktop));
	}
}

/* Dark overlay */
.vv-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(255, 255, 255, 0.35) 0%,
		rgba(255, 255, 255, 0.1) 40%,
		rgba(0, 0, 0, 0.3) 100%
	);
	z-index: 1;
}

/* Hero content area (positioned at bottom of 100vh hero) */
.vv-hero__inner {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	height: auto;
	padding: 0 40px 40px 40px;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	box-sizing: border-box;
	pointer-events: none;
}

.vv-hero__inner > * {
	pointer-events: auto;
}

/* Hero Content (Centered at the Top) */
.vv-hero__content {
	position: absolute;
	top: clamp(100px, 15vh, 160px);
	left: 0;
	right: 0;
	margin: 0 auto !important;
	text-align: center;
	max-width: 850px;
	width: calc(100% - 48px);
	z-index: 10;
	pointer-events: auto;
}

.vv-hero__title {
	font-family: 'Manrope', sans-serif !important;
	font-size: clamp(2.2rem, 5.5vw, 4.5rem) !important;
	font-weight: 800 !important;
	line-height: 1.15 !important;
	letter-spacing: -0.03em !important;
	margin: 0 0 16px 0 !important;
	text-transform: uppercase !important;
	color: #000000 !important;
	text-shadow: none !important;
	text-align: center !important;
}

.vv-hero__title span,
.vv-hero__title-red {
	color: #ff001e !important;
}

.vv-hero__tagline {
	font-family: 'Manrope', sans-serif !important;
	font-size: clamp(0.95rem, 2vw, 1.25rem) !important;
	font-weight: 600 !important;
	line-height: 1.5 !important;
	color: #000000 !important;
	margin: 0 auto !important;
	max-width: 600px !important;
	text-shadow: none !important;
	text-align: center !important;
}

/* â”€â”€ Google Review Badge â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.vv-hero__review-badge {
	position: relative;
	margin-left: 0;
	z-index: 10;
}

.vv-review-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 6px;
	background: rgba(40, 40, 40, 0.72);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 20px 26px 18px;
	color: #ffffff;
	width: 150px;
}

.vv-review-card__icon {
	margin-bottom: 4px;
}

.vv-review-card__google-icon {
	width: 32px;
	height: 32px;
	display: block;
}

.vv-review-card__score {
	font-size: 1.7rem;
	font-weight: 700;
	line-height: 1;
	color: #ffffff;
	letter-spacing: -0.02em;
}

.vv-review-card__stars {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2px;
}

.vv-star {
	font-size: 1.05rem;
	line-height: 1;
}

.vv-star--full  { color: #f5c518; }
.vv-star--half  { color: #f5c518; opacity: 0.7; }
.vv-star--empty { color: rgba(255, 255, 255, 0.25); }

.vv-review-card__count {
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.6);
	font-weight: 400;
	letter-spacing: 0.01em;
	margin-top: 2px;
}

/* â”€â”€ Stats Bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.vv-hero__stats {
	position: relative;
	z-index: 2;
	background: #000000;
	padding: 28px 0;
	flex-shrink: 0;
}

.vv-stats-bar {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.vv-stats-bar__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 8px;
	padding: 0 32px;
	position: relative;
	flex: 1;
}

/* Divider between items */
.vv-stats-bar__item + .vv-stats-bar__item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 20%;
	height: 60%;
	width: 1px;
	background: #2A2A2A;
}

/* Number wrapper for positioning */
.vv-stats-bar__number-wrapper {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 2px;
}

/* Main number - large serif, white */
.vv-stats-bar__number {
	font-family: 'Manrope';
	font-size: 2.75rem;
	font-weight: 600;
	line-height: 1;
	color: #ffffff;
	letter-spacing: -0.02em;
}

/* Suffix (+ or %) - smaller, red, superscript-like */
.vv-stats-bar__suffix {
	font-family: 'Manrope';
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1;
	color: #e8001c;
	letter-spacing: -0.02em;
	position: relative;
	top: -8px;
}

/* Subtitle - small uppercase, greyish-blue */
.vv-stats-bar__label {
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #7A7F88;
	white-space: nowrap !important;
}

/* â”€â”€ Hero Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* ---- Hero CTA Button Group ---- */

.vv-hero__cta-group {
	position: relative;
	bottom: auto;
	right: auto;
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
}

.vv-hero__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	height: 42px;
	padding: 0 4px 0 18px;
	background: #FFFFFF;
	border-radius: 9999px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
	text-decoration: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vv-hero__cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.vv-hero__cta:hover .vv-hero__cta-icon {
	transform: translateX(4px);
}

.vv-hero__cta-text {
	font-family: 'Manrope';
	font-size: 18px;
	font-weight: 700;
	color: #000000;
	line-height: 1;
	white-space: nowrap;
}

.vv-hero__cta-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 68px;
	height: 36px;
	background: #e8001c;
	border-radius: 9999px;
	flex-shrink: 0;
	transition: transform 0.25s ease;
}

.vv-hero__cta-icon svg {
	width: 16px;
	height: 16px;
}

@media (max-width: 768px) {
	.vv-hero__inner {
		justify-content: center !important;
		padding: 0 20px 28px 20px !important;
	}

	.vv-hero__cta-group {
		align-items: center !important;
		justify-content: center !important;
		width: 100%;
		bottom: 20px;
		left: 0;
		right: 0;
		margin: 0 auto;
		text-align: center;
		gap: 8px;
	}

	.vv-hero__cta {
		height: 38px;
		padding: 0 3px 0 14px;
		gap: 8px;
	}

	.vv-hero__cta-text {
		font-size: 14px;
		font-weight: 700;
	}

	.vv-hero__cta-icon {
		width: 50px;
		height: 32px;
	}

	.vv-hero__cta-icon svg {
		width: 14px;
		height: 14px;
	}
}

@media (max-width: 480px) {
	.vv-hero__inner {
		justify-content: center !important;
		padding: 0 16px 20px 16px !important;
	}

	.vv-hero__cta-group {
		align-items: center !important;
		justify-content: center !important;
		width: 100%;
		bottom: 14px;
		left: 0;
		right: 0;
		margin: 0 auto;
		text-align: center;
		gap: 7px;
	}

	.vv-hero__cta {
		height: 34px;
		padding: 0 3px 0 12px;
		gap: 6px;
		max-width: 230px;
		width: auto;
		justify-content: center;
	}

	.vv-hero__cta-text {
		font-size: 12px;
		font-weight: 700;
	}

	.vv-hero__cta-icon {
		width: 42px;
		height: 28px;
	}

	.vv-hero__cta-icon svg {
		width: 12px;
		height: 12px;
	}
}

@media (max-width: 380px) {
	.vv-hero__cta {
		height: 31px;
		padding: 0 3px 0 10px;
		gap: 5px;
	}

	.vv-hero__cta-text {
		font-size: 11px;
	}

	.vv-hero__cta-icon {
		width: 36px;
		height: 25px;
	}

	.vv-hero__cta-icon svg {
		width: 11px;
		height: 11px;
	}
}

@media (max-width: 768px) {
	.vv-hero {
		height: auto;
		min-height: 100svh;
	}

	.vv-hero__inner {
		padding: 0 0 24px 0 !important;
	}

	.vv-hero__content {
		top: clamp(80px, 12vh, 120px) !important;
		width: calc(100% - 32px) !important;
	}

	.vv-hero__review-badge {
		margin-left: 16px;
	}

	.vv-review-card {
		padding: 12px 16px;
	}

	.vv-stats-bar {
		flex-wrap: wrap;
		gap: 0;
	}

	.vv-stats-bar__item {
		flex: 1 1 50%;
		padding: 16px 20px;
	}

	.vv-stats-bar__item:nth-child(2)::before,
	.vv-stats-bar__item:nth-child(3)::before {
		display: none;
	}

	.vv-stats-bar__item:nth-child(3)::before {
		display: block;
		left: 0;
		top: 20%;
		height: 60%;
		width: 1px;
		background: #2A2A2A;
	}

	.vv-stats-bar__number {
		font-size: 2rem;
	}

	.vv-stats-bar__suffix {
		font-size: 1.2rem;
		top: -6px;
	}

	.vv-stats-bar__label {
		font-size: 0.65rem;
		letter-spacing: 0.08em;
		white-space: nowrap !important;
	}
}

/* =============================================================
   SECTIONS NOT YET BUILT
   ============================================================= */

.vv-latest-products {
	display: none;
	padding: 0;
}

/* =============================================================
   TRUST BUILDER
   ============================================================= */

.vv-trust-builder {
	background: #f7f7f7;
	padding: 60px 0;
}

.vv-trust-card {
	background: #ffffff;
	border-radius: 24px;
	padding: 52px 60px;
	text-align: center;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
}

.vv-trust-heading {
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 800;
	color: #111111;
	line-height: 1.2;
	letter-spacing: -0.03em;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
}

/* Stacked overlapping avatar circles */
.vv-trust-avatars {
	display: inline-flex;
	align-items: center;
	gap: 0;
}

.vv-trust-avatars img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #ffffff;
	margin-left: -14px;
	transition: transform 0.25s ease;
	position: relative;
}

.vv-trust-avatars img:first-child {
	margin-left: 0;
}

.vv-trust-avatars img:hover {
	transform: scale(1.15) translateY(-4px);
	z-index: 10;
}

@media (max-width: 768px) {
	.vv-trust-card {
		padding: 36px 24px;
	}
	.vv-trust-heading {
		font-size: 1.8rem;
		flex-direction: column;
		gap: 16px;
	}
}




/* =============================================================
   FEATURED PRODUCTS
   ============================================================= */

.vv-featured-products {
	background: #ffffff;
	padding-top: 60px;
	padding-bottom: 80px;
}

/* â”€â”€ Section Title â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.vv-fp__title {
	font-family: 'Manrope';
	text-align: center;
	font-size: clamp(1.75rem, 3.5vw, 3rem);
	font-weight: 900;
	color: #1a1a1a;
	margin: 0 0 24px;
	letter-spacing: -0.01em;
	line-height: 1.15;
}

/* ── Carousel Header ─────────────────────────────────────────────────── */

.vv-fp__carousel-header {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 16px;
}

.vv-fp__see-all {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #ffffff;
	border-radius: 100px;
	padding: 10px 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	border: none;
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 700;
	color: #000000;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.vv-fp__see-all:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
	transform: translateY(-1px);
}

.vv-fp__see-all svg {
	flex-shrink: 0;
}

/* â”€â”€ Filter Tabs â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.vv-fp__tabs {
	display: flex;
	justify-content: center;
	margin: 0 auto 40px;
	background: #FFEBEB; /* Light Red */
	border-radius: 100px;
	width: fit-content;
	padding: 4px;
	gap: 0;
}

.vv-fp__tab {
	padding: 9px 28px;
	border-radius: 100px;
	border: none;
	background: transparent;
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
	color: #FF0000; /* Logo Red */
	transition: background 0.2s ease, color 0.2s ease;
	white-space: nowrap;
}

.vv-fp__tab--active {
	background: #FF0000; /* Logo Red */
	color: #ffffff;
	font-weight: 600;
}

.vv-fp__tab:not(.vv-fp__tab--active):hover {
	background: rgba(255, 0, 0, 0.1); /* Light Red */
}

/* â”€â”€ Carousel Wrapper â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.vv-fp__carousel-wrapper {
	position: relative;
	margin: 0 -4px;
}

/* â”€â”€ Carousel Track (scroll-snap) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.vv-fp__track {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding: 16px 4px 24px;
	align-items: stretch;
}

.vv-fp__track::-webkit-scrollbar {
	display: none;
}

/* Card sizing inside track â€” 4 per row desktop */
.vv-fp__track .vv-product-card {
	scroll-snap-align: start;
	flex: 0 0 calc(25% - 14px); /* (100% âˆ’ 3Ã—18px) Ã· 4 = 25% âˆ’ 13.5px â‰ˆ 14px */
	min-width: 200px;
}

/* â”€â”€ Arrows â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.vv-fp__arrow {
	position: absolute;
	z-index: 10;
	top: 124px; /* Centered relative to the 4/3 aspect-ratio image instead of 50% of total card height */
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #222222;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
	padding: 0;
}

.vv-fp__arrow:hover {
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
	background: #ffffff;
	color: #e8001c;
}

.vv-fp__arrow--prev { left: 8px; }
.vv-fp__arrow--next { right: 8px; }

/* â”€â”€ View All CTA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.vv-fp__cta {
	text-align: center;
	margin-top: 40px;
}

.vv-fp__view-all {
	display: inline-block;
	padding: 11px 44px;
	border: 1.5px solid #FF0000;
	border-radius: 6px;
	color: #FF0000;
	font-size: 0.9rem;
	font-weight: 500;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
	letter-spacing: 0.01em;
}

.vv-fp__view-all:hover {
	background: #FF0000;
	color: #ffffff;
}

.vv-fp__empty {
	color: #888;
	font-size: 0.9rem;
	padding: 20px;
}

/* â”€â”€ Featured Products Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

@media (max-width: 1100px) {
	.vv-fp__track .vv-product-card {
		flex: 0 0 calc(33.333% - 13px);
	}
}

@media (max-width: 768px) {
	.vv-featured-products {
		padding-top: 40px;
		padding-bottom: 50px;
	}

	.vv-featured-products > div,
	.vv-featured-products .vv-container {
		display: flex !important;
		flex-direction: column !important;
	}

	.vv-fp__title {
		font-size: 1.35rem;
		margin: 0 0 16px;
		order: 1 !important;
	}

	.vv-fp__tabs {
		width: 100%;
		margin-bottom: 20px;
		order: 2 !important;
	}

	.vv-fp__carousel-wrapper {
		order: 3 !important;
	}

	.vv-fp__carousel-header {
		order: 4 !important;
		display: flex !important;
		justify-content: center !important;
		margin-top: 20px !important;
		margin-bottom: 0 !important;
		width: 100% !important;
	}

	.vv-fp__see-all {
		padding: 11px 26px;
		font-size: 0.88rem;
		box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
	}

	.vv-fp__arrow {
		display: none !important;
	}

	.vv-fp__track {
		display: none !important;
		gap: 14px !important;
		overflow-x: auto !important;
		scroll-snap-type: x mandatory !important;
		-webkit-overflow-scrolling: touch !important;
		scrollbar-width: none !important;
		padding: 12px 16px 24px !important;
		margin: 0 -16px !important;
		width: calc(100% + 32px) !important;
	}

	.vv-fp__track.vv-fp__track--active {
		display: flex !important;
	}

	.vv-fp__track::-webkit-scrollbar {
		display: none !important;
	}

	.vv-fp__track .vv-product-card {
		scroll-snap-align: start !important;
		flex: 0 0 calc(85% - 12px) !important;
		max-width: calc(85% - 12px) !important;
		box-sizing: border-box !important;
	}

	.vv-fp__tabs {
		width: 100%;
		margin-bottom: 20px;
	}

	.vv-fp__tab {
		flex: 1;
		text-align: center;
		padding: 8px 12px;
		font-size: 0.8rem;
	}
}

/* =============================================================
   BRANDS WE DEAL IN
   ============================================================= */

/* Hide empty sections to prevent excessive whitespace */
.vv-latest-products:empty,
.vv-section:empty {
	display: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.vv-brands {
	background: #ffffff;
	padding: 40px 0;
	border-bottom: 1px solid #eaeaea;
	overflow: hidden;
}

.vv-brands__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.vv-brands__title {
	text-align: center;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: #999999;
	margin-bottom: 24px;
	text-transform: uppercase;
	font-family: 'Manrope';
}

.vv-brands__carousel {
	width: 100%;
	overflow: hidden;
	position: relative;
	mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
	-webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.vv-brands__track {
	display: flex;
	width: max-content;
	will-change: transform;
	animation: vv-marquee 25s linear infinite;
}

/* Pause animation on hover */
.vv-brands__carousel:hover .vv-brands__track {
	animation-play-state: paused;
}

.vv-brands__group {
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: 60px;
	padding-right: 60px; /* match the gap for seamless transition */
}

.vv-brand-item {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	padding: 0 16px;
	cursor: pointer;
	user-select: none;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vv-brand-logo-img {
	height: 42px;
	width: auto;
	max-width: 110px;
	object-fit: contain;
	filter: grayscale(100%) opacity(0.6);
	transition: filter 0.25s ease, transform 0.25s ease;
}

.vv-brands__carousel:hover .vv-brand-item .vv-brand-logo-img {
	filter: grayscale(100%) opacity(0.25);
}

.vv-brands__carousel:hover .vv-brand-item:hover .vv-brand-logo-img {
	filter: grayscale(0%) opacity(1);
	transform: scale(1.15);
}

/* Fade out all items when carousel is hovered, except the one actually hovered */
.vv-brands__carousel:hover .vv-brand-item {
	opacity: 0.3;
	color: #d0d0d0;
}

.vv-brands__carousel:hover .vv-brand-item:hover {
	opacity: 1;
	transform: scale(1.08);
}

/* Font stylings and colors for each brand */
.vv-brand-mercedes {
	font-family: 'Manrope';
	font-weight: 400;
	letter-spacing: 0.12em;
}
.vv-brands__carousel:hover .vv-brand-mercedes:hover {
	color: #000000;
}

.vv-brand-bmw {
	font-family: 'Manrope';
	font-weight: 800;
	letter-spacing: 0.04em;
}
.vv-brands__carousel:hover .vv-brand-bmw:hover {
	color: #1C69D4;
}

.vv-brand-audi {
	font-family: 'Manrope';
	font-weight: 700;
	letter-spacing: 0.08em;
}
.vv-brands__carousel:hover .vv-brand-audi:hover {
	color: #E4002B;
}

.vv-brand-porsche {
	font-family: 'Manrope';
	font-weight: 800;
	letter-spacing: 0.35em;
	font-size: 1.35rem;
}
.vv-brands__carousel:hover .vv-brand-porsche:hover {
	color: #b39a59;
}

.vv-brand-landrover {
	font-family: 'Manrope';
	font-weight: 700;
	letter-spacing: 0.08em;
}
.vv-brands__carousel:hover .vv-brand-landrover:hover {
	color: #0F4E36;
}

.vv-brand-lexus {
	font-family: 'Manrope';
	font-weight: 400;
	letter-spacing: 0.22em;
}
.vv-brands__carousel:hover .vv-brand-lexus:hover {
	color: #8C6F3D;
}

.vv-brand-volvo {
	font-family: 'Manrope';
	font-weight: 800;
	letter-spacing: 0.2em;
}
.vv-brands__carousel:hover .vv-brand-volvo:hover {
	color: #002C5F;
}

/* Keyframe for seamless scroll */
@keyframes vv-marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* =============================================================
   EXPLORE BY BODY TYPE (Categories)
   ============================================================= */

.vv-categories {
	background: #ffffff;
	padding: 80px 0;
	border-bottom: 1px solid #eaeaea;
}

.vv-categories__title {
	text-align: center;
	font-size: 1.875rem;
	font-weight: 700;
	color: #1c0e38;
	margin: 0 0 35px;
	letter-spacing: -0.02em;
	font-family: 'Manrope';
}

.vv-categories__tabs-wrapper {
	display: flex;
	justify-content: center;
	margin-bottom: 50px;
}

.vv-categories__tabs {
	display: flex;
	background: #f5f5f7;
	border: 1px solid #eaeaea;
	padding: 6px;
	border-radius: 18px;
	gap: 4px;
	max-width: 100%;
	overflow-x: auto;
	scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.vv-categories__tabs::-webkit-scrollbar {
	display: none; /* Hide scrollbar for Chrome/Safari */
}

.vv-categories__tab {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	border-radius: 14px !important;
	border: none;
	background: transparent;
	color: #FF0000;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	min-width: 90px;
	flex: 0 0 auto !important;
	white-space: nowrap !important;
	box-sizing: border-box;
}

.vv-categories__tab span {
	font-size: 0.75rem;
	font-weight: 700;
	margin-top: 6px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	white-space: nowrap !important;
}

.vv-categories__tab-icon {
	width: 70px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FF0000;
	transition: transform 0.3s ease;
}

.vv-categories__tab-icon svg {
	width: 100%;
	height: 100%;
}

/* Active tab style */
.vv-categories__tab.active {
	background: #FF0000 !important;
	color: #ffffff !important;
	border-radius: 14px !important;
	box-shadow: 0 4px 14px rgba(255, 0, 0, 0.25);
}

.vv-categories__tab.active .vv-categories__tab-icon {
	color: #ffffff;
	transform: scale(1.05);
}

/* CSS filter converts the red SVG fill to white on active tab.
   brightness(0) turns everything black, invert(1) flips it to white. */
.vv-categories__tab.active .vv-categories__tab-icon svg {
	filter: brightness(0) invert(1);
}

/* Grids */
.vv-categories__grids-wrapper {
	position: relative;
	min-height: 250px;
}

.vv-categories__grid {
	display: none;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	width: 100%;
}

.vv-categories__grid.active {
	display: grid;
	animation: vv-fade-in 0.4s ease forwards;
}

/* Category Cards */
.vv-category-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 0; /* Remove padding to let image fill full width */
	display: flex;
	flex-direction: column;
	text-decoration: none !important;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
	border: 1px solid rgba(0, 0, 0, 0.03);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	overflow: hidden; /* Prevent image overflow from breaking rounded corners */
}

.vv-category-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(123, 63, 212, 0.08);
	border-color: rgba(123, 63, 212, 0.15);
}

.vv-category-card__image-wrap {
	width: 100%;
	height: 180px; /* Taller, more modern presentation */
	display: block;
	overflow: hidden;
	background: #f5f5f5;
}

.vv-category-card__image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* Fill the image container completely */
	display: block;
	transition: transform 0.5s ease;
}

.vv-category-card:hover .vv-category-card__image-wrap img {
	transform: scale(1.05);
}

.vv-category-card__content {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 20px; /* Padded text container */
}

@media (max-width: 767px) {
	.vv-category-card__image-wrap {
		height: 140px;
	}
}

.vv-category-card__name {
	font-size: 1.1rem;
	font-weight: 700;
	color: #1c0e38;
	margin: 0;
	line-height: 1.3;
}

.vv-category-card__price {
	display: flex;
	align-items: baseline;
	gap: 6px;
}

.vv-price-value {
	font-size: 1rem;
	font-weight: 700;
	color: #FF0000;
}

.vv-price-suffix {
	font-size: 0.75rem;
	color: #888888;
	font-weight: 500;
}

/* Dynamic CTA */
.vv-categories__cta {
	text-align: center;
	margin-top: 50px;
}

.vv-categories__cta-btn {
	display: inline-block;
	padding: 12px 36px;
	border: 1.5px solid #FF0000;
	border-radius: 30px;
	color: #FF0000;
	font-size: 0.95rem;
	font-weight: 700;
	text-decoration: none !important;
	transition: all 0.3s ease;
	background: transparent;
}

.vv-categories__cta-btn:hover {
	background: #FF0000;
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(123, 63, 212, 0.2);
}

/* Fade in animation */
@keyframes vv-fade-in {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive grid */
@media (max-width: 1024px) {
	.vv-categories__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.vv-categories {
		padding: 40px 0 50px;
	}

	.vv-categories__tabs-wrapper {
		justify-content: flex-start;
		padding: 0 16px;
		margin: 0 -16px;
		width: calc(100% + 32px);
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.vv-categories__tabs-wrapper::-webkit-scrollbar {
		display: none;
	}

	.vv-categories__grid.active {
		display: flex !important;
		gap: 14px !important;
		overflow-x: auto !important;
		scroll-snap-type: x mandatory !important;
		-webkit-overflow-scrolling: touch !important;
		scrollbar-width: none !important;
		padding: 12px 16px 24px !important;
		margin: 0 -16px !important;
		width: calc(100% + 32px) !important;
	}

	.vv-categories__grid.active::-webkit-scrollbar {
		display: none !important;
	}

	.vv-categories__grid.active .vv-product-card,
	.vv-categories__grid.active .vv-card-reveal {
		scroll-snap-align: start !important;
		flex: 0 0 calc(85% - 12px) !important;
		max-width: calc(85% - 12px) !important;
		box-sizing: border-box !important;
	}

	.vv-categories__tab {
		padding: 10px 18px;
		min-width: 75px;
		border-radius: 14px !important;
		white-space: nowrap !important;
		flex: 0 0 auto !important;
	}

	.vv-categories__tab.active {
		border-radius: 14px !important;
	}
}

/* =============================================================
   JUMP INTO CARSNOW
   ============================================================= */

.vv-jump-into {
	background: #1a1a1a;
	position: relative;
	width: 100%;
	height: 250vh;
}

.vv-jump__sticky {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	overflow: hidden;
	display: flex;
	align-items: center;
	isolation: isolate;
	contain: layout style paint;
}

/* If there is an admin bar, adjust sticky top */
.admin-bar .vv-jump__sticky {
	top: 32px;
}
@media screen and (max-width: 782px) {
	.admin-bar .vv-jump__sticky {
		top: 46px;
	}
}

/* ── Animated gradient blobs behind intro ── */
.vv-jump__bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	overflow: hidden;
	pointer-events: none;
}

.vv-jump__bg-blob {
	position: absolute;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	will-change: transform;
}

.vv-jump__bg-blob:nth-child(1) {
	top: -15%;
	right: -8%;
	background: radial-gradient(circle at 40% 50%, rgba(232, 0, 28, 0.2), transparent 65%);
	animation: vv-blob-drift 16s ease-in-out infinite;
}

.vv-jump__bg-blob:nth-child(2) {
	bottom: -20%;
	left: -5%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle at 60% 50%, rgba(22, 33, 62, 0.25), transparent 65%);
	animation: vv-blob-drift 20s ease-in-out infinite reverse;
}

.vv-jump__bg-blob:nth-child(3) {
	top: 35%;
	left: 40%;
	width: 380px;
	height: 380px;
	background: radial-gradient(circle at 50% 50%, rgba(232, 0, 28, 0.1), transparent 65%);
	animation: vv-blob-drift 14s ease-in-out infinite 2s;
}

@keyframes vv-blob-drift {
	0%, 100% { transform: translate(0, 0) scale(1); }
	25% { transform: translate(-40px, 30px) scale(1.08); }
	50% { transform: translate(30px, -50px) scale(0.92); }
	75% { transform: translate(-20px, 20px) scale(1.05); }
}

.vv-jump__track {
	display: flex;
	align-items: center;
	height: 100%;
	width: max-content;
	will-change: transform;
	padding-left: 80px;
}

/* Centered intro overlay (absolute over gallery) */
.vv-jump__intro {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 5;
	width: 90%;
	max-width: 580px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	text-align: center;
	pointer-events: none;
	will-change: transform, opacity;
}

.vv-jump__scroll-icon {
	width: 68px;
	height: 68px;
}

.vv-jump__scroll-icon svg {
	width: 100%;
	height: 100%;
}

.vv-jump__title {
	font-family: 'Manrope';
	font-size: clamp(2.3rem, 3.8vw, 3.3rem);
	font-weight: 800;
	color: #ffffff;
	line-height: 1.15;
	margin: 0;
	letter-spacing: -0.03em;
}

.vv-jump__title-highlight {
	color: #e8001c;
}

.vv-jump__title-rest {
	color: #ffffff;
}

.vv-jump__title-line {
	display: block;
}

.vv-jump__subtitle {
	font-family: 'Manrope';
	font-size: 1.05rem;
	color: #ffffff;
	line-height: 1.55;
	margin: 0;
}

/* Scroll-driven car reveal — drives in from right during text phase */
.vv-jump__car {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 58%;
	max-width: 620px;
	z-index: 3;
	pointer-events: none;
	will-change: transform, opacity, clip-path;
	line-height: 0;
	transform: translateZ(0); /* Force compositor layer */
}

.vv-jump__car-mask {
	overflow: hidden;
	width: 100%;
	height: auto;
}

.vv-jump__car img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
	filter: brightness(0.95) saturate(1.1);
	-webkit-mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
	mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
}

/* Subtle float on idle (hold phase) */
@keyframes vv-car-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
}

.vv-jump__car--idle .vv-jump__car-mask {
	animation: vv-car-float 4s ease-in-out infinite;
}

/* Gallery Cards */
.vv-jump__gallery {
	display: flex;
	gap: 36px;
	align-items: center;
	padding-right: 80px;
}

.vv-jump-card {
	position: relative;
	flex: 0 0 380px;
	width: 380px;
	aspect-ratio: 3 / 4;
	height: auto;
	max-height: calc(100vh - 140px);
	border-radius: 22px;
	overflow: hidden;
	background: #111111;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	text-decoration: none !important;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
	transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
	cursor: pointer;
}

.vv-jump-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

/* Dark gradient overlay removed */
.vv-jump-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: transparent;
	z-index: 1;
	transition: opacity 0.3s ease;
	display: none;
}

.vv-jump-card:hover::before {
	background: transparent;
	display: none;
}

.vv-jump-card img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
	--parallax-x: 0px;
	--hover-scale: 1;
	transform: scale(var(--hover-scale, 1)) translateX(var(--parallax-x, 0px));
	transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
	will-change: transform;
}

.vv-jump-card:hover img {
	--hover-scale: 1.04;
}

/* Arrow badge */
.vv-jump-card__arrow {
	position: absolute;
	top: 24px;
	right: 24px;
	width: 44px;
	height: 44px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	transition: background 0.3s ease;
}

.vv-jump-card:hover .vv-jump-card__arrow {
	background: #000000;
}

.vv-jump-card__arrow img {
	width: 16px;
	height: 16px;
	object-fit: contain;
	transition: filter 0.3s ease;
}

.vv-jump-card:hover .vv-jump-card__arrow img {
	filter: invert(1);
}

/* Title — bottom left */
.vv-jump-card__title {
	position: relative;
	z-index: 2;
	padding: 0 28px 28px;
	color: #ffffff;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.15;
	margin: 0;
}

/* Fallback colors when no image */
.vv-jump-card:nth-child(1) { background-color: #10101e; }
.vv-jump-card:nth-child(2) { background-color: #1a1a2e; }
.vv-jump-card:nth-child(3) { background-color: #16213e; }
.vv-jump-card:nth-child(4) { background-color: #0f3460; }
.vv-jump-card:nth-child(5) { background-color: #1b1b2f; }

/* Progress bar at bottom of sticky viewport */
.vv-jump__progress-wrap {
	position: absolute;
	bottom: 30px;
	left: 80px;
	right: 80px;
	z-index: 10;
}

.vv-jump__progress-bar {
	height: 4px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 2px;
	overflow: hidden;
}

.vv-jump__progress-fill {
	height: 100%;
	width: 0%;
	background: #e8001c; /* Brand Red */
	border-radius: 2px;
	transition: width 0.1s ease-out;
}

/* Responsive */
@media (max-width: 1024px) {
	.vv-jump__track {
		padding-left: 40px;
	}
	.vv-jump__intro {
		max-width: 480px;
	}
	.vv-jump__gallery {
		gap: 28px;
		padding-right: 40px;
	}
	.vv-jump-card {
		flex: 0 0 340px;
		width: 340px;
		aspect-ratio: 3 / 4;
		height: auto;
		max-height: calc(100vh - 130px);
		border-radius: 20px;
	}
	.vv-jump__progress-wrap {
		left: 40px;
		right: 40px;
	}
}

@media (max-width: 768px) {
	.vv-jump-into {
		height: 230vh;
	}
	.vv-jump__bg-blob:nth-child(1) {
		width: 360px;
		height: 360px;
	}
	.vv-jump__bg-blob:nth-child(2) {
		width: 290px;
		height: 290px;
	}
	.vv-jump__bg-blob:nth-child(3) {
		width: 230px;
		height: 230px;
	}

	.vv-jump__track {
		padding-left: 20px;
	}
	.vv-jump__intro {
		top: 40% !important;
		max-width: 90%;
		gap: 14px;
	}
	.vv-jump__title {
		font-size: clamp(1.8rem, 6.5vw, 2.5rem);
	}
	.vv-jump__subtitle {
		font-size: 1rem;
		line-height: 1.52;
	}
	.vv-jump__scroll-icon {
		width: 52px;
		height: 52px;
	}
	.vv-jump__car {
		position: absolute;
		left: 0 !important;
		right: 0 !important;
		margin: 0 auto !important;
		width: 92% !important;
		max-width: 440px !important;
		bottom: 35px !important;
		z-index: 3;
		pointer-events: none;
	}
	.vv-jump__car-mask {
		width: 100%;
		display: flex;
		justify-content: center;
	}
	.vv-jump__car img {
		width: 100% !important;
		max-width: 440px !important;
		height: auto !important;
		display: block;
		object-fit: contain;
		filter: brightness(1.0) saturate(1.1) !important;
		-webkit-mask-image: none !important;
		mask-image: none !important;
	}
	.vv-jump__gallery {
		gap: 20px;
		padding-right: 20px;
	}
	.vv-jump-card {
		flex: 0 0 min(84vw, 320px);
		width: min(84vw, 320px);
		aspect-ratio: 3 / 4;
		height: auto;
		max-height: calc(100vh - 110px);
		border-radius: 18px;
	}
	.vv-jump-card__arrow {
		top: 20px;
		right: 20px;
		width: 40px;
		height: 40px;
	}
	.vv-jump-card__arrow img {
		width: 14px;
		height: 14px;
	}
	.vv-jump-card__title {
		font-size: 1.45rem;
		padding: 0 22px 22px;
	}
	.vv-jump__progress-wrap {
		left: 20px;
		right: 20px;
		bottom: 20px;
	}
}

@media (max-width: 480px) {
	.vv-jump__bg-blob:nth-child(1) {
		width: 260px;
		height: 260px;
	}
	.vv-jump__bg-blob:nth-child(2) {
		width: 210px;
		height: 210px;
	}
	.vv-jump__bg-blob:nth-child(3) {
		width: 170px;
		height: 170px;
	}

	.vv-jump__intro {
		top: 38% !important;
		max-width: 92%;
		gap: 12px;
	}
	.vv-jump__title {
		font-size: 1.75rem;
	}
	.vv-jump__subtitle {
		font-size: 0.92rem;
		line-height: 1.48;
	}
	.vv-jump__scroll-icon {
		width: 46px;
		height: 46px;
	}
	.vv-jump__car {
		width: 92% !important;
		max-width: 380px !important;
		bottom: 30px !important;
	}
	.vv-jump__car img {
		width: 100% !important;
		max-width: 380px !important;
	}
	.vv-jump-card {
		flex: 0 0 min(86vw, 310px);
		width: min(86vw, 310px);
		aspect-ratio: 3 / 4;
		height: auto;
		max-height: calc(100vh - 100px);
		border-radius: 18px;
	}
	.vv-jump__progress-wrap {
		left: 16px;
		right: 16px;
		bottom: 16px;
	}
}

/* =============================================================
   SELL YOUR CAR HASSLE FREE
   ============================================================= */

/* Section 1: CARS NOW Text Section (Scroll-Reactive Marquee) */
.vv-cars-now-text-section {
	background: #f4f1fa;
	padding: 60px 0;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.vv-marquee__container {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.vv-marquee__track {
	display: flex;
	width: max-content;
	user-select: none;
	pointer-events: none;
	will-change: transform;
	/* Use translate3d syntax via JS; keep transform: none here so no extra layer before JS takes over */
}

.vv-marquee__item {
	font-family: 'Manrope', sans-serif;
	font-size: clamp(4rem, 11vw, 12rem);
	font-weight: 900;
	line-height: 1.1;
	color: #e8001c;

	-webkit-text-stroke: 0;

	filter: url(#vv-stroke-filter);

	letter-spacing: 0.04em;
	white-space: nowrap;
	padding-right: 1.5rem;
	display: inline-block;
	
}

/* =============================================================
   PLANNING TO SELL? SECTION (45-MINUTE MAGIC)
   ============================================================= */

.vv-pts-section {
	background-color: #0b0c10;
	color: #ffffff;
	padding: 90px 0 100px;
	overflow: hidden;
	position: relative;
	font-family: 'Manrope', sans-serif;
}

.vv-pts__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
	z-index: 2;
}

/* Header */
.vv-pts__header {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-bottom: 60px;
}

.vv-pts__title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	color: #ffffff;
	letter-spacing: -0.03em;
	margin: 0;
	white-space: nowrap;
}

.vv-pts__header-line {
	flex: 1;
	height: 2px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.05) 100%);
	border-radius: 2px;
}

/* Hero Display (45 + Car + Marquee) */
.vv-pts__hero-display {
	position: relative;
	width: 100%;
	min-height: 380px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
	overflow: hidden;
}

/* Infinite Marquee Strip behind the numbers */
.vv-pts__marquee-strip {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	transform: translateY(-50%);
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
	opacity: 0.85;
}

.vv-pts__marquee-track {
	display: flex;
	width: max-content;
	animation: ptsMarquee 25s linear infinite;
}

@keyframes ptsMarquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

.vv-pts__marquee-item {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 0 24px;
	font-size: clamp(1.2rem, 2.5vw, 1.8rem);
	font-weight: 700;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.8);
	text-transform: uppercase;
	white-space: nowrap;
}

.vv-pts__clock-icon {
	color: #ffffff;
	flex-shrink: 0;
}

.vv-pts__dot {
	opacity: 0.4;
	margin-left: 12px;
}

/* Showcase Wrapper for Car & Animated Number */
.vv-pts__showcase-wrap {
	position: relative;
	width: 100%;
	min-height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.vv-pts__number-wrap {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vv-pts__number {
	font-size: clamp(11rem, 24vw, 18rem);
	font-weight: 900;
	line-height: 0.85;
	color: #ffffff;
	letter-spacing: -0.06em;
	user-select: none;
	text-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
	display: inline-block;
}

/* Convertible Luxury Car Image Overlay */
.vv-pts__car-image-wrap {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 100%;
	max-height: 250px;
	width: auto;
	z-index: 3;
	pointer-events: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vv-pts__car-img {
	height: 100%;
	width: auto;
	max-width: none;
	object-fit: contain;
	filter: drop-shadow(0 7px 18px rgba(0, 0, 0, 0.38));
	transform: scale(1.04);
}

/* Subtitle Description */
.vv-pts__desc-wrap {
	text-align: center;
	max-width: 820px;
	margin: 0 auto 50px;
}

.vv-pts__desc {
	font-size: clamp(1.1rem, 2vw, 1.45rem);
	font-weight: 300;
	color: #e2e8f0;
	line-height: 1.6;
	margin: 0;
}

.vv-pts__desc-highlight {
	font-weight: 700;
	color: #ffffff;
}

/* 4 USP Feature Cards Grid */
.vv-pts__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0 0 50px 0;
}

.vv-pts__card {
	background: #15171e;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	padding: 36px 28px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 200px;
	transition: background 0.4s ease, border-color 0.4s ease, transform 0.3s ease, box-shadow 0.4s ease;
	cursor: default;
}

.vv-pts__card:hover {
	background: #ffffff;
	border-color: #ffffff;
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.vv-pts__card-icon-wrap {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	margin-bottom: 24px;
	transition: background 0.4s ease, color 0.4s ease;
}

.vv-pts__card:hover .vv-pts__card-icon-wrap {
	background: rgba(0, 0, 0, 0.06);
	color: #000000;
}

.vv-pts__card-text {
	font-size: 1.15rem;
	font-weight: 300;
	color: #e2e8f0;
	line-height: 1.4;
	margin: 0;
	transition: color 0.4s ease;
}

.vv-pts__card-text strong {
	display: block;
	font-weight: 700;
	color: #ffffff;
	transition: color 0.4s ease;
}

.vv-pts__card:hover .vv-pts__card-text,
.vv-pts__card:hover .vv-pts__card-text strong {
	color: #000000;
}

/* CTA Button */
.vv-pts__cta {
	text-align: center;
}

.vv-pts__btn {
	display: inline-block;
	background: #ffffff;
	color: #0b0c10 !important;
	font-size: 1rem;
	font-weight: 700;
	padding: 16px 44px;
	border-radius: 50px;
	text-decoration: none !important;
	transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
	box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.vv-pts__btn:hover {
	transform: translateY(-3px) scale(1.02);
	background: #f1f5f9;
	box-shadow: 0 16px 40px rgba(255, 255, 255, 0.25);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
	.vv-pts__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Single Product Page Full-Width Override for Planning To Sell Section */
.single-product .vv-pts-section {
	width: 100% !important;
	max-width: 100% !important;
	clear: both !important;
	margin-top: 60px !important;
	margin-bottom: 60px !important;
	position: relative !important;
}

@media (max-width: 768px) {
	.vv-pts-section {
		padding: 50px 0 60px;
	}
	.vv-pts__header {
		margin-bottom: 24px;
	}
	.vv-pts__title {
		font-size: 1.5rem;
	}
	.vv-pts__hero-display {
		min-height: 280px;
		margin-bottom: 24px;
	}
	.vv-pts__showcase-wrap {
		min-height: 240px;
		flex-direction: column;
		justify-content: flex-end;
	}
	.vv-pts__car-image-wrap {
		position: absolute;
		top: -10px;
		left: 50%;
		transform: translateX(-50%) rotate(90deg);
		height: auto;
		width: 165px;
		max-height: none;
	}
	.vv-pts__car-img {
		width: 100%;
		height: auto;
	}
	.vv-pts__number-wrap {
		margin-top: 30px;
	}
	.vv-pts__number {
		font-size: clamp(5.5rem, 24vw, 8rem);
	}
	.vv-pts__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
		margin-bottom: 30px;
	}
	.vv-pts__card {
		padding: 20px 16px;
		min-height: auto;
		border-radius: 16px;
	}
	.vv-pts__card-icon-wrap {
		width: 40px;
		height: 40px;
		margin-bottom: 12px;
	}
	.vv-pts__card-icon-wrap svg {
		width: 20px;
		height: 20px;
	}
	.vv-pts__card-text {
		font-size: 0.95rem;
	}
	.vv-pts__desc {
		font-size: 0.95rem;
	}
	.vv-pts__br-desktop {
		display: none;
	}
}





/* =============================================================
   TESTIMONIALS  —  Fixed orange center + sliding white track
   ============================================================= */

.vv-testimonials {
	padding: 100px 0 0 0;
	background: #ffffff;
}

/* ── Header ───────────────────────────────────────────────── */

.vv-testimonials__header {
	text-align: center;
	padding: 0 24px;
	margin-bottom: 64px;
}

.vv-testimonials__heading {
	font-family: 'Manrope';
	font-size: clamp(2.2rem, 4vw, 3.4rem);
	font-weight: 800;
	color: #111111;
	line-height: 1.18;
	letter-spacing: -0.03em;
	margin: 0;
	display: inline-block;
}

.vv-testimonials__avatars {
	display: inline-flex;
	align-items: center;
	margin-left: 14px;
	vertical-align: middle;
	position: relative;
	top: -4px;
}

.vv-testimonials__avatars img {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #f5f5f5;
	margin-left: -12px;
	transition: transform 0.25s ease;
}

.vv-testimonials__avatars img:first-child { margin-left: 0; }
.vv-testimonials__avatars img:hover { transform: scale(1.15) translateY(-3px); z-index: 10; }

/* ── Stage: wraps sliding track + fixed orange overlay ────── */

.vv-testimonials__stage {
	position: relative;
	overflow-x: hidden;
	overflow-y: visible;          /* orange card can overflow bottom */
	padding: 32px 0 80px;         /* top: shadow room, bottom: orange card depth */
}

/* ── Flickity Slider Track and Cells ──────────────────────── */

.vv-testimonials__slider {
	outline: none;
}

/* Flickity cells */
.vv-t-slide {
	width: 420px;
	margin-right: 32px;
	opacity: 0.55;
	transform: scale(0.92);
	transition: opacity 0.45s ease, transform 0.45s ease;
	cursor: pointer;
	will-change: transform, opacity;
}

/* Hide the active cell inside the sliding carousel so the fixed orange card shows in its place */
.vv-t-slide.is-selected {
	opacity: 0 !important;
	pointer-events: none;
	transform: scale(1);
}

/* ── White card box ───────────────────────────────────────── */

.vv-t-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 40px 36px 36px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
	min-height: 220px;
	border-left: none; /* Removed vertical black bars */
}

.vv-t-card__icon {
	font-family: 'Manrope';
	font-size: 4rem;
	line-height: 0.55;
	color: rgba(255, 90, 54, 0.15); /* light orange accent quote */
	font-weight: 900;
	font-style: italic;
	display: block;
}

.vv-t-card__quote {
	font-size: 0.98rem;
	line-height: 1.75;
	color: #555555;
	margin: 0;
	font-weight: 400;
}

/* ── Fixed orange card (center, absolute) ─────────────────── */

.vv-t-orange {
	position: absolute;
	top: 32px;                      /* matches stage padding-top */
	left: 50%;
	transform: translateX(-50%);
	width: 440px;
	z-index: 10;
	background: #ff5a36;
	border-radius: 22px;
	padding: 48px 44px 44px;
	box-shadow: 0 28px 80px rgba(255, 90, 54, 0.30);
	transition: opacity 0.22s ease;
	pointer-events: none; /* click passes through to cells below if needed */
}

/* Speech-bubble triangle */
.vv-t-orange::after {
	content: '';
	position: absolute;
	bottom: -17px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 17px solid transparent;
	border-right: 17px solid transparent;
	border-top: 17px solid #ff5a36;
}

/* Fade state (during content swap) */
.vv-t-orange.is-fading {
	opacity: 0;
}

.vv-t-orange__icon {
	font-family: 'Manrope';
	font-size: 4.5rem;
	line-height: 0.55;
	color: rgba(255, 255, 255, 0.45);
	font-weight: 900;
	font-style: italic;
	display: block;
	margin-bottom: 16px;
}

.vv-t-orange__quote {
	font-size: 1.08rem;
	font-weight: 500;
	line-height: 1.72;
	color: #ffffff;
	margin: 0;
}

/* ── Author block (below orange, outside stage) ───────────── */

.vv-t-active-author {
	text-align: center;
	padding: 28px 0 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	transition: opacity 0.22s ease;
}

.vv-t-active-author.is-fading {
	opacity: 0;
}

.vv-t-active-author strong {
	display: block;
	font-size: 1.05rem;
	font-weight: 700;
	color: #111111;
	letter-spacing: -0.01em;
}

.vv-t-active-author span {
	display: block;
	font-size: 0.875rem;
	color: #888888;
}

/* ── Navigation arrows ────────────────────────────────────── */

.vv-testimonials__nav {
	display: flex;
	justify-content: center;
	gap: 16px;
	padding: 40px 0 80px;
}

.vv-testimonials__arrow {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 2px solid #cccccc;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #555555;
	transition: border-color 0.2s ease, background 0.2s ease,
	            color 0.2s ease, transform 0.2s ease;
}

.vv-testimonials__arrow:hover {
	border-color: #ff5a36;
	background: #ff5a36;
	color: #ffffff;
	transform: scale(1.08);
}

.vv-testimonials__arrow:disabled {
	opacity: 0.35;
	cursor: default;
	pointer-events: none;
}

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 1024px) {
	.vv-t-slide {
		width: 360px;
		margin-right: 24px;
	}
	.vv-t-orange {
		width: 380px;
	}
}

@media (max-width: 768px) {
	.vv-t-slide {
		width: 300px;
		margin-right: 20px;
	}
	.vv-t-card {
		padding: 32px 28px 28px;
		min-height: 200px;
	}
	.vv-t-orange {
		width: 320px;
		padding: 36px 28px 32px;
	}
	.vv-t-orange__quote {
		font-size: 0.96rem;
	}
}

@media (max-width: 540px) {
	/* On mobile: hide side white cards, show only orange active card */
	.vv-testimonials__slider {
		display: none;
	}
	.vv-testimonials__stage {
		padding-top: 0;
	}
	.vv-t-orange {
		position: relative;
		top: auto;
		left: auto;
		transform: none;
		width: calc(100% - 48px);
		margin: 0 auto;
	}
	.vv-t-active-author {
		padding-top: 20px;
	}
}

/* Final testimonial design: horizontal reference layout */
.vv-testimonials {
	overflow: hidden;
	background: #f6f6f6;
}

.vv-testimonials__stage {
	position: relative;
	overflow: visible;
	min-height: 330px;
	padding: 38px 0 0;
}

.vv-testimonials__stage::after {
	content: '';
	position: absolute;
	z-index: 8;
	top: 286px;
	left: 50%;
	width: min(46vw, 620px);
	height: 88px;
	transform: translateX(-50%);
	background: #f6f6f6;
	pointer-events: none;
}

.vv-testimonials__slider {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	outline: none;
}

.vv-testimonials__slider.flickity-enabled {
	display: block;
	position: relative;
}

.vv-testimonials__slider .flickity-viewport {
	position: relative;
	overflow: visible;
	width: 100%;
	height: 292px !important;
}

.vv-testimonials__slider .flickity-slider {
	position: absolute;
	width: 100%;
	height: 100%;
}

.vv-t-slide {
	width: min(42vw, 580px);
	min-width: 480px;
	margin-right: 64px;
	opacity: 1;
	transform: none;
	cursor: pointer;
	will-change: transform;
	transition: opacity 0.35s ease;
}

.vv-t-slide.is-selected {
	opacity: 0 !important;
	pointer-events: none;
}

.vv-testimonials.is-animating .vv-t-slide.is-selected {
	opacity: 1 !important;
}

.vv-t-card {
	min-height: 248px;
	padding: 54px 34px 24px;
	background: transparent;
	border-radius: 0;
	box-shadow: none;
	gap: 0;
}

.vv-t-card__icon {
	margin: 0 0 14px;
	font-family: 'Manrope';
	font-size: 4.45rem;
	font-style: normal;
	font-weight: 700;
	line-height: 0.42;
	color: rgba(0, 0, 0, 0.11);
}

.vv-t-card__quote {
	max-width: 100%;
	font-size: clamp(0.95rem, 1.1vw, 1.15rem);
	font-weight: 500;
	line-height: 1.52;
	color: rgba(0, 0, 0, 0.28);
}

.vv-t-slide-author {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	padding-top: 34px;
	text-align: center;
	color: rgba(0, 0, 0, 0.27);
}

.vv-t-slide-author strong,
.vv-t-slide-author span {
	display: block;
	font-size: 0.95rem;
	font-weight: 400;
	line-height: 1.18;
	color: inherit;
}

.vv-t-orange {
	top: 38px;
	width: min(37vw, 508px);
	min-width: 508px;
	min-height: 248px;
	padding: 56px 70px 48px 102px;
	background: #e8001c;
	border-radius: 18px;
	box-shadow: 0 36px 92px rgba(0, 0, 0, 0.12);
}

.vv-t-orange::after {
	bottom: -13px;
	border-left-width: 13px;
	border-right-width: 13px;
	border-top: 13px solid #e8001c;
}

.vv-t-orange__icon {
	position: absolute;
	top: 60px;
	left: 36px;
	margin: 0;
	font-family: 'Manrope';
	font-size: 5.1rem;
	font-style: normal;
	font-weight: 700;
	line-height: 0.42;
	color: rgba(0, 0, 0, 0.12);
}

.vv-t-orange__quote {
	font-size: clamp(1.15rem, 1.36vw, 1.38rem);
	font-weight: 700;
	line-height: 1.55;
	color: #ffffff;
}

.vv-t-active-author {
	position: relative;
	z-index: 12;
	margin-top: 3px;
	padding: 0;
	gap: 7px;
}

.vv-t-active-author strong {
	font-size: 1.12rem;
	font-weight: 500;
	line-height: 1.15;
	color: #111111;
}

.vv-t-active-author span {
	font-size: 1.06rem;
	font-weight: 400;
	line-height: 1.15;
	color: rgba(0, 0, 0, 0.55);
}

.vv-testimonials__nav {
	position: relative;
	z-index: 50;
	display: flex;
	justify-content: center;
	gap: 16px;
	padding: 26px 0 80px;
	pointer-events: auto;
}

.vv-testimonials__arrow {
	position: relative;
	z-index: 51;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 999px;
	background: #ffffff;
	color: #111111;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
	pointer-events: auto;
	transition: background 0.2s ease, color 0.2s ease,
	            transform 0.2s ease, box-shadow 0.2s ease;
}

.vv-testimonials__arrow:hover {
	background: #e8001c;
	color: #ffffff;
	border-color: #e8001c;
	transform: translateY(-2px);
	box-shadow: 0 18px 40px rgba(255, 99, 61, 0.28);
}

.vv-testimonials__arrow svg {
	display: block;
	width: 18px;
	height: 18px;
}

@media (max-width: 1024px) {
	.vv-t-slide {
		width: 420px;
		min-width: 420px;
		margin-right: 44px;
	}

	.vv-t-orange {
		width: 420px;
		min-width: 420px;
		padding-right: 52px;
		padding-left: 86px;
	}
}

@media (max-width: 768px) {
	.vv-testimonials__stage {
		min-height: 310px;
		padding-top: 24px;
	}

	.vv-testimonials__stage::after {
		top: 256px;
		width: min(92vw, 420px);
	}

	.vv-testimonials__slider .flickity-viewport {
		height: 280px !important;
	}

	.vv-t-slide {
		width: 360px;
		min-width: 360px;
		margin-right: 28px;
	}

	.vv-t-card {
		padding: 50px 24px 20px;
	}

	.vv-t-orange {
		top: 24px;
		width: min(88vw, 360px);
		min-width: 0;
		min-height: 232px;
		padding: 46px 34px 40px 74px;
	}

	.vv-t-orange__icon {
		top: 50px;
		left: 26px;
		font-size: 4rem;
	}

	.vv-t-orange__quote,
	.vv-t-card__quote {
		font-size: 1rem;
	}
}

@media (max-width: 540px) {
	.vv-testimonials__slider {
		display: none;
	}

	.vv-testimonials__stage::after {
		display: none;
	}

	.vv-testimonials__stage {
		min-height: 0;
		padding-top: 0;
	}

	.vv-t-orange {
		position: relative;
		top: auto;
		left: auto;
		transform: none;
		width: calc(100% - 40px);
		margin: 0 auto;
	}

	.vv-t-active-author {
		margin-top: 26px;
	}
}

/* Salient SaaS-style testimonial carousel: the active slide becomes the orange bubble. */
.vv-testimonials__stage {
	min-height: 378px;
	overflow: hidden;
}

.vv-testimonials__stage::after {
	display: none;
}

.vv-testimonials__slider {
	width: max-content;
	max-width: none;
}

.vv-testimonials__slider.flickity-enabled {
	display: flex;
}

.vv-testimonials__slider .flickity-viewport {
	overflow: visible;
	height: auto !important;
}
.vv-testimonials__slider .flickity-slider {
	overflow: visible;
}

.vv-t-slide {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	opacity: 1;
	pointer-events: auto;
	transition: opacity 0.25s ease;
}

.vv-t-slide.is-selected {
	opacity: 1 !important;
	pointer-events: auto;
}

.vv-t-card {
	position: relative;
	width: 100%;
	transition: background 0.34s ease, box-shadow 0.34s ease,
	            border-radius 0.34s ease, color 0.34s ease;
}

.vv-t-card::after {
	content: '';
	position: absolute;
	bottom: -13px;
	left: 50%;
	width: 0;
	height: 0;
	border-left: 13px solid transparent;
	border-right: 13px solid transparent;
	border-top: 13px solid transparent;
	transform: translateX(-50%);
	transition: border-top-color 0.34s ease;
}

.vv-t-slide.is-selected .vv-t-card {
	background: #e8001c;
	border-radius: 18px;
	box-shadow: 0 36px 92px rgba(0, 0, 0, 0.12);
}

.vv-t-slide.is-selected .vv-t-card::after {
	border-top-color: #e8001c;
}

.vv-t-slide.is-selected .vv-t-card__icon {
	color: rgba(0, 0, 0, 0.12);
}

.vv-t-slide.is-selected .vv-t-card__quote {
	color: #ffffff;
	font-weight: 700;
}

.vv-t-slide.is-selected .vv-t-slide-author {
	color: #111111;
}

.vv-t-slide.is-selected .vv-t-slide-author strong {
	font-weight: 500;
}

.vv-testimonials.is-animating .vv-t-card,
.vv-testimonials.is-animating .vv-t-card::after,
.vv-testimonials.is-animating .vv-t-card__icon,
.vv-testimonials.is-animating .vv-t-card__quote,
.vv-testimonials.is-animating .vv-t-slide-author {
	transition-duration: 0.42s;
}

@media (max-width: 768px) {
	.vv-testimonials__stage {
		min-height: 350px;
	}
}

@media (max-width: 540px) {
	.vv-testimonials__slider {
		display: flex;
	}

	.vv-t-slide {
		width: calc(100vw - 48px);
		min-width: calc(100vw - 48px);
		margin-right: 24px;
	}
}

/* Visit Our Showroom */
.vv-showroom {
	overflow: hidden;
	padding: 42px 0 78px;
	background: #f7f8fa;
	font-family: 'Manrope';
}

.vv-showroom .vv-container {
	max-width: 1288px;
}

.vv-showroom__title {
	font-family: 'Manrope';
	margin: 0 0 24px;
	color: #050505;
	font-size: clamp(2.65rem, 5.1vw, 4.55rem);
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: 0;
}

.vv-showroom__layout {
	position: relative;
	min-height: 575px;
}

.vv-showroom__media {
	position: relative;
	width: min(74.8%, 884px);
	overflow: hidden;
	border-radius: 16px;
	background: #d9dee3;
}

.vv-showroom__image {
	display: block;
	width: 100%;
	aspect-ratio: 1.53 / 1;
	object-fit: cover;
}

.vv-showroom__play {
	position: absolute;
	top: 50%;
	left: 50%;
	display: inline-flex;
	width: 78px;
	height: 78px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #ffffff;
	box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
	cursor: pointer;
	transform: translate(-50%, -50%);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vv-showroom__play:hover,
.vv-showroom__play:focus-visible {
	box-shadow: 0 20px 46px rgba(0, 0, 0, 0.2);
	transform: translate(-50%, -50%) scale(1.04);
}

.vv-showroom__play:focus-visible {
	outline: 3px solid rgba(255, 48, 73, 0.34);
	outline-offset: 4px;
}

.vv-showroom__play-icon {
	display: block;
	width: 0;
	height: 0;
	margin-left: 6px;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	border-left: 18px solid #000000;
}

.vv-showroom__card {
	position: absolute;
	top: 58px;
	right: 0;
	z-index: 2;
	width: min(39.6%, 438px);
	min-width: 398px;
	padding: 42px 26px 36px;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 28px 80px rgba(6, 12, 22, 0.08);
}

.vv-showroom__card-image {
	display: block;
	width: 100%;
	aspect-ratio: 2.05 / 1;
	object-fit: cover;
	border-radius: 12px;
}

.vv-showroom__call {
	display: flex;
	width: 100%;
	height: 54px;
	align-items: center;
	justify-content: center;
	margin: 20px 0 30px;
	border-radius: 10px;
	background: #ff3048;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.2s ease;
}

.vv-showroom__call:hover,
.vv-showroom__call:focus-visible {
	background: #f1253e;
	color: #ffffff;
	transform: translateY(-1px);
}

.vv-showroom__details {
	display: grid;
	gap: 19px;
	margin: 0;
}

.vv-showroom__detail {
	display: grid;
	grid-template-columns: minmax(116px, 1fr) minmax(176px, auto);
	align-items: start;
	column-gap: 18px;
}

.vv-showroom__detail dt,
.vv-showroom__detail dd {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.35;
}

.vv-showroom__detail dt {
	color: #5d6167;
	font-weight: 700;
}

.vv-showroom__detail dd {
	color: #15191f;
	font-weight: 800;
	text-align: right;
}

.vv-showroom__detail a {
	color: inherit;
	text-decoration: none;
}

.vv-showroom__detail a:hover,
.vv-showroom__detail a:focus-visible {
	color: #ff3048;
}

@media (max-width: 1180px) {
	.vv-showroom__layout {
		min-height: 520px;
	}

	.vv-showroom__media {
		width: 70%;
	}

	.vv-showroom__card {
		top: 48px;
		width: 40%;
		min-width: 366px;
		padding: 34px 24px 30px;
	}
}

@media (max-width: 920px) {
	.vv-showroom {
		padding: 38px 0 64px;
	}

	.vv-showroom__layout {
		display: grid;
		gap: 24px;
		min-height: 0;
	}

	.vv-showroom__media {
		display: none !important;
	}

	.vv-showroom__card {
		position: relative;
		top: auto;
		right: auto;
		width: 100%;
		min-width: 0;
		padding: 28px;
		border-radius: 16px;
	}
}

@media (max-width: 640px) {
	.vv-showroom {
		padding: 32px 0 52px;
	}

	.vv-showroom__title {
		margin-bottom: 18px;
		font-size: clamp(2.2rem, 12vw, 3.25rem);
	}

	.vv-showroom__media {
		border-radius: 12px;
	}

	.vv-showroom__image {
		aspect-ratio: 1 / 0.9;
	}

	.vv-showroom__play {
		width: 62px;
		height: 62px;
	}

	.vv-showroom__play-icon {
		border-top-width: 10px;
		border-bottom-width: 10px;
		border-left-width: 15px;
	}

	.vv-showroom__card {
		padding: 20px;
		border-radius: 14px;
	}

	.vv-showroom__call {
		height: 50px;
		margin: 16px 0 24px;
	}

	.vv-showroom__details {
		gap: 16px;
	}

	.vv-showroom__detail {
		grid-template-columns: 1fr;
		row-gap: 6px;
	}

	.vv-showroom__detail dd {
		text-align: left;
	}
}

/* Harbor CTA */
.vv-harbor-cta {
	position: relative;
	display: flex;
	min-height: clamp(260px, 25vw, 390px);
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: clamp(88px, 10vw, 156px) 24px;
	background: #ffffff;
	text-align: center;
	isolation: isolate;
}

.vv-harbor-cta__link {
	position: relative;
	z-index: 2;
	display: block;
	width: min(100%, 1280px);
	color: #1f2023;
	text-decoration: none;
}

.vv-harbor-cta__link:hover,
.vv-harbor-cta__link:focus-visible {
	color: #1f2023;
}

.vv-harbor-cta__link:focus-visible {
	outline: 2px solid #ff4a4b;
	outline-offset: 12px;
}

.vv-harbor-cta__heading {
	display: block;
	font-family: 'Manrope';
	font-size: clamp(2.65rem, 5.35vw, 5.05rem);
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: 0;
	animation: vvHarborCtaTextIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.vv-harbor-cta__trail {
	position: absolute;
	z-index: 4;
	inset: 0 0 10%;
	overflow-x: clip;
	pointer-events: none;
}

.vv-harbor-cta__trail-list {
	display: none;
}

.vv-harbor-cta__bubble {
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	padding: 0.6em 0.8em;
	border-radius: 50px;
	background: var(--vv-trail-bg, #ff4a4b);
	color: #111111;
	font-family: 'Manrope';
	font-size: clamp(0.95rem, 1.08vw, 1.12rem);
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	pointer-events: none;
	transform: translate(-50%, -50%) rotate(var(--vv-trail-rotation, 0deg)) scale(0);
	transform-origin: 50% 50%;
	will-change: transform, opacity;
	animation: vvHarborTrailPop var(--vv-trail-duration, 1.2s) cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes vvHarborTrailPop {
	0% {
		opacity: 0;
		transform: translate(-50%, -50%) rotate(var(--vv-trail-rotation, 0deg)) scale(0);
	}
	18% {
		opacity: 1;
		transform: translate(-50%, -50%) rotate(var(--vv-trail-rotation, 0deg)) scale(1);
	}
	68% {
		opacity: 1;
		transform: translate(-50%, -50%) rotate(var(--vv-trail-rotation, 0deg)) scale(1);
	}
	100% {
		opacity: 0;
		transform: translate(-50%, -50%) rotate(var(--vv-trail-rotation, 0deg)) scale(0);
	}
}

@keyframes vvHarborCtaTextIn {
	0% {
		opacity: 0;
		filter: blur(14px);
		transform: translateY(28px);
	}
	100% {
		opacity: 1;
		filter: blur(0);
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
	.vv-harbor-cta {
		min-height: 300px;
		padding: 96px 24px;
	}

	.vv-harbor-cta__heading {
		font-size: clamp(2.35rem, 11vw, 4.1rem);
	}
}

@media (max-width: 540px) {
	.vv-harbor-cta {
		min-height: 260px;
		padding: 78px 20px;
	}

	.vv-harbor-cta__heading {
		font-size: clamp(2rem, 10.5vw, 3.05rem);
	}

	.vv-harbor-cta__bubble {
		font-size: 0.86rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vv-harbor-cta__heading {
		animation: none;
	}

	.vv-harbor-cta__bubble {
		animation-duration: 0.01ms;
	}
}

/* =============================================================
   INTERACTIVE STORY
   ============================================================= */

.vv-interactive-story {
	background: #f7f8fa;
	padding: 80px 0;
	overflow: hidden;
}

.vv-interactive-story__layout {
	display: flex;
	gap: 40px;
	align-items: stretch;
}

/* ── Left: Chat Column ─────────────────────────────────────── */

.vv-interactive-story__chat-col {
	flex: 1 1 58%;
	min-width: 0;
}

.vv-interactive-story__chat-card {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	height: 100%;
	min-height: 520px;
	display: flex;
	align-items: flex-end;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.vv-interactive-story__chat-bg {
	position: absolute;
	inset: 0;
	background-image: url('../images/Message%20Section%20Banner%20(1).webp');
	background-size: cover;
	background-position: center 30%;
	z-index: 0;
}

.vv-interactive-story__chat-glass {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.72) 0%,
		rgba(0, 0, 0, 0.10) 60%,
		rgba(0, 0, 0, 0.05) 100%
	);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
}

/* ── Chat Container ────────────────────────────────────────── */

.vv-chat {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 40px 32px 32px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.vv-chat__messages {
	display: flex;
	flex-direction: column;
	gap: 10px;
	overflow: visible;
	height: auto;
	max-height: none;
	padding: 0;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.vv-chat__messages::-webkit-scrollbar {
	display: none;
}

/* ── Chat Bubbles ──────────────────────────────────────────── */

.vv-chat__bubble {
	max-width: 82%;
	padding: 12px 18px;
	border-radius: 18px;
	font-family: 'Manrope', sans-serif;
	font-size: 0.92rem;
	font-weight: 500;
	line-height: 1.5;
	opacity: 0;
	transform: translateY(12px) scale(0.96);
	transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
	word-wrap: break-word;
}

.vv-chat__bubble.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.vv-chat__bubble.is-hidden {
	opacity: 0;
	transform: translateY(-8px) scale(0.96);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

/* AI bubbles — left aligned */
.vv-chat__bubble--ai {
	align-self: flex-start;
	background: rgba(255, 255, 255, 0.92);
	color: #111111;
	border-bottom-left-radius: 4px;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

/* User bubbles — right aligned */
.vv-chat__bubble--user {
	align-self: flex-end;
	background: #e8001c;
	color: #ffffff;
	border-bottom-right-radius: 4px;
}

/* ── Typing Indicator ──────────────────────────────────────── */

.vv-chat__typing {
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 10px 16px;
	background: rgba(255, 255, 255, 0.85);
	border-radius: 16px;
	align-self: flex-start;
	width: fit-content;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.25s ease, transform 0.25s ease;
	pointer-events: none;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.vv-chat__typing.is-active {
	opacity: 1;
	transform: translateY(0);
}

.vv-chat__typing-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #999999;
	animation: vv-chat-typing-bounce 1.2s ease-in-out infinite;
}

.vv-chat__typing-dot:nth-child(2) {
	animation-delay: 0.16s;
}

.vv-chat__typing-dot:nth-child(3) {
	animation-delay: 0.32s;
}

@keyframes vv-chat-typing-bounce {
	0%, 60%, 100% {
		transform: translateY(0);
		opacity: 0.3;
	}
	30% {
		transform: translateY(-6px);
		opacity: 1;
	}
}

/* ── Avatar Decorations ────────────────────────────────────── */

.vv-chat__avatar {
	position: absolute;
	z-index: 3;
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.vv-chat__avatar--ai {
	bottom: 4px;
	left: 4px;
}

.vv-chat__avatar--user {
	bottom: 4px;
	right: 4px;
}

/* Avatars appear when first matching bubble appears */
.vv-chat__bubble--ai.is-visible ~ .vv-chat__avatar--ai,
.vv-chat__bubble--user.is-visible ~ .vv-chat__avatar--user {
	opacity: 1;
}

/* ── Right: Bento Column ───────────────────────────────────── */

.vv-interactive-story__bento-col {
	flex: 1 1 42%;
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.vv-bento-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto auto auto;
	gap: 16px;
	height: 100%;
}

.vv-bento-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 28px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	overflow: hidden;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
}

.vv-bento-card.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.vv-bento-card:hover {
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}

.vv-bento-card.is-visible:hover {
	transform: translateY(-2px);
}

.vv-bento-card--stat {
	grid-column: 1 / 2;
	grid-row: 1 / 3;
	background: linear-gradient(145deg, #1a1a2e, #16213e);
	color: #ffffff;
	padding: 0 !important;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.vv-bento-card__stat-image-wrap {
	width: 100%;
	flex: 1;
	min-height: 280px;
	overflow: hidden;
	position: relative;
}

.vv-bento-card__stat-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 65% center;
	display: block;
	transition: transform 0.5s ease;
}

.vv-bento-card--stat:hover .vv-bento-card__stat-img {
	transform: scale(1.06);
}

.vv-bento-card__content--stat {
	padding: 24px;
	flex: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.vv-bento-card--percent {
	grid-column: 2 / 3;
	grid-row: 1 / 2;
	background: #e8001c;
	color: #ffffff;
}

.vv-bento-card--metric {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
	background: #ffffff;
	border: 1px solid #eaeaea;
}

.vv-bento-card--image {
	grid-column: 1 / 3;
	grid-row: 3 / 4;
	padding: 0;
	background: #ffffff;
	display: flex;
	flex-direction: row;
	align-items: center;
	overflow: hidden;
	min-height: 160px;
}

/* Card content */
.vv-bento-card__content {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.vv-bento-card__number {
	font-family: 'Manrope', sans-serif;
	font-size: 1.8rem;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.vv-bento-card__big-number {
	font-family: 'Manrope', sans-serif;
	font-size: 3rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.03em;
	margin-bottom: 4px;
}

.vv-bento-card__title {
	font-family: 'Manrope', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	margin: 0;
	line-height: 1.3;
}

.vv-bento-card--stat .vv-bento-card__title,
.vv-bento-card--percent .vv-bento-card__title {
	color: #ffffff;
}

.vv-bento-card--metric .vv-bento-card__title,
.vv-bento-card--image .vv-bento-card__title {
	color: #111111;
}

.vv-bento-card__desc {
	font-size: 0.88rem;
	font-weight: 500;
	line-height: 1.5;
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
}

.vv-bento-card--metric .vv-bento-card__desc,
.vv-bento-card--image .vv-bento-card__desc {
	color: #444444;
}

/* Image card specific */
.vv-bento-card--image {
	flex-direction: row;
}

.vv-bento-card--image .vv-bento-card__image-wrap {
	flex: 0 0 58%;
	width: 58%;
	height: 100%;
	min-height: 160px;
	overflow: hidden;
}

.vv-bento-card--image .vv-bento-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.vv-bento-card--image:hover .vv-bento-card__image {
	transform: scale(1.06);
}

.vv-bento-card--image .vv-bento-card__content--overlay {
	padding: 24px 28px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 12px;
}

.vv-bento-card--image .vv-bento-card__desc {
	color: #444444;
}

/* CTA button inside image card */
.vv-bento-card__btn.vv-btn {
	align-self: flex-start;
	padding: 10px 24px;
	font-size: 0.82rem;
	font-weight: 700;
	border-radius: 100px;
	background: #e8001c;
	color: #ffffff;
	border: none;
	transition: background 0.25s ease, transform 0.25s ease;
}

.vv-bento-card__btn.vv-btn:hover {
	background: #c40016;
	transform: translateY(-1px);
	color: #ffffff;
}

/* Ensure vv-btn--primary base styles don't interfere */
.vv-btn--primary.vv-bento-card__btn {
	background: #e8001c;
}

/* ── Responsive ────────────────────────────────────────────── */

@media (max-width: 1024px) {
	.vv-interactive-story__layout {
		gap: 32px;
	}

	.vv-interactive-story__chat-card {
		min-height: 500px;
	}

	.vv-chat {
		padding: 32px 24px 24px;
	}

	.vv-chat__messages {
		max-height: none !important;
		overflow: visible !important;
	}

	.vv-bento-card__big-number {
		font-size: 2.4rem;
	}

	.vv-bento-card__number {
		font-size: 1.5rem;
	}

	.vv-bento-card--image .vv-bento-card__image-wrap {
		flex: 0 0 50%;
		width: 50%;
		min-height: 140px;
	}
}

@media (max-width: 768px) {
	.vv-interactive-story {
		padding: 60px 0;
	}

	.vv-interactive-story__layout {
		flex-direction: column;
		gap: 32px;
	}

	.vv-interactive-story__chat-col {
		flex: none;
		width: 100%;
	}

	.vv-interactive-story__chat-card {
		min-height: 480px;
	}

	.vv-chat {
		padding: 24px 20px 20px;
	}

	.vv-chat__messages {
		max-height: none !important;
		overflow: visible !important;
	}

	.vv-interactive-story__bento-col {
		flex: none;
		width: 100%;
	}

	.vv-bento-grid {
		gap: 14px;
	}

	.vv-bento-card {
		padding: 22px;
	}

	.vv-bento-card--image .vv-bento-card__image-wrap {
		flex: 0 0 45%;
		width: 45%;
		min-height: 120px;
	}

	.vv-bento-card--image .vv-bento-card__content--overlay {
		padding: 16px 20px;
	}
}

@media (max-width: 480px) {
	.vv-interactive-story {
		padding: 40px 0;
	}

	.vv-interactive-story__chat-card {
		min-height: 480px;
		border-radius: 18px;
	}

	.vv-chat {
		padding: 20px 14px 14px;
	}

	.vv-chat__messages {
		max-height: none !important;
		overflow: visible !important;
		gap: 6px;
		padding: 0;
	}

	.vv-chat__bubble {
		max-width: 92%;
		padding: 8px 12px;
		font-size: 0.82rem;
		line-height: 1.35;
	}

	.vv-bento-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.vv-bento-card--stat {
		grid-column: 1 / 2;
		grid-row: auto;
	}

	.vv-bento-card--percent {
		grid-column: 1 / 2;
		grid-row: auto;
	}

	.vv-bento-card--metric {
		grid-column: 1 / 2;
		grid-row: auto;
	}

	.vv-bento-card--image {
		grid-column: 1 / 2;
		grid-row: auto;
		flex-direction: column;
	}

	.vv-bento-card--image .vv-bento-card__image-wrap {
		flex: none;
		width: 100%;
		height: 160px;
		min-height: auto;
	}

	.vv-bento-card {
		padding: 20px;
	}

	.vv-bento-card__big-number {
		font-size: 2rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vv-chat__bubble,
	.vv-chat__bubble.is-visible,
	.vv-chat__bubble.is-hidden {
		transition: none;
		opacity: 1;
		transform: none;
	}

	.vv-chat__typing {
		transition: none;
	}

	.vv-bento-card {
		transition: none;
		opacity: 1;
		transform: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vv-jump__bg-blob {
		animation: none !important;
	}
}

/* =============================================================
   PREMIUM TESTIMONIALS — Alternating card carousel
   ============================================================= */

.vv-testimonials-premium {
	position: relative;
	overflow: hidden;
	padding: 100px 0 120px;
	background: #ffffff;
	font-family: 'Manrope', sans-serif;
}

.vv-tp-container {
	max-width: 1288px;
	margin: 0 auto;
	padding: 0 24px;
}

.vv-tp-header {
	text-align: center;
	margin-bottom: 60px;
}

.vv-tp-header__label {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #e8001c;
	margin-bottom: 12px;
}

.vv-tp-header__title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #111;
	margin: 0 0 8px;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.vv-tp-header__highlight {
	color: #e8001c;
}

.vv-tp-header__sub {
	font-size: 1.05rem;
	color: #777;
	margin: 0;
	font-weight: 400;
}

/* =============================================================
   VIEWPORT & TRACK
   ============================================================= */

.vv-tp-viewport {
	overflow: hidden;
	margin: 0 -12px;
	padding: 8px 0;
	cursor: grab;
	touch-action: pan-x;
	user-select: none;
	-webkit-user-select: none;
}

.vv-tp-viewport:active,
.vv-tp-viewport.is-dragging {
	cursor: grabbing;
}

.vv-tp-track {
	display: flex;
	gap: 24px;
	padding: 0 12px;
	will-change: transform;
}

/* =============================================================
   CARD — base
   ============================================================= */

.vv-tp-card {
	flex: 0 0 280px;
	width: 280px;
	height: 498px;
	aspect-ratio: 9 / 16;
	border-radius: 18px;
	overflow: hidden;
	background: #fff;
	border: 1px solid #eee;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

/* =============================================================
   CARD — Video (9:16 Full Fill)
   ============================================================= */

.vv-tp-card--video {
	position: relative;
	padding: 0;
	border: none;
	background: #000;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.vv-tp-card__thumb {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	transform: translateZ(0);
}

.vv-tp-card__thumb-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.vv-tp-card__video-bg {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 320%;
	height: 180%;
	min-width: 100%;
	min-height: 100%;
	transform: translate(-50%, -50%);
	border: none;
	z-index: 0;
	object-fit: cover;
	pointer-events: none;
}

.vv-tp-card__play {
	position: absolute;
	bottom: 16px;
	right: 16px;
	display: flex;
	align-items: center;
	gap: 6px;
	height: 34px;
	padding: 0 14px;
	border-radius: 17px;
	background: rgba(0, 0, 0, 0.65);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	cursor: pointer;
	z-index: 3;
	transition: background 0.25s ease, transform 0.25s ease;
}

.vv-tp-card__play:hover {
	background: #e8001c;
	border-color: #e8001c;
	transform: scale(1.05);
}

.vv-tp-card__play svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}

.vv-tp-card__play:focus-visible {
	outline: 3px solid #e8001c;
	outline-offset: 3px;
}

.vv-tp-card__play-time {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1;
}

.vv-tp-card__overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 36px 16px 16px;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
	z-index: 2;
}

.vv-tp-card__name {
	display: block;
	font-size: 0.95rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
}

.vv-tp-card__vehicle {
	display: block;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.75);
	font-weight: 500;
	margin-top: 2px;
}

/* =============================================================
   CARD — Text (9:16 Vertical Balance)
   ============================================================= */

.vv-tp-card--text {
	display: flex;
	flex-direction: column;
}

.vv-tp-card__text-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 36px 26px 28px;
}

.vv-tp-card__quote-wrap {
	flex: 1;
	position: relative;
	display: flex;
	flex-direction: column;
}

.vv-tp-card__quote-mark {
	font-size: 4.8rem;
	font-weight: 700;
	line-height: 0.7;
	color: rgba(232, 0, 28, 0.08);
	font-family: Georgia, 'Times New Roman', serif;
	margin-bottom: 6px;
}

.vv-tp-card__quote {
	font-size: 0.95rem;
	font-weight: 450;
	color: #333;
	line-height: 1.65;
	margin: 0;
	flex: 1;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 8;
	-webkit-box-orient: vertical;
}

.vv-tp-card__author {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid #f0f0f0;
	flex-wrap: wrap;
}

.vv-tp-card__avatar {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.vv-tp-card__author-info {
	flex: 1;
	min-width: 0;
}

.vv-tp-card__author-name {
	font-size: 0.92rem;
	font-weight: 700;
	color: #111;
	line-height: 1.2;
}

.vv-tp-card__author-location {
	font-size: 0.74rem;
	font-weight: 500;
	color: #999;
}

.vv-tp-card--text .vv-tp-card__vehicle {
	font-size: 0.74rem;
	font-weight: 600;
	color: #e8001c;
	width: 100%;
	margin-top: 4px;
}

/* =============================================================
   VIDEO MODAL (9:16 Vertical Reel Player)
   ============================================================= */

.vv-tp-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease, visibility 0.35s ease;
}

.vv-tp-modal.is-open {
	opacity: 1;
	visibility: visible;
}

.vv-tp-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(8px);
}

.vv-tp-modal__content {
	position: relative;
	width: 90%;
	max-width: 420px;
	height: 82vh;
	max-height: 740px;
	aspect-ratio: 9 / 16;
	border-radius: 20px;
	overflow: hidden;
	background: #000;
	transform: scale(0.92) translateY(20px);
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.vv-tp-modal.is-open .vv-tp-modal__content {
	transform: scale(1) translateY(0);
}

.vv-tp-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 10;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.25s ease, transform 0.25s ease;
	padding: 0;
}

.vv-tp-modal__close:hover {
	background: rgba(232, 0, 28, 0.9);
	transform: scale(1.08);
}

.vv-tp-modal__close:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 3px;
}

.vv-tp-modal__video {
	position: relative;
	width: 100%;
	height: 100%;
	padding-bottom: 0;
}

.vv-tp-modal__video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */

@media (max-width: 1100px) {
	.vv-tp-card {
		flex: 0 0 260px;
		width: 260px;
		height: 462px;
	}

	.vv-tp-card__text-inner {
		padding: 28px 22px 20px;
	}

	.vv-tp-card__quote {
		font-size: 0.88rem;
	}

	.vv-tp-card__quote-mark {
		font-size: 4rem;
	}

	.vv-tp-header__title {
		font-size: 2rem;
	}
}

@media (max-width: 768px) {
	.vv-testimonials-premium {
		padding: 70px 0 90px;
	}

	.vv-tp-header {
		margin-bottom: 40px;
	}

	.vv-tp-header__title {
		font-size: 1.7rem;
	}

	.vv-tp-card {
		flex: 0 0 280px;
		height: 380px;
	}

	.vv-tp-card__text-inner {
		padding: 24px 18px 18px;
	}

	.vv-tp-card__quote {
		font-size: 0.82rem;
		-webkit-line-clamp: 5;
	}

	.vv-tp-card__quote-mark {
		font-size: 3.2rem;
	}

	.vv-tp-card__play {
		height: 28px;
		padding: 0 12px;
	}

	.vv-tp-card__play svg {
		width: 12px;
		height: 12px;
	}
}

@media (max-width: 540px) {
	.vv-testimonials-premium {
		padding: 50px 0 70px;
	}

	.vv-tp-container {
		padding: 0 16px;
	}

	.vv-tp-header__title {
		font-size: 1.4rem;
	}

	.vv-tp-header__sub {
		font-size: 0.9rem;
	}

	.vv-tp-card {
		flex: 0 0 260px;
		height: 350px;
		border-radius: 14px;
	}

	.vv-tp-card__text-inner {
		padding: 20px 16px 16px;
	}

	.vv-tp-card__quote {
		font-size: 0.78rem;
		-webkit-line-clamp: 5;
	}

	.vv-tp-card__quote-mark {
		font-size: 2.8rem;
	}

	.vv-tp-card__author {
		margin-top: 12px;
		padding-top: 12px;
	}

	.vv-tp-card__avatar {
		width: 36px;
		height: 36px;
	}

	.vv-tp-card__author-name {
		font-size: 0.8rem;
	}

	.vv-tp-card__play {
		bottom: 10px;
		right: 10px;
		height: 26px;
		padding: 0 10px;
	}

	.vv-tp-card__play svg {
		width: 11px;
		height: 11px;
	}

	.vv-tp-viewport {
		margin: 0 -8px;
	}

	.vv-tp-track {
		gap: 16px;
		padding: 0 8px;
	}

	.vv-tp-modal__content {
		width: 95%;
		border-radius: 12px;
	}
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
	.vv-tp-track,
	.vv-tp-modal,
	.vv-tp-modal__content,
	.vv-tp-card__play {
		transition: none !important;
		animation: none !important;
	}

	.vv-tp-modal {
		opacity: 1;
		visibility: visible;
	}

	.vv-tp-modal__content {
		transform: none;
	}
}

/* =============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================= */

/* Fallback: if JS observer never fires, force elements visible after 3s */
@keyframes vv-reveal-fallback {
	0%   { opacity: 0; }
	100% { opacity: 1; transform: none; clip-path: none; }
}

.vv-reveal {
	opacity: 0;
	will-change: transform, opacity;
	transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1),
	            transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1),
	            clip-path 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition-delay: var(--reveal-delay, 0ms);
	/* Fallback: auto-show after 3s if observer never fires */
	animation: vv-reveal-fallback 0.6s ease 3s forwards;
}

/* 1. Fade Up (Default) */
.vv-reveal--fade-up {
	transform: translateY(50px);
}

/* 2. Fade Down */
.vv-reveal--fade-down {
	transform: translateY(-50px);
}

/* 3. Scale Up */
.vv-reveal--scale-up {
	transform: scale(0.92) translateY(30px);
}

/* 4. Slide Left */
.vv-reveal--left {
	transform: translateX(-50px);
}

/* 5. Slide Right */
.vv-reveal--right {
	transform: translateX(50px);
}

/* 6. Clip Path Expand (Cinematic) */
.vv-reveal--clip-up {
	clip-path: inset(100% 0 0 0);
}

/* Active State */
.vv-reveal.vv-reveal--active {
	opacity: 1;
	transform: translate(0) scale(1);
	clip-path: inset(0 0 0 0);
}

/* Stagger delay utilities */
.vv-delay-100 { --reveal-delay: 100ms; }
.vv-delay-150 { --reveal-delay: 150ms; }
.vv-delay-200 { --reveal-delay: 200ms; }
.vv-delay-300 { --reveal-delay: 300ms; }
.vv-delay-400 { --reveal-delay: 400ms; }
.vv-delay-500 { --reveal-delay: 500ms; }
.vv-delay-600 { --reveal-delay: 600ms; }

/* -------------------------------------------------------------
   CAR PRODUCT CARDS & CATEGORY TABS LUXURY 3D REVEAL
   ------------------------------------------------------------- */
.vv-fp__track,
.vv-categories__grid {
	perspective: 1200px;
	perspective-origin: 50% 50%;
}

.vv-card-reveal,
.vv-product-card {
	opacity: 0;
	transform: perspective(1000px) translateY(55px) translateZ(-45px) rotateX(12deg) scale(0.92);
	filter: blur(6px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0);
	will-change: transform, opacity, filter, box-shadow;
	transition: opacity 0.85s cubic-bezier(0.215, 0.61, 0.355, 1),
	            transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
	            filter 0.85s cubic-bezier(0.215, 0.61, 0.355, 1),
	            box-shadow 0.85s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: calc(var(--card-index, 0) * 90ms);
	/* Fallback: auto-show after 3.5s if observer never fires */
	animation: vv-reveal-fallback 0.6s ease 3.5s forwards;
}

.vv-card-reveal.vv-card-reveal--active,
.vv-product-card.vv-card-reveal--active,
.vv-reveal--active .vv-card-reveal,
.vv-categories__grid.active .vv-card-reveal,
.vv-fp__track--active .vv-card-reveal {
	opacity: 1;
	transform: perspective(1000px) translateY(0) translateZ(0) rotateX(0deg) scale(1);
	filter: blur(0);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* Micro-staggered inner card elements */
.vv-product-card .vv-product-card__img {
	transform: scale(1.1);
	transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.vv-card-reveal.vv-card-reveal--active .vv-product-card__img,
.vv-product-card.vv-card-reveal--active .vv-product-card__img,
.vv-reveal--active .vv-card-reveal .vv-product-card__img,
.vv-categories__grid.active .vv-card-reveal .vv-product-card__img,
.vv-fp__track--active .vv-card-reveal .vv-product-card__img {
	transform: scale(1);
}

.vv-product-card .vv-product-card__badge {
	opacity: 0;
	transform: translateY(-8px) scale(0.85);
	transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
	            transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	transition-delay: calc(var(--card-index, 0) * 90ms + 220ms);
}

.vv-card-reveal.vv-card-reveal--active .vv-product-card__badge,
.vv-product-card.vv-card-reveal--active .vv-product-card__badge,
.vv-reveal--active .vv-card-reveal .vv-product-card__badge,
.vv-categories__grid.active .vv-card-reveal .vv-product-card__badge,
.vv-fp__track--active .vv-card-reveal .vv-product-card__badge {
	opacity: 1;
	transform: translateY(0) scale(1);
}

/* Glass Sheen Light Sweep on Reveal */
.vv-product-card__image {
	position: relative;
	overflow: hidden;
}

.vv-product-card__image::after {
	content: '';
	position: absolute;
	top: 0;
	left: -120%;
	width: 70%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	transform: skewX(-20deg);
	pointer-events: none;
	z-index: 2;
	opacity: 0;
}

.vv-card-reveal.vv-card-reveal--active .vv-product-card__image::after,
.vv-product-card.vv-card-reveal--active .vv-product-card__image::after,
.vv-reveal--active .vv-card-reveal .vv-product-card__image::after,
.vv-categories__grid.active .vv-card-reveal .vv-product-card__image::after,
.vv-fp__track--active .vv-card-reveal .vv-product-card__image::after {
	animation: vvSheenSweep 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	animation-delay: calc(var(--card-index, 0) * 90ms + 280ms);
}

@keyframes vvSheenSweep {
	0%   { left: -120%; opacity: 0; }
	30%  { opacity: 1; }
	100% { left: 180%; opacity: 0; }
}

/* Category Tab Staggered 3D Tilt Entry */
.vv-categories__tab {
	opacity: 0;
	transform: perspective(600px) translateY(24px) rotateX(15deg) scale(0.92);
	will-change: transform, opacity;
	transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
	            transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
	            background-color 0.3s ease,
	            color 0.3s ease,
	            box-shadow 0.3s ease;
	transition-delay: calc(var(--tab-index, 0) * 60ms);
}

.vv-reveal--active .vv-categories__tab,
.vv-categories__tabs-wrapper.vv-reveal--active .vv-categories__tab,
.vv-categories__tab.vv-tab-reveal--active {
	opacity: 1;
	transform: perspective(600px) translateY(0) rotateX(0deg) scale(1);
}

/* Active tab override to ensure opacity remains 1 */
.vv-categories__tab.active {
	opacity: 1;
}

/* Tab Switching 3D Spring Reveal Animation */
.vv-card-slide-in {
	animation: vvCardLuxuryReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) both !important;
	animation-delay: calc(var(--card-index, 0) * 80ms) !important;
}

@keyframes vvCardLuxuryReveal {
	0% {
		opacity: 0;
		transform: perspective(1000px) translateY(45px) translateZ(-40px) rotateX(10deg) scale(0.92);
		filter: blur(8px);
	}
	65% {
		opacity: 1;
		transform: perspective(1000px) translateY(-3px) translateZ(4px) rotateX(-1deg) scale(1.01);
		filter: blur(0);
	}
	100% {
		opacity: 1;
		transform: perspective(1000px) translateY(0) translateZ(0) rotateX(0deg) scale(1);
		filter: blur(0);
	}
}


/* =============================================================
   PERFORMANCE — Reduced Motion & Accessibility
   ============================================================= */

/**
 * Respect user preference for reduced motion.
 * Disables animations that are decorative / non-essential.
 * The core scroll-driven content still shows (opacity 1),
 * but without the transform/clip animations.
 */
@media (prefers-reduced-motion: reduce) {
	/* Reveal elements become instantly visible */
	.vv-reveal,
	.vv-reveal--fade-up,
	.vv-reveal--fade-down,
	.vv-reveal--scale-up,
	.vv-reveal--left,
	.vv-reveal--right,
	.vv-reveal--clip-up {
		opacity: 1;
		transform: none;
		clip-path: none;
		transition: none;
	}

	/* Stop background blob animations */
	.vv-jump__bg-blob {
		animation: none;
	}

	/* Stop brands marquee CSS animation */
	.vv-brands__track {
		animation: none;
		will-change: auto;
	}

	/* Stop car float animation */
	.vv-jump__car--idle .vv-jump__car-mask {
		animation: none;
	}

	/* Stop harbor CTA text animation */
	.vv-harbor-cta__heading {
		animation: none;
	}
}

/* =============================================================
   PERFORMANCE — Touch & Scroll Optimisation
   ============================================================= */

/* Cards get layout/style containment — safe since they are self-contained */
.vv-jump-card {
	contain: layout style;
}

/* =============================================================
   BANK APPROVAL BANNER (Full-width, Slim, Pixel-perfect Design)
   ============================================================= */

.vv-bank-approval {
	padding: 24px 0 44px;
	background: #ffffff;
	width: 100%;
}

/* ── NEW RESPONSIVE FINANCE IMAGE BANNERS ───────────────────────────── */
.vv-finance-banner-wrapper {
	position: relative;
	width: calc(100% - 48px);
	max-width: 1380px;
	margin: 0 auto;
	border-radius: 20px;
	overflow: hidden;
	background: #000000;
	box-shadow: 0 14px 36px rgba(196, 0, 24, 0.22), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.vv-finance-banner {
	position: relative;
	width: 100%;
	line-height: 0;
	display: block;
}

.vv-finance-banner__img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

/* Base CTA Button on Image Banner */
.vv-finance-banner__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #ffffff;
	color: #000000;
	padding: 10px 22px;
	border-radius: 100px;
	font-size: 0.9rem;
	font-weight: 800;
	border: none;
	cursor: pointer;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 12px rgba(255, 255, 255, 0.2);
	transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease;
	white-space: nowrap;
	font-family: 'Manrope', sans-serif;
}

.vv-finance-banner__cta:hover {
	transform: translateY(-3px) scale(1.03);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.6), 0 0 20px rgba(232, 0, 28, 0.5);
	background: #ffffff;
}

.vv-finance-banner__cta-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	background: #e8001c;
	color: #ffffff;
	border-radius: 50%;
	transition: transform 0.25s ease;
}

.vv-finance-banner__cta:hover .vv-finance-banner__cta-icon {
	transform: translateX(3px);
}

/* Desktop Banner Display & CTA Placement (Right side, right above T&C Apply*) */
.vv-finance-banner--desktop {
	display: block;
}

.vv-finance-banner--mobile {
	display: none;
}

.vv-finance-banner__cta--desktop {
	position: absolute;
	right: 5.2%;
	bottom: 30%;
	transform: translateY(0);
	z-index: 5;
}

/* Responsive Breakpoints & Mobile Banner CTA Placement */
@media (max-width: 1200px) {
	.vv-finance-banner__cta--desktop {
		right: 4.5%;
		bottom: 28%;
		padding: 8px 18px;
		font-size: 0.82rem;
	}
	.vv-finance-banner__cta-icon {
		width: 22px;
		height: 22px;
	}
}

@media (max-width: 992px) {
	.vv-finance-banner__cta--desktop {
		right: 4%;
		bottom: 26%;
		padding: 7px 14px;
		font-size: 0.75rem;
		gap: 6px;
	}
}

@media (max-width: 768px) {
	.vv-finance-banner-wrapper {
		width: calc(100% - 24px);
		border-radius: 14px;
	}
	
	.vv-finance-banner--desktop {
		display: none;
	}
	
	.vv-finance-banner--mobile {
		display: block;
	}
	
	/* Mobile Banner CTA: Bottom left over mobile banner image */
	.vv-finance-banner__cta--mobile {
		position: absolute;
		left: 6%;
		bottom: 8%;
		transform: none;
		z-index: 5;
		padding: 6px 14px;
		font-size: 0.72rem;
		gap: 6px;
		box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4), 0 0 10px rgba(232, 0, 28, 0.25);
	}

	.vv-finance-banner__cta--mobile .vv-finance-banner__cta-icon {
		width: 20px;
		height: 20px;
	}

	.vv-finance-banner__cta--mobile .vv-finance-banner__cta-icon svg {
		width: 11px;
		height: 11px;
	}
	
	.vv-finance-banner__cta--mobile:hover {
		transform: translateY(-2px) scale(1.02);
	}
}

@media (max-width: 480px) {
	.vv-finance-banner__cta--mobile {
		left: 6%;
		bottom: 7.5%;
		padding: 5px 12px;
		font-size: 0.68rem;
		gap: 5px;
	}
	.vv-finance-banner__cta--mobile .vv-finance-banner__cta-icon {
		width: 18px;
		height: 18px;
	}
	.vv-finance-banner__cta--mobile .vv-finance-banner__cta-icon svg {
		width: 10px;
		height: 10px;
	}
}

@media (max-width: 380px) {
	.vv-finance-banner__cta--mobile {
		left: 5%;
		bottom: 6.5%;
		padding: 4px 10px;
		font-size: 0.64rem;
		gap: 4px;
	}
	.vv-finance-banner__cta--mobile .vv-finance-banner__cta-icon {
		width: 16px;
		height: 16px;
	}
	.vv-finance-banner__cta--mobile .vv-finance-banner__cta-icon svg {
		width: 9px;
		height: 9px;
	}
}

/* Modal Styling & Scroll Fix */
#vv-eligibility-modal {
	overflow-y: auto !important;
	-webkit-overflow-scrolling: touch !important;
	padding: 24px 0;
	box-sizing: border-box;
}

.vv-eligibility-modal__dialog {
	max-width: 680px;
	width: calc(100% - 32px);
	max-height: 85vh;
	margin: auto;
	border-radius: 24px;
	overflow: hidden;
	background: #ffffff;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 2;
}

.vv-eligibility-modal__header {
	background: #111111;
	color: #ffffff;
	padding: 20px 28px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-shrink: 0;
}

.vv-eligibility-modal__badge {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #e8001c;
	margin-bottom: 4px;
	display: block;
}

.vv-eligibility-modal__header .vv-modal__title {
	margin: 0;
	font-size: 1.4rem;
	font-weight: 800;
	color: #ffffff;
}

.vv-eligibility-modal__close {
	color: rgba(255, 255, 255, 0.6);
	background: rgba(255, 255, 255, 0.1);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.2s ease, background 0.2s ease;
	border: none;
	cursor: pointer;
}

.vv-eligibility-modal__close:hover {
	color: #ffffff;
	background: #e8001c;
}

.vv-eligibility-modal__body {
	padding: 28px;
	overflow-y: auto !important;
	-webkit-overflow-scrolling: touch !important;
	overscroll-behavior: contain;
	touch-action: pan-y;
	flex: 1 1 auto;
	max-height: calc(85vh - 85px);
}

.vv-eligibility__checklist-box {
	background: #FFF5F5;
	border: 1px solid #FFE0E0;
	border-radius: 16px;
	padding: 20px 24px;
	margin-bottom: 28px;
}

.vv-eligibility__checklist-title {
	margin: 0 0 14px;
	font-size: 0.95rem;
	font-weight: 800;
	color: #111111;
	display: flex;
	align-items: center;
	gap: 8px;
}

.vv-eligibility__checklist-items {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 16px;
}

.vv-eligibility__checklist-items li {
	font-size: 0.82rem;
	color: #333333;
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.vv-eligibility__check-icon {
	color: #e8001c;
	font-weight: 900;
}

.vv-eligibility__check-desc {
	color: #777777;
	font-size: 0.75rem;
}

.vv-eligibility__form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 24px;
}

.vv-eligibility__field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.vv-eligibility__field--full {
	grid-column: 1 / -1;
}

.vv-eligibility__field label {
	font-size: 0.8rem;
	font-weight: 700;
	color: #222222;
}

.vv-eligibility__field input {
	width: 100%;
	padding: 12px 16px;
	border-radius: 10px;
	border: 1.5px solid #E5E5E5;
	font-size: 0.9rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	box-sizing: border-box;
}

.vv-eligibility__field input:focus {
	outline: none;
	border-color: #e8001c;
	box-shadow: 0 0 0 3px rgba(232, 0, 28, 0.12);
}

.vv-eligibility__actions {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.vv-eligibility__submit-btn {
	width: 100%;
	padding: 14px;
	background: #e8001c;
	color: #ffffff;
	border: none;
	border-radius: 12px;
	font-size: 0.98rem;
	font-weight: 800;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: background 0.2s ease, transform 0.15s ease;
}

.vv-eligibility__submit-btn:hover {
	background: #c40018;
	transform: translateY(-1px);
}

.vv-eligibility__divider {
	text-align: center;
	position: relative;
	margin: 6px 0;
}

.vv-eligibility__divider::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 1px;
	background: #EEEEEE;
}

.vv-eligibility__divider span {
	position: relative;
	background: #ffffff;
	padding: 0 12px;
	font-size: 0.72rem;
	font-weight: 800;
	color: #999999;
	letter-spacing: 0.08em;
}

.vv-eligibility__email-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px;
	border-radius: 12px;
	border: 1.5px solid #111111;
	color: #111111;
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.vv-eligibility__email-link:hover {
	background: #111111;
	color: #ffffff;
}

.vv-eligibility__success-msg {
	text-align: center;
	padding: 24px;
	background: #ecfdf5;
	border-radius: 16px;
	color: #065f46;
}

.vv-eligibility__success-msg p {
	margin: 6px 0 0;
	font-size: 0.9rem;
}

@media (max-width: 992px) {
	.vv-bank-banner__content {
		flex-direction: column;
		text-align: center;
		align-items: center;
	}
	.vv-bank-banner__left {
		align-items: center;
	}
	.vv-bank-banner__right {
		align-items: center;
	}
}

@media (max-width: 600px) {
	.vv-bank-banner {
		padding: 28px 20px;
	}
	.vv-eligibility__checklist-items {
		grid-template-columns: 1fr;
	}
	.vv-eligibility__form-grid {
		grid-template-columns: 1fr;
	}
}

/* =============================================================
   FREQUENTLY ASKED QUESTIONS (FAQ)
   ============================================================= */

.vv-faq {
	background: #ffffff;
	padding: 90px 0;
	border-top: 1px solid #f0f0f0;
}

.vv-faq__header {
	text-align: center;
	margin-bottom: 52px;
}

.vv-faq__badge {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.15em;
	color: #e8001c;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.vv-faq__title {
	font-family: 'Manrope', sans-serif;
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 900;
	color: #111111;
	margin: 0 0 16px;
	letter-spacing: -0.02em;
	line-height: 1.15;
}

.vv-faq__subtitle {
	font-size: 1rem;
	color: #666666;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.vv-faq__accordion {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 860px;
	margin: 0 auto;
}

.vv-faq__item {
	background: #ffffff;
	border: 1.5px solid #eaeaea;
	border-radius: 16px;
	overflow: hidden;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.vv-faq__item:hover {
	border-color: #d0d0d0;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.vv-faq__item--active {
	border-color: #e8001c;
	box-shadow: 0 8px 24px rgba(232, 0, 28, 0.08);
}

.vv-faq__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 28px;
	background: transparent;
	border: none;
	cursor: pointer;
	text-align: left;
	gap: 16px;
	color: #111111;
	transition: color 0.2s ease;
}

.vv-faq__question-text {
	font-family: 'Manrope', sans-serif;
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.35;
	color: #111111;
}

.vv-faq__item--active .vv-faq__question-text,
.vv-faq__question:hover .vv-faq__question-text {
	color: #e8001c;
}

.vv-faq__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #f5f5f5;
	color: #111111;
	flex-shrink: 0;
	transition: background 0.2s ease, color 0.2s ease, transform 0.25s ease;
}

.vv-faq__item--active .vv-faq__icon {
	background: #e8001c;
	color: #ffffff;
}

.vv-faq__icon-vert {
	transition: opacity 0.2s ease;
}

.vv-faq__item--active .vv-faq__icon-vert {
	opacity: 0;
}

.vv-faq__answer {
	border-top: 1px solid transparent;
	transition: border-color 0.2s ease;
}

.vv-faq__item--active .vv-faq__answer {
	border-top-color: #f5f5f5;
}

.vv-faq__answer-inner {
	padding: 0 28px 22px;
}

.vv-faq__answer-inner p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.65;
	color: #555555;
}

.vv-faq__footer {
	text-align: center;
	margin-top: 48px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.vv-faq__footer p {
	margin: 0;
	font-size: 0.95rem;
	color: #666666;
	font-weight: 500;
}

.vv-faq__contact-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #111111;
	color: #ffffff;
	padding: 12px 26px;
	border-radius: 100px;
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.vv-faq__contact-btn:hover {
	background: #e8001c;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(232, 0, 28, 0.25);
}

@media (max-width: 768px) {
	.vv-faq {
		padding: 60px 0;
	}
	.vv-faq__question {
		padding: 18px 20px;
	}
	.vv-faq__question-text {
		font-size: 0.98rem;
	}
	.vv-faq__answer-inner {
		padding: 0 20px 18px;
	}
}

/* Bank Partners Logo Strip */
.vv-bank-partners {
	max-width: 1380px;
	margin: 24px auto 0;
	padding: 0 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}

.vv-bank-partners__title {
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #666666;
	text-transform: uppercase;
	text-align: center;
}

.vv-bank-partners__carousel {
	width: 100%;
}

.vv-bank-partners__track {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.vv-bank-partners__group {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.vv-bank-partners__group--clone {
	display: none;
}

@media (max-width: 768px) {
	.vv-bank-partners__carousel {
		overflow: hidden;
		position: relative;
		mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
		-webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
	}
	.vv-bank-partners__track {
		flex-wrap: nowrap;
		width: max-content;
		gap: 0;
		animation: vv-marquee 25s linear infinite;
		justify-content: flex-start;
	}
	.vv-bank-partners__carousel:hover .vv-bank-partners__track {
		animation-play-state: paused;
	}
	.vv-bank-partners__group {
		flex-wrap: nowrap;
		justify-content: space-around;
		gap: 16px;
		padding-right: 16px;
	}
	.vv-bank-partners__group--clone {
		display: flex;
	}
}

.vv-bank-partner-item {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 175px;
	flex-shrink: 0;
	gap: 10px;
	padding: 8px 16px;
	border-radius: 100px;
	background: rgba(232, 0, 28, 0.05); /* Theme Red tint */
	border: 1px solid rgba(232, 0, 28, 0.12);
	transition: all 0.25s ease;
}

.vv-bank-partner-item:hover {
	transform: translateY(-2px);
	background: rgba(232, 0, 28, 0.08);
	border-color: rgba(232, 0, 28, 0.25);
	box-shadow: 0 4px 12px rgba(232, 0, 28, 0.08);
}

.vv-bank-partner-img {
	height: 24px;
	width: auto;
	object-fit: contain;
	border-radius: 4px;
}

.vv-bank-partner-name {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: #111111;
}

/* Bento Card Badge & High-Contrast Typography Styles */
.vv-bento-card__badge-tag {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	padding: 5px 12px;
	border-radius: 100px;
	margin-bottom: 10px;
	text-transform: uppercase;
	width: fit-content;
}

.vv-bento-card__badge-tag--white {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.22);
	backdrop-filter: blur(4px);
}

.vv-bento-card__badge-tag--red {
	color: #e8001c;
	background: rgba(232, 0, 28, 0.08);
}

.vv-bento-card__badge-tag--gold {
	color: #c25e00;
	background: rgba(245, 158, 11, 0.16);
}

.vv-bento-card__title--white {
	color: #ffffff !important;
	font-size: 1.15rem;
	font-weight: 800;
	line-height: 1.3;
}

.vv-bento-card__desc--white {
	color: rgba(255, 255, 255, 0.94) !important;
	font-size: 0.88rem;
	line-height: 1.5;
}

.vv-bento-card__title--dark {
	color: #111111 !important;
	font-size: 1.15rem;
	font-weight: 800;
	line-height: 1.3;
}

.vv-bento-card__desc--dark {
	color: #444444 !important;
	font-size: 0.88rem;
	line-height: 1.5;
}

.vv-bento-card__tnc {
	display: block;
	margin-top: 6px;
	font-size: 0.72rem;
	color: #777777;
	font-weight: 600;
}

.vv-bento-card__content--side {
	padding: 24px 28px;
	background: #ffffff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 8px;
	flex: 1;
}

