* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	/* Colors */
	--vma-bg-primary: #0c0e12;
	--vma-bg-secondary: #161a20;
	--vma-accent-teal: #00bfa6;
	--vma-accent-purple: #8b5cf6;
	--vma-text-primary: #e5e7eb;
	--vma-text-secondary: #9ca3af;
	--vma-divider: #1f2937;

	/* Gradients */
	--vma-gradient-hero: linear-gradient(135deg, #00bfa6 0%, #8b5cf6 100%);
	--vma-gradient-card: linear-gradient(
		145deg,
		rgba(0, 191, 166, 0.1),
		rgba(139, 92, 246, 0.1)
	);

	/* Shadows */
	--vma-shadow-glow-teal: 0 0 40px rgba(0, 191, 166, 0.3);
	--vma-shadow-glow-purple: 0 0 40px rgba(139, 92, 246, 0.3);
	--vma-shadow-card: 0 10px 30px rgba(0, 0, 0, 0.3);

	/* Typography */
	--vma-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	--vma-font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

	/* Transitions */
	--vma-transition: all 0.3s ease-in-out;

	/* Spacing */
	--vma-section-padding: 120px 0;
	--vma-container-max: 1280px;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--vma-font-primary);
	background-color: var(--vma-bg-primary);
	color: var(--vma-text-primary);
	line-height: 1.7;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--vma-transition);
}

ul,
ol {
	list-style: none;
}

button {
	border: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
	transition: var(--vma-transition);
}

input,
textarea,
select {
	font-family: inherit;
	border: none;
	outline: none;
}

/* ============================================
   2. TYPOGRAPHY
   ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--vma-font-heading);
	font-weight: 700;
	line-height: 1.2;
	color: var(--vma-text-primary);
}

.vma-h1 {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	letter-spacing: -0.02em;
}

.vma-h2 {
	font-size: clamp(2rem, 4vw, 3.5rem);
	letter-spacing: -0.01em;
}

.vma-h3 {
	font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.vma-h4 {
	font-size: clamp(1.25rem, 2.5vw, 2rem);
}

.vma-h5 {
	font-size: clamp(1.125rem, 2vw, 1.5rem);
}

.vma-text-large {
	font-size: clamp(1.125rem, 2vw, 1.375rem);
	line-height: 1.6;
}

.vma-text-body {
	font-size: 1rem;
	line-height: 1.7;
}

.vma-text-small {
	font-size: 0.875rem;
	line-height: 1.6;
}

.vma-text-gradient {
	background: var(--vma-gradient-hero);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ============================================
   3. LAYOUT & CONTAINERS
   ============================================ */

.vma-container {
	max-width: var(--vma-container-max);
	margin: 0 auto;
	padding: 0 24px;
	width: 100%;
}

.vma-container-wide {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 24px;
}

.vma-container-narrow {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 24px;
}

.vma-section {
	padding: var(--vma-section-padding);
	position: relative;
}

.vma-section-alt {
	background-color: var(--vma-bg-secondary);
}

/* ============================================
   4. HEADER
   ============================================ */

.vma-header {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 40px);
	max-width: 1440px;
	z-index: 1000;
	transition: var(--vma-transition);
}

.vma-header-inner {
	background: rgba(22, 26, 32, 0.7);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	padding: 1rem 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.vma-header.scrolled .vma-header-inner {
	background: rgba(22, 26, 32, 0.95);
}

.vma-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--vma-font-heading);
	font-size: 1.25rem;
	font-weight: 700;
}

.vma-logo-icon {
	width: 40px;
	height: 40px;
	background: var(--vma-gradient-hero);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
	box-shadow: var(--vma-shadow-glow-teal);
}

.vma-nav {
	display: flex;
	gap: 40px;
}

.vma-nav-link {
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--vma-text-secondary);
	position: relative;
	padding: 8px 0;
}

.vma-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--vma-gradient-hero);
	transition: width 0.3s ease;
}

.vma-nav-link:hover,
.vma-nav-link.active {
	color: var(--vma-text-primary);
}

.vma-nav-link:hover::after,
.vma-nav-link.active::after {
	width: 100%;
}

