* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--lfa-bg-primary: #0f172a;
	--lfa-bg-secondary: #1e293b;
	--lfa-accent-cyan: #38bdf8;
	--lfa-accent-green: #22c55e;
	--lfa-accent-yellow: #facc15;
	--lfa-text-primary: #f8fafc;
	--lfa-text-secondary: #94a3b8;
	--lfa-divider: #334155;
	--lfa-transition: 0.35s ease-in-out;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Inter', sans-serif;
	background-color: var(--lfa-bg-primary);
	color: var(--lfa-text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	margin-bottom: 1rem;
}

h1 {
	font-size: 3.5rem;
	line-height: 1.2;
}
h2 {
	font-size: 2.5rem;
	line-height: 1.3;
}
h3 {
	font-size: 2rem;
	line-height: 1.4;
}
h4 {
	font-size: 1.5rem;
}
h5 {
	font-size: 1.25rem;
}
h6 {
	font-size: 1rem;
}

p {
	margin-bottom: 1rem;
	color: var(--lfa-text-secondary);
}

a {
	text-decoration: none;
	color: var(--lfa-accent-cyan);
	transition: var(--lfa-transition);
}

a:hover {
	color: var(--lfa-accent-green);
}

ul {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* ==========================================
   2. HEADER
========================================== */
.lfa-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(90deg, #1e293b 0%, #0f172a 100%);
	backdrop-filter: blur(10px);
	z-index: 1000;
	transition: var(--lfa-transition);
	padding: 1.5rem 0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.lfa-header.lfa-scrolled {
	padding: 0.75rem 0;
	box-shadow: 0 6px 20px rgba(56, 189, 248, 0.15);
}

.lfa-header-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.lfa-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--lfa-text-primary);
	font-family: 'Poppins', sans-serif;
}

.lfa-logo-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(
		135deg,
		var(--lfa-accent-cyan),
		var(--lfa-accent-green)
	);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	box-shadow: 0 4px 15px rgba(56, 189, 248, 0.4);
}

.lfa-nav {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.lfa-nav-link {
	color: var(--lfa-text-primary);
	font-weight: 500;
	position: relative;
	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);
	transition: var(--lfa-transition);
}

.lfa-nav-link:hover::after,
.lfa-nav-link.lfa-active::after {
	width: 100%;
}

.lfa-nav-link:hover {
	color: var(--lfa-accent-cyan);
}

.lfa-mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	background: transparent;
	border: none;
	padding: 0.5rem;
}

.lfa-mobile-toggle span {
	width: 30px;
	height: 3px;
	background: var(--lfa-text-primary);
	transition: var(--lfa-transition);
}

/* ==========================================
   3. HERO SECTION
========================================== */
.lfa-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: linear-gradient(
			135deg,
			rgba(15, 23, 42, 0.9),
			rgba(30, 41, 59, 0.9)
		),
		url('assets/lfa-hero.webp');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;

	overflow: hidden;
}

.lfa-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 30% 50%,
			rgba(56, 189, 248, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 70% 80%,
			rgba(34, 197, 94, 0.1) 0%,
			transparent 50%
		);
	pointer-events: none;
}

.lfa-hero-content {
	max-width: 900px;
	text-align: center;
	position: relative;
	z-index: 1;
}

.lfa-hero-title {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	background: linear-gradient(
		135deg,
		var(--lfa-accent-cyan),
		var(--lfa-accent-green)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: lfa-fade-left 1s ease-out;
}

.lfa-hero-subtitle {
	font-size: 1.5rem;
	color: var(--lfa-text-secondary);
	margin-bottom: 2.5rem;
	animation: lfa-fade-right 1s ease-out 0.3s both;
}

.lfa-btn-primary {
	display: inline-block;
	padding: 1rem 2.5rem;
	background: linear-gradient(
		135deg,
		var(--lfa-accent-cyan),
		var(--lfa-accent-green)
	);
	color: var(--lfa-bg-primary);
	font-weight: 600;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	transition: var(--lfa-transition);
	box-shadow: 0 4px 20px rgba(56, 189, 248, 0.3);
	font-size: 1.1rem;
	animation: lfa-zoom-in 1s ease-out 0.6s both;
}

.lfa-btn-primary:hover {
	color: var(--lfa-bg-primary);
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(56, 189, 248, 0.5);
}

/* ==========================================
   4. CONTAINER & SECTIONS
========================================== */
.lfa-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
}

