/* ==========================================================================
   WinMedic Sales Page — Ultra-clean SaaS Medical Style
   Completely different design language from Landing Page.
   Mobile-first. Every rule starts at 320px and scales up.
   ========================================================================== */

/* ==========================================================================
   TOP BAR & HEADER
   ========================================================================== */
.sp-topbar {
	background: #f8fafc;
	border-bottom: 1px solid #eef2f6;
	padding: 0.4rem 0;
	font-size: 0.75rem;
	color: var(--wm-text-muted);
}

.sp-topbar .container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
}

.sp-topbar__phone {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	color: var(--wm-text-muted);
	font-weight: 500;
}

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

.sp-topbar__icon { width: 12px; height: 12px; }

.sp-topbar__hours {
	display: none;
	align-items: center;
	gap: 0.375rem;
}

@media (min-width: 30em) {
	.sp-topbar__hours { display: inline-flex; }
}

/* Header */
.sp-header {
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
	position: sticky;
	top: 0;
	z-index: 100;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.sp-header.is-scrolled {
	box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.sp-header.is-hidden {
	transform: translateY(-100%);
}

.sp-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 76px;
	gap: 1rem;
}

.sp-header .site-logo img { height: 56px; }

.sp-nav { display: none; }

@media (min-width: 64em) {
	.sp-nav {
		display: flex;
		align-items: center;
		gap: 2rem;
	}
}

.sp-nav a {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--wm-text-light);
	transition: color 0.2s ease;
}

.sp-nav a:hover,
.sp-nav a.current { color: var(--wm-text); }

.sp-header__actions { display: none; }

@media (min-width: 64em) {
	.sp-header__actions {
		display: flex;
		align-items: center;
		gap: 1rem;
	}
}

.sp-header__link {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--wm-text-light);
}

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

.btn--sm {
	padding: 0.5rem 1.25rem;
	font-size: 0.8125rem;
	border-radius: 999px;
}

.btn--block { width: 100%; }

/* Burger */
.sp-burger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	background: none;
	border: none;
	padding: 10px;
	cursor: pointer;
}

@media (min-width: 64em) { .sp-burger { display: none; } }

.sp-burger span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--wm-text);
	border-radius: 2px;
	transition: all 0.3s ease;
	transform-origin: center;
}

.sp-burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sp-burger.is-active span:nth-child(2) { opacity: 0; }
.sp-burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.sp-drawer {
	position: fixed;
	top: 0;
	right: -100%;
	width: 85%;
	max-width: 320px;
	height: 100%;
	background: #fff;
	z-index: 200;
	padding: 5rem 1.5rem 2rem;
	transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	display: flex;
	flex-direction: column;
	gap: 0;
	overflow-y: auto;
}

.sp-drawer.is-open { right: 0; }

.sp-drawer a {
	display: block;
	padding: 1rem 0;
	font-size: 1.0625rem;
	font-weight: 500;
	color: var(--wm-text);
	border-bottom: 1px solid var(--wm-border);
}

.sp-drawer__cta { margin-top: auto; padding-top: 1.5rem; }

.sp-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 199;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.35s ease;
}

.sp-overlay.is-active {
	opacity: 1;
	pointer-events: auto;
}

@media (min-width: 64em) {
	.sp-drawer,
	.sp-overlay { display: none !important; }
}

/* ==========================================================================
   SHARED SECTION STYLES
   ========================================================================== */
.sp-section {
	padding: 3.5rem 0;
}

@media (min-width: 48em) {
	.sp-section { padding: 5rem 0; }
}

@media (min-width: 64em) {
	.sp-section { padding: 6rem 0; }
}

