* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	/* Color Palette */
	--lfa-bg-primary: #0b0e14;
	--lfa-bg-secondary: #151a24;
	--lfa-accent-cyan: #00ffc6;
	--lfa-accent-coral: #ff5e5b;
	--lfa-accent-yellow: #ffd23f;
	--lfa-text-primary: #f5f7fa;
	--lfa-text-secondary: #a6b1be;
	--lfa-border: #1f2833;

	/* Transitions */
	--lfa-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

	/* Shadows & Glows */
	--lfa-glow-cyan: 0 0 20px rgba(0, 255, 198, 0.6);
	--lfa-glow-coral: 0 0 20px rgba(255, 94, 91, 0.6);
	--lfa-glow-yellow: 0 0 20px rgba(255, 210, 63, 0.6);
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		sans-serif;
	background-color: var(--lfa-bg-primary);
	color: var(--lfa-text-primary);
	line-height: 1.6;
	overflow-x: hidden;
	font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Orbitron', sans-serif;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: 3.5rem;
	letter-spacing: -0.02em;
}

h2 {
	font-size: 2.75rem;
	letter-spacing: -0.01em;
}

h3 {
	font-size: 2rem;
}

h4 {
	font-size: 1.5rem;
}

p {
	margin-bottom: 1rem;
	color: var(--lfa-text-secondary);
}

a {
	color: var(--lfa-accent-cyan);
	text-decoration: none;
	transition: var(--lfa-transition);
}

a:hover {
	color: var(--lfa-text-primary);
	text-shadow: var(--lfa-glow-cyan);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* ============================================
   HEADER STYLES
   ============================================ */

.lfa-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: linear-gradient(90deg, #0b0e14 0%, #151a24 100%);
	padding: 1.5rem 0;
	border-bottom: 1px solid var(--lfa-border);
	transition: var(--lfa-transition);
	opacity: 0;
	animation: lfa-fadeIn 0.8s ease-out forwards;
}

.lfa-header.lfa-scrolled {
	padding: 1rem 0;
	background: rgba(11, 14, 20, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.lfa-header-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.lfa-logo {
	font-family: 'Orbitron', sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--lfa-text-primary);
	text-shadow: var(--lfa-glow-cyan);
	letter-spacing: 0.05em;
	transition: var(--lfa-transition);
}

.lfa-logo:hover {
	transform: scale(1.05);
	text-shadow: 0 0 30px rgba(0, 255, 198, 0.8);
}

.lfa-nav {
	display: flex;
	gap: 2.5rem;
	align-items: center;
}

.lfa-nav-link {
	position: relative;
	color: var(--lfa-text-secondary);
	font-weight: 500;
	font-size: 1rem;
	padding: 0.5rem 0;
	transition: var(--lfa-transition);
}

.lfa-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--lfa-accent-cyan);
	box-shadow: var(--lfa-glow-cyan);
	transition: var(--lfa-transition);
}

.lfa-nav-link:hover,
.lfa-nav-link.lfa-active {
	color: var(--lfa-text-primary);
}

.lfa-nav-link:hover::after,
.lfa-nav-link.lfa-active::after {
	width: 100%;
}

.lfa-mobile-toggle {
	display: none;
	background: transparent;
	border: none;
	color: var(--lfa-text-primary);
	font-size: 1.5rem;
	cursor: pointer;
	transition: var(--lfa-transition);
}

.lfa-mobile-toggle:hover {
	color: var(--lfa-accent-cyan);
	text-shadow: var(--lfa-glow-cyan);
}

/* ============================================
   HERO SECTION
   ============================================ */

.lfa-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	padding: 8rem 2rem 4rem;
}

.lfa-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.lfa-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('assets/lfa-hero.webp') center/cover;
	opacity: 0.3;
	z-index: 1;
}

.lfa-hero-content {
	position: relative;
	z-index: 2;
	max-width: 900px;
	opacity: 0;
	animation: lfa-slideUp 1s ease-out 0.3s forwards;
}