.vma-header-actions {
	display: flex;
	align-items: center;
	gap: 20px;
}

.vma-search-btn {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background: transparent;
	border: 1px solid var(--vma-divider);
	color: var(--vma-text-secondary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.125rem;
}

.vma-search-btn:hover {
	border-color: var(--vma-accent-teal);
	color: var(--vma-accent-teal);
	box-shadow: 0 0 20px rgba(0, 191, 166, 0.3);
}

.vma-burger {
	display: none;
	flex-direction: column;
	gap: 6px;
	justify-content: space-between;
	width: 28px;
	height: 20px;
	cursor: pointer;
}

.vma-burger span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--vma-text-primary);
	border-radius: 2px;
	transition: var(--vma-transition);
}

.vma-burger.active span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.vma-burger.active span:nth-child(2) {
	opacity: 0;
}

.vma-burger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

.vma-mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(12, 14, 18, 0.98);
	backdrop-filter: blur(20px);
	z-index: 999;
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 32px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.vma-mobile-menu.active {
	display: flex;
	opacity: 1;
}

.vma-mobile-menu .vma-nav-link {
	font-size: 1.5rem;
}

/* ============================================
   5. BUTTONS
   ============================================ */

.vma-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 32px;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 600;
	transition: var(--vma-transition);
	cursor: pointer;
	white-space: nowrap;
}

.vma-btn-primary {
	background: var(--vma-gradient-hero);
	color: white;
	box-shadow: var(--vma-shadow-glow-teal);
}

.vma-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 50px rgba(0, 191, 166, 0.5);
}

.vma-btn-secondary {
	background: transparent;
	border: 2px solid var(--vma-accent-teal);
	color: var(--vma-accent-teal);
}

.vma-btn-secondary:hover {
	background: rgba(0, 191, 166, 0.1);
	box-shadow: 0 0 30px rgba(0, 191, 166, 0.3);
}

.vma-btn-outline {
	background: transparent;
	border: 1px solid var(--vma-divider);
	color: var(--vma-text-primary);
}

.vma-btn-outline:hover {
	border-color: var(--vma-accent-purple);
	color: var(--vma-accent-purple);
	box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.vma-btn-large {
	padding: 18px 40px;
	font-size: 1.125rem;
}

.vma-btn-small {
	padding: 10px 24px;
	font-size: 0.875rem;
}

/* ============================================
   6. HERO SECTION
   ============================================ */

.vma-hero {
	min-height: 125vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	padding: 160px 24px 80px;
}

.vma-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* opacity: 0.2; */
	z-index: 0;
}

.vma-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		180deg,
		rgba(12, 14, 18, 0.8) 0%,
		rgba(12, 14, 18, 0.95) 100%
	);
	z-index: 1;
}

.vma-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 900px;
}

.vma-hero-subtitle {
	font-size: clamp(0.875rem, 1.5vw, 1rem);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--vma-accent-teal);
	margin-bottom: 24px;
	font-weight: 600;
}

.vma-hero-title {
	margin-bottom: 24px;
	text-shadow: 0 0 40px rgba(0, 191, 166, 0.3);
}

.vma-hero-description {
	font-size: clamp(1.125rem, 2vw, 1.375rem);
	color: var(--vma-text-secondary);
	margin-bottom: 48px;
	line-height: 1.7;
}

.vma-hero-actions {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.vma-hero-features {
	margin-top: 80px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 32px;
}

.vma-hero-feature {
	text-align: center;
	padding: 24px;
	background: rgba(22, 26, 32, 0.5);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.vma-hero-feature-icon {
	font-size: 2.5rem;
	margin-bottom: 16px;
	background: var(--vma-gradient-hero);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.vma-hero-feature-title {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 8px;
}

.vma-hero-feature-text {
	font-size: 0.875rem;
	color: var(--vma-text-secondary);
}

/* ============================================
   7. CARDS & GRID
   ============================================ */

.vma-grid {
	display: grid;
	gap: 32px;
}

.vma-grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
}

.vma-grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.vma-grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.vma-card {
	background: var(--vma-bg-secondary);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	padding: 40px;
	transition: var(--vma-transition);
	position: relative;
	overflow: hidden;
}

.vma-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--vma-gradient-card);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.vma-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--vma-shadow-card);
	border-color: var(--vma-accent-teal);
}

