:root {
	--fl-navy: #050a1a;
	--fl-blue: #0c2c64;
	--fl-blue-alt: #123f80;
	--fl-emerald: #1fb672;
	--fl-emerald-dark: #0f8b52;
	--fl-gray-900: #0f172a;
	--fl-gray-700: #334155;
	--fl-gray-500: #64748b;
	--fl-gray-300: #cbd5f5;
	--fl-white: #ffffff;
	--fl-beige: #f7f8fa;
	--fl-shadow: 0 18px 45px rgba(5, 10, 26, 0.3);
	--fl-radius-lg: 24px;
	--fl-max-width: min(1280px, 94vw);
}

* {
	box-sizing: border-box;
}

html,
body {
	height: 100%;
	margin: 0;
}

body {
	font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background: var(--fl-beige);
	color: var(--fl-gray-900);
	line-height: 1.6;
	font-size: 16px;
}

body.fl-nav-open {
	overflow: hidden;
}

a {
	color: var(--fl-blue-alt);
	text-decoration: none;
}

a:hover,
a:focus {
	text-decoration: underline;
}

.fl-container {
	width: 100%;
	max-width: var(--fl-max-width);
	margin: 0 auto;
	padding: 0 20px;
}

.fl-site-header {
	transition: background 0.3s ease, box-shadow 0.3s ease;
	background: linear-gradient(100deg, rgba(5, 9, 24, 0.98), rgba(8, 25, 58, 0.98));
	color: var(--fl-white);
	box-shadow: 0 12px 35px rgba(5, 10, 26, 0.45);
	position: sticky;
	top: 0;
	z-index: 50;
}

.fl-header-bar {
	padding: 12px 0;
}

.fl-branding {
	display: flex;
	align-items: center;
}

.fl-branding .fl-site-title {
	color: var(--fl-white);
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.2;
}


.fl-logo {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	text-decoration: none;
	color: inherit;
}

.fl-logo__icon {
	width: 56px;
	height: 56px;
	display: grid;
	place-items: center;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.12);
	position: relative;
	box-shadow: 0 18px 32px rgba(5, 10, 26, 0.45);
	overflow: hidden;
}

.fl-logo__icon::after {
	content: '';
	position: absolute;
	inset: 12px 10px;
	border-radius: 14px;
	background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.28), transparent 70%);
	opacity: 0.65;
}

.fl-logo__svg {
	position: relative;
	z-index: 1;
}

.fl-logo__text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.fl-logo__title {
	font-size: 1.45rem;
	font-weight: 800;
	letter-spacing: 0.4px;
	color: var(--fl-white);
	line-height: 1.1;
}

.fl-logo__tagline {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.78);
	max-width: 320px;
	line-height: 1.35;
}

.fl-header-bar .fl-container {
	display: grid;
	grid-template-columns: 1fr auto auto;
	gap: 20px;
	align-items: center;
}

.fl-navigation {
	position: relative;
}

.fl-nav-toggle {
	border: 0;
	background: transparent;
	cursor: pointer;
	display: none;
}

.fl-nav-toggle__bar {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--fl-white);
	margin: 4px 0;
}

.fl-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	gap: 18px;
	font-weight: 600;
}

.fl-menu a {
	color: var(--fl-white);
	opacity: 0.85;
}

.fl-menu a:hover {
	opacity: 1;
}

.fl-header-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 18px;
	border-radius: 999px;
	font-weight: 700;
	background: linear-gradient(120deg, var(--fl-emerald), var(--fl-emerald-dark));
	color: var(--fl-white);
	box-shadow: 0 12px 24px rgba(31, 182, 114, 0.35);
}

.fl-header-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 16px 30px rgba(31, 182, 114, 0.4);
}

main.fl-site-main {
	padding-top: 0;
}

.fl-site-footer {
	background: var(--fl-navy);
	color: var(--fl-white);
	margin-top: 120px;
}

.fl-footer-top {
	padding: 48px 0 32px;
}

.fl-footer-top .fl-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 36px;
}

.fl-footer-contacts,
.fl-footer-menu {
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

.fl-footer-menu li {
	margin-bottom: 8px;
}

.fl-footer-menu a {
	color: rgba(255, 255, 255, 0.85);
}

.fl-footer-cta .fl-wa-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 20px;
	border-radius: 14px;
	font-weight: 700;
	background: linear-gradient(110deg, var(--fl-emerald), var(--fl-emerald-dark));
	box-shadow: 0 14px 28px rgba(31, 182, 114, 0.35);
	color: var(--fl-white);
}

.fl-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 18px 0;
	text-align: center;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.6);
}

.fl-generic {
	padding: 48px 0;
}

