:root {
	--avx-bg:          #0A1628;
	--avx-bg-alt:      #0F1E35;
	--avx-bg-card:     #132240;
	--avx-bg-elevated: #1B3154;
	--avx-bg-light:    #F4F6F9;
	--avx-bg-white:    #FFFFFF;
	--avx-primary:     #1B3A5C;
	--avx-gold:        #C9A84C;
	--avx-gold-hover:  #B8943E;
	--avx-silver:      #A8B8CC;
	--avx-text-heading: #E2E8F0;
	--avx-text-body:    #C8D6E5;
	--avx-text-muted:   #8FABC4;
	--avx-text-dark:    #0A1628;
	--avx-text-gray:    #4A5568;
	--avx-text-light-muted: #718096;
	--avx-border-dark:  #1E3A5A;
	--avx-border-light: #D1D9E6;
	--avx-success:     #2A9D5C;
	--avx-radius:      4px;
	--avx-radius-card: 6px;
	--avx-shadow:      0 4px 24px rgba(0, 0, 0, 0.4);
	--avx-shadow-card: 0 2px 12px rgba(0, 0, 0, 0.3);
}

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

html {
	scroll-behavior: smooth;
}

body {
	background-color: #0A1628;
	color: #C8D6E5;
	font-family: Inter, 'Segoe UI', system-ui, -apple-system, sans-serif;
	font-size: 17px;
	line-height: 1.65;
	letter-spacing: 0;
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-family: Inter, 'Segoe UI', system-ui, -apple-system, sans-serif;
	color: #E2E8F0;
	margin-top: 0;
}

h1.avx-hero-h1 {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.5px;
}

h1.avx-page-h1 {
	font-size: 42px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.3px;
}

h2 {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.2px;
}

h3 {
	font-size: 22px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0;
}

h4 {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.5px;
}

p {
	font-size: 17px;
	line-height: 1.65;
	color: #C8D6E5;
}

.avx-overline {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #C9A84C;
	display: block;
	margin-bottom: 16px;
}

.avx-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.avx-section {
	padding: 80px 0;
}

.avx-section-mini {
	padding: 60px 0;
}

.avx-section-dark {
	background-color: #0A1628;
}

.avx-section-alt {
	background-color: #0F1E35;
}

.avx-section-card {
	background-color: #132240;
}

.avx-section-light {
	background-color: #F4F6F9;
}

.avx-section-light h2,
.avx-section-light h3,
.avx-section-light h4 {
	color: #0A1628;
}

.avx-section-light p {
	color: #4A5568;
}

.avx-section-light .avx-text-muted {
	color: #718096;
}

.avx-section-cta {
	background-color: #132240;
}