.lfa-hero-title {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	background: linear-gradient(
		135deg,
		var(--lfa-accent-cyan),
		var(--lfa-accent-coral)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.lfa-hero-subtitle {
	font-size: 1.5rem;
	color: var(--lfa-text-secondary);
	margin-bottom: 2.5rem;
	line-height: 1.8;
}

.lfa-hero-cta {
	display: inline-block;
	padding: 1.2rem 3rem;
	background: linear-gradient(
		135deg,
		var(--lfa-accent-cyan),
		var(--lfa-accent-coral)
	);
	color: var(--lfa-bg-primary);
	font-weight: 700;
	font-size: 1.1rem;
	border-radius: 50px;
	transition: var(--lfa-transition);
	box-shadow: 0 10px 30px rgba(0, 255, 198, 0.3);
}

.lfa-hero-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(0, 255, 198, 0.5);
	color: var(--lfa-bg-primary);
}

/* ============================================
   SECTION STYLES
   ============================================ */

.lfa-section {
	padding: 6rem 2rem;
	position: relative;
}

.lfa-section-dark {
	background: var(--lfa-bg-secondary);
}

.lfa-container {
	max-width: 1400px;
	margin: 0 auto;
}

.lfa-section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.lfa-section-title {
	font-size: 3rem;
	margin-bottom: 1rem;
	color: var(--lfa-text-primary);
}

.lfa-section-subtitle {
	font-size: 1.25rem;
	color: var(--lfa-text-secondary);
	max-width: 700px;
	margin: 0 auto;
}

/* ============================================
   TWO COLUMN LAYOUT
   ============================================ */

.lfa-two-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.lfa-column-text h3 {
	color: var(--lfa-accent-cyan);
	margin-bottom: 1.5rem;
}

.lfa-column-text ul {
	padding-left: 1.2rem;
}

.lfa-column-text p {
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
	line-height: 1.8;
}

.lfa-column-image {
	position: relative;
	height: 100%;
}

.lfa-column-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 15px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	border: 1px solid var(--lfa-border);
}

/* ============================================
   CARD GRID STYLES
   ============================================ */

.lfa-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
	margin-top: 3rem;
}

.lfa-card {
	background: var(--lfa-bg-secondary);
	border: 1px solid var(--lfa-border);
	border-radius: 15px;
	padding: 2.5rem;
	transition: var(--lfa-transition);
	position: relative;
	overflow: hidden;
}

.lfa-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(0, 255, 198, 0.1),
		rgba(255, 94, 91, 0.1)
	);
	opacity: 0;
	transition: var(--lfa-transition);
	pointer-events: none;
}

.lfa-card:hover {
	transform: translateY(-10px);
	border-color: var(--lfa-accent-cyan);
	box-shadow: 0 0 40px rgba(0, 255, 198, 0.4);
}

.lfa-card:hover::before {
	opacity: 1;
}

.lfa-card-icon {
	font-size: 3rem;
	color: var(--lfa-accent-cyan);
	margin-bottom: 1.5rem;
	display: block;
}

.lfa-card-title {
	font-size: 1.75rem;
	margin-bottom: 1rem;
	color: var(--lfa-text-primary);
}

.lfa-card-text {
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--lfa-text-secondary);
}

/* ============================================
   TEAM SECTION
   ============================================ */

.lfa-team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 3rem;
	margin-top: 3rem;
}

.lfa-team-card {
	background: var(--lfa-bg-secondary);
	border: 1px solid var(--lfa-border);
	border-radius: 15px;
	overflow: hidden;
	transition: var(--lfa-transition);
	text-align: center;
}

.lfa-team-card:hover {
	transform: scale(1.05);
	box-shadow: 0 0 40px rgba(0, 255, 198, 0.5);
	border-color: var(--lfa-accent-cyan);
}

.lfa-team-image {
	width: 200px;
	height: 200px;
	margin: 1rem auto;
	/* background: var(--lfa-bg-primary); */
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	color: var(--lfa-accent-cyan);
}

.lfa-team-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.lfa-team-info {
	padding: 2rem;
}

.lfa-team-name {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	color: var(--lfa-text-primary);
}

