









/* ==========================================================
   VICT HOMEPAGE 2026
   Volledig geïsoleerd binnen .vct26-home
   Heeft geen invloed buiten deze Gutenberg-wrapper
   ========================================================== */


/* ----------------------------------------------------------
   LOKALE VARIABELEN EN BASIS
   ---------------------------------------------------------- */

.vct26-home {
	--vct26-blue: #0068c8;
	--vct26-blue-hover: #0054a5;
	--vct26-sky: #4bc3ff;
	--vct26-navy: #071a2d;
	--vct26-navy-soft: #0a345a;
	--vct26-text: #172638;
	--vct26-muted: #65778a;
	--vct26-light: #f3f8fc;
	--vct26-light-blue: #e8f4fc;
	--vct26-border: #dce8f1;
	--vct26-green: #32c783;
	--vct26-white: #ffffff;
	--vct26-radius: 18px;
	--vct26-radius-large: 28px;
	--vct26-shadow: 0 20px 55px rgba(7, 31, 58, 0.10);
	--vct26-shadow-large: 0 35px 90px rgba(0, 20, 42, 0.28);

	position: relative;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	isolation: isolate;
	color: var(--vct26-text);
	background: var(--vct26-white);
	font-family:
		Inter,
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		Roboto,
		Helvetica,
		Arial,
		sans-serif;
	font-size: 17px;
	line-height: 1.7;
}

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

.vct26-home .alignwide {
	width: min(1180px, calc(100% - 48px));
	max-width: 1180px;
	margin-right: auto;
	margin-left: auto;
}

.vct26-home .alignfull {
	width: 100%;
	max-width: none;
	margin-right: 0;
	margin-left: 0;
}

.vct26-home h1,
.vct26-home h2,
.vct26-home h3,
.vct26-home h4,
.vct26-home p,
.vct26-home ul {
	margin-top: 0;
}

.vct26-home a {
	text-decoration: none;
}

.vct26-home a:focus-visible {
	outline: 3px solid var(--vct26-sky);
	outline-offset: 4px;
}

.vct26-home .vct26-section {
	padding: 108px 24px;
}


/* ----------------------------------------------------------
   ALGEMENE KOPPEN
   ---------------------------------------------------------- */

.vct26-home .vct26-kicker {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-bottom: 15px;
	color: var(--vct26-blue);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	line-height: 1.3;
	text-transform: uppercase;
}

.vct26-home .vct26-kicker::before {
	display: block;
	width: 27px;
	height: 2px;
	flex: 0 0 auto;
	content: "";
	background: currentColor;
}

.vct26-home .vct26-kicker--light {
	color: #8cddff;
}

.vct26-home .vct26-section-heading {
	margin-bottom: 52px;
}

.vct26-home .vct26-section-heading h2,
.vct26-home .vct26-why h2,
.vct26-home .vct26-final-cta h2 {
	max-width: 790px;
	margin-bottom: 20px;
	color: var(--vct26-navy);
	font-size: clamp(36px, 4.2vw, 54px);
	font-weight: 820;
	letter-spacing: -0.048em;
	line-height: 1.07;
}

.vct26-home .vct26-section-heading > p:last-child {
	max-width: 720px;
	margin-bottom: 0;
	color: var(--vct26-muted);
	font-size: 17px;
	line-height: 1.75;
}


/* ----------------------------------------------------------
   KNOPPEN
   ---------------------------------------------------------- */

.vct26-home .vct26-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 33px;
}

.vct26-home .vct26-button {
	margin: 0;
}

.vct26-home .vct26-button .wp-block-button__link {
	display: inline-flex;
	min-height: 54px;
	align-items: center;
	justify-content: center;
	padding: 15px 25px;
	border: 1px solid transparent;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 750;
	line-height: 1.25;
	transition:
		transform 180ms ease,
		background-color 180ms ease,
		border-color 180ms ease,
		box-shadow 180ms ease;
}

.vct26-home .vct26-button .wp-block-button__link:hover {
	transform: translateY(-2px);
}

.vct26-home .vct26-button--primary .wp-block-button__link {
	color: var(--vct26-white);
	background:
		linear-gradient(
			135deg,
			var(--vct26-blue),
			#078ddd
		);
	box-shadow: 0 15px 38px rgba(0, 104, 200, 0.35);
}

