/* VIRECHEM — Clinical Precision B2B Portal */
:root {
	--vc-primary: #001a42;
	--vc-primary-container: #0a2f64;
	--vc-secondary: #005cbd;
	--vc-secondary-container: #5f9aff;
	--vc-on-secondary-container: #00316c;
	--vc-surface: #f8f9fa;
	--vc-surface-low: #f3f4f5;
	--vc-white: #ffffff;
	--vc-on-surface: #191c1d;
	--vc-on-surface-variant: #44474f;
	--vc-outline-variant: #e5e7eb;
	--vc-gradient: linear-gradient(135deg, #005CBE 0%, #1D4ED8 100%);
	--vc-font: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	--vc-max: 1200px;
	--vc-gutter: 24px;
	--vc-margin-mobile: 20px;
	--vc-margin-desktop: 24px;
	--vc-section-pad: 96px;
	--vc-section-pad-mobile: 60px;
	--vc-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
	font-size: 16px;
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--vc-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--vc-on-surface);
	background: var(--vc-white);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--vc-transition); }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

.container {
	width: 100%;
	max-width: var(--vc-max);
	margin: 0 auto;
	padding-left: var(--vc-margin-mobile);
	padding-right: var(--vc-margin-mobile);
}

@media (min-width: 768px) {
	.container {
		padding-left: var(--vc-margin-desktop);
		padding-right: var(--vc-margin-desktop);
	}
}

/* Typography */
.vc-label {
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.vc-display {
	font-size: 32px;
	font-weight: 300;
	line-height: 1.15;
	letter-spacing: 0.03em;
	color: var(--vc-primary);
}

@media (min-width: 768px) {
	.vc-display { font-size: 48px; letter-spacing: 0.05em; }
}

.vc-headline-lg {
	font-size: 28px;
	font-weight: 300;
	line-height: 1.2;
	letter-spacing: 0.02em;
	color: var(--vc-primary);
}

@media (min-width: 768px) {
	.vc-headline-lg { font-size: 32px; letter-spacing: 0.03em; }
}

.vc-headline-md {
	font-size: 22px;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: 0.02em;
	color: var(--vc-primary);
}

@media (min-width: 768px) {
	.vc-headline-md { font-size: 24px; }
}

.vc-body-lg {
	font-size: 17px;
	font-weight: 300;
	line-height: 1.65;
	letter-spacing: 0.01em;
	color: var(--vc-on-surface-variant);
}

.vc-body-md {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--vc-on-surface-variant);
}

.vc-section {
	padding: var(--vc-section-pad-mobile) 0;
}

@media (min-width: 768px) {
	.vc-section { padding: var(--vc-section-pad) 0; }
}

.vc-section--surface { background: var(--vc-surface); }
.vc-section--white { background: var(--vc-white); }

.vc-section-head {
	margin-bottom: 48px;
}

@media (min-width: 768px) {
	.vc-section-head {
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
		gap: 32px;
		margin-bottom: 64px;
	}
}

.vc-section-head .vc-label {
	color: var(--vc-secondary);
	display: block;
	margin-bottom: 16px;
}

.vc-section-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--vc-primary);
	border-bottom: 1px solid var(--vc-primary);
	padding-bottom: 4px;
	margin-top: 16px;
	white-space: nowrap;
}

.vc-section-link:hover { color: var(--vc-secondary); border-color: var(--vc-secondary); }

/* Buttons */
.vc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 32px;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border: none;
	border-radius: 0;
	cursor: pointer;
	transition: all var(--vc-transition);
	white-space: nowrap;
}

.vc-btn--primary {
	background: var(--vc-gradient);
	color: var(--vc-white);
}

.vc-btn--primary:hover {
	filter: brightness(1.08);
	transform: translateY(-1px);
}

.vc-btn--outline {
	background: transparent;
	color: var(--vc-primary);
	border: 1px solid var(--vc-primary);
}

.vc-btn--outline:hover {
	background: var(--vc-primary);
	color: var(--vc-white);
}

.vc-btn--block { width: 100%; }

.vc-btn__arrow {
	display: inline-block;
	transition: transform var(--vc-transition);
}

.vc-btn:hover .vc-btn__arrow { transform: translateX(4px); }