.lfa-section {
	padding: 6rem 0;
	position: relative;
}

.lfa-section-title {
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
}

.lfa-section-title::after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--lfa-accent-cyan),
		var(--lfa-accent-green)
	);
	margin: 1rem auto 0;
	border-radius: 2px;
}

.lfa-section-subtitle {
	text-align: center;
	font-size: 1.2rem;
	color: var(--lfa-text-secondary);
	margin-bottom: 4rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

/* ==========================================
   5. CARDS & GRIDS
========================================== */
.lfa-grid {
	display: grid;
	gap: 2rem;
}

.lfa-grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.lfa-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.lfa-grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

.lfa-card {
	background: var(--lfa-bg-secondary);
	border-radius: 12px;
	padding: 2rem;
	transition: var(--lfa-transition);
	border: 1px solid var(--lfa-divider);
	position: relative;
	overflow: hidden;
}

.lfa-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(56, 189, 248, 0.05),
		rgba(34, 197, 94, 0.05)
	);
	opacity: 0;
	transition: var(--lfa-transition);
	pointer-events: none;
}

.lfa-card:hover::before {
	opacity: 1;
}

.lfa-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(56, 189, 248, 0.2);
	border-color: var(--lfa-accent-cyan);
}

.lfa-card-horizontal {
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
}

.lfa-card-icon {
	width: 60px;
	height: 60px;
	flex-shrink: 0;
	background: linear-gradient(
		135deg,
		var(--lfa-accent-cyan),
		var(--lfa-accent-green)
	);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	color: var(--lfa-bg-primary);
	box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

.lfa-card-content h3 {
	margin-bottom: 0.75rem;
	color: var(--lfa-text-primary);
}

.lfa-card-content p {
	color: var(--lfa-text-secondary);
	line-height: 1.7;
}

/* ==========================================
   6. CHARTS & VISUALIZATION
========================================== */
.lfa-chart-container {
	background: var(--lfa-bg-secondary);
	border-radius: 12px;
	padding: 2rem;
	border: 1px solid var(--lfa-divider);
	margin-bottom: 2rem;
}

.lfa-chart-title {
	font-size: 1.3rem;
	margin-bottom: 1.5rem;
	color: var(--lfa-text-primary);
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.lfa-chart-title i {
	color: var(--lfa-accent-cyan);
}

.lfa-chart-wrapper {
	position: relative;
	max-height: 350px;
	height: 100%;
	width: 100%;
	margin-bottom: 1rem;
}

.lfa-chart-wrapper canvas,
#lfaCandlestickChart,
.tv-lightweight-charts {
	width: 100% !important;
	height: 100% !important;
	/* object-fit: cover; */
}

.tv-lightweight-charts table {
	width: auto !important;
	height: auto !important;
}

.lfa-chart-description {
	color: var(--lfa-text-secondary);
	font-size: 0.95rem;
	line-height: 1.6;
	padding: 1rem;
	background: rgba(56, 189, 248, 0.05);
	border-left: 3px solid var(--lfa-accent-cyan);
	border-radius: 4px;
}

/* ==========================================
   7. TEAM CARDS
========================================== */
.lfa-team-card {
	background: var(--lfa-bg-secondary);
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	transition: var(--lfa-transition);
	border: 1px solid var(--lfa-divider);
	position: relative;
	overflow: hidden;
}

.lfa-team-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--lfa-accent-cyan),
		var(--lfa-accent-green)
	);
	transform: scaleX(0);
	transition: var(--lfa-transition);
}

.lfa-team-card:hover::after {
	transform: scaleX(1);
}

.lfa-team-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(34, 197, 94, 0.2);
}

.lfa-team-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		var(--lfa-accent-cyan),
		var(--lfa-accent-green)
	);
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: var(--lfa-bg-primary);
	box-shadow: 0 8px 25px rgba(56, 189, 248, 0.3);
}

.lfa-team-avatar img {
	width: 100%;
	border-radius: 50%;
	height: 100%;
	object-fit: cover;
}

.lfa-team-name {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	color: var(--lfa-text-primary);
}

