﻿/* Vivid Account â€” design tokens + global shell */

:root {
	--va-black: #121212;
	--va-surface: #141414;
	--va-surface-2: #1c1c1c;
	--va-border: #2a2a2a;
	--va-white: #ffffff;
	--va-soft: #f5f5f5;
	--va-muted: #a3a3a3;
	--va-orange: #ed7d31;
	--va-orange-hover: #d96d24;
	--va-radius: 8px;
	--va-radius-lg: 16px;
	--va-container: 1368px;
	--va-gutter: clamp(1.25rem, 4vw, 2rem); /* 20px â†’ 32px side padding */
	--va-header-height: 73px;
	--va-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--va-font-display: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--va-font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--va-black);
	color: var(--va-white);
	font-family: var(--va-font-body);
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s var(--va-ease);
}

/* Remove TT5 / browser focus rings on all links */
a:focus,
a:focus-visible,
.wp-site-blocks a:focus,
.wp-site-blocks a:focus-visible {
	outline: none;
	box-shadow: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/**
 * Global content container.
 * Content area max = 1368px; left/right gutters are OUTSIDE that width.
 */
.va-container {
	width: 100%;
	max-width: calc(var(--va-container) + 2 * var(--va-gutter));
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--va-gutter);
	padding-right: var(--va-gutter);
	box-sizing: border-box;
}

/**
 * Global typography — Figma
 * H1: Inter 700 / 72px / 77.76px lh / -1.8px tracking
 * Accent phrase: wrap in <span>…</span> (orange)
 * Example: Find The Right Path For <span>Your Business</span>
 *
 * H2: Inter 700 / 48px / 52px lh / -1.2px tracking / white
 * H3: Inter 600 / 20px / 28px lh / 0 tracking / white
 */
h1,
.va-h1 {
	font-family: var(--va-font-display);
	font-weight: 700;
	font-style: normal;
	font-size: 72px;
	line-height: 77.76px;
	letter-spacing: -1.8px;
	color: var(--va-white);
	margin: 0;
}

h1 span,
.va-h1 span {
	color: var(--va-orange);
}

h2,
.va-h2 {
	font-family: var(--va-font-display);
	font-weight: 700;
	font-style: normal;
	font-size: 48px;
	line-height: 52px;
	letter-spacing: -1.2px;
	color: var(--va-white);
	margin: 0;
}

h3,
.va-h3 {
	font-family: var(--va-font-display);
	font-weight: 600;
	font-style: normal;
	font-size: 20px;
	line-height: 28px;
	letter-spacing: 0;
	color: var(--va-white);
	margin: 0;
}

/**
 * Body copy — Figma
 * Inter 400 / 18px / 30px lh / white @ 65%
 */
.text-body,
.va-text-body {
	font-family: var(--va-font-body);
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	line-height: 30px;
	letter-spacing: 0;
	color: rgba(255, 255, 255, 0.65);
	margin: 0;
}

/**
 * Label / eyebrow — Figma (float cards, section tags)
 * Inter 500 / 14px / 24px lh / 5% tracking / uppercase
 */
.va-label,
.text-label {
	font-family: var(--va-font-body);
	font-weight: 500;
	font-style: normal;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin: 0;
}

.va-label--accent,
.text-label--accent {
	color: var(--va-orange);
}

.va-label--muted,
.text-label--muted {
	color: rgba(255, 255, 255, 0.85);
}

/**
 * Small semibold text — Figma (float card body / value)
 * Inter 600 / 18px / 22px lh / white
 */
.va-text-sm,
.text-sm {
	font-family: var(--va-font-body);
	font-weight: 600;
	font-style: normal;
	font-size: 18px;
	line-height: 22px;
	letter-spacing: 0;
	color: var(--va-white);
	margin: 0;
}

/**
 * Stat value — Figma (hero metrics)
 * Inter 700 / 22px / 28px lh / white
 */
.va-stat-value,
.text-stat-value {
	font-family: var(--va-font-display);
	font-weight: 700;
	font-style: normal;
	font-size: 22px;
	line-height: 28px;
	letter-spacing: 0;
	color: var(--va-white);
	margin: 0;
	font-variant-numeric: tabular-nums;
}

/**
 * Stat label — Figma (hero metrics)
 * Inter 400 / 10px / 26px lh / uppercase / white @ 60%
 */
.va-stat-label,
.text-stat-label {
	font-family: var(--va-font-body);
	font-weight: 400;
	font-style: normal;
	font-size: 10px;
	line-height: 26px;
	letter-spacing: 0;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
}

@media (max-width: 1200px) {
	h1,
	.va-h1 {
		font-size: clamp(40px, 7vw, 56px);
		line-height: 1.08;
		letter-spacing: -0.025em;
	}

	h2,
	.va-h2 {
		font-size: clamp(32px, 5vw, 40px);
		line-height: 1.1;
		letter-spacing: -0.025em;
	}
}

@media (max-width: 600px) {
	h1,
	.va-h1 {
		font-size: clamp(32px, 9vw, 40px);
		line-height: 1.1;
		letter-spacing: -0.02em;
	}

	h2,
	.va-h2 {
		font-size: clamp(28px, 7vw, 32px);
		line-height: 1.15;
		letter-spacing: -0.02em;
	}
}

/* Buttons — Figma: Inter 500 / 16px / 24px lh */
.va-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 12px 20px;
	border-radius: var(--va-radius);
	font-family: var(--va-font-body);
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: background 0.2s var(--va-ease), color 0.2s var(--va-ease), border-color 0.2s var(--va-ease), transform 0.2s var(--va-ease);
}

.va-btn:hover {
	transform: translateY(-1px);
}

.va-btn-primary {
	background: var(--va-orange);
	color: var(--va-white) !important;
}

.va-btn-primary:hover {
	background: var(--va-orange-hover);
	color: var(--va-white) !important;
}

.va-btn-ghost {
	background: transparent;
	color: var(--va-white) !important;
	border-color: color-mix(in srgb, var(--va-white) 55%, transparent);
}

.va-btn-ghost:hover {
	background: var(--va-white);
	color: var(--va-black) !important;
}

.va-btn-light {
	background: var(--va-white);
	color: var(--va-black) !important;
}

.va-btn-light:hover {
	background: var(--va-soft);
}

/* WordPress button overrides inside theme patterns */
.va-btn-primary .wp-block-button__link,
.wp-block-button.va-btn-primary .wp-block-button__link {
	background: var(--va-orange) !important;
	color: var(--va-white) !important;
	border-radius: var(--va-radius) !important;
	padding: 0.85rem 1.4rem !important;
	font-weight: 600 !important;
}

