/* ==========================================================================
   LeaderSol multi-slide premium hero ("multislide"). Prefix: .lsms-
   Faithful to the provided design: Sora headings, cyan gradient stage,
   gold accents, floating tags, glass stat bar. Self-contained + scoped.
   ========================================================================== */
.lsms, .lsms * { box-sizing: border-box; }
.lsms {
	font-family: 'Sora', system-ui, -apple-system, sans-serif;
	width: 100%;
	margin: 0;
	padding: 0;
}

/* The slider lives inside `.lst-home`, whose stylesheet forces Quicksand
   !important on h1..h3/p/span/a/button. These two-class selectors out-specify
   those rules so the slider keeps its intended Sora / Manrope type. */
.lsms .lsms__title,
.lsms .lsms__kicker-text,
.lsms .lsms__btn,
.lsms .lsms__tag,
.lsms .lsms__stat-value {
	font-family: 'Sora', system-ui, -apple-system, sans-serif !important;
}
.lsms .lsms__body,
.lsms .lsms__stat-label {
	font-family: 'Manrope', system-ui, -apple-system, sans-serif !important;
}

/* ---- stage: full-width cyan band; decorations fill it edge-to-edge ---- */
.lsms__stage {
	position: relative;
	width: 100%;
	min-height: 550px;
	overflow: hidden;
	background: linear-gradient(135deg, #00d4ff 0%, #00c2ee 40%, #06a8d4 100%);
}

/* ---- inner: content stays aligned to the site container (max 1300 + 20px
   gutters, mirroring the header/footer .lstx-container exactly) ---- */
.lsms__inner {
	position: relative;
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 20px;
	min-height: 550px;
}

/* ---- viewport: a stationary clip box at the container's CONTENT width, so
   the off-screen prev/next slides are hidden while the cyan band stays full
   width. Overlay controls (stats/arrows/dots) live in .lsms__inner, above it. */
.lsms__viewport {
	position: relative;
	overflow: hidden;
	min-height: 550px;
}

/* decorative layers */
.lsms__spin {
	position: absolute; top: -40%; right: -18%; width: 900px; height: 900px;
	background: repeating-conic-gradient(rgba(255,255,255,.13) 0deg, rgba(255,255,255,.13) 3deg, transparent 3deg, transparent 11deg);
	animation: lsmsSpin 120s linear infinite; pointer-events: none;
}
.lsms__glow {
	position: absolute; top: -10%; right: 2%; width: 620px; height: 620px; border-radius: 50%;
	background: radial-gradient(circle, rgba(255,255,255,.4) 0%, transparent 62%); pointer-events: none;
}
/* Slide-change progress bar (kept). Sits at the very top of the band. */
.lsms__progress {
	position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 5;
	background: rgba(255,255,255,.2);
}
.lsms__progress i { display: block; height: 100%; width: 0; background: #FDD000; }
.lsms.is-playing .lsms__progress i { animation: lsmsBar var(--lsms-delay, 6.5s) linear forwards; }

/* ---- track / slides ---- */
.lsms__track {
	position: relative; height: 100%; min-height: 550px; display: flex;
	transition: transform .8s cubic-bezier(.65, 0, .2, 1); will-change: transform;
}
.lsms__slide {
	flex: 0 0 100%; min-height: 550px; display: grid; grid-template-columns: 1.02fr .98fr;
}

/* left content */
.lsms__content {
	position: relative; z-index: 3;
	padding: 70px 44px 70px 0; /* left:0 → text aligns to the site container edge */
	display: flex; flex-direction: column; justify-content: center; gap: 22px;
}
.lsms__kicker {
	position: relative; align-self: flex-start; display: flex; align-items: center; gap: 12px; padding: 11px 20px;
}
.lsms__kicker i { font-size: 18px; color: #FDD000; line-height: 1; }
.lsms__kicker-sep { width: 1px; height: 14px; background: rgba(255,255,255,.5); }
.lsms__kicker-text {
	font-weight: 700; font-size: 12.5px; letter-spacing: .22em; text-transform: uppercase; color: #fff;
}
.lsms__corner { position: absolute; width: 13px; height: 13px; }
.lsms__corner--tl { top: 0; left: 0; border-top: 2px solid #FDD000; border-left: 2px solid #FDD000; }
.lsms__corner--br { bottom: 0; right: 0; border-bottom: 2px solid #FDD000; border-right: 2px solid #FDD000; }
.lsms__title {
	margin: 0; font-family: 'Sora', system-ui, sans-serif; font-weight: 800; font-size: 52px;
	line-height: 1.04; letter-spacing: -.02em; color: #fff;
	text-wrap: balance;
}
.lsms__body {
	margin: 0; padding-left: 18px; border-left: 3px solid #FDD000;
	font-family: 'Manrope', system-ui, sans-serif; font-size: 15.5px; line-height: 1.68; color: #f0feff; max-width: 460px;
}
.lsms__cta { display: flex; align-items: center; gap: 16px; margin-top: 8px; flex-wrap: wrap; }
.lsms__btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	height: 48px; padding: 0 26px; font-weight: 700; font-size: 16px; line-height: 1;
	color: #0a3d4a; background: #FDD000; border-radius: 10px; text-decoration: none;
	box-shadow: 0 8px 18px rgba(253, 208, 0, .32); transition: transform .2s, box-shadow .2s;
}
.lsms__btn:hover { color: #0a3d4a; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(253, 208, 0, .42); }
.lsms__btn--ghost {
	color: #fff; background: transparent; height: 48px; padding: 0 22px;
	border: 1.5px solid rgba(255,255,255,.65); border-radius: 10px;
	box-shadow: none; font-weight: 600; font-size: 16px;
}
.lsms__btn--ghost:hover { color: #0a3d4a; background: #fff; border-color: #fff; }

/* right visual */
.lsms__visual { position: relative; }
.lsms__frame {
	position: absolute; inset: 56px 0 96px 0; border-radius: 22px; overflow: hidden;
	border: 1.5px solid rgba(255,255,255,.5); box-shadow: 0 24px 60px -30px rgba(0,80,110,.65);
	background: linear-gradient(135deg, #0bb4dd, #0090bd);
}
.lsms__frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lsms__frame-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(0,150,195,.1), rgba(0,110,150,.42)); }
.lsms__tag {
	position: absolute; z-index: 4; display: flex; align-items: center; gap: 8px;
	font-weight: 600; font-size: 13px; color: #0a3d4a; padding: 11px 17px; border-radius: 10px; white-space: nowrap;
}
.lsms__tag-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.lsms__tag--a { top: 34px; right: 40px; background: #FDD000; box-shadow: 0 14px 30px -10px rgba(0,0,0,.4); animation: lsmsFloatA 5s ease-in-out infinite; }
.lsms__tag--a .lsms__tag-dot { background: #0a3d4a; }
.lsms__tag--b { top: 214px; left: -46px; background: #fff; box-shadow: 0 16px 34px -10px rgba(0,0,0,.32); animation: lsmsFloatB 5.6s ease-in-out infinite; }
.lsms__tag--b .lsms__tag-dot { width: 8px; height: 8px; background: #00ccf7; }

/* ---- glass stat bar ---- */
.lsms__stats {
	position: absolute; bottom: 26px; left: 52%; right: 170px; z-index: 6; display: flex;
	background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.4);
	-webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
	border-radius: 16px; padding: 16px 8px; box-shadow: 0 18px 44px -22px rgba(0,60,80,.6);
}
.lsms__stat {
	flex: 1 1 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
	gap: 5px; padding: 2px 6px;
}
.lsms__stat + .lsms__stat { border-left: 1px solid rgba(255,255,255,.32); }
.lsms__stat-value { font-weight: 800; font-size: 23px; line-height: 1; color: #fff; white-space: nowrap; }
.lsms__stat-label {
	font-family: 'Manrope', system-ui, sans-serif; font-weight: 600; font-size: 10px; letter-spacing: .03em;
	color: #eafcff; text-transform: uppercase; text-align: center; white-space: nowrap;
}

/* ---- nav arrows ---- */
.lsms__nav {
	position: absolute; bottom: 40px; z-index: 7; width: 48px; height: 48px; border-radius: 50%;
	border: 1.5px solid rgba(255,255,255,.7); background: rgba(255,255,255,.2); color: #fff;
	font-size: 20px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center;
	transition: background .25s, color .25s, border-color .25s; padding: 0;
}
.lsms__nav:hover { background: #fff; color: #06a8d4; border-color: #fff; }
.lsms__nav--prev { right: 118px; }
.lsms__nav--next { right: 62px; }

/* ---- dots ---- (aligned to the content left edge, clear of the buttons) */
.lsms__dots { position: absolute; bottom: 30px; left: 20px; z-index: 7; display: flex; gap: 8px; }
.lsms__dot {
	width: 10px; height: 10px; border-radius: 20px; border: none; cursor: pointer; padding: 0;
	transition: width .4s, background .4s; background: rgba(255,255,255,.55);
}
.lsms__dot.is-active { width: 30px; background: #FDD000; }

/* ---- animations ---- */
@keyframes lsmsSpin { to { transform: rotate(360deg); } }
@keyframes lsmsBar { from { width: 0; } to { width: 100%; } }
@keyframes lsmsFloatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes lsmsFloatB { 0%,100% { transform: translateY(0); } 50% { transform: translateY(9px); } }
@media (prefers-reduced-motion: reduce) {
	.lsms__spin, .lsms__tag--a, .lsms__tag--b { animation: none; }
	.lsms__track { transition: none; }
	.lsms.is-playing .lsms__progress i { animation: none; width: 100%; }
}

/* ============================ RESPONSIVE ============================ */
@media (max-width: 1180px) {
	.lsms__title { font-size: 44px; }
	.lsms__content { padding: 56px 32px 56px 48px; }
	.lsms__stats { right: 130px; left: 48%; }
}
@media (max-width: 991px) {
	.lsms__stage { min-height: 0; }
	.lsms__inner { min-height: 0; padding: 0; }
	.lsms__viewport { min-height: 0; }
	.lsms__track, .lsms__slide { min-height: 0; }
	.lsms__slide { display: block; }
	.lsms__content { padding: 46px 28px 26px; text-align: left; }
	.lsms__title { font-size: 34px; }
	.lsms__body { max-width: none; }
	/* image becomes a static block below the copy */
	.lsms__visual { position: relative; height: 240px; margin: 0 28px; }
	.lsms__frame { position: absolute; inset: 0; }
	.lsms__tag { display: none; }
	/* stats become a static row; bottom margin reserves the control strip */
	.lsms__stats { position: static; left: auto; right: auto; margin: 22px 28px 76px; }
	/* controls pinned to the very bottom of the stage, clear of the stats row */
	.lsms__nav { bottom: 20px; }
	.lsms__nav--prev { right: 76px; }
	.lsms__nav--next { right: 20px; }
	.lsms__dots { bottom: 35px; left: 28px; }
}
@media (max-width: 560px) {
	.lsms__content { padding: 36px 20px 22px; }
	.lsms__title { font-size: 27px; }
	.lsms__kicker { padding: 9px 16px; }
	.lsms__kicker-text { font-size: 11px; letter-spacing: .16em; }
	.lsms__cta { gap: 10px; }
	.lsms__btn { height: 44px; padding: 0 20px; font-size: 14px; }
	.lsms__btn--ghost { height: 44px; padding: 0 18px; font-size: 14px; }
	.lsms__visual { margin: 0 20px; height: 200px; }
	.lsms__stats { margin: 20px 20px 72px; padding: 14px 4px; }
	.lsms__stat-value { font-size: 19px; }
	.lsms__nav { width: 42px; height: 42px; bottom: 18px; }
	.lsms__nav--prev { right: 62px; }
	.lsms__nav--next { right: 16px; }
	.lsms__dots { left: 20px; bottom: 32px; }
}
