:root {
	--sp-primary: #E73D24;
	--sp-primary-hover: #cc3728;
	--sp-primary-tint: #FEF1EF;
	--sp-text: #4B4B4B;
	--sp-text-dark: #1f1f1f;
	--sp-border: #EFEFEF;
	--sp-bg: #F7F7F7;
	--sp-navy: #17212B;
	--sp-muted: #737A82;
}

* { box-sizing: border-box; }

body {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, sans-serif;
	color: var(--sp-text);
	background: var(--sp-bg);
}

.sat-gate {
	position: fixed;
	inset: 0;
	background: #fff;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	color: var(--sp-text-dark);
}

.sat-gate-content {
	display: flex;
	align-items: center;
	gap: 12px;
}

.sat-loader {
	width: 20px;
	height: 20px;
	border: 2px solid #f2c9c2;
	border-top-color: var(--sp-primary);
	border-radius: 50%;
	animation: sat-spin .7s linear infinite;
}

@keyframes sat-spin { to { transform: rotate(360deg); } }

.sat-header {
	background: #fff;
	border-bottom: 1px solid #e7e7e7;
	box-shadow: 0 8px 28px rgba(23, 33, 43, .06);
	padding: 18px 0;
	position: sticky;
	top: 0;
	z-index: 20;
}

.sat-brand {
	text-decoration: none;
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
}

.sat-brand img {
	display: block;
	width: 200px;
	height: auto;
}

.sat-brand-product {
	display: inline-flex;
	align-items: center;
	color: #fff;
	background: var(--sp-primary);
	border-radius: 999px;
	padding: 3px 9px;
	font-size: 10px;
	font-weight: 750;
	letter-spacing: .08em;
	line-height: 1;
	text-transform: uppercase;
}

.sat-nav {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: nowrap;
	white-space: nowrap;
}

.sat-nav a {
	margin-left: 0;
	color: var(--sp-text);
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
}

.sat-nav a.active,
.sat-nav a:hover { color: var(--sp-primary); }

.sat-nav-link {
	padding: 11px 8px;
}

.sat-nav .sat-nav-button {
	padding: 10px 17px;
	border: 1px solid #d9dcdf;
	border-radius: 8px;
	background: #fff;
	color: var(--sp-text-dark);
	transition: border-color .15s ease, color .15s ease, background .15s ease;
}

.sat-nav .sat-nav-button:hover,
.sat-nav .sat-nav-button.active {
	border-color: var(--sp-primary);
	background: var(--sp-primary-tint);
	color: var(--sp-primary);
}

.sat-user {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-left: 28px;
	color: var(--sp-muted);
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	max-width: 180px;
	overflow: hidden;
	text-overflow: ellipsis;
	pointer-events: none;
	user-select: none;
}

.sat-user-icon {
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	fill: currentColor;
}

.sat-nav .sat-nav-cta {
	color: #fff;
	padding: 11px 20px;
	margin-left: 0;
	border-radius: 8px;
	box-shadow: 0 8px 18px rgba(231, 61, 36, .2);
}

.sat-main {
	padding: 32px 0 64px;
	min-height: calc(100vh - 140px);
}

body[data-auth-required="0"] .sat-main {
	padding: 0;
}

.sat-footer {
	padding: 48px 0 24px;
	color: #6A6A6A;
	font-size: 13px;
	background: #fff;
	border-top: 1px solid var(--sp-border);
}