.vct26-home .vct26-button--primary .wp-block-button__link:hover {
	color: var(--vct26-white);
	background:
		linear-gradient(
			135deg,
			var(--vct26-blue-hover),
			#0479c3
		);
	box-shadow: 0 19px 44px rgba(0, 104, 200, 0.42);
}

.vct26-home .vct26-button--outline .wp-block-button__link {
	border-color: rgba(255, 255, 255, 0.32);
	color: var(--vct26-white);
	background: rgba(255, 255, 255, 0.07);
}

.vct26-home .vct26-button--outline .wp-block-button__link:hover {
	border-color: rgba(255, 255, 255, 0.55);
	color: var(--vct26-white);
	background: rgba(255, 255, 255, 0.13);
}

.vct26-home .vct26-button--dark .wp-block-button__link {
	color: var(--vct26-white);
	background: var(--vct26-navy);
	box-shadow: 0 14px 35px rgba(7, 26, 45, 0.20);
}

.vct26-home .vct26-button--dark .wp-block-button__link:hover {
	color: var(--vct26-white);
	background: var(--vct26-blue);
}

.vct26-home .vct26-button--white .wp-block-button__link {
	color: var(--vct26-navy);
	background: var(--vct26-white);
	box-shadow: 0 15px 38px rgba(0, 20, 40, 0.18);
}

.vct26-home .vct26-button--white .wp-block-button__link:hover {
	color: var(--vct26-navy);
	background: #eff8fd;
}


/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */

.vct26-home .vct26-hero {
	position: relative;
	overflow: hidden;
	padding: 112px 24px 122px;
	color: var(--vct26-white);
	background:
		radial-gradient(
			circle at 83% 8%,
			rgba(75, 195, 255, 0.27),
			transparent 34%
		),
		radial-gradient(
			circle at 5% 95%,
			rgba(0, 104, 200, 0.19),
			transparent 34%
		),
		linear-gradient(
			132deg,
			#041526 0%,
			#072b4d 58%,
			#075281 100%
		);
}

.vct26-home .vct26-hero::before {
	position: absolute;
	inset: 0;
	content: "";
	opacity: 0.38;
	background-image:
		linear-gradient(
			rgba(255, 255, 255, 0.04) 1px,
			transparent 1px
		),
		linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.04) 1px,
			transparent 1px
		);
	background-size: 46px 46px;
	pointer-events: none;
}

.vct26-home .vct26-hero::after {
	position: absolute;
	right: -220px;
	bottom: -390px;
	width: 760px;
	height: 760px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	content: "";
	box-shadow:
		0 0 0 80px rgba(255, 255, 255, 0.018),
		0 0 0 160px rgba(255, 255, 255, 0.012);
	pointer-events: none;
}

.vct26-home .vct26-hero > * {
	position: relative;
	z-index: 2;
}

.vct26-home .vct26-hero__columns {
	gap: 76px;
	margin-bottom: 0;
}

.vct26-home .vct26-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 25px;
	padding: 8px 14px;
	border: 1px solid rgba(135, 217, 255, 0.28);
	border-radius: 999px;
	color: #c2ebff;
	background: rgba(255, 255, 255, 0.06);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.10em;
	line-height: 1.3;
	text-transform: uppercase;
}

.vct26-home .vct26-eyebrow::before {
	display: block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	content: "";
	background: #62dda4;
	box-shadow: 0 0 0 5px rgba(98, 221, 164, 0.12);
}

.vct26-home .vct26-hero__title {
	max-width: 760px;
	margin-bottom: 25px;
	color: var(--vct26-white);
	font-size: clamp(47px, 5.8vw, 74px);
	font-weight: 850;
	letter-spacing: -0.061em;
	line-height: 0.99;
}

.vct26-home .vct26-hero__intro {
	max-width: 680px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.74);
	font-size: clamp(17px, 1.7vw, 20px);
	line-height: 1.7;
}

.vct26-home .vct26-hero__checks {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 23px;
	margin: 31px 0 0;
	padding: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
	font-weight: 600;
	list-style: none;
}

.vct26-home .vct26-hero__checks li {
	margin: 0;
	padding: 0;
}

