@import url('https://fonts.googleapis.com/css2?family=Michroma&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
	/* Core Colors */
	--vvs-bg-cosmic: #0a0a0c;
	--vvs-bg-anthracite: #141418;
	--vvs-bg-elevated: #1a1a1f;
	--vvs-accent-lime: #ccff00;
	--vvs-accent-blue: #0066ff;
	--vvs-text-primary: #f2f2f7;
	--vvs-text-secondary: #8e8e93;
	--vvs-text-muted: #5c5c66;
	--vvs-border-subtle: rgba(242, 242, 247, 0.08);
	--vvs-border-glow: rgba(204, 255, 0, 0.3);

	/* Gradients */
	--vvs-gradient-lime: linear-gradient(135deg, #ccff00 0%, #88cc00 100%);
	--vvs-gradient-blue: linear-gradient(135deg, #0066ff 0%, #0044aa 100%);
	--vvs-gradient-hero: linear-gradient(
		135deg,
		#ccff00 0%,
		#0066ff 50%,
		#ccff00 100%
	);
	--vvs-gradient-glass: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.05) 0%,
		rgba(255, 255, 255, 0.02) 100%
	);

	/* Shadows */
	--vvs-shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.4);
	--vvs-shadow-glow-lime: 0 0 40px rgba(204, 255, 0, 0.15);
	--vvs-shadow-glow-blue: 0 0 40px rgba(0, 102, 255, 0.15);

	/* Spacing */
	--vvs-space-xs: 0.5rem;
	--vvs-space-sm: 1rem;
	--vvs-space-md: 1.5rem;
	--vvs-space-lg: 2rem;
	--vvs-space-xl: 3rem;
	--vvs-space-2xl: 5rem;
	--vvs-space-3xl: 8rem;

	/* Typography */
	--vvs-font-display: 'Michroma', sans-serif;
	--vvs-font-body: 'Inter', sans-serif;

	/* Transitions */
	--vvs-transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	--vvs-transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	--vvs-transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

	/* Layout */
	--vvs-nav-width: 280px;
	--vvs-nav-collapsed: 70px;
	--vvs-container-max: 1400px;
	--vvs-radius-sm: 8px;
	--vvs-radius-md: 16px;
	--vvs-radius-lg: 24px;
	--vvs-radius-xl: 32px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--vvs-font-body);
	background-color: var(--vvs-bg-cosmic);
	color: var(--vvs-text-primary);
	line-height: 1.7;
	overflow-x: hidden;
	min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: var(--vvs-bg-anthracite);
}

::-webkit-scrollbar-thumb {
	background: var(--vvs-accent-lime);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--vvs-accent-blue);
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--vvs-font-display);
	font-weight: 400;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

h1 {
	font-size: clamp(2rem, 5vw, 4rem);
	line-height: 1.2;
}

h2 {
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	line-height: 1.3;
}

h3 {
	font-size: clamp(1.2rem, 2vw, 1.75rem);
	line-height: 1.4;
}

p {
	font-size: 1rem;
	color: var(--vvs-text-secondary);
	max-width: 70ch;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--vvs-transition-fast);
}

/* ===== UTILITY CLASSES ===== */
.vvs-container {
	max-width: var(--vvs-container-max);
	margin: 0 auto;
	padding: 0 var(--vvs-space-lg);
}

.vvs-gradient-text {
	background: var(--vvs-gradient-hero);
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: vvs-gradient-shift 4s ease infinite;
}

@keyframes vvs-gradient-shift {
	0%,
	100% {
		background-position: 0% center;
	}
	50% {
		background-position: 100% center;
	}
}

.vvs-glass {
	background: var(--vvs-gradient-glass);
	backdrop-filter: blur(40px);
	-webkit-backdrop-filter: blur(40px);
	border: 1px solid var(--vvs-border-subtle);
}

.vvs-glow-lime {
	box-shadow: var(--vvs-shadow-glow-lime);
}

.vvs-glow-blue {
	box-shadow: var(--vvs-shadow-glow-blue);
}

/* ===== ANIMATED BORDER ===== */
.vvs-animated-border {
	position: relative;
	border-radius: var(--vvs-radius-md);
	overflow: hidden;
}

.vvs-animated-border::before {
	content: '';
	position: absolute;
	inset: 0;
	padding: 2px;
	border-radius: inherit;
	background: var(--vvs-gradient-hero);
	background-size: 300% 300%;
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	animation: vvs-border-rotate 4s linear infinite;
}

@keyframes vvs-border-rotate {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

/* ===== GLITCH EFFECT ===== */
.vvs-glitch {
	position: relative;
}

.vvs-glitch:hover {
	animation: vvs-glitch-anim 0.3s ease;
}

@keyframes vvs-glitch-anim {
	0%,
	100% {
		transform: translate(0);
		filter: hue-rotate(0deg);
	}
	20% {
		transform: translate(-2px, 2px);
		filter: hue-rotate(90deg);
	}
	40% {
		transform: translate(2px, -2px);
		filter: hue-rotate(180deg);
	}
	60% {
		transform: translate(-1px, 1px);
		filter: hue-rotate(270deg);
	}
	80% {
		transform: translate(1px, -1px);
		filter: hue-rotate(360deg);
	}
}

/* ===== NAVIGATION - COMMAND PANEL ===== */
.vvs-nav {
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: var(--vvs-nav-width);
	background: var(--vvs-bg-anthracite);
	border-right: 1px solid var(--vvs-border-subtle);
	display: flex;
	flex-direction: column;
	z-index: 1000;
	transition:
		width var(--vvs-transition-smooth),
		transform var(--vvs-transition-smooth);
}

.vvs-nav.collapsed {
	width: var(--vvs-nav-collapsed);
}

.vvs-nav.collapsed .vvs-nav-logo,
.vvs-nav.collapsed .vvs-nav-link {
	padding: 1rem;
}

.vvs-nav.collapsed .vvs-nav-social {
	flex-direction: column;
	padding: 1rem;
}

.vvs-nav-logo {
	padding: var(--vvs-space-lg);
	border-bottom: 1px solid var(--vvs-border-subtle);
	display: flex;
	align-items: center;
	gap: var(--vvs-space-sm);
}

.vvs-nav-logo-icon {
	width: 40px;
	height: 40px;
	background: var(--vvs-gradient-lime);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.vvs-nav-logo-icon i {
	color: var(--vvs-bg-cosmic);
	font-size: 1.2rem;
}

.vvs-nav-logo-text {
	font-family: var(--vvs-font-display);
	font-size: 0.9rem;
	letter-spacing: 0.1em;
	white-space: nowrap;
	overflow: hidden;
	transition: opacity var(--vvs-transition-fast);
}

.vvs-nav.collapsed .vvs-nav-logo-text {
	opacity: 0;
	width: 0;
}

.vvs-nav-links {
	flex: 1;
	padding: var(--vvs-space-lg) 0;
	display: flex;
	flex-direction: column;
	gap: var(--vvs-space-xs);
}

.vvs-nav-link {
	display: flex;
	align-items: center;
	gap: var(--vvs-space-md);
	padding: var(--vvs-space-md) var(--vvs-space-lg);
	color: var(--vvs-text-secondary);
	transition: all var(--vvs-transition-fast);
	position: relative;
	overflow: hidden;
}

.vvs-nav-link::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 3px;
	background: var(--vvs-accent-lime);
	transform: scaleY(0);
	transition: transform var(--vvs-transition-fast);
}

.vvs-nav-link:hover,
.vvs-nav-link.active {
	color: var(--vvs-text-primary);
	background: rgba(204, 255, 0, 0.05);
}

.vvs-nav-link:hover::before,
.vvs-nav-link.active::before {
	transform: scaleY(1);
}

.vvs-nav-link i {
	font-size: 1.2rem;
	width: 24px;
	text-align: center;
	flex-shrink: 0;
}

.vvs-nav-link span {
	white-space: nowrap;
	overflow: hidden;
	transition: opacity var(--vvs-transition-fast);
}

.vvs-nav.collapsed .vvs-nav-link span {
	opacity: 0;
}

.vvs-nav-social {
	padding: var(--vvs-space-lg);
	border-top: 1px solid var(--vvs-border-subtle);
	display: flex;
	gap: var(--vvs-space-sm);
	justify-content: center;
}

.vvs-nav-social a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--vvs-bg-elevated);
	color: var(--vvs-text-secondary);
	transition: all var(--vvs-transition-fast);
}

