/* ==========================================================================
   VSL Clutch Landing — exact match for /clutch/Desktop.png and /clutch/Mobile.png
   Uses the netstudio-wp theme's existing palette (Open Sans + #fe8e06 + #00b050).
   All rules scoped under .vsl-clutch to keep them out of the rest of the theme.
   ========================================================================== */

.vsl-clutch {
	--vc-orange: #fe8e06;
	--vc-orange-dark: #e67d04;
	--vc-orange-soft: #fff1e0;
	--vc-navy: #353c3e;
	--vc-navy-2: #2a3033;
	--vc-green: #00b050;
	--vc-red: #e53935;
	--vc-text: #353c3e;
	--vc-muted: #65707b;
	--vc-line: #e3e6ec;
	--vc-cream: #fff7e1;

	font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color: var(--vc-text);
	font-size: 15px;
	line-height: 1.55;
}
.vsl-clutch * { box-sizing: border-box; }
.vsl-clutch .vc-wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.vsl-clutch .vc-only-mobile { display: none; }

/* Generic underline accent used under headings */
.vsl-clutch .vc-rule {
	width: 84px;
	height: 3px;
	background: var(--vc-orange);
	margin: 10px auto 22px;
}
.vsl-clutch .vc-rule--left { margin-left: 0; }

