
/* ==========================================================================
   Premium marketing pages — About, Solutions, Contact, Brands, News
   ========================================================================== */

.vf-page {
	--vf-page-max: 1240px;
	--vf-page-pad: clamp(18px, 3vw, 40px);
	--vf-section-y: clamp(28px, 4vw, 52px);
	color: var(--vf-ink);
	margin-bottom: 56px;
}

.vf-section__wrap {
	max-width: var(--vf-page-max);
	margin: 0 auto;
	padding: 0 var(--vf-page-pad);
}

/* —— Typography —— */
.vf-kicker {
	margin: 0 0 10px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--vf-primary);
}
.vf-kicker a {
	color: inherit;
	text-decoration: none;
}
.vf-kicker a:hover {
	text-decoration: underline;
}
.vf-kicker-sep {
	opacity: 0.45;
	margin: 0 0.35em;
}
.vf-kicker--light {
	color: rgba(255, 255, 255, 0.72);
}
.vf-h2 {
	margin: 0 0 14px;
	font-size: clamp(22px, 3vw, 32px);
	font-weight: 800;
	line-height: 1.22;
	color: var(--vf-ink);
}
.vf-prose {
	color: var(--vf-ink-secondary);
	line-height: 1.65;
	font-size: 15px;
}
.vf-prose p {
	margin: 0 0 1em;
}

