:root {
	--avh-bg-primary: #0c0e11;
	--avh-bg-secondary: #15181e;
	--avh-bg-tertiary: #1a1d24;
	--avh-accent-purple: #7e5bff;
	--avh-accent-purple-glow: rgba(126, 91, 255, 0.4);
	--avh-accent-teal: #1dddbf;
	--avh-accent-teal-glow: rgba(29, 221, 191, 0.4);
	--avh-text-primary: #f3f3f5;
	--avh-text-secondary: #9ea2a9;
	--avh-text-muted: #6b7280;
	--avh-divider: #252931;
	--avh-heading: #ffffff;
	--avh-gradient-purple: linear-gradient(135deg, #7e5bff 0%, #5b3fcc 100%);
	--avh-gradient-teal: linear-gradient(135deg, #1dddbf 0%, #15a899 100%);
	--avh-gradient-mixed: linear-gradient(135deg, #7e5bff 0%, #1dddbf 100%);
	--avh-shadow-purple: 0 0 30px rgba(126, 91, 255, 0.3);
	--avh-shadow-teal: 0 0 30px rgba(29, 221, 191, 0.3);
	--avh-transition: 0.25s ease-in-out;
	--avh-radius-sm: 6px;
	--avh-radius-md: 12px;
	--avh-radius-lg: 20px;
	--avh-radius-xl: 32px;
	--avh-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	--avh-font-heading: 'Montserrat', sans-serif;
}

/* ----------------------------------------
   Reset & Base Styles
   ---------------------------------------- */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--avh-font-primary);
	background-color: var(--avh-bg-primary);
	color: var(--avh-text-primary);
	line-height: 1.7;
	min-height: 100vh;
	overflow-x: hidden;
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--avh-transition);
}

ul,
ol {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

button {
	cursor: pointer;
	font-family: inherit;
	border: none;
	background: none;
}

input,
textarea,
select {
	font-family: inherit;
	font-size: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--avh-font-heading);
	font-weight: 600;
	color: var(--avh-heading);
	line-height: 1.3;
}

/* ----------------------------------------
   Typography Utilities
   ---------------------------------------- */
.avh-text-gradient {
	background: var(--avh-gradient-mixed);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.avh-text-purple {
	color: var(--avh-accent-purple);
}

.avh-text-teal {
	color: var(--avh-accent-teal);
}

.avh-text-muted {
	color: var(--avh-text-secondary);
}

/* ----------------------------------------
   Layout Containers
   ---------------------------------------- */
.avh-container {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 24px;
}

.avh-container-narrow {
	max-width: 960px;
}

.avh-container-wide {
	max-width: 1600px;
}

.avh-section {
	padding: 100px 0;
	position: relative;
}

.avh-section-sm {
	padding: 60px 0;
}

.avh-section-lg {
	padding: 140px 0;
}

/* ----------------------------------------
   Grid System
   ---------------------------------------- */
.avh-grid {
	display: grid;
	gap: 32px;
}

.avh-grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.avh-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.avh-grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

.avh-grid-6 {
	grid-template-columns: repeat(6, 1fr);
}

.avh-grid-auto {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* ----------------------------------------
   Flexbox Utilities
   ---------------------------------------- */
.avh-flex {
	display: flex;
}

.avh-flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.avh-flex-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.avh-flex-col {
	flex-direction: column;
}

.avh-gap-sm {
	gap: 12px;
}

.avh-gap-md {
	gap: 24px;
}

.avh-gap-lg {
	gap: 40px;
}

/* ----------------------------------------
   Header Styles
   ---------------------------------------- */
.avh-header {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 48px);
	max-width: 1320px;
	z-index: 1000;
	background: rgba(21, 24, 30, 0.85);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--avh-divider);
	border-radius: var(--avh-radius-lg);
	padding: 16px 32px;
	transition: var(--avh-transition);
}

.avh-header.avh-header-scrolled {
	background: rgba(21, 24, 30, 0.95);
	box-shadow: var(--avh-shadow-purple);
}

.avh-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.avh-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	position: relative;
}

.avh-logo-text {
	font-family: var(--avh-font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--avh-heading);
	letter-spacing: -0.5px;
}

.avh-logo-text span {
	background: var(--avh-gradient-mixed);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.avh-nav {
	display: flex;
	align-items: center;
	gap: 8px;
}

.avh-nav-link {
	padding: 10px 20px;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--avh-text-secondary);
	border-radius: var(--avh-radius-md);
	transition: var(--avh-transition);
	position: relative;
}

.avh-nav-link:hover,
.avh-nav-link.avh-active {
	color: var(--avh-heading);
	background: rgba(126, 91, 255, 0.1);
}

.avh-nav-link.avh-active::after {
	content: '';
	position: absolute;
	bottom: 4px;
	left: 50%;
	transform: translateX(-50%);
	width: 20px;
	height: 3px;
	background: var(--avh-accent-purple);
	border-radius: 2px;
}

/* Mobile Menu Button */
.avh-menu-btn {
	display: none;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	border-radius: var(--avh-radius-md);
	background: rgba(126, 91, 255, 0.1);
	transition: var(--avh-transition);
}

.avh-menu-btn:hover {
	background: rgba(126, 91, 255, 0.2);
}

.avh-menu-btn i {
	font-size: 1.25rem;
	color: var(--avh-accent-purple);
}

/* Mobile Sidebar */
.avh-sidebar {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	max-width: 380px;
	height: 100vh;
	background: var(--avh-bg-secondary);
	z-index: 2000;
	padding: 32px;
	transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
}

.avh-sidebar.avh-sidebar-open {
	right: 0;
}

.avh-sidebar-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 1999;
	opacity: 0;
	visibility: hidden;
	transition: var(--avh-transition);
}

.avh-sidebar-overlay.avh-visible {
	opacity: 1;
	visibility: visible;
}

.avh-sidebar-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 48px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--avh-divider);
}

.avh-sidebar-close {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--avh-radius-md);
	background: rgba(255, 255, 255, 0.05);
	transition: var(--avh-transition);
}

.avh-sidebar-close:hover {
	background: rgba(126, 91, 255, 0.2);
}

.avh-sidebar-close i {
	font-size: 1.25rem;
	color: var(--avh-text-primary);
}

.avh-sidebar-nav {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.avh-sidebar-link {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 20px;
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--avh-text-secondary);
	border-radius: var(--avh-radius-md);
	transition: var(--avh-transition);
}

.avh-sidebar-link:hover,
.avh-sidebar-link.avh-active {
	color: var(--avh-heading);
	background: rgba(126, 91, 255, 0.1);
}

