body.spp-product-page #content,
body.spp-product-page .site-content,
body.spp-product-page .content-area,
body.spp-product-page main#primary.spp-product {
	margin-block-start: 0 !important;
	padding-block-start: 0 !important;
}

body.spp-product-page,
body.spp-product-page #page,
body.spp-product-page #content,
body.spp-product-page .site-content {
	background-color: #f8f8f8;
}

body.spp-product-page main#primary.spp-product {
	margin-inline: 0 !important;
	margin-bottom: 0 !important;
	margin-top: calc(-1 * var(--spp-shell-gap, 0px)) !important;
}

/*
 * Elementor may give the global header template a height larger than the
 * actual 48px Sepanta navigation. On product pages the extra wrapper height
 * must not create a blank band below the fixed menu.
 */
body.spp-product-page .elementor-location-header:has(.sps-header) {
	height: 48px !important;
	min-height: 48px !important;
	margin-block: 0 !important;
	padding-block: 0 !important;
	overflow: visible !important;
}

body.spp-product-page .elementor-location-header :is(
	.e-con,
	.elementor-section,
	.elementor-container,
	.elementor-column,
	.elementor-widget,
	.elementor-widget-container
):has(.sps-header) {
	min-height: 0 !important;
	margin-block: 0 !important;
	padding-block: 0 !important;
}

.spp-product {
	--spp-navy: #000f59;
	--spp-orange: #ff7614;
	--spp-bg: #f8f8f8;
	--spp-white: #fff;
	--spp-text: #111827;
	--spp-muted: #64748b;
	--spp-border: #e5e7eb;
	--spp-soft-navy: rgba(0, 15, 89, .055);
	--spp-ease: cubic-bezier(.22, 1, .36, 1);
	--spp-shell-gap: 0px;
	width: 100%;
	position: relative;
	overflow-x: hidden;
	overflow-x: clip;
	color: var(--spp-text);
	background: var(--spp-bg);
	font-family: inherit;
	text-align: right;
}

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

.spp-product img {
	max-width: 100%;
}

.spp-container {
	width: min(1180px, calc(100% - 48px));
	margin-inline: auto;
}

.spp-product__article {
	position: relative;
	isolation: isolate;
}

.spp-sr-only {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	margin: -1px !important;
	padding: 0 !important;
	border: 0 !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
}

/* The white content sheet scrolls above and covers the sticky hero. */
.spp-product__content {
	position: relative;
	z-index: 3;
	min-height: 100vh;
	margin-top: -42px;
	padding-top: 22px;
	background: var(--spp-white);
	border-radius: 44px 44px 0 0;
	box-shadow: 0 -24px 70px rgba(15, 23, 42, .09);
}

.spp-product__content::before {
	content: "";
	position: absolute;
	top: 17px;
	left: 50%;
	width: 76px;
	height: 5px;
	background: #d8dce2;
	border-radius: 999px;
	transform: translateX(-50%);
}

/* Shared section type */
.spp-section {
	position: relative;
	padding: clamp(70px, 8vw, 104px) 0;
}

.spp-section__heading {
	max-width: 620px;
	margin: 0 0 clamp(32px, 4vw, 48px) auto;
	text-align: right;
}

.spp-section__heading > span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
	color: var(--spp-orange);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.8;
}

.spp-section__heading > span::before {
	content: "";
	width: 15px;
	height: 2px;
	background: currentColor;
	border-radius: 999px;
}

.spp-section__heading h2 {
	margin: 0;
	color: var(--spp-text);
	font-size: clamp(27px, 3vw, 38px);
	font-weight: 700;
	letter-spacing: -.03em;
	line-height: 1.5;
	text-wrap: balance;
}

/* Main competitive advantages */
.spp-primary {
	background: var(--spp-white);
	border: 0;
	padding-top: clamp(72px, 8vw, 98px);
}

.spp-primary__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	border: 0;
}

.spp-primary-card {
	position: relative;
	min-width: 0;
	min-height: 228px;
	padding: 26px 22px 28px;
	background: var(--spp-bg);
	border: 1px solid rgba(0, 15, 89, .06);
	border-radius: 22px;
	text-align: center;
	transition:
		background-color 360ms var(--spp-ease),
		border-color 360ms var(--spp-ease),
		box-shadow 360ms var(--spp-ease),
		transform 360ms var(--spp-ease);
}