.va-btn-ghost .wp-block-button__link,
.wp-block-button.va-btn-ghost .wp-block-button__link {
	background: transparent !important;
	color: var(--va-white) !important;
	border: 1.5px solid color-mix(in srgb, var(--va-white) 55%, transparent) !important;
	border-radius: var(--va-radius) !important;
	padding: 0.85rem 1.4rem !important;
	font-weight: 600 !important;
}

/* Header â€” Figma: 73px sticky */
.va-header {
	position: sticky;
	top: 0;
	z-index: 100;
	height: var(--va-header-height);
	background: #121212;
	border-bottom: 0;
}

.va-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	height: var(--va-header-height);
	min-height: var(--va-header-height);
	padding-block: 0;
}

.va-brand {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.va-logo,
.va-header .wp-block-site-title a,
.va-header .wp-block-site-title {
	font-family: var(--va-font-display);
	font-weight: 700;
	font-size: 1.25rem;
	letter-spacing: -0.02em;
	color: var(--va-white);
	white-space: nowrap;
	margin: 0;
	line-height: 1;
}

.va-logo span {
	color: var(--va-orange);
}

.va-header .wp-block-site-logo a {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}

.va-header .wp-block-site-logo img {
	height: 36px;
	width: auto;
}

/* Prefer uploaded logo; hide text title when a custom logo exists */
.va-header:has(.wp-block-site-logo img) .wp-block-site-title,
.va-header:has(.wp-block-site-logo img) .va-logo-text {
	display: none;
}

.va-nav-drawer {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-width: 0;
}

.va-nav {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 0;
}

/* Figma menu: Inter 500 / 16px / 20px lh */
.va-nav-list {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	justify-content: center;
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
	height: 20px;
}

.va-nav-list > li {
	position: relative;
	margin: 0;
	line-height: 0;
}

.va-nav-list a {
	display: inline-block;
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
	letter-spacing: 0;
	color: var(--va-white);
	text-decoration: none;
	white-space: nowrap;
	padding: 0;
}

.va-nav-list a:hover,
.va-nav-list .current-menu-item > a,
.va-nav-list .current_page_item > a {
	color: var(--va-orange);
}

.va-nav-list .sub-menu {
	display: none;
	position: absolute;
	top: calc(100% + 14px);
	left: 50%;
	transform: translateX(-50%);
	min-width: 200px;
	margin: 0;
	padding: 0.5rem 0;
	list-style: none;
	background: var(--va-surface);
	border: 1px solid var(--va-border);
	border-radius: var(--va-radius);
	z-index: 20;
}

.va-nav-list > li:hover > .sub-menu,
.va-nav-list > li:focus-within > .sub-menu {
	display: block;
}

.va-nav-list .sub-menu a {
	display: block;
	padding: 0.55rem 1rem;
	font-size: 14px;
	line-height: 20px;
	white-space: nowrap;
}

.va-nav-toggle {
	display: none;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	margin-left: auto;
	flex-shrink: 0;
}

.va-nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--va-white);
	border-radius: 2px;
	transition: transform 0.25s var(--va-ease), opacity 0.2s ease;
}

.va-header-actions {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-shrink: 0;
}

.va-header-actions .va-signin {
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	color: var(--va-white);
	text-decoration: none;
	white-space: nowrap;
}

.va-header-actions .va-signin:hover {
	color: var(--va-orange);
}

.va-header-actions .va-btn-quote {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	min-width: 103px;
	height: 32px;
	padding: 6px 12px;
	background: #ed7d31;
	color: #ffffff;
	border-radius: 90px;
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	text-decoration: none;
	white-space: nowrap;
}

.va-header-actions .va-btn-quote:hover {
	background: var(--va-orange-hover);
	color: #ffffff;
}

/* Mobile / tablet: logo + hamburger only */
@media (max-width: 960px) {
	.va-header {
		position: sticky;
		height: auto;
		min-height: var(--va-header-height);
	}

	.va-header-inner {
		position: relative;
		height: var(--va-header-height);
		min-height: var(--va-header-height);
		flex-wrap: nowrap;
	}

	.va-nav-toggle {
		display: inline-flex;
		z-index: 2;
	}

	.va-header.is-nav-open .va-nav-toggle span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.va-header.is-nav-open .va-nav-toggle span:nth-child(2) {
		opacity: 0;
	}

	.va-header.is-nav-open .va-nav-toggle span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.va-nav-drawer {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		width: auto;
		transform: none;
		margin: 0;
		/* Match .va-container gutters so links align with the logo */
		padding: 12px var(--va-gutter) 24px;
		box-sizing: border-box;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 20px;
		background: #121212;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
		box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
		z-index: 5;
	}

	.va-nav-drawer.is-open {
		display: flex;
	}

	.va-nav {
		flex: none;
		width: 100%;
		justify-content: flex-start;
	}

	.va-nav-list {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		height: auto;
		gap: 0;
		padding: 0;
		margin: 0;
	}

	.va-nav-list > li {
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
		line-height: normal;
	}

	.va-nav-list a {
		display: block;
		width: 100%;
		padding: 14px 0;
		font-size: 16px;
		line-height: 24px;
		white-space: normal;
	}

	.va-nav-list .sub-menu {
		position: static;
		display: block;
		transform: none;
		border: 0;
		background: transparent;
		margin: 0;
		padding: 0 0 8px 12px;
		min-width: 0;
	}

	.va-nav-list .sub-menu a {
		padding: 10px 0;
		font-size: 15px;
		opacity: 0.85;
	}

	/* Tablet: CTAs side by side at 50% */
	.va-header-actions {
		flex-direction: row;
		align-items: stretch;
		gap: 12px;
		width: 100%;
		padding-top: 4px;
	}

	.va-header-actions .va-signin {
		display: flex;
		flex: 1 1 calc(50% - 6px);
		align-items: center;
		justify-content: center;
		min-width: 0;
		height: 44px;
		border: 1px solid rgba(255, 255, 255, 0.22);
		border-radius: 90px;
		font-size: 15px;
	}

	.va-header-actions .va-btn-quote {
		flex: 1 1 calc(50% - 6px);
		width: auto;
		min-width: 0;
		height: 44px;
		font-size: 15px;
	}

	body.va-nav-open {
		overflow: hidden;
	}
}

/* ==========================================================================
   Hero — homepage (Figma)
   ========================================================================== */
.va-hero {
	background: #121212;
	padding: 0;
	overflow: hidden;
}