.fl-generic__item {
	background: var(--fl-white);
	border-radius: 18px;
	padding: 28px;
	box-shadow: var(--fl-shadow);
	margin-bottom: 28px;
}

.fl-generic__title {
	margin: 0 0 12px;
}

.fl-pagination {
	margin-top: 24px;
}

/* Responsive tweaks */
@media (max-width: 980px) {
	.fl-header-bar .fl-container {
		grid-template-columns: 1fr auto;
	}

	.fl-navigation {
		justify-self: end;
	}

	.fl-nav-toggle {
		display: inline-flex;
		flex-direction: column;
		align-items: flex-end;
	}

	.fl-menu-wrapper {
		display: none;
		position: absolute;
		top: 120%;
		left: 50%;
		transform: translateX(-50%);
		background: var(--fl-navy);
		padding: 18px;
		border-radius: 16px;
		box-shadow: var(--fl-shadow);
		width: min(100vw - 40px, 420px);
		max-height: calc(100vh - 120px);
		overflow-y: auto;
	}

	.fl-menu {
		flex-direction: column;
		gap: 12px;
	}

	.fl-navigation[aria-expanded="true"] .fl-menu-wrapper,
.fl-menu-wrapper.is-open {
		display: block;
	}
}

@media (max-width: 720px) {
	.fl-footer-top .fl-container {
		grid-template-columns: 1fr;
	}

	.fl-header-btn {
		font-size: 0.95rem;
	}

	.fl-logo {
		gap: 12px;
	}

	.fl-logo__icon {
		width: 50px;
		height: 50px;
	}

	.fl-logo__title {
		font-size: 1.2rem;
	}

	.fl-logo__tagline {
		font-size: 0.78rem;
		max-width: 240px;
	}

	.fl-nav-toggle {
		margin-right: 4px;
	}

	.fl-menu-wrapper {
		padding: 22px;
		border-radius: 18px;
	}
}

/* Hero */
.fl-hero {
	padding: 110px 0 90px;
	background: linear-gradient(160deg, rgba(8, 23, 60, 0.85), rgba(11, 62, 121, 0.78), rgba(19, 182, 160, 0.55)), url('https://images.unsplash.com/photo-1589215951246-45f030301f5f?q=80&w=1600&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover fixed;
	color: var(--fl-white);
	position: relative;
	overflow: hidden;
}

.fl-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(5, 10, 26, 0.65), rgba(12, 44, 100, 0.50));
	z-index: 0;
}

.fl-hero .fl-container {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 80px;
	align-items: center;
}

.fl-hero__content h1 {
	font-size: clamp(2.7rem, 4.6vw, 3.9rem);
	margin: 24px 0 12px;
	line-height: 1.05;
}

.fl-hero__content p {
	font-size: 1.02rem;
	color: rgba(255, 255, 255, 0.82);
	max-width: 520px;
}

.fl-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 999px;
	padding: 8px 16px;
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 0.5px;
}

.fl-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 30px 0 18px;
}

.fl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border-radius: 16px;
	padding: 12px 22px;
	font-weight: 700;
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.fl-btn--primary {
	background: linear-gradient(120deg, var(--fl-emerald), var(--fl-emerald-dark));
	color: var(--fl-white);
	box-shadow: 0 16px 32px rgba(31, 182, 114, 0.35);
}

.fl-btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 22px 38px rgba(31, 182, 114, 0.45);
}

.fl-btn--ghost {
	border: 1px solid rgba(255, 255, 255, 0.5);
	color: var(--fl-white);
	background: transparent;
}

.fl-hero__points {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 8px;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.78);
}

.fl-hero-search {
	margin-top: 34px;
	display: grid;
	grid-template-columns: minmax(190px, 1.4fr) repeat(3, minmax(160px, 1fr)) minmax(140px, 0.9fr);
	gap: 12px;
	padding: 18px;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 28px;
	backdrop-filter: blur(14px);
	box-shadow: 0 24px 45px rgba(5, 10, 26, 0.35);
}

.fl-hero-search__field {
	border: 0;
	border-radius: 18px;
	padding: 14px 16px;
	font-size: 0.95rem;
	font-weight: 600;
	background: rgba(255, 255, 255, 0.92);
	color: var(--fl-blue);
	box-shadow: inset 0 1px 2px rgba(5, 10, 26, 0.08);
}

.fl-hero-search__field:disabled {
	background: rgba(255, 255, 255, 0.55);
	color: rgba(12, 44, 100, 0.45);
	cursor: not-allowed;
	box-shadow: none;
}

.fl-hero-search select.fl-hero-search__field {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, rgba(12, 44, 100, 0.65) 50%), linear-gradient(135deg, rgba(12, 44, 100, 0.65) 50%, transparent 50%);
	background-position: calc(100% - 18px) calc(50% - 5px), calc(100% - 13px) calc(50% - 5px);
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	padding-right: 38px;
}