.lfa-team-role {
	font-size: 1rem;
	color: var(--lfa-accent-coral);
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.lfa-team-location {
	font-size: 0.95rem;
	color: var(--lfa-text-secondary);
}

/* ============================================
   CHART SECTION
   ============================================ */

.lfa-chart-container {
	background: var(--lfa-bg-secondary);
	border: 1px solid var(--lfa-border);
	border-radius: 15px;
	padding: 2.5rem;
	margin-top: 3rem;
}

.lfa-chart-header {
	margin-bottom: 2rem;
}

.lfa-chart-title {
	font-size: 1.75rem;
	color: var(--lfa-text-primary);
	margin-bottom: 0.5rem;
}

.lfa-chart-description {
	color: var(--lfa-text-secondary);
	font-size: 1rem;
}

.lfa-chart-wrapper {
	position: relative;
	height: 400px;
}

.lfa-chart-wrapper canvas {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
}

.lfa-charts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
	gap: 3rem;
	margin-top: 3rem;
}

/* ============================================
   CONTACT FORM SECTION
   ============================================ */

.lfa-contact-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	margin-top: 3rem;
}

.lfa-form-container {
	background: var(--lfa-bg-secondary);
	border: 1px solid var(--lfa-border);
	border-radius: 15px;
	padding: 3rem;
}

.lfa-form-group {
	margin-bottom: 1.5rem;
}

.lfa-form-label {
	display: block;
	color: var(--lfa-text-primary);
	font-weight: 600;
	margin-bottom: 0.5rem;
	font-size: 1rem;
}

.lfa-form-input,
.lfa-form-textarea {
	width: 100%;
	padding: 1rem;
	background: var(--lfa-bg-primary);
	border: 1px solid var(--lfa-border);
	border-radius: 8px;
	color: var(--lfa-text-primary);
	font-size: 1rem;
	font-family: 'Inter', sans-serif;
	transition: var(--lfa-transition);
}

.lfa-form-input:focus,
.lfa-form-textarea:focus {
	outline: none;
	border-color: var(--lfa-accent-cyan);
	box-shadow: 0 0 15px rgba(0, 255, 198, 0.3);
}

.lfa-form-input.lfa-error,
.lfa-form-textarea.lfa-error {
	border-color: var(--lfa-accent-coral);
	box-shadow: 0 0 15px rgba(255, 94, 91, 0.3);
}

.lfa-form-error-message {
	color: var(--lfa-accent-coral);
	font-size: 0.875rem;
	margin-top: 0.5rem;
	display: none;
}

.lfa-form-error-message.lfa-show {
	display: block;
}

.lfa-form-textarea {
	resize: vertical;
	min-height: 150px;
}

.lfa-form-submit {
	width: 100%;
	padding: 1.2rem;
	background: linear-gradient(
		135deg,
		var(--lfa-accent-cyan),
		var(--lfa-accent-coral)
	);
	color: var(--lfa-bg-primary);
	font-weight: 700;
	font-size: 1.1rem;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: var(--lfa-transition);
	font-family: 'Orbitron', sans-serif;
}

.lfa-form-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(0, 255, 198, 0.4);
}

.lfa-form-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.lfa-map-container {
	border-radius: 15px;
	overflow: hidden;
	border: 1px solid var(--lfa-border);
	height: 100%;
	min-height: 400px;
	background: var(--lfa-bg-secondary);
}

.lfa-map {
	height: 100%;
	min-height: 400px;

	border-radius: 0.5rem;

	overflow: hidden;
}

@media (max-width: 768px) {
	.lfa-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.lfa-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 0.5rem;
	/* overflow: hidden; */
}

.lfa-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;
}

/* ============================================
   CONTACT INFO
   ============================================ */

.lfa-contact-info {
	background: var(--lfa-bg-secondary);
	border: 1px solid var(--lfa-border);
	border-radius: 15px;
	padding: 3rem;
}

.lfa-info-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 2rem;
	gap: 1.5rem;
}

.lfa-info-icon {
	font-size: 1.75rem;
	color: var(--lfa-accent-cyan);
	min-width: 40px;
}

.lfa-info-content h4 {
	color: var(--lfa-text-primary);
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}