/* Figma: flex row — left copy + right frame 854×553, image 702×553 centered */
.va-hero-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding-top: 80px;
	padding-bottom: 80px;
}

.va-hero-copy {
	flex: 1 1 0;
	min-width: 0;
	max-width: 474px;
	width: 100%;
}

/* Figma sitewide hero badge: Inter 500 / 14 / 24 / #ED7D31, bg #ED7D31 @ 10%, h 36, gap→title 20 */
.va-hero-badge {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	box-sizing: border-box;
	min-height: 36px;
	margin: 0 0 20px;
	padding: 6px 20px;
	border: 0;
	border-radius: 999px;
	background: rgba(237, 125, 49, 0.1);
	color: var(--va-orange);
	font-family: var(--va-font-body);
	font-size: 14px;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: 0;
}

.va-hero-badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--va-orange);
	flex-shrink: 0;
}

.va-hero-badge-text {
	color: inherit;
}

.va-hero-badge-phone {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
	text-decoration-skip-ink: auto;
}

.va-hero-badge-phone:hover {
	opacity: 0.85;
}

.va-hero .va-h1 {
	max-width: none;
	margin-bottom: 15px;
}

.va-hero-desc {
	margin: 0 0 28px;
	max-width: 461px;
}

.va-hero-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.85rem;
	margin-bottom: 28px;
}

.va-hero-btn-primary,
.va-hero-btn-secondary {
	height: 48px;
	min-height: 48px;
	padding: 0 24px;
	border-radius: 90px;
	box-sizing: border-box;
}

.va-hero-btn-primary {
	gap: 0.55rem;
}

.va-hero-btn-secondary {
	background: #ffffff !important;
	color: #111111 !important;
	border-color: #ffffff !important;
}

.va-hero-btn-secondary:hover {
	background: #f3f3f3 !important;
	color: #111111 !important;
}

.va-icon-arrow {
	display: inline-block;
	vertical-align: middle;
}

.va-hero-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem 2.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.va-hero-stats li {
	display: flex;
	flex-direction: column;
	gap: 0;
	min-width: 4.5rem;
}

.va-hero-media {
	position: relative;
	flex: 0 1 854px;
	width: 100%;
	max-width: min(854px, 100%);
	min-width: 0;
	aspect-ratio: 854 / 553;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	border: 0;
	border-radius: 22px;
	background: transparent;
	overflow: visible;
}

.va-hero-figure {
	margin: 0;
	width: 82.2%; /* 702 / 854 */
	max-width: 702px;
	height: auto;
	aspect-ratio: 702 / 553;
	border-radius: 22px;
	overflow: hidden;
	background: #1a1a1a;
}

.va-hero-figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
}

/* Below design width: shrink right media / image */
@media (max-width: 1368px) {
	.va-hero-media {
		flex: 0 1 680px;
		max-width: min(680px, 100%);
	}

	.va-hero-figure {
		max-width: 560px;
	}

	.va-hero-float--top {
		width: min(200px, 40%);
	}

	.va-hero-float--bottom {
		width: min(220px, 44%);
	}
}

.va-hero-float {
	position: absolute;
	z-index: 2;
	box-sizing: border-box;
	padding: 16px 18px;
	border-radius: 16px;
	background: rgba(18, 18, 18, 0.88);
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

/* Flush to left / right edges of the 854 media frame */
.va-hero-float--top {
	top: 50px;
	right: 0;
	width: min(240px, 42%);
}

.va-hero-float--bottom {
	left: 0;
	bottom: 50px;
	width: min(260px, 46%);
}

.va-hero-float-label {
	margin-bottom: 5px;
}

.va-hero-float-text {
	max-width: 165px;
}

.va-hero-float-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0 6px;
	margin-bottom: 5px;
}

.va-hero-float-value {
	margin-bottom: 12px;
}

.va-hero-chart {
	display: block;
	width: 100%;
	max-width: 223px;
	line-height: 0;
}

.va-hero-chart svg {
	display: block;
	width: 100%;
	height: auto;
}

/* Orange CTA strip under hero */
.va-cta-bar {
	background: var(--va-orange);
	padding: 1.15rem 0;
}

.va-cta-bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.va-cta-bar-copy {
	display: flex;
	align-items: center;
	gap: 1rem;
	min-width: 0;
	flex: 1;
}

.va-cta-bar-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 65px;
	height: 65px;
	margin-top: 0;
	line-height: 0;
}

.va-cta-bar-icon .va-icon-headset,
.va-cta-bar-icon svg {
	display: block;
	width: 65px;
	height: 65px;
}

.va-cta-bar-copy p,
.va-cta-bar-text {
	margin: 0;
	max-width: 890px;
	font-family: var(--va-font-body);
	font-size: 18px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0;
	color: #ffffff;
}

.va-cta-bar-title {
	font-weight: 700;
}

.va-cta-bar-desc {
	font-weight: 400;
}

.va-cta-bar-btn {
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	height: 36px;
	min-height: 36px;
	padding: 0 16px;
	border-radius: 90px;
	box-sizing: border-box;
	background: #ffffff !important;
	color: #111111 !important;
	border-color: #ffffff !important;
	font-family: var(--va-font-body);
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
}

.va-cta-bar-btn:hover {
	background: #f3f3f3 !important;
	color: #111111 !important;
}