.lfa-team-role {
	color: var(--lfa-accent-cyan);
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.lfa-team-location {
	color: var(--lfa-text-secondary);
	font-size: 0.9rem;
}

/* ==========================================
   8. FORM STYLES
========================================== */
.lfa-form-container {
	background: var(--lfa-bg-secondary);
	border-radius: 12px;
	padding: 2.5rem;
	border: 1px solid var(--lfa-divider);
}

.lfa-form-group {
	margin-bottom: 1.5rem;
}

.lfa-form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: var(--lfa-text-primary);
}

.lfa-form-input,
.lfa-form-textarea {
	width: 100%;
	padding: 0.9rem 1.2rem;
	background: var(--lfa-bg-primary);
	border: 1px solid var(--lfa-divider);
	border-radius: 8px;
	color: var(--lfa-text-primary);
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	transition: var(--lfa-transition);
}

.lfa-form-input:focus,
.lfa-form-textarea:focus {
	outline: none;
	border-color: var(--lfa-accent-cyan);
	box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}

.lfa-form-textarea {
	resize: vertical;
	min-height: 150px;
}

.lfa-form-error {
	display: none;
	color: #ef4444;
	font-size: 0.875rem;
	margin-top: 0.5rem;
}

.lfa-form-group.lfa-error .lfa-form-error {
	display: block;
}

.lfa-form-group.lfa-error .lfa-form-input,
.lfa-form-group.lfa-error .lfa-form-textarea {
	border-color: #ef4444;
}

.lfa-btn-submit {
	width: 100%;
	padding: 1rem;
	background: linear-gradient(
		135deg,
		var(--lfa-accent-cyan),
		var(--lfa-accent-green)
	);
	color: var(--lfa-bg-primary);
	font-weight: 600;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: var(--lfa-transition);
	font-size: 1.1rem;
	box-shadow: 0 4px 20px rgba(56, 189, 248, 0.3);
}

.lfa-btn-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(56, 189, 248, 0.5);
}

/* ==========================================
   9. MAP
========================================== */
.lfa-map-container {
	border-radius: 12px;
	overflow: hidden;
	height: 100%;
	border: 1px solid var(--lfa-divider);
}

.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;
}

/* ==========================================
   10. FOOTER
========================================== */
.lfa-footer {
	background: var(--lfa-bg-secondary);
	padding: 4rem 0 2rem;
	border-top: 1px solid var(--lfa-divider);
}

.lfa-footer-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3rem;
	margin-bottom: 3rem;
}

.lfa-footer-col h4 {
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	color: var(--lfa-text-primary);
}

.lfa-footer-col p {
	color: var(--lfa-text-secondary);
	line-height: 1.7;
	margin-bottom: 0.75rem;
}

.lfa-footer-col ul li {
	margin-bottom: 0.75rem;
}

.lfa-footer-col ul li a {
	color: var(--lfa-text-secondary);
	transition: var(--lfa-transition);
}

.lfa-footer-col ul li a:hover {
	color: var(--lfa-accent-cyan);
	padding-left: 5px;
}

.lfa-footer-col ul li i {
	color: var(--lfa-accent-cyan);
	margin-right: 0.5rem;
	width: 20px;
}

.lfa-footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid var(--lfa-divider);
	color: var(--lfa-text-secondary);
}

/* ==========================================
   11. COOKIE POPUP
========================================== */
.lfa-cookie-popup {
	display: none;
	position: fixed;
	bottom: -200px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--lfa-bg-secondary);
	padding: 1.5rem 2rem;
	border-radius: 12px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
	z-index: 10000;
	max-width: 600px;
	width: 90%;
	border: 1px solid var(--lfa-divider);
	transition: bottom 0.5s ease-in-out;
}

.lfa-cookie-popup.lfa-show {
	bottom: 2rem;
	display: block;
}

.lfa-cookie-content {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.lfa-cookie-text {
	flex: 1;
	color: var(--lfa-text-secondary);
	font-size: 0.95rem;
	line-height: 1.5;
}

.lfa-cookie-text a {
	color: var(--lfa-accent-cyan);
	text-decoration: underline;
}

.lfa-cookie-actions {
	display: flex;
	gap: 1rem;
}

.lfa-btn-cookie {
	padding: 0.6rem 1.5rem;
	background: linear-gradient(
		135deg,
		var(--lfa-accent-cyan),
		var(--lfa-accent-green)
	);
	color: var(--lfa-bg-primary);
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
	transition: var(--lfa-transition);
	white-space: nowrap;
}

.lfa-btn-cookie:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(56, 189, 248, 0.4);
}