.vvs-nav-social a:hover {
	background: var(--vvs-accent-lime);
	color: var(--vvs-bg-cosmic);
	transform: translateY(-3px);
}

.vvs-nav-toggle {
	display: none;
	position: fixed;
	top: var(--vvs-space-md);
	right: 20px;
	width: 50px;
	height: 50px;
	background: var(--vvs-bg-anthracite);
	border: 1px solid var(--vvs-border-subtle);
	border-radius: var(--vvs-radius-sm);
	z-index: 1001;
	cursor: pointer;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.vvs-nav-toggle span {
	width: 24px;
	height: 2px;
	background: var(--vvs-text-primary);
	transition: all var(--vvs-transition-fast);
}

.vvs-nav-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.vvs-nav-toggle.active span:nth-child(2) {
	opacity: 0;
}

.vvs-nav-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== MAIN CONTENT ===== */
.vvs-main {
	margin-left: var(--vvs-nav-width);
	min-height: 100vh;
	transition: margin-left var(--vvs-transition-smooth);
}

.vvs-nav.collapsed ~ .vvs-main {
	margin-left: var(--vvs-nav-collapsed);
}

/* ===== HERO SECTION ===== */
.vvs-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: var(--vvs-space-3xl) var(--vvs-space-lg);
	position: relative;
	overflow: hidden;
}

.vvs-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('assets/vvs-hero.webp') center/cover;
	left: 0;
	top: 0;
	opacity: 0.3;
	pointer-events: none;
}

.vvs-hero-content {
	max-width: 900px;
	position: relative;
	z-index: 1;
}

.vvs-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: var(--vvs-space-xs);
	padding: var(--vvs-space-xs) var(--vvs-space-md);
	background: rgba(204, 255, 0, 0.1);
	border: 1px solid var(--vvs-accent-lime);
	border-radius: 50px;
	font-size: 0.75rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--vvs-accent-lime);
	margin-bottom: var(--vvs-space-lg);
}

.vvs-hero-badge i {
	font-size: 0.6rem;
}

.vvs-hero h1 {
	margin-bottom: var(--vvs-space-lg);
}

.vvs-hero-text {
	font-size: 1.125rem;
	color: var(--vvs-text-secondary);
	margin: 0 auto var(--vvs-space-xl);
	max-width: 700px;
}

.vvs-hero-cta {
	display: inline-flex;
	align-items: center;
	gap: var(--vvs-space-sm);
	padding: var(--vvs-space-md) var(--vvs-space-xl);
	background: var(--vvs-gradient-lime);
	color: var(--vvs-bg-cosmic);
	font-family: var(--vvs-font-display);
	font-size: 0.875rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border-radius: var(--vvs-radius-sm);
	transition: all var(--vvs-transition-fast);
	position: relative;
	overflow: hidden;
}

.vvs-hero-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transform: translateX(-100%);
	transition: transform 0.6s ease;
}

.vvs-hero-cta:hover::before {
	transform: translateX(100%);
}

.vvs-hero-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 40px rgba(204, 255, 0, 0.3);
}

/* ===== TIMELINE SECTION ===== */
.vvs-section {
	padding: var(--vvs-space-3xl) var(--vvs-space-lg);
}

.vvs-section-header {
	text-align: center;
	margin-bottom: var(--vvs-space-2xl);
}

.vvs-section-label {
	display: inline-block;
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--vvs-accent-lime);
	margin-bottom: var(--vvs-space-sm);
}

.vvs-timeline {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
	padding-left: 60px;
}

.vvs-timeline::before {
	content: '';
	position: absolute;
	left: 20px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(
		to bottom,
		var(--vvs-accent-lime),
		var(--vvs-accent-blue)
	);
}

.vvs-timeline-item {
	position: relative;
	margin-bottom: var(--vvs-space-xl);
	padding: var(--vvs-space-lg);
	background: var(--vvs-bg-anthracite);
	border-radius: var(--vvs-radius-md);
	border: 1px solid var(--vvs-border-subtle);
	transition: all var(--vvs-transition-smooth);
}

.vvs-timeline-item::before {
	content: '';
	position: absolute;
	left: -48px;
	top: var(--vvs-space-lg);
	width: 16px;
	height: 16px;
	background: var(--vvs-bg-cosmic);
	border: 3px solid var(--vvs-accent-lime);
	border-radius: 50%;
	transition: all var(--vvs-transition-fast);
}

.vvs-timeline-item:hover {
	transform: translateX(10px);
	border-color: var(--vvs-accent-lime);
	box-shadow: var(--vvs-shadow-glow-lime);
}

.vvs-timeline-item:hover::before {
	background: var(--vvs-accent-lime);
	transform: scale(1.3);
}

.vvs-timeline-item h3 {
	color: var(--vvs-text-primary);
	margin-bottom: var(--vvs-space-sm);
	font-size: 1.1rem;
}

.vvs-timeline-item p {
	font-size: 0.95rem;
}

/* ===== BENTO GRID ===== */
.vvs-bento {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	/* grid-template-rows: repeat(3, 200px); */
	gap: var(--vvs-space-md);
	max-width: 1200px;
	margin: 0 auto;
}

.vvs-bento-item {
	background: var(--vvs-bg-anthracite);
	border-radius: var(--vvs-radius-lg);
	border: 1px solid var(--vvs-border-subtle);
	padding: var(--vvs-space-lg);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
	overflow: hidden;
	transition: all var(--vvs-transition-smooth);
}