@media (max-width: 1200px) {
	.va-hero-inner {
		gap: 28px;
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.va-hero-copy {
		max-width: none;
		flex: 1 1 42%;
	}

	.va-hero-media {
		flex: 0 1 560px;
		max-width: min(560px, 100%);
	}

	.va-hero-figure {
		max-width: 460px;
	}

	.va-hero-desc {
		max-width: none;
	}
}

@media (max-width: 1100px) {
	.va-hero-float--top {
		top: clamp(24px, 6%, 50px);
		right: 0;
		width: min(200px, 44%);
	}

	.va-hero-float--bottom {
		left: 0;
		bottom: clamp(24px, 6%, 50px);
		width: min(220px, 48%);
	}
}

@media (max-width: 960px) {
	.va-hero-inner {
		flex-direction: column;
		align-items: stretch;
		gap: 32px;
		padding-top: 32px;
		padding-bottom: 48px;
	}

	.va-hero-copy {
		max-width: none;
		flex: none;
		width: 100%;
		position: relative;
		z-index: 2;
	}

	.va-hero .va-h1 {
		max-width: none;
	}

	.va-hero-desc {
		max-width: none;
	}

	.va-hero-stats {
		margin-bottom: 0;
		position: relative;
		z-index: 2;
	}

	/* Tablet: image full width, cards still overlaid on image */
	.va-hero-media {
		display: flex;
		align-items: center;
		justify-content: center;
		flex: none;
		width: 100%;
		max-width: 100%;
		height: auto;
		aspect-ratio: 854 / 553;
		position: relative;
		z-index: 1;
		margin-top: 0;
	}

	.va-hero-figure {
		width: 82.2%;
		max-width: 702px;
		height: auto;
		aspect-ratio: 702 / 553;
	}

	.va-hero-float--top {
		position: absolute;
		top: 32px;
		right: 0;
		left: auto;
		bottom: auto;
		width: min(200px, 42%);
		padding: 12px 14px;
	}

	.va-hero-float--bottom {
		position: absolute;
		left: 0;
		bottom: 32px;
		right: auto;
		top: auto;
		width: min(220px, 46%);
		padding: 12px 14px;
	}

	.va-cta-bar-inner {
		flex-direction: column;
		align-items: stretch;
		text-align: left;
		gap: 16px;
	}

	/* Align button with text (icon 65px + gap 1rem) */
	.va-cta-bar-btn {
		align-self: flex-start;
		margin-left: calc(65px + 1rem);
	}
}

@media (max-width: 600px) {
	.va-hero-inner {
		gap: 24px;
		padding-top: 20px;
		padding-bottom: 40px;
	}

	.va-hero-badge {
		font-size: 12px;
		line-height: 22px;
		min-height: 32px;
		padding: 5px 20px;
	}

	.va-hero-actions {
		flex-direction: column;
		align-items: stretch;
		margin-bottom: 24px;
		gap: 12px;
	}

	.va-hero-btn-primary,
	.va-hero-btn-secondary {
		width: 100%;
		justify-content: center;
	}

	.va-hero-stats {
		gap: 16px 24px;
	}

	/* Mobile only: cards below image, side by side */
	.va-hero-media {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
		aspect-ratio: auto;
		align-items: stretch;
		justify-content: stretch;
		border-radius: 0;
	}

	.va-hero-figure {
		grid-column: 1 / -1;
		width: 100%;
		max-width: 100%;
		border-radius: 16px;
		order: 0;
	}

	.va-hero-float {
		position: static;
		width: 100%;
		top: auto;
		right: auto;
		left: auto;
		bottom: auto;
		padding: 10px 12px;
		border-radius: 12px;
		box-shadow: none;
	}

	.va-hero-float--bottom {
		order: 1;
		width: 100%;
	}

	.va-hero-float--top {
		order: 2;
		width: 100%;
	}

	.va-hero-float-text {
		max-width: none;
	}

	.va-hero-chart {
		max-width: 100%;
	}

	.va-cta-bar-copy {
		gap: 0.75rem;
	}

	.va-cta-bar-icon,
	.va-cta-bar-icon .va-icon-headset,
	.va-cta-bar-icon svg {
		width: 48px;
		height: 48px;
	}

	/* Align button with text (icon 48px + gap 0.75rem) */
	.va-cta-bar-btn {
		margin-left: calc(48px + 0.75rem);
	}

	.va-cta-bar-copy p,
	.va-cta-bar-text {
		font-size: 16px;
		line-height: 22px;
	}
}

/* Page shell */
.va-main {
	min-height: 50vh;
}

.va-placeholder {
	padding: 6rem 0;
	text-align: center;
	color: var(--va-muted);
	border-bottom: 1px solid var(--va-border);
}

.va-placeholder h1 {
	font-family: var(--va-font-display);
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--va-white);
	margin: 0 0 0.75rem;
}

.va-placeholder p {
	max-width: 40ch;
	margin: 0 auto;
}

/* Footer â€” Figma typography */
.va-footer {
	background: #000000;
	border-top: 0;
	padding: 80px 0 34px;
	color: rgba(255, 255, 255, 0.7);
}

.va-footer-grid {
	display: grid;
	grid-template-columns: minmax(280px, 1.55fr) repeat(3, minmax(150px, 1fr));
	column-gap: 56px;
	row-gap: 40px;
	align-items: start;
}

.va-footer-brand-col {
	max-width: 303px;
}

.va-footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 20px;
	text-decoration: none;
	color: #ffffff;
}

.va-footer-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	border-radius: 8px;
	font-family: "Inter", sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: #ffffff;
	background: #111111;
	border: 1.5px solid transparent;
	background-image:
		linear-gradient(#111111, #111111),
		linear-gradient(135deg, #ed7d31 0%, #7ec8e3 50%, #c084fc 100%);
	background-origin: border-box;
	background-clip: padding-box, border-box;
}

.va-footer-brand-text {
	font-family: "Inter", sans-serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: #ffffff;
	white-space: nowrap;
}

/* Figma about: Inter 400 / 18px / 29px, #FFF @ 70% */
.va-footer-about {
	margin: 0;
	max-width: 303px;
	font-family: "Inter", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 29px;
	letter-spacing: 0;
	color: rgba(255, 255, 255, 0.7);
}

/* Figma headings: Inter 600 / 20px / 20px, #FFF */
.va-footer-heading {
	font-family: "Inter", sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 20px;
	letter-spacing: 0;
	color: #ffffff;
	margin: 0 0 20px;
}

.va-footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.va-footer-menu li {
	margin: 0;
}

/* Quick Links + Legal: Inter 400 / 18px / 36px, #FFF @ 60% */
.va-footer-menu a {
	display: block;
	font-family: "Inter", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 36px;
	letter-spacing: 0;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
}

.va-footer-menu a:hover {
	color: #ed7d31;
}

/* Services: Inter 400 / 18px / 19px, #FFF @ 60% (tighter for wrapping titles) */
.va-footer-menu--services {
	gap: 18px;
	max-width: 202px;
}

.va-footer-menu--services a {
	line-height: 19px;
}

.va-footer-meta {
	margin-top: 40px;
	padding: 0;
	height: 53px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	box-sizing: border-box;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
}

.va-footer-meta p {
	margin: 0;
	font-family: "Inter", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 20px;
	letter-spacing: 0;
	text-align: center;
	color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1100px) {
	.va-footer {
		padding: 64px 0 34px;
	}

	.va-footer-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		column-gap: 28px;
		row-gap: 36px;
	}

	.va-footer-brand-col {
		grid-column: 1 / -1;
		max-width: 560px;
	}

	.va-footer-about {
		max-width: none;
	}

	.va-footer-menu--services {
		max-width: none;
	}
}

