:root {
	--vl-dark: #0f1b1a;
	--vl-ink: #333333;
	--vl-muted: #5f6b68;
	--vl-teal: #80ffd7;
	--vl-green: #1e4d48;
	--vl-green-soft: #255f59;
	--vl-paper: #f3f4f2;
	--vl-line: rgba(37, 95, 89, 0.16);
	--vl-width: min(100% - 2rem, 1460px);
	font-family: "Montserrat", "Titillium Web", system-ui, sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--vl-paper);
	color: var(--vl-ink);
	font: 500 18px/1.55 "Titillium Web", system-ui, sans-serif;
}

.vl-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.78rem 1.2rem;
	border: 1px solid transparent;
	border-radius: 999px;
	cursor: pointer;
	font: 600 1.04rem/1.2 "Titillium Web", sans-serif;
	letter-spacing: 0.005em;
	text-align: center;
	text-decoration: none;
	transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.vl-button:hover {
	transform: translateY(-2px);
}

.vl-button.vl-button--primary {
	border-color: rgba(255, 255, 255, 0.92);
	background: rgba(255, 255, 255, 0.94);
	color: var(--vl-dark) !important;
	-webkit-text-fill-color: var(--vl-dark);
	box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
}

.vl-button.vl-button--primary:visited,
.vl-button.vl-button--primary:hover,
.vl-button.vl-button--primary:focus-visible,
.vl-button.vl-button--primary:active {
	color: var(--vl-dark) !important;
	-webkit-text-fill-color: var(--vl-dark);
}

.vl-button.vl-button--secondary {
	border-color: rgba(128, 255, 215, 0.34);
	background: rgba(255, 255, 255, 0.055);
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff;
}

.vl-button.vl-button--secondary:visited,
.vl-button.vl-button--secondary:hover,
.vl-button.vl-button--secondary:focus-visible,
.vl-button.vl-button--secondary:active {
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff;
}

.vl-button.vl-button--solid {
	border-radius: 0;
	background: var(--vl-green);
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff;
}

.vl-button.vl-button--solid:visited,
.vl-button.vl-button--solid:hover,
.vl-button.vl-button--solid:focus-visible,
.vl-button.vl-button--solid:active {
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff;
}

.vl-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.8rem;
	margin-top: clamp(1.35rem, 2.2vw, 1.9rem);
}

.vl-section-heading {
	margin-bottom: clamp(2rem, 4vw, 3.2rem);
	text-align: center;
}

.vl-section-heading .vl-service-eyebrow {
	display: flex;
	justify-content: center;
	margin-bottom: 0.65rem;
	color: #4f5956;
	font-weight: 600;
}

.vl-section-heading h2 {
	position: relative;
	display: inline-block;
	margin-top: 0;
}

.vl-content {
	width: min(100% - 2rem, 1180px);
	margin-inline: auto;
	padding: clamp(3.6rem, 7vw, 6.4rem) 0;
}

.vl-page-header {
	max-width: 920px;
	margin: 0 auto clamp(1.6rem, 3vw, 2.4rem);
	text-align: left;
}

.vl-page-header h1 {
	margin: 0;
	color: var(--vl-green);
	font: 800 clamp(2.3rem, 4.4vw, 4.2rem)/1.02 "Montserrat", sans-serif;
	letter-spacing: 0;
}

.vl-entry {
	max-width: 920px;
	margin-inline: auto;
	padding: clamp(1.6rem, 3.4vw, 3rem);
	border: 1px solid rgba(37, 95, 89, 0.12);
	border-radius: 20px;
	background: #ffffff;
	box-shadow: 0 24px 70px rgba(28, 45, 42, 0.06);
}

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

.vl-entry > *:last-child {
	margin-bottom: 0;
}

.vl-entry :where(p, li) {
	color: #2f3a38;
	font: 500 1.06rem/1.68 "Titillium Web", system-ui, sans-serif;
}