.sp-section--muted { background: #f8fafc; }

.sp-section--dark {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	color: #fff;
}

.sp-section--dark h2,
.sp-section--dark h3 { color: #fff; }

.sp-section__header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 2.5rem;
}

@media (min-width: 48em) {
	.sp-section__header { margin-bottom: 3.5rem; }
}

.sp-section__header h2 {
	font-size: clamp(1.625rem, 4vw, 2.5rem);
	line-height: 1.2;
	margin-bottom: 0.75rem;
}

.sp-section__desc {
	font-size: 1rem;
	color: var(--wm-text-light);
	line-height: 1.7;
}

/* Tag / Label */
.sp-tag {
	display: inline-block;
	padding: 0.3rem 0.875rem;
	background: #eef4ff;
	color: var(--wm-primary);
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 0.75rem;
}

.sp-tag--light {
	background: rgba(255, 255, 255, 0.12);
	color: var(--wm-primary-light);
}

/* Highlight keyword */
.sp-highlight {
	position: relative;
	display: inline;
	color: var(--wm-primary);
}

.sp-highlight::after {
	content: '';
	position: absolute;
	bottom: 2px;
	left: -2px;
	right: -2px;
	height: 8px;
	background: rgba(0, 119, 182, 0.12);
	border-radius: 4px;
	z-index: -1;
}

/* Check row */
.sp-check-row {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	margin-bottom: 0.625rem;
	font-size: 0.9375rem;
}

.sp-check-icon {
	width: 20px;
	height: 20px;
	color: var(--wm-success);
	flex-shrink: 0;
}

/* Scroll Reveal */
.sp-reveal {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

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

[data-sp-delay="1"] { transition-delay: 0.08s; }
[data-sp-delay="2"] { transition-delay: 0.16s; }
[data-sp-delay="3"] { transition-delay: 0.24s; }
[data-sp-delay="4"] { transition-delay: 0.32s; }
[data-sp-delay="5"] { transition-delay: 0.4s; }
[data-sp-delay="6"] { transition-delay: 0.48s; }

/* ==========================================================================
   HERO
   ========================================================================== */
.sp-hero {
	padding: 3rem 0 3rem;
	background: #fff;
	overflow: hidden;
	position: relative;
}

@media (min-width: 48em) { .sp-hero { padding: 3rem 0 4rem; } }
@media (min-width: 64em) { .sp-hero { padding: 4rem 0 5rem; min-height: 75vh; display: flex; align-items: center; } }

.sp-hero__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: center;
}

/* Mobile: image first, text second */
.sp-hero__visual { order: -1; }

@media (min-width: 64em) {
	.sp-hero__grid {
		grid-template-columns: 1fr 1fr;
		gap: 3rem;
	}

	/* Desktop: text left, image right (natural order) */
	.sp-hero__visual { order: 0; }
}

.sp-hero__title {
	font-size: clamp(2rem, 5.5vw, 2.7rem);
	line-height: 1.1;
	letter-spacing: -0.025em;
	margin-bottom: 1.25rem;
}

.sp-hero__text {
	font-size: 1.0625rem;
	color: var(--wm-text-light);
	line-height: 1.7;
	margin-bottom: 1.5rem;
	max-width: 480px;
}

.sp-hero__checks {
	margin-bottom: 2rem;
}

.sp-hero__checks li {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	margin-bottom: 0.625rem;
	font-size: 0.9375rem;
	color: var(--wm-text-light);
}

.sp-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	background: var(--wm-success-light);
	border-radius: 50%;
	flex-shrink: 0;
}

.sp-check svg {
	width: 14px;
	height: 14px;
	color: var(--wm-success);
}

.sp-hero__actions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
}

.sp-hero__actions .sp-btn-shine {
	width: 100%;
	text-align: center;
	justify-content: center;
}

@media (min-width: 30em) {
	.sp-hero__actions .sp-btn-shine {
		width: auto;
	}

	.sp-hero__actions {
		flex-direction: row;
		align-items: center;
	}
}

.sp-hero__ghost {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--wm-text-light);
}

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

.sp-hero__ghost-arrow {
	transition: transform 0.3s ease;
}

.sp-hero__ghost:hover .sp-hero__ghost-arrow {
	transform: translateY(3px);
}

/* Button shine effect */
.sp-btn-shine {
	position: relative;
	overflow: hidden;
}

.sp-btn-shine::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 60%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: none;
	animation: btnShine 4s ease-in-out infinite;
}

@keyframes btnShine {
	0%, 70%, 100% { left: -100%; }
	85% { left: 120%; }
}

/* Hero Visual */
.sp-hero__visual {
	position: relative;
	display: flex;
	justify-content: center;
}

/*
 * Hero image layout:
 * - Circle is a background element (absolute positioned)
 * - Doctor image is separate, anchored at bottom of wrapper
 * - clip-path on wrapper: clips bottom to circle shape, top is open
 */
.sp-hero__img-wrap {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 560px;
	height: 520px;
	margin: 0 auto;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	overflow: hidden;
}

@media (max-width: 47.99em) {
	.sp-hero__img-wrap {
		max-width: 100%;
		height: 380px;
	}
}