.vsl-clutch .vc-title {
	font-family: 'Open Sans', sans-serif;
	font-size: 26px;
	font-weight: 700;
	color: var(--vc-navy);
	text-align: center;
	margin: 0;
	letter-spacing: -0.01em;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.vsl-clutch .vc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 24px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 3px;
	border: 2px solid transparent;
	line-height: 1;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.vsl-clutch .vc-btn i { font-size: 13px; }
.vsl-clutch .vc-btn--orange { background: var(--vc-orange); color: #fff; }
.vsl-clutch .vc-btn--orange:hover { background: var(--vc-orange-dark); }
.vsl-clutch .vc-btn--outline-orange {
	background: #fff;
	color: var(--vc-orange);
	border-color: var(--vc-orange);
}
.vsl-clutch .vc-btn--outline-orange:hover { background: var(--vc-orange); color: #fff; }

/* Final CTA buttons */
.vsl-clutch .vc-btn--final-primary {
	background: var(--vc-navy);
	color: #fff;
	border-color: var(--vc-navy);
	padding: 16px 30px;
	font-size: 14px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
	transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.vsl-clutch .vc-btn--final-primary:hover {
	background: #1f2426;
	transform: translateY(-2px);
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
}
.vsl-clutch .vc-btn--final-primary i { transition: transform 0.25s ease; }
.vsl-clutch .vc-btn--final-primary:hover i { transform: translateX(3px); }
.vsl-clutch .vc-btn--final-secondary {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.55);
	padding: 16px 30px;
	font-size: 14px;
	transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.vsl-clutch .vc-btn--final-secondary:hover {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	border-color: #fff;
	transform: translateY(-2px);
}

/* ==========================================================================
   1. HERO
   Anchored card: butts flush against the site nav, no top margin or top
   border, square top corners. Downward-only shadow keeps the card grounded
   against the nav above rather than floating.
   ========================================================================== */
.vsl-clutch .vc-hero {
	position: relative;
	background: #fff;
	border: 1px solid var(--vc-line);
	border-top: none;
	margin: 0 auto 30px;
	max-width: 1180px;
	border-radius: 0;
	overflow: hidden;
	box-shadow: 0 12px 22px -10px rgba(0, 0, 0, 0.10);
}
/* Right accent rail — runs the full height of the card on the right edge.
   Soft leftward glow blends into the photo so it feels integrated. */
.vsl-clutch .vc-hero::before {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 5px;
	z-index: 6;
	background: linear-gradient(
		180deg,
		var(--vc-orange-dark) 0%,
		var(--vc-orange) 22%,
		var(--vc-orange) 78%,
		rgba(254, 142, 6, 0.55) 100%
	);
	box-shadow: -6px 0 22px -6px rgba(254, 142, 6, 0.32);
	pointer-events: none;
}
.vsl-clutch .vc-hero__inner {
	position: relative;
	min-height: 380px;
	overflow: hidden;
}

/* Full-width background photo */
.vsl-clutch .vc-hero__photo {
	position: absolute;
	inset: 0;
	z-index: 1;
}
.vsl-clutch .vc-hero__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* Bias the crop toward the top of the photo so the subject's head
	   isn't trimmed off when the hero is shorter than the image aspect. */
	object-position: center 15%;
	display: block;
	/* Slide the photo right so the subject lands in the visible (un-faded)
	   right portion of the hero. Left edge clipping is fine — the text
	   panel + white fade cover that area. */
	transform: translateX(22%);
}

/* White fade overlay: solid white on the left, fades to transparent
   around the centre so the photo blends in rather than starting hard. */
.vsl-clutch .vc-hero__fade {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(
		to right,
		#fff 0%,
		#fff 36%,
		rgba(255, 255, 255, 0.95) 42%,
		rgba(255, 255, 255, 0.65) 50%,
		rgba(255, 255, 255, 0.0) 62%
	);
	pointer-events: none;
}

.vsl-clutch .vc-hero__copy {
	position: relative;
	z-index: 4;
	padding: 40px 44px 44px;
	max-width: 58%;
}
.vsl-clutch .vc-hero__lede {
	font-size: 26px;
	font-weight: 700;
	color: var(--vc-navy);
	margin: 0 0 4px;
	line-height: 1.2;
	letter-spacing: -0.01em;
	/* Single-line: size the heading to its content and forbid wrapping so
	   the lede sits on one line even when the 58% copy panel is narrower
	   than the text. Mobile breakpoint resets this. */
	display: inline-block;
	white-space: nowrap;
}
.vsl-clutch .vc-hero__title {
	font-size: 30px;
	font-weight: 800;
	color: var(--vc-orange);
	margin: 0 0 6px;
	line-height: 1.15;
	border-bottom: 3px solid var(--vc-orange);
	padding-bottom: 10px;
	display: inline-block;
}
.vsl-clutch .vc-hero__sub {
	font-size: 14px;
	color: var(--vc-navy);
	margin: 14px 0 18px;
	max-width: 460px;
}
.vsl-clutch .vc-hero__bullets {
	list-style: none;
	padding: 0;
	margin: 0 0 22px;
}
.vsl-clutch .vc-hero__bullets li {
	font-size: 14px;
	color: var(--vc-navy);
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.vsl-clutch .vc-hero__bullets li i {
	color: var(--vc-green);
	font-size: 13px;
	width: 14px;
}
.vsl-clutch .vc-hero__ctas {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* ---- Custom Clutch badge (matches /clutch/5.png) ----
   White card on top with logo + star row, dark ribbon underneath with
   notched bottom corners. Anchored bottom-right over the orange wedge. */
.vsl-clutch .vc-clutch-badge {
	position: absolute;
	right: 26px;
	bottom: 22px;
	z-index: 5;
	width: 180px;
	max-width: 42%;
	text-decoration: none;
	color: inherit;
	display: block;
	filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
	transition: transform 0.15s ease;
}
.vsl-clutch .vc-clutch-badge:hover { transform: translateY(-2px); }

.vsl-clutch .vc-clutch-badge__card {
	background: #fff;
	border-radius: 8px 8px 0 0;
	padding: 14px 14px 12px;
	text-align: center;
}
.vsl-clutch .vc-clutch-badge__logo {
	display: block;
	width: 90px;
	height: auto;
	margin: 2px auto 0;
}
.vsl-clutch .vc-clutch-badge__rating {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 8px;
}
.vsl-clutch .vc-clutch-badge__stars {
	color: #e62415;
	font-size: 15px;
	letter-spacing: 1px;
	line-height: 1;
}
.vsl-clutch .vc-clutch-badge__score {
	color: #1a1a1a;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
}

.vsl-clutch .vc-clutch-badge__ribbon {
	background: #1f2a3a;
	color: #fff;
	padding: 9px 14px 20px;
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-align: center;
	line-height: 1;
	margin-top: -1px; /* tuck under the white card cleanly */
	clip-path: polygon(
		0% 0%,         /* top-left */
		100% 0%,       /* top-right */
		100% 65%,      /* right side */
		50% 100%,      /* single bottom-center point */
		0% 65%         /* left side */
	);
}
.vsl-clutch .vc-clutch-badge__ribbon strong {
	font-weight: 800;
	font-size: 13px;
}

/* ---- Official Clutch embed variant ----
   The wrapper keeps the old badge's hero placement; inside it the official
   type-14 widget renders in an iframe (needs a little more width than the
   old 180px card). The hand-built badge markup stays as a hidden fallback,
   revealed by JS if the widget script fails to load. */
.vsl-clutch .vc-clutch-badge--embed {
	width: 230px;
	max-width: 60%;
}
.vsl-clutch .vc-clutch-badge--embed .clutch-widget iframe { display: block; }
.vsl-clutch .vc-clutch-badge__fallback {
	display: block;
	text-decoration: none;
	color: inherit;
}
.vsl-clutch .vc-clutch-badge__fallback[hidden] { display: none; }
.vsl-clutch .vc-clutch-badge__fallback .vc-clutch-badge__card,
.vsl-clutch .vc-clutch-badge__fallback .vc-clutch-badge__ribbon { display: block; }
/* ==========================================================================
   1b + 1c. UNIFIED TRUST + FEATURES — single light-grey surface
   ========================================================================== */
.vsl-clutch .vc-logos {
	background: #fafbfc;
	padding: 48px 0 28px;
}
.vsl-clutch .vc-logos__eyebrow {
	margin: 0 0 10px;
	text-align: center;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--vc-orange);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
}
.vsl-clutch .vc-logos__eyebrow::before,
.vsl-clutch .vc-logos__eyebrow::after {
	content: '';
	display: block;
	width: 36px;
	height: 1px;
	background: var(--vc-orange);
	opacity: 0.55;
}
.vsl-clutch .vc-logos__lede {
	margin: 0 0 26px;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	color: var(--vc-muted);
	letter-spacing: -0.005em;
}
.vsl-clutch .vc-logos__row {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	flex-wrap: nowrap;
}
.vsl-clutch .vc-logos__row li {
	flex: 1 1 0;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	height: 38px;
}
.vsl-clutch .vc-logos__row img {
	max-width: 100%;
	max-height: 38px;
	width: auto;
	height: auto;
	display: block;
	transition: transform 0.25s ease;
}
.vsl-clutch .vc-logos__row li:hover img {
	transform: translateY(-2px);
}

/* Features — bento layout (title right, cards left, mirror of Why VSL) */
.vsl-clutch .vc-features {
	background: var(--vc-orange-soft);
	padding: 64px 0 60px;
	position: relative;
	overflow: hidden;
}
.vsl-clutch .vc-features::before {
	/* subtle dot pattern, top-left, matches Why VSL aesthetic */
	content: '';
	position: absolute;
	width: 240px;
	height: 240px;
	top: -40px;
	left: -40px;
	background-image: radial-gradient(var(--vc-orange-dark) 1px, transparent 1.5px);
	background-size: 16px 16px;
	opacity: 0.18;
	pointer-events: none;
	z-index: 0;
}
.vsl-clutch .vc-features__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr 1.05fr;
	grid-template-rows: auto auto auto;
	gap: 18px;
	align-items: stretch;
}
.vsl-clutch .vc-features__head {
	grid-column: 3;
	grid-row: 1 / span 3;
	text-align: left;
	margin: 0;
	padding: 4px 0 0 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.vsl-clutch .vc-features__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--vc-orange);
	margin-bottom: 16px;
	align-self: flex-start;
}
.vsl-clutch .vc-features__eyebrow::before {
	content: '';
	display: block;
	width: 32px;
	height: 1px;
	background: var(--vc-orange);
	opacity: 0.7;
}
.vsl-clutch .vc-features__title {
	font-family: 'Open Sans', sans-serif;
	font-size: 34px;
	font-weight: 800;
	color: var(--vc-navy);
	letter-spacing: -0.018em;
	line-height: 1.12;
	margin: 0 0 18px;
}
.vsl-clutch .vc-features__intro {
	margin: 0;
	max-width: 30em;
	font-size: 15px;
	line-height: 1.65;
	color: var(--vc-muted);
}
.vsl-clutch .vc-feature {
	position: relative;
	padding: 26px 24px 22px;
	background: #fff;
	border: 1px solid var(--vc-line);
	border-radius: 14px;
	overflow: hidden;
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.vsl-clutch .vc-feature::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: var(--vc-orange);
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.32s ease;
}
.vsl-clutch .vc-feature:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(53, 60, 62, 0.09);
	border-color: transparent;
}
.vsl-clutch .vc-feature:hover::before { transform: scaleY(1); }
.vsl-clutch .vc-feature__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin: 0 0 14px;
	border-radius: 11px;
	background: var(--vc-orange-soft);
	color: var(--vc-orange);
	font-size: 18px;
	transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.vsl-clutch .vc-feature:hover .vc-feature__icon {
	background: linear-gradient(135deg, var(--vc-orange) 0%, var(--vc-orange-dark) 100%);
	color: #fff;
}
.vsl-clutch .vc-feature__title {
	font-family: 'Open Sans', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: var(--vc-navy);
	line-height: 1.3;
	margin: 0 0 6px;
	letter-spacing: -0.005em;
}
.vsl-clutch .vc-feature__desc {
	margin: 0;
	font-size: 13px;
	line-height: 1.55;
	color: var(--vc-muted);
}

/* ==========================================================================
   1d. WHY VSL — bento layout
   ========================================================================== */
.vsl-clutch .vc-why {
	background: #fff;
	padding: 72px 0 68px;
	position: relative;
	overflow: hidden;
}
.vsl-clutch .vc-why::before {
	/* subtle decorative dot pattern, top-right of section */
	content: '';
	position: absolute;
	width: 240px;
	height: 240px;
	top: -40px;
	right: -40px;
	background-image: radial-gradient(var(--vc-orange) 1px, transparent 1.5px);
	background-size: 16px 16px;
	opacity: 0.10;
	pointer-events: none;
	z-index: 0;
}
.vsl-clutch .vc-why__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.05fr 1fr 1fr;
	grid-template-rows: auto auto auto;
	gap: 18px;
	align-items: stretch;
}
.vsl-clutch .vc-why__lead {
	grid-column: 1;
	grid-row: 1 / span 3;
	padding: 4px 24px 0 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.vsl-clutch .vc-why__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--vc-orange);
	margin-bottom: 16px;
}
.vsl-clutch .vc-why__eyebrow::before {
	content: '';
	display: block;
	width: 32px;
	height: 1px;
	background: var(--vc-orange);
	opacity: 0.7;
}
.vsl-clutch .vc-why__title {
	font-family: 'Open Sans', sans-serif;
	font-size: 34px;
	font-weight: 800;
	line-height: 1.12;
	color: var(--vc-navy);
	margin: 0 0 18px;
	letter-spacing: -0.018em;
}
.vsl-clutch .vc-why__title-em {
	color: var(--vc-orange);
	font-weight: 700;
}
.vsl-clutch .vc-why__intro {
	font-size: 15px;
	color: var(--vc-muted);
	line-height: 1.65;
	margin: 0;
	max-width: 30em;
}