.vl-entry :where(h2, h3, h4) {
	margin: clamp(1.8rem, 3vw, 2.6rem) 0 0.75rem;
	color: var(--vl-green);
	font-family: "Montserrat", sans-serif;
	letter-spacing: 0;
}

.vl-entry h2 {
	font-size: clamp(1.75rem, 3vw, 2.55rem);
	line-height: 1.08;
}

.vl-entry h3 {
	font-size: clamp(1.35rem, 2.2vw, 1.8rem);
	line-height: 1.15;
}

.vl-entry a {
	color: var(--vl-green);
	font-weight: 500;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.16em;
}

.vl-entry :where(ul, ol) {
	padding-left: 1.35rem;
}

.vl-entry :where(table) {
	display: block;
	width: 100%;
	overflow-x: auto;
	border-collapse: collapse;
}

.vl-entry :where(th, td) {
	padding: 0.75rem;
	border: 1px solid rgba(37, 95, 89, 0.14);
	vertical-align: top;
}

.vl-section-heading h2::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -0.65rem;
	width: 4.5rem;
	height: 2px;
	background: #7fdacb;
	transform: translateX(-50%);
}

.vl-breadcrumb {
	margin: 0 0 clamp(0.8rem, 1.5vw, 1.15rem);
	color: #5c6a66;
	font: 500 0.88rem/1.35 "Titillium Web", system-ui, sans-serif;
}

.vl-breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.vl-breadcrumb li {
	display: inline-flex;
	align-items: center;
	min-width: 0;
}

.vl-breadcrumb li + li::before {
	content: "/";
	margin-right: 0.35rem;
	color: currentColor;
	opacity: 0.55;
}

.vl-breadcrumb a {
	color: inherit;
	text-decoration: none;
	overflow-wrap: anywhere;
}

.vl-breadcrumb a:hover,
.vl-breadcrumb a:focus {
	color: var(--vl-green);
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.vl-breadcrumb [aria-current="page"] {
	color: var(--vl-green);
	font-weight: 600;
	overflow-wrap: anywhere;
}

.vl-breadcrumb--dark {
	color: rgba(255, 255, 255, 0.78);
}

.vl-breadcrumb--dark [aria-current="page"] {
	color: rgba(255, 255, 255, 0.96);
}

.vl-breadcrumb--dark a:hover,
.vl-breadcrumb--dark a:focus {
	color: var(--vl-teal);
}

.vl-service-eyebrow {
	color: #5b6260;
}

.vl-preloader {
	display: none;
}

.vl-preload-enabled .vl-preloader {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: grid;
	place-items: center;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(128, 255, 215, 0.035) 1px, transparent 1px),
		linear-gradient(0deg, rgba(128, 255, 215, 0.028) 1px, transparent 1px),
		radial-gradient(circle at 70% 30%, rgba(128, 255, 215, 0.14), transparent 32rem),
		linear-gradient(135deg, #07110f 0%, #10312d 54%, #081412 100%);
	background-size: 74px 74px, 74px 74px, auto, auto;
	color: #ffffff;
	opacity: 1;
	visibility: visible;
	transition: opacity 420ms ease;
	will-change: opacity;
}

.vl-page-loaded .vl-preloader {
	opacity: 0;
	pointer-events: none;
}

.vl-preloader__graph {
	position: relative;
	width: clamp(190px, 32vw, 360px);
	aspect-ratio: 1;
	border-radius: 50%;
	filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.32));
	opacity: 0.96;
	transform: rotate(-8deg);
}

.vl-preloader__graph::before,
.vl-preloader__graph::after {
	content: "";
	position: absolute;
	inset: 28%;
	border-radius: 50%;
	pointer-events: none;
}

.vl-preloader__graph::before {
	background: radial-gradient(circle, rgba(128, 255, 215, 0.16), rgba(128, 255, 215, 0.04) 38%, transparent 66%);
	filter: blur(14px);
	opacity: 0.78;
}

.vl-preloader__graph::after {
	border: 1px solid rgba(128, 255, 215, 0.08);
	box-shadow: 0 0 70px rgba(128, 255, 215, 0.12);
}