@media (max-width: 768px) {
	/* Mobile: CTAs stacked full width */
	.va-header-actions {
		flex-direction: column;
	}

	.va-header-actions .va-signin,
	.va-header-actions .va-btn-quote {
		flex: none;
		width: 100%;
	}

	.va-footer {
		padding: 56px 0 34px;
	}

	.va-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 24px;
		row-gap: 32px;
	}

	.va-footer-brand-col {
		grid-column: 1 / -1;
		max-width: none;
	}

	.va-footer-heading {
		font-size: 18px;
		line-height: 22px;
		margin-bottom: 16px;
	}

	.va-footer-about {
		font-size: 16px;
		line-height: 26px;
	}

	.va-footer-menu a {
		font-size: 16px;
		line-height: 32px;
	}

	.va-footer-menu--services {
		gap: 14px;
		max-width: none;
	}

	.va-footer-menu--services a {
		line-height: 22px;
	}

	.va-footer-meta {
		margin-top: 36px;
		height: auto;
		min-height: 53px;
		padding: 16px 0 0;
		align-items: center;
	}

	.va-footer-meta p {
		font-size: 15px;
		line-height: 22px;
	}
}

@media (max-width: 560px) {
	.va-footer {
		padding: 48px 0 34px;
	}

	.va-footer-grid {
		grid-template-columns: 1fr;
		row-gap: 28px;
	}

	.va-footer-brand {
		margin-bottom: 14px;
	}

	.va-footer-brand-text {
		font-size: 18px;
	}

	.va-footer-mark {
		width: 32px;
		height: 32px;
		font-size: 12px;
	}

	.va-footer-about {
		font-size: 15px;
		line-height: 24px;
	}

	.va-footer-heading {
		font-size: 17px;
		line-height: 20px;
		margin-bottom: 14px;
	}

	.va-footer-menu a {
		font-size: 15px;
		line-height: 30px;
	}

	.va-footer-menu--services {
		gap: 12px;
	}

	.va-footer-menu--services a {
		line-height: 21px;
	}

	.va-footer-meta {
		margin-top: 32px;
		min-height: 48px;
		padding-top: 14px;
	}

	.va-footer-meta p {
		font-size: 14px;
		line-height: 20px;
		padding-inline: 4px;
	}
}

/* ==========================================================================
   Services — homepage
   ========================================================================== */
.va-services {
	background: #000000;
	padding: 100px 0;
}

.va-services-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.va-services-header {
	text-align: center;
	max-width: 740px;
	margin: 0 auto 40px;
}

.va-services-label {
	margin-bottom: 16px;
}

.va-services-heading {
	margin-bottom: 16px;
}

.va-services-desc {
	margin: 0 auto;
	max-width: 640px;
}

.va-services-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px 33px;
	width: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
}

.va-services-item {
	margin: 0;
	min-width: 0;
}

.va-services-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	height: 100%;
	min-height: 382px;
	box-sizing: border-box;
	padding: 32px;
	border-radius: 16px;
	background: #1e1e1e;
	border: 1px solid #383838;
	box-shadow:
		0 1px 2px -1px rgba(0, 0, 0, 0.1),
		0 1px 3px 0 rgba(0, 0, 0, 0.1);
	text-decoration: none;
	color: inherit;
	outline: none;
	transition: background 0.2s var(--va-ease), transform 0.2s var(--va-ease), border-color 0.2s var(--va-ease), box-shadow 0.2s var(--va-ease);
}

.va-services-card:focus,
.va-services-card:focus-visible,
.va-services-card:focus-within {
	outline: none;
	box-shadow:
		0 1px 2px -1px rgba(0, 0, 0, 0.1),
		0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

a.va-services-card:hover {
	background: #242424;
	border-color: #4a4a4a;
	transform: translateY(-2px);
}

.va-services-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 16px;
	border-radius: 0;
	background: transparent;
	overflow: visible;
	flex-shrink: 0;
}

.va-services-card-icon img {
	width: 48px;
	height: 48px;
	object-fit: contain;
	display: block;
}

.va-services-card-title {
	margin: 0 0 16px;
}

.va-services-card-desc {
	margin: 0;
	font-family: var(--va-font-body);
	font-size: 15px;
	font-weight: 400;
	line-height: 24px;
	color: rgba(255, 255, 255, 0.65);
}

.va-services-footer {
	display: flex;
	justify-content: center;
	width: 100%;
	margin-top: 30px;
}

.va-services-btn {
	height: 48px;
	min-height: 48px;
	padding: 0 24px;
	border-radius: 90px;
	box-sizing: border-box;
	gap: 8px;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	background: #ed7d31;
	color: #ffffff !important;
}

.va-services-btn:hover {
	background: var(--va-orange-hover);
	color: #ffffff !important;
}

.va-services-btn .va-icon-arrow {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	color: inherit;
}

@media (max-width: 1100px) {
	.va-services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px 33px;
	}
}

@media (max-width: 700px) {
	.va-services {
		padding: 56px 0;
	}

	.va-services-header {
		margin-bottom: 32px;
	}

	.va-services-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.va-services-card {
		min-height: 0;
		padding: 28px 24px;
	}

	.va-services-footer {
		margin-top: 28px;
	}
}

/* ==========================================================================
   About Us — homepage
   ========================================================================== */
.va-about {
	background: #121212;
	padding: 100px 0;
	margin-top: 0;
}

.va-about.va-about--black {
	background: #000000;
}

.va-main > .va-about,
.va-main > .wp-block-group.va-about {
	margin-block-start: 0;
	margin-top: 0;
}

.va-main > .va-services + .va-about,
.va-main > .wp-block-group.va-services + .wp-block-group.va-about,
.va-main > .va-about + .va-about,
.va-main > .wp-block-group.va-about + .wp-block-group.va-about {
	margin-block-start: 0;
}

.va-about-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 702px);
	gap: 64px;
	align-items: center;
}

.va-about-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-width: 520px;
}

.va-about-label {
	margin-bottom: 15px;
}

.va-about-heading {
	margin-bottom: 15px;
}

.va-about-desc {
	margin: 0 0 30px;
	max-width: 520px;
	line-height: 28px;
	color: rgba(255, 255, 255, 0.6);
}

.va-about-btn {
	height: 48px;
	min-height: 48px;
	padding: 0 24px;
	border-radius: 90px;
	box-sizing: border-box;
}

.va-about-media {
	min-width: 0;
	width: 100%;
}

.va-about-image {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 702 / 512;
	object-fit: cover;
	border-radius: 16px;
	border: 0;
	box-sizing: border-box;
}

@media (max-width: 1200px) {
	.va-about-inner {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 40px;
	}

	.va-about-copy,
	.va-about-desc {
		max-width: none;
	}
}