.vma-card:hover::before {
	opacity: 1;
}

.vma-card-glass {
	background: rgba(22, 26, 32, 0.6);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

.vma-card-icon {
	width: 64px;
	height: 64px;
	border-radius: 12px;
	background: var(--vma-gradient-hero);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: white;
	margin-bottom: 24px;
	box-shadow: var(--vma-shadow-glow-teal);
}

.vma-card-title {
	font-size: 1.5rem;
	margin-bottom: 16px;
	font-weight: 700;
}

.vma-card-text {
	color: var(--vma-text-secondary);
	line-height: 1.7;
	margin-bottom: 24px;
}

.vma-card-horizontal {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 24px;
	align-items: start;
}

.vma-card-horizontal .vma-card-icon {
	margin-bottom: 0;
}

/* ============================================
   8. SECTION HEADERS
   ============================================ */

.vma-section-header {
	text-align: center;
	margin-bottom: 64px;
}

.vma-section-subtitle {
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--vma-accent-teal);
	margin-bottom: 16px;
	font-weight: 600;
}

.vma-section-title {
	margin-bottom: 20px;
}

.vma-section-description {
	font-size: 1.125rem;
	color: var(--vma-text-secondary);
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.7;
}

/* ============================================
   9. ACADEMIC FOUNDATIONS SECTION
   ============================================ */

.vma-foundations {
	padding: var(--vma-section-padding);
}

.vma-foundations-grid {
	display: grid;
	gap: 24px;
}

.vma-foundation-item {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 24px;
	align-items: center;
	padding: 32px;
	background: var(--vma-bg-secondary);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	transition: var(--vma-transition);
}

.vma-foundation-item:hover {
	border-color: var(--vma-accent-purple);
	box-shadow: 0 0 40px rgba(139, 92, 246, 0.2);
	transform: translateX(8px);
}

.vma-foundation-icon {
	width: 80px;
	height: 80px;
	border-radius: 16px;
	background: linear-gradient(
		135deg,
		var(--vma-accent-purple),
		var(--vma-accent-teal)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	color: white;
	flex-shrink: 0;
}

.vma-foundation-content h3 {
	font-size: 1.5rem;
	margin-bottom: 12px;
}

.vma-foundation-content p {
	color: var(--vma-text-secondary);
	line-height: 1.7;
}

/* ============================================
   10. PROJECTS SECTION
   ============================================ */

.vma-projects {
	padding: var(--vma-section-padding);
	background: var(--vma-bg-secondary);
}

.vma-projects-container {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 64px;
	align-items: start;
}

.vma-projects-description {
	position: sticky;
	top: 120px;
}

.vma-projects-description h2 {
	margin-bottom: 24px;
}

.vma-projects-description p {
	color: var(--vma-text-secondary);
	margin-bottom: 20px;
	line-height: 1.7;
}

.vma-price-tag {
	display: inline-block;
	background: var(--vma-gradient-hero);
	padding: 16px 32px;
	border-radius: 12px;
	font-size: 1.25rem;
	font-weight: 700;
	color: white;
	margin-top: 24px;
	box-shadow: var(--vma-shadow-glow-teal);
}

.vma-projects-grid {
	display: grid;
	gap: 24px;
}

.vma-project-card {
	background: var(--vma-bg-primary);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	padding: 32px;
	transition: var(--vma-transition);
}

.vma-project-card:hover {
	border-color: var(--vma-accent-teal);
	box-shadow: 0 0 40px rgba(0, 191, 166, 0.2);
}

.vma-project-card h4 {
	font-size: 1.25rem;
	margin-bottom: 12px;
	color: var(--vma-accent-teal);
}

.vma-project-card p {
	color: var(--vma-text-secondary);
	line-height: 1.7;
}

/* ============================================
   11. TESTIMONIALS SECTION
   ============================================ */

.vma-testimonials {
	padding: var(--vma-section-padding);
}

.vma-testimonial-card {
	background: var(--vma-bg-secondary);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	padding: 40px;
	text-align: center;
	transition: var(--vma-transition);
}

.vma-testimonial-card:hover {
	border-color: var(--vma-accent-purple);
	box-shadow: 0 0 40px rgba(139, 92, 246, 0.2);
	transform: translateY(-8px);
}

.vma-testimonial-image {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	margin: 0 auto 24px;
	object-fit: cover;
	border: 3px solid var(--vma-accent-teal);
	box-shadow: var(--vma-shadow-glow-teal);
	background: var(--vma-bg-primary);
}

.vma-testimonial-name {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 8px;
}

.vma-testimonial-role {
	font-size: 0.9375rem;
	color: var(--vma-accent-teal);
	margin-bottom: 20px;
}

.vma-testimonial-text {
	color: var(--vma-text-secondary);
	line-height: 1.7;
	font-style: italic;
}

/* ============================================
   12. COMPARISON TABLE
   ============================================ */

.vma-comparison {
	padding: var(--vma-section-padding);
	background: var(--vma-bg-secondary);
}

.vma-table-wrapper {
	overflow-x: auto;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.vma-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--vma-bg-primary);
}