.vl-preloader__lines {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	fill: none;
	stroke: rgba(128, 255, 215, 0.34);
	stroke-dasharray: 38 18;
	stroke-linecap: round;
	stroke-width: 1.8;
}

.vl-preloader__lines path:nth-child(2) {
	stroke: rgba(202, 226, 255, 0.18);
	stroke-dasharray: 26 22;
}

.vl-preloader__lines path:nth-child(3) {
	stroke: rgba(128, 255, 215, 0.22);
	stroke-dasharray: 50 24;
}

.vl-preloader__orbit {
	position: absolute;
	inset: 50%;
	width: 0;
	height: 0;
	animation: vl-preloader-orbit 1700ms linear infinite;
	transform-origin: 0 0;
}

.vl-preloader__orbit i {
	position: absolute;
	display: block;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: var(--vl-teal);
	box-shadow: 0 0 0 7px rgba(128, 255, 215, 0.1), 0 0 24px rgba(128, 255, 215, 0.54);
	transform: translate3d(0, calc(-1 * var(--vl-orbit-radius, clamp(82px, 12vw, 128px))), 0);
}

.vl-preloader__orbit--1 {
	animation-duration: 1500ms;
}

.vl-preloader__orbit--1 i {
	--vl-orbit-radius: clamp(86px, 12.5vw, 132px);
	width: 14px;
	height: 14px;
}

.vl-preloader__orbit--2 {
	animation-delay: -220ms;
	animation-duration: 1900ms;
}

.vl-preloader__orbit--2 i {
	--vl-orbit-radius: clamp(62px, 9vw, 92px);
	width: 8px;
	height: 8px;
}

.vl-preloader__orbit--3 {
	animation-delay: -460ms;
	animation-duration: 2300ms;
}

.vl-preloader__orbit--3 i {
	--vl-orbit-radius: clamp(76px, 10.8vw, 116px);
	width: 10px;
	height: 10px;
}

.vl-preloader__orbit--4 {
	animation-delay: -760ms;
	animation-duration: 2100ms;
}

.vl-preloader__orbit--4 i {
	--vl-orbit-radius: clamp(96px, 13.8vw, 148px);
	width: 6px;
	height: 6px;
}

.vl-preloader__orbit--5 {
	animation-delay: -1020ms;
	animation-duration: 2600ms;
}

.vl-preloader__orbit--5 i {
	--vl-orbit-radius: clamp(50px, 7vw, 72px);
	width: 9px;
	height: 9px;
}

.vl-preloader__orbit--6 {
	animation-delay: -1260ms;
	animation-duration: 1800ms;
}

.vl-preloader__orbit--6 i {
	--vl-orbit-radius: clamp(70px, 9.8vw, 104px);
	width: 7px;
	height: 7px;
}

.vl-preloader__orbit--7 {
	animation-delay: -1480ms;
	animation-duration: 3000ms;
}

.vl-preloader__orbit--7 i {
	--vl-orbit-radius: clamp(100px, 14.5vw, 154px);
	width: 5px;
	height: 5px;
	opacity: 0.72;
}

@keyframes vl-preloader-orbit {
	to {
		transform: rotate(360deg);
	}
}

a {
	color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
	outline: 3px solid var(--vl-teal);
	outline-offset: 4px;
}

.vl-service-landing :where(a, button, input, textarea, summary):focus-visible {
	outline-color: var(--vl-green);
}

.vl-service-hero :where(a, button):focus-visible,
.vl-service-section--dark :where(a, button):focus-visible,
.vl-footer :where(a, button):focus-visible {
	outline-color: var(--vl-teal);
}

.vl-skip-link {
	background: #ffffff;
	border-radius: 999px;
	color: #143f3a;
	font-size: 0.9rem;
	font-weight: 700;
	left: 1rem;
	opacity: 0;
	padding: 0.7rem 1rem;
	position: fixed;
	top: 1rem;
	transform: translateY(-140%);
	transition: opacity 0.18s ease, transform 0.18s ease;
	z-index: 99999;
}