.avx-btn-gold {
	display: inline-block;
	background-color: #C9A84C;
	color: #0A1628;
	border: none;
	border-radius: 4px;
	padding: 12px 28px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.avx-btn-gold:hover {
	background-color: #B8943E;
	color: #0A1628;
	text-decoration: none;
}

.avx-btn-outline {
	display: inline-block;
	background-color: transparent;
	color: #C9A84C;
	border: 1.5px solid #C9A84C;
	border-radius: 4px;
	padding: 12px 28px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.avx-btn-outline:hover {
	background-color: rgba(201, 168, 76, 0.1);
	color: #C9A84C;
	text-decoration: none;
}

.avx-btn-ghost {
	display: inline-block;
	background-color: transparent;
	color: #E2E8F0;
	border: 1px solid #1E3A5A;
	border-radius: 4px;
	padding: 10px 22px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.avx-btn-ghost:hover {
	background-color: #C9A84C;
	color: #0A1628;
	border-color: #C9A84C;
	text-decoration: none;
}

/* NAV */
.avx-nav {
	position: sticky;
	top: 0;
	z-index: 1000;
	background-color: #0A1628;
	border-bottom: 1px solid #1E3A5A;
	height: 72px;
	display: flex;
	align-items: center;
}

.avx-nav-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.avx-nav-brand {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.avx-nav-brand img {
	height: 40px;
	width: auto;
}

.avx-nav-brand-text {
	font-size: 18px;
	font-weight: 700;
	color: #E2E8F0;
	letter-spacing: -0.2px;
	text-decoration: none;
}

.avx-nav-links {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.avx-nav-links a,
.avx-nav-links a:visited {
	font-size: 15px;
	font-weight: 500;
	color: #C8D6E5;
	text-decoration: none;
	letter-spacing: 0.2px;
	transition: color 0.15s ease;
	position: relative;
	padding-bottom: 2px;
}

.avx-nav-links a:hover,
.avx-nav-links a.avx-active {
	color: #C9A84C;
}

.avx-nav-links a.avx-active::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 2px;
	background-color: #C9A84C;
}

.avx-nav-cta {
	margin-left: 16px;
}

.avx-hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}

.avx-hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background-color: #E2E8F0;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.avx-mobile-menu {
	display: none;
	background-color: #0A1628;
	border-bottom: 1px solid #1E3A5A;
	padding: 16px 24px;
}

.avx-mobile-menu.avx-open {
	display: block;
}

.avx-mobile-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.avx-mobile-menu ul li {
	border-bottom: 1px solid #1E3A5A;
}

.avx-mobile-menu ul li a {
	display: block;
	padding: 12px 0;
	font-size: 15px;
	font-weight: 500;
	color: #C8D6E5;
	text-decoration: none;
}

.avx-mobile-menu ul li a:hover {
	color: #C9A84C;
}

.avx-mobile-menu .avx-mobile-cta {
	margin-top: 16px;
}

/* HERO */
.avx-hero {
	background-color: #0A1628;
	background-image: radial-gradient(ellipse at 50% 60%, rgba(27, 49, 84, 0.7) 0%, rgba(10, 22, 40, 0) 70%);
	padding: 120px 0 100px;
	text-align: center;
}

.avx-hero-bg {
	background-image: url('../static/media/hero-bg.webp');
	background-size: cover;
	background-position: center;
	position: relative;
}

.avx-hero-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(10, 22, 40, 0.78);
	z-index: 0;
}

.avx-hero-bg .avx-container {
	position: relative;
	z-index: 1;
}

.avx-hero-mini {
	padding: 80px 0 60px;
	background-color: #0A1628;
	background-image: radial-gradient(ellipse at 50% 80%, rgba(27, 49, 84, 0.5) 0%, rgba(10, 22, 40, 0) 65%);
}

.avx-hero-mini-bg {
	background-image: url('../static/media/portfolio-hero.webp');
	background-size: cover;
	background-position: center;
	position: relative;
}

.avx-hero-mini-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(10, 22, 40, 0.82);
	z-index: 0;
}

.avx-hero-mini-bg .avx-container {
	position: relative;
	z-index: 1;
}

.avx-hero-subtext {
	font-size: 19px;
	color: #C8D6E5;
	max-width: 680px;
	margin: 0 auto 36px;
	line-height: 1.65;
}

.avx-hero-btns {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

/* STATS BAR */
.avx-stats-bar {
	background-color: #0F1E35;
	padding: 60px 0;
}

.avx-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}

.avx-stat-item {
	text-align: center;
	padding: 24px 16px;
	border-right: 1px solid #1E3A5A;
}

.avx-stat-item:last-child {
	border-right: none;
}

.avx-stat-number {
	font-size: 36px;
	font-weight: 700;
	color: #C9A84C;
	line-height: 1.1;
	display: block;
	margin-bottom: 8px;
}

.avx-stat-label {
	font-size: 15px;
	color: #8FABC4;
	letter-spacing: 0.2px;
}

/* FEATURES / ALTERNATING */
.avx-alt-row {
	display: flex;
	align-items: center;
	gap: 60px;
	padding: 48px 0;
	border-bottom: 1px solid #D1D9E6;
}

.avx-alt-row:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.avx-alt-row:first-child {
	padding-top: 0;
}

.avx-alt-row.avx-row-reverse {
	flex-direction: row-reverse;
}

.avx-alt-text {
	flex: 1;
}

.avx-alt-visual {
	flex: 0 0 45%;
	max-width: 45%;
}

.avx-alt-visual img {
	width: 100%;
	height: auto;
	border-radius: 6px;
	display: block;
}

.avx-alt-text .avx-overline {
	color: #1B3A5C;
}

.avx-section-light .avx-alt-text .avx-overline {
	color: #1B3A5C;
}