.fl-hero-search__field::placeholder {
	color: rgba(12, 44, 100, 0.45);
}

.fl-hero-search__field:focus {
	outline: 0;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4), inset 0 1px 2px rgba(5, 10, 26, 0.12);
}

.fl-hero-search__submit {
	border: 0;
	border-radius: 18px;
	background: linear-gradient(120deg, var(--fl-emerald), var(--fl-emerald-dark));
	color: var(--fl-white);
	font-weight: 700;
	font-size: 1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 20px;
	box-shadow: 0 16px 34px rgba(31, 182, 114, 0.38);
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fl-hero-search__submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 40px rgba(31, 182, 114, 0.45);
}

.fl-hero-search__submit-icon {
	display: inline-flex;
}

.fl-hero-search__submit-label {
	letter-spacing: 0.4px;
}

@media (max-width: 1180px) {
	.fl-hero .fl-container {
		grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
		gap: 48px;
	}

	.fl-hero-search {
		grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	}

	.fl-hero__content p {
		max-width: 540px;
	}
}

.fl-hero__media {
	display: grid;
	gap: 18px;
	justify-items: start;
}

.fl-hero__badge {
	background: rgba(255, 255, 255, 0.08);
	padding: 12px 18px;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(8px);
}

.fl-hero__badge strong {
	display: block;
	font-size: 1.05rem;
}

.fl-hero__card {
	background: rgba(255, 255, 255, 0.1);
	padding: 22px;
	border-radius: 24px;
	max-width: 320px;
	box-shadow: var(--fl-shadow);
}

.fl-hero__card h3 {
	margin: 0 0 8px;
	font-size: 1.4rem;
}

.fl-hero__card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
}

/* Section headers */
.fl-section-heading {
	text-align: left;
	margin-bottom: 32px;
}

.fl-section-tag {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(12, 44, 100, 0.1);
	color: var(--fl-blue);
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.4px;
	text-transform: uppercase;
}

.fl-section-heading h2 {
	margin: 12px 0 14px;
	font-size: clamp(2rem, 3.5vw, 2.6rem);
}

.fl-section-heading p {
	max-width: 620px;
	color: var(--fl-gray-700);
}

.fl-section-heading--light .fl-section-tag {
	background: rgba(255, 255, 255, 0.22);
	color: var(--fl-white);
}

.fl-section-heading--light h2 {
	color: var(--fl-white);
}

.fl-section-heading--light p {
	color: rgba(255, 255, 255, 0.86);
}

/* Services */
.fl-services {
	padding: 90px 0 70px;
}

.fl-service-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 28px;
}

.fl-service-card {
	background: var(--fl-white);
	border-radius: var(--fl-radius-lg);
	padding: 26px;
	box-shadow: var(--fl-shadow);
	display: grid;
	gap: 18px;
	border: 1px solid rgba(12, 44, 100, 0.08);
}

.fl-service-card h3 {
	margin: 0;
	font-size: 1.2rem;
}

.fl-service-card p {
	margin: 0;
	color: var(--fl-gray-700);
}

.fl-service-icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: rgba(12, 44, 100, 0.08);
	color: var(--fl-blue);
	display: grid;
	place-items: center;
}

/* Export */
.fl-export {
	padding: 80px 0;
	background: linear-gradient(140deg, rgba(18, 63, 128, 0.9), rgba(35, 126, 201, 0.82));
	color: var(--fl-white);
}

.fl-export__card {
	background: rgba(255, 255, 255, 0.18);
	border-radius: var(--fl-radius-lg);
	padding: clamp(32px, 5vw, 48px);
	display: grid;
	gap: 40px;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	border: 1px solid rgba(255, 255, 255, 0.35);
	box-shadow: 0 24px 55px rgba(0, 32, 78, 0.35);
	color: rgba(5, 10, 26, 0.9);
}

.fl-export__card ul {
	margin: 18px 0 0;
	padding-left: 20px;
}

.fl-export__card li {
	margin-bottom: 10px;
	color: rgba(5, 10, 26, 0.82);
}

.fl-export__aside {
	background: rgba(5, 10, 26, 0.08);
	padding: 24px;
	border-radius: 22px;
	border: 1px solid rgba(12, 44, 100, 0.12);
}

.fl-export__aside h3 {
	margin-top: 0;
}

.fl-export__details h3 {
	margin: 0 0 16px;
	font-size: 1.35rem;
	color: rgba(5, 10, 26, 0.92);
}

.fl-export__details ul {
	color: rgba(5, 10, 26, 0.78);
}

/* Vehicles */
.fl-vehicles {
	padding: 90px 0 70px;
}

.fl-vehicle-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 28px;
}

