/* ==========================================================================
   setupERP — SalesPlay-inspired clean ERP landing page
   Single, conflict-free stylesheet. Font: Poppins (like SalesPlay).
   ========================================================================== */

:root {
	--sp-primary: #8b3fd6;
	--sp-primary-dark: #6d2db0;
	--sp-primary-light: #f3ebfc;
	--sp-primary-muted: rgba(139, 63, 214, 0.14);
	--sp-accent: #22c55e;
	--sp-accent-dark: #16a34a;
	--sp-accent-light: #f0faf5;
	--sp-accent-muted: rgba(34, 197, 94, 0.14);
	--sp-dark: #1a1a2e;
	--sp-text: #2d2a35;
	--sp-text-muted: #5c5668;
	--sp-border: #e2ebe6;
	--sp-border-brand: rgba(34, 197, 94, 0.24);
	--sp-bg: #ffffff;
	--sp-bg-soft: #f8fcf9;
	--sp-bg-brand: var(--sp-accent-light);
	--sp-gradient-brand: linear-gradient(135deg, var(--sp-primary) 0%, #9b5de5 48%, var(--sp-accent) 100%);
	--sp-gradient-accent: linear-gradient(135deg, var(--sp-accent-dark) 0%, var(--sp-accent) 100%);
	--sp-gradient-cta: linear-gradient(135deg, #7a35c4 0%, var(--sp-primary) 42%, #5a2d9e 100%);
	--sp-gradient-hero: linear-gradient(
		118deg,
		var(--sp-accent-light) 0%,
		#f4fbf7 28%,
		var(--sp-bg) 62%,
		var(--sp-bg) 100%
	);
	--sp-shadow: 0 2px 16px rgba(34, 197, 94, 0.06);
	--sp-shadow-lg: 0 12px 40px rgba(34, 197, 94, 0.1);
	--sp-shadow-brand: 0 10px 32px rgba(34, 197, 94, 0.16);
	--sp-radius: 8px;
	--sp-radius-lg: 12px;
	--sp-container: 1200px;
	--sp-header-h: 120px;
	--sp-hero-bg: #ffffff;
	--sp-hero-tint: var(--sp-primary-light);
	--sp-footer-bg: #1a1228;
	--sp-font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--sp-transition: 0.25s ease;
	--sp-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
	--sp-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.setuperp-landing {
	font-family: var(--sp-font);
	color: var(--sp-text);
	line-height: 1.65;
	font-size: 16px;
	overflow-x: hidden;
	background: var(--sp-bg);
	-webkit-font-smoothing: antialiased;
}

.sp-site {
	position: relative;
	opacity: 0;
	animation: spFadeUp 0.5s var(--sp-ease-out) forwards;
	background:
		radial-gradient(ellipse 80% 50% at 0% 0%, rgba(34, 197, 94, 0.05) 0%, transparent 55%),
		radial-gradient(ellipse 60% 40% at 100% 8%, rgba(34, 197, 94, 0.04) 0%, transparent 50%),
		var(--sp-bg);
}

@media (prefers-reduced-motion: reduce) {
	.sp-site { animation: none; opacity: 1; }
}

.setuperp-landing img { max-width: 100%; height: auto; display: block; }
.setuperp-landing a { text-decoration: none; color: inherit; }
.setuperp-landing ul, .setuperp-landing ol { margin: 0; padding: 0; list-style: none; }
.setuperp-landing button { font-family: var(--sp-font); }
.setuperp-landing button:not(.sp-btn) {
	background-color: transparent;
	border-color: transparent;
}
.setuperp-landing button:not(.sp-btn):hover,
.setuperp-landing button:not(.sp-btn):focus,
.setuperp-landing button:not(.sp-btn):focus-visible {
	background-color: transparent;
	border-color: transparent;
	box-shadow: none;
}

.sp-container {
	max-width: var(--sp-container);
	margin: 0 auto;
	padding: 0 24px;
}

/* ---- Top Bar ---- */
.sp-topbar {
	background: var(--sp-gradient-cta);
	color: rgba(255, 255, 255, 0.94);
	font-size: 13px;
	padding: 7px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sp-topbar__inner {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.sp-topbar__contact {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: center;
}

.sp-topbar a:hover { color: #fff; }

/* ==========================================================================
   HEADER & NAVIGATION  (one authoritative implementation)
   ========================================================================== */
.sp-header {
	position: sticky;
	top: 0;
	z-index: 9000;
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid var(--sp-border-brand);
	transition: box-shadow 0.35s var(--sp-ease-out), background 0.35s ease, backdrop-filter 0.35s ease;
}

.sp-header.is-scrolled {
	box-shadow: 0 4px 24px rgba(109, 45, 176, 0.1);
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.sp-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	height: var(--sp-header-h);
}

/* Logo */
.sp-logo {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	height: var(--sp-header-h);
	line-height: 0;
}

.setuperp-landing .sp-logo__img {
	display: block;
	height: 108px;
	width: 108px;
	max-width: none;
	object-fit: contain;
}

/* Panel wraps nav + actions (becomes the drawer on mobile) */
.sp-header__panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex: 1 1 auto;
	min-width: 0;
	gap: 28px;
}

/* Primary nav */
.sp-nav { flex: 1 1 auto; min-width: 0; }

.sp-nav__list {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 2px;
}

.sp-nav__item { position: relative; display: flex; align-items: center; }

.sp-nav__link,
.sp-nav__trigger {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	height: 40px;
	padding: 0 14px;
	border: 0;
	background: none;
	color: var(--sp-text);
	font-size: 14.5px;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
	cursor: pointer;
	border-radius: 6px;
	transition: color var(--sp-transition), background var(--sp-transition);
}

.sp-nav__item--dropdown .sp-nav__link { padding-right: 2px; }
.sp-nav__item--dropdown .sp-nav__trigger { padding: 0 8px 0 2px; }

.sp-nav__link:hover,
.sp-nav__trigger:hover,
.sp-nav__item:hover .sp-nav__link,
.sp-nav__item:hover > .sp-nav__trigger,
.sp-nav__item:focus-within > .sp-nav__trigger {
	color: var(--sp-primary);
}

.sp-nav__item.is-active > .sp-nav__link { color: var(--sp-primary); font-weight: 600; }

.sp-nav__chevron {
	width: 13px;
	height: 13px;
	opacity: 0.55;
	transition: transform var(--sp-transition);
	flex-shrink: 0;
}

.sp-nav__item:hover .sp-nav__chevron,
.sp-nav__item.is-open .sp-nav__chevron { transform: rotate(180deg); }

/* Dropdowns */
.sp-nav__dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 230px;
	padding-top: 10px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	pointer-events: none;
	transition: opacity var(--sp-transition), transform var(--sp-transition), visibility var(--sp-transition);
	z-index: 9100;
}

.sp-nav__item:hover > .sp-nav__dropdown,
.sp-nav__item:focus-within > .sp-nav__dropdown,
.sp-nav__item.is-open > .sp-nav__dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.sp-nav__item--dropdown-wide > .sp-nav__dropdown { left: 50%; transform: translateX(-50%) translateY(8px); }
.sp-nav__item--dropdown-wide:hover > .sp-nav__dropdown,
.sp-nav__item--dropdown-wide:focus-within > .sp-nav__dropdown,
.sp-nav__item--dropdown-wide.is-open > .sp-nav__dropdown { transform: translateX(-50%) translateY(0); }

.sp-nav__dropdown-inner {
	background: #fff;
	border: 1px solid var(--sp-border);
	border-radius: var(--sp-radius);
	box-shadow: 0 16px 44px rgba(0, 0, 0, 0.13);
	padding: 8px;
}

.sp-nav__dropdown-inner--grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(160px, 1fr));
	min-width: 390px;
	gap: 2px;
}

.sp-nav__dropdown-inner a {
	display: block;
	padding: 10px 14px;
	border-radius: 6px;
	color: var(--sp-text);
	font-size: 13.5px;
	font-weight: 500;
	line-height: 1.4;
	transition: background var(--sp-transition), color var(--sp-transition);
}

.sp-nav__dropdown-inner a:hover {
	background: var(--sp-primary-light);
	color: var(--sp-primary);
}

/* Header actions */
.sp-header__actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 0 0 auto;
}

.sp-header__signin {
	color: var(--sp-text);
	font-size: 14.5px;
	font-weight: 600;
	white-space: nowrap;
	transition: color var(--sp-transition);
}

.sp-header__signin:hover { color: var(--sp-primary); }

/* Hamburger */
.sp-menu-toggle {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	flex: 0 0 auto;
	z-index: 9300;
}

.sp-menu-toggle__bar {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--sp-primary);
	border-radius: 2px;
	transition: transform var(--sp-transition), opacity var(--sp-transition);
}

.sp-header.is-menu-open .sp-menu-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sp-header.is-menu-open .sp-menu-toggle__bar:nth-child(2) { opacity: 0; }
.sp-header.is-menu-open .sp-menu-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.sp-header__backdrop { display: none; }

/* ---- Buttons ---- */
.sp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 24px;
	font-size: 14px;
	font-weight: 600;
	font-family: var(--sp-font);
	border-radius: 6px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: background var(--sp-transition), border-color var(--sp-transition), color var(--sp-transition), transform 0.3s var(--sp-ease-out), box-shadow 0.3s var(--sp-ease-out);
	white-space: nowrap;
}

.sp-btn--primary,
a.sp-btn--primary,
button.sp-btn--primary {
	background: var(--sp-primary);
	color: #fff;
	border-color: var(--sp-primary);
}
.sp-btn--primary:hover,
a.sp-btn--primary:hover,
button.sp-btn--primary:hover,
.sp-btn--primary:focus-visible,
a.sp-btn--primary:focus-visible,
button.sp-btn--primary:focus-visible {
	background: var(--sp-accent);
	border-color: var(--sp-accent);
	color: #fff;
	filter: none;
	transform: translateY(-2px);
	box-shadow: var(--sp-shadow-brand);
}
.sp-btn--outline { background: transparent; color: var(--sp-primary); border-color: var(--sp-primary); }
.sp-btn--outline:hover {
	background: var(--sp-primary-light);
	transform: translateY(-2px);
	box-shadow: 0 8px 22px rgba(139, 63, 214, 0.14);
}
.sp-btn--lg { padding: 14px 32px; font-size: 15px; }
.sp-btn--sm { padding: 9px 20px; font-size: 13.5px; }

/* ---- Hero ---- */
.sp-hero {
	position: relative;
	overflow: hidden;
	background: var(--sp-gradient-hero);
	padding: 80px 0 88px;
}

.sp-hero::before,
.sp-hero::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}

.sp-hero::before {
	top: -8%;
	left: -4%;
	width: min(42vw, 420px);
	height: min(42vw, 420px);
	background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 68%);
}