.vma-table thead {
	background: var(--vma-bg-secondary);
}

.vma-table th {
	padding: 20px 24px;
	text-align: left;
	font-weight: 700;
	color: var(--vma-text-primary);
	border-bottom: 2px solid var(--vma-accent-teal);
}

.vma-table td {
	padding: 20px 24px;
	color: var(--vma-text-secondary);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vma-table tbody tr {
	transition: var(--vma-transition);
}

.vma-table tbody tr:hover {
	background: rgba(0, 191, 166, 0.05);
}

.vma-table-highlight {
	color: var(--vma-accent-teal);
	font-weight: 600;
}

.vma-table-icon {
	font-size: 1.25rem;
}

.vma-table-icon.success {
	color: var(--vma-accent-teal);
}

.vma-table-icon.warning {
	color: #f59e0b;
}

.vma-table-icon.error {
	color: #ef4444;
}

/* ============================================
   13. CONTACT SECTION
   ============================================ */

.vma-contact {
	padding: var(--vma-section-padding);
}

.vma-contact-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: start;
}

.vma-form {
	background: var(--vma-bg-secondary);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	padding: 48px;
}

.vma-form-group {
	margin-bottom: 24px;
}

.vma-form-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: var(--vma-text-primary);
}

.vma-form-input,
.vma-form-textarea {
	width: 100%;
	padding: 14px 20px;
	background: var(--vma-bg-primary);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	color: var(--vma-text-primary);
	font-size: 1rem;
	transition: var(--vma-transition);
}

.vma-form-input:focus,
.vma-form-textarea:focus {
	border-color: var(--vma-accent-teal);
	box-shadow: 0 0 20px rgba(0, 191, 166, 0.2);
}

.vma-form-textarea {
	min-height: 150px;
	resize: vertical;
}

.vma-form-error {
	color: #ef4444;
	font-size: 0.875rem;
	margin-top: 8px;
	display: none;
}

.vma-form-group.error .vma-form-error {
	display: block;
}

.vma-form-group.error .vma-form-input,
.vma-form-group.error .vma-form-textarea {
	border-color: #ef4444;
}

.vma-form-submit {
	width: 100%;
	margin-top: 8px;
}

.vma-map-container {
	height: 100%;
	min-height: 400px;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.05);
	box-shadow: var(--vma-shadow-card);
}

.vma-map {
	height: 100%;
	min-height: 400px;

	border-radius: 0.5rem;

	overflow: hidden;
}

@media (max-width: 768px) {
	.vma-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.vma-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 0.5rem;
	/* overflow: hidden; */
}

.vma-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 0.5rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

/* ============================================
   14. FOOTER
   ============================================ */

.vma-footer {
	background: var(--vma-bg-secondary);
	padding: 80px 0 32px;
	border-top: 1px solid var(--vma-divider);
}

.vma-footer-main {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 48px;
	margin-bottom: 48px;
}

.vma-footer-column h4 {
	font-size: 1.125rem;
	margin-bottom: 20px;
	color: var(--vma-text-primary);
}