.vsl-clutch .vc-why__card {
	background: #fff;
	border: 1px solid var(--vc-line);
	border-radius: 14px;
	padding: 26px 24px 22px;
	position: relative;
	overflow: hidden;
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.vsl-clutch .vc-why__card::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: var(--vc-orange);
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.32s ease;
}
.vsl-clutch .vc-why__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(53, 60, 62, 0.09);
	border-color: transparent;
}
.vsl-clutch .vc-why__card:hover::before { transform: scaleY(1); }

.vsl-clutch .vc-why__num {
	display: block;
	font-family: 'Open Sans', sans-serif;
	font-size: 26px;
	font-weight: 800;
	color: var(--vc-orange);
	line-height: 1;
	margin-bottom: 14px;
	letter-spacing: -0.02em;
}
.vsl-clutch .vc-why__card-title {
	font-family: 'Open Sans', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: var(--vc-navy);
	margin: 0 0 6px;
	letter-spacing: -0.005em;
	line-height: 1.3;
}
.vsl-clutch .vc-why__card-desc {
	margin: 0;
	font-size: 13px;
	line-height: 1.55;
	color: var(--vc-muted);
}

/* Wide card spans the bottom two columns — different rhythm */
.vsl-clutch .vc-why__card--wide {
	grid-column: 2 / span 2;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0 24px;
	align-items: center;
	padding: 24px 28px;
}
.vsl-clutch .vc-why__card--wide .vc-why__num {
	font-size: 44px;
	margin: 0;
}
.vsl-clutch .vc-why__card--wide .vc-why__card-title { margin-bottom: 4px; }

/* Stagger entrance animation — respects reduced motion */
@keyframes vcFadeUp {
	from { opacity: 0; transform: translateY(18px); }
	to   { opacity: 1; transform: translateY(0); }
}
.vsl-clutch .vc-why__card {
	animation: vcFadeUp 0.7s ease-out both;
}
.vsl-clutch .vc-why__card:nth-of-type(1) { animation-delay: 0.05s; }
.vsl-clutch .vc-why__card:nth-of-type(2) { animation-delay: 0.12s; }
.vsl-clutch .vc-why__card:nth-of-type(3) { animation-delay: 0.19s; }
.vsl-clutch .vc-why__card:nth-of-type(4) { animation-delay: 0.26s; }
.vsl-clutch .vc-why__card:nth-of-type(5) { animation-delay: 0.33s; }
@media (prefers-reduced-motion: reduce) {
	.vsl-clutch .vc-why__card { animation: none; }
	.vsl-clutch .vc-why__card,
	.vsl-clutch .vc-why__card::before { transition: none; }
}

/* ==========================================================================
   2. PROBLEM — Why most campaigns underperform
   ========================================================================== */