.vvs-bento-item::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(204, 255, 0, 0.05), transparent);
	opacity: 0;
	transition: opacity var(--vvs-transition-smooth);
}

.vvs-bento-item:hover::before {
	opacity: 1;
}

.vvs-bento-item:hover {
	transform: translateY(-5px);
	border-color: var(--vvs-accent-lime);
}

.vvs-bento-item:nth-child(1) {
	grid-column: span 2;
	grid-row: span 2;
}

.vvs-bento-item:nth-child(2) {
	grid-column: span 2;
}

.vvs-bento-item:nth-child(3) {
	grid-row: span 2;
}

.vvs-bento-item:nth-child(4) {
	grid-column: span 2;
}

.vvs-bento-icon {
	width: 50px;
	height: 50px;
	background: rgba(204, 255, 0, 0.1);
	border-radius: var(--vvs-radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: var(--vvs-space-md);
}

.vvs-bento-icon i {
	font-size: 1.5rem;
	color: var(--vvs-accent-lime);
}

.vvs-bento-item h3 {
	font-size: 1rem;
	margin-bottom: var(--vvs-space-xs);
}

.vvs-bento-item p {
	font-size: 0.875rem;
}

/* Scan Effect */
.vvs-bento-item .vvs-scan-line {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--vvs-accent-lime);
	opacity: 0;
	transform: translateY(-100%);
}

.vvs-bento-item:hover .vvs-scan-line {
	opacity: 1;
	animation: vvs-scan 1.5s ease infinite;
}

@keyframes vvs-scan {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(calc(100vh));
	}
}

/* ===== DATA VISUALIZATION ===== */
.vvs-data-section {
	background: var(--vvs-bg-anthracite);
	border-radius: var(--vvs-radius-xl);
	padding: var(--vvs-space-2xl);
	margin: 0 auto;
	max-width: 1200px;
}

.vvs-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--vvs-space-lg);
	margin-bottom: var(--vvs-space-2xl);
}

.vvs-stat-card {
	text-align: center;
	padding: var(--vvs-space-lg);
	background: var(--vvs-bg-cosmic);
	border-radius: var(--vvs-radius-md);
	border: 1px solid var(--vvs-border-subtle);
}

.vvs-stat-number {
	font-family: var(--vvs-font-display);
	font-size: 2.5rem;
	color: var(--vvs-accent-lime);
	margin-bottom: var(--vvs-space-xs);
}

.vvs-stat-label {
	font-size: 0.875rem;
	color: var(--vvs-text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.vvs-chart-container {
	background: var(--vvs-bg-cosmic);
	border-radius: var(--vvs-radius-md);
	padding: var(--vvs-space-lg);
	height: 350px;
}

/* ===== INFINITE SLIDER ===== */
.vvs-slider-section {
	overflow: hidden;
	padding: var(--vvs-space-2xl) 0;
}

.vvs-slider-track {
	display: flex;
	width: max-content;
	animation: vvs-scroll 30s linear infinite;
}

.vvs-slider-track:hover {
	animation-play-state: paused;
}

@keyframes vvs-scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.vvs-quote-card {
	flex-shrink: 0;
	width: 400px;
	padding: var(--vvs-space-lg);
	margin: 0 var(--vvs-space-md);
	background: var(--vvs-bg-anthracite);
	border-radius: var(--vvs-radius-md);
	border: 1px solid var(--vvs-border-subtle);

	display: flex;
	flex-direction: column;
}

.vvs-quote-text {
	font-size: 1rem;
	font-style: italic;
	color: var(--vvs-text-primary);
	margin-bottom: var(--vvs-space-md);
	position: relative;
	padding-left: var(--vvs-space-md);
	border-left: 3px solid var(--vvs-accent-lime);
}

.vvs-quote-author {
	display: flex;
	align-items: center;
	gap: var(--vvs-space-sm);
	margin-top: auto;
}

.vvs-quote-avatar {
	width: 40px;
	height: 40px;
	background: var(--vvs-gradient-lime);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--vvs-font-display);
	color: var(--vvs-bg-cosmic);
	font-size: 0.875rem;
	flex-shrink: 0;
}

.vvs-quote-name {
	font-weight: 600;
	color: var(--vvs-text-primary);
}

.vvs-quote-title {
	font-size: 0.8rem;
	color: var(--vvs-text-secondary);
}

/* ===== FORM SECTION ===== */
.vvs-integration-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--vvs-space-2xl);
	max-width: 1200px;
	margin: 0 auto;
}

.vvs-map-container {
	background: var(--vvs-bg-anthracite);
	border-radius: var(--vvs-radius-lg);
	overflow: hidden;
	min-height: 400px;
	position: relative;
}

.vvs-map {
	height: 100%;
	min-height: 300px;
	filter: grayscale(1) invert(1) contrast(1.1);

	width: 100%;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.vvs-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.vvs-contact-map {
	position: relative;
	height: 100%;
	/* min-height: 300px; */

	/* flex: 1; */

	/* margin-top: 2rem; */
	/* border-radius: 10px; */
	/* overflow: hidden; */
}

.vvs-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 1rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

.vvs-form-terminal {
	background: var(--vvs-bg-anthracite);
	border-radius: var(--vvs-radius-lg);
	border: 1px solid var(--vvs-border-subtle);
	overflow: hidden;
}

.vvs-terminal-header {
	display: flex;
	align-items: center;
	gap: var(--vvs-space-sm);
	padding: var(--vvs-space-md) var(--vvs-space-lg);
	background: var(--vvs-bg-cosmic);
	border-bottom: 1px solid var(--vvs-border-subtle);
}

.vvs-terminal-dots {
	display: flex;
	gap: 6px;
}

.vvs-terminal-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
}

.vvs-terminal-dot:nth-child(1) {
	background: #ff5f56;
}
.vvs-terminal-dot:nth-child(2) {
	background: #ffbd2e;
}
.vvs-terminal-dot:nth-child(3) {
	background: #27ca40;
}