.spp-primary-card:hover {
	background: var(--spp-white);
	border-color: rgba(0, 15, 89, .11);
	box-shadow: 0 16px 42px rgba(15, 23, 42, .065);
	transform: translateY(-2px);
}

.spp-primary-card__icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	margin: 0 auto 20px;
	background: var(--spp-white);
	border: 1px solid rgba(0, 15, 89, .075);
	border-radius: 50%;
	box-shadow: 0 6px 18px rgba(0, 15, 89, .035);
	transition:
		background-color 360ms var(--spp-ease),
		border-color 360ms var(--spp-ease),
		box-shadow 360ms var(--spp-ease),
		transform 360ms var(--spp-ease);
}

.spp-primary-card:hover .spp-primary-card__icon {
	background: var(--spp-white);
	border-color: rgba(0, 15, 89, .12);
	box-shadow: 0 10px 25px rgba(0, 15, 89, .075);
	transform: translateY(-1px) scale(1.035);
}

.spp-primary-card__icon .spp-icon-image {
	display: block;
	width: auto;
	height: auto;
	max-width: 28px;
	max-height: 28px;
	object-fit: contain;
}

.spp-primary-card h3 {
	margin: 0;
	color: var(--spp-navy);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.75;
}

.spp-primary-card p {
	margin: 9px 0 0;
	color: var(--spp-muted);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.95;
}

/* Other advantages live inside the same section */
.spp-primary__secondary {
	margin-top: 18px;
}

.spp-compact__grid {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px 12px;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
}

.spp-compact-card {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: auto;
	max-width: 100%;
	min-height: 40px;
	padding: 7px 14px;
	background: #eef0f3;
	border: 1px solid transparent;
	border-radius: 12px;
	text-align: center;
	transition:
		background-color 340ms var(--spp-ease),
		border-color 340ms var(--spp-ease),
		box-shadow 340ms var(--spp-ease),
		transform 340ms var(--spp-ease);
}

.spp-compact-card:hover {
	background: var(--spp-white);
	border-color: rgba(0, 15, 89, .08);
	box-shadow: 0 8px 22px rgba(15, 23, 42, .045);
	transform: translateY(-1px);
}

.spp-compact-card__icon {
	display: none;
}

.spp-compact-card__icon .spp-icon-image {
	display: block;
	width: auto;
	height: auto;
	max-width: 23px;
	max-height: 23px;
	object-fit: contain;
}

.spp-product .spp-primary__secondary .spp-compact-card h3 {
	min-width: 0;
	margin: 0;
	color: #253044;
	font-size: clamp(9.5px, .72vw, 10.5px) !important;
	font-weight: 600;
	line-height: 1.75;
}

/* Image-led product capabilities */
.spp-features {
	padding-top: clamp(40px, 5vw, 64px);
}

.spp-features__list {
	display: grid;
}

.spp-feature {
	display: grid;
	grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr);
	align-items: center;
	gap: clamp(46px, 7vw, 92px);
	min-height: 450px;
	padding: clamp(58px, 7vw, 88px) 0;
	border: 0;
	content-visibility: auto;
	contain-intrinsic-size: 450px;
}

.spp-feature:nth-child(even) {
	direction: ltr;
}

.spp-feature__content {
	position: relative;
	direction: rtl;
	padding-right: 17px;
}

.spp-feature__content::before {
	content: "";
	position: absolute;
	top: 7px;
	right: 0;
	width: 2px;
	height: 22px;
	background: var(--spp-orange);
	border-radius: 999px;
}

.spp-feature__content h3 {
	margin: 0;
	color: var(--spp-navy);
	font-size: clamp(22px, 2.25vw, 30px);
	font-weight: 700;
	letter-spacing: -.025em;
	line-height: 1.55;
	text-wrap: balance;
}

.spp-feature__content > p {
	margin: 13px 0 0;
	color: var(--spp-muted);
	font-size: 14px;
	line-height: 2;
}

.spp-feature__content ul {
	display: grid;
	gap: 9px;
	margin: 21px 0 0;
	padding: 0;
	list-style: none;
}

.spp-feature__content li {
	position: relative;
	padding: 1px 24px 1px 0;
	color: #3f4d61;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.85;
}

.spp-feature__content li::before {
	content: "";
	position: absolute;
	top: .63em;
	right: 0;
	width: 14px;
	height: 14px;
	background:
		linear-gradient(135deg, transparent 44%, var(--spp-navy) 44% 56%, transparent 56%) center / 6px 6px no-repeat,
		var(--spp-white);
	border: 1px solid rgba(0, 15, 89, .14);
	border-radius: 50%;
}