.vl-skip-link:focus {
	opacity: 1;
	outline: 3px solid #78f2d2;
	outline-offset: 3px;
	transform: translateY(0);
}

.vl-main:focus {
	outline: none;
}

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

.vl-topbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 0.7rem;
	padding: 0.42rem max(1rem, calc((100vw - 1460px) / 2));
	background: #050706;
	color: #fff;
	font-size: 0.92rem;
	line-height: 1.2;
}

.vl-topbar a {
	color: inherit;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	font-weight: 600;
	text-decoration: none;
}

.vl-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: #202020;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
	overflow: visible;
}

.vl-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	width: var(--vl-width);
	margin-inline: auto;
	padding: 0.9rem 0;
	overflow: visible;
}

.vl-logo img {
	display: block;
	width: 230px;
	max-height: 72px;
	object-fit: contain;
}

.vl-menu-toggle {
	display: none;
	align-items: center;
	gap: 0.65rem;
	min-height: 46px;
	padding: 0.62rem 0.82rem;
	border: 1px solid rgba(128, 255, 215, 0.32);
	border-radius: 999px;
	background: rgba(128, 255, 215, 0.08);
	color: #ffffff;
	font: 800 0.78rem/1 "Montserrat", system-ui, sans-serif;
	letter-spacing: 0;
	text-transform: uppercase;
	cursor: pointer;
}

.vl-menu-toggle__lines,
.vl-menu-toggle__lines::before,
.vl-menu-toggle__lines::after {
	display: block;
	width: 1.3rem;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transition: transform 180ms ease, opacity 180ms ease;
}

.vl-menu-toggle__lines {
	position: relative;
}

.vl-menu-toggle__lines::before,
.vl-menu-toggle__lines::after {
	content: "";
	position: absolute;
	left: 0;
}

.vl-menu-toggle__lines::before {
	top: -0.42rem;
}

.vl-menu-toggle__lines::after {
	top: 0.42rem;
}

.vl-menu-toggle.is-open .vl-menu-toggle__lines {
	transform: rotate(45deg);
}

.vl-menu-toggle.is-open .vl-menu-toggle__lines::before {
	opacity: 0;
	transform: translateY(0.42rem);
}

.vl-menu-toggle.is-open .vl-menu-toggle__lines::after {
	transform: translateY(-0.42rem) rotate(90deg);
}

.vl-menu,
.vl-footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.vl-menu a,
.vl-footer-menu a {
	color: #fff;
	font-weight: 700;
	text-decoration: none;
}

.vl-menu > li {
	position: relative;
	padding-block: 0.22rem;
}

.vl-menu > li > a {
	display: inline-flex;
	align-items: center;
	gap: 0.38rem;
	min-height: 52px;
	padding: 0.72rem 0.86rem;
	border-radius: 999px;
	font-size: 1rem;
	line-height: 1;
	white-space: nowrap;
	transition: background-color 160ms ease, color 160ms ease;
}

.vl-menu > li.menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 0.42rem;
	height: 0.42rem;
	margin-top: -0.16rem;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	opacity: 0.72;
	transform: rotate(45deg);
	transition: opacity 160ms ease, transform 160ms ease;
}

.vl-menu > li.menu-item-has-children:hover > a::after,
.vl-menu > li.menu-item-has-children:focus-within > a::after,
.vl-menu > li.menu-item-has-children.is-open > a::after {
	opacity: 1;
	transform: translateY(0.12rem) rotate(45deg);
}

.vl-menu > li:has(:where(.sub-menu, .children))::after {
	content: "";
	position: absolute;
	top: 100%;
	left: -0.8rem;
	right: -0.8rem;
	height: 1.2rem;
}

.vl-menu > li:hover > a,
.vl-menu > li:focus-within > a {
	background: rgba(128, 255, 215, 0.09);
	color: var(--vl-teal);
}

