/* FirmaJet — Spark hero + top bar (fj-tbar) */

/* ═══ HERO SPARK (referans tasarım) ═══ */
.fj-hero--spark {
	position: relative;
	overflow: hidden;
	padding: clamp(1.75rem, 4vw, 2.75rem) 0 clamp(2rem, 4vw, 3rem);
	background: #ffffff;
	color: var(--fj-color-text, #111827);
	border-bottom: 1px solid #f0f0f0;
}

.fj-hero--spark.fj-hero--has-bg {
	background-color: #ffffff;
	background-image: radial-gradient(circle at 1px 1px, rgba(15, 23, 42, 0.07) 1px, transparent 0);
	background-size: 22px 22px;
	color: var(--fj-color-text, #111827);
	border-bottom-color: #ececec;
}

.fj-hero-spark__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
	opacity: 0.22;
}

.fj-hero-spark__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.88) 45%, rgba(255, 255, 255, 0.55) 100%);
	pointer-events: none;
}

.fj-hero--has-bg .fj-hero-spark {
	position: relative;
	z-index: 2;
}

.fj-hero--spark::before,
.fj-hero--spark::after {
	display: none !important;
	content: none !important;
}

.fj-hero-spark__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: center;
}

@media (min-width: 992px) {
	.fj-hero-spark__grid {
		grid-template-columns: 1.12fr 0.88fr;
		gap: 2.5rem;
	}
}

.fj-hero-spark__content {
	width: 100%;
	min-width: 0;
}

/* Badge */
.fj-hero-spark__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin-bottom: 0.85rem;
	padding: 0.35rem 0.8rem;
	border-radius: 8px;
	background: #f8f8f8;
	border: 1px solid #ececec;
	font-size: 0.75rem;
	font-weight: 600;
	color: #4b5563;
}

.fj-hero-spark__badge-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--fj-spark-red, var(--fj-color-primary, #e33030));
	flex-shrink: 0;
}