.spp-feature__media {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.spp-feature__image {
	display: block;
	width: 100%;
	height: auto;
	max-height: 410px;
	object-fit: contain;
	background: transparent;
	border: 0;
	border-radius: 14px;
	box-shadow: 0 24px 58px rgba(15, 23, 42, .11);
}

/* Progressive motion */
[data-spp-reveal] {
	opacity: 1;
	translate: none;
}

.spp-product.spp-motion-ready [data-spp-reveal] {
	opacity: 0;
	translate: 0 17px;
	transition:
		opacity 700ms var(--spp-ease),
		translate 700ms var(--spp-ease);
	transition-delay: var(--spp-reveal-delay, 0ms);
}

.spp-product.spp-motion-ready [data-spp-reveal].is-visible {
	opacity: 1;
	translate: 0 0;
}

/* Tablet */
@media (max-width: 1040px) {

	.spp-primary__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.spp-compact__grid {
		justify-content: center;
	}

	.spp-feature {
		grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
		gap: 42px;
	}
}

@media (max-width: 800px) {

	.spp-feature,
	.spp-feature:nth-child(even) {
		grid-template-columns: 1fr;
		gap: 34px;
		direction: rtl;
		min-height: 0;
	}

	.spp-feature__content {
		max-width: 680px;
	}
}

/* Mobile */
@media (max-width: 600px) {
	.spp-container {
		width: min(100% - 28px, 1180px);
	}

	.spp-product__content {
		margin-top: -28px;
		padding-top: 17px;
		border-radius: 28px 28px 0 0;
		box-shadow: 0 -18px 48px rgba(15, 23, 42, .085);
	}

	.spp-product__content::before {
		top: 12px;
		width: 58px;
		height: 4px;
	}

	.spp-section {
		padding: 60px 0;
	}

	.spp-section__heading {
		margin-bottom: 26px;
	}

	.spp-section__heading h2 {
		font-size: 27px;
	}

	.spp-primary__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}

	.spp-primary-card,
	.spp-primary-card:nth-child(n) {
		min-height: 188px;
		padding: 20px 11px 22px;
		border: 1px solid rgba(0, 15, 89, .06);
		border-radius: 17px;
	}

	.spp-primary-card__icon {
		width: 44px;
		height: 44px;
		margin: 0 auto 16px;
		border-radius: 50%;
	}

	.spp-primary-card h3 {
		font-size: 15px;
	}

	.spp-primary-card p {
		font-size: 12px;
	}

	.spp-primary__secondary {
		margin-top: 14px;
	}

	.spp-compact__grid {
		gap: 7px;
	}

	.spp-compact-card {
		display: flex;
		min-height: 38px;
		padding: 7px 12px;
		text-align: center;
	}

	.spp-compact-card__icon {
		display: none;
	}

	.spp-compact-card h3 {
		font-size: 9.5px !important;
	}

	.spp-features {
		padding-top: 22px;
	}

	.spp-feature,
	.spp-feature:nth-child(even) {
		gap: 27px;
		padding: 46px 0;
	}

	.spp-feature__content {
		padding-right: 14px;
	}

	.spp-feature__content h3 {
		font-size: 23px;
	}

	.spp-feature__content > p {
		font-size: 13px;
	}

	.spp-feature__content li {
		font-size: 12px;
	}

	.spp-feature__image {
		border-radius: 11px;
		box-shadow: 0 18px 44px rgba(15, 23, 42, .09);
	}
}

@media (prefers-reduced-motion: reduce) {
	.spp-product *,
	.spp-product *::before,
	.spp-product *::after {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}

	[data-spp-reveal] {
		opacity: 1 !important;
		translate: none !important;
	}
}

/* ==========================================================================
   Feature groups v2.1.0 - vertical tab rail + animated panel
   ========================================================================== */

.spp-feature-groups {
	--spp-groups-radius: 26px;
	padding: clamp(62px, 8vw, 104px) 0;
	background:
		radial-gradient(120% 90% at 88% -10%, rgba(255, 118, 20, .05), transparent 55%),
		radial-gradient(90% 80% at 6% 0%, rgba(0, 15, 89, .05), transparent 60%),
		var(--spp-white);
}

.spp-groups__head {
	width: min(760px, 100%);
	min-width: 0;
	margin: 0 0 clamp(28px, 3.4vw, 44px);
}