/* —— Hero —— */
.vf-hero {
	position: relative;
	overflow: hidden;
	width: 100vw;
	max-width: 100vw;
	margin: 0 0 var(--vf-section-y);
	margin-left: calc(50% - 50vw);
	padding: clamp(36px, 6vw, 64px) max(var(--vf-page-pad), calc(50vw - var(--vf-page-max) / 2)) 0;
	background: linear-gradient(135deg, var(--vf-dark) 0%, var(--vf-dark-elevated) 48%, #1a3550 100%);
	color: var(--vf-dark-text);
}
.vf-hero__glow {
	position: absolute;
	inset: -20% auto auto -10%;
	width: min(520px, 70vw);
	height: min(520px, 70vw);
	background: radial-gradient(circle, rgba(47, 141, 227, 0.28) 0%, transparent 68%);
	pointer-events: none;
}
.vf-hero__glow::after {
	content: "";
	position: absolute;
	right: -40%;
	top: 30%;
	width: 280px;
	height: 280px;
	background: radial-gradient(circle, rgba(47, 141, 227, 0.12) 0%, transparent 70%);
}
.vf-hero__content {
	position: relative;
	z-index: 1;
	max-width: var(--vf-page-max);
	margin: 0 auto;
}
.vf-hero__title {
	margin: 0 0 16px;
	max-width: 20ch;
	font-size: clamp(30px, 4.8vw, 48px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.02em;
	color: #fff;
}
.vf-hero--article .vf-hero__title,
.vf-hero--brand .vf-hero__title {
	max-width: 24ch;
}
.vf-hero__lead {
	margin: 0 0 24px;
	max-width: 62ch;
	font-size: clamp(15px, 1.8vw, 17px);
	line-height: 1.65;
	color: var(--vf-dark-muted);
}
.vf-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 8px;
}
.vf-btn-ghost {
	background: transparent !important;
	border: 1px solid rgba(255, 255, 255, 0.28) !important;
	color: #fff !important;
	box-shadow: none !important;
}
.vf-btn-ghost:hover,
.vf-btn-ghost:focus {
	background: rgba(255, 255, 255, 0.08) !important;
	border-color: rgba(255, 255, 255, 0.45) !important;
	color: #fff !important;
}
.vf-btn-light {
	background: #fff !important;
	border-color: #fff !important;
	color: var(--vf-primary-dark) !important;
}
.vf-btn-light:hover {
	background: var(--vf-primary-ghost) !important;
}

/* —— Metrics strip —— */
.vf-metrics {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	max-width: var(--vf-page-max);
	margin: clamp(24px, 4vw, 36px) auto 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid var(--vf-dark-border);
}
.vf-metric {
	padding: clamp(16px, 3vw, 22px) max(var(--vf-page-pad), calc(50vw - var(--vf-page-max) / 2));
	border-bottom: 1px solid var(--vf-dark-border);
}
.vf-metric strong {
	display: block;
	margin-bottom: 6px;
	font-size: 15px;
	font-weight: 800;
	color: #fff;
}
.vf-metric span {
	display: block;
	font-size: 13px;
	line-height: 1.5;
	color: var(--vf-dark-muted);
}

/* —— Sections —— */
.vf-section {
	padding: var(--vf-section-y) 0;
}
.vf-section--muted {
	background: var(--vf-surface-alt);
	width: 100vw;
	margin-left: calc(50% - 50vw);
	padding-left: max(var(--vf-page-pad), calc(50vw - var(--vf-page-max) / 2));
	padding-right: max(var(--vf-page-pad), calc(50vw - var(--vf-page-max) / 2));
}
.vf-section--muted .vf-section__wrap {
	max-width: var(--vf-page-max);
	margin: 0 auto;
}
.vf-section-head {
	margin: 0 0 clamp(18px, 3vw, 28px);
	max-width: 52ch;
}
.vf-section-head--split {
	display: grid;
	gap: 6px 0;
	max-width: none;
	grid-template-areas:
		"kicker"
		"title"
		"lead";
}
.vf-section-head--split .vf-kicker {
	grid-area: kicker;
	margin: 0;
}
.vf-section-head--split .vf-section-head__title {
	grid-area: title;
	margin: 0;
	font-size: clamp(20px, 2.4vw, 28px);
	line-height: 1.2;
}
.vf-section-head--split .vf-section-head__lead {
	grid-area: lead;
	margin: 0;
	max-width: none;
}
.vf-section-head__title {
	margin: 0 0 10px;
	font-size: clamp(22px, 3vw, 32px);
	font-weight: 800;
	line-height: 1.22;
}
.vf-section-head__lead {
	margin: 0;
	color: var(--vf-ink-secondary);
	line-height: 1.55;
	font-size: 15px;
}
.vf-section-foot {
	margin: 28px 0 0;
}

/* —— Panels & split —— */
.vf-split {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(20px, 4vw, 32px);
	align-items: start;
}
.vf-panel {
	padding: clamp(22px, 3vw, 28px);
	background: var(--vf-surface);
	border: 1px solid var(--vf-border-subtle);
	border-radius: 12px;
	box-shadow: var(--vf-shadow-soft);
}
.vf-panel h3 {
	margin: 0 0 14px;
	font-size: 18px;
	font-weight: 800;
}
.vf-panel--dark {
	background: linear-gradient(160deg, var(--vf-dark-elevated), var(--vf-dark));
	border-color: var(--vf-dark-border);
	color: var(--vf-dark-text);
	box-shadow: var(--vf-shadow-brand);
}
.vf-panel--dark h3 {
	color: #fff;
}
.vf-panel--dark a {
	color: var(--vf-primary-light);
}
.vf-checklist {
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
}
.vf-checklist li {
	position: relative;
	margin: 0 0 10px;
	padding-left: 22px;
	font-size: 14px;
	line-height: 1.55;
	color: var(--vf-ink-secondary);
}
.vf-panel--dark .vf-checklist li {
	color: var(--vf-dark-muted);
}
.vf-checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--vf-primary);
	box-shadow: 0 0 0 3px var(--vf-primary-ghost);
}
.vf-checklist--compact li {
	font-size: 13px;
}

/* —— About company gallery —— */
.vf-about-gallery {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}
.vf-about-gallery__group {
	display: flex;
	flex-direction: column;
	background: var(--vf-surface);
	border: 1px solid var(--vf-border-subtle);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--vf-shadow-soft);
}
.vf-about-gallery__media {
	background: var(--vf-surface-muted);
	width: 100%;
}
.vf-about-gallery__media--single .vf-about-gallery__figure {
	aspect-ratio: 16 / 10;
	min-height: 220px;
}
.vf-about-gallery__media--grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	padding: 8px;
}
.vf-about-gallery__media--grid .vf-about-gallery__figure {
	aspect-ratio: 4 / 3;
	min-height: 180px;
}
.vf-about-gallery__group--team .vf-about-gallery__figure {
	aspect-ratio: 3 / 4;
}
.vf-about-gallery__group--pair .vf-about-gallery__media--grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.vf-about-gallery__figure {
	margin: 0;
	overflow: hidden;
}
.vf-about-gallery__figure img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.vf-about-gallery__body {
	padding: 16px 18px 20px;
}
.vf-about-gallery__body h3 {
	margin: 0 0 8px;
	font-size: 18px;
	line-height: 1.25;
	color: var(--vf-dark-elevated);
}
.vf-about-gallery__body p {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: #5c6672;
}