.sat-footer-title {
	color: var(--sp-text-dark);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.sat-footer-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sat-footer-list li {
	margin-bottom: 8px;
	line-height: 1.6;
}

.sat-footer-list a {
	color: #6A6A6A;
	text-decoration: none;
}

.sat-footer-list a:hover { color: var(--sp-primary); }

.sat-footer-copy {
	margin-top: 28px;
	padding-top: 18px;
	border-top: 1px solid var(--sp-border);
	text-align: center;
	font-size: 12px;
}

.sat-card,
.sat-item {
	background: #fff;
	border: 1px solid var(--sp-border);
	border-radius: 12px;
	padding: 24px;
}

.sat-item {
	margin-bottom: 12px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

.btn-main {
	background: var(--sp-primary);
	border-color: var(--sp-primary);
	color: #fff;
}

.btn-main:hover,
.btn-main:focus {
	background: var(--sp-primary-hover);
	border-color: var(--sp-primary-hover);
	color: #fff;
}

.btn-opacity-main {
	background: var(--sp-primary-tint);
	border-color: #F4D4CE;
	color: var(--sp-primary);
}

h1 {
	font-size: 28px;
	color: var(--sp-text-dark);
	font-weight: 700;
}

.sat-badge {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
}

.sat-steps-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 22px;
}

.sat-steps-card__head > span {
	color: var(--sp-muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.sat-steps-card__head > strong {
	color: var(--sp-text-dark);
	font-size: 13px;
	font-weight: 650;
}

.sat-steps {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 0;
}

.sat-steps__item {
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	min-width: 0;
	padding: 0 8px;
}

.sat-steps__item:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 15px;
	left: calc(50% + 18px);
	right: calc(-50% + 18px);
	height: 2px;
	background: #e6e6e6;
	z-index: 0;
}

.sat-steps__item.is-done:not(:last-child)::after {
	background: var(--sp-primary);
}

.sat-steps__marker {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 2px solid #d8d8d8;
	background: #fff;
	color: #9a9fa4;
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 10px;
}

.sat-steps__item.is-done .sat-steps__marker {
	background: var(--sp-primary);
	border-color: var(--sp-primary);
	color: #fff;
}

.sat-steps__item.is-current .sat-steps__marker {
	border-color: var(--sp-primary);
	color: var(--sp-primary);
	box-shadow: 0 0 0 4px var(--sp-primary-tint);
}

.sat-steps__item.is-failed .sat-steps__marker {
	background: #fff;
	border-color: #c0392b;
	color: #c0392b;
}

.sat-steps__body strong {
	display: block;
	color: var(--sp-text-dark);
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 2px;
}

.sat-steps__body small {
	display: block;
	color: var(--sp-muted);
	font-size: 11px;
	line-height: 1.4;
}

.sat-steps__item.is-upcoming .sat-steps__body strong,
.sat-steps__item.is-upcoming .sat-steps__body small {
	color: #a0a5aa;
}

.sat-steps__item.is-failed .sat-steps__body strong {
	color: #c0392b;
}

.sat-steps__note {
	margin-top: 16px;
	padding: 10px 12px;
	background: #f8f1f0;
	border-left: 3px solid #c0392b;
	border-radius: 6px;
	color: #6d3a35;
	font-size: 12px;
}

.sat-repeat-row {
	display: flex;
	gap: 8px;
	margin-bottom: 8px;
}

.sat-repeat-row--ram,
.sat-repeat-row--disk {
	flex-wrap: wrap;
	align-items: flex-end;
}

.sat-repeat-row--ram .form-control,
.sat-repeat-row--disk .form-control {
	flex: 1 1 120px;
	min-width: 0;
}

.sat-repeat-row .sat-field {
	flex: 1 1 120px;
	min-width: 0;
}

.sat-repeat-row .sat-field--narrow {
	flex: 0 0 100px;
	max-width: 120px;
}

.sat-field-label {
	display: block;
	margin-bottom: 6px;
	color: #6b7278;
	font-size: 11px;
	font-weight: 650;
}

.sat-repeat-row .sat-qty-input {
	flex: 0 0 90px;
	max-width: 110px;
	width: 100%;
}

.sat-repeat-row .sat-repeat-remove {
	align-self: flex-end;
	height: 47px;
}

.sat-star-rating {
	display: flex;
	align-items: center;
	gap: 4px;
	min-height: 47px;
}

.sat-star {
	appearance: none;
	background: transparent;
	border: 0;
	padding: 0 2px;
	font-size: 28px;
	line-height: 1;
	color: #d5d8db;
	cursor: pointer;
	transition: color .15s ease, transform .15s ease;
}

.sat-star:hover,
.sat-star.is-active {
	color: #e73d24;
}

.sat-star:hover {
	transform: scale(1.08);
}

.sat-star-label {
	margin-left: 10px;
	color: #6b7278;
	font-size: 13px;
	font-weight: 600;
}

.sat-stars-readonly {
	color: #d5d8db;
	letter-spacing: 1px;
}

.sat-stars-readonly .is-on {
	color: #e73d24;
}

.sat-platform-components {
	padding: 16px 16px 4px;
	border: 1px solid #e7e7e7;
	border-radius: 8px;
	background: #fafafa;
}

.sat-type-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.sat-type-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	width: 100%;
	padding: 20px 18px;
	text-align: left;
	background: #fff;
	border: 1.5px solid var(--sp-border);
	border-radius: 12px;
	cursor: pointer;
	transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease;
}

.sat-type-card:hover {
	border-color: #f0c4bc;
}

.sat-type-card.is-selected {
	border-color: var(--sp-primary);
	background: var(--sp-primary-tint);
	box-shadow: 0 0 0 3px rgba(231, 61, 36, .12);
}

.sat-type-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 4px;
	background: var(--sp-primary-tint);
	border-radius: 10px;
	color: var(--sp-primary);
}

.sat-type-card.is-selected .sat-type-card__icon {
	background: #fff;
}