.avx-section-light .avx-alt-text h3 {
	color: #0A1628;
}

.avx-section-light .avx-alt-text p {
	color: #4A5568;
}

/* PROCESS TIMELINE */
.avx-process-timeline {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	position: relative;
}

.avx-process-timeline::before {
	content: '';
	position: absolute;
	top: 32px;
	left: 12.5%;
	right: 12.5%;
	height: 2px;
	background: linear-gradient(to right, #C9A84C, rgba(201, 168, 76, 0.3));
	z-index: 0;
}

.avx-process-step {
	text-align: center;
	padding: 0 16px;
	position: relative;
	z-index: 1;
}

.avx-process-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background-color: #1B3154;
	border: 2px solid #C9A84C;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 22px;
	color: #C9A84C;
}

.avx-process-step h4 {
	color: #E2E8F0;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
}

.avx-process-step p {
	font-size: 15px;
	color: #8FABC4;
	line-height: 1.55;
}

/* PORTFOLIO CARDS */
.avx-portfolio-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.avx-portfolio-card {
	background-color: #132240;
	border: 1px solid #1E3A5A;
	border-radius: 6px;
	padding: 28px;
	display: flex;
	flex-direction: column;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.avx-portfolio-card:hover {
	border-color: rgba(201, 168, 76, 0.4);
	transform: translateY(-2px);
}

.avx-sector-badge {
	display: inline-block;
	background-color: rgba(201, 168, 76, 0.12);
	color: #C9A84C;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 3px;
	margin-bottom: 16px;
}

.avx-portfolio-card h3 {
	font-size: 20px;
	font-weight: 600;
	color: #E2E8F0;
	margin-bottom: 10px;
}

.avx-portfolio-card p {
	font-size: 15px;
	color: #8FABC4;
	line-height: 1.55;
	flex: 1;
}

.avx-status-badge {
	display: inline-block;
	margin-top: 16px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.4px;
	padding: 3px 8px;
	border-radius: 3px;
}

.avx-status-active {
	background-color: rgba(42, 157, 92, 0.15);
	color: #2A9D5C;
}

.avx-status-exited {
	background-color: rgba(168, 184, 204, 0.12);
	color: #A8B8CC;
}

/* TEAM CARDS */
.avx-team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.avx-team-grid-wide {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-bottom: 28px;
}

.avx-team-grid-wide-last {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
	max-width: 800px;
	margin: 0 auto;
}

.avx-team-card {
	background-color: #132240;
	border: 1px solid #1E3A5A;
	border-radius: 6px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: border-color 0.2s ease;
}

.avx-team-card:hover {
	border-color: rgba(201, 168, 76, 0.3);
}

.avx-team-photo {
	width: 100%;
	height: 240px;
	object-fit: cover;
	display: block;
}

.avx-team-body {
	padding: 24px 28px;
	flex: 1;
}

.avx-team-name {
	font-size: 20px;
	font-weight: 600;
	color: #E2E8F0;
	margin-bottom: 4px;
}

.avx-team-title {
	font-size: 13px;
	font-weight: 600;
	color: #C9A84C;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.avx-team-bio {
	font-size: 15px;
	color: #8FABC4;
	line-height: 1.55;
}

/* ADVISOR GRID */
.avx-advisor-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}

.avx-advisor-card {
	text-align: center;
	padding: 24px 16px;
	background-color: #132240;
	border: 1px solid #1E3A5A;
	border-radius: 6px;
}

.avx-advisor-photo {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
	margin: 0 auto 16px;
	border: 2px solid #1E3A5A;
}

.avx-advisor-name {
	font-size: 16px;
	font-weight: 600;
	color: #E2E8F0;
	margin-bottom: 6px;
}

.avx-advisor-title {
	font-size: 13px;
	color: #8FABC4;
	line-height: 1.4;
}

/* BLOG CARDS */
.avx-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.avx-blog-card {
	background-color: #FFFFFF;
	border: 1px solid #D1D9E6;
	border-radius: 6px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.avx-section-dark .avx-blog-card,
.avx-section-alt .avx-blog-card {
	background-color: #132240;
	border-color: #1E3A5A;
}

.avx-blog-card:hover {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
}

.avx-blog-img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
}