.avh-sidebar-link i {
	width: 24px;
	color: var(--avh-accent-purple);
}

/* ----------------------------------------
   Hero Section
   ---------------------------------------- */
.avh-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	padding-top: 120px;
	overflow: hidden;
}

.avh-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.avh-hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.15;
}

.avh-hero-grid {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(
			rgba(126, 91, 255, 0.03) 1px,
			transparent 1px
		),
		linear-gradient(90deg, rgba(126, 91, 255, 0.03) 1px, transparent 1px);
	background-size: 60px 60px;
	z-index: 1;
}

.avh-hero-glow {
	position: absolute;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	filter: blur(150px);
	z-index: 0;
}

.avh-hero-glow-purple {
	top: -200px;
	right: -200px;
	background: rgba(126, 91, 255, 0.2);
}

.avh-hero-glow-teal {
	bottom: -200px;
	left: -200px;
	background: rgba(29, 221, 191, 0.15);
}

.avh-hero-content {
	position: relative;
	z-index: 10;
	max-width: 800px;
}

.avh-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: rgba(126, 91, 255, 0.1);
	border: 1px solid rgba(126, 91, 255, 0.3);
	border-radius: var(--avh-radius-xl);
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--avh-accent-purple);
	margin-bottom: 32px;
	animation: avh-fade-in 0.6s ease-out;
}

.avh-hero-badge i {
	font-size: 0.75rem;
}

.avh-hero-title {
	font-size: clamp(2.5rem, 6vw, 4rem);
	font-weight: 700;
	margin-bottom: 24px;
	letter-spacing: -1px;
	animation: avh-fade-in 0.6s ease-out 0.1s backwards;
}

.avh-hero-title span {
	background: var(--avh-gradient-mixed);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.avh-hero-subtitle {
	font-size: 1.25rem;
	color: var(--avh-text-secondary);
	margin-bottom: 40px;
	max-width: 600px;

	animation: avh-fade-in 0.6s ease-out 0.2s backwards;
}

.avh-hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	animation: avh-fade-in 0.6s ease-out 0.3s backwards;
}

/* ----------------------------------------
   Buttons
   ---------------------------------------- */
.avh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 28px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: var(--avh-radius-md);
	transition: var(--avh-transition);
	cursor: pointer;
}

.avh-btn-primary {
	background: var(--avh-gradient-purple);
	color: var(--avh-heading);
	box-shadow: 0 4px 20px rgba(126, 91, 255, 0.3);
}

.avh-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--avh-shadow-purple);
}

.avh-btn-secondary {
	background: rgba(255, 255, 255, 0.05);
	color: var(--avh-text-primary);
	border: 1px solid var(--avh-divider);
}

.avh-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--avh-accent-purple);
}

.avh-btn-teal {
	background: var(--avh-gradient-teal);
	color: var(--avh-bg-primary);
}

.avh-btn-teal:hover {
	transform: translateY(-2px);
	box-shadow: var(--avh-shadow-teal);
}

.avh-btn-outline {
	background: transparent;
	color: var(--avh-accent-purple);
	border: 2px solid var(--avh-accent-purple);
}

.avh-btn-outline:hover {
	background: var(--avh-accent-purple);
	color: var(--avh-heading);
}

.avh-btn-lg {
	padding: 18px 36px;
	font-size: 1.1rem;
}

.avh-btn-sm {
	padding: 10px 20px;
	font-size: 0.875rem;
}

.avh-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none !important;
}

/* ----------------------------------------
   Section Headers
   ---------------------------------------- */
.avh-section-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 64px;
}

.avh-section-header.avh-left {
	text-align: left;
	margin-left: 0;
}

.avh-section-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	background: rgba(29, 221, 191, 0.1);
	border: 1px solid rgba(29, 221, 191, 0.3);
	border-radius: var(--avh-radius-xl);
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--avh-accent-teal);
	margin-bottom: 20px;
}

.avh-section-title {
	font-size: clamp(2rem, 4vw, 2.75rem);
	margin-bottom: 20px;
}

.avh-section-desc {
	font-size: 1.1rem;
	color: var(--avh-text-secondary);
}

/* ----------------------------------------
   Cards
   ---------------------------------------- */
.avh-card {
	background: var(--avh-bg-secondary);
	border: 1px solid var(--avh-divider);
	border-radius: var(--avh-radius-lg);
	padding: 32px;
	transition: var(--avh-transition);
}

.avh-card:hover {
	border-color: rgba(126, 91, 255, 0.3);
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.avh-card-icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(126, 91, 255, 0.1);
	border-radius: var(--avh-radius-md);
	margin-bottom: 24px;
}

.avh-card-icon i {
	font-size: 1.5rem;
	color: var(--avh-accent-purple);
}

.avh-card-icon.avh-teal {
	background: rgba(29, 221, 191, 0.1);
}

.avh-card-icon.avh-teal i {
	color: var(--avh-accent-teal);
}

.avh-card-title {
	font-size: 1.25rem;
	margin-bottom: 12px;
}

.avh-card-text {
	color: var(--avh-text-secondary);
	font-size: 0.95rem;
}

.avh-card-img {
	width: 100%;
	height: 100%;
	background: var(--avh-bg-tertiary);
	border-radius: var(--avh-radius-md);
	margin-bottom: 24px;
	overflow: hidden;
}

.avh-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ----------------------------------------
   Tabs Component
   ---------------------------------------- */
.avh-tabs {
	width: 100%;
}

.avh-tabs-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 32px;
	padding: 8px;
	background: var(--avh-bg-secondary);
	border-radius: var(--avh-radius-lg);
	border: 1px solid var(--avh-divider);
}

.avh-tab-btn {
	flex: 1;
	min-width: 180px;
	padding: 16px 24px;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--avh-text-secondary);
	background: transparent;
	border-radius: var(--avh-radius-md);
	transition: var(--avh-transition);
	text-align: center;
}

.avh-tab-btn:hover {
	color: var(--avh-text-primary);
	background: rgba(255, 255, 255, 0.05);
}

.avh-tab-btn.avh-active {
	color: var(--avh-heading);
	background: var(--avh-gradient-purple);
	box-shadow: 0 4px 15px rgba(126, 91, 255, 0.3);
}

.avh-tab-content {
	display: none;
	animation: avh-fade-in 0.4s ease-out;
}

.avh-tab-content.avh-active {
	display: block;
}

.avh-tab-panel {
	background: var(--avh-bg-secondary);
	border: 1px solid var(--avh-divider);
	border-radius: var(--avh-radius-lg);
	padding: 40px;
}