.sat-type-card__icon svg {
	width: 26px;
	height: 26px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.sat-type-card__title {
	color: var(--sp-text-dark);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
}

.sat-type-card__desc {
	color: var(--sp-muted);
	font-size: 13px;
	line-height: 1.5;
}

@media (max-width: 767.98px) {
	.sat-type-grid {
		grid-template-columns: 1fr;
	}
}

.sat-media img,
.sat-media video {
	width: 100%;
	height: 160px;
	object-fit: cover;
	border-radius: 8px;
	background: #000;
}

.sat-quote-card {
	background: linear-gradient(135deg, #fff 0%, var(--sp-primary-tint) 100%);
	border-color: #f4d4ce;
	text-align: center;
	padding: 32px 28px;
}

.sat-quote-card__label {
	color: var(--sp-primary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.sat-quote-card__price {
	color: var(--sp-text-dark);
	font-size: clamp(32px, 5vw, 44px);
	font-weight: 750;
	letter-spacing: -.03em;
	line-height: 1.1;
	margin-bottom: 14px;
}

.sat-quote-card__note {
	max-width: 480px;
	margin: 0 auto 24px;
	color: var(--sp-muted);
	font-size: 14px;
	line-height: 1.6;
}

.sat-quote-card__actions {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}

.sat-appointment-current {
	padding: 12px 14px;
	background: #f5f6f7;
	border-radius: 8px;
	font-size: 14px;
	color: var(--sp-text);
}

.sat-slot-picker {
	display: grid;
	gap: 24px;
}

.sat-slot-picker__section {
	min-width: 0;
}

.sat-slot-picker__label {
	margin-bottom: 10px;
	color: var(--sp-text-dark);
	font-size: 12px;
	font-weight: 700;
}

.sat-slot-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(82px, 1fr));
	gap: 9px;
}

.sat-slot-grid--times {
	grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
}

.sat-slot-card {
	min-height: 58px;
	padding: 11px 12px;
	color: var(--sp-text-dark);
	background: #fff;
	border: 1.5px solid #dfe2e4;
	border-radius: 9px;
	font-size: 12px;
	font-weight: 650;
	cursor: pointer;
	transition: border-color .15s ease, background .15s ease, box-shadow .15s ease, transform .15s ease;
}

.sat-slot-card:hover {
	border-color: #efb4aa;
	transform: translateY(-1px);
}

.sat-slot-card:focus-visible {
	outline: 3px solid rgba(231, 61, 36, .2);
	outline-offset: 2px;
}

.sat-slot-card.is-selected {
	color: var(--sp-primary);
	background: var(--sp-primary-tint);
	border-color: var(--sp-primary);
	box-shadow: 0 0 0 3px rgba(231, 61, 36, .1);
}

.sat-slot-date-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	line-height: 1.1;
}

.sat-slot-date-card small,
.sat-slot-date-card span {
	color: var(--sp-muted);
	font-size: 9px;
	text-transform: uppercase;
}

.sat-slot-date-card strong {
	margin: 4px 0;
	font-size: 20px;
}

.sat-slot-message {
	grid-column: 1 / -1;
	padding: 14px;
	color: var(--sp-muted);
	background: #f7f8f9;
	border: 1px dashed #dfe2e4;
	border-radius: 9px;
	font-size: 12px;
}

.sat-slot-message--error {
	color: #9b2f20;
	background: var(--sp-primary-tint);
	border-color: #efb4aa;
}

.sat-gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.sat-gallery__item {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	border-radius: 10px;
	overflow: hidden;
	background: #111;
	cursor: pointer;
	aspect-ratio: 1;
}

.sat-gallery__item img,
.sat-gallery__item video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .25s ease;
}

.sat-gallery__item:hover img,
.sat-gallery__item:hover video {
	transform: scale(1.04);
}

.sat-gallery__play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: rgba(0, 0, 0, .28);
	font-size: 22px;
	pointer-events: none;
}

.sat-lightbox {
	position: fixed;
	inset: 0;
	z-index: 3000;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(15, 20, 26, .88);
	padding: 48px 64px;
}

.sat-lightbox.is-open { display: flex; }

body.sat-lightbox-open { overflow: hidden; }

.sat-lightbox__stage {
	max-width: min(960px, 100%);
	max-height: 85vh;
}

.sat-lightbox__stage img,
.sat-lightbox__stage video {
	display: block;
	max-width: 100%;
	max-height: 85vh;
	margin: 0 auto;
	border-radius: 8px;
	background: #000;
}

.sat-lightbox__close,
.sat-lightbox__nav {
	position: absolute;
	border: 0;
	background: rgba(255, 255, 255, .12);
	color: #fff;
	cursor: pointer;
	border-radius: 50%;
}

.sat-lightbox__close {
	top: 18px;
	right: 18px;
	width: 42px;
	height: 42px;
	font-size: 28px;
	line-height: 1;
}

.sat-lightbox__nav {
	top: 50%;
	transform: translateY(-50%);
	width: 46px;
	height: 46px;
	font-size: 28px;
	line-height: 1;
}

.sat-lightbox__prev { left: 16px; }
.sat-lightbox__next { right: 16px; }

.sat-lightbox__counter {
	position: absolute;
	left: 50%;
	bottom: 18px;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, .8);
	font-size: 13px;
	font-weight: 600;
}

.sat-log {
	border-bottom: 1px solid var(--sp-border);
	padding: 14px 0;
}

.sat-log:last-child { border-bottom: 0; }

.sat-log__head {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 12px;
	margin-bottom: 6px;
}

.sat-log__actor {
	color: var(--sp-text-dark);
	font-size: 13px;
	font-weight: 600;
}

.sat-log__time {
	margin-left: auto;
	color: var(--sp-muted);
	font-size: 12px;
}

.sat-log__message {
	color: var(--sp-text);
	font-size: 14px;
	line-height: 1.5;
}

.sat-log-badge {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .01em;
	white-space: nowrap;
}