/* Header */
.vc-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid transparent;
	transition: border-color var(--vc-transition), box-shadow var(--vc-transition);
}

.vc-header.is-scrolled {
	border-bottom-color: rgba(229, 231, 235, 0.9);
	box-shadow: 0 1px 0 rgba(12, 26, 48, 0.04);
}

.vc-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 80px;
}

.vc-logo img { height: 80px; width: auto; }

.vc-nav-toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 32px;
	height: 32px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}

.vc-nav-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--vc-primary);
	transition: var(--vc-transition);
}

.vc-nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vc-nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.vc-nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.vc-nav-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: var(--vc-white);
	padding: 20px var(--vc-margin-mobile) 28px;
	box-shadow: 0 16px 40px rgba(0, 26, 66, 0.08);
}

.vc-nav-menu.is-open { display: block; }

.vc-nav-list { margin-bottom: 20px; }

.vc-nav-link {
	display: block;
	padding: 12px 0;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--vc-on-surface-variant);
}

.vc-nav-item.is-active .vc-nav-link,
.vc-nav-link:hover { color: var(--vc-secondary); }

.vc-nav-item.has-child > .vc-nav-sub { display: none; padding-left: 16px; }
.vc-nav-item.has-child.is-open > .vc-nav-sub { display: block; }
.vc-nav-sub a {
	display: block;
	padding: 8px 0;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
	color: var(--vc-on-surface-variant);
}

.vc-nav-cta { width: 100%; text-align: center; }

@media (min-width: 992px) {
	.vc-nav {
		position: relative;
		display: grid;
		grid-template-columns: auto minmax(0, 1fr);
		align-items: center;
		gap: 32px;
	}
	.vc-nav-toggle { display: none; }
	.vc-nav-menu {
		display: flex;
		flex: 1;
		align-items: center;
		gap: 28px;
		min-width: 0;
		position: static;
		background: none;
		padding: 0;
		box-shadow: none;
	}
	.vc-nav-list {
		flex: 1;
		display: flex;
		align-items: center;
		justify-content: space-evenly;
		gap: 12px;
		margin-bottom: 0;
	}
	.vc-nav-link {
		padding: 10px 6px;
		font-size: 15px;
		letter-spacing: 0.07em;
		white-space: nowrap;
		text-align: center;
	}
	.vc-nav-item.is-active .vc-nav-link {
		color: var(--vc-secondary);
		box-shadow: inset 0 -2px 0 var(--vc-secondary);
	}
	.vc-nav-item.has-child { position: relative; }
	.vc-nav-item.has-child > .vc-nav-sub {
		display: none;
		position: absolute;
		top: calc(100% + 12px);
		left: 50%;
		transform: translateX(-50%);
		min-width: 200px;
		padding: 12px 0;
		background: var(--vc-white);
		box-shadow: 0 12px 40px rgba(0, 26, 66, 0.1);
	}
	.vc-nav-item.has-child:hover > .vc-nav-sub { display: block; }
	.vc-nav-sub a { padding: 10px 20px; }
	.vc-nav-sub a:hover { background: var(--vc-surface); color: var(--vc-secondary); }
	.vc-nav-cta {
		width: auto;
		flex-shrink: 0;
	}
}

/* Hero */
.vc-hero {
	position: relative;
	padding-top: 120px;
	padding-bottom: var(--vc-section-pad-mobile);
	background: var(--vc-surface);
	overflow: hidden;
}

@media (min-width: 768px) {
	.vc-hero {
		padding-top: 160px;
		padding-bottom: var(--vc-section-pad);
	}
}

.vc-hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	align-items: center;
}

@media (min-width: 992px) {
	.vc-hero-grid {
		grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
		gap: 48px;
		align-items: stretch;
	}
}

.vc-hero-copy .vc-label {
	color: var(--vc-secondary);
	margin-bottom: 24px;
	letter-spacing: 0.2em;
}

.vc-hero-copy .vc-display {
	margin-bottom: 28px;
}

.vc-hero-copy .vc-display strong {
	font-weight: 600;
}

.vc-hero-copy .vc-body-lg {
	max-width: 540px;
	margin-bottom: 40px;
}

.vc-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.vc-hero-visual {
	position: relative;
	min-height: 360px;
}