.avh-tab-panel h3 {
	font-size: 1.5rem;
	margin-bottom: 16px;
}

.avh-tab-panel p {
	color: var(--avh-text-secondary);
	margin-bottom: 24px;
}

.avh-tab-panel ul {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.avh-tab-panel li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: var(--avh-text-secondary);
}

.avh-tab-panel li i {
	color: var(--avh-accent-teal);
	margin-top: 4px;
}

/* ----------------------------------------
   Table Styles
   ---------------------------------------- */
.avh-table-wrapper {
	overflow-x: auto;
	border-radius: var(--avh-radius-lg);
	border: 1px solid var(--avh-divider);
}

.avh-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--avh-bg-secondary);
}

.avh-table th,
.avh-table td {
	padding: 20px 24px;
	text-align: left;
	border-bottom: 1px solid var(--avh-divider);
}

.avh-table th {
	font-family: var(--avh-font-heading);
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--avh-text-secondary);
	background: var(--avh-bg-tertiary);
}

.avh-table tr:last-child td {
	border-bottom: none;
}

.avh-table tr:hover td {
	background: rgba(126, 91, 255, 0.05);
}

.avh-table td {
	color: var(--avh-text-primary);
}

.avh-table-icon {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(126, 91, 255, 0.1);
	border-radius: var(--avh-radius-sm);
}

.avh-table-icon i {
	color: var(--avh-accent-purple);
}

/* ----------------------------------------
   Info Blocks
   ---------------------------------------- */
.avh-info-block {
	background: var(--avh-bg-secondary);
	border: 1px solid var(--avh-divider);
	border-radius: var(--avh-radius-lg);
	padding: 40px;
	position: relative;
	overflow: hidden;
}

.avh-info-block::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: var(--avh-gradient-mixed);
}

.avh-info-block-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
}

.avh-info-block-icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(29, 221, 191, 0.1);
	border-radius: var(--avh-radius-md);
}

.avh-info-block-icon i {
	font-size: 1.25rem;
	color: var(--avh-accent-teal);
}

.avh-info-block h3 {
	font-size: 1.35rem;
}

.avh-info-block p {
	color: var(--avh-text-secondary);
	line-height: 1.8;
}

/* ----------------------------------------
   Testimonials
   ---------------------------------------- */
.avh-testimonials {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.avh-testimonial {
	background: var(--avh-bg-secondary);
	border: 1px solid var(--avh-divider);
	border-radius: var(--avh-radius-lg);
	padding: 32px;
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.avh-testimonial::before {
	content: '"';
	position: absolute;
	top: 20px;
	right: 24px;
	font-size: 4rem;
	font-family: Georgia, serif;
	color: rgba(126, 91, 255, 0.2);
	line-height: 1;
}

.avh-testimonial-text {
	color: var(--avh-text-secondary);
	font-size: 1rem;
	line-height: 1.8;
	margin-bottom: 24px;
	font-style: italic;
}

.avh-testimonial-author {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-direction: column;
	text-align: center;
	margin-top: auto;
}

.avh-testimonial-avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--avh-bg-tertiary);
	overflow: hidden;
	border: 2px solid var(--avh-accent-purple);
}

.avh-testimonial-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.avh-testimonial-info h4 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 4px;
}

.avh-testimonial-info span {
	font-size: 0.875rem;
	color: var(--avh-text-muted);
}

/* ----------------------------------------
   Form Styles
   ---------------------------------------- */
.avh-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.avh-form-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.avh-form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.avh-form-label {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--avh-text-primary);
}

.avh-form-label span {
	color: var(--avh-accent-purple);
}

.avh-form-input,
.avh-form-textarea {
	width: 100%;
	padding: 14px 18px;
	font-size: 1rem;
	color: var(--avh-text-primary);
	background: var(--avh-bg-tertiary);
	border: 1px solid var(--avh-divider);
	border-radius: var(--avh-radius-md);
	transition: var(--avh-transition);
	outline: none;
}

.avh-form-input::placeholder,
.avh-form-textarea::placeholder {
	color: var(--avh-text-muted);
}

.avh-form-input:focus,
.avh-form-textarea:focus {
	border-color: var(--avh-accent-purple);
	box-shadow: 0 0 0 3px rgba(126, 91, 255, 0.15);
}

.avh-form-input:invalid:not(:placeholder-shown),
.avh-form-textarea:invalid:not(:placeholder-shown) {
	border-color: #ff5b5b;
}

.avh-form-textarea {
	min-height: 150px;
	resize: vertical;
}

.avh-form-submit {
	width: 100%;
	margin-top: 8px;
}

/* ----------------------------------------
   Map Container
   ---------------------------------------- */
.avh-map-container {
	border-radius: var(--avh-radius-lg);
	overflow: hidden;
	border: 1px solid var(--avh-divider);
	height: 100%;
	min-height: 400px;
}

.avh-map {
	height: 100%;
	min-height: 400px;
	filter: grayscale(100%) invert(92%) contrast(90%);

	width: 100%;
	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.avh-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.avh-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	/* border-radius: 10px; */
	/* overflow: hidden; */
}

.avh-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;
}

/* ----------------------------------------
   Contact Info
   ---------------------------------------- */
.avh-contact-info {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.avh-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px;
	background: var(--avh-bg-secondary);
	border: 1px solid var(--avh-divider);
	border-radius: var(--avh-radius-md);
	transition: var(--avh-transition);
}

.avh-contact-item:hover {
	border-color: rgba(126, 91, 255, 0.3);
}

.avh-contact-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(126, 91, 255, 0.1);
	border-radius: var(--avh-radius-md);
	flex-shrink: 0;
}

.avh-contact-icon i {
	font-size: 1.1rem;
	color: var(--avh-accent-purple);
}

.avh-contact-details h4 {
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 4px;
	color: var(--avh-text-secondary);
}

.avh-contact-details p,
.avh-contact-details a {
	font-size: 1rem;
	color: var(--avh-text-primary);
}

.avh-contact-details a:hover {
	color: var(--avh-accent-purple);
}

/* ----------------------------------------
   Footer Styles
   ---------------------------------------- */
.avh-footer {
	background: var(--avh-bg-secondary);
	border-top: 1px solid var(--avh-divider);
	padding: 80px 0 0;
}

.avh-footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 60px;
}

.avh-footer-brand p {
	color: var(--avh-text-secondary);
	margin-top: 20px;
	line-height: 1.8;
}

.avh-footer-title {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 24px;
	color: var(--avh-heading);
}