.vsl-clutch .vc-underperform {
	background: #fff;
	padding: 64px 0 60px;
}
.vsl-clutch .vc-underperform__head {
	text-align: center;
	margin-bottom: 34px;
}
.vsl-clutch .vc-underperform__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--vc-orange);
	margin-bottom: 14px;
}
.vsl-clutch .vc-underperform__eyebrow::before,
.vsl-clutch .vc-underperform__eyebrow::after {
	content: '';
	display: block;
	width: 28px;
	height: 1px;
	background: var(--vc-orange);
	opacity: 0.7;
}
.vsl-clutch .vc-underperform__title {
	font-family: 'Open Sans', sans-serif;
	font-size: 30px;
	font-weight: 800;
	color: var(--vc-navy);
	letter-spacing: -0.015em;
	line-height: 1.2;
	margin: 0;
	max-width: 820px;
	margin: 0 auto;
}
.vsl-clutch .vc-underperform__grid {
	list-style: none;
	padding: 0;
	margin: 0 0 32px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.vsl-clutch .vc-underperform__card {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 22px 18px;
	background: #fafbfc;
	border: 1px solid var(--vc-line);
	border-radius: 12px;
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.vsl-clutch .vc-underperform__card:hover {
	transform: translateY(-3px);
	border-color: transparent;
	box-shadow: 0 12px 24px rgba(53, 60, 62, 0.08);
}
.vsl-clutch .vc-underperform__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(229, 57, 53, 0.10);
	color: var(--vc-red);
	font-size: 14px;
}
.vsl-clutch .vc-underperform__card p {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	color: var(--vc-navy);
	line-height: 1.4;
}
.vsl-clutch .vc-underperform__result {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	max-width: 720px;
	margin: 0 auto;
	padding: 18px 26px;
	background: var(--vc-orange-soft);
	border-radius: 999px;
	border: 1px solid rgba(254, 142, 6, 0.25);
}
.vsl-clutch .vc-underperform__result-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--vc-navy);
	flex: 0 0 auto;
	padding-right: 14px;
	border-right: 1px solid rgba(53, 60, 62, 0.2);
}
.vsl-clutch .vc-underperform__result-text {
	font-size: 15px;
	font-weight: 700;
	color: var(--vc-orange);
	letter-spacing: -0.005em;
}

/* ==========================================================================
   3. APPROACH — Pipeline-driven pillars (light)
   ========================================================================== */
.vsl-clutch .vc-approach {
	background: #fafbfc;
	padding: 64px 0 60px;
	border-top: 1px solid var(--vc-line);
}
.vsl-clutch .vc-approach__head {
	text-align: center;
	margin-bottom: 36px;
}
.vsl-clutch .vc-approach__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--vc-orange);
	margin-bottom: 14px;
}
.vsl-clutch .vc-approach__eyebrow::before,
.vsl-clutch .vc-approach__eyebrow::after {
	content: '';
	display: block;
	width: 28px;
	height: 1px;
	background: var(--vc-orange);
	opacity: 0.7;
}
.vsl-clutch .vc-approach__title {
	font-family: 'Open Sans', sans-serif;
	font-size: 30px;
	font-weight: 800;
	color: var(--vc-navy);
	letter-spacing: -0.018em;
	line-height: 1.15;
	margin: 0 auto;
	max-width: 720px;
}
.vsl-clutch .vc-approach__title-accent { color: var(--vc-orange); }

.vsl-clutch .vc-approach__cols {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.vsl-clutch .vc-approach__cols li {
	position: relative;
	padding: 30px 24px 24px;
	background: #fff;
	border: 1px solid var(--vc-line);
	border-radius: 14px;
	text-align: center;
	overflow: hidden;
	transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.vsl-clutch .vc-approach__cols li::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--vc-orange) 0%, var(--vc-orange-dark) 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.34s ease;
}
.vsl-clutch .vc-approach__cols li:hover {
	transform: translateY(-4px);
	border-color: transparent;
	box-shadow: 0 16px 32px rgba(53, 60, 62, 0.09);
}
.vsl-clutch .vc-approach__cols li:hover::before { transform: scaleX(1); }

.vsl-clutch .vc-approach__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	margin: 0 auto 14px;
	border-radius: 16px;
	background: linear-gradient(135deg, var(--vc-orange) 0%, var(--vc-orange-dark) 100%);
	color: #fff;
	font-size: 26px;
	box-shadow: 0 8px 18px rgba(254, 142, 6, 0.22);
}
.vsl-clutch .vc-approach__cols h3 {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: var(--vc-navy);
	margin: 0 0 6px;
	letter-spacing: -0.005em;
}
.vsl-clutch .vc-approach__cols p {
	font-size: 13.5px;
	color: var(--vc-muted);
	margin: 0;
	line-height: 1.6;
}


/* ==========================================================================
   4. RESULTS — What you can expect
   ========================================================================== */
.vsl-clutch .vc-results {
	background: #fff;
	padding: 64px 0 60px;
}
.vsl-clutch .vc-results__head {
	text-align: center;
	margin-bottom: 36px;
}
.vsl-clutch .vc-results__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--vc-orange);
	margin-bottom: 14px;
}
.vsl-clutch .vc-results__eyebrow::before,
.vsl-clutch .vc-results__eyebrow::after {
	content: '';
	display: block;
	width: 28px;
	height: 1px;
	background: var(--vc-orange);
	opacity: 0.7;
}
.vsl-clutch .vc-results__title {
	font-family: 'Open Sans', sans-serif;
	font-size: 32px;
	font-weight: 800;
	color: var(--vc-navy);
	letter-spacing: -0.018em;
	line-height: 1.15;
	margin: 0;
}
.vsl-clutch .vc-results__grid {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
.vsl-clutch .vc-results__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 14px;
	padding: 30px 22px;
	background: #fff;
	border: 1px solid var(--vc-line);
	border-radius: 14px;
	text-align: center;
	transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.vsl-clutch .vc-results__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(53, 60, 62, 0.09);
	border-color: transparent;
}
.vsl-clutch .vc-results__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 16px;
	background: linear-gradient(135deg, var(--vc-orange) 0%, var(--vc-orange-dark) 100%);
	color: #fff;
	font-size: 26px;
	box-shadow: 0 8px 18px rgba(254, 142, 6, 0.22);
}
.vsl-clutch .vc-results__card h3 {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: var(--vc-navy);
	letter-spacing: -0.005em;
	line-height: 1.3;
	margin: 0;
}
/* Hero stat card (10–15) */
.vsl-clutch .vc-results__card--hero {
	background: linear-gradient(135deg, var(--vc-orange) 0%, var(--vc-orange-dark) 100%);
	border-color: transparent;
	color: #fff;
	box-shadow: 0 16px 30px rgba(254, 142, 6, 0.28);
	padding: 24px 18px;
}
.vsl-clutch .vc-results__card--hero:hover {
	box-shadow: 0 22px 40px rgba(254, 142, 6, 0.34);
}
.vsl-clutch .vc-results__big {
	font-size: 56px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.025em;
	color: #fff;
}
.vsl-clutch .vc-results__big-label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.92);
	line-height: 1.4;
}

