﻿/**
 * Shared homepage shell + client style switcher bar
 */

.sh-home {
	position: relative;
}

.sh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.9rem 1.35rem;
	font: inherit;
	font-weight: 800;
	font-size: 0.98rem;
	text-decoration: none;
	border: 0;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.sh-btn:hover {
	text-decoration: none;
}

.sh-sec {
	padding: clamp(3rem, 7vw, 5rem) 0;
}

.sh-intro {
	margin-bottom: 2rem;
	max-width: 34rem;
}

.sh-intro h2 {
	margin: 0 0 0.55rem;
	font-size: clamp(1.7rem, 4vw, 2.6rem);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.15;
}

.sh-intro p {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.7;
}

.sh-more {
	margin: 1.75rem 0 0;
}

.sh-lead {
	display: grid;
	gap: 2rem;
}

@media (min-width: 900px) {
	.sh-lead {
		grid-template-columns: 1fr 1fr;
		gap: 2.5rem;
		align-items: start;
	}
}

.sh-lead__points {
	list-style: none;
	margin: 0 0 1.25rem;
	padding: 0;
	display: grid;
	gap: 0.45rem;
}

.sh-lead__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin: 0;
}

/* â€”â€” Shared structure for enriched sections (skins paint colors) â€”â€” */
.sh-hero__eyebrow {
	margin: 0 0 0.75rem;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	opacity: 0.75;
}

.sh-hero__meta {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.1rem;
	font-size: 0.88rem;
	font-weight: 650;
	opacity: 0.8;
}

.sh-btn--text {
	background: transparent;
	border: 0;
	padding-inline: 0.65rem;
	font-weight: 650;
	text-decoration: underline;
	text-underline-offset: 0.2em;
	opacity: 0.88;
}

.sh-btn--text:hover {
	opacity: 1;
	text-decoration: underline;
}

.sh-btn--hero-primary {
	padding: 1rem 1.65rem;
	font-size: 1.05rem;
}

/* â€”â€” Proof strip (HubSpot / Rinse) â€”â€” */
.sh-proof {
	padding: 1.25rem 0 0.25rem;
}

.sh-proof__stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.85rem 1rem;
	padding: 1.1rem 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

@media (min-width: 800px) {
	.sh-proof__stats {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 1rem;
	}
}

.sh-proof__stats strong {
	display: block;
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1.1;
}

.sh-proof__stats span {
	display: block;
	margin-top: 0.25rem;
	font-size: 0.82rem;
	font-weight: 650;
	opacity: 0.72;
}

.sh-proof__brands {
	list-style: none;
	margin: 0;
	padding: 0.9rem 0 0.2rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.55rem 1.35rem;
}

.sh-proof__brands li {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	opacity: 0.55;
	white-space: nowrap;
}

.sh-proof__brands--logos li {
	opacity: 1;
	white-space: normal;
}

.sh-proof__brands--logos img {
	display: block;
	max-width: 8.5rem;
	max-height: 3.75rem;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: saturate(0.9);
	opacity: 0.88;
}