/* Background circle — visual only */
.sp-hero__circle {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: linear-gradient(135deg, #eef4ff 0%, #f0f7ff 100%);
	border: 1px solid rgba(0, 119, 182, 0.06);
	z-index: 0;
}

/*
 * Doctor image: use clip-path on the image itself.
 * ellipse() centered at the circle's center relative to the image.
 * Top radius is huge (200%) so head overflows freely.
 * Bottom radius matches the circle so legs are clipped.
 */
.sp-hero__img {
	position: relative;
	z-index: 1;
	max-width: 80%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

/* Dot pattern */
.sp-hero__dots {
	position: absolute;
	top: 10%;
	right: -10%;
	width: 120px;
	height: 120px;
	background-image: radial-gradient(circle, var(--wm-primary-light) 1px, transparent 1px);
	background-size: 12px 12px;
	opacity: 0.4;
	z-index: 0;
}

/* Floating widgets */
.sp-widget {
	position: absolute;
	background: #fff;
	border-radius: 12px;
	padding: 0.75rem 1rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.03);
	display: flex;
	align-items: center;
	gap: 0.625rem;
	font-size: 0.8125rem;
	z-index: 5;
	white-space: nowrap;
}

@media (max-width: 47.99em) {
	/* Keep hero visual from overflowing the screen */
	.sp-hero__visual {
		overflow: visible;
		padding: 0 1rem;
	}

	.sp-widget {
		font-size: 0.6875rem;
		padding: 0.5rem 0.75rem;
		border-radius: 10px;
		max-width: 160px;
	}

	.sp-widget--stats {
		top: 35%;
		right: -2%;
	}

	.sp-widget--trust {
		bottom: 25%;
		right: 0%;
	}

	.sp-widget--response {
		bottom: 10%;
		left: 0%;
	}

	.sp-widget__number { font-size: 0.9375rem; }
	.sp-widget__label { font-size: 0.5625rem; }
}

.sp-float {
	animation: spFloat 5s ease-in-out infinite;
}

@keyframes spFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

@media (min-width: 48em) {
	.sp-widget--stats {
		top: 35%;
		right: -5%;
	}

	.sp-widget--trust {
		bottom: 25%;
		right: -10%;
	}

	.sp-widget--response {
		bottom: 10%;
		left: -5%;
	}
}

.sp-widget__icon svg { width: 20px; height: 20px; color: var(--wm-primary); }
.sp-widget__shield { width: 18px; height: 18px; color: var(--wm-success); }
.sp-widget__clock { width: 16px; height: 16px; color: var(--wm-accent); }

.sp-widget__number {
	font-family: var(--wm-font-heading);
	font-weight: 700;
	font-size: 1.125rem;
	color: var(--wm-primary);
	display: block;
	line-height: 1;
}

.sp-widget__label { color: var(--wm-text-muted); font-size: 0.6875rem; display: block; }

.sp-widget__bold {
	font-weight: 600;
	color: var(--wm-text);
	display: block;
	line-height: 1.2;
}

.sp-widget__sub { color: var(--wm-text-muted); font-size: 0.6875rem; }

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.sp-trust {
	padding: 1.5rem 0;
	background: #fff;
	border-top: 1px solid #eef2f6;
	border-bottom: 1px solid #eef2f6;
}

.sp-trust__strip {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	text-align: center;
}

@media (min-width: 48em) {
	.sp-trust__strip {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0;
	}
}

.sp-trust__item {
	padding: 0.5rem 1.5rem;
}

.sp-trust__item strong {
	display: block;
	font-family: var(--wm-font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--wm-primary);
	line-height: 1;
	margin-bottom: 0.2rem;
}

.sp-trust__item span {
	font-size: 0.6875rem;
	color: var(--wm-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	line-height: 1.3;
	display: block;
}

.sp-trust__divider {
	display: none;
}

@media (min-width: 48em) {
	.sp-trust__divider {
		display: block;
		width: 1px;
		height: 40px;
		background: var(--wm-border);
	}
}

/* ==========================================================================
   PAIN POINTS
   ========================================================================== */
.sp-pain__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 30em) {
	.sp-pain__grid { grid-template-columns: repeat(2, 1fr); }
}

.sp-pain__card {
	background: #fff;
	border: 1px solid var(--wm-border);
	border-radius: 16px;
	padding: 1.5rem;
	transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.sp-pain__card:hover {
	border-color: rgba(229, 62, 62, 0.2);
	box-shadow: 0 8px 24px rgba(229, 62, 62, 0.06);
	transform: translateY(-2px);
}

.sp-pain__emoji {
	font-size: 2rem;
	margin-bottom: 0.75rem;
	line-height: 1;
}

.sp-pain__card h3 {
	font-size: 1.0625rem;
	margin-bottom: 0.5rem;
}

.sp-pain__card p {
	font-size: 0.875rem;
	color: var(--wm-text-light);
	line-height: 1.6;
}

.sp-pain__bottom {
	text-align: center;
	margin-top: 2rem;
	padding: 1.25rem 1.5rem;
	background: linear-gradient(135deg, #f0f7ff, #eef4ff);
	border-radius: 12px;
	border-left: 4px solid var(--wm-primary);
	font-size: 1rem;
}

/* ==========================================================================
   SOLUTION (Split layout)
   ========================================================================== */
.sp-split {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: center;
}

@media (min-width: 48em) {
	.sp-split { grid-template-columns: 1fr 1fr; gap: 3rem; }
	.sp-split--reverse .sp-split__media { order: -1; }
}

.sp-split__img {
	border-radius: 16px;
	width: 100%;
	height: auto;
	object-fit: cover;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.sp-split__content h2 {
	font-size: clamp(1.5rem, 3.5vw, 2.125rem);
	line-height: 1.2;
	margin-bottom: 1rem;
}

.sp-split__content p {
	font-size: 0.9375rem;
	color: var(--wm-text-light);
	line-height: 1.7;
}

.sp-split__checks { margin: 1.25rem 0; }

.sp-split__note {
	padding: 1rem 1.25rem;
	background: #f8fafc;
	border-radius: 10px;
	border-left: 3px solid var(--wm-primary);
	font-size: 0.875rem;
	color: var(--wm-text-light);
	font-style: italic;
}

/* ==========================================================================
   FEATURES
   ========================================================================== */
.sp-features__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 30em) { .sp-features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64em) { .sp-features__grid { grid-template-columns: repeat(3, 1fr); } }

.sp-feature {
	background: #fff;
	border: 1px solid var(--wm-border);
	border-radius: 16px;
	padding: 1.75rem 1.5rem;
	transition: all 0.35s ease;
}

.sp-feature:hover {
	border-color: var(--wm-primary-light);
	box-shadow: 0 8px 30px rgba(0, 119, 182, 0.08);
	transform: translateY(-4px);
}

.sp-feature__icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #eef4ff, #dbeafe);
	border-radius: 12px;
	margin-bottom: 1rem;
	transition: all 0.35s ease;
}

.sp-feature:hover .sp-feature__icon {
	background: linear-gradient(135deg, var(--wm-primary), var(--wm-accent));
	transform: scale(1.05);
}

.sp-feature__icon svg {
	width: 22px;
	height: 22px;
	color: var(--wm-primary);
	transition: color 0.35s ease;
}

.sp-feature:hover .sp-feature__icon svg { color: #fff; }

.sp-feature h3 {
	font-size: 1rem;
	margin-bottom: 0.5rem;
}

.sp-feature p {
	font-size: 0.8125rem;
	color: var(--wm-text-light);
	line-height: 1.6;
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.sp-steps {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	max-width: 800px;
	margin: 0 auto;
}

@media (min-width: 48em) {
	.sp-steps {
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem;
	}
}

.sp-steps__line {
	display: none;
}

@media (min-width: 48em) {
	.sp-steps__line {
		display: block;
		position: absolute;
		top: 28px;
		left: calc(16.66% + 24px);
		right: calc(16.66% + 24px);
		height: 2px;
		background: var(--wm-border);
		z-index: 0;
	}

	.sp-steps__line-fill {
		width: 0;
		height: 100%;
		background: var(--wm-primary);
		border-radius: 2px;
		transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
	}

	.sp-steps.is-visible .sp-steps__line-fill { width: 100%; }
}

.sp-step {
	text-align: center;
	position: relative;
	z-index: 1;
}

.sp-step__marker {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--wm-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	transition: all 0.4s ease;
}

.sp-step:hover .sp-step__marker {
	background: var(--wm-primary);
}

.sp-step__marker span {
	font-family: var(--wm-font-heading);
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--wm-primary);
	transition: color 0.4s ease;
}

.sp-step:hover .sp-step__marker span { color: #fff; }

.sp-step h3 {
	font-size: 1.0625rem;
	margin-bottom: 0.375rem;
}

.sp-step p {
	font-size: 0.8125rem;
	color: var(--wm-text-light);
	line-height: 1.6;
	max-width: 240px;
	margin: 0 auto;
}

/* ==========================================================================
   RESULTS (Dark section)
   ========================================================================== */
.sp-results__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 48em) {
	.sp-results__grid { grid-template-columns: repeat(3, 1fr); }
}

.sp-result {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 2rem 1.5rem;
	text-align: center;
	transition: all 0.35s ease;
}

.sp-result:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.15);
	transform: translateY(-4px);
}

.sp-result__icon {
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 119, 182, 0.15);
	border-radius: 12px;
	margin-bottom: 1rem;
}