.vct26-home .vct26-hero__checks li::before {
	margin-right: 8px;
	color: #63dfa3;
	content: "✓";
	font-weight: 900;
}


/* ----------------------------------------------------------
   HERO DASHBOARD
   ---------------------------------------------------------- */

.vct26-home .vct26-hero__visual-column {
	position: relative;
}

.vct26-home .vct26-dashboard {
	position: relative;
	z-index: 2;
	padding: 26px;
	border: 1px solid rgba(255, 255, 255, 0.75);
	border-radius: 22px;
	color: var(--vct26-text);
	background: rgba(255, 255, 255, 0.97);
	box-shadow: var(--vct26-shadow-large);
	transform: rotate(1deg);
}

.vct26-home .vct26-dashboard__top {
	margin-bottom: 24px;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--vct26-border);
}

.vct26-home .vct26-dashboard__top p {
	margin-bottom: 0;
}

.vct26-home .vct26-dashboard__brand {
	color: #7b8da0;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.vct26-home .vct26-dashboard__status {
	display: flex;
	align-items: center;
	gap: 7px;
	color: #168c56;
	font-size: 10px;
	font-weight: 800;
}

.vct26-home .vct26-dashboard__status::before {
	display: block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	content: "";
	background: var(--vct26-green);
	box-shadow: 0 0 0 4px rgba(50, 199, 131, 0.12);
}

.vct26-home .vct26-dashboard__title {
	margin-bottom: 21px;
	color: var(--vct26-navy);
	font-size: 24px;
	font-weight: 820;
	letter-spacing: -0.03em;
	line-height: 1.2;
}

.vct26-home .vct26-dashboard__metrics {
	gap: 12px;
	margin-bottom: 13px;
}

.vct26-home .vct26-metric {
	height: 100%;
	padding: 17px;
	border: 1px solid var(--vct26-border);
	border-radius: 13px;
	background: var(--vct26-white);
}

.vct26-home .vct26-metric__label {
	margin-bottom: 5px;
	color: #718497;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.vct26-home .vct26-metric__value {
	margin-bottom: 13px;
	color: var(--vct26-navy);
	font-size: 23px;
	font-weight: 830;
	letter-spacing: -0.04em;
	line-height: 1.15;
}

.vct26-home .vct26-meter {
	height: 4px;
	margin: 0;
	border: 0;
	border-radius: 999px;
	opacity: 1;
	background:
		linear-gradient(
			90deg,
			var(--vct26-blue),
			var(--vct26-sky)
		);
}

.vct26-home .vct26-meter--full {
	width: 99%;
}

.vct26-home .vct26-meter--secure {
	width: 94%;
}

.vct26-home .vct26-system-row {
	margin-top: 9px;
	padding: 12px 14px;
	border: 1px solid var(--vct26-border);
	border-radius: 12px;
	background: #fbfdff;
}

.vct26-home .vct26-system-row p {
	margin-bottom: 0;
	font-size: 11px;
	line-height: 1.45;
}

.vct26-home .vct26-system-row p:first-child {
	color: #718294;
}

.vct26-home .vct26-system-row p:first-child strong {
	color: var(--vct26-text);
	font-size: 12px;
}

.vct26-home .vct26-system-row__online {
	display: flex;
	align-items: center;
	gap: 7px;
	color: #168c56;
	font-weight: 800;
}

.vct26-home .vct26-system-row__online::before {
	display: block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	content: "";
	background: var(--vct26-green);
}

.vct26-home .vct26-floating-card {
	position: absolute;
	right: -28px;
	bottom: -34px;
	z-index: 3;
	width: 155px;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.85);
	border-radius: 15px;
	color: var(--vct26-text);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 20px 48px rgba(0, 18, 37, 0.28);
	backdrop-filter: blur(12px);
}

.vct26-home .vct26-floating-card h3 {
	margin-bottom: 3px;
	color: var(--vct26-blue);
	font-size: 31px;
	font-weight: 850;
	letter-spacing: -0.06em;
	line-height: 1;
}

.vct26-home .vct26-floating-card p {
	margin-bottom: 0;
	color: var(--vct26-muted);
	font-size: 10px;
	font-weight: 700;
	line-height: 1.4;
}


/* ----------------------------------------------------------
   TRUSTBALK
   ---------------------------------------------------------- */

