/* ==========================================================================
   Logo Showcase — frontend
   ========================================================================== */

.lshow {
	--lshow-accent: #6c4bf4;
	--lshow-ink: #14121f;
	--lshow-muted: #5b5772;
	--lshow-card: #ffffff;
	--lshow-border: rgba(20, 18, 31, 0.08);
	--lshow-gap: 28px;
	--lshow-radius: 16px;

	box-sizing: border-box;
	padding: 56px 0;
	color: var(--lshow-ink);
	overflow: hidden;
}

.lshow *,
.lshow *::before,
.lshow *::after {
	box-sizing: border-box;
}

.lshow-inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ---------- headings ---------- */

.lshow-head {
	margin: 0 0 32px;
}

.lshow-head.is-center {
	text-align: center;
}

.lshow-eyebrow {
	margin: 0 0 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--lshow-accent);
}

.lshow-title {
	margin: 0;
	font-size: clamp(22px, 3vw, 34px);
	line-height: 1.25;
	font-weight: 800;
	color: var(--lshow-ink);
}

/* ---------- slider shell ---------- */

.lshow-slider {
	position: relative;
	display: flex;
	align-items: stretch;
	gap: 8px;
	width: 100%;
	min-width: 0;
}

.lshow-viewport {
	flex: 1 1 0%;
	min-width: 0;
	overflow: hidden;
}

.lshow-track {
	display: flex;
	gap: var(--lshow-gap);
	transition: transform 0.45s cubic-bezier(0.4, 0.1, 0.2, 1);
	will-change: transform;
}

.lshow-slide {
	flex: 0 0 auto;
	min-width: 0;
}

/* ---------- nav buttons ---------- */

.lshow-nav {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(20, 18, 31, 0.06);
	color: var(--lshow-muted);
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.lshow-nav svg {
	width: 20px;
	height: 20px;
	display: block;
}

.lshow-nav:hover {
	background: rgba(108, 75, 244, 0.1);
	color: var(--lshow-accent);
}

.lshow-nav.is-filled {
	background: var(--lshow-accent);
	color: #fff;
}

.lshow-nav.is-filled:hover {
	background: var(--lshow-accent);
	filter: brightness(1.08);
	color: #fff;
}

.lshow-nav[disabled] {
	opacity: 0.35;
	cursor: default;
}

.lshow-nav[disabled]:hover {
	background: transparent;
	color: var(--lshow-muted);
}

.lshow-nav.is-filled[disabled]:hover {
	background: var(--lshow-accent);
	color: #fff;
}

[dir="rtl"] .lshow-nav svg {
	transform: scaleX(-1);
}

.lshow-nav-icon-img {
	display: block;
	object-fit: contain;
	border-radius: 4px;
}

.lshow-nav.lshow-prev .lshow-nav-icon-img {
	transform: scaleX(-1);
}

.lshow-nav-group {
	display: flex;
	flex: 0 0 auto;
	gap: 8px;
}

/* ---------- dots ---------- */

.lshow-dots {
	position: absolute;
	inset-inline: 0;
	bottom: -26px;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.lshow-dot {
	width: 26px;
	height: 3px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(20, 18, 31, 0.14);
	cursor: pointer;
	transition: background 0.2s ease;
}

.lshow-dot.is-active {
	background: var(--lshow-accent);
}

.lshow-logos .lshow-slider,
.lshow-results .lshow-slider {
	padding-bottom: 6px;
}

/* ---------- logos section ---------- */

.lshow-logo-slide {
	display: flex;
	align-items: center;
	justify-content: center;
}

.lshow-logo-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 64px;
	text-decoration: none;
}

.lshow-logo-img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.75;
	transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

a.lshow-logo-wrap:hover .lshow-logo-img {
	filter: grayscale(0);
	opacity: 1;
	transform: translateY(-2px);
}

.lshow-logo-text {
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: var(--lshow-ink);
	text-align: center;
}

/* ---------- testimonials section ---------- */

.lshow-split {
	display: grid;
	grid-template-columns: minmax(220px, 300px) 1fr;
	gap: 40px;
	align-items: center;
}

.lshow-split-head .lshow-head {
	margin-bottom: 0;
}

.lshow-testimonials .lshow-slider {
	flex-direction: column;
	align-items: stretch;
	gap: 16px;
}

.lshow-testimonials .lshow-nav-group {
	justify-content: flex-end;
}

.lshow-card {
	height: 100%;
	background: var(--lshow-card);
	border: 1px solid var(--lshow-border);
	border-radius: var(--lshow-radius);
	padding: 24px;
	box-shadow: 0 8px 24px rgba(20, 18, 31, 0.05);
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.lshow-card-logo {
	display: flex;
	align-items: center;
	height: 42px;
}

.lshow-card-logo .lshow-logo-img {
	max-height: 42px;
	filter: none;
	opacity: 1;
}

.lshow-card-quote {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 15px;
	line-height: 1.65;
	color: var(--lshow-muted);
	quotes: none;
}

.lshow-card-author {
	margin: auto 0 0;
	font-size: 14px;
	font-weight: 700;
	color: var(--lshow-ink);
}

/* ---------- results section ---------- */

.lshow-results-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: 32px;
}

.lshow-results-head .lshow-head {
	margin-bottom: 0;
}

.lshow-results-side {
	display: flex;
	align-items: center;
	gap: 18px;
	flex: 1 1 260px;
	justify-content: flex-end;
	min-width: 0;
}

.lshow-results-desc {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--lshow-muted);
	max-width: 340px;
	text-align: right;
}