.sp-hero::after {
	bottom: -6%;
	right: 4%;
	width: min(36vw, 360px);
	height: min(36vw, 360px);
	background: radial-gradient(circle, rgba(34, 197, 94, 0.12) 0%, transparent 68%);
}

.sp-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
	gap: clamp(48px, 6vw, 80px);
	align-items: start;
	max-width: 1280px;
}

.sp-hero__content {
	text-align: left;
	padding-right: 8px;
}

.sp-hero__badge {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	margin-bottom: 16px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: var(--sp-accent-dark);
	background: var(--sp-accent-light);
	border: 1px solid var(--sp-border-brand);
	border-radius: 999px;
}

.sp-hero__title {
	font-size: clamp(2rem, 3vw, 2.85rem);
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 24px;
	color: var(--sp-dark);
	letter-spacing: -0.01em;
	min-height: 3.2em;
}

.sp-hero__title-static { display: block; }

.sp-hero__typed-wrap {
	display: block;
	min-height: 2.65em;
	margin-top: 6px;
}

.sp-hero__typed {
	color: var(--sp-accent-dark);
	font-weight: 800;
}

.sp-hero__cursor {
	display: inline-block;
	width: 3px;
	height: 0.92em;
	background: var(--sp-primary);
	margin-left: 3px;
	vertical-align: -0.06em;
	border-radius: 1px;
	animation: spCursorBlink 0.85s step-end infinite;
}

@keyframes spCursorBlink {
	0%, 45% { opacity: 1; }
	50%, 100% { opacity: 0; }
}

.sp-hero__desc {
	font-size: 1.0625rem;
	color: var(--sp-text-muted);
	margin: 0;
	max-width: 54ch;
	line-height: 1.75;
}

.sp-hero__actions { justify-content: flex-start; gap: 16px; }

.sp-hero__points {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	margin-top: 28px;
}
.sp-hero__points li {
	position: relative;
	padding-left: 22px;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--sp-text-muted);
	line-height: 1.45;
}
.sp-hero__points li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--sp-accent);
	box-shadow: 0 0 0 3px var(--sp-accent-muted);
	transform: none;
}

.sp-hero__visual {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	background: var(--sp-hero-bg);
	overflow: hidden;
	max-height: min(58vh, 500px);
	margin-top: 0;
	animation: none;
	transform: none;
}

.sp-hero__visual:has(.sp-pos-scene) {
	overflow: visible;
	max-height: none;
	align-items: flex-start;
}
.setuperp-landing .sp-hero__showcase {
	display: block;
	width: 100%;
	max-width: 580px;
	height: auto;
	margin-top: 0;
	margin-bottom: 0;
	object-fit: contain;
	object-position: center right;
	background: var(--sp-hero-bg);
	border-radius: 0;
	box-shadow: none;
	transform: none;
	animation: none;
	will-change: auto;
}

/* ---- Trust ---- */
.sp-trust {
	padding: 48px 0;
	background: linear-gradient(180deg, var(--sp-bg) 0%, var(--sp-accent-light) 100%);
	text-align: center;
	border-bottom: 1px solid var(--sp-border-brand);
}
.sp-trust__heading { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin: 0 0 12px; color: var(--sp-dark); }
.sp-trust__sub { font-size: 1rem; color: var(--sp-text-muted); max-width: 640px; margin: 0 auto 40px; line-height: 1.7; }
.sp-trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-bottom: 40px; }
.sp-trust__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	width: 168px;
	height: 168px;
	margin: 0 auto;
	border-radius: 50%;
	background: var(--sp-bg);
	border: 2px dashed var(--sp-border-brand);
	transition: transform var(--sp-transition), box-shadow var(--sp-transition), border-color var(--sp-transition);
}
.sp-trust__item:hover {
	transform: translateY(-4px);
	box-shadow: var(--sp-shadow-lg);
	border-color: var(--sp-accent);
	background: linear-gradient(145deg, var(--sp-bg) 0%, var(--sp-accent-light) 100%);
}
.sp-trust__item strong {
	display: block;
	font-size: 2.1rem;
	font-weight: 700;
	color: var(--sp-accent-dark);
	line-height: 1.1;
}
.sp-trust__item span { font-size: 0.875rem; color: var(--sp-text-muted); font-weight: 500; }
.sp-trust__footer { font-size: 0.9375rem; color: var(--sp-text-muted); max-width: 720px; margin: 0 auto; line-height: 1.7; }

/* ---- Platform Overview ---- */
.sp-overview { padding: 76px 0; background: var(--sp-accent-light); }
.sp-overview__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.sp-overview__title { font-size: 1.75rem; font-weight: 700; margin: 0 0 16px; color: var(--sp-dark); line-height: 1.3; }
.sp-overview__desc { font-size: 1rem; color: var(--sp-text-muted); margin: 0 0 24px; line-height: 1.7; }
.sp-overview__list { counter-reset: overview; margin-bottom: 24px; }
.sp-overview__list li { counter-increment: overview; display: flex; align-items: flex-start; gap: 12px; padding: 8px 0; font-size: 0.9375rem; color: var(--sp-text); }
.sp-overview__list li::before {
	content: counter(overview);
	width: 26px; height: 26px; min-width: 26px;
	background: var(--sp-primary); color: #fff;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-size: 0.75rem; font-weight: 700;
}
.sp-overview__visual { position: relative; display: flex; align-items: center; justify-content: center; }
.sp-overview__visual::before {
	content: '';
	position: absolute;
	width: min(94%, 460px);
	aspect-ratio: 1 / 1;
	border: 2px dashed rgba(139, 63, 214, 0.3);
	border-radius: 50%;
	transform: translate(4%, -4%);
	z-index: 0;
}
.setuperp-landing .sp-overview__visual img {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 420px;
	aspect-ratio: 1 / 1;
	height: auto;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: var(--sp-shadow-lg);
}

.sp-link-more { display: inline-block; font-size: 14px; font-weight: 600; color: var(--sp-accent-dark); border-bottom: 2px solid var(--sp-accent); padding-bottom: 2px; transition: opacity var(--sp-transition); }
.sp-link-more:hover { opacity: 0.75; }

/* ---- Feature Rows (alternating) ---- */
.sp-feature-row { padding: 76px 0; background: var(--sp-bg); }
.sp-feature-row--alt { background: var(--sp-accent-light); }
.sp-feature-row--highlight {
	background: var(--sp-bg-brand);
	border-top: 1px solid var(--sp-border-brand);
	border-bottom: 1px solid var(--sp-border-brand);
}
.sp-feature-row__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.sp-feature-row--reverse .sp-feature-row__media { order: 2; }
.sp-feature-row--reverse .sp-feature-row__content { order: 1; }
.sp-feature-row__media { position: relative; display: flex; align-items: center; justify-content: center; }
.sp-feature-row__media::before {
	content: '';
	position: absolute;
	width: min(92%, 440px);
	aspect-ratio: 1 / 1;
	border: 2px dashed rgba(139, 63, 214, 0.3);
	border-radius: 50%;
	transform: translate(-5%, 5%);
	z-index: 0;
}
.sp-feature-row--reverse .sp-feature-row__media::before { transform: translate(5%, 5%); }
.sp-feature-row__media::after {
	content: '';
	position: absolute;
	top: 6%;
	right: 12%;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--sp-accent);
	box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.15);
	z-index: 2;
}
.setuperp-landing .sp-feature-row__media img {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 400px;
	aspect-ratio: 1 / 1;
	height: auto;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: var(--sp-shadow-lg);
}
.sp-feature-row__title { font-size: 1.625rem; font-weight: 700; margin: 0 0 14px; color: var(--sp-dark); line-height: 1.3; }
.sp-feature-row__desc { font-size: 1rem; color: var(--sp-text-muted); margin: 0 0 20px; line-height: 1.7; }
.sp-feature-row__list { margin-bottom: 24px; }
.sp-feature-row__list li { position: relative; padding: 7px 0 7px 22px; font-size: 0.9375rem; color: var(--sp-text); line-height: 1.5; }
.sp-feature-row__list li::before { content: ''; position: absolute; left: 0; top: 14px; width: 8px; height: 8px; background: var(--sp-accent); border-radius: 50%; }

/* ---- Smart Features ---- */
.sp-smart { padding: 76px 0; background: var(--sp-bg); text-align: center; }
.sp-smart__title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin: 0 0 48px; color: var(--sp-dark); }
.sp-smart__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; text-align: center; }
.sp-smart-card {
	background: var(--sp-bg);
	border: 1px solid var(--sp-border-brand);
	border-radius: var(--sp-radius-lg);
	padding: 32px 22px;
	transition: box-shadow var(--sp-transition), border-color var(--sp-transition), transform var(--sp-transition);
}
.sp-smart-card:hover {
	box-shadow: var(--sp-shadow-lg);
	border-color: var(--sp-accent);
	transform: translateY(-4px);
	background: linear-gradient(180deg, var(--sp-bg) 0%, var(--sp-accent-light) 100%);
}
.sp-smart-card__icon {
	width: 72px;
	height: 72px;
	background: var(--sp-accent-light);
	border: 2px solid var(--sp-border-brand);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--sp-accent-dark);
	margin: 0 auto 18px;
}
.sp-smart-card:hover .sp-smart-card__icon {
	background: var(--sp-gradient-accent);
	color: #fff;
	border-color: transparent;
}
.sp-smart-card h3 { font-size: 1rem; font-weight: 600; margin: 0 0 10px; color: var(--sp-dark); }
.sp-smart-card p { font-size: 0.875rem; color: var(--sp-text-muted); margin: 0 0 16px; line-height: 1.6; }
.sp-smart-card__link { font-size: 13px; font-weight: 600; color: var(--sp-accent-dark); }
.sp-smart-card__link:hover { text-decoration: underline; }

/* ---- Complementary Apps ---- */
.sp-apps { padding: 76px 0; background: var(--sp-accent-light); text-align: center; }
.sp-apps__title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin: 0 0 40px; color: var(--sp-dark); }
.sp-apps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: left; }
.sp-app-card {
	background: var(--sp-bg);
	border: 1px solid var(--sp-border-brand);
	border-radius: var(--sp-radius-lg);
	padding: 28px 24px;
	transition: box-shadow var(--sp-transition), transform var(--sp-transition);
}
.sp-app-card:hover { box-shadow: var(--sp-shadow-lg); transform: translateY(-3px); }
.sp-app-card h3 { font-size: 1rem; font-weight: 600; margin: 0 0 8px; color: var(--sp-dark); }
.sp-app-card p { font-size: 0.875rem; color: var(--sp-text-muted); margin: 0; line-height: 1.6; }