.vct26-home .vct26-trust {
	padding: 0 24px;
	border-bottom: 1px solid var(--vct26-border);
	background: var(--vct26-white);
	box-shadow: 0 12px 38px rgba(7, 31, 58, 0.045);
}

.vct26-home .vct26-trust__columns {
	margin-bottom: 0;
}

.vct26-home .vct26-trust__columns > .wp-block-column {
	margin: 0;
}

.vct26-home .vct26-trust__item {
	min-height: 118px;
	padding: 27px 24px;
	border-right: 1px solid var(--vct26-border);
}

.vct26-home .vct26-trust__columns > .wp-block-column:first-child .vct26-trust__item {
	padding-left: 0;
}

.vct26-home .vct26-trust__columns > .wp-block-column:last-child .vct26-trust__item {
	padding-right: 0;
	border-right: 0;
}

.vct26-home .vct26-trust__item h4 {
	margin-bottom: 5px;
	color: var(--vct26-navy);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.35;
}

.vct26-home .vct26-trust__item p {
	margin-bottom: 0;
	color: var(--vct26-muted);
	font-size: 11px;
	line-height: 1.5;
}

.vct26-home .vct26-trust__item:not(.vct26-trust__item--intro) h4::before {
	display: inline-flex;
	width: 21px;
	height: 21px;
	align-items: center;
	justify-content: center;
	margin-right: 9px;
	border-radius: 7px;
	color: var(--vct26-blue);
	content: "✓";
	background: var(--vct26-light-blue);
	font-size: 11px;
}


/* ----------------------------------------------------------
   DIENSTEN
   ---------------------------------------------------------- */

.vct26-home .vct26-services {
	background:
		linear-gradient(
			180deg,
			#f8fbfd 0%,
			#eef5fa 100%
		);
}

.vct26-home .vct26-card-row {
	gap: 20px;
	margin-bottom: 20px;
}

.vct26-home .vct26-card-row:last-child {
	margin-bottom: 0;
}

.vct26-home .vct26-card-row > .wp-block-column {
	display: flex;
}

.vct26-home .vct26-service-card {
	position: relative;
	display: flex;
	width: 100%;
	min-height: 355px;
	flex-direction: column;
	padding: 30px;
	overflow: hidden;
	border: 1px solid var(--vct26-border);
	border-radius: var(--vct26-radius);
	color: var(--vct26-text);
	background: rgba(255, 255, 255, 0.97);
	box-shadow: 0 10px 29px rgba(7, 31, 58, 0.035);
	transition:
		transform 190ms ease,
		border-color 190ms ease,
		box-shadow 190ms ease;
}

.vct26-home .vct26-service-card::after {
	position: absolute;
	right: -68px;
	bottom: -73px;
	width: 165px;
	height: 165px;
	border-radius: 50%;
	content: "";
	background:
		radial-gradient(
			circle,
			rgba(0, 104, 200, 0.09),
			transparent 68%
		);
	transition: transform 200ms ease;
}

.vct26-home .vct26-service-card:hover {
	transform: translateY(-7px);
	border-color: rgba(0, 104, 200, 0.34);
	box-shadow: var(--vct26-shadow);
}

.vct26-home .vct26-service-card:hover::after {
	transform: scale(1.35);
}

.vct26-home .vct26-service-card__number {
	position: absolute;
	top: 28px;
	right: 28px;
	margin: 0;
	color: #c1ced9;
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.13em;
}

.vct26-home .vct26-service-card__icon {
	display: flex;
	width: 57px;
	height: 57px;
	align-items: center;
	justify-content: center;
	margin-bottom: 26px;
	border-radius: 15px;
	color: var(--vct26-blue);
	background:
		linear-gradient(
			145deg,
			#e3f3fe,
			#f3f9fd
		);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: -0.02em;
}

.vct26-home .vct26-service-card h3 {
	position: relative;
	z-index: 2;
	margin-bottom: 13px;
	color: var(--vct26-navy);
	font-size: 22px;
	font-weight: 820;
	letter-spacing: -0.028em;
	line-height: 1.25;
}

.vct26-home .vct26-service-card > p:not(
	.vct26-service-card__number,
	.vct26-service-card__icon,
	.vct26-service-card__link,
	.vct26-service-card__badge
) {
	position: relative;
	z-index: 2;
	margin-bottom: 23px;
	color: var(--vct26-muted);
	font-size: 14px;
	line-height: 1.72;
}