.fl-vehicle-card {
	background: var(--fl-white);
	border-radius: 20px;
	box-shadow: var(--fl-shadow);
	overflow: hidden;
	border: 1px solid rgba(12, 44, 100, 0.08);
}

.fl-vehicle-card__link {
	color: inherit;
	display: grid;
	grid-template-rows: 200px auto;
	height: 100%;
}

.fl-vehicle-thumb {
	overflow: hidden;
	background: #0b1220;
}

.fl-vehicle-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.02);
	transition: transform 0.3s ease;
}

.fl-vehicle-card:hover img {
	transform: scale(1.06);
}

.fl-vehicle-thumb__placeholder {
	color: rgba(255, 255, 255, 0.8);
	display: grid;
	place-items: center;
	height: 100%;
	font-weight: 600;
}

.fl-vehicle-body {
	padding: 20px 22px 24px;
	display: grid;
	gap: 12px;
}

.fl-vehicle-body h3 {
	margin: 0;
	font-size: 1.15rem;
}

.fl-vehicle-meta {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 0.85rem;
	color: var(--fl-gray-500);
}

.fl-vehicle-price {
	margin: 0;
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--fl-blue);
}

.fl-vehicle-cta {
	font-weight: 600;
	color: var(--fl-emerald-dark);
}