.avh-footer-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.avh-footer-link {
	color: var(--avh-text-secondary);
	font-size: 0.95rem;
	transition: var(--avh-transition);
}

.avh-footer-link:hover {
	color: var(--avh-accent-purple);
	padding-left: 8px;
}

.avh-footer-contact {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.avh-footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: var(--avh-text-secondary);
	font-size: 0.95rem;
}

.avh-footer-contact-item i {
	color: var(--avh-accent-teal);
	margin-top: 4px;
}

.avh-footer-bottom {
	padding: 24px 0;
	border-top: 1px solid var(--avh-divider);

	text-align: center;
	gap: 16px;
}

.avh-footer-copyright {
	color: var(--avh-text-muted);
	font-size: 0.9rem;
}

.avh-footer-social {
	display: flex;
	gap: 12px;
}

.avh-footer-social a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.05);
	border-radius: var(--avh-radius-md);
	color: var(--avh-text-secondary);
	transition: var(--avh-transition);
}

.avh-footer-social a:hover {
	background: var(--avh-accent-purple);
	color: var(--avh-heading);
}

/* ----------------------------------------
   Cookie Popup
   ---------------------------------------- */
.avh-cookie-popup {
	position: fixed;
	bottom: 24px;
	left: 24px;
	right: 24px;
	max-width: 480px;
	background: var(--avh-bg-secondary);
	border: 1px solid var(--avh-divider);
	border-radius: var(--avh-radius-lg);
	padding: 24px;
	z-index: 3000;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	display: none;
	animation: avh-slide-up 0.4s ease-out;
}

.avh-cookie-popup.avh-visible {
	display: block;
}

.avh-cookie-popup h4 {
	font-size: 1.1rem;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.avh-cookie-popup h4 i {
	color: var(--avh-accent-teal);
}

.avh-cookie-popup p {
	color: var(--avh-text-secondary);
	font-size: 0.9rem;
	margin-bottom: 20px;
	line-height: 1.7;
}

.avh-cookie-popup a {
	color: var(--avh-accent-purple);
}

.avh-cookie-popup a:hover {
	text-decoration: underline;
}

.avh-cookie-buttons {
	display: flex;
	gap: 12px;
}

/* ----------------------------------------
   Accordion Styles
   ---------------------------------------- */
.avh-accordion {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.avh-accordion-item {
	background: var(--avh-bg-secondary);
	border: 1px solid var(--avh-divider);
	border-radius: var(--avh-radius-md);
	overflow: hidden;
	transition: var(--avh-transition);
}

.avh-accordion-item.avh-active {
	border-color: rgba(126, 91, 255, 0.3);
}

.avh-accordion-header {
	width: 100%;
	padding: 20px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 1.05rem;
	font-weight: 500;
	color: var(--avh-text-primary);
	text-align: left;
	transition: var(--avh-transition);
}

.avh-accordion-header:hover {
	color: var(--avh-accent-purple);
}

.avh-accordion-header i {
	transition: transform 0.3s ease;
}

.avh-accordion-item.avh-active .avh-accordion-header i {
	transform: rotate(180deg);
}

.avh-accordion-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.avh-accordion-item.avh-active .avh-accordion-body {
	max-height: 2000px;
}

.avh-accordion-content {
	padding: 1rem 24px 24px;
	color: var(--avh-text-secondary);
	line-height: 1.8;
}

/* ----------------------------------------
   Page Headers
   ---------------------------------------- */
.avh-page-header {
	padding: 160px 0 80px;
	position: relative;
	overflow: hidden;
}

.avh-page-header-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.avh-page-header-bg::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		180deg,
		var(--avh-bg-primary) 0%,
		rgba(12, 14, 17, 0.8) 100%
	);
}

.avh-page-header-content {
	position: relative;
	z-index: 10;
	text-align: center;
}

.avh-page-header-title {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	margin-bottom: 20px;
}

.avh-page-header-desc {
	font-size: 1.15rem;
	color: var(--avh-text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

.avh-breadcrumb {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 24px;
	font-size: 0.9rem;
}

.avh-breadcrumb a {
	color: var(--avh-text-muted);
}

.avh-breadcrumb a:hover {
	color: var(--avh-accent-purple);
}

.avh-breadcrumb span {
	color: var(--avh-text-secondary);
}

.avh-breadcrumb i {
	color: var(--avh-text-muted);
	font-size: 0.7rem;
}

/* ----------------------------------------
   Article Styles
   ---------------------------------------- */
.avh-article {
	background: var(--avh-bg-secondary);
	border: 1px solid var(--avh-divider);
	border-radius: var(--avh-radius-lg);
	overflow: hidden;
	transition: var(--avh-transition);
}

.avh-article:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.avh-article-img {
	width: 100%;
	height: 220px;
	background: var(--avh-bg-tertiary);
	overflow: hidden;
}

.avh-article-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.avh-article:hover .avh-article-img img {
	transform: scale(1.05);
}

.avh-article-content {
	padding: 28px;
}

.avh-article-meta {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
	font-size: 0.85rem;
	color: var(--avh-text-muted);
}

.avh-article-meta span {
	display: flex;
	align-items: center;
	gap: 6px;
}

.avh-article-meta i {
	color: var(--avh-accent-teal);
}

.avh-article-title {
	font-size: 1.25rem;
	margin-bottom: 12px;
	transition: var(--avh-transition);
}

.avh-article:hover .avh-article-title {
	color: var(--avh-accent-purple);
}

.avh-article-excerpt {
	color: var(--avh-text-secondary);
	font-size: 0.95rem;
	line-height: 1.7;
	margin-bottom: 20px;
}

.avh-article-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--avh-accent-purple);
}

.avh-article-link:hover {
	gap: 12px;
}

/* ----------------------------------------
   Stats Section
   ---------------------------------------- */
.avh-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	padding: 60px 40px;
	background: var(--avh-bg-secondary);
	border: 1px solid var(--avh-divider);
	border-radius: var(--avh-radius-lg);
}

.avh-stat {
	text-align: center;
}

.avh-stat-number {
	font-family: var(--avh-font-heading);
	font-size: 3rem;
	font-weight: 700;
	background: var(--avh-gradient-mixed);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 8px;
}

.avh-stat-label {
	font-size: 0.95rem;
	color: var(--avh-text-secondary);
}

/* ----------------------------------------
   Timeline Styles
   ---------------------------------------- */
.avh-timeline {
	position: relative;
	padding-left: 40px;
}

.avh-timeline::before {
	content: '';
	position: absolute;
	top: 0;
	left: 15px;
	width: 2px;
	height: 100%;
	background: var(--avh-divider);
}