.avx-blog-body {
	padding: 20px 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.avx-blog-meta {
	font-size: 13px;
	color: #718096;
	margin-bottom: 10px;
	display: flex;
	gap: 12px;
	align-items: center;
}

.avx-section-dark .avx-blog-meta,
.avx-section-alt .avx-blog-meta {
	color: #8FABC4;
}

.avx-blog-meta i {
	margin-right: 4px;
}

.avx-blog-title {
	font-size: 18px;
	font-weight: 600;
	color: #0A1628;
	margin-bottom: 10px;
	line-height: 1.35;
}

.avx-blog-title a {
	color: #0A1628;
	text-decoration: none;
}

.avx-blog-title a:hover {
	color: #1B3A5C;
}

.avx-section-dark .avx-blog-title,
.avx-section-alt .avx-blog-title {
	color: #E2E8F0;
}

.avx-section-dark .avx-blog-title a,
.avx-section-alt .avx-blog-title a {
	color: #E2E8F0;
}

.avx-section-dark .avx-blog-title a:hover,
.avx-section-alt .avx-blog-title a:hover {
	color: #C9A84C;
}

.avx-blog-excerpt {
	font-size: 15px;
	color: #4A5568;
	line-height: 1.6;
	flex: 1;
	margin-bottom: 0;
}

.avx-section-dark .avx-blog-excerpt,
.avx-section-alt .avx-blog-excerpt {
	color: #8FABC4;
}

.avx-blog-read-more {
	margin-top: auto;
	padding-top: 16px;
	font-size: 14px;
	font-weight: 600;
	color: #1B3A5C;
	text-decoration: none;
	letter-spacing: 0.3px;
	display: inline-block;
}

.avx-blog-read-more:hover {
	color: #C9A84C;
}

.avx-section-dark .avx-blog-read-more,
.avx-section-alt .avx-blog-read-more {
	color: #C9A84C;
}

/* CTA BANNER */
.avx-cta-banner {
	background-color: #132240;
	padding: 80px 0;
	text-align: center;
}

.avx-cta-banner h2 {
	font-size: 32px;
	color: #E2E8F0;
	margin-bottom: 16px;
}

.avx-cta-banner p {
	font-size: 17px;
	color: #C8D6E5;
	max-width: 560px;
	margin: 0 auto 32px;
}

/* CTA CARD */
.avx-cta-card-wrap {
	max-width: 640px;
	margin: 0 auto;
}

.avx-cta-card {
	background-color: #132240;
	border: 1px solid #1E3A5A;
	border-radius: 6px;
	padding: 48px 40px;
	text-align: center;
}

.avx-cta-card h3 {
	font-size: 26px;
	color: #E2E8F0;
	margin-bottom: 12px;
}

.avx-cta-card p {
	font-size: 16px;
	color: #C8D6E5;
	margin-bottom: 28px;
}

/* FOOTER */
.avx-footer {
	background-color: #060F1C;
	padding: 64px 0 0;
}

.avx-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 40px;
	padding-bottom: 48px;
	border-bottom: 1px solid #1E3A5A;
}

.avx-footer-col-label {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #E2E8F0;
	margin-bottom: 20px;
}

.avx-footer-brand-text {
	font-size: 15px;
	color: #8FABC4;
	line-height: 1.65;
	margin: 12px 0 20px;
}

.avx-footer-copyright {
	font-size: 13px;
	color: #8FABC4;
}

.avx-footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.avx-footer-links a {
	font-size: 15px;
	color: #8FABC4;
	text-decoration: none;
	transition: color 0.15s ease;
}

.avx-footer-links a:hover {
	color: #C9A84C;
}

.avx-footer-contact-item {
	display: flex;
	gap: 10px;
	margin-bottom: 14px;
	align-items: flex-start;
}

.avx-footer-contact-item i {
	color: #C9A84C;
	font-size: 14px;
	margin-top: 2px;
	flex-shrink: 0;
}

.avx-footer-contact-item a,
.avx-footer-contact-item span {
	font-size: 15px;
	color: #8FABC4;
	text-decoration: none;
	line-height: 1.5;
}

.avx-footer-contact-item a:hover {
	color: #C9A84C;
}

.avx-footer-bottom {
	padding: 20px 0;
	text-align: center;
}