.vct26-home .vct26-service-card__link {
	position: relative;
	z-index: 2;
	margin-top: auto;
	margin-bottom: 0;
	padding-top: 15px;
	font-size: 12px;
	font-weight: 850;
}

.vct26-home .vct26-service-card__link a {
	color: var(--vct26-blue);
}

.vct26-home .vct26-service-card__link a:hover {
	color: var(--vct26-blue-hover);
}

.vct26-home .vct26-service-card--accent {
	justify-content: flex-end;
	border: 0;
	color: var(--vct26-white);
	background:
		radial-gradient(
			circle at 90% 6%,
			rgba(84, 204, 255, 0.38),
			transparent 34%
		),
		linear-gradient(
			140deg,
			var(--vct26-blue),
			#07375f
		);
	box-shadow: 0 18px 44px rgba(0, 73, 139, 0.20);
}

.vct26-home .vct26-service-card--accent::before {
	position: absolute;
	top: 24px;
	right: 24px;
	width: 80px;
	height: 80px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	content: "";
	box-shadow:
		0 0 0 23px rgba(255, 255, 255, 0.035),
		0 0 0 46px rgba(255, 255, 255, 0.02);
}

.vct26-home .vct26-service-card--accent:hover {
	border-color: transparent;
	box-shadow: 0 26px 60px rgba(0, 73, 139, 0.30);
}

.vct26-home .vct26-service-card--accent h3 {
	color: var(--vct26-white);
	font-size: 25px;
}

.vct26-home .vct26-service-card--accent > p:not(
	.vct26-service-card__link,
	.vct26-service-card__badge
) {
	color: rgba(255, 255, 255, 0.74);
}

.vct26-home .vct26-service-card--accent .vct26-service-card__link a {
	color: var(--vct26-white);
}

.vct26-home .vct26-service-card__badge {
	position: relative;
	z-index: 2;
	display: inline-flex;
	width: max-content;
	margin-bottom: 16px;
	padding: 7px 11px;
	border: 1px solid rgba(255, 255, 255, 0.23);
	border-radius: 999px;
	color: #d7f2ff;
	background: rgba(255, 255, 255, 0.08);
	font-size: 9px;
	font-weight: 850;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}


/* ----------------------------------------------------------
   WAAROM VICT
   ---------------------------------------------------------- */

.vct26-home .vct26-why {
	background: var(--vct26-white);
}

.vct26-home .vct26-why__columns {
	gap: 92px;
	margin-bottom: 0;
}

.vct26-home .vct26-why__visual {
	position: relative;
	display: flex;
	min-height: 550px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	overflow: hidden;
	padding: 55px;
	border-radius: 27px;
	color: var(--vct26-white);
	background:
		radial-gradient(
			circle at 83% 17%,
			rgba(75, 195, 255, 0.38),
			transparent 35%
		),
		linear-gradient(
			145deg,
			#071e36,
			#07578e
		);
	box-shadow: var(--vct26-shadow-large);
}

.vct26-home .vct26-why__visual::before {
	position: absolute;
	inset: 0;
	content: "";
	opacity: 0.3;
	background-image:
		linear-gradient(
			30deg,
			rgba(255, 255, 255, 0.05) 12%,
			transparent 12.5%,
			transparent 87%,
			rgba(255, 255, 255, 0.05) 87.5%
		),
		linear-gradient(
			150deg,
			rgba(255, 255, 255, 0.05) 12%,
			transparent 12.5%,
			transparent 87%,
			rgba(255, 255, 255, 0.05) 87.5%
		);
	background-position: 0 0, 25px 44px;
	background-size: 50px 88px;
}

.vct26-home .vct26-why__visual > * {
	position: relative;
	z-index: 2;
}

.vct26-home .vct26-why__visual-label {
	margin-bottom: 1px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.25em;
}

.vct26-home .vct26-why__visual-letter {
	margin-bottom: 9px;
	color: var(--vct26-white);
	font-size: 132px;
	font-weight: 900;
	letter-spacing: -0.13em;
	line-height: 0.95;
	transform: translateX(-8px);
}