.avh-timeline-item {
	position: relative;
	padding-bottom: 40px;
}

.avh-timeline-item:last-child {
	padding-bottom: 0;
}

.avh-timeline-dot {
	position: absolute;
	top: 0;
	left: -32px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--avh-accent-purple);
	border: 3px solid var(--avh-bg-primary);
}

.avh-timeline-content {
	background: var(--avh-bg-secondary);
	border: 1px solid var(--avh-divider);
	border-radius: var(--avh-radius-md);
	padding: 24px;
}

.avh-timeline-date {
	font-size: 0.85rem;
	color: var(--avh-accent-teal);
	font-weight: 600;
	margin-bottom: 8px;
}

.avh-timeline-title {
	font-size: 1.15rem;
	margin-bottom: 12px;
}

.avh-timeline-text {
	color: var(--avh-text-secondary);
	font-size: 0.95rem;
}

/* ----------------------------------------
   Charts Container
   ---------------------------------------- */
.avh-chart-container {
	background: var(--avh-bg-secondary);
	border: 1px solid var(--avh-divider);
	border-radius: var(--avh-radius-lg);
	padding: 32px;
}

.avh-chart-header {
	margin-bottom: 24px;
}

.avh-chart-title {
	font-size: 1.25rem;
	margin-bottom: 8px;
}

.avh-chart-desc {
	color: var(--avh-text-secondary);
	font-size: 0.9rem;
}

.avh-chart-canvas {
	width: 100%;
	max-height: 400px;
}

/* ----------------------------------------
   Feature List
   ---------------------------------------- */
.avh-feature-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.avh-feature-item {
	display: flex;
	gap: 20px;
	padding: 24px;
	background: var(--avh-bg-secondary);
	border: 1px solid var(--avh-divider);
	border-radius: var(--avh-radius-md);
	transition: var(--avh-transition);
}

.avh-feature-item:hover {
	border-color: rgba(29, 221, 191, 0.3);
}

.avh-feature-number {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(29, 221, 191, 0.1);
	border-radius: var(--avh-radius-md);
	font-family: var(--avh-font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--avh-accent-teal);
	flex-shrink: 0;
}

.avh-feature-content h4 {
	font-size: 1.1rem;
	margin-bottom: 8px;
}

.avh-feature-content p {
	color: var(--avh-text-secondary);
	font-size: 0.95rem;
}

/* ----------------------------------------
   Quote Block
   ---------------------------------------- */
.avh-quote {
	position: relative;
	padding: 40px;
	background: var(--avh-bg-secondary);
	border-left: 4px solid var(--avh-accent-purple);
	border-radius: 0 var(--avh-radius-lg) var(--avh-radius-lg) 0;
}

.avh-quote::before {
	content: '"';
	position: absolute;
	top: 20px;
	left: 20px;
	font-size: 4rem;
	font-family: Georgia, serif;
	color: rgba(126, 91, 255, 0.2);
	line-height: 1;
}

.avh-quote p {
	font-size: 1.25rem;
	font-style: italic;
	color: var(--avh-text-primary);
	line-height: 1.8;
	margin-bottom: 20px;
	padding-left: 40px;
}

.avh-quote-author {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-left: 40px;
	color: var(--avh-text-secondary);
	font-size: 0.95rem;
}

.avh-quote-author span {
	color: var(--avh-accent-teal);
	font-weight: 600;
}

/* ----------------------------------------
   Legal Pages
   ---------------------------------------- */
.avh-legal-content {
	background: var(--avh-bg-secondary);
	border: 1px solid var(--avh-divider);
	border-radius: var(--avh-radius-lg);
	padding: 48px;
}

.avh-legal-content h2 {
	font-size: 1.5rem;
	margin: 40px 0 20px;
	padding-top: 40px;
	border-top: 1px solid var(--avh-divider);
}