.vvs-terminal-title {
	flex: 1;
	text-align: center;
	font-size: 0.75rem;
	color: var(--vvs-text-secondary);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.vvs-terminal-body {
	padding: var(--vvs-space-xl);
}

.vvs-form-group {
	margin-bottom: var(--vvs-space-md);
}

.vvs-form-label {
	display: block;
	font-size: 0.75rem;
	color: var(--vvs-accent-lime);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: var(--vvs-space-xs);
}

.vvs-form-input,
.vvs-form-textarea {
	width: 100%;
	padding: var(--vvs-space-md);
	background: var(--vvs-bg-cosmic);
	border: 1px solid var(--vvs-border-subtle);
	border-radius: var(--vvs-radius-sm);
	color: var(--vvs-text-primary);
	font-family: var(--vvs-font-body);
	font-size: 1rem;
	transition: all var(--vvs-transition-fast);
}

.vvs-form-input:focus,
.vvs-form-textarea:focus {
	outline: none;
	border-color: var(--vvs-accent-lime);
	box-shadow: 0 0 0 3px rgba(204, 255, 0, 0.1);
}

.vvs-form-input.error,
.vvs-form-textarea.error {
	border-color: #ff5f56;
}

.vvs-form-textarea {
	min-height: 120px;
	resize: vertical;
}

.vvs-form-error {
	font-size: 0.75rem;
	color: #ff5f56;
	margin-top: var(--vvs-space-xs);
	display: none;
}

.vvs-form-input.error + .vvs-form-error,
.vvs-form-textarea.error + .vvs-form-error {
	display: block;
}

.vvs-form-submit {
	width: 100%;
	padding: var(--vvs-space-md) var(--vvs-space-xl);
	background: var(--vvs-gradient-lime);
	color: var(--vvs-bg-cosmic);
	font-family: var(--vvs-font-display);
	font-size: 0.875rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border: none;
	border-radius: var(--vvs-radius-sm);
	cursor: pointer;
	transition: all var(--vvs-transition-fast);
	margin-top: var(--vvs-space-md);
}

.vvs-form-submit:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	background: var(--vvs-text-muted);
}

.vvs-form-submit:not(:disabled):hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(204, 255, 0, 0.3);
}

/* ===== FOOTER ===== */
.vvs-footer {
	background: var(--vvs-bg-anthracite);
	border-top: 1px solid var(--vvs-border-subtle);
	padding: var(--vvs-space-3xl) var(--vvs-space-lg) var(--vvs-space-lg);
}

.vvs-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1.5fr 1fr;
	gap: var(--vvs-space-2xl);
	max-width: 1200px;
	margin: 0 auto;
}

.vvs-footer-brand h3 {
	color: var(--vvs-text-primary);
	margin-bottom: var(--vvs-space-md);
	font-size: 1.2rem;
}

.vvs-footer-brand p {
	font-size: 0.9rem;
	line-height: 1.8;
}

.vvs-footer-title {
	font-family: var(--vvs-font-display);
	font-size: 0.75rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--vvs-accent-lime);
	margin-bottom: var(--vvs-space-md);
}

.vvs-footer-links {
	list-style: none;
}

.vvs-footer-links li {
	margin-bottom: var(--vvs-space-xs);
}

.vvs-footer-links a {
	color: var(--vvs-text-secondary);
	font-size: 0.9rem;
	transition: color var(--vvs-transition-fast);
}

.vvs-footer-links a:hover {
	color: var(--vvs-accent-lime);
}

.vvs-footer-contact p {
	display: flex;
	align-items: flex-start;
	gap: var(--vvs-space-sm);
	margin-bottom: var(--vvs-space-sm);
	font-size: 0.9rem;
	color: var(--vvs-text-secondary);
}

.vvs-footer-contact i {
	color: var(--vvs-accent-lime);
	margin-top: 4px;
}

.vvs-footer-contact a {
	color: var(--vvs-text-secondary);
}

.vvs-footer-contact a:hover {
	color: var(--vvs-accent-lime);
}

.vvs-footer-bottom {
	max-width: 1200px;
	margin: var(--vvs-space-2xl) auto 0;
	padding-top: var(--vvs-space-lg);
	border-top: 1px solid var(--vvs-border-subtle);
	text-align: center;
	font-size: 0.8rem;
	color: var(--vvs-text-muted);
}

/* ===== COOKIE BANNER ===== */
.vvs-cookie-banner {
	position: fixed;
	bottom: var(--vvs-space-lg);
	left: 50%;
	transform: translateX(-50%);
	max-width: 600px;
	width: calc(100% - 2rem);
	padding: var(--vvs-space-lg);
	background: var(--vvs-bg-elevated);
	backdrop-filter: blur(20px);
	border: 1px solid var(--vvs-border-subtle);
	border-radius: var(--vvs-radius-md);
	z-index: 9999;
	display: none;
	box-shadow: var(--vvs-shadow-soft);
}

.vvs-cookie-banner.show {
	display: block;
	animation: vvs-slide-up 0.5s ease;
}

@keyframes vvs-slide-up {
	from {
		transform: translate(-50%, 100%);
		opacity: 0;
	}
	to {
		transform: translate(-50%, 0);
		opacity: 1;
	}
}

.vvs-cookie-text {
	font-size: 0.9rem;
	color: var(--vvs-text-secondary);
	margin-bottom: var(--vvs-space-md);
}

.vvs-cookie-text a {
	color: var(--vvs-accent-lime);
	text-decoration: underline;
}

.vvs-cookie-actions {
	display: flex;
	gap: var(--vvs-space-sm);
	justify-content: flex-end;
}

.vvs-cookie-btn {
	padding: var(--vvs-space-xs) var(--vvs-space-md);
	font-size: 0.8rem;
	font-family: var(--vvs-font-display);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	border: none;
	border-radius: var(--vvs-radius-sm);
	cursor: pointer;
	transition: all var(--vvs-transition-fast);
}

.vvs-cookie-btn.accept {
	background: var(--vvs-gradient-lime);
	color: var(--vvs-bg-cosmic);
}

.vvs-cookie-btn.decline {
	background: transparent;
	border: 1px solid var(--vvs-border-subtle);
	color: var(--vvs-text-secondary);
}

.vvs-cookie-btn:hover {
	transform: translateY(-2px);
}

/* ===== ACCORDION ===== */
.vvs-accordion {
	max-width: 800px;
	margin: 0 auto;
}

.vvs-accordion-item {
	background: var(--vvs-bg-anthracite);
	border: 1px solid var(--vvs-border-subtle);
	border-radius: var(--vvs-radius-md);
	margin-bottom: var(--vvs-space-sm);
	overflow: hidden;
}

.vvs-accordion-header {
	width: 100%;
	padding: var(--vvs-space-md) var(--vvs-space-lg);
	background: transparent;
	border: none;
	color: var(--vvs-text-primary);
	font-family: var(--vvs-font-display);
	font-size: 0.9rem;
	letter-spacing: 0.05em;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all var(--vvs-transition-fast);
}

.vvs-accordion-header:hover {
	background: rgba(204, 255, 0, 0.05);
}

.vvs-accordion-header i {
	color: var(--vvs-accent-lime);
	transition: transform var(--vvs-transition-fast);
}

.vvs-accordion-item.active .vvs-accordion-header i {
	transform: rotate(180deg);
}

.vvs-accordion-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height var(--vvs-transition-smooth);
}

.vvs-accordion-item.active .vvs-accordion-body {
	max-height: 2000px;
}

.vvs-accordion-content {
	padding: 1rem var(--vvs-space-lg) var(--vvs-space-lg);
}

/* ===== TABS ===== */
.vvs-tabs {
	max-width: 900px;
	margin: 0 auto;
}