.fl-vehicles__actions {
	margin-top: 32px;
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.fl-vehicles__actions .fl-btn--ghost {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	padding: 14px 26px;
	border: 1px solid rgba(12, 44, 100, 0.55);
	background: linear-gradient(120deg, rgba(12, 44, 100, 0.88), rgba(5, 10, 26, 0.92));
	color: var(--fl-white);
	font-weight: 700;
	box-shadow: 0 18px 38px rgba(12, 44, 100, 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fl-vehicles__actions .fl-btn--ghost:hover {
	transform: translateY(-2px);
	box-shadow: 0 24px 44px rgba(12, 44, 100, 0.42);
}

.fl-vehicles__actions .fl-btn--ghost::after {
	content: none;
}

.fl-vehicles__actions .fl-btn--ghost:focus-visible {
	outline: 3px solid rgba(12, 44, 100, 0.45);
	outline-offset: 2px;
}

/* Steps */
.fl-steps {
	padding: 80px 0;
	background: var(--fl-white);
}

.fl-step-list {
	counter-reset: steps;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 28px;
	list-style: none;
	margin: 40px 0 0;
	padding: 0;
}

.fl-step-list li {
	background: linear-gradient(145deg, rgba(12, 44, 100, 0.08), rgba(5, 10, 26, 0.05));
	border-radius: 20px;
	padding: 24px;
	position: relative;
}

.fl-step-list li::before {
	counter-increment: steps;
	content: counter(steps);
	position: absolute;
	top: -20px;
	left: 24px;
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	border-radius: 14px;
	background: var(--fl-blue);
	color: var(--fl-white);
	font-weight: 700;
	box-shadow: var(--fl-shadow);
}

.fl-step-list strong {
	display: block;
	margin-bottom: 8px;
	font-size: 1.15rem;
}

/* Testimonials */
.fl-testimonials {
	padding: 90px 0;
	background: linear-gradient(120deg, rgba(12, 44, 100, 0.1), rgba(5, 10, 26, 0.05));
}

.fl-testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px;
}

.fl-testimonial {
	background: var(--fl-white);
	padding: 24px;
	border-radius: 20px;
	box-shadow: var(--fl-shadow);
	border: 1px solid rgba(12, 44, 100, 0.08);
	position: relative;
}

.fl-testimonial::before {
	content: '"';
	font-size: 3rem;
	position: absolute;
	top: 10px;
	left: 18px;
	color: rgba(12, 44, 100, 0.2);
}

.fl-testimonial p {
	margin: 16px 0;
	color: var(--fl-gray-700);
}

.fl-testimonial span {
	font-weight: 600;
	color: var(--fl-blue);
}

/* Contact */
.fl-contact {
	padding: 90px 0;
}

.fl-contact__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
	align-items: start;
}

.fl-contact-list {
	list-style: none;
	padding: 0;
	margin: 24px 0;
	display: grid;
	gap: 12px;
}

.fl-contact-list a {
	font-weight: 600;
	color: var(--fl-blue-alt);
}

.fl-contact__cta {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.fl-contact__cta .fl-btn--ghost {
	border: 1px solid rgba(12, 44, 100, 0.25);
	color: var(--fl-blue);
	background: rgba(12, 44, 100, 0.06);
}

.fl-contact__cta .fl-btn--ghost:hover {
	background: rgba(12, 44, 100, 0.16);
	color: var(--fl-blue-alt);
}

.fl-map iframe {
	width: 100%;
	min-height: 320px;
	border: 0;
	border-radius: 20px;
	box-shadow: var(--fl-shadow);
}

/* Utilities */
.fl-empty {
	text-align: center;
	color: var(--fl-gray-500);
	font-style: italic;
}

@media (max-width: 640px) {
	.fl-hero {
		padding: 72px 0 60px;
	}

	.fl-hero .fl-container {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.fl-hero__content {
		text-align: center;
	}

	.fl-hero__content h1 {
		font-size: 2.2rem;
		line-height: 1.12;
	}

	.fl-hero__content p {
		font-size: 0.95rem;
		margin-left: auto;
		margin-right: auto;
	}

	.fl-hero__cta {
		justify-content: center;
	}

	.fl-hero__points {
		justify-items: center;
		text-align: center;
	}

	.fl-hero__media {
		justify-items: center;
		order: -1;
	}

	.fl-hero-search {
		grid-template-columns: 1fr;
		padding: 14px;
	}

	.fl-hero-search__field {
		font-size: 0.96rem;
		min-height: 54px;
	}

	.fl-hero-search__submit {
		width: 100%;
		min-height: 54px;
	}

	.fl-services,
	.fl-export,
	.fl-vehicles,
	.fl-steps,
	.fl-testimonials,
	.fl-contact {
		padding: 60px 0;
	}

	.fl-service-card,
	.fl-export__card,
	.fl-single-vehicle__meta,
	.fl-single-vehicle__gallery,
	.fl-page__article {
		padding: 22px;
	}

	.fl-contact__grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.fl-map iframe {
		min-height: 260px;
	}

	.fl-step-list {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.fl-step-list li::before {
		left: 16px;
	}
}

@media (max-width: 480px) {
	.fl-logo__icon {
		width: 46px;
		height: 46px;
	}

	.fl-logo__title {
		font-size: 1.05rem;
	}

	.fl-hero {
		padding-top: 64px;
	}

	.fl-hero__content h1 {
		font-size: 1.95rem;
	}

	.fl-hero__cta {
		gap: 10px;
	}

	.fl-hero-search {
		padding: 12px;
		gap: 10px;
	}

	.fl-hero-search__field {
		padding: 12px 14px;
	}

	.fl-service-card,
	.fl-single-vehicle__meta,
	.fl-single-vehicle__gallery,
	.fl-page__article {
		padding: 20px;
	}

	.fl-export__card {
		padding: 26px;
	}

	.fl-vehicle-card__link {
		grid-template-rows: 180px auto;
	}
}

.fl-page {
	padding: 80px 0 90px;
}

.fl-page__article {
	background: var(--fl-white);
	border-radius: 24px;
	box-shadow: var(--fl-shadow);
	padding: clamp(28px, 5vw, 48px);
	border: 1px solid rgba(12, 44, 100, 0.08);
}

.fl-page__header h1 {
	margin-top: 0;
	font-size: clamp(2rem, 3.2vw, 2.6rem);
}

.fl-page__content > *:first-child {
	margin-top: 0;
}

.fl-page__content a {
	color: var(--fl-blue-alt);
	font-weight: 600;
}

.fl-single {
	padding: 80px 0 90px;
}

.fl-single__article {
	background: var(--fl-white);
	border-radius: 24px;
	box-shadow: var(--fl-shadow);
	padding: clamp(28px, 5vw, 48px);
	border: 1px solid rgba(12, 44, 100, 0.08);
}

.fl-breadcrumb {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	color: var(--fl-blue);
	margin-bottom: 14px;
}

.fl-single__header h1 {
	margin: 0 0 12px;
}

.fl-single__meta {
	font-size: 0.9rem;
	color: var(--fl-gray-500);
}

.fl-single__content > *:first-child {
	margin-top: 0;
}

.fl-single__content img {
	max-width: 100%;
	border-radius: 16px;
}

.fl-archive {
	padding: 80px 0 90px;
}

.fl-archive__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px;
}

.fl-archive__item {
	background: var(--fl-white);
	border-radius: 20px;
	box-shadow: var(--fl-shadow);
	border: 1px solid rgba(12, 44, 100, 0.08);
}

.fl-archive__link {
	display: grid;
	gap: 12px;
	padding: 24px;
	color: inherit;
}

.fl-archive__link h2 {
	margin: 0;
	font-size: 1.3rem;
}

.fl-archive__link p {
	margin: 0;
	color: var(--fl-gray-700);
}

.fl-archive__more {
	font-weight: 600;
	color: var(--fl-blue);
}

.fl-vehicle-archive {
	padding: 80px 0 90px;
}


.fl-breadcrumbs {
	margin-bottom: 16px;
}

.fl-breadcrumbs a {
	color: var(--fl-blue);
	font-weight: 600;
}

.fl-single-vehicle {
	padding: 80px 0 100px;
}

.fl-single-vehicle__header h1 {
	margin: 12px 0;
	font-size: clamp(2.1rem, 3.5vw, 2.8rem);
}

.fl-single-vehicle__subtitle {
	margin: 0 0 26px;
	color: var(--fl-gray-500);
	font-weight: 600;
}

.fl-single-vehicle__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
	gap: 36px;
}

.fl-single-vehicle__gallery {
	background: var(--fl-white);
	border-radius: 24px;
	box-shadow: var(--fl-shadow);
	padding: 16px;
	border: 1px solid rgba(12, 44, 100, 0.08);
}

.fl-single-vehicle__main {
	overflow: hidden;
	border-radius: 18px;
}

.fl-single-vehicle__main img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.fl-single-vehicle__thumbs {
	margin-top: 16px;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
	gap: 10px;
}

.fl-single-vehicle__thumbs img {
	border-radius: 12px;
	width: 100%;
	height: 70px;
	object-fit: cover;
}

.fl-single-vehicle__meta {
	background: var(--fl-white);
	border-radius: 24px;
	box-shadow: var(--fl-shadow);
	padding: 30px;
	border: 1px solid rgba(12, 44, 100, 0.08);
	display: grid;
	gap: 24px;
	align-self: start;
}

.fl-single-vehicle__price strong {
	font-size: 2rem;
	color: var(--fl-blue);
	display: block;
}

.fl-single-vehicle__price span {
	color: var(--fl-gray-500);
	font-size: 0.95rem;
}

.fl-single-vehicle__specs {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 12px;
}

.fl-single-vehicle__specs li {
	display: flex;
	justify-content: space-between;
	background: rgba(12, 44, 100, 0.06);
	padding: 12px 16px;
	border-radius: 14px;
	font-size: 0.95rem;
}

.fl-single-vehicle__specs span {
	color: var(--fl-gray-500);
}

.fl-single-vehicle__cta {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.fl-single-vehicle__cta .fl-btn--ghost {
	border: 1px solid rgba(12, 44, 100, 0.3);
	color: var(--fl-blue);
	background: rgba(12, 44, 100, 0.1);
	box-shadow: 0 10px 26px rgba(12, 44, 100, 0.18);
}

.fl-single-vehicle__cta .fl-btn--ghost:hover {
	background: var(--fl-blue);
	color: var(--fl-white);
	border-color: transparent;
	box-shadow: 0 16px 36px rgba(12, 44, 100, 0.28);
}

.fl-single-vehicle__guarantees h3 {
	margin: 0 0 12px;
}

.fl-single-vehicle__guarantees ul {
	margin: 0;
	padding-left: 18px;
}

.fl-single-vehicle__content {
	margin-top: 50px;
	background: var(--fl-white);
	padding: clamp(28px, 4vw, 46px);
	border-radius: 24px;
	box-shadow: var(--fl-shadow);
	border: 1px solid rgba(12, 44, 100, 0.08);
}

.fl-single-vehicle__content > *:first-child {
	margin-top: 0;
}

@media (max-width: 980px) {
	.fl-single-vehicle__grid {
		grid-template-columns: 1fr;
	}
}


.fl-section-heading--center {
	text-align: center;
}

.fl-section-heading--center p {
	margin-left: auto;
	margin-right: auto;
}

.fl-vehicle-filter {
	margin-bottom: 40px;
	padding: 24px;
	background: rgba(255, 255, 255, 0.85);
	border-radius: var(--fl-radius-lg);
	box-shadow: var(--fl-shadow);
	backdrop-filter: blur(12px);
	display: grid;
	gap: 18px;
	border: 1px solid rgba(12, 44, 100, 0.08);
	animation: flFadeUp 0.6s ease forwards;
}

.fl-filter-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 18px;
}

.fl-filter-group {
	display: grid;
	gap: 8px;
}

.fl-filter-label {
	font-weight: 600;
	color: var(--fl-blue);
	font-size: 0.9rem;
}

.fl-filter-group select,
.fl-filter-group input[type="search"],
.fl-filter-group input[type="number"] {
	border-radius: 14px;
	border: 1px solid rgba(12, 44, 100, 0.18);
	padding: 12px 14px;
	font-size: 0.95rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fl-filter-group select:disabled,
.fl-filter-group input:disabled {
	background: rgba(240, 242, 250, 0.65);
	color: rgba(12, 44, 100, 0.45);
	cursor: not-allowed;
	box-shadow: none;
}

.fl-filter-group select:focus,
.fl-filter-group input:focus {
	outline: none;
	border-color: var(--fl-blue-alt);
	box-shadow: 0 0 0 3px rgba(12, 44, 100, 0.15);
}

.fl-filter-group--inline .fl-filter-range {
	display: flex;
	align-items: center;
	gap: 10px;
}

.fl-filter-group--inline input {
	flex: 1 1 auto;
}

.fl-filter-actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.fl-filter-group--budget {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	align-items: flex-start;
}

.fl-filter-group--budget .fl-filter-label {
	margin-bottom: 4px;
}

.fl-filter-group--budget .fl-filter-range {
	display: flex;
	align-items: center;
	gap: 10px;
}

.fl-filter-group--budget input {
	width: 100%;
}

.fl-filter-group--budget span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 6px;
	font-weight: 700;
	color: var(--fl-gray-500);
}

.fl-hero-search select.fl-hero-search__field option[disabled],
.fl-filter-group select option[disabled] {
	color: rgba(60, 75, 110, 0.45);
}

@media (max-width: 720px) {
	.fl-hero {
		background-attachment: scroll;
	}

	.fl-vehicle-body {
		padding: 18px 18px 22px;
		gap: 10px;
	}

	.fl-vehicle-meta {
		gap: 8px;
	}

	.fl-vehicle-filter {
		padding: 20px;
	}

	.fl-filter-group select,
	.fl-filter-group input[type="search"],
	.fl-filter-group input[type="number"] {
		min-height: 52px;
	}

	.fl-filter-group--budget .fl-filter-range {
		flex-direction: column;
		align-items: stretch;
	}

	.fl-filter-group--budget span {
		display: none;
	}

	.fl-filter-actions {
		flex-direction: column;
		gap: 12px;
	}

	.fl-filter-actions .fl-btn {
		width: 100%;
		justify-content: center;
		min-height: 52px;
	}
}




.fl-vehicle-card,
.fl-service-card,
.fl-testimonial,
.fl-single-vehicle__meta,
.fl-single-vehicle__gallery,
.fl-single-vehicle__content,
.fl-step-list li,
.fl-export__card {
	transform: translateY(18px);
	opacity: 0;
	animation: flFadeUp 0.7s ease forwards;
}

.fl-vehicle-card:nth-child(odd) { animation-delay: 0.05s; }
.fl-vehicle-card:nth-child(even) { animation-delay: 0.12s; }

.fl-service-card,
.fl-testimonial,
.fl-step-list li {
	animation-delay: 0.1s;
}

.fl-vehicle-card {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fl-vehicle-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 25px 45px rgba(5, 10, 26, 0.35);
}

.fl-vehicle-card:hover .fl-vehicle-cta {
	color: var(--fl-blue);
}

.fl-btn {
	position: relative;
	overflow: hidden;
}

.fl-btn::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(120deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
	transition: transform 0.4s ease;
	transform: translateX(0);
}

.fl-btn:hover::after {
	transform: translateX(200%);
}

.fl-hero,
.fl-services,
.fl-export,
.fl-vehicles,
.fl-steps,
.fl-testimonials,
.fl-contact,
.fl-page,
.fl-archive,
.fl-single,
.fl-single-vehicle {
	opacity: 0;
	animation: flFadeUp 0.6s ease forwards;
}

.fl-hero { animation-delay: 0.05s; }
.fl-services { animation-delay: 0.1s; }
.fl-export { animation-delay: 0.15s; }
.fl-vehicles { animation-delay: 0.2s; }
.fl-steps { animation-delay: 0.25s; }
.fl-testimonials { animation-delay: 0.3s; }
.fl-contact { animation-delay: 0.35s; }

@keyframes flFadeUp {
	0% { opacity: 0; transform: translateY(40px); }
	100% { opacity: 1; transform: translateY(0); }
}

/* Tablet adjustments for filter */
@media (max-width: 720px) {
	.fl-vehicle-filter {
		padding: 20px;
	}

	.fl-filter-grid {
		grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	}
}

.fl-site-header.is-sticky {
	background: rgba(5, 10, 26, 0.94);
	box-shadow: 0 18px 40px rgba(5, 10, 26, 0.5);
	backdrop-filter: blur(10px);
}







.fl-about-hero {
	padding: 110px 0 90px;
	background: linear-gradient(135deg, rgba(5, 10, 26, 0.85), rgba(12, 44, 100, 0.7)), url('https://images.unsplash.com/photo-1549923756-9f5c37c7b4c6?auto=format&fit=crop&w=1600&q=80') center/cover;
	color: var(--fl-white);
}

.fl-about-hero__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 32px;
	align-items: center;
}

.fl-about-hero__content h1 {
	font-size: clamp(2.6rem, 4vw, 3.4rem);
	margin: 0 0 16px;
	line-height: 1.1;
}

.fl-about-hero__content p {
	margin: 0;
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.05rem;
}

.fl-about-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: rgba(255, 255, 255, 0.12);
	padding: 10px 18px;
	border-radius: 999px;
	font-weight: 600;
	letter-spacing: 0.4px;
}