@media (min-width: 992px) {
	.vc-hero-visual { min-height: 620px; }
}

.vc-hero-visual__frame {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 360px;
	aspect-ratio: auto;
	max-height: none;
	background-color: var(--vc-surface-low);
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

@media (min-width: 992px) {
	.vc-hero-visual__frame { min-height: 620px; }
}

.vc-hero-visual__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 26, 66, 0.55) 0%, rgba(0, 26, 66, 0.08) 45%, transparent 100%);
}

.vc-hero-visual__frame::before {
	content: none;
}

.vc-hero-visual__inner {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 40px;
	z-index: 1;
}

.vc-hero-visual__inner .vc-label,
.vc-hero-visual__inner .vc-headline-md {
	color: var(--vc-white);
}

.vc-hero-visual__lines {
	position: absolute;
	inset: 0;
	opacity: 0.35;
}

.vc-hero-stat {
	position: absolute;
	left: -12px;
	bottom: 48px;
	background: var(--vc-white);
	padding: 28px 32px;
	box-shadow: 0 20px 50px rgba(0, 26, 66, 0.1);
}

@media (min-width: 992px) {
	.vc-hero-stat { left: -32px; }
}

.vc-hero-stat strong {
	display: block;
	font-size: 28px;
	font-weight: 700;
	color: var(--vc-primary);
	line-height: 1;
	margin-bottom: 6px;
}

.vc-hero-stat span {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--vc-on-surface-variant);
}

/* Benefits */
.vc-benefits {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}

@media (min-width: 768px) {
	.vc-benefits {
		grid-template-columns: repeat(3, 1fr);
		gap: var(--vc-gutter);
	}
}

.vc-benefit {
	padding: 48px 0;
	background: var(--vc-white);
	transition: background var(--vc-transition);
}

@media (min-width: 768px) {
	.vc-benefit {
		padding: 56px 40px;
		background: var(--vc-surface-low);
	}
	.vc-benefit:hover { background: var(--vc-white); }
}

.vc-benefit + .vc-benefit {
	border-top: 1px solid rgba(229, 231, 235, 0.8);
}

@media (min-width: 768px) {
	.vc-benefit + .vc-benefit { border-top: none; }
}

.vc-benefit__num {
	display: block;
	font-size: 48px;
	font-weight: 300;
	line-height: 1;
	color: rgba(0, 26, 66, 0.12);
	margin-bottom: 24px;
	letter-spacing: 0.05em;
}

.vc-benefit h3 { margin-bottom: 16px; }

/* Product catalogue tabs */
.vc-catalog-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
}

.vc-catalog-tabs__btn {
	appearance: none;
	border: 1px solid rgba(229, 231, 235, 0.95);
	background: var(--vc-white);
	color: var(--vc-on-surface-variant);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
	padding: 12px 16px;
	cursor: pointer;
	transition: color var(--vc-transition), background var(--vc-transition), border-color var(--vc-transition);
}

.vc-catalog-tabs__btn:hover,
.vc-catalog-tabs__btn.is-active {
	color: var(--vc-primary);
	border-color: rgba(0, 92, 189, 0.35);
	background: rgba(0, 92, 189, 0.06);
}

.vc-catalog-panel[hidden] {
	display: none !important;
}

/* Product catalogue table */
.vc-catalog-wrap {
	background: var(--vc-white);
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.vc-catalog-table {
	width: 100%;
	min-width: 720px;
	border-collapse: collapse;
}

.vc-catalog-table thead th {
	padding: 14px 16px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-align: left;
	color: var(--vc-on-surface-variant);
	background: var(--vc-surface-low);
	border-bottom: 1px solid rgba(229, 231, 235, 0.95);
	white-space: nowrap;
}

.vc-catalog-table tbody tr {
	border-bottom: 1px solid rgba(229, 231, 235, 0.75);
	transition: background var(--vc-transition);
}

.vc-catalog-table tbody tr:hover {
	background: rgba(248, 249, 250, 0.85);
}

.vc-catalog-table tbody tr:last-child {
	border-bottom: none;
}

.vc-catalog-table td {
	padding: 18px 16px;
	font-size: 15px;
	line-height: 1.5;
	color: var(--vc-on-surface);
	vertical-align: top;
}

.vc-catalog-table__no {
	width: 48px;
	font-size: 13px;
	font-weight: 500;
	color: var(--vc-on-surface-variant);
	white-space: nowrap;
}

.vc-catalog-table__name {
	font-weight: 500;
	color: var(--vc-primary);
	min-width: 220px;
}

.vc-catalog-table__name a {
	color: inherit;
}

.vc-catalog-table__name a:hover {
	color: var(--vc-secondary);
}

.vc-catalog-table__cat {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--vc-secondary);
	background: rgba(0, 92, 189, 0.08);
	padding: 4px 10px;
	line-height: 1.3;
}