.vvs-tabs-nav {
	display: flex;
	gap: var(--vvs-space-xs);
	border-bottom: 1px solid var(--vvs-border-subtle);
	margin-bottom: var(--vvs-space-lg);
	flex-wrap: wrap;
}

.vvs-tab-btn {
	padding: var(--vvs-space-md) var(--vvs-space-lg);
	background: transparent;
	border: none;
	color: var(--vvs-text-secondary);
	font-family: var(--vvs-font-display);
	font-size: 0.8rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	cursor: pointer;
	position: relative;
	white-space: nowrap;
	transition: color var(--vvs-transition-fast);
}

.vvs-tab-btn::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--vvs-accent-lime);
	transform: scaleX(0);
	transition: transform var(--vvs-transition-fast);
}

.vvs-tab-btn:hover,
.vvs-tab-btn.active {
	color: var(--vvs-text-primary);
}

.vvs-tab-btn.active::after {
	transform: scaleX(1);
}

.vvs-tab-panel {
	display: none;
	animation: vvs-fade-in 0.4s ease;
}

.vvs-tab-panel.active {
	display: block;
}

@keyframes vvs-fade-in {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ===== CAROUSEL ===== */
.vvs-carousel {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	overflow: hidden;
}

.vvs-carousel-track {
	display: flex;
	transition: transform var(--vvs-transition-smooth);
}

.vvs-carousel-slide {
	flex: 0 0 100%;
	padding: var(--vvs-space-lg);
}

.vvs-carousel-content {
	background: var(--vvs-bg-anthracite);
	border-radius: var(--vvs-radius-lg);
	padding: var(--vvs-space-xl);
	border: 1px solid var(--vvs-border-subtle);
}

.vvs-carousel-nav {
	display: flex;
	justify-content: center;
	gap: var(--vvs-space-sm);
	margin-top: var(--vvs-space-md);
}

.vvs-carousel-btn {
	width: 50px;
	height: 50px;
	background: var(--vvs-bg-elevated);
	border: 1px solid var(--vvs-border-subtle);
	border-radius: 50%;
	color: var(--vvs-text-primary);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--vvs-transition-fast);
}

.vvs-carousel-btn:hover {
	background: var(--vvs-accent-lime);
	color: var(--vvs-bg-cosmic);
}

.vvs-carousel-dots {
	display: flex;
	justify-content: center;
	gap: var(--vvs-space-xs);
	margin-top: var(--vvs-space-md);
	margin-bottom: var(--vvs-space-md);
}

.vvs-carousel-dot {
	width: 10px;
	height: 10px;
	background: var(--vvs-border-subtle);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	transition: all var(--vvs-transition-fast);
}

.vvs-carousel-dot.active {
	background: var(--vvs-accent-lime);
	transform: scale(1.3);
}

/* ===== TABLE ===== */
.vvs-table-container {
	overflow-x: auto;
	margin: var(--vvs-space-lg) 0;
}

.vvs-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--vvs-bg-anthracite);
	border-radius: var(--vvs-radius-md);
	overflow: hidden;
}

.vvs-table th,
.vvs-table td {
	padding: var(--vvs-space-md) var(--vvs-space-lg);
	text-align: left;
	border-bottom: 1px solid var(--vvs-border-subtle);
}

.vvs-table th {
	background: var(--vvs-bg-cosmic);
	font-family: var(--vvs-font-display);
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--vvs-accent-lime);
}

.vvs-table td {
	font-size: 0.9rem;
	color: var(--vvs-text-secondary);
}

.vvs-table tr:hover td {
	background: rgba(204, 255, 0, 0.03);
}

/* ===== GALLERY ===== */
.vvs-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: var(--vvs-space-md);
}

.vvs-gallery-item {
	aspect-ratio: 4/3;
	background: var(--vvs-bg-anthracite);
	border-radius: var(--vvs-radius-md);
	border: 1px solid var(--vvs-border-subtle);
	overflow: hidden;
	position: relative;
	cursor: pointer;
	transition: all var(--vvs-transition-smooth);
}

.vvs-gallery-item:hover {
	transform: scale(1.02);
	border-color: var(--vvs-accent-lime);
}

.vvs-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vvs-gallery-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 10, 12, 0.9), transparent);
	display: flex;
	align-items: flex-end;
	padding: var(--vvs-space-md);
	opacity: 0;
	transition: opacity var(--vvs-transition-fast);
}

.vvs-gallery-item:hover .vvs-gallery-overlay {
	opacity: 1;
}

/* ===== CONTACT PAGE ===== */
.vvs-contact-split {
	display: grid;
	grid-template-columns: 60% 40%;
	min-height: calc(100vh - 80px);
}

.vvs-contact-info {
	background: var(--vvs-bg-cosmic);
	padding: var(--vvs-space-2xl);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.vvs-contact-info h1 {
	margin-bottom: var(--vvs-space-lg);
	font-size: 2rem;
}

.vvs-contact-details {
	margin-bottom: var(--vvs-space-xl);
}

.vvs-contact-item {
	display: flex;
	align-items: flex-start;
	gap: var(--vvs-space-md);
	margin-bottom: var(--vvs-space-md);
}

.vvs-contact-icon {
	width: 40px;
	height: 40px;
	background: rgba(204, 255, 0, 0.1);
	border-radius: var(--vvs-radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.vvs-contact-icon i {
	color: var(--vvs-accent-lime);
}

.vvs-contact-text h4 {
	font-family: var(--vvs-font-body);
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--vvs-text-muted);
	margin-bottom: var(--vvs-space-xs);
}

.vvs-contact-text p,
.vvs-contact-text a {
	color: var(--vvs-text-primary);
	font-size: 0.95rem;
}

/* ===== PAGE HEADER ===== */
.vvs-page-header {
	padding: var(--vvs-space-3xl) var(--vvs-space-lg) var(--vvs-space-2xl);
	text-align: center;
	position: relative;
}

.vvs-page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 300px;
	background: radial-gradient(
		ellipse at top,
		rgba(204, 255, 0, 0.05),
		transparent
	);
	pointer-events: none;
}

.vvs-page-header h1 {
	margin-bottom: var(--vvs-space-md);
}

.vvs-page-header p {
	max-width: 600px;
	margin: 0 auto;
}

/* ===== CONTENT SECTIONS ===== */
.vvs-content-block {
	max-width: 800px;
	margin: 0 auto var(--vvs-space-2xl);
	padding: 0 var(--vvs-space-lg);
}

.vvs-content-block h2 {
	margin-bottom: var(--vvs-space-md);
	color: var(--vvs-text-primary);
}

.vvs-content-block h3 {
	margin: var(--vvs-space-lg) 0 var(--vvs-space-sm);
	color: var(--vvs-text-primary);
	font-size: 1.2rem;
}

.vvs-content-block p {
	margin-bottom: var(--vvs-space-md);
}

.vvs-content-block ul,
.vvs-content-block ol {
	margin: var(--vvs-space-md) 0;
}

.vvs-content-block li {
	color: var(--vvs-text-secondary);
	margin-bottom: var(--vvs-space-xs);
}

/* ===== ESSAY BLOCK ===== */
.vvs-essay {
	background: var(--vvs-bg-anthracite);
	padding: var(--vvs-space-xl);
	border-radius: var(--vvs-radius-lg);
	border-left: 4px solid var(--vvs-accent-lime);
	margin: var(--vvs-space-xl) 0;
}

.vvs-essay p {
	font-size: 1.05rem;
	line-height: 1.9;
	max-width: none;
}

/* ===== PRINT STYLES ===== */
@media print {
	.vvs-nav,
	.vvs-cookie-banner,
	.vvs-nav-toggle {
		display: none !important;
	}

	.vvs-main {
		margin-left: 0;
	}

	body {
		background: white;
		color: black;
	}
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.vvs-slider-track {
		animation: none;
	}
}

:focus-visible {
	outline: 2px solid var(--vvs-accent-lime);
	outline-offset: 2px;
}

/* ===== LOADING STATES ===== */
.vvs-skeleton {
	background: linear-gradient(
		90deg,
		var(--vvs-bg-anthracite) 25%,
		var(--vvs-bg-elevated) 50%,
		var(--vvs-bg-anthracite) 75%
	);
	background-size: 200% 100%;
	animation: vvs-shimmer 1.5s infinite;
}

@keyframes vvs-shimmer {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -200% 0;
	}
}

