/* ==========================================================================
   LSQ Field Block Slider — Figma 353:2039  v2.1
   ========================================================================== */

/* ── Root ── */
.lsq-field-block {
	position: relative;
	background: linear-gradient(135deg, #061225 0%, #0a1a35 55%, #0d2040 100%);
	border-radius: 24px;
	overflow: hidden;
	padding: 60px 0 48px;
	cursor: grab;
	user-select: none;
}

.lsq-field-block:active {
	cursor: grabbing;
}

/* Dotted decorative grid (bottom-left) */
.lsq-field-block::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 380px;
	height: 280px;
	background-image: radial-gradient(circle, rgba(59,130,246,.32) 1px, transparent 1px);
	background-size: 18px 18px;
	pointer-events: none;
	z-index: 0;
}

/* ── Slides wrapper ── */
.lsq-fb__slides-wrap {
	position: relative;
	z-index: 1;
}

/* ── Individual slide ── */
.lsq-fb__slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.45s ease, visibility 0.45s ease;
	pointer-events: none;
}

.lsq-fb__slide.active {
	position: relative;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition: opacity 0.45s ease;
}

/* ── Slide inner two-column layout ── */
.lsq-fb__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 48px;
	gap: 40px;
}

/* ══════════════════════════
   LEFT COLUMN
   ══════════════════════════ */

.lsq-fb__left {
	display: flex;
	flex-direction: column;
}

.lsq-fb__eyebrow {
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 1.44px;
    text-transform: uppercase !important;
    color: #5DA8FF;
    margin: 0 0 14px !important;
    padding: 0 !important;
    line-height: 18px !important;
}

.lsq-fb__heading {
	font-size: clamp(26px, 3vw, 40px) !important;
	color: #fff !important;
    padding: 0 !important;
	margin: 0px;
}

.lsq-fb__body {
	font-size: 15px !important;
	line-height: 1.65 !important;
	color: rgba(255,255,255,.65) !important;
	margin: 0 0 10px !important;
	padding: 0 !important;
	max-width: 520px;
}

/* ── Feature checklist ── */
.lsq-fb__features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 20px;
	margin-bottom: 36px;
}

.lsq-fb__feat-col {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.lsq-fb__frow {
	display: flex;
	align-items: center;
	gap: 9px;
	/* JS will override opacity/transform for animation — default is visible */
}

.lsq-fb__check {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
}

.lsq-fb__check svg {
	display: block;
}

.lsq-fb__feat-label {
	font-size: 14px !important;
	font-weight: 400 !important;
	color: #fff !important;
	line-height: 1.4 !important;
}

/* ── CTA button ── */
.lsq-fb__btn {
	display: inline-flex !important;
    align-items: center !important;
    gap: 9px !important;
    padding: 17px 26px !important;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .22) !important;
    border-radius: 100px !important;
    color: #0040DF !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    line-height: 1 !important;
    cursor: pointer;
    position: relative;
    align-self: flex-start;
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.lsq-fb__btn-glow {
	position: absolute;
	right: -8px;
	top: 50%;
	transform: translateY(-50%);
	width: 76px;
	height: 32px;
	background: radial-gradient(ellipse at center, rgba(77,120,255,.42) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.lsq-fb__btn:hover, .lsq-fb__btn:focus {
    background: #0040DF;
    border-color: #0040DF !important;
    box-shadow: unset;
    color: #fff !important;
    text-decoration: none !important;
    outline: none;
}
.lsq-fb__btn:hover svg path,
.lsq-fb__btn:focus svg path {
    stroke: #fff;
}
.lsq-fb__btn-label {
	position: relative;
	z-index: 1;
}

.lsq-fb__btn-arrow {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	transition: transform .2s ease;
}

.lsq-fb__btn:hover .lsq-fb__btn-arrow {
	transform: translateX(3px);
}

/* ══════════════════════════
   RIGHT COLUMN
   ══════════════════════════ */

.lsq-fb__right {
	position: relative;
	min-height: 480px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

/* Image 1 – background photo */
.lsq-fb__bg-wrap {
	position: absolute;
	inset: 0;
	border-radius: 18px;
	overflow: hidden;
	/* JS resets opacity to 0 then fades in; set a fallback for no-JS */
	opacity: 1;
}

.lsq-fb__bg-img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center !important;
	display: block !important;
}

/* Dark edge vignette over the photo */
.lsq-fb__bg-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(110deg, rgba(6,18,37,.55) 0%, rgba(6,18,37,.08) 55%, transparent 100%);
	border-radius: 18px;
}

/* Image 2 – overlay (phone mockup / app screenshot) */
.lsq-fb__overlay-wrap {
	position: relative;
	z-index: 2;
	width: 58%;
	flex-shrink: 0;
	margin-right: 12px;
	/* JS controls opacity + transform for the entrance animation */
}

.lsq-fb__overlay-img {
	display: block !important;
	width: 100% !important;
	height: auto !important;
	border-radius: 14px;
	box-shadow: 0 24px 64px rgba(0,0,0,.55);
}

/* ══════════════════════════
   NAVIGATION DOTS
   ══════════════════════════ */

.lsq-fb__nav {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 32px;
	padding-bottom: 4px;
}

.lsq-fb__dot {
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #0040DF;
	border: none;
	padding: 0;
	cursor: pointer;
	transition: background .25s ease, transform .25s ease;
	flex-shrink: 0;
}

.lsq-fb__dot.active {
	background: #8D9BB2;
    transform: scale(1.25);
    width: 12px;
    height: 12px;
}

.lsq-fb__dot:hover {
	background: rgba(255,255,255,.6);
}
/* ══════════════════════════
   RESPONSIVE
   ══════════════════════════ */

@media only screen and (max-width: 1199px) {
	.lsq-fb__inner {
		grid-template-columns: 1fr 1fr;
		padding: 0 32px;
		gap: 28px;
	}
	.lsq-fb__overlay-wrap {
		width: 62%;
	}
}

@media only screen and (max-width: 991px) {
	.lsq-field-block {
		padding: 48px 0 40px;
		border-radius: 16px;
	}
	.lsq-fb__inner {
		grid-template-columns: 1fr;
		padding: 0 24px;
		gap: 36px;
	}
	.lsq-fb__right {
		min-height: 320px;
		justify-content: center;
	}
	.lsq-fb__overlay-wrap {
		width: 52%;
		margin-right: 0;
	}
}

@media only screen and (max-width: 767px) {
	.lsq-field-block {
		border-radius: 12px;
		padding: 40px 0 36px;
	}
	.lsq-fb__inner {
		padding: 0 20px;
	}
	.lsq-fb__heading {
		font-size: clamp(22px, 6vw, 30px) !important;
	}
	.lsq-fb__features {
		grid-template-columns: 1fr 1fr;
	}
	.lsq-fb__right {
		min-height: 260px;
	}
	.lsq-fb__overlay-wrap {
		width: 58%;
	}
}

@media only screen and (max-width: 479px) {
	.lsq-fb__features {
		grid-template-columns: 1fr;
		gap: 15px 20px;
	}
	.lsq-fb__overlay-wrap {
		width: 72%;
	}
}