/* ---- Industries ---- */
.sp-industries { padding: 76px 0; background: var(--sp-bg); text-align: center; }
.sp-industries__title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin: 0 0 12px; color: var(--sp-dark); }
.sp-industries__desc { font-size: 1rem; color: var(--sp-text-muted); margin: 0 auto 40px; max-width: 560px; }
.sp-industries__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sp-industry-card {
	display: block;
	background: var(--sp-bg);
	border: 1px solid var(--sp-border-brand);
	border-radius: var(--sp-radius-lg);
	overflow: hidden;
	transition: box-shadow var(--sp-transition), transform var(--sp-transition), border-color var(--sp-transition);
}
.sp-industry-card:hover {
	box-shadow: var(--sp-shadow-lg);
	transform: translateY(-3px);
	border-color: var(--sp-accent);
}
.sp-industry-card img { width: 100%; height: 190px; object-fit: cover; object-position: center; }

/* ---- Pricing ---- */
.sp-pricing { padding: 76px 0; background: var(--sp-accent-light); text-align: center; }
.sp-pricing__title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin: 0 0 12px; color: var(--sp-dark); }
.sp-pricing__desc { font-size: 1rem; color: var(--sp-text-muted); margin: 0 auto 40px; }
.sp-pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 940px; margin: 0 auto; text-align: center; }
.sp-pricing__grid--single { grid-template-columns: 1fr; max-width: 420px; }
.sp-price-card {
	background: var(--sp-bg);
	border: 1px solid var(--sp-border-brand);
	border-radius: var(--sp-radius-lg);
	padding: 38px 28px;
	position: relative;
}
.sp-price-card--featured {
	border-color: var(--sp-accent);
	box-shadow: var(--sp-shadow-brand);
	background: linear-gradient(180deg, var(--sp-bg) 0%, var(--sp-accent-light) 100%);
}
.sp-price-card__badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--sp-gradient-accent);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 14px;
	border-radius: 100px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.sp-price-card__price {
	font-size: 2.25rem;
	font-weight: 700;
	color: var(--sp-accent-dark);
	margin-bottom: 12px;
}
.sp-price-card__price small { font-size: 1rem; font-weight: 500; color: var(--sp-text-muted); }
.sp-price-card p { font-size: 0.875rem; color: var(--sp-text-muted); margin: 0 0 24px; line-height: 1.6; }
.sp-price-card .sp-btn { width: 100%; }

/* ---- FAQ ---- */
.sp-faq-section { padding: 76px 0; background: #fff; }
.sp-faq-section__title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; text-align: center; margin: 0 0 40px; color: var(--sp-dark); }
.sp-faq { max-width: 760px; margin: 0 auto; }
.sp-faq__item { border-bottom: 1px solid var(--sp-border); }
.sp-faq__question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 0; background: transparent; border: none; font-size: 1rem; font-weight: 600; color: var(--sp-text); cursor: pointer; text-align: left; font-family: var(--sp-font); transition: color var(--sp-transition); }
.sp-faq__question:hover,
.sp-faq__question:focus,
.sp-faq__question:focus-visible {
	color: var(--sp-primary-dark);
	background: transparent;
	border: none;
}
.sp-faq__icon { width: 26px; height: 26px; min-width: 26px; border: 1px solid var(--sp-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: background var(--sp-transition), color var(--sp-transition), border-color var(--sp-transition), transform var(--sp-transition); }
.sp-faq__question:hover .sp-faq__icon,
.sp-faq__question:focus-visible .sp-faq__icon {
	background: var(--sp-accent);
	color: #fff;
	border-color: var(--sp-accent);
}
.sp-faq__item.is-open .sp-faq__icon { background: var(--sp-primary); color: #fff; border-color: var(--sp-primary); transform: rotate(45deg); }
.sp-faq__item.is-open .sp-faq__question { color: var(--sp-primary-dark); }
.sp-faq__answer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.45s var(--sp-ease-out);
}
.sp-faq__answer-inner { padding: 0 0 20px; color: var(--sp-text-muted); font-size: 0.9375rem; line-height: 1.7; overflow: hidden; }
.sp-faq__item.is-open .sp-faq__answer { grid-template-rows: 1fr; }

/* ---- CTA ---- */
.sp-cta {
	padding: 76px 0;
	background: var(--sp-gradient-cta);
	color: #fff;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.sp-cta::before {
	content: '';
	position: absolute;
	top: -40%;
	right: -8%;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(34, 197, 94, 0.22) 0%, transparent 68%);
	pointer-events: none;
}

.sp-cta__inner { position: relative; z-index: 1; }
.sp-cta__inner h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin: 0 0 12px; }
.sp-cta__inner p { font-size: 1.0625rem; opacity: 0.92; margin: 0 auto 28px; max-width: 560px; }
.sp-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}
.sp-cta .sp-btn--primary { background: #fff; color: var(--sp-primary); border-color: #fff; filter: none; }
.sp-cta .sp-btn--primary:hover { background: var(--sp-accent-light); color: var(--sp-primary-dark); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); }
.sp-cta .sp-btn--outline {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.75);
	background: transparent;
}
.sp-cta .sp-btn--outline:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border-color: #fff;
}

/* ---- Footer ---- */
.sp-footer {
	background: var(--sp-footer-bg);
	color: rgba(255, 255, 255, 0.72);
	padding: 56px 0 0;
	border-top: 3px solid transparent;
	border-image: var(--sp-gradient-accent) 1;
}
.sp-footer__grid { display: grid; grid-template-columns: 1.2fr repeat(4, 1fr); gap: 32px; padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.sp-footer .sp-logo { height: auto; }
.setuperp-landing .sp-footer .sp-logo__img { height: 96px; width: 96px; }
.sp-footer__col h4 { color: #fff; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 16px; }
.sp-footer__col ul { display: grid; gap: 8px; }
.sp-footer__col a { font-size: 13px; color: rgba(255, 255, 255, 0.65); transition: color var(--sp-transition); }
.sp-footer__col a:hover { color: var(--sp-accent); }
.sp-footer__bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-size: 13px; flex-wrap: wrap; gap: 12px; }
.sp-footer__legal { display: flex; gap: 20px; }
.sp-footer__legal a:hover { color: var(--sp-accent); }

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

/* ==========================================================================
   ANIMATIONS — scroll reveal, hero entrance, micro-interactions
   ========================================================================== */
@keyframes spFadeUp {
	from { opacity: 0; transform: translate3d(0, 32px, 0); }
	to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes spFadeLeft {
	from { opacity: 0; transform: translate3d(36px, 0, 0); }
	to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes spFadeRight {
	from { opacity: 0; transform: translate3d(-36px, 0, 0); }
	to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes spScaleIn {
	from { opacity: 0; transform: scale(0.94); }
	to { opacity: 1; transform: scale(1); }
}

@keyframes spPulseRing {
	0%, 100% { box-shadow: 0 0 0 0 rgba(139, 63, 214, 0.18); }
	50% { box-shadow: 0 0 0 12px rgba(139, 63, 214, 0); }
}

@keyframes spShimmer {
	0% { background-position: -200% center; }
	100% { background-position: 200% center; }
}

@media (prefers-reduced-motion: no-preference) {
	.sp-hero__content {
		animation: spFadeUp 0.85s var(--sp-ease-out) 0.1s both;
	}

	.sp-reveal {
		opacity: 0;
		transform: translate3d(0, 28px, 0);
		transition:
			opacity 0.75s var(--sp-ease-out),
			transform 0.75s var(--sp-ease-out);
		transition-delay: var(--sp-reveal-delay, 0ms);
		will-change: opacity, transform;
	}

	.sp-reveal--left { transform: translate3d(-32px, 0, 0); }
	.sp-reveal--right { transform: translate3d(32px, 0, 0); }
	.sp-reveal--scale { transform: scale(0.96); }

	.sp-reveal.is-visible {
		opacity: 1;
		transform: translate3d(0, 0, 0) scale(1);
	}

	.sp-trust__item.is-visible:hover {
		animation: spPulseRing 2s ease-in-out infinite;
	}

	.sp-smart-card,
	.sp-app-card,
	.sp-industry-card,
	.sp-price-card,
	.sp-product-card {
		transition:
			transform 0.4s var(--sp-ease-out),
			box-shadow 0.4s var(--sp-ease-out),
			border-color 0.3s ease;
	}

	.sp-smart-card.is-visible:hover,
	.sp-app-card.is-visible:hover,
	.sp-industry-card.is-visible:hover,
	.sp-price-card.is-visible:hover,
	.sp-product-card.is-visible:hover {
		transform: translateY(-6px);
	}

	.sp-smart-card__icon {
		transition: transform 0.45s var(--sp-ease-spring), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
	}

	.sp-smart-card.is-visible:hover .sp-smart-card__icon {
		transform: scale(1.08) rotate(-4deg);
	}

	.sp-feature-row__media img,
	.setuperp-landing .sp-overview__visual img {
		transition: transform 0.6s var(--sp-ease-out), box-shadow 0.6s var(--sp-ease-out);
	}

	.sp-feature-row__media.is-visible:hover img,
	.sp-overview__visual.is-visible:hover img {
		transform: scale(1.03);
	}

	.sp-link-more {
		position: relative;
		transition: color 0.25s ease, opacity 0.25s ease, letter-spacing 0.25s ease;
	}

	.sp-link-more:hover {
		opacity: 1;
		letter-spacing: 0.02em;
	}

	.sp-cta {
		position: relative;
		overflow: hidden;
	}

	.sp-cta::before {
		content: '';
		position: absolute;
		inset: 0;
		background: linear-gradient(
			105deg,
			transparent 40%,
			rgba(255, 255, 255, 0.08) 50%,
			transparent 60%
		);
		background-size: 200% 100%;
		animation: spShimmer 8s linear infinite;
		pointer-events: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sp-site,
	.sp-hero__content,
	.sp-hero__visual,
	.setuperp-landing .sp-hero__showcase {
		animation: none;
		opacity: 1;
	}

	.sp-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.sp-btn:hover { transform: none; }
}

.sp-hero__desc a { color: var(--sp-primary); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.sp-hero__desc a:hover { color: var(--sp-primary-dark); }

/* ---- ZIMRA SEO landing page ---- */
.sp-zimra-hero {
	padding: 72px 0 80px;
	background: var(--sp-gradient-hero);
	border-bottom: 1px solid var(--sp-border-brand);
}
.sp-zimra-hero__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 56px;
	align-items: center;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}
.sp-zimra-hero__title {
	font-size: clamp(2rem, 3.4vw, 2.85rem);
	font-weight: 800;
	line-height: 1.15;
	color: var(--sp-dark);
	margin: 16px 0 20px;
	letter-spacing: -0.02em;
}
.sp-zimra-hero__lead {
	font-size: 1.0625rem;
	color: #5a6578;
	line-height: 1.8;
	margin: 0 0 32px;
	max-width: 58ch;
}
.sp-zimra-hero__visual img { border-radius: var(--sp-radius-lg); box-shadow: var(--sp-shadow-lg); width: 100%; }

.sp-zimra-systems {
	padding: 64px 0;
	background: var(--sp-accent-light);
	border-bottom: 1px solid var(--sp-border-brand);
}

.sp-zimra-systems__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.sp-zimra-systems__item {
	background: var(--sp-bg);
	border: 1px solid var(--sp-border-brand);
	border-radius: var(--sp-radius);
	padding: 14px 12px;
	text-align: center;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--sp-dark);
}

.sp-zimra-systems__note {
	text-align: center;
	margin: 24px 0 0;
	color: var(--sp-text-muted);
	font-size: 0.9375rem;
}

.sp-zimra-systems__note a {
	color: var(--sp-accent-dark);
	font-weight: 600;
}

.sp-zimra-intro { padding: 76px 0; background: var(--sp-bg); }
.sp-zimra-intro__grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start; }
.sp-zimra-intro h2 { font-size: 1.75rem; font-weight: 700; color: var(--sp-dark); margin: 0 0 16px; }
.sp-zimra-intro p { color: var(--sp-text-muted); line-height: 1.8; margin: 0 0 16px; }
.sp-zimra-intro a { color: var(--sp-primary); font-weight: 600; }
.sp-zimra-intro__card {
	background: var(--sp-bg-soft);
	border: 1px solid var(--sp-border);
	border-left: 4px solid var(--sp-primary);
	border-radius: var(--sp-radius-lg);
	padding: 28px;
}
.sp-zimra-intro__card h3 { font-size: 1.125rem; font-weight: 700; margin: 0 0 16px; color: var(--sp-dark); }
.sp-zimra-intro__card ul { display: grid; gap: 10px; }
.sp-zimra-intro__card li { position: relative; padding-left: 22px; font-size: 0.9375rem; color: var(--sp-text); line-height: 1.55; }
.sp-zimra-intro__card li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 8px; height: 8px; border-radius: 50%; background: var(--sp-accent); }
.sp-zimra-intro__card a { color: var(--sp-primary); font-weight: 600; }

.sp-zimra-benefits { padding: 76px 0; background: var(--sp-bg-soft); }
.sp-zimra-section__title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; text-align: center; color: var(--sp-dark); margin: 0 0 12px; }
.sp-zimra-section__desc { text-align: center; max-width: 720px; margin: 0 auto 40px; color: var(--sp-text-muted); line-height: 1.75; }
.sp-zimra-benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sp-zimra-benefit-card { background: #fff; border: 1px solid var(--sp-border); border-radius: var(--sp-radius-lg); padding: 28px 24px; transition: transform 0.35s var(--sp-ease-out), box-shadow 0.35s ease; }
.sp-zimra-benefit-card:hover { transform: translateY(-4px); box-shadow: var(--sp-shadow-lg); }
.sp-zimra-benefit-card h3 { font-size: 1.0625rem; font-weight: 700; color: var(--sp-dark); margin: 0 0 10px; }
.sp-zimra-benefit-card p { font-size: 0.9375rem; color: var(--sp-text-muted); margin: 0; line-height: 1.65; }

.sp-zimra-checklist { padding: 76px 0; background: #fff; }
.sp-zimra-checklist__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.sp-zimra-checklist h2 { font-size: 1.75rem; font-weight: 700; color: var(--sp-dark); margin: 0 0 16px; }
.sp-zimra-checklist p { color: var(--sp-text-muted); line-height: 1.75; margin: 0 0 20px; }
.sp-zimra-checklist__list { display: grid; gap: 10px; }
.sp-zimra-checklist__list li { position: relative; padding-left: 26px; font-size: 0.9375rem; color: var(--sp-text); line-height: 1.55; }
.sp-zimra-checklist__list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--sp-primary); font-weight: 700; }
.sp-zimra-checklist__aside { background: linear-gradient(135deg, #f8f4fd, #f0faf5); border-radius: var(--sp-radius-lg); padding: 32px; border: 1px solid rgba(139, 63, 214, 0.12); }
.sp-zimra-checklist__aside h3 { font-size: 1.25rem; font-weight: 700; margin: 0 0 14px; color: var(--sp-dark); }

.sp-zimra-steps { padding: 76px 0; background: var(--sp-bg-soft); }
.sp-zimra-steps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.sp-zimra-step { background: #fff; border: 1px solid var(--sp-border); border-radius: var(--sp-radius-lg); padding: 28px 22px; }
.sp-zimra-step__num { display: inline-block; font-size: 2rem; font-weight: 800; color: var(--sp-primary); line-height: 1; margin-bottom: 12px; opacity: 0.85; }
.sp-zimra-step h3 { font-size: 1.0625rem; font-weight: 700; margin: 0 0 10px; color: var(--sp-dark); }
.sp-zimra-step p { font-size: 0.9rem; color: var(--sp-text-muted); margin: 0; line-height: 1.65; }

.sp-zimra-faq__intro { text-align: center; max-width: 680px; margin: -24px auto 36px; color: var(--sp-text-muted); line-height: 1.7; }

.sp-footer__about a { color: rgba(255, 255, 255, 0.85); text-decoration: underline; }
.sp-footer__about a:hover { color: var(--sp-accent); }

/* Smooth-scroll anchor offset for sticky header */
[id] { scroll-margin-top: 96px; }

.sp-hero__actions { display: flex; gap: 14px; justify-content: flex-start; flex-wrap: wrap; margin-top: 28px; }

/* ---- ERP modules — grouped board ---- */
.sp-modules {
	padding: 56px 0 64px;
	background: var(--sp-bg);
	border-bottom: 1px solid var(--sp-border-brand);
}

.sp-modules__header {
	text-align: center;
	max-width: 560px;
	margin: 0 auto 28px;
}

.sp-modules__eyebrow {
	margin: 0 0 8px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--sp-accent-dark);
}

.sp-modules__title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--sp-dark);
	margin: 0 0 10px;
}

.sp-modules__sub {
	margin: 0;
	font-size: 0.975rem;
	color: var(--sp-text-muted);
	line-height: 1.65;
}

.sp-module-board {
	max-width: 960px;
	margin: 0 auto;
}

.sp-module-board__filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-bottom: 24px;
}