.fl-about-hero__card {
	background: rgba(255, 255, 255, 0.12);
	padding: 24px;
	border-radius: 24px;
	backdrop-filter: blur(12px);
	box-shadow: var(--fl-shadow);
}

.fl-stats {
	margin-top: 90px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 24px;
}

.fl-stat-card {
	background: var(--fl-white);
	border-radius: 24px;
	padding: 28px;
	box-shadow: var(--fl-shadow);
	text-align: center;
	border: 1px solid rgba(12, 44, 100, 0.08);
}

.fl-stat-card strong {
	display: block;
	font-size: 2.4rem;
	color: var(--fl-blue);
	margin-bottom: 6px;
}

.fl-milestones {
	margin: 70px 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 32px;
}

.fl-milestone {
	background: linear-gradient(140deg, rgba(12, 44, 100, 0.08), rgba(5, 10, 26, 0.05));
	padding: 28px;
	border-radius: 24px;
	position: relative;
	box-shadow: var(--fl-shadow);
}

.fl-milestone::before {
	content: attr(data-year);
	position: absolute;
	top: -22px;
	left: 24px;
	background: var(--fl-blue);
	color: var(--fl-white);
	padding: 8px 18px;
	border-radius: 14px;
	font-weight: 700;
	box-shadow: var(--fl-shadow);
}