.avh-legal-content h2:first-child {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

.avh-legal-content h3 {
	font-size: 1.2rem;
	margin: 30px 0 15px;
}

.avh-legal-content p {
	color: var(--avh-text-secondary);
	margin-bottom: 16px;
	line-height: 1.8;
}

.avh-legal-content ul {
	margin: 20px 0;
	padding-left: 24px;
}

.avh-legal-content li {
	color: var(--avh-text-secondary);
	margin-bottom: 12px;
	position: relative;
	padding-left: 20px;
}

.avh-legal-content li::before {
	content: '';
	position: absolute;
	top: 10px;
	left: 0;
	width: 6px;
	height: 6px;
	background: var(--avh-accent-purple);
	border-radius: 50%;
}

/* ----------------------------------------
   Animations
   ---------------------------------------- */
@keyframes avh-fade-in {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes avh-slide-in-left {
	from {
		opacity: 0;
		transform: translateX(-40px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes avh-slide-in-right {
	from {
		opacity: 0;
		transform: translateX(40px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes avh-slide-up {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes avh-glow-pulse {
	0%,
	100% {
		box-shadow: 0 0 20px rgba(126, 91, 255, 0.3);
	}
	50% {
		box-shadow: 0 0 40px rgba(126, 91, 255, 0.5);
	}
}

@keyframes avh-float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

.avh-animate-fade-in {
	animation: avh-fade-in 0.6s ease-out forwards;
}

.avh-animate-slide-left {
	animation: avh-slide-in-left 0.6s ease-out forwards;
}

.avh-animate-slide-right {
	animation: avh-slide-in-right 0.6s ease-out forwards;
}

.avh-animate-glow {
	animation: avh-glow-pulse 3s ease-in-out infinite;
}

.avh-animate-float {
	animation: avh-float 4s ease-in-out infinite;
}

.avh-delay-1 {
	animation-delay: 0.1s;
}
.avh-delay-2 {
	animation-delay: 0.2s;
}
.avh-delay-3 {
	animation-delay: 0.3s;
}
.avh-delay-4 {
	animation-delay: 0.4s;
}
.avh-delay-5 {
	animation-delay: 0.5s;
}

/* Scroll animations */
.avh-reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.avh-reveal.avh-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ----------------------------------------
   Utility Classes
   ---------------------------------------- */
.avh-mb-0 {
	margin-bottom: 0;
}
.avh-mb-1 {
	margin-bottom: 8px;
}
.avh-mb-2 {
	margin-bottom: 16px;
}
.avh-mb-3 {
	margin-bottom: 24px;
}
.avh-mb-4 {
	margin-bottom: 32px;
}
.avh-mb-5 {
	margin-bottom: 48px;
}

.avh-mt-0 {
	margin-top: 0;
}
.avh-mt-1 {
	margin-top: 8px;
}
.avh-mt-2 {
	margin-top: 16px;
}
.avh-mt-3 {
	margin-top: 24px;
}
.avh-mt-4 {
	margin-top: 32px;
}
.avh-mt-5 {
	margin-top: 48px;
}

.avh-pt-0 {
	padding-top: 0;
}
.avh-pb-0 {
	padding-bottom: 0;
}

.avh-text-center {
	text-align: center;
}
.avh-text-left {
	text-align: left;
}
.avh-text-right {
	text-align: right;
}

.avh-hidden {
	display: none;
}
.avh-block {
	display: block;
}

/* ----------------------------------------
   Print Styles
   ---------------------------------------- */
@media print {
	.avh-header,
	.avh-footer,
	.avh-cookie-popup,
	.avh-sidebar,
	.avh-sidebar-overlay {
		display: none !important;
	}

	body {
		background: white;
		color: black;
	}

	.avh-section {
		padding: 20px 0;
	}
}

/* ----------------------------------------
   Carousel Styles
   ---------------------------------------- */
.avh-carousel {
	position: relative;
	overflow: hidden;
}

.avh-carousel-track {
	display: flex;
	transition: transform 0.5s ease;
}

.avh-carousel-slide {
	flex: 0 0 100%;
	padding: 0 16px;
}

.avh-carousel-nav {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 32px;
}

.avh-carousel-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--avh-divider);
	transition: var(--avh-transition);
	cursor: pointer;
}

.avh-carousel-dot.avh-active {
	background: var(--avh-accent-purple);
	width: 32px;
	border-radius: 6px;
}

.avh-carousel-arrows {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	padding: 0 -20px;
	pointer-events: none;
}

.avh-carousel-arrow {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--avh-bg-secondary);
	border: 1px solid var(--avh-divider);
	border-radius: 50%;
	color: var(--avh-text-primary);
	cursor: pointer;
	pointer-events: auto;
	transition: var(--avh-transition);
}

.avh-carousel-arrow:hover {
	background: var(--avh-accent-purple);
	border-color: var(--avh-accent-purple);
}

/* ----------------------------------------
   Comparison Cards
   ---------------------------------------- */
.avh-comparison {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

.avh-comparison-card {
	background: var(--avh-bg-secondary);
	border: 1px solid var(--avh-divider);
	border-radius: var(--avh-radius-lg);
	padding: 32px;
	position: relative;
	overflow: hidden;
}

.avh-comparison-card.avh-featured {
	border-color: var(--avh-accent-purple);
}

.avh-comparison-card.avh-featured::before {
	content: 'Recommended';
	position: absolute;
	top: 24px;
	right: -48px;
	background: var(--avh-accent-purple);
	color: var(--avh-heading);
	font-size: 0.75rem;
	font-weight: 600;
	padding: 4px 40px;
	transform: rotate(45deg);
}

.avh-comparison-header {
	text-align: center;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--avh-divider);
	margin-bottom: 24px;
}

.avh-comparison-title {
	font-size: 1.5rem;
	margin-bottom: 8px;
}

.avh-comparison-desc {
	color: var(--avh-text-secondary);
	font-size: 0.9rem;
}

.avh-comparison-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.avh-comparison-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 0.95rem;
	color: var(--avh-text-secondary);
}

.avh-comparison-item i {
	margin-top: 3px;
}

.avh-comparison-item i.fa-check {
	color: var(--avh-accent-teal);
}

.avh-comparison-item i.fa-times {
	color: #ff5b5b;
}

/* ----------------------------------------
   Progress Indicators
   ---------------------------------------- */
.avh-progress {
	width: 100%;
	height: 8px;
	background: var(--avh-divider);
	border-radius: 4px;
	overflow: hidden;
}

.avh-progress-bar {
	height: 100%;
	background: var(--avh-gradient-mixed);
	border-radius: 4px;
	transition: width 0.5s ease;
}

.avh-progress-label {
	display: flex;
	justify-content: space-between;
	margin-bottom: 8px;
	font-size: 0.9rem;
}

.avh-progress-label span:first-child {
	color: var(--avh-text-primary);
}

.avh-progress-label span:last-child {
	color: var(--avh-accent-teal);
	font-weight: 600;
}

/* ----------------------------------------
   Mosaic Grid
   ---------------------------------------- */
.avh-mosaic {
	display: grid;
	grid-template-columns: repeat(6, 1fr);

	gap: 24px;
}

#avh-inflation-chart,
#avh-rand-chart,
#avh-scatter-chart,
#avh-allocation-chart {
	width: 100% !important;
	height: 100% !important;
	max-height: 400px !important;
}

.avh-mosaic-item {
	background: var(--avh-bg-secondary);
	border: 1px solid var(--avh-divider);
	border-radius: var(--avh-radius-lg);
	padding: 32px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
	overflow: hidden;
	transition: var(--avh-transition);
}

.avh-mosaic-item:hover {
	border-color: rgba(126, 91, 255, 0.3);
	transform: translateY(-4px);
}

.avh-mosaic-item.avh-large {
	grid-column: span 3;
}

.avh-mosaic-item.avh-medium {
	grid-column: span 2;
}

.avh-mosaic-item.avh-small {
	grid-column: span 2;
}

.avh-mosaic-icon {
	width: 56px;
	height: 56px;
	flex-shrink: 0;
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(126, 91, 255, 0.1);
	border-radius: var(--avh-radius-md);
}

.avh-mosaic-icon i {
	font-size: 1.25rem;
	color: var(--avh-accent-purple);
}

.avh-mosaic-title {
	font-size: 1.25rem;
	margin-bottom: 8px;
}

.avh-mosaic-text {
	color: var(--avh-text-secondary);
	font-size: 0.9rem;
}

@media (max-width: 992px) {
	.avh-mosaic {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}

	.avh-mosaic-item.avh-large,
	.avh-mosaic-item.avh-medium,
	.avh-mosaic-item.avh-small {
		grid-column: span 1;
	}

	.avh-comparison {
		grid-template-columns: 1fr;
	}
}

/* ----------------------------------------
   Skill Bars
   ---------------------------------------- */
.avh-skills {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.avh-skill {
	background: var(--avh-bg-secondary);
	border: 1px solid var(--avh-divider);
	border-radius: var(--avh-radius-md);
	padding: 20px;
}

.avh-skill-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}

.avh-skill-name {
	font-weight: 500;
	color: var(--avh-text-primary);
}

.avh-skill-value {
	font-weight: 600;
	color: var(--avh-accent-teal);
}

/* ----------------------------------------
   Notification Badge
   ---------------------------------------- */
.avh-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 12px;
	font-size: 0.75rem;
	font-weight: 600;
	border-radius: var(--avh-radius-xl);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.avh-badge-purple {
	background: rgba(126, 91, 255, 0.15);
	color: var(--avh-accent-purple);
}

.avh-badge-teal {
	background: rgba(29, 221, 191, 0.15);
	color: var(--avh-accent-teal);
}

.avh-badge-warning {
	background: rgba(255, 183, 77, 0.15);
	color: #ffb74d;
}

/* ----------------------------------------
   Dividers
   ---------------------------------------- */
.avh-divider {
	width: 100%;
	height: 1px;
	background: var(--avh-divider);
	margin: 40px 0;
}

.avh-divider-gradient {
	background: var(--avh-gradient-mixed);
	height: 2px;
}

.avh-divider-vertical {
	width: 1px;
	height: 100%;
	background: var(--avh-divider);
}

/* ----------------------------------------
   Tooltips
   ---------------------------------------- */
.avh-tooltip {
	position: relative;
}

.avh-tooltip::after {
	content: attr(data-tooltip);
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	padding: 8px 14px;
	background: var(--avh-bg-tertiary);
	border: 1px solid var(--avh-divider);
	border-radius: var(--avh-radius-sm);
	font-size: 0.8rem;
	color: var(--avh-text-primary);
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: var(--avh-transition);
	z-index: 100;
	margin-bottom: 8px;
}

.avh-tooltip:hover::after {
	opacity: 1;
	visibility: visible;
}

/* ----------------------------------------
   Scrollbar Styles
   ---------------------------------------- */
::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

::-webkit-scrollbar-track {
	background: var(--avh-bg-secondary);
}

::-webkit-scrollbar-thumb {
	background: var(--avh-divider);
	border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--avh-accent-purple);
}

/* Firefox */
* {
	scrollbar-width: thin;
	scrollbar-color: var(--avh-divider) var(--avh-bg-secondary);
}

/* ----------------------------------------
   Selection Styles
   ---------------------------------------- */
::selection {
	background: rgba(126, 91, 255, 0.3);
	color: var(--avh-heading);
}

::-moz-selection {
	background: rgba(126, 91, 255, 0.3);
	color: var(--avh-heading);
}

/* ----------------------------------------
   Focus States
   ---------------------------------------- */
:focus-visible {
	outline: 2px solid var(--avh-accent-purple);
	outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--avh-accent-purple);
	outline-offset: 2px;
}

/* ----------------------------------------
   Loading States
   ---------------------------------------- */
.avh-loading {
	position: relative;
	pointer-events: none;
}

.avh-loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 24px;
	height: 24px;
	margin: -12px 0 0 -12px;
	border: 3px solid var(--avh-divider);
	border-top-color: var(--avh-accent-purple);
	border-radius: 50%;
	animation: avh-spin 0.8s linear infinite;
}

@keyframes avh-spin {
	to {
		transform: rotate(360deg);
	}
}

/* ----------------------------------------
   Hover Effects
   ---------------------------------------- */
.avh-hover-glow:hover {
	box-shadow: var(--avh-shadow-purple);
}

.avh-hover-lift:hover {
	transform: translateY(-4px);
}

.avh-hover-scale:hover {
	transform: scale(1.02);
}

/* ----------------------------------------
   Two Column Layout
   ---------------------------------------- */
.avh-two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

.avh-two-col-reversed {
	direction: rtl;
}

.avh-two-col-reversed > * {
	direction: ltr;
}

@media (max-width: 992px) {
	.avh-two-col {
		grid-template-columns: 1fr;
	}

	.avh-two-col-reversed {
		direction: ltr;
	}
}

/* ----------------------------------------
   Sticky Elements
   ---------------------------------------- */
.avh-sticky {
	position: sticky;
	top: 120px;
}

/* ----------------------------------------
   Image Overlays
   ---------------------------------------- */
.avh-img-overlay {
	position: relative;
}

.avh-img-overlay::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		180deg,
		transparent 0%,
		var(--avh-bg-primary) 100%
	);
}