.sp-module-board__filter {
	padding: 8px 16px;
	font-size: 0.8125rem;
	font-weight: 600;
	font-family: var(--sp-font);
	color: var(--sp-text-muted);
	background: #fff;
	border: 1px solid var(--sp-border-brand);
	border-radius: 100px;
	cursor: pointer;
	transition: color var(--sp-transition), background var(--sp-transition), border-color var(--sp-transition);
}

.sp-module-board__filter:hover,
.sp-module-board__filter:focus-visible {
	color: var(--sp-primary);
	border-color: var(--sp-primary);
	outline: none;
}

.sp-module-board__filter.is-active {
	color: #fff;
	background: var(--sp-primary);
	border-color: var(--sp-primary);
}

.sp-module-board__filter--operations.is-active {
	background: var(--sp-accent-dark);
	border-color: var(--sp-accent-dark);
}

.sp-module-board__filter--compliance.is-active {
	background: linear-gradient(135deg, var(--sp-primary), var(--sp-accent-dark));
	border-color: transparent;
}

.sp-module-board__groups {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.sp-module-board__group {
	padding: 18px 18px 14px;
	background: var(--sp-bg-soft);
	border: 1px solid var(--sp-border-brand);
	border-radius: var(--sp-radius-lg);
	transition: opacity 0.25s ease;
}

.sp-module-board__group--operations {
	border-left: 4px solid var(--sp-accent);
}

.sp-module-board__group--finance {
	border-left: 4px solid var(--sp-primary);
}

.sp-module-board__group--compliance {
	border-left: 4px solid var(--sp-accent-dark);
	background: linear-gradient(135deg, var(--sp-accent-light) 0%, var(--sp-bg-soft) 100%);
}

.sp-module-board[data-active-filter="operations"] .sp-module-board__group:not([data-group="operations"]),
.sp-module-board[data-active-filter="finance"] .sp-module-board__group:not([data-group="finance"]),
.sp-module-board[data-active-filter="compliance"] .sp-module-board__group:not([data-group="compliance"]) {
	display: none;
}

.sp-module-board__group-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.sp-module-board__group-title {
	margin: 0;
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--sp-dark);
}

.sp-module-board__group--operations .sp-module-board__group-title {
	color: var(--sp-accent-dark);
}

.sp-module-board__group--finance .sp-module-board__group-title {
	color: var(--sp-primary);
}

.sp-module-board__group-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	height: 24px;
	padding: 0 8px;
	font-size: 0.6875rem;
	font-weight: 700;
	color: var(--sp-text-muted);
	background: #fff;
	border: 1px solid var(--sp-border-brand);
	border-radius: 100px;
}

.sp-module-board__list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.sp-module-board__item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 12px 12px;
	text-decoration: none;
	color: inherit;
	background: #fff;
	border: 1px solid var(--sp-border-brand);
	border-radius: 10px;
	transition: border-color var(--sp-transition), box-shadow var(--sp-transition), transform var(--sp-transition);
}

.sp-module-board__item:hover,
.sp-module-board__item:focus-visible {
	border-color: var(--sp-accent);
	box-shadow: 0 6px 18px rgba(34, 197, 94, 0.12);
	transform: translateY(-1px);
	outline: none;
}

.sp-module-board__group--finance .sp-module-board__item:hover,
.sp-module-board__group--finance .sp-module-board__item:focus-visible {
	border-color: var(--sp-primary);
	box-shadow: 0 6px 18px rgba(139, 63, 214, 0.12);
}

.sp-module-board__item--featured {
	grid-column: 1 / -1;
	align-items: center;
	padding: 16px 18px;
	border-color: var(--sp-accent);
	background: linear-gradient(135deg, #fff 0%, var(--sp-accent-light) 100%);
}

.sp-module-board__item--featured:hover,
.sp-module-board__item--featured:focus-visible {
	border-color: var(--sp-accent-dark);
	box-shadow: 0 8px 24px rgba(34, 197, 94, 0.18);
}

.sp-module-board__item-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	min-width: 36px;
	border-radius: 10px;
	background: var(--sp-accent-light);
	color: var(--sp-accent-dark);
}

.sp-module-board__group--finance .sp-module-board__item-icon {
	background: var(--sp-primary-light);
	color: var(--sp-primary);
}

.sp-module-board__item--featured .sp-module-board__item-icon {
	width: 42px;
	height: 42px;
	min-width: 42px;
	background: var(--sp-accent);
	color: #fff;
}

.sp-module-board__item-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
	flex: 1;
}

.sp-module-board__item-name {
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--sp-dark);
}

