:root {
	--navy: #081A2F;
	--deep-blue: #0E2A47;
	--blue: #2563EB;
	--cyan: #06B6D4;
	--slate: #334155;
	--muted: #64748B;
	--light: #F8FAFC;
	--line: #E2E8F0;
	--white: #FFFFFF;
	--amber: #F59E0B;
	--ink: #0F172A;
	--shadow: 0 18px 45px rgba(8, 26, 47, 0.12);
	--radius: 8px;
	--font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--white);
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.vf-menu-open {
	overflow: hidden;
}

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

a {
	color: var(--blue);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--deep-blue);
}

:focus-visible {
	outline: 3px solid rgba(6, 182, 212, 0.75);
	outline-offset: 3px;
}

h1,
h2,
h3,
h4 {
	color: var(--navy);
	line-height: 1.12;
	margin: 0 0 0.72em;
	font-weight: 750;
	letter-spacing: 0;
}

h1 {
	font-size: clamp(2.35rem, 4vw, 4.35rem);
	max-width: 880px;
}

h2 {
	font-size: clamp(1.85rem, 2.7vw, 3rem);
	max-width: 820px;
}

h3 {
	font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

p {
	margin: 0 0 1.15rem;
}

ul,
ol {
	margin: 0 0 1.25rem;
	padding-left: 1.25rem;
}

li + li {
	margin-top: 0.42rem;
}

.screen-reader-text,
.vf-skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.vf-skip-link:focus {
	position: fixed;
	top: 1rem;
	left: 1rem;
	z-index: 2000;
	width: auto;
	height: auto;
	padding: 0.7rem 1rem;
	clip: auto;
	color: var(--navy);
	background: var(--white);
	border: 2px solid var(--cyan);
	border-radius: var(--radius);
}

.vf-container {
	width: min(100% - 2rem, 1180px);
	margin-inline: auto;
}

.vf-main {
	min-height: 58vh;
}

.vf-section {
	padding: clamp(3rem, 5.5vw, 5.5rem) 0;
}

.vf-section-soft {
	background: var(--light);
}

.vf-section-dark {
	color: rgba(255, 255, 255, 0.82);
	background:
		radial-gradient(circle at top right, rgba(6, 182, 212, 0.18), transparent 34rem),
		linear-gradient(135deg, var(--navy), var(--deep-blue));
}

.vf-section-dark h1,
.vf-section-dark h2,
.vf-section-dark h3 {
	color: var(--white);
}

.vf-section-dark a {
	color: var(--white);
}

.vf-section-intro,
.vf-hero-copy p {
	max-width: 760px;
	color: var(--slate);
	font-size: clamp(1.05rem, 1.3vw, 1.2rem);
}

.vf-section-dark .vf-section-intro,
.vf-section-dark .vf-hero-copy p {
	color: rgba(255, 255, 255, 0.78);
}

.vf-eyebrow {
	margin-bottom: 0.85rem;
	color: var(--cyan);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.vf-muted {
	color: var(--muted);
}

.vf-site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid rgba(226, 232, 240, 0.9);
	backdrop-filter: blur(16px);
}

body.admin-bar .vf-site-header {
	top: 32px;
}

.vf-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 78px;
	gap: 1.25rem;
}

.vf-brand-text {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--navy);
	font-size: 1.05rem;
	font-weight: 800;
	text-decoration: none;
}

.vf-brand-mark {
	display: inline-grid;
	width: 42px;
	height: 42px;
	place-items: center;
	color: var(--white);
	background: linear-gradient(135deg, var(--blue), var(--cyan));
	border-radius: var(--radius);
	font-size: 0.8rem;
	font-weight: 850;
}

.custom-logo-link img {
	max-height: 48px;
	width: auto;
}

.vf-menu {
	display: flex;
	align-items: center;
	gap: 1.05rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.vf-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: var(--slate);
	font-size: 0.94rem;
	font-weight: 650;
	text-decoration: none;
}

.vf-menu a:hover,
.vf-menu .current-menu-item > a {
	color: var(--blue);
}