.lfa-info-content p {
	color: var(--lfa-text-secondary);
	margin-bottom: 0;
	font-size: 1rem;
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.lfa-footer {
	background: #10141d;
	border-top: 1px solid var(--lfa-border);
	padding: 4rem 2rem 2rem;
}

.lfa-footer-grid {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
}

.lfa-footer-column h4 {
	color: var(--lfa-text-primary);
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
}

.lfa-footer-column p {
	color: var(--lfa-text-secondary);
	line-height: 1.8;
	margin-bottom: 1rem;
}

.lfa-footer-link {
	display: block;
	color: var(--lfa-text-secondary);
	padding: 0.5rem 0;
	transition: var(--lfa-transition);
}

.lfa-footer-link:hover {
	color: var(--lfa-accent-cyan);
	padding-left: 0.5rem;
}

.lfa-social-links {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.lfa-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	background: var(--lfa-bg-secondary);
	border: 1px solid var(--lfa-border);
	border-radius: 50%;
	color: var(--lfa-text-secondary);
	font-size: 1.25rem;
	transition: var(--lfa-transition);
}

.lfa-social-link:hover {
	background: var(--lfa-accent-cyan);
	color: var(--lfa-bg-primary);
	border-color: var(--lfa-accent-cyan);
	box-shadow: var(--lfa-glow-cyan);
}

.lfa-footer-bottom {
	max-width: 1400px;
	margin: 0 auto;
	padding-top: 2rem;
	border-top: 1px solid var(--lfa-border);
	text-align: center;
	color: var(--lfa-text-secondary);
	font-size: 0.95rem;
}

/* ============================================
   COOKIE POPUP
   ============================================ */

.lfa-cookie-popup {
	position: fixed;
	bottom: 2rem;
	left: 2rem;
	right: 2rem;
	max-width: 600px;
	background: var(--lfa-bg-secondary);
	border: 1px solid var(--lfa-border);
	border-radius: 15px;
	padding: 2rem;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	z-index: 10000;
	display: none;
	animation: lfa-slideUp 0.5s ease-out;
}

.lfa-cookie-popup.lfa-show {
	display: block;
}

.lfa-cookie-content {
	margin-bottom: 1.5rem;
}

.lfa-cookie-content h4 {
	color: var(--lfa-text-primary);
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
}

.lfa-cookie-content p {
	color: var(--lfa-text-secondary);
	font-size: 0.95rem;
	margin-bottom: 0.5rem;
}

.lfa-cookie-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.lfa-cookie-btn {
	padding: 0.75rem 2rem;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--lfa-transition);
	font-family: 'Inter', sans-serif;
}

.lfa-cookie-accept {
	background: linear-gradient(
		135deg,
		var(--lfa-accent-cyan),
		var(--lfa-accent-coral)
	);
	color: var(--lfa-bg-primary);
}

.lfa-cookie-accept:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(0, 255, 198, 0.4);
}

.lfa-cookie-learn {
	background: transparent;
	color: var(--lfa-accent-cyan);
	border: 1px solid var(--lfa-accent-cyan);
}