.vc-catalog-table__app {
	color: var(--vc-on-surface-variant);
	min-width: 140px;
}

.vc-catalog-table__spec {
	font-size: 14px;
	color: var(--vc-primary);
	font-weight: 500;
	min-width: 120px;
}

.vc-catalog-foot {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	margin-top: 40px;
}

@media (min-width: 768px) {
	.vc-catalog-foot { justify-content: flex-start; }
}

.vc-catalog-pagination {
	margin-top: 32px;
}

.vc-catalog-meta {
	margin-top: 16px;
	font-size: 13px;
	color: var(--vc-on-surface-variant);
	text-align: center;
}

.vc-catalog-loading td,
.vc-catalog-empty {
	padding: 48px 16px !important;
	text-align: center;
	color: var(--vc-on-surface-variant);
	font-size: 15px;
}

@media (min-width: 768px) {
	.vc-catalog-meta { text-align: left; }
}

/* Inner pages */
.vc-page-head {
	padding-top: 120px;
	padding-bottom: 48px;
}

.vc-page-head--compact {
	padding-bottom: 40px;
}

.vc-page-head .vc-label {
	color: var(--vc-secondary);
	display: block;
	margin-bottom: 16px;
	letter-spacing: 0.16em;
}

.vc-page-intro p { margin-bottom: 0; }

/* News list */
.vc-news-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}

@media (min-width: 768px) {
	.vc-news-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px 32px;
	}
}

@media (min-width: 992px) {
	.vc-news-grid { grid-template-columns: repeat(3, 1fr); }
}

.vc-news-card {
	background: var(--vc-white);
	border: 1px solid rgba(229, 231, 235, 0.9);
	transition: box-shadow var(--vc-transition), transform var(--vc-transition), border-color var(--vc-transition);
}

.vc-news-card:hover {
	box-shadow: 0 20px 48px rgba(0, 26, 66, 0.08);
	transform: translateY(-2px);
	border-color: rgba(0, 92, 189, 0.2);
}

.vc-news-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
}

.vc-news-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 28px 24px 24px;
	min-height: 100%;
}

.vc-news-card__date {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--vc-secondary);
	margin-bottom: 12px;
}

.vc-news-card__title {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.35;
	color: var(--vc-primary);
	margin-bottom: 12px;
}

.vc-news-card__excerpt {
	font-size: 15px;
	line-height: 1.6;
	color: var(--vc-on-surface-variant);
	margin-bottom: 20px;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.vc-news-card__more {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--vc-secondary);
}

/* Article detail */
.vc-article-meta {
	display: block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--vc-secondary);
	margin-bottom: 16px;
}

.vc-article-lead {
	max-width: 760px;
	margin-top: 12px;
}

.vc-article-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
}

@media (min-width: 992px) {
	.vc-article-layout {
		grid-template-columns: minmax(0, 1fr) 280px;
		gap: 64px;
		align-items: start;
	}
}

.vc-article-hero {
	margin-bottom: 32px;
}

.vc-article-hero img {
	width: 100%;
	max-height: 480px;
	object-fit: cover;
}

.vc-article-content {
	font-size: 16px;
	line-height: 1.75;
	color: var(--vc-on-surface-variant);
}

.vc-article-content p { margin-bottom: 1.25em; }
.vc-article-content h2,
.vc-article-content h3 {
	color: var(--vc-primary);
	margin: 1.75em 0 0.75em;
	font-weight: 500;
}
.vc-article-content ul,
.vc-article-content ol {
	margin: 0 0 1.25em 1.25em;
}
.vc-article-content li { margin-bottom: 0.5em; }
.vc-article-content img { margin: 1.5em 0; }