/* Title */
.fj-hero-spark__title {
	margin: 0 0 0.65rem;
	font-size: clamp(1.65rem, 3.8vw, 2.65rem);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.03em;
	color: var(--fj-hero-title, var(--fj-color-text, #111827));
}

.fj-hero-spark__title span {
	display: block;
}

.fj-hero-spark__desc {
	margin: 0 0 1.35rem;
	max-width: 560px;
	font-size: 1rem;
	line-height: 1.55;
	color: var(--fj-hero-muted, #6b7280);
}

@media (min-width: 992px) {
	.fj-hero-spark__desc {
		max-width: none;
	}
}

/* Unified search bar */
.fj-hero-spark__search-wrap {
	margin-bottom: 1.35rem;
	width: 100%;
}

.fj-search-form--hero-spark {
	margin: 0;
	width: 100%;
}

.fj-hero-spark__search {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	width: 100%;
	padding: 0.4rem 0.4rem 0.4rem 1.25rem;
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 8px;
	box-shadow: 0 10px 36px rgba(17, 24, 39, 0.09);
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.fj-hero-spark__search-row {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	flex: 1 1 auto;
	min-width: 0;
}

.fj-hero-spark__search:focus-within {
	border-color: #d1d5db;
	box-shadow: 0 12px 40px rgba(17, 24, 39, 0.12);
}

.fj-hero-spark__search-icon {
	display: inline-flex;
	color: #9ca3af;
	flex-shrink: 0;
}

.fj-hero-spark__search-icon svg {
	width: 20px;
	height: 20px;
}

.fj-hero-spark__search-input {
	flex: 1;
	min-width: 0;
	height: 52px;
	padding: 0;
	border: none;
	background: transparent;
	font-size: 1rem;
	font-weight: 500;
	color: var(--fj-color-text, #111827);
}

.fj-hero-spark__search-input::placeholder {
	color: #9ca3af;
}

.fj-hero-spark__search-input:focus {
	outline: none;
}

.fj-hero-spark__search-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	flex-shrink: 0;
	height: 52px;
	min-width: 118px;
	padding: 0 1.5rem;
	border: none;
	border-radius: 8px;
	background: var(--fj-spark-red, var(--fj-color-primary, #e33030));
	color: #fff !important;
	font-size: 0.95rem;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.15s ease;
}

.fj-hero-spark__search-btn:hover {
	background: var(--fj-spark-red-hover, var(--fj-color-primary-dark, #c62828));
	transform: translateY(-1px);
}

.fj-hero-spark__search-btn svg {
	width: 16px;
	height: 16px;
}

@media (max-width: 991px) {
	.fj-hero--spark {
		padding: 1.25rem 0 1.75rem;
	}

	.fj-hero-spark__grid {
		gap: 1.5rem;
	}

	.fj-hero-spark__title {
		font-size: clamp(1.55rem, 6.5vw, 2rem);
	}

	.fj-hero-spark__desc {
		margin-bottom: 1.15rem;
		font-size: 0.95rem;
	}

	/* İçerik üstte, görseller altta (referans mobil) */
	.fj-hero-spark__content {
		order: 1;
	}

	.fj-hero-spark__visual {
		order: 2;
	}

	/* Mobil arama: input üstte, buton altta tam genişlik */
	.fj-hero-spark__search {
		flex-direction: column;
		align-items: stretch;
		gap: 0.7rem;
		padding: 0.85rem;
		border-radius: 8px;
	}

	.fj-hero-spark__search-btn {
		width: 100%;
		min-width: 0;
		height: 50px;
		border-radius: 8px;
	}

	.fj-hero-spark__trust {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0.4rem;
	}

	.fj-hero-spark__trust li {
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		text-align: center;
		gap: 0.25rem;
		font-size: 0.68rem;
		line-height: 1.25;
		min-width: 0;
	}

	.fj-hero-spark__search-row {
		width: 100%;
	}

	.fj-hero-spark__search-input {
		height: 44px;
		font-size: 0.92rem;
	}
	.fj-hero-spark__trust-icon {
		width: 28px;
		height: 28px;
	}

	.fj-hero-spark__tile--main {
		display: none;
	}

	.fj-hero-spark__mosaic {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
		max-width: 100%;
		gap: 0.65rem;
	}

	.fj-hero-spark__tile--1,
	.fj-hero-spark__tile--2 {
		aspect-ratio: 1;
		border-radius: 8px;
	}
}

/* Trust indicators */
.fj-hero-spark__trust {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.fj-hero-spark__trust li {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--fj-hero-muted, #374151);
	min-width: 0;
}

.fj-hero-spark__trust strong {
	font-weight: 800;
	color: var(--fj-color-text, #111827);
}

.fj-hero-spark__trust-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	border: 1.5px solid color-mix(in srgb, var(--fj-color-primary, #e33030) 35%, transparent);
	background: color-mix(in srgb, var(--fj-color-primary, #e33030) 8%, transparent);
	color: var(--fj-color-primary, #e33030);
}

.fj-hero-spark__trust-icon svg {
	width: 17px;
	height: 17px;
}

/* Image mosaic */
.fj-hero-spark__visual {
	display: flex;
	justify-content: center;
}

.fj-hero-spark__mosaic {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 0.75rem;
	width: 100%;
	max-width: 520px;
}

.fj-hero-spark__tile {
	margin: 0;
	overflow: hidden;
	border-radius: 18px;
	box-shadow: 0 8px 24px rgba(17, 24, 39, 0.1);
}

.fj-hero-spark__tile img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fj-hero-spark__tile--1,
.fj-hero-spark__tile--2 {
	aspect-ratio: 4 / 3;
}

.fj-hero-spark__tile--main {
	grid-column: 1 / -1;
	aspect-ratio: 16 / 9;
}

/* desktop-only mosaic sizing */
@media (min-width: 992px) {
	.fj-hero-spark__mosaic {
		max-width: 100%;
	}
}

/* ── Firma Konum pro hero ── */
.fj-hero--pro {
	background:
		radial-gradient(ellipse 70% 55% at 100% 0%, rgba(220, 38, 38, 0.08), transparent 55%),
		radial-gradient(ellipse 50% 40% at 0% 100%, rgba(15, 76, 129, 0.06), transparent 50%),
		#ffffff;
}

.fj-hero--pro .fj-hero-spark__glow {
	position: absolute;
	inset: auto auto -20% -10%;
	width: 42%;
	height: 55%;
	background: radial-gradient(circle, rgba(220, 38, 38, 0.12), transparent 70%);
	pointer-events: none;
	z-index: 0;
}

.fj-hero--pro .fj-hero-spark {
	position: relative;
	z-index: 1;
}

.fj-hero--pro .fj-hero-spark__badge {
	background: #fef2f2;
	border-color: #fecaca;
	color: #991b1b;
}

.fj-hero--pro .fj-hero-spark__title span {
	color: var(--fj-color-primary, #dc2626);
	display: inline;
}

.fj-hero--pro .fj-hero-spark__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 1rem 0 1.25rem;
}

.fj-hero--pro .fj-hero-spark__trust {
	gap: 0.75rem;
}

.fj-hero--pro .fj-hero-spark__trust li {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	padding: 0.65rem 0.85rem;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.fj-hero--pro .fj-hero-spark__float-card {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	z-index: 3;
	padding: 0.75rem 1rem;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid #e5e7eb;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
	max-width: 220px;
}

.fj-hero--pro .fj-hero-spark__float-label {
	display: block;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #64748b;
	margin-bottom: 0.2rem;
}

.fj-hero--pro .fj-hero-spark__float-card strong {
	font-size: 0.95rem;
	color: #0f172a;
}

.fj-hero--pro .fj-hero-spark__mosaic {
	position: relative;
}

@media (max-width: 991px) {
	.fj-hero--pro .fj-hero-spark__float-card {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.fj-hero--pro * {
		animation: none !important;
		transition: none !important;
	}
}

/* ═══════════════════════════════════════════
   Marquee Hero (AnimatedMarquee-style)
   ═══════════════════════════════════════════ */
.fj-hero--marquee {
	position: relative;
	isolation: isolate;
	display: block;
	min-height: 0;
	padding: clamp(1.75rem, 4vw, 2.75rem) 1rem 0;
	overflow: hidden;
	background:
		radial-gradient(ellipse 80% 50% at 50% -10%, rgba(220, 38, 38, 0.10), transparent 55%),
		radial-gradient(ellipse 60% 40% at 100% 40%, rgba(15, 76, 129, 0.06), transparent 50%),
		#fafafa;
	text-align: center;
	border-bottom: 1px solid #ececec;
}

.fj-hero-marquee__atmosphere {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: radial-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px);
	background-size: 22px 22px;
	mask-image: linear-gradient(to bottom, black 0%, black 55%, transparent 92%);
	pointer-events: none;
}

.fj-hero-marquee__content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 820px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 0.35rem;
}

.fj-hero-marquee__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin-bottom: 0.85rem;
	padding: 0.4rem 0.95rem;
	border-radius: 999px;
	border: 1px solid #e5e7eb;
	background: rgba(255, 255, 255, 0.75);
	backdrop-filter: blur(8px);
	font-size: 0.8125rem;
	font-weight: 600;
	color: #64748b;
}

.fj-hero-marquee__badge-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--fj-color-primary, #dc2626);
	box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.18);
}

.fj-hero-marquee__brand {
	margin: 0 0 0.35rem;
	font-size: clamp(1.75rem, 4vw, 2.35rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.1;
	color: #0f172a;
}

.fj-hero-marquee__title {
	margin: 0;
	font-size: clamp(1.85rem, 5vw, 3.35rem);
	font-weight: 800;
	letter-spacing: -0.045em;
	line-height: 1.08;
	color: #0f172a;
}

.fj-hero-marquee__title-accent {
	display: inline;
	color: var(--fj-color-primary, #dc2626);
}

.fj-hero-marquee__desc {
	margin: 1rem 0 0;
	max-width: 34rem;
	font-size: clamp(1rem, 2vw, 1.125rem);
	line-height: 1.65;
	color: #64748b;
}

.fj-hero-marquee__search {
	width: 100%;
	max-width: 720px;
	margin-top: 1.35rem;
}

.fj-hero-marquee__search .fj-search-form--hero-spark {
	box-shadow: none;
	background: transparent;
}

/* Modern segmented hero search */
.fj-hero-search {
	display: flex;
	align-items: stretch;
	width: 100%;
	padding: 0.35rem;
	border-radius: 1rem;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow:
		0 1px 2px rgba(15, 23, 42, 0.04),
		0 12px 32px rgba(15, 23, 42, 0.08);
}

.fj-hero-search__seg {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	min-width: 0;
	padding: 0.35rem 0.75rem;
}

.fj-hero-search__seg--q {
	flex: 1.4 1 0;
}

.fj-hero-search__seg--cat,
.fj-hero-search__seg--city {
	flex: 0.9 1 0;
}

.fj-hero-search__icon {
	display: inline-flex;
	color: #94a3b8;
	flex-shrink: 0;
}

.fj-hero-search__icon .lucide {
	width: 16px;
	height: 16px;
}

.fj-hero-search__input,
.fj-hero-search__select {
	width: 100%;
	min-width: 0;
	border: 0;
	outline: 0;
	background: transparent;
	font: inherit;
	font-size: 0.9rem;
	font-weight: 500;
	color: #0f172a;
	height: 2.35rem;
	padding: 0;
	appearance: none;
	-webkit-appearance: none;
}

.fj-hero-search__input::placeholder,
.fj-hero-search__select {
	color: #64748b;
}

.fj-hero-search__select {
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0 center;
	padding-right: 1rem;
}

.fj-hero-search__rule {
	width: 1px;
	align-self: stretch;
	margin: 0.45rem 0;
	background: #e2e8f0;
	flex-shrink: 0;
}

.fj-hero-search__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	flex-shrink: 0;
	margin: 0.1rem;
	padding: 0 1.15rem;
	border: 0;
	border-radius: 0.75rem;
	background: var(--fj-color-primary, #dc2626);
	color: #fff;
	font: inherit;
	font-size: 0.875rem;
	font-weight: 650;
	letter-spacing: 0.01em;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.15s ease;
}

.fj-hero-search__btn:hover {
	background: #b91c1c;
}

.fj-hero-search__btn .lucide {
	width: 15px;
	height: 15px;
}

.fj-hero-search:focus-within {
	border-color: rgba(220, 38, 38, 0.28);
	box-shadow:
		0 0 0 3px rgba(220, 38, 38, 0.1),
		0 12px 32px rgba(15, 23, 42, 0.08);
}

.fj-hero-marquee__cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	margin-top: 1rem;
}

.fj-hero-marquee__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	padding: 0.55rem 1rem;
	border-radius: 0.65rem;
	background: var(--fj-color-primary, #dc2626);
	color: #fff !important;
	font-weight: 650;
	font-size: 0.8125rem;
	letter-spacing: 0.01em;
	line-height: 1;
	box-shadow: 0 4px 12px rgba(220, 38, 38, 0.18);
	transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.fj-hero-marquee__btn-icon,
.fj-hero-marquee__link-icon {
	display: inline-flex;
	line-height: 0;
}

.fj-hero-marquee__btn .lucide,
.fj-hero-marquee__link .lucide {
	width: 14px;
	height: 14px;
}

.fj-hero-marquee__btn:hover {
	background: #b91c1c;
	transform: translateY(-1px);
	box-shadow: 0 6px 14px rgba(220, 38, 38, 0.22);
	color: #fff !important;
}

.fj-hero-marquee__link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.55rem 0.9rem;
	border-radius: 0.65rem;
	border: 1px solid #e2e8f0;
	background: #fff;
	font-weight: 600;
	font-size: 0.8125rem;
	line-height: 1;
	color: #0f172a !important;
	text-decoration: none !important;
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.fj-hero-marquee__link:hover {
	border-color: #cbd5e1;
	color: var(--fj-color-primary, #dc2626) !important;
	background: #f8fafc;
}

.fj-hero-marquee__stats {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.65rem 1.35rem;
	list-style: none;
	margin: 1.35rem 0 0;
	padding: 0;
	font-size: 0.875rem;
	color: #64748b;
}

.fj-hero-marquee__stats strong {
	color: #0f172a;
	font-weight: 800;
	margin-right: 0.2rem;
}

/* Marquee rail */
.fj-hero-marquee__rail {
	position: relative;
	z-index: 1;
	width: 100%;
	margin-top: 1.25rem;
	padding: 0.25rem 0 1.25rem;
	mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
	-webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.fj-hero-marquee__fade {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(90deg, #fafafa 0%, transparent 8%, transparent 92%, #fafafa 100%);
	z-index: 2;
}

.fj-hero-marquee__track {
	display: flex;
	gap: 1rem;
	width: max-content;
	animation: fj-marquee-x 45s linear infinite;
	will-change: transform;
}

.fj-hero-marquee__card {
	position: relative;
	flex: 0 0 auto;
	width: clamp(8.5rem, 18vw, 11.5rem);
	aspect-ratio: 3 / 4;
	margin: 0;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.14);
	transform: rotate(var(--fj-tilt, 0deg));
	background: #e2e8f0;
}

.fj-hero-marquee__card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.fj-hero-marquee__card figcaption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1.6rem 0.55rem 0.55rem;
	background: linear-gradient(to top, rgba(15, 23, 42, 0.78), transparent);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 600;
	line-height: 1.25;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

@keyframes fj-marquee-x {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

.fj-hero-marquee__reveal {
	opacity: 0;
	transform: translateY(12px);
	animation: fj-hero-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.fj-hero-marquee__badge { animation-delay: 0.05s; }
.fj-hero-marquee__title { animation-delay: 0.15s; }
.fj-hero-marquee__desc { animation-delay: 0.3s; }
.fj-hero-marquee__search { animation-delay: 0.4s; }
.fj-hero-marquee__cta { animation-delay: 0.5s; }
.fj-hero-marquee__stats { animation-delay: 0.58s; }

@keyframes fj-hero-fade-up {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 767px) {
	.fj-hero--marquee {
		min-height: auto;
		padding-top: 1.5rem;
	}
	.fj-hero-marquee__card {
		width: 7.25rem;
	}
	.fj-hero-marquee__track {
		animation-duration: 36s;
	}
}

@media (prefers-reduced-motion: reduce) {
	.fj-hero-marquee__track {
		animation: none;
		flex-wrap: wrap;
		justify-content: center;
		width: 100%;
		max-width: 960px;
		margin: 0 auto;
		padding: 0 1rem;
	}
	.fj-hero-marquee__reveal {
		opacity: 1;
		transform: none;
		animation: none;
	}
	.fj-hero-marquee__btn:hover {
		transform: none;
	}
}

.fj-hero-marquee__rail:hover .fj-hero-marquee__track { animation-play-state: paused; }


/* ── Reset conflicting base .fj-hero styles for marquee layout ── */
.fj-hero.fj-hero--marquee {
	position: relative;
	isolation: isolate;
	display: block !important;
	min-height: 0 !important;
	max-height: none !important;
	height: auto !important;
	padding: clamp(1.5rem, 3.5vw, 2.5rem) 1rem 1.25rem !important;
	overflow: hidden;
	overflow-x: clip;
	color: #0f172a !important;
	background:
		radial-gradient(ellipse 80% 50% at 50% -10%, rgba(220, 38, 38, 0.10), transparent 55%),
		radial-gradient(ellipse 60% 40% at 100% 40%, rgba(15, 76, 129, 0.06), transparent 50%),
		#fafafa !important;
	background-image: none, none, none;
	background-color: #fafafa !important;
	text-align: center;
	border-bottom: 1px solid #ececec;
}

.fj-hero.fj-hero--marquee::before,
.fj-hero.fj-hero--marquee::after {
	content: none !important;
	display: none !important;
	background: none !important;
	opacity: 0 !important;
}

.fj-hero.fj-hero--marquee .fj-hero-marquee__content,
.fj-hero.fj-hero--marquee .fj-hero-marquee__rail {
	position: relative;
	z-index: 2;
}

.fj-hero.fj-hero--marquee .fj-hero-marquee__atmosphere {
	z-index: 0;
}

/* Prevent 100vw horizontal scroll */
.fj-hero.fj-hero--marquee .fj-hero-marquee__rail {
	width: 100%;
	max-width: 100%;
	left: 0;
	margin-left: 0;
	overflow: hidden;
}

.fj-hero.fj-hero--marquee .fj-hero-marquee__track {
	padding-left: 1rem;
}

/* Search form readable on light hero */
.fj-hero.fj-hero--marquee .fj-search-form--hero-spark,
.fj-hero.fj-hero--marquee .fj-hero-spark__search {
	background: #fff;
	color: #0f172a;
}

.fj-hero.fj-hero--marquee .fj-hero-spark__search-input {
	color: #0f172a;
	background: transparent;
}

.fj-hero.fj-hero--marquee .fj-hero-spark__search-btn {
	background: var(--fj-color-primary, #dc2626);
	color: #fff;
}

/* Keep text dark on light */
.fj-hero.fj-hero--marquee .fj-hero-marquee__title {
	color: #0f172a !important;
}

.fj-hero.fj-hero--marquee .fj-hero-search {
	background: #fff;
}

.fj-hero.fj-hero--marquee .fj-hero-marquee__desc,
.fj-hero.fj-hero--marquee .fj-hero-marquee__stats {
	color: #64748b !important;
}

.fj-hero.fj-hero--marquee .fj-hero-marquee__stats strong {
	color: #0f172a !important;
}

/* Compact cards so page below isn't crushed */
.fj-hero.fj-hero--marquee .fj-hero-marquee__card {
	width: clamp(7rem, 14vw, 9.5rem);
}

@media (max-width: 767px) {
	.fj-hero.fj-hero--marquee {
		min-height: 0 !important;
		padding: 1.25rem 1rem 4.5rem !important; /* room for bottom nav */
	}
	.fj-hero.fj-hero--marquee .fj-hero-marquee__card {
		width: 6.5rem;
	}
}



/* Mobile compactness for marquee hero */
@media (max-width: 767px) {
	.fj-hero.fj-hero--marquee {
		padding: 1rem 0.85rem 5.75rem !important;
	}
	.fj-hero.fj-hero--marquee .fj-hero-marquee__title {
		font-size: 1.55rem;
		line-height: 1.15;
	}
	.fj-hero.fj-hero--marquee .fj-hero-marquee__desc {
		font-size: 0.92rem;
		margin-top: 0.65rem;
	}
	.fj-hero.fj-hero--marquee .fj-hero-marquee__search {
		margin-top: 0.9rem;
	}
	.fj-hero.fj-hero--marquee .fj-hero-search {
		flex-direction: column;
		align-items: stretch;
		padding: 0.45rem;
		border-radius: 0.9rem;
		gap: 0;
	}
	.fj-hero.fj-hero--marquee .fj-hero-search__rule {
		width: auto;
		height: 1px;
		margin: 0 0.55rem;
	}
	.fj-hero.fj-hero--marquee .fj-hero-search__seg {
		padding: 0.2rem 0.55rem;
	}
	.fj-hero.fj-hero--marquee .fj-hero-search__btn {
		width: 100%;
		height: 44px;
		margin-top: 0.25rem;
	}
	.fj-hero.fj-hero--marquee .fj-hero-marquee__cta {
		gap: 0.45rem;
		margin-top: 0.85rem;
	}
	.fj-hero.fj-hero--marquee .fj-hero-marquee__btn,
	.fj-hero.fj-hero--marquee .fj-hero-marquee__link {
		padding: 0.5rem 0.85rem;
		font-size: 0.78rem;
	}
	.fj-hero.fj-hero--marquee .fj-hero-marquee__rail {
		margin-top: 0.85rem;
		padding-bottom: 0.35rem;
	}
	.fj-hero.fj-hero--marquee .fj-hero-marquee__card {
		width: 5.6rem;
		border-radius: 0.75rem;
	}
	.fj-hero.fj-hero--marquee .fj-hero-marquee__stats {
		margin-top: 0.85rem;
		gap: 0.5rem 0.9rem;
		font-size: 0.8rem;
	}
}