/* ===== PARTICLES BACKGROUND ===== */
.vvs-particles {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

.vvs-particle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: var(--vvs-accent-lime);
	border-radius: 50%;
	opacity: 0.3;
	animation: vvs-float 20s infinite ease-in-out;
}

@keyframes vvs-float {
	0%,
	100% {
		transform: translateY(100vh) rotate(0deg);
		opacity: 0;
	}
	10% {
		opacity: 0.3;
	}
	90% {
		opacity: 0.3;
	}
	100% {
		transform: translateY(-100vh) rotate(720deg);
		opacity: 0;
	}
}

/* Generate multiple particles */
.vvs-particle:nth-child(1) {
	left: 10%;
	animation-delay: 0s;
	animation-duration: 25s;
}
.vvs-particle:nth-child(2) {
	left: 20%;
	animation-delay: 2s;
	animation-duration: 20s;
}
.vvs-particle:nth-child(3) {
	left: 30%;
	animation-delay: 4s;
	animation-duration: 28s;
}
.vvs-particle:nth-child(4) {
	left: 40%;
	animation-delay: 1s;
	animation-duration: 22s;
}
.vvs-particle:nth-child(5) {
	left: 50%;
	animation-delay: 3s;
	animation-duration: 26s;
}
.vvs-particle:nth-child(6) {
	left: 60%;
	animation-delay: 5s;
	animation-duration: 24s;
}
.vvs-particle:nth-child(7) {
	left: 70%;
	animation-delay: 2s;
	animation-duration: 21s;
}
.vvs-particle:nth-child(8) {
	left: 80%;
	animation-delay: 4s;
	animation-duration: 27s;
}
.vvs-particle:nth-child(9) {
	left: 90%;
	animation-delay: 1s;
	animation-duration: 23s;
}
.vvs-particle:nth-child(10) {
	left: 15%;
	animation-delay: 3s;
	animation-duration: 29s;
}

/* ===== NEON GLOW UTILITIES ===== */
.vvs-neon-lime {
	text-shadow:
		0 0 10px var(--vvs-accent-lime),
		0 0 20px var(--vvs-accent-lime),
		0 0 30px var(--vvs-accent-lime);
}

.vvs-neon-blue {
	text-shadow:
		0 0 10px var(--vvs-accent-blue),
		0 0 20px var(--vvs-accent-blue),
		0 0 30px var(--vvs-accent-blue);
}

/* ===== DIVIDERS ===== */
.vvs-divider {
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--vvs-accent-lime),
		transparent
	);
	margin: var(--vvs-space-2xl) 0;
}

.vvs-divider-dashed {
	border: none;
	border-top: 2px dashed var(--vvs-border-subtle);
	margin: var(--vvs-space-xl) 0;
}

/* ===== BADGES ===== */
.vvs-badge {
	display: inline-flex;
	align-items: center;
	padding: var(--vvs-space-xs) var(--vvs-space-sm);
	font-size: 0.7rem;
	font-family: var(--vvs-font-display);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border-radius: 50px;
}

.vvs-badge-lime {
	background: rgba(204, 255, 0, 0.15);
	color: var(--vvs-accent-lime);
	border: 1px solid var(--vvs-accent-lime);
}

.vvs-badge-blue {
	background: rgba(0, 102, 255, 0.15);
	color: var(--vvs-accent-blue);
	border: 1px solid var(--vvs-accent-blue);
}

/* ===== TOOLTIPS ===== */
.vvs-tooltip {
	position: relative;
}

.vvs-tooltip::after {
	content: attr(data-tooltip);
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(-10px);
	padding: var(--vvs-space-xs) var(--vvs-space-sm);
	background: var(--vvs-bg-elevated);
	border: 1px solid var(--vvs-border-subtle);
	border-radius: var(--vvs-radius-sm);
	font-size: 0.75rem;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: all var(--vvs-transition-fast);
	z-index: 100;
}

.vvs-tooltip:hover::after {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(-5px);
}

/* ===== PROGRESS BAR ===== */
.vvs-progress {
	height: 6px;
	background: var(--vvs-bg-anthracite);
	border-radius: 3px;
	overflow: hidden;
}

.vvs-progress-bar {
	height: 100%;
	background: var(--vvs-gradient-lime);
	border-radius: 3px;
	transition: width var(--vvs-transition-smooth);
}

/* ===== ICON BOXES ===== */
.vvs-icon-box {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(204, 255, 0, 0.08);
	border: 1px solid rgba(204, 255, 0, 0.2);
	border-radius: var(--vvs-radius-md);
	font-size: 1.5rem;
	color: var(--vvs-accent-lime);
	transition: all var(--vvs-transition-fast);
}

.vvs-icon-box:hover {
	background: var(--vvs-accent-lime);
	color: var(--vvs-bg-cosmic);
	transform: scale(1.1);
}

/* ===== LISTS ===== */
.vvs-list {
	list-style: none;
}

.vvs-list li {
	position: relative;
	padding-left: var(--vvs-space-lg);
	margin-bottom: var(--vvs-space-sm);
	color: var(--vvs-text-secondary);
}

.vvs-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 8px;
	height: 8px;
	background: var(--vvs-accent-lime);
	border-radius: 2px;
	transform: rotate(45deg);
}

/* ===== BLOCKQUOTE ===== */
.vvs-blockquote {
	padding: var(--vvs-space-lg);
	background: var(--vvs-bg-anthracite);
	border-left: 4px solid var(--vvs-accent-lime);
	border-radius: 0 var(--vvs-radius-md) var(--vvs-radius-md) 0;
	margin: var(--vvs-space-lg) 0;
}