.vc-aside-card {
	padding: 24px;
	background: var(--vc-surface);
	margin-bottom: 16px;
}

.vc-aside-card .vc-label {
	color: var(--vc-secondary);
	display: block;
	margin-bottom: 8px;
}

.vc-aside-card__value {
	font-size: 15px;
	font-weight: 500;
	color: var(--vc-primary);
}

.vc-article-aside .vc-section-link {
	margin-top: 8px;
}

/* Contact */
.vc-contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
}

@media (min-width: 992px) {
	.vc-contact-grid {
		grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
		gap: 64px;
		align-items: start;
	}
}

.vc-contact-cards {
	display: grid;
	gap: 16px;
	margin-bottom: 32px;
}

.vc-contact-card {
	padding: 24px 28px;
	background: var(--vc-surface);
	border-left: 3px solid var(--vc-secondary);
}

.vc-contact-card .vc-label {
	color: var(--vc-secondary);
	display: block;
	margin-bottom: 8px;
}

.vc-contact-card__value {
	font-size: 18px;
	font-weight: 500;
	color: var(--vc-primary);
	margin-bottom: 6px;
}

.vc-contact-card__value a:hover { color: var(--vc-secondary); }

.vc-contact-card__hint {
	font-size: 13px;
	color: var(--vc-on-surface-variant);
}

.vc-contact-highlights {
	display: grid;
	gap: 12px;
}

.vc-contact-highlights li {
	position: relative;
	padding-left: 20px;
	font-size: 15px;
	color: var(--vc-on-surface-variant);
}

.vc-contact-highlights li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 6px;
	height: 6px;
	background: var(--vc-secondary);
	border-radius: 50%;
}

.vc-contact-form-wrap {
	background: var(--vc-white);
	border: 1px solid rgba(229, 231, 235, 0.95);
	padding: 32px 28px;
}

@media (min-width: 768px) {
	.vc-contact-form-wrap { padding: 40px 36px; }
}

.vc-contact-form .vc-headline-md { margin-bottom: 8px; }
.vc-contact-form .vc-body-md { margin-bottom: 28px; }

.vc-form-row { margin-bottom: 20px; }

.vc-form-label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--vc-primary);
	margin-bottom: 8px;
}

.vc-form-input {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid rgba(229, 231, 235, 0.95);
	background: var(--vc-surface);
	color: var(--vc-on-surface);
	transition: border-color var(--vc-transition), box-shadow var(--vc-transition);
}

.vc-form-input:focus {
	outline: none;
	border-color: var(--vc-secondary);
	box-shadow: 0 0 0 3px rgba(0, 92, 189, 0.12);
}

.vc-form-textarea { resize: vertical; min-height: 140px; }

.vc-form-note {
	margin-top: 16px;
	font-size: 12px;
	color: var(--vc-on-surface-variant);
	text-align: center;
}

.vc-form-note .vc-footer-privacy {
	font-size: inherit;
	text-transform: none;
	letter-spacing: 0;
}

/* CTA strip */
.vc-cta-strip { padding: 48px 0; }

.vc-cta-strip__inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
}

@media (min-width: 768px) {
	.vc-cta-strip__inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

.vc-cta-strip .vc-label {
	color: var(--vc-secondary);
	display: block;
	margin-bottom: 8px;
}

.vc-cta-strip .vc-headline-md { margin-bottom: 0; }

.vc-cta-strip__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

/* About page */
.vc-about-intro {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
}

@media (min-width: 992px) {
	.vc-about-intro {
		grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
		gap: 64px;
	}
}

.vc-about-intro__copy .vc-headline-md {
	margin-bottom: 20px;
}

.vc-about-visual {
	position: relative;
	min-height: 320px;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

@media (min-width: 992px) {
	.vc-about-visual { min-height: 420px; }
}

.vc-about-visual__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 26, 66, 0.6) 0%, rgba(0, 26, 66, 0.1) 55%, transparent 100%);
}

.vc-about-visual__caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 32px;
	z-index: 1;
}

.vc-about-visual__caption .vc-label,
.vc-about-visual__caption .vc-headline-md {
	color: var(--vc-white);
}

.vc-about-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

@media (min-width: 768px) {
	.vc-about-stats {
		grid-template-columns: repeat(4, 1fr);
		gap: 32px;
	}
}