.vct26-home .vct26-why__visual-location {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 11px;
	font-weight: 650;
}

.vct26-home .vct26-experience {
	position: absolute;
	right: 21px;
	bottom: 21px;
	z-index: 4;
	width: 176px;
	padding: 20px;
	border: 6px solid var(--vct26-white);
	border-radius: 18px;
	color: var(--vct26-white);
	background:
		linear-gradient(
			145deg,
			var(--vct26-blue),
			#078edb
		);
	box-shadow: 0 18px 44px rgba(0, 65, 120, 0.27);
}

.vct26-home .vct26-experience h3 {
	margin-bottom: 5px;
	color: var(--vct26-white);
	font-size: 42px;
	font-weight: 850;
	letter-spacing: -0.06em;
	line-height: 1;
}

.vct26-home .vct26-experience p {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 10px;
	font-weight: 700;
	line-height: 1.4;
}

.vct26-home .vct26-why h2 {
	margin-bottom: 24px;
}

.vct26-home .vct26-why__lead {
	margin-bottom: 32px;
	color: var(--vct26-muted);
	font-size: 17px;
	line-height: 1.8;
}

.vct26-home .vct26-benefit {
	position: relative;
	margin-bottom: 20px;
	padding: 2px 0 2px 50px;
}

.vct26-home .vct26-benefit::before {
	position: absolute;
	top: 3px;
	left: 0;
	display: flex;
	width: 34px;
	height: 34px;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	color: var(--vct26-blue);
	content: "✓";
	background: var(--vct26-light-blue);
	font-size: 15px;
	font-weight: 900;
}

.vct26-home .vct26-benefit h3 {
	margin-bottom: 4px;
	color: var(--vct26-navy);
	font-size: 16px;
	font-weight: 820;
	line-height: 1.4;
}

.vct26-home .vct26-benefit p {
	margin-bottom: 0;
	color: var(--vct26-muted);
	font-size: 13px;
	line-height: 1.65;
}

.vct26-home .vct26-buttons--dark {
	margin-top: 31px;
}


/* ----------------------------------------------------------
   WERKWIJZE
   ---------------------------------------------------------- */

.vct26-home .vct26-process-section {
	position: relative;
	overflow: hidden;
	color: var(--vct26-white);
	background:
		radial-gradient(
			circle at 10% 0%,
			rgba(75, 195, 255, 0.17),
			transparent 34%
		),
		linear-gradient(
			135deg,
			#071829,
			#0a345a
		);
}

.vct26-home .vct26-process-section::before {
	position: absolute;
	inset: 0;
	content: "";
	opacity: 0.22;
	background-image:
		linear-gradient(
			rgba(255, 255, 255, 0.04) 1px,
			transparent 1px
		),
		linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.04) 1px,
			transparent 1px
		);
	background-size: 42px 42px;
}

.vct26-home .vct26-process-section > * {
	position: relative;
	z-index: 2;
}

.vct26-home .vct26-section-heading--light h2 {
	color: var(--vct26-white);
}

.vct26-home .vct26-section-heading--light > p:last-child {
	color: rgba(255, 255, 255, 0.67);
}

.vct26-home .vct26-process {
	gap: 20px;
	margin-bottom: 0;
}

.vct26-home .vct26-process > .wp-block-column {
	display: flex;
}

.vct26-home .vct26-process__item {
	width: 100%;
	min-height: 270px;
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.055);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.055);
	transition:
		transform 180ms ease,
		background-color 180ms ease,
		border-color 180ms ease;
}

.vct26-home .vct26-process__item:hover {
	transform: translateY(-5px);
	border-color: rgba(120, 211, 255, 0.34);
	background: rgba(255, 255, 255, 0.085);
}

.vct26-home .vct26-process__number {
	display: flex;
	width: 50px;
	height: 50px;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 14px;
	color: #86d9ff;
	background: rgba(255, 255, 255, 0.06);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.08em;
}

.vct26-home .vct26-process__item h3 {
	margin-bottom: 10px;
	color: var(--vct26-white);
	font-size: 18px;
	font-weight: 820;
	line-height: 1.35;
}

.vct26-home .vct26-process__item p:last-child {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.64);
	font-size: 13px;
	line-height: 1.72;
}