/* ----------------------------------------
   Additional Spacing Utilities
   ---------------------------------------- */
.avh-py-1 {
	padding-top: 8px;
	padding-bottom: 8px;
}
.avh-py-2 {
	padding-top: 16px;
	padding-bottom: 16px;
}
.avh-py-3 {
	padding-top: 24px;
	padding-bottom: 24px;
}
.avh-py-4 {
	padding-top: 32px;
	padding-bottom: 32px;
}
.avh-py-5 {
	padding-top: 48px;
	padding-bottom: 48px;
}

.avh-px-1 {
	padding-left: 8px;
	padding-right: 8px;
}
.avh-px-2 {
	padding-left: 16px;
	padding-right: 16px;
}
.avh-px-3 {
	padding-left: 24px;
	padding-right: 24px;
}
.avh-px-4 {
	padding-left: 32px;
	padding-right: 32px;
}
.avh-px-5 {
	padding-left: 48px;
	padding-right: 48px;
}

/* ----------------------------------------
   List Styles
   ---------------------------------------- */
.avh-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.avh-list-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 16px;
	background: var(--avh-bg-secondary);
	border: 1px solid var(--avh-divider);
	border-radius: var(--avh-radius-md);
}

.avh-list-item i {
	color: var(--avh-accent-teal);
	margin-top: 3px;
}

.avh-list-inline {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

/* ----------------------------------------
   Tag Clouds
   ---------------------------------------- */
.avh-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.avh-tag {
	padding: 6px 14px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--avh-divider);
	border-radius: var(--avh-radius-xl);
	font-size: 0.85rem;
	color: var(--avh-text-secondary);
	transition: var(--avh-transition);
}

.avh-tag:hover {
	background: rgba(126, 91, 255, 0.1);
	border-color: var(--avh-accent-purple);
	color: var(--avh-accent-purple);
}

/* ----------------------------------------
   Aspect Ratios
   ---------------------------------------- */
.avh-aspect-16-9 {
	aspect-ratio: 16/9;
}

.avh-aspect-4-3 {
	aspect-ratio: 4/3;
}

.avh-aspect-1-1 {
	aspect-ratio: 1/1;
}

/* ----------------------------------------
   Object Fit
   ---------------------------------------- */
.avh-cover {
	object-fit: cover;
}

.avh-contain {
	object-fit: contain;
}

/* ----------------------------------------
   Responsive Styles
   ---------------------------------------- */