.vc-about-stat {
	padding: 28px 24px;
	background: var(--vc-surface);
	text-align: center;
}

.vc-about-stat strong {
	display: block;
	font-size: 22px;
	font-weight: 600;
	color: var(--vc-primary);
	line-height: 1.2;
	margin-bottom: 8px;
}

@media (min-width: 768px) {
	.vc-about-stat strong { font-size: 26px; }
}

.vc-about-stat span {
	display: block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--vc-on-surface-variant);
}

/* Empty & pagination */
.vc-empty {
	text-align: center;
	padding: 64px 24px;
	background: var(--vc-surface);
}

.vc-empty--inline {
	padding: 32px 24px;
	margin-top: 16px;
}

.vc-empty .vc-headline-md { margin-bottom: 8px; }

.vc-pagination {
	display: flex;
	justify-content: center;
	margin-top: 8px;
}

.vc-pagination .pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.vc-pagination .pagination li {
	display: inline-flex;
}

.vc-pagination .pagination li a,
.vc-pagination .pagination li span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	font-size: 13px;
	font-weight: 600;
	color: var(--vc-on-surface-variant);
	border: 1px solid rgba(229, 231, 235, 0.95);
	background: var(--vc-white);
	transition: all var(--vc-transition);
}

.vc-pagination .pagination li a:hover {
	color: var(--vc-secondary);
	border-color: var(--vc-secondary);
}

.vc-pagination .pagination .active span,
.vc-pagination .pagination .active a {
	background: var(--vc-gradient);
	color: var(--vc-white);
	border-color: transparent;
}

.vc-loadmore-wrap {
	display: flex;
	justify-content: center;
	margin-top: 16px;
}

.vc-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
	font-size: 13px;
	color: var(--vc-on-surface-variant);
}

.vc-breadcrumb a:hover { color: var(--vc-secondary); }

.vc-page-head .vc-headline-lg { margin-bottom: 12px; }

.vc-page-lead {
	max-width: 820px;
	margin-top: 8px;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.7;
	letter-spacing: 0.01em;
	color: var(--vc-on-surface-variant);
}

@media (min-width: 768px) {
	.vc-page-lead {
		margin-top: 12px;
		font-size: 20px;
		line-height: 1.75;
	}
}

.vc-page-lead__company {
	display: block;
	margin-bottom: 8px;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.35;
	letter-spacing: 0.02em;
	color: var(--vc-primary);
}

@media (min-width: 768px) {
	.vc-page-lead__company {
		margin-bottom: 10px;
		font-size: 26px;
	}
}

.vc-page-head .vc-body-md { max-width: 720px; }