/* ----------------------------------------------------------
   SLOT CTA
   ---------------------------------------------------------- */

.vct26-home .vct26-final-section {
	background:
		linear-gradient(
			180deg,
			#f3f8fc,
			#ffffff
		);
}

.vct26-home .vct26-final-cta {
	position: relative;
	overflow: hidden;
	padding: 66px 68px;
	border-radius: var(--vct26-radius-large);
	color: var(--vct26-white);
	background:
		radial-gradient(
			circle at 90% 0%,
			rgba(75, 195, 255, 0.40),
			transparent 36%
		),
		linear-gradient(
			135deg,
			var(--vct26-blue),
			#07365f
		);
	box-shadow: 0 30px 76px rgba(0, 65, 120, 0.24);
}

.vct26-home .vct26-final-cta::before {
	position: absolute;
	inset: 0;
	content: "";
	opacity: 0.25;
	background-image:
		linear-gradient(
			rgba(255, 255, 255, 0.05) 1px,
			transparent 1px
		),
		linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.05) 1px,
			transparent 1px
		);
	background-size: 38px 38px;
}

.vct26-home .vct26-final-cta > * {
	position: relative;
	z-index: 2;
}

.vct26-home .vct26-final-cta__columns {
	gap: 60px;
	margin-bottom: 0;
}

.vct26-home .vct26-final-cta h2 {
	max-width: 720px;
	margin-bottom: 18px;
	color: var(--vct26-white);
}

.vct26-home .vct26-final-cta p:not(.vct26-kicker) {
	max-width: 690px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.74);
	font-size: 15px;
	line-height: 1.75;
}

.vct26-home .vct26-final-cta__buttons {
	flex-direction: column;
	align-items: stretch;
	margin-top: 0;
}

.vct26-home .vct26-final-cta__buttons .wp-block-button,
.vct26-home .vct26-final-cta__buttons .wp-block-button__link {
	width: 100%;
}


/* ----------------------------------------------------------
   TABLET
   ---------------------------------------------------------- */

@media (max-width: 1024px) {

	.vct26-home .vct26-section {
		padding-top: 90px;
		padding-bottom: 90px;
	}

	.vct26-home .vct26-hero__columns {
		flex-wrap: wrap;
		gap: 64px;
	}

	.vct26-home .vct26-hero__columns > .wp-block-column {
		flex-basis: 100% !important;
	}

	.vct26-home .vct26-hero__content {
		max-width: 780px;
	}

	.vct26-home .vct26-hero__visual-column {
		width: min(100%, 590px);
		margin-right: auto;
		margin-left: auto;
	}

	.vct26-home .vct26-trust__columns {
		flex-wrap: wrap;
	}

	.vct26-home .vct26-trust__columns > .wp-block-column {
		flex-basis: 50% !important;
	}

	.vct26-home .vct26-trust__item {
		border-bottom: 1px solid var(--vct26-border);
	}

	.vct26-home .vct26-trust__columns > .wp-block-column:nth-child(2) .vct26-trust__item {
		border-right: 0;
	}

	.vct26-home .vct26-trust__columns > .wp-block-column:first-child .vct26-trust__item {
		padding-left: 24px;
	}

	.vct26-home .vct26-trust__columns > .wp-block-column:last-child .vct26-trust__item {
		padding-right: 24px;
		border-bottom: 0;
	}

	.vct26-home .vct26-card-row {
		flex-wrap: wrap;
	}

	.vct26-home .vct26-card-row > .wp-block-column {
		flex-basis: calc(50% - 10px) !important;
	}

	.vct26-home .vct26-why__columns {
		flex-wrap: wrap;
		gap: 65px;
	}

	.vct26-home .vct26-why__columns > .wp-block-column {
		flex-basis: 100% !important;
	}

	.vct26-home .vct26-why__visual {
		width: min(100%, 610px);
		margin-right: auto;
		margin-left: auto;
	}

	.vct26-home .vct26-process {
		flex-wrap: wrap;
	}

	.vct26-home .vct26-process > .wp-block-column {
		flex-basis: calc(50% - 10px) !important;
	}

	.vct26-home .vct26-final-cta__columns {
		flex-wrap: wrap;
		gap: 36px;
	}

	.vct26-home .vct26-final-cta__columns > .wp-block-column {
		flex-basis: 100% !important;
	}

	.vct26-home .vct26-final-cta__buttons {
		max-width: 340px;
	}
}