.avx-footer-bottom p {
	font-size: 13px;
	color: #8FABC4;
	margin: 0;
}

/* CONTACT FORM */
.avx-contact-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.avx-form-group {
	margin-bottom: 20px;
}

.avx-form-label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: #E2E8F0;
	margin-bottom: 6px;
}

.avx-form-control {
	width: 100%;
	background-color: #132240;
	border: 1px solid #1E3A5A;
	border-radius: 4px;
	color: #E2E8F0;
	font-size: 15px;
	padding: 10px 14px;
	font-family: Inter, 'Segoe UI', system-ui, -apple-system, sans-serif;
	transition: border-color 0.15s ease;
	-webkit-appearance: none;
}

.avx-form-control:focus {
	outline: none;
	border-color: #C9A84C;
}

.avx-form-control option {
	background-color: #132240;
}

textarea.avx-form-control {
	resize: vertical;
	min-height: 120px;
}

.avx-contact-info {
	padding: 8px 0;
}

.avx-contact-info h3 {
	font-size: 22px;
	color: #E2E8F0;
	margin-bottom: 24px;
}

.avx-contact-info-item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	margin-bottom: 24px;
}

.avx-contact-info-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgba(201, 168, 76, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #C9A84C;
	font-size: 15px;
}

.avx-contact-info-text {
	flex: 1;
}

.avx-contact-info-label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: #8FABC4;
	margin-bottom: 4px;
}

.avx-contact-info-value {
	font-size: 15px;
	color: #E2E8F0;
}

.avx-contact-info-value a {
	color: #E2E8F0;
	text-decoration: none;
}

.avx-contact-info-value a:hover {
	color: #C9A84C;
}

/* ABOUT TIMELINE */
.avx-timeline {
	position: relative;
	padding-left: 32px;
}