/* Offerings grid */
.vc-offerings {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

@media (min-width: 576px) {
	.vc-offerings { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
	.vc-offerings { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

.vc-offering {
	padding: 28px 24px;
	background: var(--vc-white);
	border: 1px solid rgba(229, 231, 235, 0.9);
	transition: border-color var(--vc-transition), box-shadow var(--vc-transition);
}

.vc-offering:hover {
	border-color: rgba(0, 92, 189, 0.25);
	box-shadow: 0 12px 32px rgba(0, 26, 66, 0.06);
}

.vc-offering__icon {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--vc-secondary);
	margin-bottom: 12px;
}

.vc-offering h3 {
	font-size: 18px;
	font-weight: 500;
	color: var(--vc-primary);
	margin-bottom: 8px;
}

.vc-offering p {
	font-size: 14px;
	line-height: 1.55;
	color: var(--vc-on-surface-variant);
}

/* Support grid */
.vc-support-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

@media (min-width: 768px) {
	.vc-support-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (min-width: 992px) {
	.vc-support-grid { grid-template-columns: repeat(4, 1fr); }
}

.vc-support-card {
	padding: 32px 24px;
	background: var(--vc-surface-low);
	height: 100%;
}

.vc-support-card .vc-label {
	color: var(--vc-secondary);
	display: block;
	margin-bottom: 12px;
}

.vc-support-card h3 {
	font-size: 18px;
	font-weight: 500;
	color: var(--vc-primary);
	margin-bottom: 12px;
}

.vc-support-card p {
	font-size: 14px;
	line-height: 1.6;
	color: var(--vc-on-surface-variant);
}

/* Why grid (compact benefits) */
.vc-why-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}

@media (min-width: 576px) {
	.vc-why-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (min-width: 992px) {
	.vc-why-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

.vc-why-item {
	padding: 28px 24px;
	background: var(--vc-surface-low);
}

.vc-why-item h3 {
	font-size: 16px;
	font-weight: 600;
	color: var(--vc-primary);
	margin-bottom: 8px;
}

.vc-why-item p {
	font-size: 14px;
	line-height: 1.55;
	color: var(--vc-on-surface-variant);
}

/* FAQ */
.vc-section-head--center {
	text-align: center;
	margin-bottom: 48px;
}

.vc-section-head--center .vc-label {
	display: block;
	margin-bottom: 16px;
}

.vc-section-head--center .vc-headline-lg {
	margin-bottom: 0;
}

.vc-faq-section .vc-faq-list {
	max-width: 720px;
	margin: 0 auto;
}

.vc-faq-list {
	max-width: 800px;
}

.vc-faq-item {
	border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

.vc-faq-item:first-child {
	border-top: 1px solid rgba(229, 231, 235, 0.9);
}

.vc-faq-q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 20px 0;
	background: none;
	border: none;
	text-align: left;
	font-size: 16px;
	font-weight: 500;
	color: var(--vc-primary);
	cursor: pointer;
	transition: color var(--vc-transition);
}

.vc-faq-q:hover { color: var(--vc-secondary); }

.vc-faq-q::after {
	content: '+';
	flex-shrink: 0;
	font-size: 20px;
	font-weight: 300;
	color: var(--vc-secondary);
	transition: transform var(--vc-transition);
}

.vc-faq-item.is-open .vc-faq-q::after {
	content: '−';
}

.vc-faq-a {
	display: none;
	padding: 0 0 20px;
	font-size: 15px;
	line-height: 1.65;
	color: var(--vc-on-surface-variant);
}

.vc-faq-item.is-open .vc-faq-a { display: block; }

/* Homepage about teaser */
.vc-home-about {
	text-align: center;
	max-width: 860px;
	margin: 0 auto;
}

.vc-home-about .vc-label {
	color: var(--vc-secondary);
	display: block;
	margin-bottom: 16px;
}

.vc-home-about .vc-headline-lg {
	margin-bottom: 16px;
}

.vc-home-about .vc-body-md {
	margin-bottom: 32px;
}

.vc-home-highlights {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-bottom: 36px;
	text-align: left;
}

@media (min-width: 768px) {
	.vc-home-highlights { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}

.vc-home-highlight {
	padding: 20px 16px;
	background: var(--vc-surface);
}

.vc-home-highlight strong {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--vc-primary);
	margin-bottom: 4px;
}

.vc-home-highlight span {
	font-size: 13px;
	color: var(--vc-on-surface-variant);
	line-height: 1.4;
}

/* Footer extended */
.vc-footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	padding-bottom: 32px;
	border-bottom: 1px solid rgba(229, 231, 235, 0.8);
	margin-bottom: 24px;
}

@media (min-width: 768px) {
	.vc-footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
}

.vc-footer-brand__name {
	margin-top: 14px;
	margin-bottom: 0;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.45;
	letter-spacing: 0.01em;
	color: var(--vc-primary);
	max-width: 360px;
}

.vc-footer-brand__addr {
	font-size: 14px;
	line-height: 1.6;
	color: var(--vc-on-surface-variant);
	margin-top: 10px;
	margin-bottom: 0;
	max-width: 360px;
}

.vc-footer-col .vc-label {
	color: var(--vc-secondary);
	display: block;
	margin-bottom: 16px;
}

.vc-footer-col ul { display: grid; gap: 10px; }

.vc-footer-contact { gap: 14px; }

.vc-footer-contact__item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14px;
	line-height: 1.55;
	color: var(--vc-on-surface-variant);
}

.vc-footer-contact__icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	margin-top: 1px;
	color: var(--vc-secondary);
	background: rgba(0, 92, 189, 0.08);
}

.vc-footer-contact__icon--whatsapp {
	color: #25D366;
	background: rgba(37, 211, 102, 0.1);
}

.vc-footer-contact__item a {
	color: var(--vc-on-surface-variant);
	text-decoration: none;
	transition: color var(--vc-transition);
}

.vc-footer-contact__item a:hover { color: var(--vc-secondary); }

.vc-footer-col a,
.vc-footer-col li {
	font-size: 14px;
	color: var(--vc-on-surface-variant);
}

.vc-footer-col a:hover { color: var(--vc-secondary); }

/* Trust */
.vc-trust {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
	padding: 48px 0;
}

@media (min-width: 768px) {
	.vc-trust {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

.vc-trust__label {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: var(--vc-primary);
	opacity: 0.7;
}

.vc-trust__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 32px 48px;
	align-items: center;
	opacity: 0.55;
	filter: grayscale(1);
	transition: opacity var(--vc-transition), filter var(--vc-transition);
}

.vc-trust:hover .vc-trust__badges {
	opacity: 0.85;
	filter: grayscale(0.3);
}

.vc-trust__badge {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: var(--vc-on-surface-variant);
}

/* Footer */
.vc-footer {
	background: var(--vc-white);
	padding: 32px 0;
	border-top: 1px solid rgba(229, 231, 235, 0.8);
}

.vc-footer-simple {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	text-align: center;
}

.vc-footer-simple__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 16px 20px;
}

.vc-footer-linkedin {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--vc-on-surface-variant);
	text-decoration: none;
	transition: color var(--vc-transition);
}

.vc-footer-linkedin:hover { color: #0A66C2; }

.vc-float-linkedin {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 900;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	color: #fff;
	background: #0A66C2;
	box-shadow: 0 8px 24px rgba(10, 102, 194, 0.35);
	transition: transform var(--vc-transition), box-shadow var(--vc-transition), background var(--vc-transition);
}

.vc-float-linkedin:hover {
	color: #fff;
	background: #004182;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(10, 102, 194, 0.4);
}

@media (max-width: 767px) {
	.vc-float-linkedin {
		right: 16px;
		bottom: 16px;
		width: 44px;
		height: 44px;
	}
}

@media (min-width: 768px) {
	.vc-footer-simple {
		flex-direction: row;
		text-align: left;
	}

	.vc-footer-simple__actions {
		justify-content: flex-end;
	}
}

.vc-footer-copy {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: var(--vc-on-surface-variant);
}

.vc-footer-privacy {
	background: none;
	border: none;
	padding: 0;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--vc-secondary);
	cursor: pointer;
	transition: color var(--vc-transition);
}

.vc-footer-privacy:hover { color: var(--vc-primary); }

.vc-privacy-modal {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.vc-privacy-modal[hidden] { display: none; }

.vc-privacy-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 26, 66, 0.45);
}