.sp-module-board__item-hint {
	font-size: 0.6875rem;
	line-height: 1.45;
	color: var(--sp-text-muted);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.sp-module-board__item--featured .sp-module-board__item-name {
	font-size: 0.9375rem;
}

.sp-module-board__item--featured .sp-module-board__item-hint {
	font-size: 0.8125rem;
	-webkit-line-clamp: 3;
}

.sp-module-board__item-badge {
	flex-shrink: 0;
	align-self: center;
	padding: 4px 10px;
	font-size: 0.625rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #fff;
	background: var(--sp-accent-dark);
	border-radius: 100px;
}

.sp-modules__svg {
	display: block;
	width: 18px;
	height: 18px;
}

.sp-modules__footer {
	text-align: center;
	margin: 28px 0 0;
}

@media (max-width: 900px) {
	.sp-module-board__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.sp-module-board__filters {
		justify-content: flex-start;
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-bottom: 4px;
		-webkit-overflow-scrolling: touch;
	}

	.sp-module-board__filter {
		flex-shrink: 0;
	}

	.sp-module-board__list {
		grid-template-columns: 1fr;
	}

	.sp-module-board__item--featured {
		grid-column: auto;
	}
}

/* ---- ERP platform spotlight ---- */
.sp-erp-spotlight {
	padding: 76px 0;
	background: var(--sp-bg-soft);
	border-bottom: 1px solid var(--sp-border-brand);
}

.sp-erp-spotlight__header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 44px;
}

.sp-erp-spotlight__title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--sp-dark);
	margin: 0 0 12px;
}

.sp-erp-spotlight__sub {
	margin: 0;
	color: var(--sp-text-muted);
	line-height: 1.7;
	font-size: 1rem;
}

.sp-erp-spotlight__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	margin-bottom: 36px;
}

.sp-erp-spotlight__card {
	background: var(--sp-bg);
	border: 1px solid var(--sp-border-brand);
	border-radius: var(--sp-radius-lg);
	padding: 26px 24px;
	text-align: center;
	box-shadow: var(--sp-shadow);
	transition: box-shadow var(--sp-transition), border-color var(--sp-transition);
}

.sp-erp-spotlight__card:hover {
	box-shadow: var(--sp-shadow-lg);
	border-color: var(--sp-accent);
}

.sp-erp-spotlight__card--highlight {
	border-top: 3px solid var(--sp-accent);
	background: linear-gradient(180deg, var(--sp-bg) 0%, var(--sp-accent-light) 100%);
}

.sp-erp-spotlight__icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 16px;
}

.sp-erp-spotlight__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.sp-erp-spotlight__card-title {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--sp-dark);
	margin: 0 0 10px;
	line-height: 1.35;
}

.sp-erp-spotlight__card-desc {
	margin: 0;
	font-size: 0.9rem;
	color: var(--sp-text-muted);
	line-height: 1.6;
}

.sp-erp-spotlight__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

/* ---- Pain points (SEO) ---- */
.sp-pain-points {
	padding: 76px 0;
	background: var(--sp-bg);
}

.sp-pain-points__header {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 40px;
}

.sp-pain-points__title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--sp-dark);
	margin: 0 0 12px;
}

.sp-pain-points__sub {
	margin: 0;
	color: var(--sp-text-muted);
	line-height: 1.7;
}

.sp-pain-points__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.sp-pain-points__card {
	background: var(--sp-bg-soft);
	border: 1px solid var(--sp-border-brand);
	border-radius: var(--sp-radius-lg);
	padding: 24px 20px;
	transition: box-shadow var(--sp-transition), border-color var(--sp-transition);
}

.sp-pain-points__card:hover {
	box-shadow: var(--sp-shadow-lg);
	border-color: var(--sp-accent);
}

.sp-pain-points__icon {
	display: block;
	width: 40px;
	height: 40px;
	margin-bottom: 14px;
	border-radius: 50%;
	background: var(--sp-accent-light);
	border: 2px solid var(--sp-border-brand);
}

.sp-pain-points__card-title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--sp-dark);
	margin: 0 0 8px;
	line-height: 1.35;
}

.sp-pain-points__card-desc {
	margin: 0;
	font-size: 0.875rem;
	color: var(--sp-text-muted);
	line-height: 1.6;
}

/* ---- Zimbabwe SEO band ---- */
.sp-seo-band {
	padding: 76px 0;
	background: var(--sp-accent-light);
	border-top: 1px solid var(--sp-border-brand);
	border-bottom: 1px solid var(--sp-border-brand);
}

.sp-seo-band__grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 40px;
	align-items: start;
}

.sp-seo-band__title {
	font-size: clamp(1.4rem, 2.5vw, 1.85rem);
	font-weight: 700;
	color: var(--sp-dark);
	margin: 0 0 16px;
	line-height: 1.3;
}

.sp-seo-band__content p {
	margin: 0 0 14px;
	color: var(--sp-text-muted);
	line-height: 1.75;
	font-size: 0.975rem;
}

.sp-seo-band__content p:last-child {
	margin-bottom: 0;
}

.sp-seo-band__aside {
	background: var(--sp-bg);
	border: 1px solid var(--sp-border-brand);
	border-radius: var(--sp-radius-lg);
	padding: 28px 24px;
	box-shadow: var(--sp-shadow);
}

.sp-seo-band__aside-title {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--sp-dark);
	margin: 0 0 14px;
}

.sp-seo-band__list {
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
}

.sp-seo-band__list li {
	position: relative;
	padding-left: 20px;
	font-size: 0.9rem;
	color: var(--sp-text);
	line-height: 1.5;
}

.sp-seo-band__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--sp-accent);
}

.sp-seo-band__links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid var(--sp-border-brand);
}

.sp-seo-band__links a {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--sp-primary);
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--sp-primary-light);
	border: 1px solid rgba(139, 63, 214, 0.15);
	transition: background var(--sp-transition), color var(--sp-transition);
}

.sp-seo-band__links a:hover {
	background: var(--sp-primary);
	color: #fff;
}

/* ---- Vertical SEO landing pages ---- */
.sp-vertical-hero {
	padding: 48px 0 64px;
	background: var(--sp-gradient-hero);
}

.sp-vertical-hero__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 40px;
	align-items: center;
}

.sp-vertical-hero__title {
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 800;
	color: var(--sp-dark);
	margin: 12px 0 16px;
	line-height: 1.2;
}

.sp-vertical-hero__lead {
	font-size: 1.05rem;
	color: var(--sp-text-muted);
	line-height: 1.75;
	margin: 0 0 24px;
	max-width: 560px;
}

.sp-vertical-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.sp-vertical-hero__visual img {
	border-radius: var(--sp-radius-lg);
	box-shadow: var(--sp-shadow-lg);
	width: 100%;
}

.sp-vertical-intro {
	padding: 76px 0;
	background: var(--sp-bg);
}

.sp-vertical-intro__grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 48px;
	align-items: start;
}

.sp-vertical-intro__content h2 {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--sp-dark);
	margin: 0 0 16px;
}

.sp-vertical-intro__content p {
	color: var(--sp-text-muted);
	line-height: 1.8;
	margin: 0 0 16px;
}

.sp-vertical-intro__aside {
	background: linear-gradient(135deg, #f8f4fd, #f0faf5);
	border-radius: var(--sp-radius-lg);
	padding: 28px 24px;
	border: 1px solid rgba(139, 63, 214, 0.12);
}

.sp-vertical-intro__aside h3 {
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0 0 14px;
	color: var(--sp-dark);
}

.sp-vertical-intro__aside ul {
	display: grid;
	gap: 10px;
}

.sp-vertical-intro__aside a {
	color: var(--sp-primary);
	font-weight: 600;
	font-size: 0.9375rem;
}

.sp-vertical-features {
	padding: 76px 0;
	background: var(--sp-bg-soft);
}

.sp-vertical-section__title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	text-align: center;
	color: var(--sp-dark);
	margin: 0 0 12px;
}

.sp-vertical-section__desc {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 40px;
	color: var(--sp-text-muted);
	line-height: 1.75;
}

.sp-vertical-features__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.sp-vertical-feature-card {
	background: #fff;
	border: 1px solid var(--sp-border);
	border-radius: var(--sp-radius-lg);
	padding: 28px 24px;
	transition: transform 0.35s var(--sp-ease-out), box-shadow 0.35s ease;
}

.sp-vertical-feature-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--sp-shadow-lg);
}

.sp-vertical-feature-card h3 {
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--sp-dark);
	margin: 0 0 10px;
}

.sp-vertical-feature-card p {
	font-size: 0.9375rem;
	color: var(--sp-text-muted);
	margin: 0;
	line-height: 1.65;
}

.sp-vertical-faq {
	padding-bottom: 76px;
}

.sp-home-faq__intro {
	text-align: center;
	max-width: 640px;
	margin: -20px auto 36px;
	color: var(--sp-text-muted);
	line-height: 1.7;
}

.sp-home-faq {
	background: var(--sp-bg-soft);
}

.sp-zimra-path-detail {
	padding: 76px 0;
}

.sp-zimra-path-detail--erp { background: var(--sp-primary-light); }
.sp-zimra-path-detail--fiscal { background: var(--sp-accent-light); }

.sp-zimra-path-detail__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 56px;
	align-items: center;
}

.sp-zimra-path-detail__grid--reverse .sp-zimra-path-detail__content { order: 2; }
.sp-zimra-path-detail__grid--reverse .sp-zimra-path-detail__visual { order: 1; }

.sp-zimra-path-detail__content h2 {
	font-size: clamp(1.5rem, 2.5vw, 1.85rem);
	font-weight: 700;
	color: var(--sp-dark);
	margin: 0 0 14px;
	line-height: 1.25;
}

.sp-zimra-path-detail__lead {
	font-size: 1rem;
	color: var(--sp-text-muted);
	line-height: 1.75;
	margin: 0 0 20px;
}

.sp-zimra-path-detail__list {
	display: grid;
	gap: 10px;
	margin: 0 0 18px;
	padding: 0;
	list-style: none;
}

.sp-zimra-path-detail__list li {
	position: relative;
	padding-left: 22px;
	font-size: 0.9375rem;
	color: var(--sp-text);
	line-height: 1.55;
}

.sp-zimra-path-detail__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--sp-accent);
}

.sp-zimra-path-detail--erp .sp-zimra-path-detail__list li::before { background: var(--sp-primary); }

.sp-zimra-path-detail__note {
	font-size: 0.9rem;
	color: var(--sp-text-muted);
	margin: 0 0 20px;
	line-height: 1.6;
}

.sp-zimra-path-detail__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.sp-zimra-path-detail__visual--illustration {
	background: var(--sp-bg);
	border: 1px solid var(--sp-border-brand);
	border-radius: var(--sp-radius-lg);
	padding: clamp(16px, 3vw, 24px);
	box-shadow: var(--sp-shadow);
}

.sp-products-section__header {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 40px;
}

.sp-products-section__title {
	font-size: clamp(1.4rem, 2.5vw, 1.85rem);
	font-weight: 700;
	color: var(--sp-dark);
	margin: 0 0 10px;
}

.sp-products-section__desc {
	margin: 0;
	color: var(--sp-text-muted);
	line-height: 1.7;
}

.sp-products-section__footer {
	text-align: center;
	margin: 28px 0 0;
}