/* —— Scope / solution cards —— */
.vf-scope-grid,
.vf-solution-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}
.vf-scope-card,
.vf-solution-card {
	display: flex;
	flex-direction: column;
	background: var(--vf-surface);
	border: 1px solid var(--vf-border-subtle);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--vf-shadow-soft);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.vf-scope-card:hover,
.vf-solution-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(27, 36, 48, 0.1);
	border-color: var(--vf-border);
}
.vf-scope-card__media {
	position: relative;
	background: var(--vf-surface-muted);
	aspect-ratio: 7 / 2;
	overflow: hidden;
}
.vf-solution-card__media {
	position: relative;
	background: var(--vf-surface-muted);
	aspect-ratio: 16 / 9;
	overflow: hidden;
}
.vf-scope-card__media img,
.vf-solution-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.vf-scope-card__body,
.vf-solution-card__body {
	padding: 20px 22px 22px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.vf-scope-card__body h3,
.vf-solution-card__body h3 {
	margin: 0 0 8px;
	font-size: 19px;
	font-weight: 800;
}
.vf-scope-card__body p,
.vf-solution-card__body p {
	margin: 0 0 12px;
	font-size: 14px;
	line-height: 1.6;
	color: var(--vf-ink-secondary);
	flex: 1;
}
.vf-solution-card__lead {
	font-weight: 600 !important;
	color: var(--vf-ink) !important;
}
.vf-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	padding: 4px 10px;
	background: var(--vf-primary-ghost);
	color: var(--vf-primary-dark);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.06em;
	border-radius: 6px;
}
.vf-num--overlay {
	position: absolute;
	left: 14px;
	top: 14px;
	background: rgba(15, 30, 46, 0.88);
	color: #fff;
	border-radius: 8px;
}
.vf-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 16px;
	padding: 0;
	list-style: none;
}
.vf-tags li {
	padding: 5px 10px;
	background: var(--vf-surface-alt);
	border: 1px solid var(--vf-border-subtle);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	color: var(--vf-ink-secondary);
}
.vf-tags--lg li {
	padding: 8px 14px;
	font-size: 13px;
}
.vf-link-arrow,
.vf-link-row a {
	font-size: 13px;
	font-weight: 700;
	color: var(--vf-primary-dark);
	text-decoration: none;
}
.vf-link-arrow:hover,
.vf-link-row a:hover {
	color: var(--vf-primary);
	text-decoration: underline;
}
.vf-link-row {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}
.vf-link-row--stack {
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

/* —— Chips —— */
.vf-chip-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 24px;
}
.vf-chip {
	display: inline-block;
	padding: 8px 14px;
	background: var(--vf-surface);
	border: 1px solid var(--vf-border);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	color: var(--vf-ink);
	text-decoration: none;
	transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.vf-chip:hover {
	background: var(--vf-primary);
	border-color: var(--vf-primary);
	color: #fff;
	text-decoration: none;
}

/* —— Audience / steps —— */
.vf-audience-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}
.vf-audience-card {
	padding: 24px 22px;
	background: var(--vf-surface);
	border: 1px solid var(--vf-border-subtle);
	border-radius: 12px;
	box-shadow: var(--vf-shadow-soft);
}
.vf-section--muted .vf-audience-card {
	background: var(--vf-surface);
}
.vf-audience-card .vf-num {
	margin-bottom: 14px;
}
.vf-audience-card h3 {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 800;
}
.vf-audience-card p {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--vf-ink-secondary);
}
.vf-steps {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: vfstep;
}
.vf-step-card {
	position: relative;
	padding: 22px 22px 20px;
	background: var(--vf-surface);
	border: 1px solid var(--vf-border-subtle);
	border-radius: 12px;
	box-shadow: var(--vf-shadow-soft);
}
.vf-section--muted .vf-step-card {
	background: var(--vf-surface);
}
.vf-step-card strong {
	display: block;
	margin-bottom: 8px;
	font-size: 15px;
	font-weight: 800;
	color: var(--vf-ink);
}
.vf-step-card p {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: var(--vf-ink-secondary);
}