.lfa-cookie-learn:hover {
	background: var(--lfa-accent-cyan);
	color: var(--lfa-bg-primary);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes lfa-fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes lfa-slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes lfa-slideLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes lfa-slideRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes lfa-scaleIn {
	from {
		opacity: 0;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes lfa-blurIn {
	from {
		opacity: 0;
		filter: blur(10px);
	}
	to {
		opacity: 1;
		filter: blur(0);
	}
}

/* Animation utility classes */
.lfa-fade-in {
	animation: lfa-fadeIn 0.8s ease-out;
}

.lfa-slide-up {
	animation: lfa-slideUp 0.8s ease-out;
}

.lfa-slide-left {
	animation: lfa-slideLeft 0.8s ease-out;
}

.lfa-slide-right {
	animation: lfa-slideRight 0.8s ease-out;
}

.lfa-scale-in {
	animation: lfa-scaleIn 0.8s ease-out;
}

.lfa-blur-in {
	animation: lfa-blurIn 0.8s ease-out;
}

/* Scroll reveal animations */
.lfa-reveal {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.lfa-reveal.lfa-revealed {
	opacity: 1;
	transform: translateY(0);
}

/* ============================================
   COMPARISON TABLE
   ============================================ */

.lfa-comparison-table {
	background: var(--lfa-bg-secondary);
	border: 1px solid var(--lfa-border);
	border-radius: 15px;
	overflow-x: auto;
	margin-top: 3rem;
}

.lfa-table {
	width: 100%;
	border-collapse: collapse;
}

.lfa-table thead {
	background: var(--lfa-bg-primary);
}

.lfa-table th {
	padding: 1.5rem;
	text-align: left;
	color: var(--lfa-accent-cyan);
	font-weight: 700;
	font-size: 1.1rem;
	border-bottom: 1px solid var(--lfa-border);
}

.lfa-table td {
	padding: 1.5rem;
	color: var(--lfa-text-secondary);
	border-bottom: 1px solid var(--lfa-border);
}

.lfa-table tr:last-child td {
	border-bottom: none;
}

.lfa-table tr:hover {
	background: rgba(0, 255, 198, 0.05);
}

.lfa-table-highlight {
	color: var(--lfa-accent-cyan);
	font-weight: 600;
}

/* ============================================
   TABS COMPONENT
   ============================================ */

.lfa-tabs {
	margin-top: 3rem;
}

.lfa-tabs-nav {
	display: flex;
	gap: 0.5rem;
	border-bottom: 1px solid var(--lfa-border);
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.lfa-tab-button {
	padding: 1rem 2rem;
	background: transparent;
	border: none;
	color: var(--lfa-text-secondary);
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: var(--lfa-transition);
	border-bottom: 2px solid transparent;
	font-family: 'Orbitron', sans-serif;
}

.lfa-tab-button:hover {
	color: var(--lfa-text-primary);
}

.lfa-tab-button.lfa-active {
	color: var(--lfa-accent-cyan);
	border-bottom-color: var(--lfa-accent-cyan);
}

.lfa-tab-content {
	display: none;
	animation: lfa-fadeIn 0.5s ease-out;
}

.lfa-tab-content.lfa-active {
	display: block;
}

/* ============================================
   ACCORDION COMPONENT
   ============================================ */

.lfa-accordion {
	margin-top: 3rem;
}

.lfa-accordion-item {
	background: var(--lfa-bg-secondary);
	border: 1px solid var(--lfa-border);
	border-radius: 10px;
	margin-bottom: 1rem;
	overflow: hidden;
}

.lfa-accordion-header {
	padding: 1.5rem 2rem;
	background: transparent;
	border: none;
	width: 100%;
	text-align: left;
	color: var(--lfa-text-primary);
	font-size: 1.25rem;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: var(--lfa-transition);
	font-family: 'Orbitron', sans-serif;
}

.lfa-accordion-header:hover {
	color: var(--lfa-accent-cyan);
}

.lfa-accordion-icon {
	font-size: 1.5rem;
	transition: var(--lfa-transition);
}

.lfa-accordion-item.lfa-active .lfa-accordion-icon {
	transform: rotate(180deg);
}

.lfa-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease-out;
}

.lfa-accordion-content-inner {
	padding: 1rem 2rem 2rem;
	color: var(--lfa-text-secondary);
	line-height: 1.8;
}

.lfa-accordion-item.lfa-active .lfa-accordion-content {
	max-height: 2000px;
}

/* ============================================
   FEATURE LIST
   ============================================ */

.lfa-feature-list {
	display: grid;
	gap: 1.5rem;
	margin-top: 2rem;
}

.lfa-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	padding: 1.5rem;
	background: var(--lfa-bg-secondary);
	border: 1px solid var(--lfa-border);
	border-radius: 10px;
	transition: var(--lfa-transition);
}

.lfa-feature-item:hover {
	border-color: var(--lfa-accent-cyan);
	transform: translateX(10px);
}

.lfa-feature-icon {
	font-size: 2rem;
	color: var(--lfa-accent-cyan);
	min-width: 40px;
}

.lfa-feature-content h4 {
	color: var(--lfa-text-primary);
	margin-bottom: 0.5rem;
	font-size: 1.25rem;
}

.lfa-feature-content p {
	color: var(--lfa-text-secondary);
	margin-bottom: 0;
}

/* ============================================
   STATS SECTION
   ============================================ */

.lfa-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.lfa-stat-card {
	background: var(--lfa-bg-secondary);
	border: 1px solid var(--lfa-border);
	border-radius: 15px;
	padding: 2.5rem;
	text-align: center;
	transition: var(--lfa-transition);
}

.lfa-stat-card:hover {
	border-color: var(--lfa-accent-cyan);
	box-shadow: 0 0 30px rgba(0, 255, 198, 0.3);
}

.lfa-stat-number {
	font-size: 2rem;
	font-weight: 700;
	color: var(--lfa-accent-cyan);
	margin-bottom: 0.5rem;
	font-family: 'Orbitron', sans-serif;
}

.lfa-stat-label {
	font-size: 1.1rem;
	color: var(--lfa-text-secondary);
	font-weight: 600;
}

/* ============================================
   TIMELINE COMPONENT
   ============================================ */

.lfa-timeline {
	position: relative;
	margin-top: 3rem;
	padding-left: 3rem;
}

.lfa-timeline::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(
		180deg,
		var(--lfa-accent-cyan),
		var(--lfa-accent-coral)
	);
}

.lfa-timeline-item {
	position: relative;
	padding-bottom: 3rem;
}

.lfa-timeline-marker {
	position: absolute;
	left: -57px;
	top: 0;
	width: 20px;
	height: 20px;
	background: var(--lfa-accent-cyan);
	border: 3px solid var(--lfa-bg-primary);
	border-radius: 50%;
	box-shadow: var(--lfa-glow-cyan);
}

.lfa-timeline-content {
	background: var(--lfa-bg-secondary);
	border: 1px solid var(--lfa-border);
	border-radius: 10px;
	padding: 2rem;
}

.lfa-timeline-date {
	color: var(--lfa-accent-cyan);
	font-weight: 700;
	margin-bottom: 0.5rem;
	font-family: 'Orbitron', sans-serif;
}

.lfa-timeline-title {
	color: var(--lfa-text-primary);
	font-size: 1.5rem;
	margin-bottom: 0.75rem;
}

.lfa-timeline-description {
	color: var(--lfa-text-secondary);
	line-height: 1.7;
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.lfa-legal-content {
	max-width: 900px;
	margin: 0 auto;
	padding: 8rem 2rem 4rem;
}

.lfa-legal-title {
	font-size: 3rem;
	margin-bottom: 1rem;
	color: var(--lfa-text-primary);
	text-align: center;
}

.lfa-legal-date {
	text-align: center;
	color: var(--lfa-text-secondary);
	margin-bottom: 3rem;
	font-size: 1.1rem;
}

.lfa-legal-section {
	margin-bottom: 3rem;
}

.lfa-legal-section h2 {
	font-size: 2rem;
	color: var(--lfa-accent-cyan);
	margin-bottom: 1.5rem;
}

.lfa-legal-section h3 {
	font-size: 1.5rem;
	color: var(--lfa-text-primary);
	margin-bottom: 1rem;
	margin-top: 2rem;
}

.lfa-legal-section p {
	color: var(--lfa-text-secondary);
	line-height: 1.8;
	margin-bottom: 1rem;
}

.lfa-legal-section ul,
.lfa-legal-section ol {
	color: var(--lfa-text-secondary);
	line-height: 1.8;
	margin-bottom: 1rem;
	padding-left: 2rem;
}

.lfa-legal-section li {
	margin-bottom: 0.5rem;
}

/* ============================================
   UTILITIES
   ============================================ */

.lfa-text-center {
	text-align: center;
}

.lfa-text-gradient {
	background: linear-gradient(
		135deg,
		var(--lfa-accent-cyan),
		var(--lfa-accent-coral)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.lfa-mb-1 {
	margin-bottom: 0.5rem;
}
.lfa-mb-2 {
	margin-bottom: 1rem;
}
.lfa-mb-3 {
	margin-bottom: 1.5rem;
}
.lfa-mb-4 {
	margin-bottom: 2rem;
}
.lfa-mb-5 {
	margin-bottom: 3rem;
}

.lfa-mt-1 {
	margin-top: 0.5rem;
}
.lfa-mt-2 {
	margin-top: 1rem;
}
.lfa-mt-3 {
	margin-top: 1.5rem;
}
.lfa-mt-4 {
	margin-top: 2rem;
}
.lfa-mt-5 {
	margin-top: 3rem;
}

.lfa-hidden {
	display: none !important;
}

.lfa-visible {
	display: block !important;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
	h1 {
		font-size: 2.75rem;
	}

	h2 {
		font-size: 2.25rem;
	}

	.lfa-hero-title {
		font-size: 3rem;
	}

	.lfa-two-columns,
	.lfa-contact-layout {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.lfa-charts-grid {
		grid-template-columns: 1fr;
	}

	.lfa-section {
		padding: 4rem 2rem;
	}
}

@media (max-width: 860px) {
	.lfa-nav {
		position: fixed;
		top: 0;
		left: -100%;
		width: 80%;
		max-width: 300px;
		height: 100vh;
		background: var(--lfa-bg-primary);
		flex-direction: column;
		padding: 6rem 2rem 2rem;
		gap: 1.5rem;
		align-items: flex-start;
		transition: var(--lfa-transition);
		z-index: 999;
		border-right: 1px solid var(--lfa-border);
	}

	.lfa-nav.lfa-open {
		left: 0;
	}

	.lfa-mobile-toggle {
		display: block;
	}
}

@media (max-width: 768px) {
	h1 {
		font-size: 2.25rem;
	}

	h2 {
		font-size: 1.875rem;
	}

	.lfa-hero-title {
		font-size: 2.5rem;
	}

	.lfa-hero-subtitle {
		font-size: 1.25rem;
	}

	.lfa-section-title {
		font-size: 2.25rem;
	}

	.lfa-card-grid,
	.lfa-team-grid,
	.lfa-stats-grid,
	.lfa-footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.lfa-cookie-popup {
		left: 1rem;
		right: 1rem;
	}

	.lfa-tabs-nav {
		overflow-x: auto;
		flex-direction: column;
	}

	.lfa-section {
		padding: 3rem 1.5rem;
	}

	.lfa-legal-content {
		padding: 6rem 1.5rem 3rem;
	}
}

@media (max-width: 480px) {
	html {
		font-size: 14px;
	}

	.lfa-hero {
		padding: 6rem 1.5rem 3rem;
	}

	.lfa-hero-title {
		font-size: 2rem;
	}

	.lfa-hero-subtitle {
		font-size: 1.1rem;
	}

	.lfa-hero-cta {
		padding: 1rem 2rem;
		font-size: 1rem;
	}

	.lfa-section-title {
		font-size: 1.875rem;
	}

	.lfa-card,
	.lfa-form-container,
	.lfa-contact-info {
		padding: 1.5rem;
	}

	.lfa-stat-number {
		font-size: 2.5rem;
	}

	.lfa-logo {
		font-size: 1.2rem;
	}

	.lfa-header-container {
		padding: 0 20px;
	}

	.lfa-timeline-marker {
		left: -51px;
	}

	.lfa-info-item {
		flex-direction: column;
	}
}

.lfa-legal-container {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	padding: 120px 20px;
}

.lfa-legal-content {
	background-color: #151a24;
	border-radius: 12px;
	padding: 60px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	border: 1px solid #1f2833;
	position: relative;
	overflow: hidden;
}

.lfa-legal-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #00ffc6 0%, #ff5e5b 50%, #ffd23f 100%);
	opacity: 0.8;
}

/* Header Section */
.lfa-legal-header {
	text-align: center;
	margin-bottom: 60px;
	padding-bottom: 40px;
	border-bottom: 2px solid #1f2833;
	position: relative;
}

.lfa-legal-title {
	font-size: 48px;
	font-weight: 700;
	color: #f5f7fa;
	margin-bottom: 12px;
	letter-spacing: -0.5px;
	text-transform: uppercase;
	background: linear-gradient(135deg, #00ffc6 0%, #ff5e5b 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.lfa-legal-subtitle {
	font-size: 24px;
	color: #a6b1be;
	margin-bottom: 16px;
	font-weight: 500;
	letter-spacing: 1px;
}

.lfa-legal-update {
	font-size: 14px;
	color: #a6b1be;
	font-style: italic;
	margin-top: 16px;
	padding: 8px 20px;
	background-color: rgba(0, 255, 198, 0.05);
	border-radius: 20px;
	display: inline-block;
	border: 1px solid rgba(0, 255, 198, 0.2);
}

/* Section Styles */
.lfa-legal-section {
	margin-bottom: 50px;
	padding: 40px;
	background-color: rgba(11, 14, 20, 0.4);
	border-radius: 8px;
	border-left: 4px solid #00ffc6;
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lfa-legal-section:hover {
	transform: translateX(4px);
	box-shadow: -4px 0 20px rgba(0, 255, 198, 0.1);
}

.lfa-legal-section:nth-child(even) {
	border-left-color: #ff5e5b;
}

.lfa-legal-section:nth-child(3n) {
	border-left-color: #ffd23f;
}

.lfa-legal-section-number {
	position: absolute;
	top: -15px;
	left: 30px;
	font-size: 14px;
	font-weight: 700;
	color: #0b0e14;
	background-color: #00ffc6;
	padding: 6px 16px;
	border-radius: 20px;
	letter-spacing: 1px;
}

.lfa-legal-section:nth-child(even) .lfa-legal-section-number {
	background-color: #ff5e5b;
}

.lfa-legal-section:nth-child(3n) .lfa-legal-section-number {
	background-color: #ffd23f;
}

.lfa-legal-section-title {
	font-size: 28px;
	font-weight: 600;
	color: #f5f7fa;
	margin-bottom: 20px;
	margin-top: 8px;
	letter-spacing: -0.3px;
}

.lfa-legal-text {
	font-size: 16px;
	color: #a6b1be;
	line-height: 1.8;
	text-align: justify;
	hyphens: auto;
}

.lfa-legal-highlight {
	color: #00ffc6;
	font-weight: 600;
	display: inline-block;
	margin-right: 4px;
}

.lfa-legal-section:nth-child(even) .lfa-legal-highlight {
	color: #ff5e5b;
}

.lfa-legal-section:nth-child(3n) .lfa-legal-highlight {
	color: #ffd23f;
}

/* Footer Section */
.lfa-legal-footer {
	margin-top: 60px;
	padding-top: 40px;
	text-align: center;
}

.lfa-legal-footer-line {
	width: 100%;
	height: 2px;
	background: linear-gradient(
		90deg,
		transparent 0%,
		#00ffc6 25%,
		#ff5e5b 50%,
		#ffd23f 75%,
		transparent 100%
	);
	margin-bottom: 30px;
	opacity: 0.5;
}

.lfa-legal-footer-text {
	font-size: 14px;
	color: #a6b1be;
	margin-bottom: 12px;
	font-weight: 500;
}

.lfa-legal-footer-contact {
	font-size: 14px;
	color: #a6b1be;
	line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.lfa-legal-content {
		padding: 40px;
	}

	.lfa-legal-title {
		font-size: 40px;
	}

	.lfa-legal-section {
		padding: 30px;
	}
}

@media (max-width: 768px) {
	.lfa-legal-body {
		padding: 20px 15px;
	}

	.lfa-legal-content {
		padding: 30px 25px;
		border-radius: 8px;
	}

	.lfa-legal-title {
		font-size: 2rem;
	}

	.lfa-legal-subtitle {
		font-size: 20px;
	}

	.lfa-legal-section {
		padding: 25px 20px;
		margin-bottom: 35px;
	}

	.lfa-legal-section-number {
		top: -12px;
		left: 20px;
		font-size: 12px;
		padding: 5px 12px;
	}

	.lfa-legal-section-title {
		font-size: 22px;
	}

	.lfa-legal-text {
		font-size: 15px;
		text-align: left;
	}

	.lfa-legal-header {
		margin-bottom: 40px;
		padding-bottom: 30px;
	}
}

@media (max-width: 480px) {
	.lfa-legal-body {
		padding: 15px 10px;
	}

	.lfa-legal-content {
		padding: 25px 20px;
	}

	.lfa-legal-title {
		font-size: 1.3rem;
	}

	.lfa-legal-subtitle {
		font-size: 18px;
	}

	.lfa-legal-section {
		padding: 20px 15px;
	}

	.lfa-legal-section-title {
		font-size: 20px;
	}

	.lfa-legal-section h2 {
		font-size: 1.2rem;
	}

	.lfa-legal-text {
		font-size: 14px;
	}

	.lfa-legal-footer-contact {
		font-size: 12px;
	}
}