/* Testimonials inside Results */
.vsl-clutch .vc-results__quotes-wrap {
	margin-top: 56px;
	padding-top: 44px;
	border-top: 1px solid var(--vc-line);
	position: relative;
}
.vsl-clutch .vc-results__quotes-heading {
	display: block;
	text-align: center;
	margin: 0 0 28px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--vc-muted);
}
.vsl-clutch .vc-results__quotes {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.vsl-clutch .vc-quote {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 30px 26px 24px;
	background: #fff;
	border: 1px solid var(--vc-line);
	border-radius: 14px;
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.vsl-clutch .vc-quote:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(53, 60, 62, 0.09);
	border-color: transparent;
}
.vsl-clutch .vc-quote__mark {
	color: var(--vc-orange);
	font-size: 22px;
	opacity: 0.85;
	line-height: 1;
}
.vsl-clutch .vc-quote__lead {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: var(--vc-navy);
	letter-spacing: -0.005em;
	line-height: 1.35;
}
.vsl-clutch .vc-quote__excerpt {
	margin: 0;
	font-size: 13px;
	color: var(--vc-muted);
	line-height: 1.6;
	flex: 1 1 auto;
}
.vsl-clutch .vc-quote__cite {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 4px;
	padding-top: 16px;
	border-top: 1px solid var(--vc-line);
}
.vsl-clutch .vc-quote__cite img {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	flex: 0 0 44px;
	background: var(--vc-line);
}
.vsl-clutch .vc-quote__cite > div {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}
.vsl-clutch .vc-quote__cite strong {
	font-size: 14px;
	font-weight: 700;
	color: var(--vc-navy);
	line-height: 1.2;
}
.vsl-clutch .vc-quote__cite span {
	font-size: 12px;
	color: var(--vc-muted);
	line-height: 1.2;
}

/* ==========================================================================
   5. INDUSTRIES — Who we work with
   ========================================================================== */
.vsl-clutch .vc-industries {
	background: #fafbfc;
	padding: 64px 0 60px;
	position: relative;
	overflow: hidden;
	border-top: 1px solid var(--vc-line);
}
.vsl-clutch .vc-industries::before {
	/* very faint dot pattern */
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(var(--vc-line) 1px, transparent 1.5px);
	background-size: 22px 22px;
	opacity: 0.5;
	pointer-events: none;
}
.vsl-clutch .vc-industries .vc-wrap { position: relative; z-index: 1; }
.vsl-clutch .vc-industries__head {
	text-align: center;
	margin-bottom: 36px;
}
.vsl-clutch .vc-industries__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--vc-orange);
	margin-bottom: 14px;
}
.vsl-clutch .vc-industries__eyebrow::before,
.vsl-clutch .vc-industries__eyebrow::after {
	content: '';
	display: block;
	width: 28px;
	height: 1px;
	background: var(--vc-orange);
	opacity: 0.7;
}
.vsl-clutch .vc-industries__title {
	font-family: 'Open Sans', sans-serif;
	font-size: 30px;
	font-weight: 800;
	color: var(--vc-navy);
	letter-spacing: -0.018em;
	line-height: 1.15;
	margin: 0 0 12px;
}
.vsl-clutch .vc-industries__sub {
	margin: 0 auto;
	max-width: 560px;
	font-size: 15px;
	color: var(--vc-muted);
	line-height: 1.6;
}
.vsl-clutch .vc-industries__chips {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
}
.vsl-clutch .vc-chip {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 14px 24px;
	background: #fff;
	border: 1px solid var(--vc-line);
	border-radius: 999px;
	color: var(--vc-navy);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: -0.005em;
	cursor: default;
	transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}
.vsl-clutch .vc-chip i {
	color: var(--vc-orange);
	font-size: 16px;
	transition: color 0.28s ease, transform 0.28s ease;
}
.vsl-clutch .vc-chip:hover {
	transform: translateY(-4px);
	background: linear-gradient(135deg, var(--vc-orange) 0%, var(--vc-orange-dark) 100%);
	border-color: transparent;
	color: #fff;
	box-shadow: 0 14px 26px rgba(254, 142, 6, 0.32);
}
.vsl-clutch .vc-chip:hover i {
	color: #fff;
	transform: scale(1.1);
}

/* Stagger fade-in */
@keyframes vcChipIn {
	from { opacity: 0; transform: translateY(10px); }
	to   { opacity: 1; transform: translateY(0); }
}
.vsl-clutch .vc-chip { animation: vcChipIn 0.55s ease-out both; }
.vsl-clutch .vc-chip:nth-child(1) { animation-delay: 0.05s; }
.vsl-clutch .vc-chip:nth-child(2) { animation-delay: 0.10s; }
.vsl-clutch .vc-chip:nth-child(3) { animation-delay: 0.16s; }
.vsl-clutch .vc-chip:nth-child(4) { animation-delay: 0.22s; }
.vsl-clutch .vc-chip:nth-child(5) { animation-delay: 0.28s; }
.vsl-clutch .vc-chip:nth-child(6) { animation-delay: 0.34s; }
@media (prefers-reduced-motion: reduce) {
	.vsl-clutch .vc-chip,
	.vsl-clutch .vc-chip i { animation: none; transition: none; }
}

/* ==========================================================================
   5b. FAQ — accordion
   ========================================================================== */