.vma-footer-text {
	color: var(--vma-text-secondary);
	line-height: 1.7;
	margin-bottom: 20px;
}

.vma-footer-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.vma-footer-link {
	color: var(--vma-text-secondary);
	font-size: 0.9375rem;
	transition: var(--vma-transition);
}

.vma-footer-link:hover {
	color: var(--vma-accent-teal);
	padding-left: 8px;
}

.vma-footer-contact-item {
	display: flex;
	align-items: start;
	gap: 12px;
	margin-bottom: 16px;
}

.vma-footer-contact-icon {
	color: var(--vma-accent-teal);
	font-size: 1.125rem;
	margin-top: 2px;
	flex-shrink: 0;
}

.vma-footer-contact-text {
	color: var(--vma-text-secondary);
	font-size: 0.9375rem;
	line-height: 1.6;
}

.vma-footer-bottom {
	padding-top: 32px;
	border-top: 1px solid var(--vma-divider);
	text-align: center;
	color: var(--vma-text-secondary);
	font-size: 0.875rem;
}

/* ============================================
   15. COOKIE POPUP
   ============================================ */

.vma-cookie-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgba(22, 26, 32, 0.98);
	backdrop-filter: blur(20px);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 24px;
	z-index: 10000;
	transform: translateY(100%);
	transition: transform 0.4s ease;
	box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.vma-cookie-popup.show {
	transform: translateY(0);
}

.vma-cookie-content {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}

.vma-cookie-text {
	flex: 1;
	min-width: 300px;
}

.vma-cookie-text p {
	color: var(--vma-text-secondary);
	line-height: 1.6;
	margin-bottom: 12px;
}

.vma-cookie-links {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.vma-cookie-link {
	color: var(--vma-accent-teal);
	font-size: 0.875rem;
	text-decoration: underline;
}

.vma-cookie-actions {
	display: flex;
	gap: 16px;
}

/* ============================================
   16. ANIMATIONS
   ============================================ */

@keyframes vma-fade-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes vma-fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes vma-slide-left {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes vma-blur-in {
	from {
		opacity: 0;
		filter: blur(10px);
	}
	to {
		opacity: 1;
		filter: blur(0);
	}
}

@keyframes vma-glow-pulse {
	0%,
	100% {
		box-shadow: 0 0 20px rgba(0, 191, 166, 0.3);
	}
	50% {
		box-shadow: 0 0 40px rgba(0, 191, 166, 0.6);
	}
}

.vma-animate-fade-up {
	animation: vma-fade-up 0.8s ease-out forwards;
}

.vma-animate-fade-in {
	animation: vma-fade-in 0.6s ease-out forwards;
}

.vma-animate-slide-left {
	animation: vma-slide-left 0.8s ease-out forwards;
}

.vma-animate-blur-in {
	animation: vma-blur-in 0.8s ease-out forwards;
}

/* ============================================
   17. UTILITY CLASSES
   ============================================ */

.vma-text-center {
	text-align: center;
}

.vma-text-left {
	text-align: left;
}

.vma-text-right {
	text-align: right;
}

.vma-mb-8 {
	margin-bottom: 8px;
}

.vma-mb-16 {
	margin-bottom: 16px;
}

.vma-mb-24 {
	margin-bottom: 24px;
}

.vma-mb-32 {
	margin-bottom: 32px;
}

.vma-mb-48 {
	margin-bottom: 48px;
}

.vma-mt-8 {
	margin-top: 8px;
}

.vma-mt-16 {
	margin-top: 16px;
}

.vma-mt-24 {
	margin-top: 24px;
}

.vma-mt-32 {
	margin-top: 32px;
}

.vma-d-flex {
	display: flex;
}

.vma-flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.vma-flex-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.vma-gap-8 {
	gap: 8px;
}

.vma-gap-16 {
	gap: 16px;
}

.vma-gap-24 {
	gap: 24px;
}

.vma-gap-32 {
	gap: 32px;
}

/* ============================================
   19. PRIVACY & LEGAL PAGES
   ============================================ */

.vma-legal-page {
	padding: 160px 0 80px;
	min-height: 100vh;
}

.vma-legal-header {
	text-align: center;
	margin-bottom: 64px;
}

.vma-legal-content {
	max-width: 900px;
	margin: 0 auto;
	background: var(--vma-bg-secondary);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	padding: 64px;
}

.vma-legal-content h2 {
	font-size: 2rem;
	margin-top: 48px;
	margin-bottom: 24px;
	color: var(--vma-text-primary);
}

.vma-legal-content h3 {
	font-size: 1.5rem;
	margin-top: 32px;
	margin-bottom: 16px;
	color: var(--vma-accent-teal);
}

.vma-legal-content p {
	color: var(--vma-text-secondary);
	line-height: 1.8;
	margin-bottom: 20px;
}

.vma-legal-content ul,
.vma-legal-content ol {
	color: var(--vma-text-secondary);
	line-height: 1.8;
	margin-bottom: 20px;
	padding-left: 32px;
}

.vma-legal-content ul {
	list-style: disc;
}

.vma-legal-content ol {
	list-style: decimal;
}

.vma-legal-content li {
	margin-bottom: 12px;
	word-wrap: break-word;
}

.vma-legal-content a {
	color: var(--vma-accent-teal);
	text-decoration: underline;
}

.vma-legal-content a:hover {
	color: var(--vma-accent-purple);
}

.vma-legal-content strong {
	color: var(--vma-text-primary);
	font-weight: 600;
}

.vma-legal-content em {
	font-style: italic;
}

.vma-back-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--vma-accent-teal);
	margin-bottom: 32px;
	font-weight: 600;
}