.sp-products--fiscal {
	background: var(--sp-accent-light);
	padding-top: 0;
}

.sp-zimra-systems__grid--products {
	margin-bottom: 0;
}

/* ---- Hero actions ---- */

/* ---- Centered CTA button ---- */
.sp-center-cta { text-align: center; padding: 8px 0 60px; background: #fff; }

/* ---- Eyebrow label ---- */
.sp-eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--sp-accent-dark);
	background: rgba(34, 197, 94, 0.12);
	padding: 5px 12px;
	border-radius: 100px;
	margin-bottom: 14px;
}

/* ---- Inner page hero ---- */
.sp-page-hero {
	background: var(--sp-gradient-hero);
	border-bottom: 1px solid var(--sp-border-brand);
	padding: 56px 0;
	text-align: center;
}
.sp-breadcrumb { display: flex; justify-content: center; align-items: center; gap: 8px; font-size: 13px; color: var(--sp-text-muted); margin-bottom: 16px; }
.sp-breadcrumb a { color: var(--sp-primary); font-weight: 500; }
.sp-breadcrumb a:hover { text-decoration: underline; }
.sp-breadcrumb__current { color: var(--sp-text-muted); }
.sp-page-hero__title {
	font-size: clamp(1.9rem, 4vw, 2.6rem);
	font-weight: 700;
	color: var(--sp-dark);
	margin: 0 0 14px;
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.sp-page-hero__title::after {
	content: '';
	display: block;
	width: 52px;
	height: 4px;
	margin: 14px auto 0;
	border-radius: 2px;
	background: var(--sp-gradient-accent);
}
.sp-page-hero__subtitle { font-size: 1.0625rem; color: var(--sp-text-muted); max-width: 680px; margin: 0 auto; line-height: 1.7; }

/* ---- Products grid ---- */
.sp-products { padding: 76px 0; background: #fff; }
.sp-products__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sp-product-card { background: #fff; border: 1px solid var(--sp-border); border-radius: var(--sp-radius-lg); padding: 32px 28px; transition: box-shadow var(--sp-transition), transform var(--sp-transition), border-color var(--sp-transition); }
.sp-product-card:hover { box-shadow: var(--sp-shadow-lg); transform: translateY(-4px); border-color: transparent; }
.sp-product-card__icon { width: 60px; height: 60px; border-radius: 14px; background: var(--sp-accent-light); color: var(--sp-accent-dark); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.sp-product-card h3, .sp-product-card h4 { font-size: 1.125rem; font-weight: 600; color: var(--sp-dark); margin: 0 0 10px; }
.sp-product-card p { font-size: 0.9375rem; color: var(--sp-text-muted); margin: 0; line-height: 1.6; }

/* ---- POS hardware catalog ---- */
.sp-hardware { padding: 64px 0 76px; background: #fff; }
.sp-hardware__group { margin-bottom: 48px; scroll-margin-top: 120px; }
.sp-hardware__group:last-of-type { margin-bottom: 32px; }
.sp-hardware__group-head { margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--sp-border); }
.sp-hardware__group-title { margin: 0 0 6px; font-size: 1.25rem; font-weight: 700; color: var(--sp-dark); }
.sp-hardware__group-intro { margin: 0; color: var(--sp-text-muted); font-size: 0.9375rem; line-height: 1.6; }
.sp-hardware__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.sp-hardware-card { padding: 24px 22px; }
.sp-hardware-card__icon { width: 52px; height: 52px; border-radius: 12px; margin-bottom: 14px; }
.sp-hardware-card h4 { font-size: 1rem; }
.sp-hardware__note {
	padding: 28px;
	background: var(--sp-primary-light);
	border: 1px solid rgba(139, 63, 214, 0.18);
	border-radius: var(--sp-radius-lg);
	text-align: center;
}
.sp-hardware__note h3 { margin: 0 0 10px; font-size: 1.2rem; font-weight: 700; color: var(--sp-dark); }
.sp-hardware__note p { margin: 0 auto 20px; max-width: 640px; color: var(--sp-text-muted); line-height: 1.7; }
.sp-hardware__note-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ---- Contact ---- */
.sp-contact { padding: 76px 0; background: #fff; }
.sp-contact__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.sp-contact__title { font-size: 1.75rem; font-weight: 700; color: var(--sp-dark); margin: 0 0 12px; }
.sp-contact__lead { font-size: 1rem; color: var(--sp-text-muted); margin: 0 0 28px; line-height: 1.7; }
.sp-contact__list { display: grid; gap: 22px; }
.sp-contact__list li { display: flex; align-items: center; gap: 16px; }
.sp-contact__icon { width: 46px; height: 46px; min-width: 46px; border-radius: 50%; background: var(--sp-accent-light); color: var(--sp-accent-dark); display: flex; align-items: center; justify-content: center; }
.sp-contact__list strong { display: block; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--sp-text-muted); margin-bottom: 2px; }
.sp-contact__list a, .sp-contact__list span { font-size: 1rem; color: var(--sp-dark); font-weight: 500; }
.sp-contact__list a:hover { color: var(--sp-primary); }

.sp-contact__form-wrap { background: var(--sp-bg-soft); border: 1px solid var(--sp-border); border-radius: var(--sp-radius-lg); padding: 36px; }
.sp-contact-form { display: grid; gap: 18px; }
.sp-field { display: grid; gap: 6px; }
.sp-field label { font-size: 0.875rem; font-weight: 600; color: var(--sp-dark); }
.sp-field input, .sp-field textarea {
	width: 100%;
	padding: 12px 14px;
	font-family: var(--sp-font);
	font-size: 0.9375rem;
	color: var(--sp-text);
	background: #fff;
	border: 1px solid var(--sp-border);
	border-radius: var(--sp-radius);
	transition: border-color var(--sp-transition), box-shadow var(--sp-transition);
}
.sp-field input:focus, .sp-field textarea:focus { outline: none; border-color: var(--sp-accent); box-shadow: 0 0 0 3px var(--sp-accent-muted); }
.sp-field textarea { resize: vertical; min-height: 110px; }
.sp-field--file input[type="file"] {
	width: 100%;
	padding: 10px 12px;
	font-size: 0.875rem;
	font-family: var(--sp-font);
	color: var(--sp-dark);
	background: #fff;
	border: 1px solid var(--sp-border);
	border-radius: var(--sp-radius-sm);
}
.sp-field--file input[type="file"]::file-selector-button {
	margin-right: 12px;
	padding: 8px 14px;
	border: 0;
	border-radius: var(--sp-radius-sm);
	background: var(--sp-primary);
	color: #fff;
	font-family: var(--sp-font);
	font-size: 0.8125rem;
	font-weight: 600;
	cursor: pointer;
}
.sp-apply-fiscal__file-name { margin: 6px 0 0; font-size: 0.8125rem; font-weight: 600; color: var(--sp-accent-dark); }
.sp-contact-form .sp-btn { width: 100%; }

/* ---- Get Started application ---- */
.sp-apply { padding: 64px 0 76px; background: #fff; }
.sp-apply__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 40px; align-items: start; }
.sp-apply__aside { position: sticky; top: 96px; padding: 24px; background: var(--sp-bg-soft); border: 1px solid var(--sp-border-brand); border-radius: var(--sp-radius-lg); }
.sp-apply__aside-title { margin: 0 0 16px; font-size: 1.125rem; font-weight: 700; color: var(--sp-dark); }
.sp-apply__steps { margin: 0 0 20px; padding-left: 1.2rem; color: var(--sp-text-muted); font-size: 0.9rem; line-height: 1.7; }
.sp-apply__steps li { margin-bottom: 8px; }
.sp-apply__help { margin: 0; font-size: 0.8125rem; color: var(--sp-text-muted); line-height: 1.6; }
.sp-apply__help a { color: var(--sp-primary); font-weight: 600; }

.sp-apply__form-wrap { background: var(--sp-bg-soft); border: 1px solid var(--sp-border); border-radius: var(--sp-radius-lg); padding: 28px; }
.sp-apply-form { display: grid; gap: 24px; }
.sp-apply-form__section { display: grid; gap: 14px; padding-bottom: 8px; border-bottom: 1px solid var(--sp-border); }
.sp-apply-form__section:last-of-type { border-bottom: none; }
.sp-apply-form__heading { margin: 0; font-size: 1rem; font-weight: 700; color: var(--sp-dark); }
.sp-apply-form__heading-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.sp-apply-form__toggle { padding: 0; border: 0; background: none; font-family: var(--sp-font); font-size: 0.8125rem; font-weight: 600; color: var(--sp-primary); cursor: pointer; }
.sp-apply-form__toggle:hover,
.sp-apply-form__toggle:focus-visible { color: var(--sp-accent-dark); outline: none; text-decoration: underline; }
.sp-apply-form__hint { margin: -6px 0 4px; font-size: 0.8125rem; color: var(--sp-text-muted); }
.sp-apply-form__row { display: grid; gap: 14px; }
.sp-apply-form__row--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sp-apply-form__row--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sp-apply-form__actions { display: grid; gap: 12px; }
.sp-apply-form__status { margin: 0; font-size: 0.875rem; line-height: 1.5; }
.sp-apply-form__status.is-error { color: #b42318; }
.sp-apply-form__status.is-success { color: var(--sp-accent-dark); }
.sp-required { color: var(--sp-primary); }

.sp-field select {
	width: 100%;
	padding: 12px 14px;
	font-family: var(--sp-font);
	font-size: 0.9375rem;
	color: var(--sp-text);
	background: #fff;
	border: 1px solid var(--sp-border);
	border-radius: var(--sp-radius);
	transition: border-color var(--sp-transition), box-shadow var(--sp-transition);
}
.sp-field select:focus { outline: none; border-color: var(--sp-accent); box-shadow: 0 0 0 3px var(--sp-accent-muted); }
.sp-field--hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.sp-apply-modules__label { margin: 0 0 10px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--sp-text-muted); }
.sp-apply-modules--operations .sp-apply-modules__label { color: var(--sp-accent-dark); }
.sp-apply-modules--finance .sp-apply-modules__label { color: var(--sp-primary); }
.sp-apply-modules__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-bottom: 16px; }

.sp-apply-module { display: block; cursor: pointer; }
.sp-apply-module input { position: absolute; opacity: 0; pointer-events: none; }
.sp-apply-module__box {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 52px;
	padding: 10px 12px;
	background: #fff;
	border: 1px solid var(--sp-border-brand);
	border-radius: 10px;
	transition: border-color var(--sp-transition), box-shadow var(--sp-transition), background var(--sp-transition);
}
.sp-apply-module__icon { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 8px; background: var(--sp-accent-light); color: var(--sp-accent-dark); flex-shrink: 0; }
.sp-apply-modules--finance .sp-apply-module__icon { background: var(--sp-primary-light); color: var(--sp-primary); }
.sp-apply-module__name { font-size: 0.8125rem; font-weight: 600; line-height: 1.35; color: var(--sp-dark); }
.sp-apply-module input:checked + .sp-apply-module__box { border-color: var(--sp-accent); background: var(--sp-accent-light); box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.2); }
.sp-apply-modules--finance .sp-apply-module input:checked + .sp-apply-module__box { border-color: var(--sp-primary); background: var(--sp-primary-light); box-shadow: 0 0 0 1px rgba(139, 63, 214, 0.16); }
.sp-apply-module input:focus-visible + .sp-apply-module__box { outline: 2px solid var(--sp-primary); outline-offset: 2px; }

.sp-apply-fiscal { gap: 16px; }
.sp-apply-fiscal__intro { display: grid; gap: 6px; }
.sp-apply-fiscal__toggle { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; font-weight: 600; color: var(--sp-dark); cursor: pointer; }
.sp-apply-fiscal__toggle input { margin-top: 3px; accent-color: var(--sp-primary); }
.sp-apply-fiscal__fields { display: grid; gap: 14px; padding: 16px; background: #fff; border: 1px solid var(--sp-border-brand); border-radius: var(--sp-radius-md); }
.sp-apply-fiscal__actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.sp-apply-fiscal__status { margin: 0; font-size: 0.8125rem; line-height: 1.5; }
.sp-apply-fiscal__status.is-error { color: #b42318; }
.sp-apply-fiscal__status.is-success { color: var(--sp-accent-dark); }
.sp-apply-fiscal__result { padding: 14px; background: var(--sp-accent-light); border: 1px solid rgba(34, 197, 94, 0.28); border-radius: var(--sp-radius-md); }
.sp-apply-fiscal__result-title { margin: 0 0 10px; font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--sp-accent-dark); }
.sp-apply-fiscal__result-list { margin: 0; display: grid; gap: 8px; }
.sp-apply-fiscal__result-list div { display: grid; grid-template-columns: 88px 1fr; gap: 8px; font-size: 0.8125rem; }
.sp-apply-fiscal__result-list dt { margin: 0; font-weight: 600; color: var(--sp-text-muted); }
.sp-apply-fiscal__result-list dd { margin: 0; font-weight: 600; color: var(--sp-dark); }

@media (max-width: 900px) {
	.sp-apply__grid { grid-template-columns: 1fr; }
	.sp-apply__aside { position: static; }
}

@media (max-width: 600px) {
	.sp-apply-form__row--2,
	.sp-apply-form__row--3,
	.sp-apply-modules__grid { grid-template-columns: 1fr; }
	.sp-apply__form-wrap { padding: 20px 16px; }
}

/* ---- Generic page content ---- */
.sp-page-content { padding: 64px 0; background: #fff; }
.sp-rich-text { max-width: 820px; margin: 0 auto; font-size: 1rem; color: var(--sp-text); line-height: 1.8; }
.sp-rich-text h2 { font-size: 1.5rem; font-weight: 700; color: var(--sp-dark); margin: 1.6em 0 0.6em; }
.sp-rich-text h3 { font-size: 1.2rem; font-weight: 600; color: var(--sp-dark); margin: 1.4em 0 0.5em; }
.sp-rich-text p { margin: 0 0 1.1em; }
.sp-rich-text a { color: var(--sp-primary); text-decoration: underline; }
.sp-rich-text ul, .sp-rich-text ol { margin: 0 0 1.1em 1.2em; }
.sp-rich-text li { list-style: disc; margin-bottom: 0.4em; }

/* ---- Variations ---- */
.sp-smart__grid--4 { grid-template-columns: repeat(4, 1fr); }
.sp-footer__about { font-size: 13px; color: rgba(255, 255, 255, 0.6); line-height: 1.7; margin: 16px 0 0; max-width: 280px; }
.sp-industry-card__label {
	display: block;
	padding: 14px 16px 16px;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--sp-dark);
	text-align: center;
	background: linear-gradient(180deg, var(--sp-accent-light) 0%, var(--sp-bg) 100%);
	border-top: 2px solid var(--sp-border-brand);
}
.sp-industry-card__desc { display: block; padding: 6px 18px 18px; font-size: 0.8125rem; color: var(--sp-text-muted); text-align: center; line-height: 1.55; }
.sp-industry-card:not(:has(.sp-industry-card__desc)) .sp-industry-card__label { padding-bottom: 16px; }

/* ---- Branded section headings ---- */
.sp-trust__heading,
.sp-smart__title,
.sp-apps__title,
.sp-industries__title,
.sp-pricing__title,
.sp-faq-section__title,
.sp-erp-spotlight__title,
.sp-modules__title {
	position: relative;
}

.sp-trust__heading::after,
.sp-smart__title::after,
.sp-apps__title::after,
.sp-industries__title::after,
.sp-pricing__title::after,
.sp-faq-section__title::after,
.sp-erp-spotlight__title::after,
.sp-modules__title::after {
	content: '';
	display: block;
	width: 52px;
	height: 4px;
	margin: 14px auto 0;
	border-radius: 2px;
	background: var(--sp-gradient-accent);
}

.sp-overview__title::after,
.sp-feature-row__title::after {
	content: '';
	display: block;
	width: 44px;
	height: 4px;
	margin-top: 12px;
	border-radius: 2px;
	background: var(--sp-gradient-accent);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Grids reflow before the nav collapses */
@media (max-width: 1100px) {
	.sp-smart__grid { grid-template-columns: repeat(3, 1fr); }
	.sp-smart__grid--4 { grid-template-columns: repeat(2, 1fr); }
	.sp-apps__grid { grid-template-columns: repeat(2, 1fr); }
	.sp-products__grid { grid-template-columns: repeat(2, 1fr); }
	.sp-hardware__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.sp-footer__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Nav collapses to drawer ---- */
@media (max-width: 992px) {
	.sp-topbar { display: none; }

	.sp-header__inner { height: 104px; }

	.setuperp-landing .sp-logo__img { height: 88px; width: 88px; }

	.sp-menu-toggle { display: flex; }

	.sp-header__backdrop {
		display: block;
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.45);
		opacity: 0;
		visibility: hidden;
		transition: opacity var(--sp-transition), visibility var(--sp-transition);
		z-index: 9100;
	}

	.sp-header.is-menu-open .sp-header__backdrop { opacity: 1; visibility: visible; }

	.sp-header__panel {
		position: fixed;
		top: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
		width: min(380px, 90vw);
		height: 100vh;
		height: 100dvh;
		padding: 84px 24px 32px;
		background: #fff;
		box-shadow: -18px 0 45px rgba(0, 0, 0, 0.16);
		overflow-y: auto;
		transform: translateX(105%);
		transition: transform 0.28s ease;
		z-index: 9200;
	}

	.sp-header.is-menu-open .sp-header__panel { transform: translateX(0); }

	.sp-nav { width: 100%; flex: none; }

	.sp-nav__list { flex-direction: column; align-items: stretch; gap: 0; }

	.sp-nav__item { border-bottom: 1px solid var(--sp-border); flex-wrap: wrap; }

	.sp-nav__link {
		flex: 1 1 auto;
		height: auto;
		padding: 15px 0;
		font-size: 15px;
		border-radius: 0;
	}

	.sp-nav__item--dropdown .sp-nav__link { padding-right: 8px; }

	.sp-nav__trigger {
		width: 52px;
		height: 52px;
		justify-content: center;
		padding: 0;
		border-radius: 0;
	}

	.sp-nav__dropdown,
	.sp-nav__item--dropdown-wide > .sp-nav__dropdown {
		flex-basis: 100%;
		width: 100%;
		position: static;
		min-width: 0;
		padding: 0;
		opacity: 1;
		visibility: visible;
		transform: none;
		pointer-events: auto;
		display: none;
	}

	.sp-nav__item.is-open > .sp-nav__dropdown { display: block; }

	.sp-nav__dropdown-inner,
	.sp-nav__dropdown-inner--grid {
		display: block;
		min-width: 0;
		padding: 0 0 12px 16px;
		border: 0;
		box-shadow: none;
		background: transparent;
	}

	.sp-nav__dropdown-inner a { padding: 9px 0; color: var(--sp-text-muted); font-size: 14px; }

	.sp-header__actions {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
		margin-top: 24px;
		padding-top: 24px;
		border-top: 1px solid var(--sp-border);
	}

	.sp-header__signin {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 46px;
		border: 1px solid var(--sp-border);
		border-radius: 6px;
	}

	.sp-header__actions .sp-btn { width: 100%; min-height: 46px; }

	.sp-hero { padding: 56px 0 64px; background: var(--sp-hero-bg); }
	.sp-hero__grid { grid-template-columns: 1fr; gap: 40px; max-width: var(--sp-container); }
	.sp-hero__content { padding-right: 0; text-align: center; }
	.sp-hero__desc { margin-left: auto; margin-right: auto; max-width: 640px; }
	.sp-hero__actions { justify-content: center; }
	.sp-hero__points { align-items: center; }
	.sp-hero__visual { max-height: none; overflow: visible; margin-top: 0; justify-content: center; }
	.setuperp-landing .sp-hero__showcase { margin-top: 0; max-width: 100%; max-height: 340px; object-position: center center; }

	.sp-erp-spotlight__grid {
		grid-template-columns: 1fr;
	}

	.sp-pain-points__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sp-seo-band__grid {
		grid-template-columns: 1fr;
	}

	.sp-vertical-hero__grid,
	.sp-vertical-intro__grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.sp-vertical-features__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.sp-zimra-path-detail__grid,
	.sp-zimra-path-detail__grid--reverse .sp-zimra-path-detail__content,
	.sp-zimra-path-detail__grid--reverse .sp-zimra-path-detail__visual { grid-template-columns: 1fr; }
	.sp-zimra-path-detail__grid--reverse .sp-zimra-path-detail__content,
	.sp-zimra-path-detail__grid--reverse .sp-zimra-path-detail__visual { order: unset; }
	.sp-zimra-hero__grid,
	.sp-zimra-intro__grid,
	.sp-zimra-checklist__grid { grid-template-columns: 1fr; gap: 36px; }
	.sp-zimra-benefits__grid { grid-template-columns: repeat(2, 1fr); }
	.sp-zimra-steps__grid { grid-template-columns: repeat(2, 1fr); }

	.sp-overview__grid,
	.sp-contact__grid,
	.sp-feature-row__grid { grid-template-columns: 1fr; gap: 36px; }

	.sp-feature-row--reverse .sp-feature-row__media,
	.sp-feature-row--reverse .sp-feature-row__content { order: unset; }
}

@media (max-width: 768px) {
	.sp-hero { padding: 48px 0; }
	.setuperp-landing .sp-hero__showcase { max-height: 280px; object-position: center center; }

	.sp-trust__grid,
	.sp-smart__grid,
	.sp-smart__grid--4,
	.sp-apps__grid,
	.sp-products__grid,
	.sp-industries__grid,
	.sp-pricing__grid,
	.sp-footer__grid { grid-template-columns: 1fr; }

	.sp-hardware__grid { grid-template-columns: 1fr; }

	.sp-zimra-benefits__grid,
	.sp-zimra-steps__grid { grid-template-columns: 1fr; }
	.sp-zimra-systems__grid { grid-template-columns: repeat(2, 1fr); }
	.sp-pain-points__grid { grid-template-columns: 1fr; }

	.sp-vertical-features__grid { grid-template-columns: 1fr; }

	.sp-feature-row,
	.sp-overview,
	.sp-smart,
	.sp-apps,
	.sp-industries,
	.sp-pricing,
	.sp-faq-section,
	.sp-cta,
	.sp-trust { padding: 48px 0; }
}

@media (max-width: 480px) {
	.sp-container { padding: 0 16px; }
	.sp-trust__grid { grid-template-columns: 1fr; }
	.setuperp-landing .sp-logo__img { height: 80px; width: 80px; }
}

/* Hero base image — fixed, no bobbing */
.setuperp-landing .sp-pos-scene__base {
	animation: none !important;
	transform: none !important;
}

/* ==========================================================================
   BRANDED ISOMETRIC ILLUSTRATIONS
   ========================================================================== */
.sp-illustration {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
	border-radius: var(--sp-radius-lg);
}

.sp-illustration--thumb {
	width: 100%;
	max-height: 88px;
	object-fit: contain;
}

.setuperp-landing .sp-hero__showcase.sp-illustration {
	max-width: 600px;
	border-radius: var(--sp-radius-lg);
	background: transparent;
	box-shadow: 0 12px 40px rgba(139, 63, 214, 0.12);
}

.sp-overview__visual--illustration::before,
.sp-feature-row__media--illustration::before,
.sp-feature-row__media--illustration::after {
	display: none;
}

.sp-overview__visual--illustration,
.sp-feature-row__media--illustration,
.sp-zimra-hero__visual--illustration {
	background: var(--sp-bg-brand);
	border-radius: var(--sp-radius-lg);
	padding: clamp(16px, 3vw, 28px);
	border: 1px solid var(--sp-border-brand);
	box-shadow: var(--sp-shadow);
}

.setuperp-landing .sp-overview__visual--illustration img,
.setuperp-landing .sp-feature-row__media--illustration img {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 100%;
	aspect-ratio: auto;
	height: auto;
	border-radius: var(--sp-radius);
	object-fit: contain;
	box-shadow: none;
}

.sp-zimra-hero__visual--illustration img {
	border-radius: var(--sp-radius-lg);
	box-shadow: none;
	width: 100%;
}

.sp-smart-card--illustrated,
.sp-app-card--illustrated,
.sp-product-card--illustrated {
	overflow: hidden;
}

.sp-smart-card__thumb,
.sp-app-card__thumb,
.sp-product-card__thumb {
	background: var(--sp-bg-brand);
	border-radius: var(--sp-radius);
	padding: 12px;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100px;
	border: 1px solid var(--sp-border-brand);
}

.sp-product-card__thumb {
	margin-bottom: 18px;
}

.sp-app-card__thumb {
	margin-bottom: 14px;
	min-height: 90px;
}

/* ==========================================================================
   HERO POS SCENE — in-image sale flow animation
   ========================================================================== */
.sp-pos-scene {
	position: relative;
	width: 100%;
	max-width: 600px;
	margin-left: auto;
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.sp-pos-scene__frame {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: var(--sp-radius-lg);
	box-shadow: var(--sp-shadow-brand);
	border: 1px solid var(--sp-border-brand);
	isolation: isolate;
	line-height: 0;
}

.sp-pos-scene__base {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 0;
	box-shadow: none;
}

.sp-pos-scene__overlay {
	position: absolute;
	top: 5%;
	right: 3%;
	bottom: 5%;
	left: 3%;
	pointer-events: none;
	overflow: hidden;
}

/* --- Step 1: Barcode scanner (right side of illustration) --- */
.sp-pos-scene__barcode {
	position: absolute;
	left: 71%;
	top: 47%;
	width: 11%;
	height: 9%;
	border: 2px dashed rgba(34, 197, 94, 0.55);
	border-radius: 3px;
	opacity: 0;
	animation: spPosBarcode 16s var(--sp-ease-out) infinite;
}

.sp-pos-scene__scan-beam {
	position: absolute;
	left: 70%;
	top: 45%;
	width: 13%;
	height: 2px;
	background: linear-gradient(90deg, transparent, #22c55e, transparent);
	box-shadow: 0 0 8px rgba(34, 197, 94, 0.55);
	opacity: 0;
	transform-origin: center top;
	animation: spPosScanBeam 16s var(--sp-ease-out) infinite;
}

.sp-pos-scene__scan-pulse {
	position: absolute;
	left: 72%;
	top: 46%;
	width: 9%;
	height: 9%;
	border-radius: 50%;
	border: 2px solid var(--sp-accent);
	opacity: 0;
	transform-origin: center center;
	animation: spPosScanPulse 16s var(--sp-ease-out) infinite;
}

/* --- Step 2: Cart line on monitor screen --- */
.sp-pos-scene__cart-item {
	position: absolute;
	left: 39%;
	top: 22%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 6px;
	width: 24%;
	max-width: 24%;
	padding: 5px 8px;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(139, 63, 214, 0.28);
	border-left: 3px solid var(--sp-primary);
	border-radius: 5px;
	box-shadow: 0 4px 12px rgba(139, 63, 214, 0.14);
	font-size: clamp(8px, 1.4vw, 11px);
	font-weight: 600;
	color: var(--sp-dark);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	opacity: 0;
	transform: translateY(4px) scale(0.96);
	transform-origin: center top;
	animation: spPosCartItem 16s var(--sp-ease-out) infinite;
}

.sp-pos-scene__cart-name {
	overflow: hidden;
	text-overflow: ellipsis;
}

.sp-pos-scene__cart-price {
	color: var(--sp-primary);
	font-weight: 800;
	flex-shrink: 0;
}

.sp-pos-scene__total {
	position: absolute;
	left: 45%;
	top: 36%;
	font-size: clamp(9px, 1.5vw, 12px);
	font-weight: 800;
	color: var(--sp-primary);
	background: rgba(255, 255, 255, 0.92);
	padding: 2px 7px;
	border-radius: 4px;
	opacity: 0;
	animation: spPosTotal 16s var(--sp-ease-out) infinite;
}

/* --- Step 3: Card payment terminal (bottom-right) --- */
.sp-pos-scene__card {
	position: absolute;
	right: 10%;
	bottom: 12%;
	display: flex;
	color: var(--sp-primary);
	background: #fff;
	padding: 5px 7px;
	border-radius: 5px;
	box-shadow: 0 6px 16px rgba(139, 63, 214, 0.18);
	opacity: 0;
	transform: translateY(6px);
	transform-origin: center bottom;
	animation: spPosCard 16s var(--sp-ease-out) infinite;
}

.sp-pos-scene__payment-ok {
	position: absolute;
	right: 12%;
	bottom: 25%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: clamp(22px, 4.5vw, 28px);
	height: clamp(22px, 4.5vw, 28px);
	border-radius: 50%;
	background: var(--sp-accent);
	color: #fff;
	box-shadow: 0 4px 12px rgba(34, 197, 94, 0.35);
	opacity: 0;
	transform: scale(0.6);
	transform-origin: center center;
	animation: spPosPaymentOk 16s var(--sp-ease-out) infinite;
}

/* --- Step 4: Receipt from printer (top-right) --- */
.sp-pos-scene__receipt {
	position: absolute;
	right: 9%;
	top: 15%;
	width: 10%;
	min-height: 0;
	padding: 5px 4px;
	background: #fff;
	border: 1px solid var(--sp-border);
	border-radius: 3px 3px 0 0;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
	opacity: 0;
	transform: translateY(-8px);
	transform-origin: center top;
	animation: spPosReceipt 16s var(--sp-ease-out) infinite;
}

.sp-pos-scene__receipt-line {
	display: block;
	height: 2px;
	background: #e5e7eb;
	border-radius: 2px;
	margin-bottom: 3px;
}

.sp-pos-scene__receipt-line--short {
	width: 70%;
}

.sp-pos-scene__receipt-qr {
	display: block;
	width: 100%;
	aspect-ratio: 1;
	background:
		linear-gradient(90deg, #111 2px, transparent 2px) 0 0 / 4px 4px,
		linear-gradient(#111 2px, transparent 2px) 0 0 / 4px 4px;
	opacity: 0.75;
	border-radius: 2px;
	margin-top: 3px;
}

/* 16s loop: scan 0-25%, cart 25-50%, pay 50-75%, receipt 75-100% */
@keyframes spPosBarcode {
	0%, 2% { opacity: 0; }
	5%, 22% { opacity: 1; }
	26%, 100% { opacity: 0; }
}

@keyframes spPosScanBeam {
	0%, 4% { opacity: 0; transform: translateY(0); }
	7%, 20% { opacity: 1; transform: translateY(8px); }
	24%, 100% { opacity: 0; transform: translateY(14px); }
}

@keyframes spPosScanPulse {
	0%, 6% { opacity: 0; transform: scale(0.7); }
	10%, 18% { opacity: 0.65; transform: scale(1); }
	22%, 100% { opacity: 0; transform: scale(1.05); }
}

@keyframes spPosCartItem {
	0%, 24% { opacity: 0; transform: translateY(4px) scale(0.96); }
	28%, 46% { opacity: 1; transform: translateY(0) scale(1); }
	50%, 100% { opacity: 0; transform: translateY(-2px) scale(0.98); }
}

@keyframes spPosTotal {
	0%, 30% { opacity: 0; }
	34%, 48% { opacity: 1; }
	52%, 100% { opacity: 0; }
}

@keyframes spPosCard {
	0%, 48% { opacity: 0; transform: translateY(6px); }
	52%, 58% { opacity: 1; transform: translateY(0); }
	62%, 100% { opacity: 0; transform: translateY(-4px); }
}

@keyframes spPosPaymentOk {
	0%, 56% { opacity: 0; transform: scale(0.6); }
	60%, 72% { opacity: 1; transform: scale(1); }
	76%, 100% { opacity: 0; transform: scale(1.05); }
}

@keyframes spPosReceipt {
	0%, 72% { opacity: 0; transform: translateY(-8px); }
	76%, 92% { opacity: 1; transform: translateY(0); }
	96%, 100% { opacity: 0; transform: translateY(4px); }
}

@media (max-width: 992px) {
	.sp-pos-scene {
		margin-left: auto;
		margin-right: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sp-pos-scene__overlay {
		animation: none !important;
	}

	.sp-pos-scene__cart-item {
		opacity: 0;
		transform: none;
		animation: none !important;
	}
}