.vf-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	place-items: center;
	padding: 0;
	color: var(--navy);
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	cursor: pointer;
}

.vf-menu-toggle-bars,
.vf-menu-toggle-bars::before,
.vf-menu-toggle-bars::after {
	display: block;
	width: 20px;
	height: 2px;
	background: currentColor;
	border-radius: 999px;
	content: "";
	transition: transform 180ms ease, opacity 180ms ease;
}

.vf-menu-toggle-bars::before {
	transform: translateY(-7px);
}

.vf-menu-toggle-bars::after {
	transform: translateY(5px);
}

.vf-menu-toggle[aria-expanded="true"] .vf-menu-toggle-bars {
	transform: rotate(45deg);
}

.vf-menu-toggle[aria-expanded="true"] .vf-menu-toggle-bars::before {
	opacity: 0;
}

.vf-menu-toggle[aria-expanded="true"] .vf-menu-toggle-bars::after {
	transform: translateY(-2px) rotate(-90deg);
}

.vf-hero {
	padding-top: clamp(3.5rem, 6vw, 6.25rem);
	padding-bottom: clamp(3.25rem, 5.5vw, 5.5rem);
}

.vf-hero-grid,
.vf-two-column {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
	align-items: center;
	gap: clamp(2rem, 5vw, 5rem);
}

.vf-hero-visual,
.vf-diagram {
	margin: 0;
	padding: 0.75rem;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(226, 232, 240, 0.2);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.vf-section:not(.vf-section-dark) .vf-diagram {
	background: var(--white);
	border-color: var(--line);
}

.vf-button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 1.8rem;
}

.vf-button,
.vf-button-secondary,
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0.78rem 1.05rem;
	border-radius: var(--radius);
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.vf-button,
.wp-block-button__link {
	color: var(--white);
	background: linear-gradient(135deg, var(--blue), #0891B2);
	border: 1px solid rgba(37, 99, 235, 0.1);
	box-shadow: 0 12px 28px rgba(37, 99, 235, 0.23);
}

.vf-button:hover,
.wp-block-button__link:hover {
	color: var(--white);
	transform: translateY(-1px);
	box-shadow: 0 16px 34px rgba(37, 99, 235, 0.3);
}

.vf-button-secondary {
	color: var(--navy);
	background: var(--white);
	border: 1px solid var(--line);
}

.vf-section-dark .vf-button-secondary {
	color: var(--white);
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.24);
}

.vf-button-secondary:hover {
	color: var(--blue);
	border-color: rgba(37, 99, 235, 0.45);
	transform: translateY(-1px);
}

.vf-disabled-link {
	color: var(--muted);
	background: var(--light);
	cursor: not-allowed;
}

.vf-trust-strip {
	padding: 1rem 0;
	background: var(--white);
	border-bottom: 1px solid var(--line);
}

.vf-trust-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.vf-trust-list span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0.35rem 0.65rem;
	color: var(--deep-blue);
	background: var(--light);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	font-size: 0.9rem;
	font-weight: 750;
}

.vf-grid {
	display: grid;
	gap: 1rem;
	margin-top: 1.35rem;
}

.vf-grid-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vf-grid-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vf-grid-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vf-card,
.vf-source-card {
	position: relative;
	padding: 1.18rem;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 1px 0 rgba(8, 26, 47, 0.04);
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.vf-card:hover,
.vf-source-card:hover {
	transform: translateY(-2px);
	border-color: rgba(37, 99, 235, 0.32);
	box-shadow: var(--shadow);
}

.vf-card h3,
.vf-card h2,
.vf-source-card h3 {
	margin-bottom: 0.55rem;
}

.vf-card-compact {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: start;
	gap: 0.8rem;
}

.vf-card-compact .vf-card-icon {
	margin-bottom: 0;
}

.vf-card-compact h3 {
	margin: 0;
}

.vf-card p:last-child,
.vf-source-card p:last-child {
	margin-bottom: 0;
}

.vf-card a:not(.vf-button):not(.vf-button-secondary),
.vf-source-card a {
	font-weight: 800;
}

.vf-card-dark {
	color: rgba(255, 255, 255, 0.78);
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.18);
	box-shadow: none;
}