.vma-back-link:hover {
	gap: 12px;
	color: var(--vma-accent-purple);
}

/* ============================================
   18. RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
	:root {
		--vma-section-padding: 80px 0;
	}

	.vma-projects-container {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.vma-projects-description {
		position: static;
	}

	.vma-contact-container {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.vma-nav {
		display: none;
	}

	.vma-burger {
		display: flex;
	}

	.vma-header-actions {
		display: none;
	}
}

@media (max-width: 768px) {
	:root {
		--vma-section-padding: 60px 0;
	}

	.vma-header {
		top: 16px;
		width: calc(100% - 32px);
	}

	.vma-hero {
		padding: 140px 24px 60px;
	}

	.vma-hero-actions {
		flex-direction: column;
		width: 100%;
	}

	.vma-hero-actions .vma-btn {
		width: 100%;
	}

	.vma-section-header {
		margin-bottom: 48px;
	}

	.vma-foundation-item {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 20px;
	}

	.vma-foundation-icon {
		margin: 0 auto;
	}

	.vma-footer-main {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.vma-cookie-content {
		flex-direction: column;
		align-items: stretch;
	}

	.vma-cookie-actions {
		width: 100%;
	}

	.vma-cookie-actions .vma-btn {
		flex: 1;
	}

	.vma-legal-header h1 {
		font-size: 2rem;
	}
}

@media (max-width: 480px) {
	.vma-logo {
		font-size: 1rem;
	}

	.vma-legal-header h1 {
		font-size: 1.3rem;
	}

	.vma-logo-icon {
		width: 32px;
		height: 32px;
		font-size: 1.25rem;
	}

	.vma-legal-content {
		padding: 2rem;
	}

	.vma-legal-content h2 {
		font-size: 1.2rem;
	}

	.vma-header-actions {
		gap: 12px;
	}

	.vma-search-btn {
		width: 36px;
		height: 36px;
	}

	.vma-card {
		padding: 24px;
	}

	.vma-form {
		padding: 32px 24px;
	}

	.vma-table-wrapper {
		font-size: 0.875rem;
	}

	.vma-table th,
	.vma-table td {
		padding: 12px 16px;
	}

	.vma-foundations-grid,
	.vma-projects-container,
	.vma-projects-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.vma-section-title,
	.vma-hero-title {
		font-size: 1.5rem;
	}

	.vma-foundation-content h3 {
		font-size: 1.2rem;
		word-wrap: break-word;
	}

	.vma-project-card p {
		word-wrap: break-word;
	}

	.vma-legal-content h3 {
		font-size: 1rem;
	}
}