.vl-menu :where(.sub-menu, .children) {
	position: absolute;
	top: calc(100% + 0.18rem);
	left: 50%;
	z-index: 20;
	display: grid;
	gap: 0.12rem;
	min-width: 340px;
	margin: 0;
	padding: 0.88rem;
	list-style: none;
	border: 1px solid rgba(128, 255, 215, 0.14);
	border-radius: 16px;
	background: rgba(15, 27, 26, 0.98);
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transform: translate3d(-50%, 0.35rem, 0);
	transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 220ms;
}

.vl-menu > li:hover > :where(.sub-menu, .children),
.vl-menu > li:focus-within > :where(.sub-menu, .children),
.vl-menu > li.is-open > :where(.sub-menu, .children) {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
	transform: translate3d(-50%, 0, 0);
	transition-delay: 0s;
}

.vl-menu > li:nth-last-child(-n + 2) > :where(.sub-menu, .children) {
	left: auto;
	right: 0;
	transform: translate3d(0, 0.35rem, 0);
}

.vl-menu > li:nth-last-child(-n + 2):hover > :where(.sub-menu, .children),
.vl-menu > li:nth-last-child(-n + 2):focus-within > :where(.sub-menu, .children),
.vl-menu > li:nth-last-child(-n + 2).is-open > :where(.sub-menu, .children) {
	transform: translate3d(0, 0, 0);
}

.vl-menu :where(.sub-menu, .children) a {
	display: block;
	min-height: 44px;
	padding: 0.82rem 0.88rem;
	border-radius: 10px;
	font-size: 0.94rem;
	line-height: 1.2;
	white-space: normal;
}

.vl-menu :where(.sub-menu, .children) a:hover,
.vl-menu :where(.sub-menu, .children) a:focus {
	background: rgba(128, 255, 215, 0.1);
	color: var(--vl-teal);
}

.vl-main {
	overflow: clip;
}

.vl-footer {
	background: #222222;
	color: #e6f3f7;
}

.vl-footer__inner {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: clamp(1.5rem, 4vw, 4rem);
	width: min(100% - 2rem, 1280px);
	margin-inline: auto;
	padding: clamp(3rem, 5vw, 4.5rem) 0;
}

.vl-footer__logo {
	grid-column: 1 / -1;
	display: grid;
	justify-items: center;
	gap: 1.2rem;
	justify-self: center;
}

.vl-footer__logo img {
	display: block;
	width: min(190px, 48vw);
	height: auto;
	object-fit: contain;
}

.vl-footer__logo::after {
	content: "";
	display: block;
	width: min(220px, 34vw);
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(128, 255, 215, 0.72), transparent);
}

.vl-footer h2 {
	color: var(--vl-teal);
	font: 800 1.35rem/1.2 "Montserrat", sans-serif;
}

.vl-footer a {
	color: inherit;
	text-decoration: none;
}

.vl-footer-menu {
	display: grid;
	gap: 0.12rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.vl-footer-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 31px;
	color: #ffffff;
	font-weight: 700;
	line-height: 1.18;
	transition: color 160ms ease, transform 160ms ease;
}

.vl-footer-menu a::before {
	content: "";
	width: 0.38rem;
	height: 0.38rem;
	margin-right: 0.55rem;
	border-radius: 50%;
	background: var(--vl-teal);
	opacity: 0.78;
}

.vl-footer-menu a:hover,
.vl-footer-menu a:focus {
	color: var(--vl-teal);
	transform: translateX(0.16rem);
}

.vl-footer__partners {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: clamp(1.5rem, 5vw, 4rem);
	padding: 1.2rem 1rem;
	background: #ffffff;
	color: #333333;
}

.vl-footer__partner {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	color: #333333;
	font-weight: 800;
	text-decoration: none;
}

.vl-footer__partner img {
	display: block;
	width: min(190px, 44vw);
	height: auto;
	object-fit: contain;
}

.vl-footer__partner--assintel img {
	width: min(118px, 32vw);
}

.vl-footer__partner:hover,
.vl-footer__partner:focus {
	color: var(--vl-green);
}

.vl-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: 1rem;
	background: #111111;
	font-size: 0.92rem;
}

.vl-footer__bottom a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
}