.fl-team {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}

.fl-team-card {
	background: var(--fl-white);
	border-radius: 20px;
	box-shadow: var(--fl-shadow);
	overflow: hidden;
	border: 1px solid rgba(12, 44, 100, 0.1);
}

.fl-team-card img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.fl-team-card div {
	padding: 18px;
}

.fl-team-card h3 {
	margin: 0 0 6px;
	font-size: 1.1rem;
}

.fl-values {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
	margin: 60px 0;
}

.fl-value-card {
	background: var(--fl-white);
	border-radius: 20px;
	padding: 24px;
	box-shadow: var(--fl-shadow);
	border: 1px solid rgba(12, 44, 100, 0.08);
}

.fl-faq-hero {
	padding: 100px 0 70px;
	background: linear-gradient(135deg, rgba(12, 44, 100, 0.11), rgba(5, 10, 26, 0.05));
}

.fl-faq-grid {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
	gap: 32px;
	align-items: start;
}

.fl-faq-accordion details {
	background: var(--fl-white);
	border-radius: 18px;
	margin-bottom: 14px;
	border: 1px solid rgba(12, 44, 100, 0.12);
	box-shadow: var(--fl-shadow);
	overflow: hidden;
}

.fl-faq-accordion summary {
	padding: 16px 20px;
	font-weight: 700;
	cursor: pointer;
	position: relative;
}