.sat-log-badge--created { background: #eef2f6; color: #3d4a57; }
.sat-log-badge--updated { background: #fff4e5; color: #9a5b00; }
.sat-log-badge--deleted { background: #ececed; color: #3a3a3a; }
.sat-log-badge--quoted { background: #e8f4fc; color: #0b6e99; }
.sat-log-badge--revised { background: #e7f6fb; color: #0a6c8c; }
.sat-log-badge--accepted { background: #e8f7ee; color: #1f7a45; }
.sat-log-badge--declined,
.sat-log-badge--rejected { background: #fdeceb; color: #b42318; }
.sat-log-badge--cancelled { background: #ececed; color: #3a3a3a; }
.sat-log-badge--appointment { background: #eaf0ff; color: #2f4fbf; }
.sat-log-badge--reschedule { background: #f3eefc; color: #6b3fa0; }
.sat-log-badge--default { background: #f3f4f5; color: #555; }

.sat-view-chat .sat-chat {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 520px;
	padding: 18px 16px 16px;
}

@media (min-width: 992px) {
	.sat-view-layout { align-items: flex-start; }
	.sat-view-chat {
		position: sticky;
		top: 88px;
		align-self: flex-start;
		height: calc(100vh - 112px);
	}
	.sat-view-chat .sat-chat {
		min-height: 0;
		height: 100%;
	}
}

@media (max-width: 991.98px) {
	.sat-view-chat .sat-chat { min-height: 420px; }
}

.sat-chat__thread {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
	min-height: 240px;
	overflow-y: auto;
	padding: 14px 10px;
	margin-bottom: 12px;
	background: #eceff3;
	border-radius: 14px;
}

.sat-chat__empty {
	color: var(--sp-muted);
	font-size: 14px;
	text-align: center;
	padding: 28px 8px;
}

.sat-chat__row {
	display: flex;
	align-items: flex-end;
	gap: 8px;
	max-width: 92%;
}

.sat-chat__row.is-admin { align-self: flex-start; }
.sat-chat__row.is-client {
	align-self: flex-end;
	flex-direction: row-reverse;
}

.sat-chat__avatar {
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
}

.sat-chat__row.is-admin .sat-chat__avatar {
	background: #d9dee6;
	color: #3d4a57;
}

.sat-chat__row.is-client .sat-chat__avatar {
	background: var(--sp-primary);
	color: #fff;
}

.sat-chat__bubble {
	position: relative;
	max-width: 100%;
	padding: 8px 12px 7px;
	border-radius: 16px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, .06);
}

.sat-chat__bubble.is-client {
	background: var(--sp-primary);
	color: #fff;
	border-bottom-right-radius: 4px;
}

.sat-chat__bubble.is-admin {
	background: #fff;
	color: var(--sp-text);
	border-bottom-left-radius: 4px;
}

.sat-chat__bubble.is-client::after,
.sat-chat__bubble.is-admin::after {
	content: "";
	position: absolute;
	bottom: 0;
	width: 10px;
	height: 10px;
}

.sat-chat__bubble.is-client::after {
	right: -5px;
	background: var(--sp-primary);
	clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.sat-chat__bubble.is-admin::after {
	left: -5px;
	background: #fff;
	clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.sat-chat__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 6px 8px;
	margin-bottom: 3px;
	font-size: 11px;
	opacity: .78;
}

.sat-chat__meta strong {
	font-size: 12px;
	font-weight: 700;
	opacity: 1;
}

.sat-chat__bubble.is-client .sat-chat__meta { color: rgba(255, 255, 255, .9); }
.sat-chat__bubble.is-admin .sat-chat__meta { color: var(--sp-muted); }

.sat-chat__body {
	font-size: 14px;
	line-height: 1.45;
	word-break: break-word;
}

.sat-chat__files {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px solid rgba(0, 0, 0, .08);
}

.sat-chat__bubble.is-client .sat-chat__files {
	border-top-color: rgba(255, 255, 255, .25);
}

.sat-chat__files a {
	font-size: 13px;
	text-decoration: none;
}

.sat-chat__bubble.is-admin .sat-chat__files a { color: var(--sp-primary); }
.sat-chat__bubble.is-client .sat-chat__files a { color: #fff; text-decoration: underline; }
.sat-chat__files a:hover { text-decoration: underline; }

.sat-chat__form textarea {
	border-radius: 10px;
	resize: none;
	font-size: 14px;
}

.sat-chat__form-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: 8px;
}

.sat-chat__attach {
	position: relative;
	margin: 0;
	font-size: 13px;
	font-weight: 600;
	color: var(--sp-primary);
	cursor: pointer;
}

.sat-chat__form input[type="file"] {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.sat-chat__hint {
	margin-top: 6px;
	font-size: 11px;
	color: var(--sp-muted);
}

.sat-existing-media {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	gap: 12px;
}

.sat-existing-media__item {
	border: 1px solid #e5e8ec;
	border-radius: 10px;
	padding: 8px;
	background: #fff;
}

.sat-existing-media__item.is-removed {
	opacity: .45;
	outline: 2px dashed #b42318;
}

.sat-existing-media__item img,
.sat-existing-media__item video {
	width: 100%;
	height: 90px;
	object-fit: cover;
	border-radius: 6px;
	background: #111;
	display: block;
	margin-bottom: 8px;
}

.sat-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--sp-primary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.sat-eyebrow > span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--sp-primary);
}

.sat-hero {
	position: relative;
	overflow: hidden;
	padding: 92px 0 88px;
	background: #fff;
	border-bottom: 1px solid var(--sp-border);
}

.sat-hero::before,
.sat-hero::after {
	content: "";
	position: absolute;
	border: 1px solid #f0f0f0;
	border-radius: 50%;
	pointer-events: none;
}

.sat-hero::before { width: 460px; height: 460px; right: -220px; top: -250px; }
.sat-hero::after { width: 280px; height: 280px; left: -210px; bottom: -180px; }

.sat-hero h1 {
	font-size: clamp(22px, 3.1vw, 38px);
	line-height: 1.12;
	letter-spacing: -.04em;
	margin: 18px 0 24px;
}

.sat-hero-line {
	display: block;
	white-space: nowrap;
}

.sat-hero h1 strong {
	display: block;
	color: var(--sp-primary);
	font-weight: 700;
}

.sat-hero-lead {
	max-width: none;
	font-size: 18px;
	line-height: 1.75;
	color: #687078;
	margin-bottom: 32px;
}

.sat-hero-actions {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-bottom: 38px;
}

.sat-hero-actions .btn,
.sat-final-cta .btn {
	padding: 14px 24px;
	font-size: 15px;
	font-weight: 650;
	border-radius: 8px;
	box-shadow: 0 8px 20px rgba(231, 61, 36, .16);
}

.sat-hero-actions .btn span,
.sat-final-cta .btn span,
.sat-form-submit .btn span { margin-left: 12px; }

.sat-text-link {
	color: var(--sp-text-dark);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.sat-text-link:hover { color: var(--sp-primary); }
.sat-text-link span { color: var(--sp-primary); margin-left: 6px; }

.sat-trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	color: #6a7178;
	font-size: 13px;
}

.sat-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	margin-right: 6px;
	color: var(--sp-primary);
	background: var(--sp-primary-tint);
	border-radius: 50%;
	font-size: 11px;
	font-weight: 700;
}

.sat-hero-panel,
.sat-request-demo {
	position: relative;
	max-width: 470px;
	margin-left: auto;
	padding: 24px;
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 16px;
	box-shadow: 0 26px 70px rgba(23, 33, 43, .12);
}

.sat-hero-panel::before,
.sat-request-demo::before {
	content: "";
	position: absolute;
	inset: 14px -12px -12px 14px;
	border: 1px solid #eee;
	border-radius: 16px;
	z-index: -1;
}

.sat-panel-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--sp-border);
}

.sat-panel-label { color: var(--sp-text-dark); font-size: 13px; font-weight: 700; }

.sat-status-dot {
	color: #397352;
	background: #edf8f1;
	border-radius: 999px;
	padding: 6px 10px;
	font-size: 11px;
	font-weight: 650;
}

.sat-status-dot::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 6px; background: #3d9863; border-radius: 50%; }

.sat-request-demo {
	min-height: 420px;
	overflow: hidden;
}

.sat-demo-progress {
	height: 4px;
	margin: 18px 0 24px;
	overflow: hidden;
	background: #edf0f2;
	border-radius: 999px;
}

.sat-demo-progress span {
	display: block;
	width: 33.333%;
	height: 100%;
	background: var(--sp-primary);
	border-radius: inherit;
	transition: width .4s ease;
}

.sat-demo-stage {
	min-height: 205px;
	padding: 4px 2px 12px;
}

.sat-demo-stage.is-active {
	animation: sat-demo-enter .35s ease both;
}

.sat-demo-stage > small {
	display: block;
	margin-bottom: 8px;
	color: var(--sp-primary);
	font-size: 9px;
	font-weight: 750;
	letter-spacing: .1em;
}

.sat-demo-stage > strong {
	display: block;
	color: var(--sp-text-dark);
	font-size: 18px;
}

.sat-demo-options {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 24px;
}

.sat-demo-options span {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 20px 16px;
	color: #687078;
	border: 1px solid #e4e7e9;
	border-radius: 10px;
	font-size: 12px;
	font-weight: 650;
}

.sat-demo-options span.is-selected {
	color: var(--sp-primary);
	border-color: var(--sp-primary);
	background: var(--sp-primary-tint);
	box-shadow: 0 0 0 3px rgba(231, 61, 36, .08);
}

.sat-demo-options b {
	font-size: 21px;
	line-height: 1;
}

.sat-demo-fields {
	margin-top: 22px;
}

.sat-demo-fields > span {
	display: block;
	height: 38px;
	margin-bottom: 10px;
	padding: 15px 13px;
	background: #f6f7f8;
	border: 1px solid #e7e9eb;
	border-radius: 7px;
}

.sat-demo-fields > span i {
	display: block;
	height: 7px;
	background: #d4d8db;
	border-radius: 999px;
}

.sat-demo-fields > div {
	display: flex;
	align-items: center;
	gap: 8px;
}

.sat-demo-fields > div b {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	color: var(--sp-primary);
	background: var(--sp-primary-tint);
	border: 1px dashed #efb4aa;
	border-radius: 7px;
	font-size: 16px;
}

.sat-demo-fields > div em {
	margin-left: 3px;
	color: var(--sp-muted);
	font-size: 10px;
	font-style: normal;
}

.sat-demo-complete {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 28px;
	padding: 24px 20px;
	background: #edf8f1;
	border: 1px solid #d5ebdd;
	border-radius: 10px;
}

.sat-demo-complete > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	flex: 0 0 46px;
	color: #fff;
	background: #3d9863;
	border-radius: 50%;
	font-size: 20px;
	font-weight: 700;
}

.sat-demo-complete p { margin: 0; }
.sat-demo-complete b { display: block; color: #245c3b; font-size: 13px; }
.sat-demo-complete small { display: block; margin-top: 5px; color: #5d7867; font-size: 10px; }

.sat-demo-controls {
	display: flex;
	justify-content: center;
	gap: 7px;
	margin: 4px 0 17px;
}

.sat-demo-controls button {
	width: 8px;
	height: 8px;
	padding: 0;
	background: #d8dcdf;
	border: 0;
	border-radius: 999px;
	transition: width .2s ease, background .2s ease;
}

.sat-demo-controls button.is-active {
	width: 24px;
	background: var(--sp-primary);
}

.sat-demo-controls button:focus-visible {
	outline: 3px solid rgba(231, 61, 36, .25);
	outline-offset: 3px;
}

@keyframes sat-demo-enter {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: translateY(0); }
}

.sat-server-visual {
	padding: 24px;
	margin: 20px 0;
	background: #f5f6f7;
	border-radius: 10px;
}

.sat-server-unit {
	height: 47px;
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 0 13px;
	margin-bottom: 6px;
	background: #28323c;
	border: 1px solid #3d4852;
	border-radius: 5px;
	box-shadow: inset 0 0 0 1px #151b21;
}

.sat-server-unit:last-child { margin-bottom: 0; }
.sat-server-unit span { width: 44%; height: 18px; border: 1px solid #65717c; background: #1d252d; }
.sat-server-unit i { width: 6px; height: 6px; background: #6fb875; border-radius: 50%; }
.sat-server-unit i + i { background: #df9b3f; }
.sat-server-unit b { width: 26%; height: 20px; margin-left: auto; border: 1px solid #596570; }

.sat-panel-product {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	padding: 0 2px 18px;
}

.sat-panel-product small { display: block; color: #92979d; font-size: 9px; letter-spacing: .08em; margin-bottom: 5px; }
.sat-panel-product strong { color: var(--sp-text-dark); font-size: 12px; }

.sat-panel-message {
	display: flex;
	align-items: center;
	gap: 11px;
	background: var(--sp-primary-tint);
	border-left: 3px solid var(--sp-primary);
	padding: 12px 14px;
}

.sat-panel-message > span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 31px;
	height: 31px;
	flex: 0 0 31px;
	background: var(--sp-primary);
	color: #fff;
	border-radius: 50%;
	font-size: 10px;
	font-weight: 700;
}

.sat-panel-message p { margin: 0; color: #6a5a57; font-size: 11px; }
.sat-panel-message strong { display: block; color: var(--sp-text-dark); font-size: 11px; margin-bottom: 2px; }

.sat-proof {
	padding: 25px 0;
	background: #fafafa;
	border-bottom: 1px solid var(--sp-border);
	text-align: center;
}

.sat-proof p { color: #999; font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 15px; }
.sat-proof-items { display: flex; justify-content: center; align-items: center; gap: 24px; flex-wrap: wrap; }
.sat-proof-items span { color: #555d64; font-size: 14px; font-weight: 700; }
.sat-proof-items i { width: 3px; height: 3px; background: #c8c8c8; border-radius: 50%; }

.sat-section { padding: 96px 0; }
.sat-section-heading { max-width: 670px; margin: 0 auto 50px; text-align: center; }
.sat-section-heading .sat-eyebrow { justify-content: center; }
.sat-section h2,
.sat-final-cta h2 {
	color: var(--sp-text-dark);
	font-size: clamp(30px, 4vw, 44px);
	line-height: 1.18;
	letter-spacing: -.035em;
	margin: 14px 0 16px;
	font-weight: 700;
}
.sat-section-heading > p { color: var(--sp-muted); line-height: 1.7; }

.sat-process { background: #fff; }
.sat-faq { background: #f6f7f8; }
.sat-faq-list {
	max-width: 860px;
	margin: 0 auto;
	--bs-accordion-border-width: 0;
	--bs-accordion-btn-focus-box-shadow: none;
	--bs-accordion-active-bg: #fff;
	--bs-accordion-active-color: var(--sp-text-dark);
	--bs-accordion-btn-color: var(--sp-text-dark);
	--bs-accordion-btn-bg: #fff;
}
.sat-faq-item {
	margin-bottom: 12px;
	border: 1px solid #e9e9e9 !important;
	border-radius: 12px !important;
	background: #fff;
	overflow: hidden;
}
.sat-faq-item:last-child { margin-bottom: 0; }
.sat-faq-item .accordion-button {
	font-size: 16px;
	font-weight: 650;
	padding: 20px 24px;
	box-shadow: none;
}
.sat-faq-item .accordion-button:not(.collapsed) { box-shadow: none; }
.sat-faq-item .accordion-button:focus { box-shadow: none; }
.sat-faq-item .accordion-body {
	padding: 0 24px 22px;
	color: var(--sp-muted);
	font-size: 14px;
	line-height: 1.75;
}
.sat-faq-item .accordion-body p { margin: 0 0 12px; }
.sat-faq-item .accordion-body p:last-child { margin-bottom: 0; }
.sat-faq-cta {
	display: inline-block;
	color: var(--sp-primary);
	font-size: 14px;
	font-weight: 650;
	text-decoration: none;
}
.sat-faq-cta:hover { color: var(--sp-primary-hover); }
.sat-step-card {
	height: 100%;
	position: relative;
	padding: 32px;
	border: 1px solid #e9e9e9;
	border-radius: 12px;
	background: #fff;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.sat-step-card:hover { transform: translateY(-4px); border-color: #dedede; box-shadow: 0 18px 45px rgba(23, 33, 43, .08); }
.sat-step-number { position: absolute; right: 26px; top: 24px; color: #e8e8e8; font-size: 28px; font-weight: 700; }
.sat-step-icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 28px;
	background: var(--sp-primary-tint);
	border-radius: 10px;
}
.sat-step-icon svg { width: 25px; fill: none; stroke: var(--sp-primary); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.sat-step-card h3 { color: var(--sp-text-dark); font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.sat-step-card p { color: var(--sp-muted); font-size: 14px; line-height: 1.75; margin: 0; }

.sat-why { background: #f6f7f8; }
.sat-why-visual { position: relative; max-width: 500px; min-height: 420px; display: flex; align-items: center; justify-content: center; background: #202a33; border-radius: 14px; overflow: hidden; }
.sat-why-img { width: 100%; height: auto; max-width: 380px; display: block; }
.sat-why-badge { position: absolute; left: 24px; bottom: 24px; z-index: 1; display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: #fff; border-radius: 9px; box-shadow: 0 12px 30px rgba(0,0,0,.24); }
.sat-why-badge > span { display: flex; align-items: center; justify-content: center; width: 29px; height: 29px; background: var(--sp-primary); color: #fff; border-radius: 50%; }
.sat-why-badge strong, .sat-feature-list strong { display: block; color: var(--sp-text-dark); font-size: 13px; }
.sat-why-badge small, .sat-feature-list small { display: block; color: #858b91; font-size: 11px; margin-top: 3px; }
.sat-why h2 { max-width: 570px; }
.sat-why-lead { color: var(--sp-muted); line-height: 1.8; margin-bottom: 28px; }
.sat-feature-list { list-style: none; margin: 0; padding: 0; }
.sat-feature-list li { display: flex; gap: 13px; padding: 14px 0; border-bottom: 1px solid #e4e5e6; }
.sat-feature-list li:last-child { border: 0; }
.sat-feature-list li > span { display: flex; align-items: center; justify-content: center; width: 23px; height: 23px; flex: 0 0 23px; color: var(--sp-primary); background: #fff; border: 1px solid #eee; border-radius: 50%; font-size: 11px; font-weight: 700; }

.sat-final-cta { padding: 0 0 88px; background: #f6f7f8; }
.sat-cta-box { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 44px 50px; background: var(--sp-primary); border-radius: 12px; }
.sat-cta-box > div > span { color: #ffd5ce; font-size: 12px; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
.sat-cta-box h2 { color: #fff; font-size: 32px; margin: 7px 0 0; }
.sat-cta-box .btn { flex: 0 0 auto; color: var(--sp-primary); box-shadow: none; }

.sat-form-heading { max-width: 760px; margin: 8px 0 36px; }
.sat-back-link { display: inline-block; color: #7d8389; font-size: 13px; text-decoration: none; margin-bottom: 25px; }
.sat-back-link:hover { color: var(--sp-primary); }
.sat-form-heading h1 { font-size: clamp(32px, 4vw, 43px); letter-spacing: -.035em; margin: 13px 0 12px; }
.sat-form-heading > p { color: var(--sp-muted); line-height: 1.7; margin: 0; }

.sat-form-aside {
	position: sticky;
	top: 24px;
	padding: 24px;
	background: var(--sp-navy);
	border-radius: 12px;
	color: #fff;
}
.sat-form-aside-title { color: #9da6ae; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 22px; }
.sat-form-aside ol { list-style: none; padding: 0; margin: 0; }
.sat-form-aside li { display: flex; gap: 12px; position: relative; padding-bottom: 26px; color: #8f99a2; }
.sat-form-aside li:not(:last-child)::after { content: ""; position: absolute; left: 14px; top: 32px; bottom: 5px; width: 1px; background: #3b4650; }
.sat-form-aside li > span { display: flex; align-items: center; justify-content: center; width: 29px; height: 29px; flex: 0 0 29px; border: 1px solid #56616b; border-radius: 50%; font-size: 11px; font-weight: 700; }
.sat-form-aside li.active > span { background: var(--sp-primary); border-color: var(--sp-primary); color: #fff; }
.sat-form-aside li.active strong { color: #fff; }
.sat-form-aside li.is-done > span { background: transparent; border-color: var(--sp-primary); color: var(--sp-primary); }
.sat-form-aside li.is-done strong { color: #d5dde3; }
.sat-form-aside li.is-clickable { cursor: pointer; }
.sat-form-aside li.is-clickable:hover strong { color: #fff; }
.sat-form-aside li strong { display: block; font-size: 12px; margin: 1px 0 3px; }
.sat-form-aside li small { display: block; font-size: 10px; }
.sat-aside-help { margin-top: 6px; padding: 17px; background: #222e38; border-left: 2px solid var(--sp-primary); border-radius: 5px; }
.sat-aside-help strong { font-size: 11px; }
.sat-aside-help p { color: #9ba4ac; font-size: 10px; line-height: 1.6; margin: 7px 0 0; }

.sat-form-card { background: #fff; border: 1px solid #e7e7e7; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 35px rgba(23, 33, 43, .05); }
.sat-form-section { padding: 34px 38px; border-bottom: 1px solid var(--sp-border); }
.sat-form-section-head { display: flex; gap: 15px; margin-bottom: 28px; }
.sat-form-section-head > span { display: flex; align-items: center; justify-content: center; width: 39px; height: 39px; flex: 0 0 39px; color: var(--sp-primary); background: var(--sp-primary-tint); border-radius: 8px; font-size: 11px; font-weight: 750; }
.sat-form-section-head h2 { color: var(--sp-text-dark); font-size: 19px; margin: 0 0 4px; font-weight: 700; }
.sat-form-section-head p { color: #8b9095; font-size: 12px; margin: 0; }
.sat-form-card .form-label { color: #33393e; font-size: 12px; font-weight: 650; margin-bottom: 8px; }
.sat-form-card .form-control,
.sat-form-card .form-select { min-height: 47px; border-color: #dedede; border-radius: 7px; font-size: 13px; color: var(--sp-text-dark); box-shadow: none; }
.sat-form-card textarea.form-control { min-height: auto; padding-top: 12px; }
.sat-form-card .form-control:focus,
.sat-form-card .form-select:focus { border-color: var(--sp-primary); box-shadow: 0 0 0 3px rgba(231, 61, 36, .09); }
.sat-form-card .form-control::placeholder { color: #afb3b7; }
.sat-optional, .sat-label-hint { color: #9a9fa4; font-size: 9px; font-weight: 500; margin-left: 5px; }
.sat-check-field { display: flex; align-items: center; min-height: 47px; padding: 0 14px; border: 1px solid #dedede; border-radius: 7px; background: #fafafa; }
.sat-check-field .form-check-input { margin: 0 9px 0 0; }
.sat-check-field .form-check-input:checked { background-color: var(--sp-primary); border-color: var(--sp-primary); }
.sat-check-field .form-check-label { font-size: 12px; color: #666d73; }
.sat-absent-fields.is-absent { opacity: .45; pointer-events: none; }
.sat-repeat-row .btn-outline-secondary { min-width: 47px; color: #899097; border-color: #dedede; }
.sat-upload { display: flex; flex-direction: column; align-items: center; padding: 38px 20px; text-align: center; background: #fafafa; border: 1px dashed #cfd2d4; border-radius: 9px; cursor: pointer; transition: border-color .2s ease, background .2s ease; }
.sat-upload:hover { border-color: var(--sp-primary); background: var(--sp-primary-tint); }
.sat-upload-icon { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; margin-bottom: 13px; color: var(--sp-primary); background: #fff; border: 1px solid #ececec; border-radius: 50%; font-size: 22px; }
.sat-upload strong { color: var(--sp-text-dark); font-size: 13px; }
.sat-upload small { color: #969ba0; font-size: 10px; margin-top: 7px; }
.sat-upload input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.sat-form-submit { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 38px; background: #fbfbfb; }
.sat-form-submit > div strong { display: block; color: var(--sp-text-dark); font-size: 11px; }
.sat-form-submit > div small { display: block; color: #94999e; font-size: 10px; margin-top: 3px; }
.sat-form-submit .btn { padding: 12px 22px; border-radius: 7px; font-size: 13px; font-weight: 650; }
.sat-wizard-nav { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.sat-wizard-nav .btn { min-width: 118px; }

@media (max-width: 991.98px) {
	.sat-user { display: none; }
	.sat-hero { padding: 68px 0; }
	.sat-hero-panel,
	.sat-request-demo { margin: 0 auto; }
	.sat-form-aside { position: static; }
	.sat-form-aside ol { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 10px; }
	.sat-form-aside li { padding: 0; flex: 0 0 auto; }
	.sat-form-aside li::after,
	.sat-aside-help { display: none; }
}

@media (max-width: 767.98px) {
	.sat-gallery { grid-template-columns: repeat(2, 1fr); }
	.sat-lightbox { padding: 56px 16px 40px; }
	.sat-lightbox__nav { width: 38px; height: 38px; font-size: 22px; }
	.sat-lightbox__prev { left: 8px; }
	.sat-lightbox__next { right: 8px; }
	.sat-log__time { margin-left: 0; width: 100%; }
	.sat-header { padding: 12px 0; }
	.sat-brand img { width: 116px; }
	.sat-brand-product { font-size: 8px; padding: 3px 7px; }
	body[data-auth-required="0"] .sat-nav a:not(.sat-nav-cta) { display: none; }
	body[data-auth-required="1"] .sat-nav a { font-size: 11px; }
	body[data-auth-required="1"] .sat-nav a:first-child { display: none; }
	.sat-nav .sat-nav-cta { padding: 8px 12px; }
	.sat-hero { padding: 52px 0 58px; }
	.sat-hero h1 { font-size: 28px; }
	.sat-hero-line { white-space: normal; }
	.sat-hero-lead { font-size: 16px; }
	.sat-hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
	.sat-trust-row { flex-direction: column; gap: 10px; }
	.sat-section { padding: 70px 0; }
	.sat-why-visual { min-height: 340px; }
	.sat-cta-box { align-items: flex-start; flex-direction: column; padding: 34px 28px; }
	.sat-cta-box h2 { font-size: 28px; }
	.sat-form-aside { padding: 18px; }
	.sat-form-aside-title { margin-bottom: 15px; }
	.sat-form-aside li small { display: none; }
	.sat-form-section { padding: 26px 20px; }
	.sat-form-submit { align-items: stretch; flex-direction: column; padding: 22px 20px; }
	.sat-form-submit .btn { width: 100%; }
	.sat-wizard-nav { width: 100%; }
	.sat-wizard-nav .btn { flex: 1; min-width: 0; }
	.sat-steps__item { padding: 0 4px; }
	.sat-steps__marker { width: 28px; height: 28px; font-size: 11px; margin-bottom: 8px; }
	.sat-steps__item:not(:last-child)::after { top: 13px; left: calc(50% + 16px); right: calc(-50% + 16px); }
	.sat-steps__body strong { font-size: 11px; }
	.sat-steps__body small { display: none; }
}

@media (prefers-reduced-motion: reduce) {
	.sat-demo-stage.is-active,
	.sat-demo-progress span,
	.sat-demo-controls button {
		animation: none;
		transition: none;
	}
}