/* —— Presence —— */
.vf-presence-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}
.vf-presence-card {
	padding: clamp(24px, 4vw, 32px);
	background: var(--vf-surface);
	border: 1px solid var(--vf-border-subtle);
	border-radius: 12px;
	box-shadow: var(--vf-shadow-soft);
}
.vf-presence-card h2 {
	margin: 0 0 12px;
	font-size: 22px;
	font-weight: 800;
}
.vf-presence-card p {
	margin: 0 0 12px;
	color: var(--vf-ink-secondary);
	line-height: 1.6;
	font-size: 14px;
}
.vf-address {
	font-weight: 600;
	color: var(--vf-ink) !important;
}

/* —— Brand wall / grid —— */
.vf-brand-wall {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}
.vf-brand-tile {
	display: grid;
	place-items: center;
	min-height: 80px;
	padding: 14px;
	background: var(--vf-surface);
	border: 1px solid var(--vf-border-subtle);
	border-radius: 10px;
	transition: border-color 0.15s, box-shadow 0.15s;
}
.vf-brand-tile:hover {
	border-color: var(--vf-primary-soft);
	box-shadow: var(--vf-shadow-soft);
}
.vf-brand-tile img {
	max-height: 40px;
	max-width: 88%;
	object-fit: contain;
}
.vf-brands-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}
.vf-brand-card {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-template-rows: auto auto;
	gap: 4px 12px;
	align-items: center;
	padding: 18px 18px 16px;
	background: var(--vf-surface);
	border: 1px solid var(--vf-border-subtle);
	border-radius: 12px;
	text-decoration: none;
	color: var(--vf-ink);
	box-shadow: var(--vf-shadow-soft);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.vf-brand-card:hover {
	transform: translateY(-2px);
	border-color: var(--vf-primary-soft);
	box-shadow: 0 10px 28px rgba(47, 141, 227, 0.12);
	text-decoration: none;
	color: var(--vf-ink);
}
.vf-brand-card__logo {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
}
.vf-brand-card__logo img {
	max-height: 44px;
	max-width: 140px;
	object-fit: contain;
}
.vf-brand-card__name {
	font-size: 14px;
	font-weight: 700;
}
.vf-brand-card__arrow {
	color: var(--vf-primary);
	font-weight: 700;
	font-size: 16px;
	opacity: 0;
	transform: translateX(-4px);
	transition: opacity 0.15s, transform 0.15s;
}
.vf-brand-card:hover .vf-brand-card__arrow {
	opacity: 1;
	transform: translateX(0);
}

/* —— Contact form —— */
.vf-contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(20px, 4vw, 28px);
	align-items: start;
}
.vf-form-card {
	padding: clamp(24px, 4vw, 32px);
	background: var(--vf-surface);
	border: 1px solid var(--vf-border-subtle);
	border-radius: 14px;
	box-shadow: 0 8px 32px rgba(27, 36, 48, 0.08);
}
.vf-form-lead {
	margin: 0 0 22px;
	max-width: 58ch;
	color: var(--vf-ink-secondary);
	line-height: 1.6;
}
.vf-form-wrap .rfq-form {
	margin-top: 8px;
}
.vf-contact-aside {
	display: grid;
	gap: 14px;
}
.vf-desk-hours {
	font-size: 18px !important;
	font-weight: 700 !important;
	color: #fff !important;
}
.vf-address-block {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--vf-dark-border);
}
.vf-address-block strong {
	display: block;
	margin-bottom: 4px;
	color: #fff;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.vf-address-block p {
	margin: 0;
	font-size: 13px;
}