.vvs-blockquote p {
	font-size: 1.1rem;
	font-style: italic;
	color: var(--vvs-text-primary);
	margin-bottom: var(--vvs-space-sm);
}

.vvs-blockquote cite {
	font-size: 0.9rem;
	color: var(--vvs-text-muted);
	font-style: normal;
}

/* ===== ALERT BOXES ===== */
.vvs-alert {
	padding: var(--vvs-space-md) var(--vvs-space-lg);
	border-radius: var(--vvs-radius-md);
	margin: var(--vvs-space-md) 0;
	display: flex;
	align-items: flex-start;
	gap: var(--vvs-space-md);
}

.vvs-alert-info {
	background: rgba(0, 102, 255, 0.1);
	border: 1px solid var(--vvs-accent-blue);
}

.vvs-alert-info i {
	color: var(--vvs-accent-blue);
}

.vvs-alert-success {
	background: rgba(204, 255, 0, 0.1);
	border: 1px solid var(--vvs-accent-lime);
}

.vvs-alert-success i {
	color: var(--vvs-accent-lime);
}

/* ===== CODE BLOCKS ===== */
.vvs-code {
	font-family: 'Fira Code', 'Monaco', monospace;
	background: var(--vvs-bg-cosmic);
	padding: var(--vvs-space-lg);
	border-radius: var(--vvs-radius-md);
	border: 1px solid var(--vvs-border-subtle);
	overflow-x: auto;
	font-size: 0.9rem;
	line-height: 1.6;
}

.vvs-code-inline {
	font-family: 'Fira Code', 'Monaco', monospace;
	background: var(--vvs-bg-anthracite);
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 0.85em;
	color: var(--vvs-accent-lime);
}

/* ===== ASPECT RATIO BOXES ===== */
.vvs-aspect-16-9 {
	aspect-ratio: 16 / 9;
}

.vvs-aspect-4-3 {
	aspect-ratio: 4 / 3;
}

.vvs-aspect-1-1 {
	aspect-ratio: 1 / 1;
}

/* ===== OVERLAY ===== */
.vvs-overlay {
	position: fixed;
	inset: 0;
	background: rgba(10, 10, 12, 0.9);
	backdrop-filter: blur(10px);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all var(--vvs-transition-smooth);
}

.vvs-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* ===== MODAL ===== */
.vvs-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.9);
	background: var(--vvs-bg-anthracite);
	border: 1px solid var(--vvs-border-subtle);
	border-radius: var(--vvs-radius-lg);
	max-width: 600px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: all var(--vvs-transition-smooth);
}

.vvs-modal.active {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%) scale(1);
}

.vvs-modal-header {
	padding: var(--vvs-space-lg);
	border-bottom: 1px solid var(--vvs-border-subtle);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.vvs-modal-close {
	width: 40px;
	height: 40px;
	background: var(--vvs-bg-cosmic);
	border: 1px solid var(--vvs-border-subtle);
	border-radius: 50%;
	color: var(--vvs-text-primary);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--vvs-transition-fast);
}

.vvs-modal-close:hover {
	background: var(--vvs-accent-lime);
	color: var(--vvs-bg-cosmic);
}

.vvs-modal-body {
	padding: var(--vvs-space-lg);
}

/* ===== SCROLL INDICATOR ===== */
.vvs-scroll-indicator {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--vvs-gradient-lime);
	transform-origin: left;
	transform: scaleX(0);
	z-index: 10000;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
	.vvs-footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.vvs-bento {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}

	.vvs-bento-item {
		width: 100%;
	}

	.vvs-bento-item:nth-child(1) {
		grid-column: span 2;
	}

	.vvs-bento-item:nth-child(3) {
		grid-row: span 1;
	}
}

@media (max-width: 1024px) {
	.vvs-nav {
		transform: translateX(-100%);
	}

	.vvs-nav.open {
		transform: translateX(0);
	}

	.vvs-nav-toggle {
		display: flex;
	}

	.vvs-main {
		margin-left: 0;
	}

	.vvs-integration-section {
		grid-template-columns: 1fr;
	}

	.vvs-contact-split {
		grid-template-columns: 1fr;
	}

	.vvs-contact-map {
		height: 400px;
	}

	.vvs-stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	:root {
		--vvs-space-3xl: 4rem;
		--vvs-space-2xl: 3rem;
	}

	.vvs-hero h1 {
		font-size: 1.8rem;
	}

	.vvs-footer-grid {
		grid-template-columns: 1fr;
		gap: var(--vvs-space-xl);
	}

	.vvs-bento {
		grid-template-columns: 1fr;
	}

	.vvs-bento-item:nth-child(1),
	.vvs-bento-item:nth-child(2),
	.vvs-bento-item:nth-child(4) {
		grid-column: span 1;
	}

	.vvs-timeline {
		padding-left: 40px;
	}

	.vvs-timeline::before {
		left: 10px;
	}

	.vvs-timeline-item::before {
		left: -38px;
	}

	.vvs-quote-card {
		width: 300px;
	}

	.vvs-stats-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.vvs-hero-cta {
		width: 100%;
		justify-content: center;
	}

	.vvs-cookie-actions {
		flex-direction: column;
	}

	.vvs-cookie-btn {
		width: 100%;
	}

	.vvs-tabs-nav {
		flex-direction: column;
	}

	.vvs-section {
		padding: 4rem 0;
	}

	.vvs-timeline-item p {
		font-size: 0.8rem;
	}

	.vvs-timeline-item h3 {
		font-size: 0.9rem;
	}

	.vvs-data-section {
		padding: 2rem;
	}

	.vvs-stat-number {
		font-size: 1.5rem;
	}

	.vvs-stats-grid {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	}

	.vvs-terminal-header {
		display: none;
	}

	.vvs-page-header h1 {
		font-size: 1.5rem;
	}
	.vvs-content-block {
		padding: 0;
	}

	.vvs-gallery {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.vvs-carousel-slide {
		padding: 0;
	}
}

:root {
	/* Color Palette - Cyber Obsidian & Neon Pulse */
	--vvs-legal-bg-primary: #0a0a0c; /* Космический черный */
	--vvs-legal-bg-secondary: #141418; /* Темный антрацит */
	--vvs-legal-bg-tertiary: #1c1c21; /* Графитовый */

	--vvs-legal-accent-lime: #ccff00; /* Электрический лайм */
	--vvs-legal-accent-blue: #0066ff; /* Цифровой синий */
	--vvs-legal-accent-lime-dim: #99cc00; /* Приглушенный лайм */
	--vvs-legal-accent-blue-dim: #0052cc; /* Приглушенный синий */

	--vvs-legal-text-primary: #f2f2f7; /* Холодный белый */
	--vvs-legal-text-secondary: #8e8e93; /* Стальной серый */
	--vvs-legal-text-muted: #636366; /* Темно-серый */

	/* Gradients */
	--vvs-legal-gradient-neon: linear-gradient(
		135deg,
		var(--vvs-legal-accent-lime) 0%,
		var(--vvs-legal-accent-blue) 100%
	);
	--vvs-legal-gradient-dark: linear-gradient(
		180deg,
		var(--vvs-legal-bg-secondary) 0%,
		var(--vvs-legal-bg-primary) 100%
	);

	/* Shadows & Glows */
	--vvs-legal-glow-lime: 0 0 20px rgba(204, 255, 0, 0.15);
	--vvs-legal-glow-blue: 0 0 20px rgba(0, 102, 255, 0.15);
	--vvs-legal-shadow-deep: 0 10px 40px rgba(0, 0, 0, 0.5);
	--vvs-legal-shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);

	/* Typography */
	--vvs-legal-font-main:
		-apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue',
		Arial, sans-serif;
	--vvs-legal-font-mono:
		'SF Mono', 'Monaco', 'Consolas', 'Courier New', monospace;

	/* Spacing */
	--vvs-legal-spacing-xs: 0.5rem;
	--vvs-legal-spacing-sm: 1rem;
	--vvs-legal-spacing-md: 1.5rem;
	--vvs-legal-spacing-lg: 2rem;
	--vvs-legal-spacing-xl: 3rem;
	--vvs-legal-spacing-xxl: 4rem;

	/* Border Radius */
	--vvs-legal-radius-sm: 8px;
	--vvs-legal-radius-md: 12px;
	--vvs-legal-radius-lg: 16px;

	/* Transitions */
	--vvs-legal-transition-fast: 0.2s ease;
	--vvs-legal-transition-medium: 0.3s ease;
	--vvs-legal-transition-slow: 0.5s ease;
}