.sp-result__icon svg {
	width: 22px;
	height: 22px;
	color: var(--wm-primary-light);
}

.sp-result h3 {
	font-size: 1.0625rem;
	margin-bottom: 0.5rem;
}

.sp-result p {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.6;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.sp-testimonials {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 48em) {
	.sp-testimonials { grid-template-columns: repeat(2, 1fr); }
}

.sp-testimonial {
	background: #fff;
	border: 1px solid var(--wm-border);
	border-radius: 16px;
	padding: 1.75rem;
	transition: all 0.35s ease;
}

.sp-testimonial:hover {
	border-color: var(--wm-primary-light);
	box-shadow: 0 8px 24px rgba(0, 119, 182, 0.06);
}

.sp-testimonial__stars {
	display: flex;
	gap: 2px;
	margin-bottom: 1rem;
}

.sp-testimonial__star {
	width: 16px;
	height: 16px;
	color: #f59e0b;
}

.sp-testimonial blockquote p {
	font-size: 0.9375rem;
	color: var(--wm-text-light);
	line-height: 1.7;
	font-style: italic;
}

.sp-testimonial__author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: 1.25rem;
	padding-top: 1rem;
	border-top: 1px solid var(--wm-border);
}

.sp-testimonial__avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	background: linear-gradient(135deg, var(--wm-primary-lighter), #dbeafe);
}