@media (max-width: 900px) {
	.va-about {
		padding: 72px 0;
	}

	.va-about-inner {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.va-about-copy {
		max-width: 100%;
	}

	.va-about-image {
		aspect-ratio: 16 / 10;
	}
}

@media (max-width: 600px) {
	.va-about {
		padding: 56px 0;
	}

	.va-about-desc {
		margin-bottom: 24px;
	}

	.va-about-btn {
		height: 44px;
		min-height: 44px;
		padding: 0 20px;
	}
}

/* ==========================================================================
   Our Process — homepage
   ========================================================================== */
.va-process {
	background: #000000;
	padding: 100px 0;
	margin-top: 0;
}

.va-main > .va-process,
.va-main > .wp-block-group.va-process,
.va-main > .va-about + .va-process,
.va-main > .wp-block-group.va-about + .wp-block-group.va-process,
.va-main > .va-process + .va-about,
.va-main > .wp-block-group.va-process + .wp-block-group.va-about {
	margin-block-start: 0;
	margin-top: 0;
}

.va-process-inner {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.va-process-header {
	text-align: center;
	max-width: 800px;
	width: 100%;
	margin: 0 auto 52px;
}

.va-process-label {
	margin-bottom: 15px;
	font-weight: 600;
	line-height: 20px;
	letter-spacing: 0.7px;
}

.va-process-heading {
	margin-bottom: 10px;
	line-height: 48px;
	letter-spacing: 0;
}

.va-process-desc {
	margin: 0 auto;
	max-width: 100%;
	line-height: 28px;
	color: rgba(255, 255, 255, 0.6);
}

.va-process-body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 48px;
	align-items: stretch;
}

.va-process-list {
	list-style: none;
	margin: 0;
	padding: 0 21px 0 0;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.va-process-list-item {
	margin: 0;
	flex: 0 0 auto;
	display: flex;
}

.va-process-item {
	position: relative;
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	height: 89px;
	min-height: 89px;
	box-sizing: border-box;
	padding: 12px 36px 12px 20px;
	border-radius: 16px;
	border: 1px solid #7d7d7d;
	background: #000000;
	color: rgba(255, 255, 255, 0.5);
	font-family: var(--va-font-body);
	font-size: 18px;
	font-weight: 500;
	line-height: 28px;
	text-align: left;
	cursor: pointer;
	transition:
		border-color 0.2s var(--va-ease),
		color 0.2s var(--va-ease),
		background 0.2s var(--va-ease),
		box-shadow 0.2s var(--va-ease);
}

.va-process-item:hover,
.va-process-item:focus-visible,
.va-process-item.is-active {
	border-color: var(--va-orange);
	color: var(--va-white);
	outline: none;
	box-shadow:
		0 0 0 1px rgba(237, 125, 49, 0.35),
		0 0 28px rgba(237, 125, 49, 0.28);
}

.va-process-item-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 14px;
	background: #1a1a1a;
	border: 1px solid #7d7d7d;
	box-sizing: border-box;
	flex-shrink: 0;
	overflow: hidden;
	transition: background 0.2s var(--va-ease), border-color 0.2s var(--va-ease);
}

.va-process-item.is-active .va-process-item-icon,
.va-process-item:hover .va-process-item-icon,
.va-process-item:focus-visible .va-process-item-icon {
	background: var(--va-orange);
	border-color: var(--va-orange);
}

.va-process-item-icon img {
	width: 36px;
	height: 36px;
	object-fit: contain;
	display: block;
	opacity: 0.85;
	transition: opacity 0.2s var(--va-ease);
}

.va-process-item.is-active .va-process-item-icon img,
.va-process-item:hover .va-process-item-icon img,
.va-process-item:focus-visible .va-process-item-icon img {
	opacity: 1;
}

.va-process-item-title {
	flex: 1 1 auto;
	min-width: 0;
}

.va-process-item-num {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(50%, -50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-left: 0;
	border-radius: 50%;
	border: 1px solid #7d7d7d;
	background: #000000;
	box-sizing: border-box;
	font-family: var(--va-font-body);
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	color: var(--va-white);
	flex-shrink: 0;
	z-index: 2;
	transition: background 0.2s var(--va-ease), border-color 0.2s var(--va-ease), color 0.2s var(--va-ease);
}

.va-process-item.is-active .va-process-item-num,
.va-process-item:hover .va-process-item-num,
.va-process-item:focus-visible .va-process-item-num {
	background: var(--va-orange);
	border-color: var(--va-orange);
	color: var(--va-white);
}

.va-process-panels {
	position: relative;
	align-self: stretch;
	display: flex;
	min-height: 100%;
}

.va-process-detail {
	position: relative;
	box-sizing: border-box;
	flex: 1 1 auto;
	width: 100%;
	min-height: 100%;
	padding: 48px;
	border-radius: 24px;
	background: #1a1a1a;
	border: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.va-process-detail[hidden] {
	display: none !important;
}

.va-process-detail-watermark {
	position: relative;
	display: block;
	margin: 0 0 18px;
	font-family: var(--va-font-display);
	font-size: 40px;
	font-weight: 700;
	line-height: 40px;
	letter-spacing: 0;
	color: rgba(255, 255, 255, 0.2);
	pointer-events: none;
	user-select: none;
	z-index: 0;
}

.va-process-detail-icon,
.va-process-detail-title,
.va-process-detail-desc,
.va-process-detail-bullets {
	position: relative;
	z-index: 1;
}

.va-process-detail-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 110px;
	height: 110px;
	margin: 0 0 18px;
	border-radius: 20px;
	background: var(--va-orange);
	overflow: hidden;
	flex-shrink: 0;
}

.va-process-detail-icon img {
	width: 56px;
	height: 56px;
	object-fit: contain;
	display: block;
}

.va-process-detail-title {
	margin: 0;
	font-family: var(--va-font-display);
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
	letter-spacing: 0;
	color: var(--va-white);
}

.va-process-detail-desc {
	margin: 20px 0;
	font-family: var(--va-font-body);
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	letter-spacing: 0;
	color: rgba(255, 255, 255, 0.6);
	max-width: 587px;
}

.va-process-detail-bullets {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.va-process-detail-bullets li {
	position: relative;
	padding-left: 20px;
	font-family: var(--va-font-body);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0;
	color: rgba(255, 255, 255, 0.6);
}

.va-process-detail-bullets li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--va-orange);
}

@media (max-width: 1200px) {
	.va-process-heading {
		line-height: 1.1;
	}
}

@media (max-width: 1100px) {
	.va-process-body {
		gap: 32px;
	}
}

@media (max-width: 900px) {
	.va-process {
		padding: 64px 0;
	}

	.va-process-header {
		margin-bottom: 32px;
	}

	.va-process-body {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.va-process-list {
		gap: 12px;
	}

	.va-process-list-item {
		flex: 0 0 auto;
	}

	.va-process-item {
		height: 58px;
		min-height: 58px;
		padding: 8px 24px 8px 12px;
		gap: 10px;
		font-size: 15px;
		line-height: 22px;
	}

	.va-process-item-icon {
		width: 36px;
		height: 36px;
		border-radius: 8px;
	}

	.va-process-item-icon img {
		width: 20px;
		height: 20px;
	}

	.va-process-item-num {
		width: 28px;
		height: 28px;
		font-size: 11px;
	}

	.va-process-detail {
		min-height: 0;
		padding: 28px 24px;
	}

	.va-process-detail-watermark {
		margin-bottom: 14px;
		font-size: 32px;
		line-height: 32px;
	}

	.va-process-detail-icon {
		width: 72px;
		height: 72px;
		margin: 0 0 14px;
		border-radius: 14px;
	}

	.va-process-detail-icon img {
		width: 36px;
		height: 36px;
	}

	.va-process-detail-title {
		font-size: 20px;
		line-height: 28px;
	}

	.va-process-detail-desc {
		margin: 16px 0;
		font-size: 15px;
		line-height: 24px;
	}
}

@media (max-width: 600px) {
	.va-process {
		padding: 48px 0;
	}

	.va-process-header {
		margin-bottom: 28px;
	}

	.va-process-list {
		gap: 10px;
	}

	.va-process-item {
		height: 52px;
		min-height: 52px;
		padding: 6px 22px 6px 10px;
		font-size: 13px;
		line-height: 18px;
		gap: 8px;
		border-radius: 12px;
	}

	.va-process-item.is-active,
	.va-process-item:hover,
	.va-process-item:focus-visible {
		box-shadow: 0 0 0 1px rgba(237, 125, 49, 0.25);
	}

	.va-process-item-icon {
		width: 32px;
		height: 32px;
		border-radius: 8px;
	}

	.va-process-item-icon img {
		width: 18px;
		height: 18px;
	}

	.va-process-item-num {
		width: 26px;
		height: 26px;
		font-size: 10px;
		border-width: 1px;
	}

	.va-process-detail {
		padding: 24px 18px;
		border-radius: 16px;
	}

	.va-process-detail-watermark {
		font-size: 28px;
		line-height: 28px;
		margin-bottom: 12px;
	}

	.va-process-detail-icon {
		width: 56px;
		height: 56px;
		margin: 0 0 12px;
		border-radius: 12px;
	}

	.va-process-detail-icon img {
		width: 28px;
		height: 28px;
	}

	.va-process-detail-title {
		font-size: 18px;
		line-height: 26px;
	}

	.va-process-detail-desc {
		margin: 14px 0;
		font-size: 14px;
		line-height: 22px;
	}

	.va-process-detail-bullets {
		gap: 10px;
	}

	.va-process-detail-bullets li {
		font-size: 14px;
		line-height: 22px;
		padding-left: 16px;
	}
}

/* ==========================================================================
   Testimonials — homepage slider
   ========================================================================== */
.va-testimonials {
	background: #121212;
	padding: 100px 0;
	margin-top: 0;
}

.va-main > .va-testimonials,
.va-main > .wp-block-group.va-testimonials,
.va-main > .va-about + .va-testimonials,
.va-main > .wp-block-group.va-about + .wp-block-group.va-testimonials {
	margin-block-start: 0;
	margin-top: 0;
}

.va-testimonials-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.va-testimonials-header {
	text-align: center;
	max-width: 455px;
	width: 100%;
	margin: 0 auto 48px;
}

/* Label uses .va-label + .va-label--accent; Figma: 600 / 20px lh / 0.7px tracking */
.va-testimonials-label {
	margin-bottom: 16px;
	font-weight: 600;
	line-height: 20px;
	letter-spacing: 0.7px;
}

/* Heading uses .va-h2; Figma Heading 2 lh is 48px (global is 52px) */
.va-testimonials-heading {
	margin: 0;
	line-height: 48px;
}

.va-testimonials-slider {
	position: relative;
	width: 100%;
	max-width: 1092px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.va-testimonials-viewport {
	width: 100%;
	position: relative;
}

.va-testimonials-card {
	box-sizing: border-box;
	width: 100%;
	min-height: 455px;
	padding: 48px 70px;
	border-radius: 24px;
	background: #1e1e1e;
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	flex-direction: column;
}

.va-testimonials-card[hidden] {
	display: none !important;
}

.va-testimonials-quote {
	margin: 0 0 16px;
	width: 48px;
	height: 48px;
	line-height: 0;
}

.va-testimonials-quote svg {
	display: block;
	width: 48px;
	height: 48px;
}

.va-testimonials-card-title {
	margin: 0 0 4px;
	font-family: var(--va-font-display);
	font-size: 24px;
	font-weight: 700;
	line-height: 39px;
	letter-spacing: 0;
	color: var(--va-white);
	max-width: 953px;
}

.va-testimonials-card-text {
	margin: 0 0 32px;
	font-family: var(--va-font-body);
	font-size: 24px;
	font-weight: 400;
	line-height: 39px;
	letter-spacing: 0;
	color: #9a9a9a;
	max-width: 953px;
}

.va-testimonials-author {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: auto;
}

.va-testimonials-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--va-orange);
	font-family: var(--va-font-body);
	font-size: 20px;
	font-weight: 700;
	line-height: 28px;
	letter-spacing: 0;
	color: var(--va-white);
	flex-shrink: 0;
}

.va-testimonials-author-meta {
	min-width: 0;
}

.va-testimonials-author-name {
	margin: 0;
	font-family: var(--va-font-body);
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	letter-spacing: 0;
	color: var(--va-white);
}

.va-testimonials-author-role {
	margin: 0;
	font-family: var(--va-font-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	letter-spacing: 0;
	color: rgba(255, 255, 255, 0.7);
}

.va-testimonials-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border-radius: 50%;
	border: 1px solid #7d7d7d;
	background: #000000;
	color: var(--va-white);
	cursor: pointer;
	outline: none;
	box-shadow: none;
	-webkit-tap-highlight-color: transparent;
	transition:
		border-color 0.2s var(--va-ease),
		background 0.2s var(--va-ease),
		color 0.2s var(--va-ease);
}

.va-testimonials-nav:hover {
	border-color: var(--va-orange);
	color: var(--va-orange);
}

.va-testimonials-nav:focus,
.va-testimonials-nav:focus-visible,
.va-testimonials-nav:active {
	outline: none;
	box-shadow: none;
	border-color: #7d7d7d;
	color: var(--va-white);
}

.va-testimonials-nav:hover:focus,
.va-testimonials-nav:hover:focus-visible,
.va-testimonials-nav:hover:active {
	border-color: var(--va-orange);
	color: var(--va-orange);
}

.va-testimonials-nav--prev {
	left: 0;
	transform: translate(-50%, -50%);
}

.va-testimonials-nav--next {
	right: 0;
	transform: translate(50%, -50%);
}

@media (max-width: 1200px) {
	.va-testimonials-heading {
		line-height: 1.1;
	}
}

@media (max-width: 900px) {
	.va-testimonials {
		padding: 72px 0;
	}

	.va-testimonials-header {
		max-width: 100%;
		margin-bottom: 36px;
	}

	.va-testimonials-card {
		min-height: 0;
		padding: 36px 40px;
	}

	.va-testimonials-card-title {
		font-size: 22px;
		line-height: 34px;
	}

	.va-testimonials-card-text {
		font-size: 18px;
		line-height: 30px;
	}

	.va-testimonials-nav {
		width: 42px;
		height: 42px;
	}
}

@media (max-width: 600px) {
	.va-testimonials {
		padding: 56px 0;
	}

	.va-testimonials-header {
		margin-bottom: 28px;
	}

	.va-testimonials-slider {
		padding: 0 28px;
	}

	.va-testimonials-card {
		padding: 28px 22px;
		border-radius: 16px;
	}

	.va-testimonials-quote {
		width: 32px;
		height: 32px;
		margin-bottom: 12px;
	}

	.va-testimonials-quote svg {
		width: 32px;
		height: 32px;
	}

	.va-testimonials-card-title {
		font-size: 18px;
		line-height: 28px;
	}

	.va-testimonials-card-text {
		margin-bottom: 24px;
		font-size: 16px;
		line-height: 26px;
	}

	.va-testimonials-avatar {
		width: 36px;
		height: 36px;
		font-size: 14px;
		line-height: 20px;
	}

	.va-testimonials-nav--prev {
		left: 0;
		transform: translateY(-50%);
	}

	.va-testimonials-nav--next {
		right: 0;
		transform: translateY(-50%);
	}
}

/* -------------------------------------------------------------------------
   Contact CTA — per-page banner above footer
   ------------------------------------------------------------------------- */
.va-contact-cta {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background-color: #0a0a0a;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 88px 0;
	min-height: 434px;
	margin: 0;
	margin-block-start: 0;
	margin-block-end: 0;
	color: var(--va-white);
	display: flex;
	align-items: center;
	box-sizing: border-box;
}

.va-contact-cta.has-image {
	background-image: var(--va-contact-cta-image);
}

.va-main > .va-contact-cta,
.va-main > .wp-block-group.va-contact-cta,
.wp-site-blocks > .va-contact-cta,
.wp-site-blocks > .wp-block-group.va-contact-cta {
	margin: 0;
	margin-block-start: 0;
	margin-block-end: 0;
}

.wp-site-blocks > footer.wp-block-template-part,
.wp-site-blocks > .wp-block-template-part:has(.va-footer) {
	margin-block-start: 0;
	margin-top: 0;
}

.va-contact-cta + footer.wp-block-template-part,
.va-main + footer.wp-block-template-part {
	margin-block-start: 0;
	margin-top: 0;
}

.va-contact-cta-inner {
	position: relative;
	z-index: 1;
	width: 100%;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	column-gap: 64px;
	row-gap: 40px;
	align-items: center;
}

.va-contact-cta-copy {
	max-width: 629px;
	width: 100%;
}

/* Uses .va-h2; Figma: Inter 700 / 48 / 48 lh / -1.2px / #FFF */
.va-contact-cta-heading {
	margin: 0 0 16px;
	line-height: 48px;
	letter-spacing: -1.2px;
	color: var(--va-white);
}

/* Figma: Inter 400 / 18 / 28 lh / #FFF @ 80% */
.va-contact-cta-text {
	margin: 0;
	max-width: 563px;
	font-family: var(--va-font-body);
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	letter-spacing: 0;
	color: rgba(255, 255, 255, 0.8);
}

.va-contact-cta-actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 28px;
	justify-self: start;
	max-width: 100%;
}