.vsl-clutch .vc-faq {
	background: #fff;
	padding: 64px 0 60px;
	border-top: 1px solid var(--vc-line);
}
.vsl-clutch .vc-faq__head {
	text-align: center;
	margin-bottom: 36px;
}
.vsl-clutch .vc-faq__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--vc-orange);
	margin-bottom: 14px;
}
.vsl-clutch .vc-faq__eyebrow::before,
.vsl-clutch .vc-faq__eyebrow::after {
	content: '';
	display: block;
	width: 28px;
	height: 1px;
	background: var(--vc-orange);
	opacity: 0.7;
}
.vsl-clutch .vc-faq__title {
	font-family: 'Open Sans', sans-serif;
	font-size: 30px;
	font-weight: 800;
	color: var(--vc-navy);
	letter-spacing: -0.018em;
	line-height: 1.15;
	margin: 0 0 12px;
}
.vsl-clutch .vc-faq__sub {
	margin: 0 auto;
	max-width: 560px;
	font-size: 15px;
	color: var(--vc-muted);
	line-height: 1.6;
}
.vsl-clutch .vc-faq__list {
	max-width: 820px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.vsl-clutch .vc-faq__item {
	background: #fff;
	border: 1px solid var(--vc-line);
	border-radius: 14px;
	overflow: hidden;
	transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}
.vsl-clutch .vc-faq__item:hover {
	border-color: rgba(254, 142, 6, 0.35);
}
.vsl-clutch .vc-faq__item[open] {
	border-color: rgba(254, 142, 6, 0.35);
	box-shadow: 0 14px 30px rgba(53, 60, 62, 0.07);
}
.vsl-clutch .vc-faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 22px 26px;
	cursor: pointer;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: var(--vc-navy);
	letter-spacing: -0.005em;
	line-height: 1.35;
	list-style: none;
	user-select: none;
}
.vsl-clutch .vc-faq__q::-webkit-details-marker,
.vsl-clutch .vc-faq__q::marker { display: none; content: ''; }
.vsl-clutch .vc-faq__icon {
	flex: 0 0 32px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--vc-orange-soft);
	color: var(--vc-orange);
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.32s ease, background 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}
.vsl-clutch .vc-faq__q:hover .vc-faq__icon {
	background: linear-gradient(135deg, var(--vc-orange) 0%, var(--vc-orange-dark) 100%);
	color: #fff;
}
.vsl-clutch .vc-faq__item[open] .vc-faq__icon {
	background: linear-gradient(135deg, var(--vc-orange) 0%, var(--vc-orange-dark) 100%);
	color: #fff;
	transform: rotate(45deg); /* plus → X */
	box-shadow: 0 6px 14px rgba(254, 142, 6, 0.28);
}
.vsl-clutch .vc-faq__a {
	padding: 0 26px 24px;
	color: var(--vc-muted);
	font-size: 14.5px;
	line-height: 1.65;
}
.vsl-clutch .vc-faq__a p { margin: 0; }
.vsl-clutch .vc-faq__a p + p { margin-top: 12px; }
.vsl-clutch .vc-faq__a strong { color: var(--vc-navy); font-weight: 700; }

/* Stagger entrance — same pattern as other sections */
.vsl-clutch .vc-faq__item { animation: vcFadeUp 0.6s ease-out both; }
.vsl-clutch .vc-faq__item:nth-of-type(1) { animation-delay: 0.05s; }
.vsl-clutch .vc-faq__item:nth-of-type(2) { animation-delay: 0.10s; }
.vsl-clutch .vc-faq__item:nth-of-type(3) { animation-delay: 0.15s; }
.vsl-clutch .vc-faq__item:nth-of-type(4) { animation-delay: 0.20s; }
.vsl-clutch .vc-faq__item:nth-of-type(5) { animation-delay: 0.25s; }
@media (prefers-reduced-motion: reduce) {
	.vsl-clutch .vc-faq__item,
	.vsl-clutch .vc-faq__icon { animation: none; transition: none; }
}

/* ==========================================================================
   6. FINAL CTA — orange band on desktop
   ========================================================================== */
.vsl-clutch .vc-final {
	background: linear-gradient(135deg, var(--vc-orange) 0%, var(--vc-orange-dark) 100%);
	color: #fff;
	padding: 72px 0 76px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.vsl-clutch .vc-final::before {
	/* subtle dot pattern across the whole CTA */
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1.5px);
	background-size: 22px 22px;
	opacity: 0.5;
	pointer-events: none;
}
.vsl-clutch .vc-final::after {
	/* soft glow top-right for depth */
	content: '';
	position: absolute;
	top: -260px;
	right: -200px;
	width: 640px;
	height: 640px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 65%);
	pointer-events: none;
}
.vsl-clutch .vc-final__inner {
	position: relative;
	z-index: 1;
}
.vsl-clutch .vc-final__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 18px;
	opacity: 0.95;
}
.vsl-clutch .vc-final__eyebrow::before,
.vsl-clutch .vc-final__eyebrow::after {
	content: '';
	display: block;
	width: 32px;
	height: 1px;
	background: #fff;
	opacity: 0.7;
}
.vsl-clutch .vc-final__title {
	font-family: 'Open Sans', sans-serif;
	font-size: 36px;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.02em;
	line-height: 1.1;
	margin: 0 0 14px;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}
.vsl-clutch .vc-final__sub {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.92);
	margin: 0 0 32px;
	font-weight: 500;
}
.vsl-clutch .vc-final__ctas {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ==========================================================================
   TABLET — features collapse to 3x2 between 781–1024px
   ========================================================================== */
@media (max-width: 1024px) and (min-width: 781px) {
	/* Features bento: title spans full width on top, 6 cards in 2-col below */
	.vsl-clutch .vc-features__grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
		gap: 16px;
	}
	.vsl-clutch .vc-features__head {
		grid-column: 1 / -1;
		grid-row: auto;
		padding: 0 0 12px;
		max-width: 720px;
	}
	.vsl-clutch .vc-features__title { font-size: 28px; }
	.vsl-clutch .vc-logos__row { gap: 18px; }
	.vsl-clutch .vc-logos__row img { max-height: 32px; }

	/* Why VSL: lead spans full width on top, cards 2-col below */
	.vsl-clutch .vc-why { padding: 52px 0 48px; }
	.vsl-clutch .vc-why__grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
		gap: 16px;
	}
	.vsl-clutch .vc-why__lead {
		grid-column: 1 / -1;
		grid-row: auto;
		padding: 0 0 12px;
		max-width: 720px;
	}
	.vsl-clutch .vc-why__title { font-size: 28px; }
	.vsl-clutch .vc-why__card--wide { grid-column: 1 / -1; }

	/* Problem & Results: 2x2 grids on tablet so 4-col doesn't squeeze */
	.vsl-clutch .vc-underperform__grid { grid-template-columns: 1fr 1fr; }
	.vsl-clutch .vc-results__grid { grid-template-columns: 1fr 1fr; }
	.vsl-clutch .vc-results__quotes { gap: 16px; }
}