.fl-faq-accordion summary::after {
	content: '+';
	position: absolute;
	right: 20px;
	top: 18px;
	font-size: 1.4rem;
	transition: transform 0.25s ease;
}

.fl-faq-accordion details[open] summary::after {
	transform: rotate(45deg);
}

.fl-faq-accordion p {
	padding: 0 20px 20px;
	margin: 0;
	color: var(--fl-gray-700);
}

.fl-faq-aside {
	background: linear-gradient(135deg, var(--fl-blue), var(--fl-blue-alt));
	color: var(--fl-white);
	padding: 28px;
	border-radius: 24px;
	box-shadow: var(--fl-shadow);
}

.fl-faq-aside a {
	color: var(--fl-white);
	font-weight: 700;
}

@media (max-width: 960px) {
	.fl-faq-grid {
		grid-template-columns: 1fr;
	}
	.fl-about-hero__grid {
		grid-template-columns: 1fr;
	}
}

/* Lightbox gallery */
.fl-lightbox-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(5, 10, 26, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 200;
	padding: 20px;
}

.fl-lightbox-overlay img {
	max-width: min(900px, 90vw);
	max-height: 80vh;
	border-radius: 16px;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.fl-lightbox-close, .fl-lightbox-nav {
	position: absolute;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border: 1px solid rgba(255,255,255,0.3);
	border-radius: 999px;
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	font-size: 1.4rem;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.fl-lightbox-close:hover, .fl-lightbox-nav:hover {
	background: rgba(255, 255, 255, 0.25);
	transform: scale(1.05);
}

.fl-lightbox-close {
	top: 30px;
	right: 30px;
}

.fl-lightbox-nav--prev {
	left: 40px;
}

.fl-lightbox-nav--next {
	right: 40px;
}

@media (max-width: 720px) {
	.fl-lightbox-nav--prev { left: 10px; }
	.fl-lightbox-nav--next { right: 10px; }
}