/* ----------------------------------------------------------
   MOBIEL
   ---------------------------------------------------------- */

@media (max-width: 767px) {

	.vct26-home .alignwide {
		width: min(100% - 32px, 1180px);
	}

	.vct26-home .vct26-section {
		padding: 74px 16px;
	}

	.vct26-home .vct26-hero {
		padding: 78px 16px 88px;
	}

	.vct26-home .vct26-hero__columns {
		gap: 52px;
	}

	.vct26-home .vct26-hero__title {
		font-size: clamp(42px, 12vw, 57px);
		line-height: 1.01;
	}

	.vct26-home .vct26-hero__intro {
		font-size: 17px;
	}

	.vct26-home .vct26-buttons {
		flex-direction: column;
	}

	.vct26-home .vct26-buttons .wp-block-button,
	.vct26-home .vct26-buttons .wp-block-button__link {
		width: 100%;
	}

	.vct26-home .vct26-hero__checks {
		display: grid;
		gap: 9px;
	}

	.vct26-home .vct26-dashboard {
		padding: 19px;
		transform: none;
	}

	.vct26-home .vct26-dashboard__metrics {
		gap: 8px;
	}

	.vct26-home .vct26-metric {
		padding: 13px;
	}

	.vct26-home .vct26-metric__value {
		font-size: 19px;
	}

	.vct26-home .vct26-floating-card {
		right: 10px;
		bottom: -44px;
	}

	.vct26-home .vct26-trust {
		padding-right: 16px;
		padding-left: 16px;
	}

	.vct26-home .vct26-trust__columns > .wp-block-column {
		flex-basis: 100% !important;
	}

	.vct26-home .vct26-trust__item,
	.vct26-home .vct26-trust__columns > .wp-block-column:first-child .vct26-trust__item,
	.vct26-home .vct26-trust__columns > .wp-block-column:last-child .vct26-trust__item {
		min-height: 0;
		padding: 22px 0;
		border-right: 0;
		border-bottom: 1px solid var(--vct26-border);
	}

	.vct26-home .vct26-trust__columns > .wp-block-column:last-child .vct26-trust__item {
		border-bottom: 0;
	}

	.vct26-home .vct26-section-heading {
		margin-bottom: 38px;
	}

	.vct26-home .vct26-section-heading h2,
	.vct26-home .vct26-why h2,
	.vct26-home .vct26-final-cta h2 {
		font-size: clamp(34px, 9.5vw, 45px);
	}

	.vct26-home .vct26-card-row > .wp-block-column {
		flex-basis: 100% !important;
	}

	.vct26-home .vct26-service-card {
		min-height: 320px;
	}

	.vct26-home .vct26-why__visual {
		min-height: 460px;
		padding: 36px;
	}

	.vct26-home .vct26-why__visual-letter {
		font-size: 106px;
	}

	.vct26-home .vct26-experience {
		width: 160px;
	}

	.vct26-home .vct26-process > .wp-block-column {
		flex-basis: 100% !important;
	}

	.vct26-home .vct26-process__item {
		min-height: 0;
	}

	.vct26-home .vct26-final-cta {
		padding: 45px 27px;
		border-radius: 22px;
	}

	.vct26-home .vct26-final-cta__buttons {
		max-width: none;
	}
}


/* ----------------------------------------------------------
   ZEER KLEINE SCHERMEN
   ---------------------------------------------------------- */

@media (max-width: 430px) {

	.vct26-home .vct26-eyebrow {
		font-size: 9px;
		letter-spacing: 0.08em;
	}

	.vct26-home .vct26-dashboard__top {
		align-items: flex-start;
		flex-direction: column;
		gap: 7px;
	}

	.vct26-home .vct26-system-row {
		align-items: flex-start;
	}

	.vct26-home .vct26-system-row__online {
		font-size: 9px;
	}

	.vct26-home .vct26-floating-card {
		display: none;
	}
}


/* ----------------------------------------------------------
   VERMINDERDE ANIMATIE
   ---------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

	.vct26-home *,
	.vct26-home *::before,
	.vct26-home *::after {
		scroll-behavior: auto;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