.spp-groups__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(255, 118, 20, .1);
	color: #c2530a;
	font-size: 12.5px;
	font-weight: 600;
}

.spp-groups__eyebrow::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--spp-orange);
}

.spp-groups__head h2 {
	margin: 14px 0 0;
	color: var(--spp-navy);
	font-size: clamp(24px, 2.6vw, 36px);
	font-weight: 800;
	line-height: 1.5;
	text-wrap: balance;
}

.spp-groups__head p {
	margin: 10px 0 0;
	color: var(--spp-muted);
	font-size: clamp(13.5px, 1.15vw, 15.5px);
	line-height: 1.9;
}

.spp-groups__shell {
	display: grid;
	grid-template-columns: minmax(0, clamp(240px, 27%, 330px)) minmax(0, 1fr);
	align-items: start;
	gap: clamp(16px, 1.8vw, 26px);
	min-width: 0;
	direction: rtl;
}

.spp-groups__rail {
	position: sticky;
	top: 68px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
	max-width: 100%;
	padding: 10px;
	background: #f5f6f8;
	border: 1px solid rgba(0, 15, 89, .05);
	border-radius: var(--spp-groups-radius);
}

.spp-groups__tab {
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 10px;
	width: 100%;
	min-width: 0;
	padding: 13px 14px;
	background: transparent;
	border: 0;
	border-radius: 16px;
	color: #3d4757;
	font-family: inherit;
	font-size: 13.5px;
	font-weight: 600;
	line-height: 1.7;
	text-align: right;
	cursor: pointer;
	transition:
		background-color 260ms var(--spp-ease),
		color 260ms var(--spp-ease),
		box-shadow 260ms var(--spp-ease);
}

.spp-groups__tab:hover {
	background: rgba(0, 15, 89, .045);
	color: var(--spp-navy);
}

.spp-groups__tab:focus-visible {
	outline: 2px solid var(--spp-orange);
	outline-offset: 2px;
}

.spp-groups__tab.is-active {
	background: var(--spp-navy);
	color: #fff;
	box-shadow: 0 14px 30px rgba(0, 15, 89, .16);
}

.spp-groups__tab-index {
	display: grid;
	flex: 0 0 auto;
	place-items: center;
	width: 26px;
	height: 26px;
	border-radius: 9px;
	background: rgba(0, 15, 89, .07);
	color: var(--spp-navy);
	font-size: 11.5px;
	font-weight: 700;
	transition:
		background-color 260ms var(--spp-ease),
		color 260ms var(--spp-ease);
}

.spp-groups__tab.is-active .spp-groups__tab-index {
	background: var(--spp-orange);
	color: #fff;
}

.spp-groups__tab-title {
	flex: 1 1 auto;
	min-width: 0;
	overflow-wrap: anywhere;
}

.spp-groups__tab-count {
	flex: 0 0 auto;
	min-width: 0;
	font-size: 11.5px;
	font-weight: 600;
	opacity: .5;
}

.spp-groups__tab.is-active .spp-groups__tab-count {
	opacity: .75;
}

.spp-groups__tab-arrow {
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	opacity: .3;
	transform: translateX(3px);
	transition:
		opacity 260ms var(--spp-ease),
		transform 320ms var(--spp-ease);
}

.spp-groups__tab.is-active .spp-groups__tab-arrow {
	opacity: 1;
	transform: translateX(-2px);
}

.spp-groups__stage {
	min-width: 0;
}

.spp-groups__panel {
	min-width: 0;
	padding: clamp(22px, 2.6vw, 34px);
	background: var(--spp-white);
	border: 1px solid rgba(0, 15, 89, .06);
	border-radius: var(--spp-groups-radius);
	box-shadow: 0 22px 60px rgba(15, 23, 42, .055);
}

.spp-groups__panel[hidden] {
	display: none;
}

.spp-groups__panel.is-active {
	animation: sppGroupIn 460ms var(--spp-ease) both;
}