.vf-card-dark h3 {
	color: var(--white);
}

.vf-service-card,
.vf-use-case,
.vf-detail-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.vf-service-card a,
.vf-detail-card a {
	margin-top: auto;
}

.vf-detail-card {
	gap: 0.3rem;
}

.vf-service-stack {
	display: grid;
	gap: 1.25rem;
}

.vf-mini-grid {
	display: grid;
	gap: 0.85rem;
	margin-top: 1.5rem;
}

.vf-mini-grid div {
	padding: 1rem;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.vf-mini-grid strong,
.vf-mini-grid span {
	display: block;
}

.vf-mini-grid strong {
	color: var(--navy);
}

.vf-mini-grid span {
	color: var(--muted);
	font-size: 0.94rem;
}

.vf-source-note {
	margin-top: 1.6rem;
}

.vf-source-grid {
	align-items: stretch;
}

.vf-source-card {
	box-shadow: none;
}

.vf-source-card h3 {
	font-size: 1rem;
}

.vf-source-card p {
	color: var(--muted);
	font-size: 0.94rem;
}

.vf-section-dark .vf-source-card {
	color: rgba(255, 255, 255, 0.78);
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.18);
}

.vf-section-dark .vf-source-card h3,
.vf-section-dark .vf-source-card a {
	color: var(--white);
}

.vf-section-dark .vf-source-card p {
	color: rgba(255, 255, 255, 0.72);
}

.vf-check-list {
	padding-left: 0;
	list-style: none;
}

.vf-check-list li {
	position: relative;
	padding-left: 1.65rem;
}

.vf-check-list li::before {
	position: absolute;
	top: 0.1rem;
	left: 0;
	color: var(--cyan);
	font-weight: 900;
	content: "\2713";
}

.vf-two-col-list {
	columns: 2;
	column-gap: 2rem;
}

.vf-two-col-list li {
	break-inside: avoid;
}

.vf-timeline {
	display: grid;
	gap: 0.8rem;
	padding: 0;
	margin-top: 1.5rem;
	list-style: none;
	counter-reset: timeline;
}