/* ==========================================
   12. ANIMATIONS
========================================== */
@keyframes lfa-fade-left {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes lfa-fade-right {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes lfa-zoom-in {
	from {
		opacity: 0;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes lfa-fade-up {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.lfa-animate-fade-left {
	animation: lfa-fade-left 0.8s ease-out;
}

.lfa-animate-fade-right {
	animation: lfa-fade-right 0.8s ease-out;
}

.lfa-animate-zoom-in {
	animation: lfa-zoom-in 0.8s ease-out;
}

.lfa-animate-fade-up {
	animation: lfa-fade-up 0.8s ease-out;
}

/* Scroll animations */
.lfa-scroll-animate {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.lfa-scroll-animate.lfa-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ==========================================
   13. ACCORDION
========================================== */
.lfa-accordion-item {
	background: var(--lfa-bg-secondary);
	border-radius: 8px;
	margin-bottom: 1rem;
	border: 1px solid var(--lfa-divider);
	overflow: hidden;
}

.lfa-accordion-header {
	padding: 1.5rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: var(--lfa-transition);
}

.lfa-accordion-header:hover {
	background: rgba(56, 189, 248, 0.05);
}

.lfa-accordion-title {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--lfa-text-primary);
	margin-bottom: 0;
}

.lfa-accordion-icon {
	color: var(--lfa-accent-cyan);
	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-in-out;
}

.lfa-accordion-item.lfa-active .lfa-accordion-content {
	max-height: 1000px;
}

.lfa-accordion-body {
	padding: 1rem 1.5rem 1.5rem;
	color: var(--lfa-text-secondary);
	line-height: 1.7;
}

/* ==========================================
   14. TABS
========================================== */
.lfa-tabs-container {
	margin-bottom: 3rem;
}

.lfa-tabs-nav {
	display: flex;
	gap: 1rem;
	border-bottom: 2px solid var(--lfa-divider);
	margin-bottom: 2rem;
}

.lfa-tab-button {
	padding: 1rem 2rem;
	background: transparent;
	border: none;
	color: var(--lfa-text-secondary);
	font-size: 1.1rem;
	font-weight: 500;
	cursor: pointer;
	position: relative;
	transition: var(--lfa-transition);
	font-family: 'Poppins', sans-serif;
}

.lfa-tab-button::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(
		90deg,
		var(--lfa-accent-cyan),
		var(--lfa-accent-green)
	);
	transform: scaleX(0);
	transition: var(--lfa-transition);
}

.lfa-tab-button.lfa-active {
	color: var(--lfa-text-primary);
}

.lfa-tab-button.lfa-active::after {
	transform: scaleX(1);
}

.lfa-tab-content {
	display: none;
	animation: lfa-fade-up 0.5s ease-out;
}

.lfa-tab-content.lfa-active {
	display: block;
}

/* ==========================================
   15. COMPARISON TABLE
========================================== */
.lfa-comparison-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--lfa-bg-secondary);
	border-radius: 12px;
	overflow: hidden;
}

.lfa-comparison-table thead {
	background: linear-gradient(
		135deg,
		rgba(56, 189, 248, 0.1),
		rgba(34, 197, 94, 0.1)
	);
}

.lfa-comparison-table th {
	padding: 1.5rem;
	text-align: left;
	font-weight: 600;
	color: var(--lfa-text-primary);
	border-bottom: 2px solid var(--lfa-divider);
}

.lfa-comparison-table td {
	padding: 1.2rem 1.5rem;
	color: var(--lfa-text-secondary);
	border-bottom: 1px solid var(--lfa-divider);
}

.lfa-comparison-table tr:last-child td {
	border-bottom: none;
}

.lfa-comparison-table tr:hover {
	background: rgba(56, 189, 248, 0.05);
}

.lfa-table-icon {
	color: var(--lfa-accent-green);
	margin-right: 0.5rem;
}

/* ==========================================
   16. STATS BOXES
========================================== */
.lfa-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin-bottom: 3rem;
}

.lfa-stat-box {
	background: var(--lfa-bg-secondary);
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
	border: 1px solid var(--lfa-divider);
	transition: var(--lfa-transition);
}

.lfa-stat-box:hover {
	transform: translateY(-5px);
	border-color: var(--lfa-accent-cyan);
	box-shadow: 0 8px 30px rgba(56, 189, 248, 0.2);
}

.lfa-stat-number {
	font-size: 3rem;
	font-weight: 700;
	background: linear-gradient(
		135deg,
		var(--lfa-accent-cyan),
		var(--lfa-accent-green)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
}

.lfa-stat-label {
	color: var(--lfa-text-secondary);
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* ==========================================
   17. FEATURE LIST
========================================== */
.lfa-feature-list {
	display: grid;
	gap: 1.5rem;
}

.lfa-feature-item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	padding: 1.5rem;
	background: var(--lfa-bg-secondary);
	border-radius: 8px;
	border-left: 3px solid var(--lfa-accent-cyan);
	transition: var(--lfa-transition);
}

.lfa-feature-item:hover {
	transform: translateX(5px);
	background: rgba(56, 189, 248, 0.05);
}

.lfa-feature-icon {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	background: linear-gradient(
		135deg,
		var(--lfa-accent-cyan),
		var(--lfa-accent-green)
	);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--lfa-bg-primary);
	font-size: 1.2rem;
}

.lfa-feature-text h4 {
	margin-bottom: 0.5rem;
	color: var(--lfa-text-primary);
}

.lfa-feature-text p {
	color: var(--lfa-text-secondary);
	margin: 0;
}

/* ==========================================
   18. BADGE
========================================== */
.lfa-badge {
	display: inline-block;
	padding: 0.2rem 1rem;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.lfa-badge-cyan {
	background: rgba(56, 189, 248, 0.2);
	color: var(--lfa-accent-cyan);
	border: 1px solid var(--lfa-accent-cyan);
}

.lfa-badge-green {
	background: rgba(34, 197, 94, 0.2);
	color: var(--lfa-accent-green);
	border: 1px solid var(--lfa-accent-green);
}

.lfa-badge-yellow {
	background: rgba(250, 204, 21, 0.2);
	color: var(--lfa-accent-yellow);
	border: 1px solid var(--lfa-accent-yellow);
}

/* ==========================================
   19. CONTENT SECTION
========================================== */
.lfa-content-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	margin-bottom: 4rem;
}

.lfa-content-image {
	height: 100%;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.lfa-content-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lfa-content-text h3 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.lfa-content-text p {
	margin-bottom: 1rem;
	line-height: 1.8;
}

/* ==========================================
   20. RESPONSIVE
========================================== */
@media (max-width: 1200px) {
	.lfa-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.lfa-stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 992px) {
	h1 {
		font-size: 2.5rem;
	}
	h2 {
		font-size: 2rem;
	}

	.lfa-nav {
		position: fixed;
		top: 0;
		left: -100%;
		width: 280px;
		height: 100vh;
		background: var(--lfa-bg-secondary);
		flex-direction: column;
		padding: 6rem 2rem 2rem;
		transition: var(--lfa-transition);
		box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
		z-index: 999;
	}

	.lfa-nav.lfa-active {
		left: 0;
	}

	.lfa-mobile-toggle {
		display: flex;
		z-index: 1001;
	}

	.lfa-grid-2,
	.lfa-grid-3 {
		grid-template-columns: 1fr;
	}

	.lfa-footer-content {
		grid-template-columns: repeat(2, 1fr);
	}

	.lfa-content-section {
		grid-template-columns: 1fr;
	}

	.lfa-hero-title {
		font-size: 2.5rem;
	}

	.lfa-hero-subtitle {
		font-size: 1.2rem;
	}
}

@media (max-width: 768px) {
	.lfa-section {
		padding: 4rem 0;
	}

	.lfa-footer-content {
		grid-template-columns: 1fr;
	}

	.lfa-cookie-content {
		flex-direction: column;
		align-items: stretch;
	}

	.lfa-cookie-actions {
		justify-content: stretch;
	}

	.lfa-btn-cookie {
		flex: 1;
	}

	.lfa-stats-grid {
		grid-template-columns: 1fr;
	}

	.lfa-tabs-nav {
		flex-wrap: wrap;
	}

	.lfa-tab-button {
		padding: 0.75rem 1.5rem;
		font-size: 1rem;
	}

	.lfa-hero {
		padding: 5rem 1rem 3rem;
	}

	.lfa-container {
		padding: 0 1rem;
	}
}

@media (max-width: 480px) {
	h1 {
		font-size: 2rem;
	}
	h2 {
		font-size: 1.75rem;
	}

	.lfa-hero-title {
		font-size: 2rem;
	}

	.lfa-hero-subtitle {
		font-size: 1rem;
	}

	.lfa-btn-primary {
		padding: 0.9rem 2rem;
		font-size: 1rem;
	}

	.lfa-card {
		padding: 1.5rem !important;
	}

	.lfa-card-horizontal {
		flex-direction: column;
	}

	.lfa-form-container {
		padding: 1.5rem;
	}

	.lfa-logo {
		font-size: 1rem;
	}

	.lfa-feature-item {
		flex-direction: column;
	}

	.lfa-tabs-nav {
		flex-direction: column;
	}

	.lfa-grid-2,
	.lfa-grid-3,
	.lfa-grid-4 {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.lfa-grid-small {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	}

	h3,
	.lfa-content-text h3 {
		font-size: 1.5rem;
	}
}

:root {
	/* Primary Colors */
	--lfa-legal-bg-primary: #0f172a;
	--lfa-legal-bg-secondary: #1e293b;
	--lfa-legal-bg-tertiary: #334155;

	/* Accent Colors */
	--lfa-legal-accent-blue: #38bdf8;
	--lfa-legal-accent-green: #22c55e;
	--lfa-legal-accent-yellow: #facc15;

	/* Text Colors */
	--lfa-legal-text-primary: #f8fafc;
	--lfa-legal-text-secondary: #94a3b8;
	--lfa-legal-text-muted: #64748b;

	/* Dividers & Borders */
	--lfa-legal-divider: #334155;
	--lfa-legal-border-soft: rgba(56, 189, 248, 0.1);

	/* Shadows & Effects */
	--lfa-legal-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
	--lfa-legal-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
	--lfa-legal-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
	--lfa-legal-glow-blue: 0 0 20px rgba(56, 189, 248, 0.15);

	/* Spacing */
	--lfa-legal-spacing-xs: 0.5rem;
	--lfa-legal-spacing-sm: 1rem;
	--lfa-legal-spacing-md: 1.5rem;
	--lfa-legal-spacing-lg: 2rem;
	--lfa-legal-spacing-xl: 3rem;
	--lfa-legal-spacing-xxl: 4rem;
}

.lfa-legal-container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 120px var(--lfa-legal-spacing-md);
	animation: lfa-legal-fade-in 0.6s ease-out;
}

@keyframes lfa-legal-fade-in {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Header Section */
.lfa-legal-header {
	text-align: center;
	margin-bottom: var(--lfa-legal-spacing-xxl);
	padding-bottom: var(--lfa-legal-spacing-lg);
	border-bottom: 2px solid var(--lfa-legal-divider);
	position: relative;
}

.lfa-legal-header::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 2px;
	background: linear-gradient(
		90deg,
		var(--lfa-legal-accent-blue),
		var(--lfa-legal-accent-green)
	);
	box-shadow: var(--lfa-legal-glow-blue);
}

.lfa-legal-title {
	font-size: 3rem;
	font-weight: 700;
	color: var(--lfa-legal-text-primary);
	margin-bottom: var(--lfa-legal-spacing-sm);
	letter-spacing: -0.02em;
	background: linear-gradient(
		135deg,
		var(--lfa-legal-text-primary),
		var(--lfa-legal-accent-blue)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.lfa-legal-subtitle {
	font-size: 1rem;
	color: var(--lfa-legal-text-secondary);
	font-weight: 400;
	margin-top: var(--lfa-legal-spacing-sm);
}

/* Content Area */
.lfa-legal-content {
	display: flex;
	flex-direction: column;
	gap: var(--lfa-legal-spacing-xl);
}

/* Section Styles */
.lfa-legal-section {
	background-color: var(--lfa-legal-bg-secondary);
	border-radius: 16px;
	padding: var(--lfa-legal-spacing-lg);
	box-shadow: var(--lfa-legal-shadow-md);
	border: 1px solid var(--lfa-legal-border-soft);
	position: relative;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	animation: lfa-legal-slide-up 0.5s ease-out backwards;
}

@keyframes lfa-legal-slide-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.lfa-legal-section:nth-child(1) {
	animation-delay: 0.1s;
}
.lfa-legal-section:nth-child(2) {
	animation-delay: 0.15s;
}
.lfa-legal-section:nth-child(3) {
	animation-delay: 0.2s;
}
.lfa-legal-section:nth-child(4) {
	animation-delay: 0.25s;
}
.lfa-legal-section:nth-child(5) {
	animation-delay: 0.3s;
}
.lfa-legal-section:nth-child(6) {
	animation-delay: 0.35s;
}
.lfa-legal-section:nth-child(7) {
	animation-delay: 0.4s;
}
.lfa-legal-section:nth-child(8) {
	animation-delay: 0.45s;
}
.lfa-legal-section:nth-child(9) {
	animation-delay: 0.5s;
}

.lfa-legal-section:hover {
	transform: translateY(-4px);
	box-shadow: var(--lfa-legal-shadow-lg), var(--lfa-legal-glow-blue);
	border-color: var(--lfa-legal-accent-blue);
}

/* Section Number Badge */
.lfa-legal-section-number {
	position: absolute;
	top: -16px;
	left: var(--lfa-legal-spacing-lg);
	background: linear-gradient(
		135deg,
		var(--lfa-legal-accent-blue),
		var(--lfa-legal-accent-green)
	);
	color: var(--lfa-legal-bg-primary);
	font-weight: 700;
	font-size: 0.875rem;
	padding: 0.375rem 1rem;
	border-radius: 20px;
	box-shadow: var(--lfa-legal-shadow-sm);
	letter-spacing: 0.05em;
}

/* Section Title */
.lfa-legal-section-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--lfa-legal-text-primary);
	margin-bottom: var(--lfa-legal-spacing-md);
	margin-top: var(--lfa-legal-spacing-xs);
	line-height: 1.3;
	position: relative;
	padding-left: 1rem;
}

.lfa-legal-section-title::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.25rem;
	width: 4px;
	height: calc(100% - 0.5rem);
	background: linear-gradient(
		180deg,
		var(--lfa-legal-accent-blue),
		var(--lfa-legal-accent-green)
	);
	border-radius: 2px;
}

/* Section Text */
.lfa-legal-text {
	font-size: 1rem;
	color: var(--lfa-legal-text-secondary);
	line-height: 1.8;
	text-align: justify;
	hyphens: auto;
}

.lfa-legal-text strong {
	color: var(--lfa-legal-accent-blue);
	font-weight: 600;
}

.lfa-legal-text code {
	background-color: var(--lfa-legal-bg-primary);
	color: var(--lfa-legal-accent-yellow);
	padding: 0.2rem 0.5rem;
	border-radius: 4px;
	font-family: 'Courier New', Courier, monospace;
	font-size: 0.9em;
	border: 1px solid var(--lfa-legal-divider);
}

/* Footer Section */
.lfa-legal-footer {
	margin-top: var(--lfa-legal-spacing-xxl);
	padding-top: var(--lfa-legal-spacing-lg);
	border-top: 2px solid var(--lfa-legal-divider);
	text-align: center;
}

.lfa-legal-footer-text {
	font-size: 0.875rem;
	color: var(--lfa-legal-text-muted);
	margin-bottom: var(--lfa-legal-spacing-xs);
	font-weight: 500;
}

.lfa-legal-footer-contact {
	font-size: 0.875rem;
	color: var(--lfa-legal-text-secondary);
	line-height: 1.6;
}

.lfa-legal-footer-contact::before {
	content: '•';
	display: inline-block;
	margin: 0 0.5rem;
	color: var(--lfa-legal-accent-green);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
	.lfa-legal-title {
		font-size: 2rem;
	}

	.lfa-legal-section {
		padding: var(--lfa-legal-spacing-md);
	}

	.lfa-legal-section-number {
		left: var(--lfa-legal-spacing-md);
		font-size: 0.75rem;
		padding: 0.25rem 0.75rem;
	}

	.lfa-legal-section-title {
		font-size: 1.25rem;
	}

	.lfa-legal-text {
		font-size: 0.938rem;
		text-align: left;
	}

	.lfa-legal-header {
		margin-bottom: var(--lfa-legal-spacing-lg);
	}
}

@media screen and (max-width: 480px) {
	.lfa-legal-title {
		font-size: 1.3rem;
	}

	.lfa-legal-section {
		padding: var(--lfa-legal-spacing-sm);
		border-radius: 12px;
	}

	.lfa-legal-section-title {
		font-size: 1.125rem;
		padding-left: 0.75rem;
	}

	.lfa-legal-section-title::before {
		width: 3px;
	}

	.lfa-legal-content {
		gap: var(--lfa-legal-spacing-md);
	}
}