@keyframes sppGroupIn {
	from {
		opacity: 0;
		transform: translate3d(0, 14px, 0);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.spp-groups__panel-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-width: 0;
	padding-bottom: 16px;
	margin-bottom: 8px;
	border-bottom: 1px solid rgba(0, 15, 89, .07);
}

.spp-groups__panel-head h3 {
	margin: 0;
	min-width: 0;
	color: var(--spp-navy);
	font-size: clamp(17px, 1.5vw, 21px);
	font-weight: 800;
	line-height: 1.6;
	overflow-wrap: anywhere;
}

.spp-groups__panel-meta {
	flex: 0 0 auto;
	padding: 5px 12px;
	border-radius: 999px;
	background: rgba(0, 15, 89, .05);
	color: #5b6779;
	font-size: 12px;
	font-weight: 600;
}

.spp-groups__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2px 18px;
	margin: 0;
	padding: 0;
	min-width: 0;
	list-style: none;
}

.spp-groups__item {
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr);
	align-items: start;
	gap: 10px;
	min-width: 0;
	padding: 11px 6px;
	border-radius: 12px;
	color: #465366;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.85;
	transition:
		background-color 220ms var(--spp-ease),
		color 220ms var(--spp-ease);
}

.spp-groups__item:hover {
	background: rgba(0, 15, 89, .035);
	color: var(--spp-navy);
}

.spp-groups__panel.is-active .spp-groups__item {
	animation: sppGroupItem 420ms var(--spp-ease) both;
	animation-delay: calc(var(--spp-item-index, 0) * 24ms);
}