/* â€”â€” Intent paths as clickable tiles (Zillow) â€”â€” */
.sh-paths__grid .sh-path {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.35rem;
	padding: 1.35rem 1.2rem;
	text-decoration: none;
	color: inherit;
	transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.sh-paths__grid .sh-path:hover {
	text-decoration: none;
	transform: translateY(-2px);
}

.sh-paths__grid .sh-path em {
	display: block;
	font-style: normal;
	font-size: 0.78rem;
	font-weight: 750;
	opacity: 0.65;
}

.sh-paths__grid .sh-path strong {
	display: block;
	font-size: 1.15rem;
}

.sh-paths__grid .sh-path span {
	font-size: 0.92rem;
	line-height: 1.65;
	opacity: 0.8;
}

/* â€”â€” Compact lead capture (Rinse) â€”â€” */
.sabteto-lead-compact {
	width: 100%;
	max-width: 36rem;
}

.sabteto-form--compact {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.55rem;
	align-items: stretch;
	position: relative;
}

.sabteto-form--compact .sabteto-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

@media (min-width: 640px) {
	.sabteto-form--compact {
		grid-template-columns: 1fr 1.15fr auto;
		gap: 0.5rem;
	}
}

.sabteto-form--compact .sabteto-form__field {
	margin: 0;
	display: block;
}

.sabteto-form--compact input {
	width: 100%;
	min-height: 3rem;
	padding: 0.7rem 0.9rem;
	border-radius: 999px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	font: inherit;
}

.sabteto-form--compact .sabteto-btn {
	min-height: 3rem;
	white-space: nowrap;
	border-radius: 999px;
	padding-inline: 1.25rem;
}

.sh-hero__capture {
	margin-top: 0.25rem;
	max-width: 36rem;
}

.sh-hero__capture-label {
	margin: 0 0 0.65rem;
	font-size: 0.82rem;
	font-weight: 650;
	opacity: 0.75;
}

.sh-stats__grid,
.sh-paths__grid,
.sh-docs__grid {
	display: grid;
	gap: 1rem;
}

@media (min-width: 700px) {
	.sh-stats__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.sh-paths__grid,
	.sh-docs__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1000px) {
	.sh-stats__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.sh-stats__grid article,
.sh-paths__grid article,
.sh-docs__grid article {
	padding: 1.35rem 1.2rem;
}

.sh-stats__grid strong {
	display: block;
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1;
	margin-bottom: 0.45rem;
}

.sh-stats__grid span {
	display: block;
	font-weight: 750;
	margin-bottom: 0.35rem;
}

.sh-stats__grid p,
.sh-paths__grid p,
.sh-docs__grid p {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.65;
	opacity: 0.8;
}

.sh-paths__grid em {
	display: block;
	font-style: normal;
	font-size: 0.78rem;
	font-weight: 750;
	margin-bottom: 0.45rem;
	opacity: 0.65;
}

.sh-paths__grid strong,
.sh-docs__grid strong {
	display: block;
	font-size: 1.15rem;
	margin-bottom: 0.5rem;
}

.sh-paths__grid .sh-btn,
.sh-docs__grid .sh-btn {
	margin-top: 1rem;
}

.sh-docs__grid ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.45rem;
}

.sh-docs__grid li {
	position: relative;
	padding-inline-start: 1rem;
	font-size: 0.95rem;
	line-height: 1.55;
}

.sh-docs__grid li::before {
	content: "";
	position: absolute;
	inset-inline-start: 0;
	top: 0.55em;
	width: 0.35rem;
	height: 0.35rem;
	background: currentColor;
	opacity: 0.45;
}

.sh-guarantee__inner {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 800px) {
	.sh-guarantee__inner {
		grid-template-columns: 1.2fr 1fr;
		align-items: center;
		gap: 2.5rem;
	}
}

.sh-guarantee h2 {
	margin: 0 0 0.55rem;
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	font-weight: 900;
}

.sh-guarantee p {
	margin: 0;
	line-height: 1.75;
	opacity: 0.85;
}

.sh-guarantee ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.65rem;
}

.sh-guarantee li {
	padding: 0.75rem 1rem;
	font-weight: 650;
}

.sh-faq__list {
	display: grid;
	gap: 0.65rem;
	width: 100%;
}

.sh-faq details {
	border: 1px solid rgba(0, 0, 0, 0.12);
	padding: 0;
}

.sh-faq summary {
	cursor: pointer;
	padding: 1rem 1.15rem;
	font-weight: 750;
	list-style: none;
}

.sh-faq summary::-webkit-details-marker {
	display: none;
}

.sh-faq details > div {
	padding: 0 1.15rem 1.1rem;
	font-size: 0.98rem;
	line-height: 1.75;
	opacity: 0.85;
}

.sh-faq details > div > *:first-child {
	margin-top: 0;
}

.sh-faq details > div > *:last-child {
	margin-bottom: 0;
}