/* —— News —— */
.vf-news-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 clamp(24px, 4vw, 32px);
}
.vf-filter-pill {
	display: inline-block;
	padding: 8px 16px;
	background: var(--vf-surface);
	border: 1px solid var(--vf-border);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	color: var(--vf-ink);
	text-decoration: none;
	transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.vf-filter-pill.is-active,
.vf-filter-pill:hover {
	background: var(--vf-primary);
	border-color: var(--vf-primary);
	color: #fff;
	text-decoration: none;
}
.vf-news-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}
.vf-news-card {
	display: flex;
	flex-direction: column;
	padding: clamp(22px, 3vw, 28px);
	background: var(--vf-surface);
	border: 1px solid var(--vf-border-subtle);
	border-radius: 12px;
	box-shadow: var(--vf-shadow-soft);
	transition: border-color 0.15s, box-shadow 0.15s;
}
.vf-news-card:hover {
	border-color: var(--vf-primary-soft);
	box-shadow: 0 8px 24px rgba(47, 141, 227, 0.1);
}
.vf-news-card--featured {
	grid-column: 1 / -1;
	padding: clamp(28px, 4vw, 36px);
	background: linear-gradient(135deg, var(--vf-surface) 0%, var(--vf-primary-ghost) 100%);
	border-color: var(--vf-primary-soft);
}
.vf-news-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0 0 10px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--vf-ink-muted);
}
.vf-news-card__meta a {
	color: var(--vf-primary-dark);
	text-decoration: none;
}
.vf-news-card__title {
	margin: 0 0 10px;
	font-size: clamp(20px, 2.5vw, 26px);
	line-height: 1.28;
	font-weight: 800;
}
.vf-news-card--featured .vf-news-card__title {
	font-size: clamp(24px, 3vw, 32px);
}
.vf-news-card__title a {
	color: var(--vf-ink);
	text-decoration: none;
}
.vf-news-card__title a:hover {
	color: var(--vf-primary-dark);
}
.vf-news-card__excerpt {
	margin: 0 0 14px;
	flex: 1;
	font-size: 14px;
	line-height: 1.6;
	color: var(--vf-ink-secondary);
}
.vf-news-pager {
	margin-top: 28px;
}
.vf-news-pager .page-numbers {
	border-radius: 8px;
}
.vf-empty,
.vf-empty-panel {
	padding: 24px;
	background: var(--vf-surface-alt);
	border: 1px dashed var(--vf-border);
	border-radius: 12px;
	color: var(--vf-ink-secondary);
	text-align: center;
}

/* —— Article —— */
.vf-article-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: start;
}
.vf-article-meta {
	margin: 0 0 20px;
	font-size: 13px;
	color: var(--vf-ink-muted);
}
.vf-article-meta time + span::before {
	content: " · ";
}
.vf-article-body {
	max-width: 68ch;
	font-size: 16px;
	line-height: 1.75;
	color: var(--vf-ink);
}
.vf-article-body p {
	margin: 0 0 1.15em;
}
.vf-article-body h2 {
	margin: 1.8em 0 0.65em;
	font-size: 22px;
	font-weight: 800;
}
.vf-article-aside__actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.vf-article-aside__actions .button {
	width: 100%;
	text-align: center;
}

/* —— Brand detail —— */
.vf-hero--brand .vf-hero__content--brand {
	text-align: left;
}
.vf-brand-logo {
	display: block;
	height: 52px;
	width: auto;
	max-width: 200px;
	margin: 0 0 18px;
	padding: 10px 14px;
	background: #fff;
	border-radius: 10px;
	object-fit: contain;
}
.vf-brand-tagline {
	margin: 0 0 12px;
	max-width: 48ch;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	color: #fff;
}
.vf-brand-split {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}
.vf-brand-stock {
	margin-top: 8px;
}