@media (max-width: 1200px) {
	.avh-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.avh-footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.avh-stats {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 992px) {
	.avh-nav {
		display: none;
	}

	.avh-menu-btn {
		display: flex;
	}

	.avh-grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.avh-testimonials {
		grid-template-columns: 1fr;
	}

	.avh-hero-content {
		text-align: center;
	}

	.avh-hero-buttons {
		justify-content: center;
	}

	.avh-section {
		padding: 80px 0;
	}

	.avh-hero-subtitle {
		margin: 2rem auto;
	}
}

@media (max-width: 768px) {
	html {
		font-size: 15px;
	}

	.avh-header {
		top: 12px;
		width: calc(100% - 24px);
		padding: 12px 20px;
	}

	.avh-grid-2,
	.avh-grid-3,
	.avh-grid-4 {
		grid-template-columns: 1fr;
	}

	.avh-form-row {
		grid-template-columns: 1fr;
	}

	.avh-footer-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.avh-footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	.avh-stats {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 40px 24px;
	}

	.avh-stat-number {
		font-size: 2.5rem;
	}

	.avh-tabs-nav {
		flex-direction: column;
	}

	.avh-tab-btn {
		min-width: auto;
	}

	.avh-tab-panel {
		padding: 24px;
	}

	.avh-section {
		padding: 60px 0;
	}

	.avh-container {
		padding: 0 16px;
	}

	.avh-card {
		padding: 24px;
	}

	.avh-info-block {
		padding: 24px;
	}

	.avh-legal-content {
		padding: 24px;
	}

	.avh-cookie-popup {
		left: 12px;
		right: 12px;
		bottom: 12px;
	}

	.avh-cookie-buttons {
		flex-direction: column;
	}

	.avh-hero {
		min-height: auto;
		padding: 140px 0 80px;
	}

	.avh-page-header {
		padding: 140px 0 60px;
	}
}

@media (max-width: 480px) {
	.avh-hero-title {
		font-size: 2rem;
	}

	.avh-section-title {
		font-size: 1.75rem;
	}

	.avh-hero-buttons {
		flex-direction: column;
		width: 100%;
	}

	.avh-btn {
		width: 100%;
	}

	.avh-feature-item {
		flex-direction: column;
	}

	.avh-timeline {
		padding-left: 30px;
	}

	.avh-timeline::before {
		left: 10px;
	}

	.avh-timeline-dot {
		left: -25px;
		width: 12px;
		height: 12px;
	}
}

:root {
	--avh-legal-bg-primary: #0c0e11;
	--avh-legal-bg-panel: #15181e;
	--avh-legal-accent-purple: #7e5bff;
	--avh-legal-accent-teal: #1dddbf;
	--avh-legal-text-primary: #f3f3f5;
	--avh-legal-text-secondary: #9ea2a9;
	--avh-legal-divider: #252931;
	--avh-legal-heading: #ffffff;
}

.avh-legal-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 120px 20px;
	min-height: 100vh;
}

/* Content Panel */
.avh-legal-content {
	background-color: var(--avh-legal-bg-panel);
	border-radius: 12px;
	padding: 48px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
	border: 1px solid var(--avh-legal-divider);
}

/* Main Title */
.avh-legal-title {
	font-size: 42px;
	font-weight: 700;
	color: var(--avh-legal-heading);
	margin: 0 0 12px 0;
	letter-spacing: -0.5px;
	background: linear-gradient(
		135deg,
		var(--avh-legal-accent-purple),
		var(--avh-legal-accent-teal)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Updated Date */
.avh-legal-updated {
	font-size: 14px;
	color: var(--avh-legal-text-secondary);
	margin: 0 0 36px 0;
	font-style: italic;
	padding-bottom: 24px;
	border-bottom: 2px solid var(--avh-legal-divider);
}

/* Section */
.avh-legal-section {
	margin-bottom: 40px;
}

.avh-legal-section:last-child {
	margin-bottom: 0;
}

/* Section Headings */
.avh-legal-heading {
	font-size: 26px;
	font-weight: 600;
	color: var(--avh-legal-heading);
	margin: 0 0 16px 0;
	position: relative;
	padding-left: 18px;
}

.avh-legal-heading::before {
	content: '';
	position: absolute;
	left: 0;
	top: 6px;
	width: 4px;
	height: 20px;
	background: linear-gradient(
		180deg,
		var(--avh-legal-accent-purple),
		var(--avh-legal-accent-teal)
	);
	border-radius: 2px;
}

/* Paragraph Text */
.avh-legal-text {
	font-size: 16px;
	line-height: 1.8;
	color: var(--avh-legal-text-primary);
	margin: 0 0 16px 0;
	text-align: justify;
}

.avh-legal-text:last-child {
	margin-bottom: 0;
}

/* Contact Information */
.avh-legal-contact {
	background-color: var(--avh-legal-bg-primary);
	border-left: 3px solid var(--avh-legal-accent-teal);
	padding: 20px 24px;
	margin: 24px 0;
	border-radius: 6px;
}

.avh-legal-contact-item {
	font-size: 15px;
	color: var(--avh-legal-text-primary);
	margin: 8px 0;
	line-height: 1.6;
}

.avh-legal-contact-item strong {
	color: var(--avh-legal-accent-teal);
	font-weight: 600;
	margin-right: 8px;
}

/* Strong/Bold Text */
.avh-legal-text strong {
	color: var(--avh-legal-heading);
	font-weight: 600;
}

/* Links */
.avh-legal-text a,
.avh-legal-section a {
	color: var(--avh-legal-accent-purple);
	text-decoration: none;
	transition: color 0.2s ease;
	border-bottom: 1px solid transparent;
}

.avh-legal-text a:hover,
.avh-legal-section a:hover {
	color: var(--avh-legal-accent-teal);
	border-bottom-color: var(--avh-legal-accent-teal);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
	.avh-legal-content {
		padding: 32px 24px;
		border-radius: 8px;
	}

	.avh-legal-title {
		font-size: 32px;
	}

	.avh-legal-heading {
		font-size: 22px;
	}

	.avh-legal-text {
		font-size: 15px;
		text-align: left;
	}

	.avh-legal-contact {
		padding: 16px 18px;
	}
}

@media screen and (max-width: 480px) {
	.avh-legal-content {
		padding: 24px 18px;
	}

	.avh-legal-title {
		font-size: 1.3rem;
	}

	.avh-legal-heading {
		font-size: 20px;
		padding-left: 14px;
	}

	.avh-legal-heading::before {
		width: 3px;
		height: 18px;
	}

	.avh-legal-section {
		margin-bottom: 32px;
	}
}