@keyframes sppGroupItem {
	from {
		opacity: 0;
		transform: translate3d(0, 8px, 0);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.spp-groups__check {
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	margin-top: .3em;
	border-radius: 8px;
	background: rgba(255, 118, 20, .11);
	color: var(--spp-orange);
	transition: background-color 220ms var(--spp-ease);
}

.spp-groups__item:hover .spp-groups__check {
	background: rgba(255, 118, 20, .2);
}

.spp-groups__check svg {
	width: 13px;
	height: 13px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.spp-groups__item-text {
	min-width: 0;
	overflow-wrap: anywhere;
}

@media (max-width: 1024px) {
	.spp-groups__shell {
		grid-template-columns: minmax(0, 1fr);
	}

	.spp-groups__rail {
		position: static;
		top: auto;
		flex-direction: row;
		gap: 8px;
		padding: 8px;
		overflow-x: auto;
		overflow-y: hidden;
		overscroll-behavior-inline: contain;
		scroll-snap-type: inline proximity;
		scrollbar-width: none;
	}

	.spp-groups__rail::-webkit-scrollbar {
		display: none;
	}

	.spp-groups__tab {
		flex: 0 0 auto;
		width: auto;
		padding: 11px 13px;
		scroll-snap-align: center;
	}

	.spp-groups__tab-title {
		white-space: nowrap;
		overflow-wrap: normal;
	}

	.spp-groups__tab-arrow {
		display: none;
	}
}

@media (max-width: 640px) {
	.spp-groups__list {
		grid-template-columns: minmax(0, 1fr);
	}

	.spp-groups__panel {
		padding: 20px 16px;
	}

	.spp-groups__item {
		font-size: 12.5px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.spp-groups__panel.is-active,
	.spp-groups__panel.is-active .spp-groups__item {
		animation: none;
	}

	.spp-groups__tab,
	.spp-groups__tab-index,
	.spp-groups__tab-arrow,
	.spp-groups__item,
	.spp-groups__check {
		transition: none;
	}
}

/* ==========================================================================
   v2.1.0 - typography inheritance + hard theme/Elementor reset
   ========================================================================== */

.spp-product {
	--spp-font: var(--sptm-font, "yekanbakh", "YekanBakh", "Yekan Bakh", "IRANYekanX", "Vazirmatn", Tahoma, Arial, sans-serif);
	font-family: var(--spp-font);
}

.spp-product,
.spp-product h1,
.spp-product h2,
.spp-product h3,
.spp-product h4,
.spp-product p,
.spp-product li,
.spp-product span,
.spp-product a,
.spp-product b,
.spp-product strong,
.spp-product em,
.spp-product small,
.spp-product button,
.spp-product figcaption {
	font-family: var(--spp-font) !important;
}

/* The active theme and Elementor style bare buttons and links with their own
   borders, colours and underlines. Neutralise them inside the product page. */
.spp-product button,
.spp-product .spp-groups__tab {
	-webkit-appearance: none;
	appearance: none;
	background-image: none !important;
	border: 0 !important;
	border-radius: 16px;
	box-shadow: none;
	color: #3d4757;
	text-decoration: none !important;
	text-shadow: none !important;
	letter-spacing: normal;
}

.spp-product button:focus,
.spp-product .spp-groups__tab:focus {
	outline: 0;
	box-shadow: none;
}

.spp-product .spp-groups__tab {
	background-color: transparent !important;
}

.spp-product .spp-groups__tab:hover {
	background-color: rgba(0, 15, 89, .045) !important;
	color: var(--spp-navy) !important;
}

.spp-product .spp-groups__tab.is-active {
	background-color: var(--spp-navy) !important;
	color: #fff !important;
	box-shadow: 0 14px 30px rgba(0, 15, 89, .16);
}

.spp-product .spp-groups__tab:focus-visible {
	outline: 2px solid var(--spp-orange) !important;
	outline-offset: 2px;
}

.spp-product a {
	text-decoration: none;
}

.spp-product a.spp-button,
.spp-product a.spp-button:hover,
.spp-product a.spp-button:focus {
	border: 0 !important;
	text-decoration: none !important;
}

/* ==========================================================================
   v2.1.0 - hero
   ========================================================================== */

.spp-hero {
	/* Sticky so the white content sheet scrolls up and covers it (two layers). */
	position: sticky;
	z-index: 1;
	top: 0;
	display: grid;
	align-items: center;
	min-height: 100svh;
	overflow: clip;
	padding: clamp(56px, 7vw, 96px) 0 clamp(84px, 9vw, 124px);
	background:
		linear-gradient(180deg, #fdfdfe 0%, var(--spp-bg) 100%);
	isolation: isolate;
}

.spp-hero__aura {
	position: absolute;
	inset: -30% -10% auto -10%;
	height: 130%;
	background:
		radial-gradient(46% 42% at 82% 22%, rgba(255, 118, 20, .13), transparent 68%),
		radial-gradient(52% 48% at 12% 4%, rgba(0, 15, 89, .12), transparent 66%);
	z-index: -1;
	pointer-events: none;
}

.spp-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(0, 15, 89, .045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 15, 89, .045) 1px, transparent 1px);
	background-size: 74px 74px;
	mask-image: radial-gradient(75% 60% at 50% 30%, #000, transparent 72%);
	-webkit-mask-image: radial-gradient(75% 60% at 50% 30%, #000, transparent 72%);
	opacity: .55;
	z-index: -1;
	pointer-events: none;
}

.spp-hero__grid {
	display: grid;
	will-change: opacity, transform;
	grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
	align-items: center;
	gap: clamp(26px, 4vw, 60px);
	min-width: 0;
	direction: rtl;
}

.spp-hero__content {
	min-width: 0;
}

.spp-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 15px;
	border-radius: 999px;
	background: rgba(0, 15, 89, .06);
	color: var(--spp-navy);
	font-size: 12.5px;
	font-weight: 600;
}

.spp-hero__eyebrow::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--spp-orange);
	box-shadow: 0 0 0 4px rgba(255, 118, 20, .16);
}

.spp-hero h1 {
	margin: 16px 0 0;
	color: var(--spp-navy);
	font-size: clamp(28px, 4vw, 52px);
	font-weight: 800;
	line-height: 1.36;
	letter-spacing: -.01em;
	text-wrap: balance;
	overflow-wrap: anywhere;
}

.spp-hero__intro {
	width: min(56ch, 100%);
	margin: 16px 0 0;
	color: #55617a;
	font-size: clamp(14px, 1.25vw, 17px);
	font-weight: 500;
	line-height: 2;
}

.spp-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: clamp(22px, 2.6vw, 32px);
}

.spp-product .spp-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 26px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.6;
	cursor: pointer;
	transition:
		transform 320ms var(--spp-ease),
		box-shadow 320ms var(--spp-ease),
		background-color 320ms var(--spp-ease);
}

.spp-product .spp-button svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 320ms var(--spp-ease);
}

.spp-product .spp-button:hover svg {
	transform: translateX(-4px);
}

.spp-product .spp-button--hero {
	background: var(--spp-navy);
	color: #fff;
	box-shadow: 0 16px 34px rgba(0, 15, 89, .22);
}

.spp-product .spp-button--hero:hover,
.spp-product .spp-button--hero:focus-visible {
	background: #001573;
	transform: translateY(-2px);
	box-shadow: 0 22px 44px rgba(0, 15, 89, .26);
}

.spp-hero__media {
	position: relative;
	margin: 0;
	min-width: 0;
}