.sp-testimonial__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sp-testimonial__author cite {
	display: block;
	font-style: normal;
	font-weight: 600;
	font-size: 0.875rem;
}

.sp-testimonial__author span {
	font-size: 0.75rem;
	color: var(--wm-text-muted);
}

/* ==========================================================================
   CTA
   ========================================================================== */
.sp-cta {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0f2744 100%);
	color: #fff;
	padding: 4rem 0;
}

@media (min-width: 48em) { .sp-cta { padding: 5rem 0; } }

.sp-cta__wrapper {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: center;
}

@media (min-width: 48em) {
	.sp-cta__wrapper { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.sp-cta h2 {
	color: #fff;
	font-size: clamp(1.5rem, 3.5vw, 2.25rem);
	line-height: 1.2;
	margin-bottom: 1rem;
}

.sp-cta__content p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9375rem;
	margin-bottom: 1.25rem;
}

.sp-cta__checks .sp-check-row span {
	color: rgba(255, 255, 255, 0.85);
}

.sp-cta__checks .sp-check-icon { color: var(--wm-primary-light); }

.sp-cta__form-card {
	background: #fff;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.sp-cta__form-card h3 {
	color: var(--wm-text);
	font-size: 1.25rem;
	margin-bottom: 1.25rem;
}

/* CF7 styles for sales page */
.sp-cta__form-card .wpcf7 input[type="text"],
.sp-cta__form-card .wpcf7 input[type="email"],
.sp-cta__form-card .wpcf7 input[type="tel"],
.sp-cta__form-card .wpcf7 select,
.sp-cta__form-card .wpcf7 textarea {
	width: 100%;
	padding: 0.8rem 1rem;
	border: 1.5px solid var(--wm-border);
	border-radius: 10px;
	font-size: 0.9375rem;
	background: #f8fafc;
	transition: all 0.25s ease;
}

.sp-cta__form-card .wpcf7 input:focus,
.sp-cta__form-card .wpcf7 select:focus,
.sp-cta__form-card .wpcf7 textarea:focus {
	border-color: var(--wm-primary);
	box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.08);
	outline: none;
	background: #fff;
}

.sp-cta__form-card .wpcf7 input[type="submit"] {
	width: 100%;
	padding: 0.875rem;
	background: var(--wm-primary);
	color: #fff;
	border: none;
	border-radius: 10px;
	font-family: var(--wm-font-heading);
	font-size: 0.9375rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.sp-cta__form-card .wpcf7 input[type="submit"]:hover {
	background: var(--wm-primary-dark);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 119, 182, 0.3);
}