.vc-privacy-modal__panel {
	position: relative;
	width: 100%;
	max-width: 720px;
	max-height: min(85vh, 760px);
	background: var(--vc-white);
	display: flex;
	flex-direction: column;
	box-shadow: 0 24px 64px rgba(0, 26, 66, 0.18);
}

.vc-privacy-modal__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 28px;
	border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

.vc-privacy-modal__head h2 {
	font-size: 22px;
	font-weight: 400;
	color: var(--vc-primary);
}

.vc-privacy-modal__close {
	background: none;
	border: none;
	font-size: 28px;
	line-height: 1;
	color: var(--vc-on-surface-variant);
	cursor: pointer;
	padding: 4px 8px;
}

.vc-privacy-modal__body {
	padding: 28px;
	overflow-y: auto;
	font-size: 15px;
	line-height: 1.7;
	color: var(--vc-on-surface-variant);
}

.vc-privacy-modal__body h3 {
	font-size: 16px;
	font-weight: 600;
	color: var(--vc-primary);
	margin: 24px 0 10px;
}

.vc-privacy-modal__body h3:first-child { margin-top: 0; }

.vc-privacy-modal__body p { margin-bottom: 12px; }

.vc-privacy-modal__foot {
	padding: 20px 28px 24px;
	border-top: 1px solid rgba(229, 231, 235, 0.9);
	display: flex;
	justify-content: flex-end;
}

body.vc-modal-open { overflow: hidden; }

/* Utilities */
.vc-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

@media (max-width: 991px) {
	.vc-hero-stat { display: none; }
}