.lshow-stat-slide {
	width: 100%;
}

.lshow-stat-card {
	height: 100%;
	background: var(--lshow-card);
	border: 1px solid var(--lshow-border);
	border-radius: var(--lshow-radius);
	box-shadow: 0 8px 24px rgba(20, 18, 31, 0.05);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.lshow-stat-image {
	width: 100%;
	aspect-ratio: 4 / 3;
	background: #eceaf9;
	overflow: hidden;
}

.lshow-stat-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.lshow-stat-body {
	padding: 16px 18px 18px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	flex: 1 1 auto;
}

.lshow-stat-main {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
}

.lshow-stat-main-text {
	min-width: 0;
}

.lshow-stat-label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: var(--lshow-accent);
	margin-bottom: 4px;
}

.lshow-stat-value {
	font-size: 21px;
	font-weight: 800;
	line-height: 1.15;
	color: var(--lshow-ink);
	word-break: break-word;
}

.lshow-stat-arrow {
	flex: 0 0 auto;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(108, 75, 244, 0.1);
	color: var(--lshow-accent);
	display: flex;
	align-items: center;
	justify-content: center;
}

.lshow-stat-arrow svg {
	width: 16px;
	height: 16px;
}

.lshow-stat-divider {
	height: 1px;
	background: var(--lshow-border);
}

.lshow-stat-metrics {
	display: flex;
	justify-content: space-between;
	gap: 10px;
}

.lshow-stat-metric {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.lshow-stat-metric-label {
	font-size: 11px;
	color: var(--lshow-muted);
	white-space: nowrap;
}

.lshow-stat-metric-value {
	font-size: 13px;
	font-weight: 700;
	color: var(--lshow-ink);
	white-space: nowrap;
}

.lshow-empty-note {
	padding: 16px;
	background: #fff8e5;
	border: 1px solid #f0d9a0;
	border-radius: 8px;
	text-align: center;
}

/* ---------- responsive ---------- */

@media (max-width: 900px) {
	.lshow-split {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.lshow-split-head {
		text-align: center;
	}

	.lshow-results-head {
		flex-direction: column;
		align-items: stretch;
	}

	.lshow-results-side {
		justify-content: space-between;
	}

	.lshow-results-desc {
		text-align: left;
		max-width: none;
	}

	.lshow {
		padding: 44px 0;
	}
}

@media (max-width: 600px) {
	.lshow {
		--lshow-gap: 16px;
	}

	.lshow-inner {
		padding: 0 16px;
	}

	.lshow-logo-wrap {
		height: 48px;
	}

	.lshow-results-side {
		display: none;
	}

	.lshow-nav-group {
		justify-content: center;
	}

	.lshow-testimonials .lshow-nav-group {
		justify-content: center;
	}

	.lshow-stat-value {
		font-size: 19px;
	}

	.lshow-stat-metric-label,
	.lshow-stat-metric-value {
		font-size: 11px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lshow-track {
		transition: none;
	}
}