.sp-cta__form-card .wpcf7 p { margin-bottom: 0.875rem; }

.sp-cta__privacy {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1rem;
	padding-top: 0.75rem;
	border-top: 1px solid var(--wm-border);
}

.sp-cta__privacy-icon {
	width: 14px;
	height: 14px;
	color: var(--wm-success);
	flex-shrink: 0;
}

.sp-cta__privacy small {
	font-size: 0.6875rem;
	color: var(--wm-text-muted);
}

/* ==========================================================================
   FAQ (Side-by-side layout, reuses faq__item from global)
   ========================================================================== */
.sp-faq__layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 48em) {
	.sp-faq__layout {
		grid-template-columns: 1fr 1.5fr;
		gap: 3rem;
		align-items: start;
	}
}

.sp-faq__left h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	line-height: 1.2;
	margin-bottom: 0.75rem;
}

.sp-faq__left p {
	color: var(--wm-text-light);
	font-size: 0.9375rem;
	margin-bottom: 1.25rem;
}

.sp-faq__right {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

/* FAQ accordion items */
.faq__item {
	background: #fff;
	border-radius: 12px;
	border: 1px solid var(--wm-border);
	overflow: hidden;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq__item:hover {
	border-color: var(--wm-primary-light);
}

.faq__item.is-open {
	border-color: var(--wm-primary);
	box-shadow: 0 4px 12px rgba(0, 119, 182, 0.08);
}

.faq__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.125rem 1.25rem;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
}

.faq__question-text {
	font-family: var(--wm-font-heading);
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--wm-text);
}

.faq__chevron {
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.faq__chevron svg {
	width: 18px;
	height: 18px;
	color: var(--wm-text-muted);
}

.faq__item.is-open .faq__chevron {
	transform: rotate(180deg);
}

.faq__item.is-open .faq__chevron svg {
	color: var(--wm-primary);
}

.faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq__answer p {
	padding: 0 1.25rem 1.125rem;
	color: var(--wm-text-light);
	font-size: 0.875rem;
	line-height: 1.7;
}

/* ==========================================================================
   STICKY BOTTOM CTA
   ========================================================================== */
.sp-sticky-cta {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 90;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-top: 1px solid var(--wm-border);
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
	padding: 0.75rem 0;
	transform: translateY(100%);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sp-sticky-cta.is-visible {
	transform: translateY(0);
}

.sp-sticky-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.sp-sticky-cta__text {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.sp-sticky-cta__text strong {
	font-size: 0.8125rem;
	color: var(--wm-text);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.sp-sticky-cta__text span {
	font-size: 0.6875rem;
	color: var(--wm-text-muted);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (min-width: 48em) {
	.sp-sticky-cta__text strong {
		font-size: 0.9375rem;
	}

	.sp-sticky-cta__text span {
		font-size: 0.75rem;
	}
}

.sp-sticky-cta__btn {
	border-radius: 999px;
}

@media (max-width: 47.99em) {
	.sp-sticky-cta__btn {
		flex-shrink: 0;
		padding: 0.625rem 1rem;
		font-size: 0.75rem;
	}
}

/* Hide sticky CTA when user reaches the actual CTA section */
.sp-sticky-cta.is-at-cta {
	transform: translateY(100%);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.sp-footer {
	background: #0f172a;
	color: rgba(255, 255, 255, 0.6);
	padding: 3rem 0 1.5rem;
}

.sp-footer__top {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-bottom: 2rem;
}

@media (min-width: 48em) {
	.sp-footer__top { grid-template-columns: 2fr 1fr 1fr; }
}

.sp-footer__brand p {
	font-size: 0.875rem;
	line-height: 1.6;
	margin-top: 0.75rem;
}

.sp-footer__wordmark {
	display: inline-block;
	font-weight: 800;
	font-size: 1.5rem;
	letter-spacing: 0.05em;
	color: #ffffff;
	text-decoration: none;
}

.sp-footer__wordmark:hover {
	opacity: 0.85;
}

.sp-footer__col h4 {
	font-size: 0.875rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0.75rem;
}

.sp-footer__col a,
.sp-footer__col span {
	display: block;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 0.5rem;
}

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

.sp-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 1.25rem;
	text-align: center;
	font-size: 0.75rem;
}