.avx-timeline::before {
	content: '';
	position: absolute;
	left: 0;
	top: 6px;
	bottom: 6px;
	width: 2px;
	background: linear-gradient(to bottom, #C9A84C, rgba(201, 168, 76, 0.2));
}

.avx-timeline-item {
	position: relative;
	padding: 0 0 32px 24px;
}

.avx-timeline-item:last-child {
	padding-bottom: 0;
}

.avx-timeline-item::before {
	content: '';
	position: absolute;
	left: -4px;
	top: 8px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #C9A84C;
	border: 2px solid #0A1628;
}

.avx-timeline-year {
	font-size: 13px;
	font-weight: 700;
	color: #C9A84C;
	letter-spacing: 0.8px;
	margin-bottom: 4px;
}

.avx-timeline-desc {
	font-size: 15px;
	color: #C8D6E5;
	line-height: 1.55;
}

/* ABOUT VALUES CARDS */
.avx-values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.avx-value-card {
	background-color: #FFFFFF;
	border: 1px solid #D1D9E6;
	border-radius: 6px;
	padding: 28px;
	display: flex;
	flex-direction: column;
}

.avx-value-icon {
	width: 48px;
	height: 48px;
	border-radius: 4px;
	background-color: rgba(27, 58, 92, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	font-size: 20px;
	color: #1B3A5C;
}

.avx-value-card h3 {
	font-size: 20px;
	font-weight: 600;
	color: #0A1628;
	margin-bottom: 10px;
}

.avx-value-card p {
	font-size: 15px;
	color: #4A5568;
	line-height: 1.6;
	flex: 1;
}

/* FILTER BAR */
.avx-filter-bar {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.avx-filter-btn {
	background: transparent;
	color: #8FABC4;
	border: 1px solid #1E3A5A;
	border-radius: 4px;
	padding: 7px 18px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.3px;
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
	font-family: Inter, 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.avx-filter-btn:hover,
.avx-filter-btn.avx-filter-active {
	background-color: rgba(201, 168, 76, 0.12);
	color: #C9A84C;
	border-color: #C9A84C;
}

/* SECTION HEADING */
.avx-section-heading {
	margin-bottom: 48px;
}

.avx-section-heading-center {
	text-align: center;
	margin-bottom: 48px;
}

/* LEGAL */
.avx-legal-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 24px;
}

.avx-legal-content h2 {
	font-size: 24px;
	color: #0A1628;
	margin-top: 40px;
	margin-bottom: 12px;
}

.avx-legal-content h2:first-child {
	margin-top: 0;
}

.avx-legal-content p {
	color: #4A5568;
	font-size: 16px;
	line-height: 1.7;
}

.avx-legal-content ul {
	color: #4A5568;
	font-size: 16px;
	line-height: 1.7;
	padding-left: 20px;
}

/* 404 */
.avx-404-section {
	background-color: #0A1628;
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 60px 24px;
}

.avx-404-number {
	font-size: 96px;
	font-weight: 700;
	color: #C9A84C;
	line-height: 1;
	display: block;
	margin-bottom: 8px;
}

.avx-404-section h2 {
	font-size: 32px;
	color: #E2E8F0;
	margin-bottom: 16px;
}

.avx-404-section p {
	font-size: 17px;
	color: #8FABC4;
	margin-bottom: 32px;
}

/* COOKIE BANNER */
.avx-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #0F1E35;
	border-top: 1px solid #1E3A5A;
	padding: 16px 24px;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.avx-cookie-text {
	font-size: 14px;
	color: #C8D6E5;
	line-height: 1.55;
	flex: 1;
	min-width: 200px;
}

.avx-cookie-text a {
	color: #C9A84C;
	text-decoration: underline;
}

.avx-cookie-actions {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

.avx-cookie-accept {
	background-color: #C9A84C;
	color: #0A1628;
	border: none;
	border-radius: 4px;
	padding: 8px 20px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.15s ease;
	font-family: inherit;
}

.avx-cookie-accept:hover {
	background-color: #B8943E;
}

.avx-cookie-manage {
	background: transparent;
	color: #8FABC4;
	border: 1px solid #1E3A5A;
	border-radius: 4px;
	padding: 8px 20px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: color 0.15s ease, border-color 0.15s ease;
	font-family: inherit;
}

.avx-cookie-manage:hover {
	color: #C9A84C;
	border-color: #C9A84C;
}

/* RESPONSIVE */
@media (max-width: 991px) {
	.avx-stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.avx-stat-item:nth-child(2) {
		border-right: none;
	}

	.avx-stat-item:nth-child(1),
	.avx-stat-item:nth-child(2) {
		border-bottom: 1px solid #1E3A5A;
	}

	.avx-portfolio-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.avx-team-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.avx-team-grid-wide {
		grid-template-columns: repeat(2, 1fr);
	}

	.avx-team-grid-wide-last {
		grid-template-columns: repeat(2, 1fr);
		max-width: 100%;
	}

	.avx-advisor-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.avx-blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.avx-values-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.avx-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}

	.avx-process-timeline {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}

	.avx-process-timeline::before {
		display: none;
	}

	.avx-alt-row {
		flex-direction: column;
		gap: 32px;
	}

	.avx-alt-row.avx-row-reverse {
		flex-direction: column;
	}

	.avx-alt-visual {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.avx-contact-split {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

@media (max-width: 767px) {
	h1.avx-hero-h1 {
		font-size: 34px;
	}

	h1.avx-page-h1 {
		font-size: 30px;
	}

	h2 {
		font-size: 26px;
	}

	.avx-section {
		padding: 56px 0;
	}

	.avx-hero {
		padding: 80px 0 64px;
	}

	.avx-nav-links,
	.avx-nav-cta {
		display: none;
	}

	.avx-hamburger {
		display: flex;
	}

	.avx-portfolio-grid {
		grid-template-columns: 1fr;
	}

	.avx-team-grid {
		grid-template-columns: 1fr;
	}

	.avx-team-grid-wide {
		grid-template-columns: 1fr;
	}

	.avx-team-grid-wide-last {
		grid-template-columns: 1fr;
	}

	.avx-advisor-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.avx-blog-grid {
		grid-template-columns: 1fr;
	}

	.avx-values-grid {
		grid-template-columns: 1fr;
	}

	.avx-footer-grid {
		grid-template-columns: 1fr;
	}

	.avx-process-timeline {
		grid-template-columns: 1fr;
	}

	.avx-stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.avx-hero-btns {
		flex-direction: column;
		align-items: center;
	}

	.avx-filter-bar {
		gap: 6px;
	}
}