.vf-timeline li {
	position: relative;
	padding: 1rem 1rem 1rem 3.25rem;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.vf-timeline li::before {
	position: absolute;
	top: 1rem;
	left: 1rem;
	display: grid;
	width: 1.55rem;
	height: 1.55rem;
	place-items: center;
	color: var(--white);
	background: var(--blue);
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 800;
	counter-increment: timeline;
	content: counter(timeline);
}

.vf-cta-band {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: clamp(1.5rem, 3vw, 2.4rem);
	color: rgba(255, 255, 255, 0.82);
	background:
		linear-gradient(135deg, rgba(37, 99, 235, 0.28), rgba(6, 182, 212, 0.12)),
		var(--navy);
	border-radius: var(--radius);
}

.vf-cta-band h2 {
	color: var(--white);
	margin-bottom: 0.4rem;
}

.vf-cta-band p {
	max-width: 720px;
	margin: 0;
}

.vf-faq {
	display: grid;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.vf-faq details {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.vf-faq summary {
	position: relative;
	padding: 1rem 3rem 1rem 1rem;
	color: var(--navy);
	font-weight: 800;
	cursor: pointer;
}

.vf-faq summary::after {
	position: absolute;
	top: 50%;
	right: 1rem;
	width: 1.35rem;
	height: 1.35rem;
	display: grid;
	place-items: center;
	color: var(--blue);
	border: 1px solid var(--line);
	border-radius: 999px;
	transform: translateY(-50%);
	content: "+";
}

.vf-faq details[open] summary::after {
	content: "-";
}

.vf-faq details p {
	padding: 0 1rem 1rem;
	margin: 0;
	color: var(--slate);
}

.vf-page-hero {
	padding: clamp(3rem, 5vw, 4.8rem) 0 clamp(2rem, 3.5vw, 3rem);
	background:
		linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(255, 255, 255, 1));
	border-bottom: 1px solid var(--line);
}

.vf-icon,
.vf-card-icon {
	display: inline-flex;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	color: var(--blue);
	background: rgba(37, 99, 235, 0.08);
	border-radius: var(--radius);
}

.vf-card-icon {
	flex: 0 0 auto;
	margin-bottom: 0.9rem;
}

.vf-card-dark .vf-card-icon,
.vf-section-dark .vf-card-icon {
	color: var(--white);
	background: rgba(255, 255, 255, 0.1);
}

.vf-card-icon::before {
	display: block;
	width: 23px;
	height: 23px;
	background: currentColor;
	content: "";
	-webkit-mask: var(--vf-icon-url) center / contain no-repeat;
	mask: var(--vf-icon-url) center / contain no-repeat;
}

.vf-icon-cloud {
	--vf-icon-url: url("../svg/icons/cloud.svg");
}

.vf-icon-chart {
	--vf-icon-url: url("../svg/icons/chart.svg");
}

.vf-icon-tag {
	--vf-icon-url: url("../svg/icons/tag.svg");
}

.vf-icon-shield {
	--vf-icon-url: url("../svg/icons/shield.svg");
}

.vf-icon-brain {
	--vf-icon-url: url("../svg/icons/brain.svg");
}

.vf-icon-calendar {
	--vf-icon-url: url("../svg/icons/calendar.svg");
}

.vf-icon-dashboard {
	--vf-icon-url: url("../svg/icons/dashboard.svg");
}

.vf-icon-users {
	--vf-icon-url: url("../svg/icons/users.svg");
}

.vf-icon-architecture {
	--vf-icon-url: url("../svg/icons/architecture.svg");
}

.vf-icon-forecast {
	--vf-icon-url: url("../svg/icons/forecast.svg");
}

.vf-icon svg {
	width: 24px;
	height: 24px;
}

.vf-pdf-cards,
.vf-booking-block,
.vf-contact-form-wrap {
	width: min(100% - 2rem, 1180px);
	margin-inline: auto;
}

.vf-pdf-cards {
	padding: clamp(2.4rem, 4.5vw, 4rem) 0;
}

.vf-pdf-instructions {
	max-width: 880px;
}

.vf-booking-block {
	padding: 0 0 clamp(1.5rem, 3.5vw, 3rem);
}

.vf-calendly-frame {
	width: 100%;
	min-height: 680px;
	margin-bottom: 1rem;
	overflow: hidden;
	background: var(--light);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.vf-calendly-frame iframe {
	width: 100%;
	min-height: 680px;
	border: 0;
}

.vf-contact-form-wrap {
	padding: clamp(1rem, 3vw, 2.4rem) 0 clamp(3rem, 5.5vw, 5.5rem);
}

.vf-contact-form {
	display: grid;
	gap: 1rem;
	padding: clamp(1.25rem, 3vw, 2rem);
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.vf-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.vf-contact-form label {
	display: grid;
	gap: 0.4rem;
	color: var(--navy);
	font-weight: 750;
}

.vf-contact-form input,
.vf-contact-form select,
.vf-contact-form textarea {
	width: 100%;
	padding: 0.82rem 0.9rem;
	color: var(--ink);
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	font: inherit;
}

.vf-contact-form textarea {
	resize: vertical;
}

.vf-contact-form input:focus,
.vf-contact-form select:focus,
.vf-contact-form textarea:focus {
	border-color: var(--cyan);
	outline: 3px solid rgba(6, 182, 212, 0.2);
}

.vf-honeypot {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.vf-form-notice {
	padding: 1rem;
	margin-bottom: 1rem;
	border-radius: var(--radius);
	font-weight: 700;
}

.vf-form-success {
	color: #064E3B;
	background: #D1FAE5;
	border: 1px solid #A7F3D0;
}

.vf-form-error {
	color: #7F1D1D;
	background: #FEE2E2;
	border: 1px solid #FECACA;
}

.vf-public-pricing-disabled .vf-public-pricing-only {
	display: none;
}

.vf-site-footer {
	color: rgba(255, 255, 255, 0.76);
	background: var(--navy);
}

.vf-footer-grid {
	display: grid;
	grid-template-columns: 1.45fr repeat(3, 1fr);
	gap: 2rem;
	padding: clamp(2.6rem, 5vw, 4rem) 0 1.7rem;
}

.vf-footer-column h2 {
	margin-bottom: 0.85rem;
	color: var(--white);
	font-size: 1rem;
}

.vf-footer-column ul,
.vf-footer-menu {
	padding: 0;
	margin: 0;
	list-style: none;
}

.vf-footer-column a,
.vf-footer-menu a {
	color: rgba(255, 255, 255, 0.82);
	text-decoration: none;
}

.vf-footer-column a:hover,
.vf-footer-menu a:hover {
	color: var(--white);
	text-decoration: underline;
	text-underline-offset: 0.22em;
}

.vf-footer-bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.25rem 0 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.9rem;
}

.vf-footer-bottom p {
	max-width: 620px;
	margin: 0;
}

.vf-footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
}

.vf-entry-content > *:first-child {
	margin-top: 0;
}

@media (max-width: 1080px) {
	.vf-grid-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	body.admin-bar .vf-site-header {
		top: 46px;
	}

	.vf-menu-toggle {
		display: grid;
	}

	.vf-primary-nav {
		position: fixed;
		inset: 78px 0 auto 0;
		display: none;
		padding: 1rem;
		background: var(--white);
		border-bottom: 1px solid var(--line);
		box-shadow: var(--shadow);
	}

	body.admin-bar .vf-primary-nav {
		top: 124px;
	}

	.vf-primary-nav.is-open {
		display: block;
	}

	.vf-menu {
		display: grid;
		gap: 0.2rem;
	}

	.vf-menu a {
		min-height: 48px;
		padding: 0 0.2rem;
		font-size: 1rem;
	}

	.vf-hero-grid,
	.vf-two-column {
		grid-template-columns: 1fr;
	}

	.vf-grid-3,
	.vf-grid-4,
	.vf-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vf-cta-band {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 640px) {
	body.admin-bar .vf-site-header {
		top: 0;
	}

	body.admin-bar .vf-primary-nav {
		top: 78px;
	}

	.vf-container,
	.vf-pdf-cards,
	.vf-booking-block,
	.vf-contact-form-wrap {
		width: min(100% - 1.25rem, 1180px);
	}

	.vf-header-inner {
		min-height: 72px;
	}

	.vf-primary-nav {
		inset: 72px 0 auto 0;
	}

	.vf-grid-2,
	.vf-grid-3,
	.vf-grid-4,
	.vf-form-grid,
	.vf-footer-grid {
		grid-template-columns: 1fr;
	}

	.vf-two-col-list {
		columns: 1;
	}

	.vf-card,
	.vf-source-card {
		padding: 1.05rem;
	}

	.vf-button,
	.vf-button-secondary {
		width: 100%;
	}

	.vf-trust-list {
		display: grid;
	}

	.vf-footer-bottom {
		display: grid;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.001ms !important;
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
	}
}

@media print {
	.vf-site-header,
	.vf-site-footer,
	.vf-button,
	.vf-button-secondary,
	.vf-menu-toggle,
	.vf-calendly-frame {
		display: none !important;
	}

	body {
		color: #000;
		background: #fff;
		font-size: 12pt;
	}

	.vf-section,
	.vf-page-hero,
	.vf-hero {
		padding: 1rem 0;
		background: #fff !important;
		color: #000 !important;
	}

	.vf-card,
	.vf-source-card {
		box-shadow: none;
		break-inside: avoid;
	}

	a[href]::after {
		content: " (" attr(href) ")";
		font-size: 10pt;
	}
}