.spp-hero__media-glow {
	position: absolute;
	inset: 12% -6% -10% -6%;
	background: radial-gradient(60% 60% at 50% 60%, rgba(0, 15, 89, .18), transparent 70%);
	filter: blur(26px);
	z-index: 0;
	pointer-events: none;
}

.spp-hero__media-frame {
	position: relative;
	z-index: 1;
	overflow: hidden;
	border-radius: clamp(18px, 2vw, 26px);
	background: #fff;
	border: 1px solid rgba(0, 15, 89, .08);
	box-shadow:
		0 30px 70px rgba(15, 23, 42, .12),
		0 2px 0 rgba(255, 255, 255, .8) inset;
	transition: transform 520ms var(--spp-ease);
}

.spp-hero__media-frame::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 3px;
	background: linear-gradient(90deg, var(--spp-orange), rgba(255, 118, 20, 0));
}

.spp-hero__media:hover .spp-hero__media-frame {
	transform: translateY(-4px);
}

.spp-hero__image {
	display: block;
	width: 100%;
	height: auto;
	border-radius: inherit;
}

body.admin-bar .spp-hero {
	top: 32px;
	min-height: calc(100svh - 32px);
}

/* Keep the hero image inside one screen so the layering reads correctly. */
.spp-hero__media-frame .spp-hero__image {
	max-height: min(430px, 46svh);
	object-fit: cover;
}

@media (max-width: 900px) {
	.spp-hero {
		min-height: auto;
		position: relative;
		top: auto;
	}

	body.admin-bar .spp-hero {
		min-height: auto;
		top: auto;
	}
}

/* ==========================================================================
   v2.1.0 - closing call to action
   ========================================================================== */

.spp-cta {
	padding: clamp(56px, 7vw, 96px) 0 clamp(70px, 8vw, 108px);
	background: var(--spp-bg);
}

.spp-cta__panel {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: clamp(22px, 3vw, 44px);
	overflow: clip;
	min-width: 0;
	padding: clamp(30px, 4vw, 54px);
	border-radius: clamp(22px, 2.6vw, 32px);
	background: linear-gradient(135deg, #000f59 0%, #001a7d 52%, #000b3f 100%);
	box-shadow: 0 30px 70px rgba(0, 15, 89, .22);
	direction: rtl;
	isolation: isolate;
}

.spp-cta__mesh {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(42% 60% at 88% 8%, rgba(255, 118, 20, .3), transparent 66%),
		radial-gradient(38% 54% at 6% 96%, rgba(255, 255, 255, .12), transparent 68%);
	z-index: -1;
	pointer-events: none;
}

.spp-cta__copy {
	min-width: 0;
}

.spp-cta__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .12);
	color: #ffd9bd;
	font-size: 12px;
	font-weight: 600;
}

.spp-cta__eyebrow::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--spp-orange);
}

.spp-cta__copy h2 {
	margin: 14px 0 0;
	color: #fff;
	font-size: clamp(21px, 2.4vw, 32px);
	font-weight: 800;
	line-height: 1.5;
	text-wrap: balance;
	overflow-wrap: anywhere;
}

.spp-cta__copy p {
	width: min(62ch, 100%);
	margin: 12px 0 0;
	color: rgba(255, 255, 255, .74);
	font-size: clamp(13.5px, 1.15vw, 15.5px);
	font-weight: 500;
	line-height: 2;
}

.spp-cta__actions {
	flex: 0 0 auto;
}

.spp-product .spp-button--cta {
	background: var(--spp-orange);
	color: #fff;
	box-shadow: 0 16px 34px rgba(255, 118, 20, .3);
}

.spp-product .spp-button--cta:hover,
.spp-product .spp-button--cta:focus-visible {
	background: #ff8730;
	transform: translateY(-2px);
	box-shadow: 0 22px 44px rgba(255, 118, 20, .36);
}

@media (max-width: 900px) {
	.spp-hero__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: clamp(26px, 5vw, 40px);
	}

	.spp-cta__panel {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 600px) {
	.spp-hero {
		padding: 40px 0 54px;
	}

	.spp-hero__intro {
		line-height: 1.95;
	}

	.spp-product .spp-button {
		width: 100%;
		justify-content: center;
		padding: 14px 20px;
	}

	.spp-cta__panel {
		padding: 26px 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.spp-product .spp-button,
	.spp-product .spp-button svg,
	.spp-hero__media-frame {
		transition: none;
	}

	.spp-hero__media:hover .spp-hero__media-frame {
		transform: none;
	}
}