.vvs-legal-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 120px var(--vvs-legal-spacing-lg);
	position: relative;
	z-index: 1;
}

/* =========================================
   HEADER
   ========================================= */
.vvs-legal-header {
	text-align: center;
	margin-bottom: var(--vvs-legal-spacing-xxl);
	padding: var(--vvs-legal-spacing-xl) 0;
	position: relative;
}

.vvs-legal-header::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 2px;
	background: var(--vvs-legal-gradient-neon);
	box-shadow: var(--vvs-legal-glow-lime);
}

.vvs-legal-title {
	font-size: 3rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: var(--vvs-legal-spacing-sm);
	background: var(--vvs-legal-gradient-neon);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: vvs-legal-glow-pulse 3s ease-in-out infinite;
}

@keyframes vvs-legal-glow-pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.85;
	}
}

.vvs-legal-subtitle {
	font-size: 1.125rem;
	color: var(--vvs-legal-text-secondary);
	margin-bottom: var(--vvs-legal-spacing-xs);
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.vvs-legal-date {
	font-size: 0.875rem;
	color: var(--vvs-legal-text-muted);
	font-family: var(--vvs-legal-font-mono);
	margin-top: var(--vvs-legal-spacing-sm);
}

/* =========================================
   CONTENT SECTIONS
   ========================================= */
.vvs-legal-content {
	display: flex;
	flex-direction: column;
	gap: var(--vvs-legal-spacing-xl);
}

.vvs-legal-section {
	background: var(--vvs-legal-bg-secondary);
	border-radius: var(--vvs-legal-radius-lg);
	padding: var(--vvs-legal-spacing-lg);
	position: relative;
	border: 1px solid rgba(204, 255, 0, 0.1);
	transition: all var(--vvs-legal-transition-medium);
	box-shadow: var(--vvs-legal-shadow-card);
}

.vvs-legal-section:hover {
	border-color: rgba(204, 255, 0, 0.3);
	box-shadow: var(--vvs-legal-shadow-deep), var(--vvs-legal-glow-lime);
	transform: translateY(-2px);
}

/* Section Number Badge */
.vvs-legal-section-number {
	position: absolute;
	top: -15px;
	left: var(--vvs-legal-spacing-lg);
	background: var(--vvs-legal-gradient-neon);
	color: var(--vvs-legal-bg-primary);
	font-family: var(--vvs-legal-font-mono);
	font-size: 0.875rem;
	font-weight: 700;
	padding: 0.4rem 1rem;
	border-radius: var(--vvs-legal-radius-sm);
	box-shadow: var(--vvs-legal-glow-lime);
	z-index: 2;
}

.vvs-legal-section-title {
	font-size: 1.75rem;
	font-weight: 600;
	color: var(--vvs-legal-text-primary);
	margin-bottom: var(--vvs-legal-spacing-md);
	margin-top: var(--vvs-legal-spacing-xs);
	letter-spacing: -0.01em;
}

.vvs-legal-text {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--vvs-legal-text-secondary);
	margin-bottom: var(--vvs-legal-spacing-md);
}

.vvs-legal-text:last-child {
	margin-bottom: 0;
}

/* Highlighted text */
.vvs-legal-highlight {
	color: var(--vvs-legal-accent-lime);
	font-weight: 600;
}

/* =========================================
   FOOTER
   ========================================= */
.vvs-legal-footer {
	margin-top: var(--vvs-legal-spacing-xxl);
	padding-top: var(--vvs-legal-spacing-xl);
	border-top: 1px solid rgba(204, 255, 0, 0.1);
}

.vvs-legal-footer-text {
	font-size: 0.875rem;
	color: var(--vvs-legal-text-muted);
	margin-bottom: var(--vvs-legal-spacing-xs);
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */

/* Tablets */
@media screen and (max-width: 768px) {
	.vvs-legal-title {
		font-size: 2rem;
	}

	.vvs-legal-subtitle {
		font-size: 1rem;
	}

	.vvs-legal-section {
		padding: var(--vvs-legal-spacing-md);
	}

	.vvs-legal-section-title {
		font-size: 1.5rem;
	}

	.vvs-legal-section-number {
		left: var(--vvs-legal-spacing-md);
	}
}

/* Mobile Phones */
@media screen and (max-width: 480px) {
	.vvs-legal-header {
		margin-bottom: var(--vvs-legal-spacing-lg);
		padding: var(--vvs-legal-spacing-lg) 0;
	}

	.vvs-legal-title {
		font-size: 1.2rem;
	}

	.vvs-legal-subtitle {
		font-size: 0.875rem;
	}

	.vvs-legal-section {
		padding: var(--vvs-legal-spacing-md) var(--vvs-legal-spacing-sm);
	}

	.vvs-legal-section-title {
		font-size: 1.25rem;
	}

	.vvs-legal-section-number {
		position: static;
		display: inline-block;
		margin-bottom: var(--vvs-legal-spacing-sm);
	}

	.vvs-legal-text {
		font-size: 0.9375rem;
	}

	.vvs-legal-content {
		gap: var(--vvs-legal-spacing-md);
	}
}