.va-contact-cta-btns {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.va-contact-cta-btn {
	box-sizing: border-box;
	min-width: 221px;
	width: 221px;
	min-height: 56px;
	height: 56px;
	padding: 0 24px;
	border-radius: 999px;
	font-family: var(--va-font-body);
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	justify-content: center;
}

.va-contact-cta-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 28px;
}

/* Figma: Inter 400 / 16 / 24 lh / #FFF @ 70% / underline */
.va-contact-cta-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--va-font-body);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.2s var(--va-ease);
}

.va-contact-cta-link:hover,
.va-contact-cta-link:focus-visible {
	color: var(--va-orange);
	outline: none;
}

.va-contact-cta-link span:last-child {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.va-contact-cta-link-icon {
	display: inline-flex;
	flex-shrink: 0;
	color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 900px) {
	.va-contact-cta,
	.va-contact-cta.has-image {
		padding: 64px 0;
		min-height: 434px;
		background-position: right center;
		background-size: cover;
	}

	.va-contact-cta-inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.va-contact-cta-copy {
		max-width: 100%;
	}

	.va-contact-cta-heading {
		max-width: none;
		font-size: 36px;
		line-height: 40px;
	}

	.va-contact-cta-btn {
		min-width: 180px;
		width: auto;
		min-height: 48px;
		height: 48px;
		padding: 0 20px;
		font-size: 15px;
	}
}

@media (max-width: 600px) {
	.va-contact-cta,
	.va-contact-cta.has-image {
		padding: 48px 0;
		min-height: 0;
		background-position: right center;
	}

	.va-contact-cta-heading {
		font-size: 28px;
		line-height: 34px;
		letter-spacing: -0.8px;
	}

	.va-contact-cta-text {
		font-size: 16px;
		line-height: 26px;
	}

	.va-contact-cta-btns {
		width: 100%;
		flex-direction: column;
	}

	.va-contact-cta-btn {
		width: 100%;
		min-width: 0;
		min-height: 44px;
		height: 44px;
		padding: 0 18px;
		font-size: 15px;
		justify-content: center;
	}

	.va-contact-cta-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}
}