/* ==========================================================================
   RESPONSIVE — switch to mobile mock at ≤780px
   ========================================================================== */
@media (max-width: 780px) {
	.vsl-clutch .vc-only-desktop { display: none !important; }
	.vsl-clutch .vc-only-mobile { display: block !important; }

	.vsl-clutch .vc-wrap { padding: 0 18px; }

	/* Hero on mobile: photo banner up top, copy stacks below.
	   The absolute-positioned photo/fade/wedge are converted into
	   normal flow so the copy can sit on a plain white surface. */
	.vsl-clutch .vc-hero { margin: 0 0 16px; }
	.vsl-clutch .vc-hero::before { width: 4px; }
	.vsl-clutch .vc-hero__inner {
		display: flex;
		flex-direction: column;
		min-height: 0;
	}
	.vsl-clutch .vc-hero__photo {
		position: relative;
		inset: auto;
		height: 220px;
		flex: 0 0 220px;
	}
	.vsl-clutch .vc-hero__photo img {
		transform: none; /* mobile banner shows full photo */
	}
	.vsl-clutch .vc-hero__fade {
		position: absolute;
		inset: auto 0 0 0;
		top: auto;
		height: 60px;
		background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #fff 100%);
		z-index: 2;
	}
	.vsl-clutch .vc-hero__copy {
		position: relative;
		z-index: 4;
		max-width: 100%;
		padding: 22px 22px 24px;
	}
	.vsl-clutch .vc-hero__lede {
		font-size: 22px;
		display: block;
		white-space: normal;
	}
	.vsl-clutch .vc-hero__title { font-size: 24px; }
	.vsl-clutch .vc-hero__bullets li i { color: var(--vc-orange); }
	.vsl-clutch .vc-clutch-badge {
		right: 14px;
		bottom: auto;
		top: 110px;
		width: 130px;
		max-width: 45%;
	}
	/* The official widget iframe has a fixed ~210px content width — don't
	   shrink its wrapper below that or the badge clips. */
	.vsl-clutch .vc-clutch-badge--embed {
		width: 210px;
		max-width: 58%;
	}
	.vsl-clutch .vc-clutch-badge__logo { width: 70px; }
	.vsl-clutch .vc-clutch-badge__stars { font-size: 13px; }
	.vsl-clutch .vc-clutch-badge__score { font-size: 14px; }

	/* Logo strip: smaller logos, wrap onto two rows */
	.vsl-clutch .vc-logos { padding: 32px 0 20px; }
	.vsl-clutch .vc-logos__eyebrow { font-size: 10px; letter-spacing: 0.18em; gap: 10px; }
	.vsl-clutch .vc-logos__eyebrow::before,
	.vsl-clutch .vc-logos__eyebrow::after { width: 24px; }
	.vsl-clutch .vc-logos__lede { font-size: 13px; margin-bottom: 20px; padding: 0 10px; }
	.vsl-clutch .vc-logos__row { flex-wrap: wrap; gap: 18px 22px; justify-content: center; }
	.vsl-clutch .vc-logos__row li { flex: 0 0 auto; height: auto; }
	.vsl-clutch .vc-logos__row img { max-height: 26px; }

	/* Features: bento collapses to stack — title on top, cards below */
	.vsl-clutch .vc-features { padding: 36px 0 36px; }
	.vsl-clutch .vc-features::before { width: 160px; height: 160px; }
	.vsl-clutch .vc-features__grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
		gap: 12px;
	}
	.vsl-clutch .vc-features__head {
		grid-column: 1 / -1;
		grid-row: auto;
		padding: 18px 16px 16px;
	}
	.vsl-clutch .vc-features__eyebrow { font-size: 10px; letter-spacing: 0.2em; margin-bottom: 12px; }
	.vsl-clutch .vc-features__title { font-size: 22px; margin-bottom: 10px; }
	.vsl-clutch .vc-features__intro { font-size: 13.5px; }
	.vsl-clutch .vc-feature { padding: 18px 16px 16px; border-radius: 12px; }
	.vsl-clutch .vc-feature__icon { width: 40px; height: 40px; font-size: 16px; border-radius: 10px; margin-bottom: 10px; }
	.vsl-clutch .vc-feature__title { font-size: 14px; }
	.vsl-clutch .vc-feature__desc { font-size: 12.5px; }

	/* Why VSL: single column stack */
	.vsl-clutch .vc-why { padding: 36px 0 32px; }
	.vsl-clutch .vc-why::before { width: 160px; height: 160px; }
	.vsl-clutch .vc-why__grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		gap: 12px;
	}
	.vsl-clutch .vc-why__lead {
		grid-column: 1;
		grid-row: auto;
		padding: 0 0 8px;
	}
	.vsl-clutch .vc-why__eyebrow { font-size: 10px; letter-spacing: 0.2em; }
	.vsl-clutch .vc-why__title { font-size: 22px; margin-bottom: 12px; }
	.vsl-clutch .vc-why__title-em { display: inline; }
	.vsl-clutch .vc-why__intro { font-size: 13.5px; }
	.vsl-clutch .vc-why__card { padding: 18px 18px 16px; border-radius: 10px; }
	.vsl-clutch .vc-why__num { font-size: 22px; margin-bottom: 10px; }
	.vsl-clutch .vc-why__card-title { font-size: 14px; }
	.vsl-clutch .vc-why__card-desc { font-size: 12.5px; }
	.vsl-clutch .vc-why__card--wide {
		grid-column: 1;
		grid-template-columns: auto 1fr;
		gap: 0 16px;
		padding: 18px 18px;
	}
	.vsl-clutch .vc-why__card--wide .vc-why__num { font-size: 30px; }

	/* Problem: 2x2 grid, shrink type */
	.vsl-clutch .vc-underperform { padding: 36px 0 32px; }
	.vsl-clutch .vc-underperform__head { margin-bottom: 22px; }
	.vsl-clutch .vc-underperform__eyebrow { font-size: 10px; letter-spacing: 0.2em; }
	.vsl-clutch .vc-underperform__title { font-size: 22px; }
	.vsl-clutch .vc-underperform__grid { grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 22px; }
	.vsl-clutch .vc-underperform__card { padding: 16px 14px; gap: 10px; }
	.vsl-clutch .vc-underperform__icon { width: 28px; height: 28px; font-size: 12px; }
	.vsl-clutch .vc-underperform__card p { font-size: 13px; }
	.vsl-clutch .vc-underperform__result {
		flex-direction: column;
		gap: 8px;
		padding: 14px 18px;
		border-radius: 12px;
		text-align: center;
	}
	.vsl-clutch .vc-underperform__result-label {
		padding: 0 0 8px;
		border-right: 0;
		border-bottom: 1px solid rgba(53, 60, 62, 0.2);
	}
	.vsl-clutch .vc-underperform__result-text { font-size: 14px; }

	/* Approach: tighter padding, 1-col stack */
	.vsl-clutch .vc-approach { padding: 40px 0 36px; }
	.vsl-clutch .vc-approach__head { margin-bottom: 26px; }
	.vsl-clutch .vc-approach__eyebrow { font-size: 10px; letter-spacing: 0.2em; }
	.vsl-clutch .vc-approach__title { font-size: 22px; }
	.vsl-clutch .vc-approach__cols { grid-template-columns: 1fr; gap: 14px; }
	.vsl-clutch .vc-approach__cols li { padding: 22px 18px 18px; }
	.vsl-clutch .vc-approach__icon { width: 52px; height: 52px; font-size: 22px; border-radius: 14px; margin-bottom: 12px; }
	.vsl-clutch .vc-approach__cols h3 { font-size: 15px; }
	.vsl-clutch .vc-approach__cols p { font-size: 12.5px; }

	/* Results: 2x2 grid */
	.vsl-clutch .vc-results { padding: 36px 0 32px; }
	.vsl-clutch .vc-results__head { margin-bottom: 22px; }
	.vsl-clutch .vc-results__eyebrow { font-size: 10px; letter-spacing: 0.2em; }
	.vsl-clutch .vc-results__title { font-size: 22px; }
	.vsl-clutch .vc-results__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
	.vsl-clutch .vc-results__card { padding: 22px 14px; gap: 12px; }
	.vsl-clutch .vc-results__icon { width: 48px; height: 48px; font-size: 22px; border-radius: 12px; }
	.vsl-clutch .vc-results__card h3 { font-size: 13px; }
	.vsl-clutch .vc-results__big { font-size: 38px; }
	.vsl-clutch .vc-results__big-label { font-size: 10.5px; }
	.vsl-clutch .vc-results__quotes-wrap { margin-top: 32px; padding-top: 26px; }
	.vsl-clutch .vc-results__quotes-heading { font-size: 10px; margin-bottom: 18px; }
	.vsl-clutch .vc-results__quotes { grid-template-columns: 1fr; gap: 14px; }
	.vsl-clutch .vc-quote { padding: 22px 20px 18px; gap: 12px; }
	.vsl-clutch .vc-quote__lead { font-size: 15px; }
	.vsl-clutch .vc-quote__excerpt { font-size: 12.5px; }
	.vsl-clutch .vc-quote__cite img { width: 38px; height: 38px; flex-basis: 38px; }
	.vsl-clutch .vc-quote__cite strong { font-size: 13px; }

	/* Industries: tighter chips, smaller heading */
	.vsl-clutch .vc-industries { padding: 36px 0 32px; }
	.vsl-clutch .vc-industries__head { margin-bottom: 22px; }
	.vsl-clutch .vc-industries__eyebrow { font-size: 10px; letter-spacing: 0.2em; }
	.vsl-clutch .vc-industries__title { font-size: 22px; }
	.vsl-clutch .vc-industries__sub { font-size: 13.5px; }
	.vsl-clutch .vc-industries__chips { gap: 10px; }
	.vsl-clutch .vc-chip { padding: 11px 18px; font-size: 13px; gap: 8px; }
	.vsl-clutch .vc-chip i { font-size: 14px; }

	/* FAQ: tighter padding and type */
	.vsl-clutch .vc-faq { padding: 36px 0 32px; }
	.vsl-clutch .vc-faq__head { margin-bottom: 22px; }
	.vsl-clutch .vc-faq__eyebrow { font-size: 10px; letter-spacing: 0.2em; }
	.vsl-clutch .vc-faq__title { font-size: 22px; }
	.vsl-clutch .vc-faq__sub { font-size: 13.5px; }
	.vsl-clutch .vc-faq__list { gap: 10px; }
	.vsl-clutch .vc-faq__q { padding: 16px 18px; font-size: 14.5px; gap: 12px; }
	.vsl-clutch .vc-faq__icon { flex-basis: 28px; width: 28px; height: 28px; font-size: 12px; }
	.vsl-clutch .vc-faq__a { padding: 0 18px 18px; font-size: 13.5px; }

	/* Final CTA: tighter padding & type for mobile, same orange gradient */
	.vsl-clutch .vc-final { padding: 44px 0 48px; }
	.vsl-clutch .vc-final::after { top: -150px; right: -150px; width: 360px; height: 360px; }
	.vsl-clutch .vc-final__eyebrow { font-size: 10px; letter-spacing: 0.2em; margin-bottom: 14px; gap: 10px; }
	.vsl-clutch .vc-final__eyebrow::before,
	.vsl-clutch .vc-final__eyebrow::after { width: 24px; }
	.vsl-clutch .vc-final__title { font-size: 24px; line-height: 1.18; margin-bottom: 10px; }
	.vsl-clutch .vc-final__sub { font-size: 14px; margin-bottom: 22px; }
	.vsl-clutch .vc-btn--final-primary,
	.vsl-clutch .vc-btn--final-secondary { padding: 14px 22px; font-size: 13px; }
}

@media (max-width: 480px) {
	.vsl-clutch .vc-hero__ctas { flex-direction: column; }
	.vsl-clutch .vc-btn { width: 100%; }
	.vsl-clutch .vc-final__ctas { flex-direction: column; }
	.vsl-clutch .vc-results__grid { grid-template-columns: 1fr; }
	.vsl-clutch .vc-results__card--hero { padding: 22px 14px; }
	.vsl-clutch .vc-results__big { font-size: 44px; }
	.vsl-clutch .vc-features__grid { grid-template-columns: 1fr; }
	.vsl-clutch .vc-features__head { grid-column: 1; }
}