/* —— CTA band —— */
.vf-cta-band {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	padding: clamp(32px, 5vw, 48px) max(var(--vf-page-pad), calc(50vw - var(--vf-page-max) / 2));
	background: linear-gradient(120deg, var(--vf-primary-dark) 0%, var(--vf-primary) 55%, var(--vf-primary-light) 100%);
	color: #fff;
}
.vf-cta-band__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	max-width: var(--vf-page-max);
	margin: 0 auto;
	align-items: center;
}
.vf-cta-band h2 {
	margin: 0 0 10px;
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 800;
	color: #fff;
}
.vf-cta-band__p {
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.55;
	font-size: 15px;
}
.vf-cta-band__p p {
	margin: 0;
}
.vf-cta-band__p a {
	color: #fff;
	font-weight: 700;
}
.vf-cta-band__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

/* —— Responsive —— */
@media (min-width: 640px) {
	.vf-metrics {
		grid-template-columns: repeat(3, 1fr);
	}
	.vf-metric {
		padding-left: 24px;
		padding-right: 24px;
		border-bottom: 0;
		border-right: 1px solid var(--vf-dark-border);
	}
	.vf-metric:last-child {
		border-right: 0;
	}
	.vf-audience-grid--3 {
		grid-template-columns: repeat(3, 1fr);
	}
	.vf-brand-wall {
		grid-template-columns: repeat(4, 1fr);
	}
	.vf-about-gallery {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.vf-about-gallery__media--single .vf-about-gallery__figure {
		aspect-ratio: 21 / 9;
		min-height: 320px;
	}
	.vf-about-gallery__group--pair .vf-about-gallery__media--grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.vf-about-gallery__group--pair .vf-about-gallery__figure {
		min-height: 280px;
	}
	.vf-about-gallery__group--wide .vf-about-gallery__media--grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 12px;
		padding: 12px;
	}
	.vf-about-gallery__group--team .vf-about-gallery__media--grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
		padding: 12px;
	}
	.vf-about-gallery__media--grid .vf-about-gallery__figure {
		min-height: 240px;
	}
	.vf-about-gallery__group--team .vf-about-gallery__figure {
		aspect-ratio: 4 / 5;
		min-height: 320px;
	}
	.vf-about-gallery__body {
		padding: 18px 22px 22px;
	}
	.vf-brands-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.vf-news-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 768px) {
	.vf-section-head--split {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		grid-template-areas:
			"kicker kicker"
			"title lead";
		column-gap: clamp(24px, 4vw, 48px);
		row-gap: 8px;
		align-items: end;
	}
	.vf-section-head--split .vf-section-head__lead {
		font-size: 14px;
		line-height: 1.5;
	}
	.vf-split {
		grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.85fr);
	}
	.vf-scope-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.vf-about-gallery__media--grid .vf-about-gallery__figure {
		min-height: 240px;
	}
	.vf-solution-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.vf-audience-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.vf-steps {
		grid-template-columns: repeat(2, 1fr);
	}
	.vf-presence-grid {
		grid-template-columns: 1fr 1fr;
	}
	.vf-contact-grid {
		grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
	}
	.vf-contact-aside {
		position: sticky;
		top: 24px;
	}
	.vf-brand-split {
		grid-template-columns: 1fr 1fr;
	}
	.vf-article-layout {
		grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
	}
	.vf-cta-band__inner {
		grid-template-columns: 1fr auto;
	}
}
@media (min-width: 992px) {
	.vf-scope-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.vf-steps {
		grid-template-columns: repeat(4, 1fr);
	}
	.vf-brands-grid {
		grid-template-columns: repeat(4, 1fr);
	}
	.vf-brand-wall {
		grid-template-columns: repeat(6, 1fr);
	}
}
@media (min-width: 1200px) {
	.vf-brands-grid {
		grid-template-columns: repeat(5, 1fr);
	}
}

/* RTL */
.volfine-rtl .vf-brand-card {
	grid-template-columns: auto 1fr;
}
.volfine-rtl .vf-brand-card__arrow {
	transform: translateX(4px);
}
.volfine-rtl .vf-checklist li {
	padding-left: 0;
	padding-right: 22px;
}
.volfine-rtl .vf-checklist li::before {
	left: auto;
	right: 0;
}
