:root {
	--sh-ink: #123b3f;
	--sh-teal: #073f45;
	--sh-teal-2: #095158;
	--sh-green: #67be58;
	--sh-green-dark: #4f9f45;
	--sh-mint: #eff7ef;
	--sh-sand: #f7f5ee;
	--sh-line: #dbe6df;
	--sh-white: #ffffff;
	--sh-muted: #5d7374;
	--sh-shadow: 0 22px 60px rgba(5, 46, 49, .15);
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 96px;
}

body.shrubby-landing {
	margin: 0;
	background: var(--sh-white);
	color: var(--sh-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

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

.shrubby-landing img {
	display: block;
	max-width: 100%;
	height: auto;
}

.shrubby-landing a {
	color: inherit;
	text-decoration: none;
}

.shrubby-landing h1,
.shrubby-landing h2,
.shrubby-landing h3,
.shrubby-landing p {
	margin-top: 0;
}

.shrubby-landing h1,
.shrubby-landing h2,
.shrubby-landing h3 {
	color: inherit;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.08;
	letter-spacing: -.035em;
}

.sh-site {
	min-height: 100vh;
	overflow: hidden;
}

.sh-container {
	width: min(1160px, calc(100% - 48px));
	margin: 0 auto;
}

.sh-skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 99999;
	padding: 10px 16px;
	border-radius: 6px;
	background: #fff;
	color: var(--sh-teal);
	font-weight: 800;
	transform: translateY(-160%);
	transition: transform .2s ease;
}

.sh-skip-link:focus {
	transform: translateY(0);
}

.sh-topbar {
	position: relative;
	z-index: 30;
	background: var(--sh-teal);
	color: rgba(255,255,255,.86);
	font-size: 13px;
	font-weight: 650;
	letter-spacing: .01em;
}

.sh-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 35px;
}

.sh-topbar a {
	color: #d9f6d4;
	font-weight: 800;
}

.sh-header {
	position: relative;
	z-index: 30;
	background: rgba(255,255,255,.97);
	border-bottom: 1px solid rgba(10,80,84,.1);
}

.sh-header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	min-height: 82px;
	gap: 30px;
}

.sh-brand {
	display: inline-flex;
	width: fit-content;
	align-items: center;
	padding: 8px 12px;
	border-radius: 7px;
	background: var(--sh-teal);
}

.sh-brand img {
	width: 146px;
	max-height: 62px;
	object-fit: contain;
	object-position: left center;
}

.sh-nav {
	display: flex;
	align-items: center;
	gap: 24px;
	font-size: 14px;
	font-weight: 750;
	color: #304f52;
}

.sh-nav a,
.sh-footer a,
.sh-text-link {
	transition: color .2s ease;
}

.sh-nav a:hover,
.sh-nav a:focus-visible,
.sh-footer a:hover,
.sh-footer a:focus-visible {
	color: var(--sh-green-dark);
}

.sh-header__action {
	justify-self: end;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	line-height: 1.25;
}

.sh-header__action span {
	color: #6d8081;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.sh-header__action a {
	color: var(--sh-teal);
	font-size: 18px;
	font-weight: 900;
}

.sh-hero {
	position: relative;
	isolation: isolate;
	background:
		linear-gradient(112deg, rgba(5,61,67,.99) 0%, rgba(5,61,67,.96) 48%, rgba(9,81,88,.9) 100%);
	color: var(--sh-white);
}

.sh-hero__pattern {
	position: absolute;
	z-index: -1;
	inset: 0;
	background-image: url("https://shrubby.com/wp-content/uploads/2021/12/Shrubby-Pattern-Concept01-opacity-25.png");
	background-position: center;
	background-size: 540px auto;
	opacity: .18;
	mix-blend-mode: screen;
}

.sh-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.06fr) minmax(430px, .94fr);
	align-items: center;
	gap: 58px;
	min-height: 660px;
	padding-top: 68px;
	padding-bottom: 72px;
}

.sh-hero__copy {
	position: relative;
	z-index: 2;
	max-width: 650px;
	padding-bottom: 12px;
}

.sh-eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 17px;
	color: #d9f6d4;
	font-size: 12px;
	font-weight: 850;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.sh-eyebrow > span {
	display: block;
	width: 26px;
	height: 2px;
	border-radius: 10px;
	background: var(--sh-green);
}

.sh-eyebrow--dark {
	color: var(--sh-green-dark);
}

.sh-eyebrow--center {
	justify-content: center;
}

.sh-hero h1 {
	max-width: 630px;
	margin-bottom: 23px;
	color: #fff;
	font-size: clamp(48px, 5.3vw, 76px);
	font-weight: 850;
	line-height: .98;
}

.sh-hero__lead {
	max-width: 610px;
	margin-bottom: 27px;
	color: rgba(255,255,255,.86);
	font-size: clamp(18px, 1.8vw, 21px);
	line-height: 1.6;
}

.sh-benefits {
	display: grid;
	grid-template-columns: repeat(2, max-content);
	gap: 9px 30px;
	margin: 0 0 28px;
	padding: 0;
	list-style: none;
	color: rgba(255,255,255,.95);
	font-size: 15px;
	font-weight: 750;
}

.sh-benefits li {
	display: flex;
	align-items: center;
	gap: 9px;
}

.sh-benefits li::before {
	content: "✓";
	display: grid;
	width: 20px;
	height: 20px;
	place-items: center;
	border-radius: 50%;
	background: rgba(111,197,96,.18);
	color: #9be68e;
	font-size: 12px;
	font-weight: 900;
}

.sh-rating {
	display: flex;
	align-items: center;
	gap: 13px;
}

.sh-rating__stars {
	color: #f7c853;
	font-size: 16px;
	letter-spacing: 2px;
}

.sh-rating div:last-child {
	display: flex;
	flex-direction: column;
	font-size: 13px;
	line-height: 1.4;
}

.sh-rating strong {
	color: #fff;
	font-weight: 850;
}

.sh-rating span {
	color: rgba(255,255,255,.68);
}

.sh-offer {
	position: relative;
	display: grid;
	min-height: 560px;
	place-items: center;
}

.sh-offer__bush {
	position: absolute;
	z-index: 0;
	left: 50%;
	top: 50%;
	width: 820px;
	max-width: none;
	height: 680px;
	object-fit: contain;
	filter: drop-shadow(0 28px 35px rgba(0,0,0,.18));
	transform: translate(-50%, -48%);
}

.sh-offer__card {
	position: relative;
	z-index: 1;
	width: min(400px, 100%);
	padding: 30px 31px 26px;
	border: 1px solid rgba(255,255,255,.9);
	border-radius: 16px;
	background: rgba(255,255,255,.76);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	box-shadow: var(--sh-shadow);
	color: var(--sh-ink);
}

.sh-offer__card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 30px;
	right: 30px;
	height: 4px;
	border-radius: 0 0 6px 6px;
	background: var(--sh-green);
}

.sh-offer__kicker {
	margin-bottom: 6px;
	color: var(--sh-green-dark);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.sh-offer__card h2 {
	margin-bottom: 8px;
	color: var(--sh-teal);
	font-size: 30px;
	font-weight: 850;
}

.sh-offer__card > p:not(.sh-offer__kicker):not(.sh-form__privacy) {
	margin-bottom: 17px;
	color: var(--sh-muted);
	font-size: 14px;
	line-height: 1.5;
}

.sh-form .gform_wrapper.gravity-theme,
.sh-form .gform_wrapper {
	margin: 0 !important;
}

.sh-form .gform_heading {
	display: none !important;
}

.sh-form .gform_fields {
	display: grid !important;
	gap: 11px !important;
}

.sh-form .gfield {
	margin: 0 !important;
	padding: 0 !important;
}

.sh-form .gfield_label {
	margin: 0 0 5px !important;
	color: #284d50 !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	line-height: 1.2 !important;
}

.sh-form .gfield_required {
	color: var(--sh-green-dark) !important;
	font-size: 0 !important;
}

.sh-form .gfield_required::after {
	content: "*";
	font-size: 12px;
}

.sh-form input[type="text"],
.sh-form input[type="tel"],
.sh-form input[type="email"],
.sh-form textarea,
.sh-form select {
	width: 100% !important;
	min-height: 46px !important;
	margin: 0 !important;
	padding: 10px 13px !important;
	border: 1px solid #ccd9d5 !important;
	border-radius: 7px !important;
	background: #fbfdfb !important;
	box-shadow: none !important;
	color: #183f42 !important;
	font-family: inherit !important;
	font-size: 15px !important;
	transition: border-color .2s ease, box-shadow .2s ease !important;
}

.sh-form input:focus,
.sh-form textarea:focus,
.sh-form select:focus {
	border-color: var(--sh-green-dark) !important;
	box-shadow: 0 0 0 3px rgba(103,190,88,.16) !important;
	outline: none !important;
}

.sh-form .gform_footer {
	margin: 13px 0 0 !important;
	padding: 0 !important;
}

.sh-form input[type="submit"],
.sh-form button[type="submit"] {
	width: 100% !important;
	min-height: 51px !important;
	margin: 0 !important;
	padding: 12px 22px !important;
	border: 0 !important;
	border-radius: 7px !important;
	background: var(--sh-green) !important;
	box-shadow: 0 8px 20px rgba(79,159,69,.23) !important;
	color: #0b3a3e !important;
	font-family: inherit !important;
	font-size: 15px !important;
	font-weight: 900 !important;
	cursor: pointer !important;
	transition: transform .2s ease, background .2s ease !important;
}

.sh-form input[type="submit"]:hover,
.sh-form input[type="submit"]:focus-visible,
.sh-form button[type="submit"]:hover,
.sh-form button[type="submit"]:focus-visible {
	background: #79cf6b !important;
	transform: translateY(-1px);
}

.sh-form .validation_message,
.sh-form .gform_validation_errors {
	font-size: 12px !important;
	line-height: 1.4 !important;
}

.sh-form__privacy {
	margin: 13px 0 0;
	color: #566f71;
	font-size: 12px;
	line-height: 1.5;
	text-align: center;
}

.sh-form__privacy a {
	text-decoration: underline;
}

.sh-trust {
	position: relative;
	z-index: 4;
	border-bottom: 1px solid var(--sh-line);
	background: #fff;
}

.sh-trust__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.sh-trust__grid > div {
	display: flex;
	align-items: center;
	gap: 13px;
	min-height: 104px;
	padding: 22px 25px;
	border-right: 1px solid var(--sh-line);
}

.sh-trust__grid > div:first-child {
	padding-left: 0;
}

.sh-trust__grid > div:last-child {
	border-right: 0;
	padding-right: 0;
}

.sh-trust__icon {
	display: grid;
	flex: 0 0 41px;
	width: 41px;
	height: 41px;
	place-items: center;
	border-radius: 50%;
	background: var(--sh-mint);
	color: var(--sh-green-dark);
	font-size: 11px;
	font-weight: 900;
}

.sh-trust__grid p {
	display: flex;
	flex-direction: column;
	margin: 0;
	line-height: 1.35;
}

.sh-trust__grid strong {
	color: var(--sh-ink);
	font-size: 14px;
	font-weight: 850;
}

.sh-trust__grid p span {
	color: #718384;
	font-size: 12px;
}

.sh-section {
	padding: 108px 0;
}

.sh-simple {
	background: #fff;
}

.sh-simple__grid {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	align-items: center;
	gap: 90px;
}

.sh-simple__visual {
	position: relative;
}

.sh-photo-frame {
	overflow: hidden;
	aspect-ratio: 5 / 4;
	border-radius: 18px;
	background: var(--sh-mint);
	box-shadow: 0 18px 50px rgba(7,63,69,.13);
}

.sh-photo-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sh-local-note {
	position: absolute;
	right: -28px;
	bottom: -30px;
	display: flex;
	align-items: center;
	gap: 13px;
	width: min(300px, 78%);
	padding: 17px 19px;
	border: 1px solid rgba(7,63,69,.08);
	border-radius: 11px;
	background: #fff;
	box-shadow: 0 15px 38px rgba(7,63,69,.16);
}

.sh-local-note > span {
	display: grid;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 50%;
	background: var(--sh-mint);
	color: var(--sh-green-dark);
	font-size: 22px;
}

.sh-local-note p {
	margin: 0;
	color: var(--sh-muted);
	font-size: 12px;
	line-height: 1.45;
}

.sh-local-note strong {
	color: var(--sh-teal);
	font-size: 14px;
}

.sh-simple__copy h2,
.sh-section-heading h2,
.sh-faq__intro h2,
.sh-final-cta h2 {
	font-weight: 850;
}

.sh-simple__copy h2 {
	max-width: 620px;
	margin-bottom: 20px;
	font-size: clamp(38px, 4vw, 55px);
}

.sh-simple__copy > p:not(.sh-eyebrow) {
	margin-bottom: 28px;
	color: var(--sh-muted);
	font-size: 17px;
}

.sh-feature {
	display: grid;
	grid-template-columns: 35px 1fr;
	gap: 15px;
	padding: 17px 0;
	border-top: 1px solid var(--sh-line);
}

.sh-feature > span {
	display: grid;
	width: 31px;
	height: 31px;
	place-items: center;
	margin-top: 1px;
	border-radius: 50%;
	background: var(--sh-mint);
	color: var(--sh-green-dark);
	font-size: 14px;
	font-weight: 900;
}

.sh-feature h3 {
	margin: 0 0 4px;
	font-size: 18px;
	font-weight: 850;
	letter-spacing: -.02em;
}

.sh-feature p {
	margin: 0;
	color: var(--sh-muted);
	font-size: 14px;
	line-height: 1.55;
}

.sh-process {
	background: var(--sh-sand);
}

.sh-section-heading {
	max-width: 720px;
	margin: 0 auto 52px;
	text-align: center;
}

.sh-section-heading h2 {
	margin-bottom: 16px;
	font-size: clamp(38px, 4vw, 54px);
}

.sh-section-heading > p:not(.sh-eyebrow) {
	margin-bottom: 0;
	color: var(--sh-muted);
	font-size: 17px;
}

.sh-steps {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 38px;
}

.sh-steps::before {
	content: "";
	position: absolute;
	top: 34px;
	left: 17%;
	right: 17%;
	height: 1px;
	background: #cad9ce;
}

.sh-steps article {
	position: relative;
	padding: 0 28px;
	text-align: center;
}

.sh-step__number {
	position: relative;
	z-index: 1;
	display: grid;
	width: 68px;
	height: 68px;
	margin: 0 auto 23px;
	place-items: center;
	border: 7px solid var(--sh-sand);
	border-radius: 50%;
	background: var(--sh-teal);
	color: #fff;
	font-size: 19px;
	font-weight: 900;
	box-shadow: 0 0 0 1px #c8d7cd;
}

.sh-steps h3 {
	margin-bottom: 10px;
	font-size: 21px;
	font-weight: 850;
}

.sh-steps p {
	margin: 0;
	color: var(--sh-muted);
	font-size: 14px;
}

.sh-center {
	text-align: center;
}

.sh-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 54px;
	padding: 13px 25px;
	border-radius: 8px;
	background: var(--sh-green);
	box-shadow: 0 9px 25px rgba(79,159,69,.21);
	color: #0a3c3f;
	font-size: 15px;
	font-weight: 900;
	transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.sh-button:hover,
.sh-button:focus-visible {
	background: #78cf69;
	box-shadow: 0 12px 28px rgba(79,159,69,.28);
	transform: translateY(-2px);
}

.sh-situations {
	position: relative;
	isolation: isolate;
	background:
		linear-gradient(130deg, rgba(5,59,64,.99), rgba(8,77,83,.98)),
		url("https://shrubby.com/wp-content/uploads/2021/12/Shrubby-Pattern-Concept01-opacity-25.png");
	color: #fff;
}

.sh-section-heading--light h2 {
	color: #fff;
}

.sh-section-heading--light > p:not(.sh-eyebrow) {
	color: rgba(255,255,255,.7);
}

.sh-situation-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
}

.sh-situation-grid article {
	min-height: 205px;
	padding: 27px 23px 23px;
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 10px;
	background: rgba(255,255,255,.055);
	transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.sh-situation-grid article:hover {
	border-color: rgba(139,221,126,.36);
	background: rgba(255,255,255,.09);
	transform: translateY(-3px);
}

.sh-situation-grid article > span {
	display: grid;
	width: 38px;
	height: 38px;
	margin-bottom: 22px;
	place-items: center;
	border-radius: 50%;
	background: rgba(109,197,94,.16);
	color: #a7ea9c;
	font-size: 17px;
	font-weight: 900;
}

.sh-situation-grid h3 {
	margin-bottom: 9px;
	color: #fff;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: -.02em;
}

.sh-situation-grid p {
	margin: 0;
	color: rgba(255,255,255,.67);
	font-size: 13px;
	line-height: 1.55;
}

.sh-faq {
	background: #fff;
}

.sh-faq__grid {
	display: grid;
	grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
	gap: 90px;
}

.sh-faq__intro {
	position: sticky;
	top: 115px;
	align-self: start;
}

.sh-faq__intro h2 {
	margin-bottom: 18px;
	font-size: clamp(38px, 4vw, 52px);
}

.sh-faq__intro > p:not(.sh-eyebrow) {
	color: var(--sh-muted);
	font-size: 16px;
}

.sh-faq__intro p a {
	color: var(--sh-green-dark);
	font-weight: 800;
}

.sh-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 6px;
	color: var(--sh-green-dark) !important;
	font-size: 14px;
	font-weight: 900;
}

.sh-faq__list {
	border-top: 1px solid var(--sh-line);
}

.sh-faq details {
	border-bottom: 1px solid var(--sh-line);
}

.sh-faq summary {
	position: relative;
	padding: 23px 50px 23px 0;
	color: var(--sh-ink);
	font-size: 17px;
	font-weight: 800;
	line-height: 1.35;
	cursor: pointer;
	list-style: none;
}

.sh-faq summary::-webkit-details-marker {
	display: none;
}

.sh-faq summary::after {
	content: "+";
	position: absolute;
	top: 19px;
	right: 4px;
	display: grid;
	width: 30px;
	height: 30px;
	place-items: center;
	border-radius: 50%;
	background: var(--sh-mint);
	color: var(--sh-green-dark);
	font-size: 20px;
	font-weight: 500;
}

.sh-faq details[open] summary::after {
	content: "−";
}

.sh-faq details p {
	padding: 0 52px 23px 0;
	margin: 0;
	color: var(--sh-muted);
	font-size: 14px;
}

.sh-areas {
	background: var(--sh-mint);
}

.sh-city-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 11px;
	max-width: 940px;
	margin: 0 auto;
}

.sh-city-grid a {
	padding: 13px 18px;
	border: 1px solid #d2e2d4;
	border-radius: 7px;
	background: rgba(255,255,255,.74);
	color: #315a5d;
	font-size: 14px;
	font-weight: 750;
	text-align: center;
	transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}

.sh-city-grid a:hover,
.sh-city-grid a:focus-visible {
	border-color: #9acb94;
	background: #fff;
	color: var(--sh-green-dark);
	transform: translateY(-2px);
}

.sh-areas__secondary {
	margin: 26px 0 0;
	color: var(--sh-muted);
	font-size: 14px;
	text-align: center;
}

.sh-areas__secondary a {
	color: var(--sh-green-dark);
	font-weight: 900;
}

.sh-final-cta {
	padding: 69px 0;
	background: var(--sh-green);
	color: #0b3e41;
}

.sh-final-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.sh-final-cta .sh-eyebrow {
	margin-bottom: 10px;
	color: rgba(7,63,69,.72);
}

.sh-final-cta .sh-eyebrow > span {
	background: var(--sh-teal);
}

.sh-final-cta h2 {
	margin-bottom: 9px;
	font-size: clamp(34px, 4vw, 50px);
}

.sh-final-cta p:last-child {
	margin-bottom: 0;
	color: rgba(7,63,69,.75);
	font-size: 16px;
}

.sh-button--light {
	flex: 0 0 auto;
	background: var(--sh-teal);
	box-shadow: 0 9px 25px rgba(7,63,69,.22);
	color: #fff !important;
}

.sh-button--light:hover,
.sh-button--light:focus-visible {
	background: #052f34;
}

.sh-footer {
	padding: 70px 0 24px;
	background: #052f34;
	color: rgba(255,255,255,.7);
}

.sh-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr .75fr 1fr;
	gap: 80px;
	padding-bottom: 52px;
}

.sh-brand--footer {
	margin-bottom: 18px;
	padding: 0;
	background: transparent;
}

.sh-brand--footer img {
	width: 154px;
}

.sh-footer__grid > div:first-child > p {
	max-width: 400px;
	font-size: 14px;
}

.sh-footer h2 {
	margin-bottom: 18px;
	color: #fff;
	font-size: 13px;
	font-weight: 850;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.sh-footer__grid > div:not(:first-child) {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 9px;
}

.sh-footer a,
.sh-footer address {
	color: rgba(255,255,255,.7);
	font-size: 13px;
	font-style: normal;
	line-height: 1.7;
}

.sh-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding-top: 22px;
	border-top: 1px solid rgba(255,255,255,.11);
}

.sh-footer__bottom p {
	margin: 0;
	font-size: 12px;
}

.sh-footer__bottom > div {
	display: flex;
	gap: 22px;
}

.sh-mobile-cta {
	display: none;
}

@media (max-width: 1080px) {
	.sh-hero__grid {
		grid-template-columns: minmax(0, 1fr) 410px;
		gap: 30px;
	}

	.sh-offer__bush {
		width: 720px;
	}

	.sh-simple__grid,
	.sh-faq__grid {
		gap: 55px;
	}

	.sh-situation-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.sh-trust__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.sh-trust__grid > div {
		border-bottom: 1px solid var(--sh-line);
	}

	.sh-trust__grid > div:nth-child(2) {
		border-right: 0;
		padding-right: 0;
	}

	.sh-trust__grid > div:nth-child(3) {
		padding-left: 0;
		border-bottom: 0;
	}

	.sh-trust__grid > div:nth-child(4) {
		border-bottom: 0;
	}
}

@media (max-width: 820px) {
	html {
		scroll-padding-top: 74px;
	}

	.sh-container {
		width: min(100% - 36px, 680px);
	}

	.sh-topbar__inner {
		min-height: 32px;
	}

	.sh-topbar__inner > span {
		display: none;
	}

	.sh-topbar__inner {
		justify-content: center;
	}

	.sh-header__inner {
		grid-template-columns: 1fr auto;
		min-height: 70px;
	}

	.sh-brand img {
		width: 126px;
	}

	.sh-nav {
		display: none;
	}

	.sh-header__action span {
		display: none;
	}

	.sh-header__action a {
		font-size: 15px;
	}

	.sh-hero__grid {
		grid-template-columns: 1fr;
		gap: 35px;
		min-height: 0;
		padding-top: 54px;
		padding-bottom: 60px;
	}

	.sh-hero__copy {
		max-width: none;
	}

	.sh-hero h1 {
		font-size: clamp(44px, 11vw, 65px);
	}

	.sh-offer {
		order: -1;
		width: 100%;
		min-height: auto;
	}

	.sh-offer__bush {
		display: block;
		width: 720px;
		height: 620px;
		opacity: .9;
		transform: translate(-50%, -48%);
	}

	.sh-offer__card {
		width: 100%;
		max-width: 540px;
		padding: 28px 25px 24px;
	}

	.sh-section {
		padding: 76px 0;
	}

	.sh-simple__grid,
	.sh-faq__grid {
		grid-template-columns: 1fr;
		gap: 56px;
	}

	.sh-simple__visual {
		max-width: 580px;
	}

	.sh-local-note {
		right: 14px;
	}

	.sh-steps {
		grid-template-columns: 1fr;
		gap: 34px;
		max-width: 520px;
		margin-right: auto;
		margin-left: auto;
	}

	.sh-steps::before {
		display: none;
	}

	.sh-step__number {
		margin-bottom: 15px;
	}

	.sh-faq__intro {
		position: static;
	}

	.sh-city-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.sh-final-cta__inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.sh-footer__grid {
		grid-template-columns: 1.25fr .75fr;
		gap: 50px;
	}

	.sh-footer__grid > div:last-child {
		grid-column: 1 / -1;
	}

	.sh-mobile-cta {
		position: fixed;
		z-index: 9999;
		right: 14px;
		bottom: 14px;
		left: 14px;
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 50px;
		border: 1px solid rgba(255,255,255,.4);
		border-radius: 8px;
		background: var(--sh-green);
		box-shadow: 0 12px 35px rgba(5,47,52,.32);
		color: #073f45 !important;
		font-size: 15px;
		font-weight: 900;
	}

	.sh-footer {
		padding-bottom: 88px;
	}
}

@media (max-width: 560px) {
	.sh-container {
		width: min(100% - 28px, 500px);
	}

	.sh-topbar {
		display: none;
	}

	.sh-header__inner {
		min-height: 60px;
		gap: 12px;
	}

	.sh-brand img {
		width: 112px;
	}

	.sh-header__action a {
		font-size: 14px;
	}

	.sh-hero__grid {
		gap: 25px;
		padding-top: 16px;
		padding-bottom: 42px;
	}

	.sh-offer__card {
		padding: 22px 20px 18px;
	}

	.sh-offer__kicker {
		margin-bottom: 3px;
		font-size: 10px;
	}

	.sh-offer__card h2 {
		margin-bottom: 5px;
		font-size: 25px;
	}

	.sh-offer__card > p:not(.sh-offer__kicker):not(.sh-form__privacy) {
		margin-bottom: 11px;
		font-size: 13px;
	}

	.sh-form .gform_fields {
		gap: 8px !important;
	}

	.sh-form .gfield_label {
		margin-bottom: 4px !important;
		font-size: 11px !important;
	}

	.sh-form input[type="text"],
	.sh-form input[type="tel"],
	.sh-form input[type="email"],
	.sh-form textarea,
	.sh-form select {
		min-height: 43px !important;
		padding: 8px 11px !important;
		font-size: 14px !important;
	}

	.sh-form .gform_footer {
		margin-top: 10px !important;
	}

	.sh-form input[type="submit"],
	.sh-form button[type="submit"] {
		min-height: 47px !important;
	}

	.sh-form__privacy {
		margin-top: 8px;
		font-size: 11px;
		line-height: 1.4;
	}

	.sh-eyebrow {
		font-size: 10px;
	}

	.sh-hero h1 {
		margin-bottom: 18px;
		font-size: clamp(40px, 13vw, 56px);
	}

	.sh-hero__lead {
		font-size: 17px;
		line-height: 1.55;
	}

	.sh-benefits {
		grid-template-columns: 1fr 1fr;
		gap: 9px 12px;
		font-size: 13px;
	}

	.sh-rating {
		margin-bottom: 2px;
	}

	.sh-offer__card h2 {
		font-size: 27px;
	}

	.sh-trust__grid {
		grid-template-columns: 1fr;
	}

	.sh-trust__grid > div,
	.sh-trust__grid > div:first-child,
	.sh-trust__grid > div:nth-child(2),
	.sh-trust__grid > div:nth-child(3),
	.sh-trust__grid > div:nth-child(4) {
		min-height: 85px;
		padding: 17px 0;
		border-right: 0;
		border-bottom: 1px solid var(--sh-line);
	}

	.sh-trust__grid > div:last-child {
		border-bottom: 0;
	}

	.sh-section {
		padding: 66px 0;
	}

	.sh-simple__copy h2,
	.sh-section-heading h2,
	.sh-faq__intro h2 {
		font-size: 37px;
	}

	.sh-local-note {
		position: relative;
		right: auto;
		bottom: auto;
		width: calc(100% - 28px);
		margin: -30px auto 0;
	}

	.sh-simple__copy {
		padding-top: 4px;
	}

	.sh-steps article {
		padding: 0 8px;
	}

	.sh-situation-grid {
		grid-template-columns: 1fr;
	}

	.sh-situation-grid article {
		min-height: 0;
	}

	.sh-city-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.sh-final-cta {
		padding: 56px 0;
	}

	.sh-final-cta h2 {
		font-size: 37px;
	}

	.sh-footer__grid {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.sh-footer__grid > div:last-child {
		grid-column: auto;
	}

	.sh-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
	}

	.sh-faq summary {
		font-size: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.shrubby-landing *,
	.shrubby-landing *::before,
	.shrubby-landing *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}

/* Two-step offer funnel */
.sh-form-step {
	display: grid;
	grid-template-columns: 28px 1fr 28px;
	align-items: center;
	gap: 7px;
	max-width: 150px;
	margin: 0 auto 15px;
}

.sh-form-step span {
	display: grid;
	width: 28px;
	height: 28px;
	place-items: center;
	border: 2px solid #c9d9d3;
	border-radius: 50%;
	background: #fff;
	color: #718384;
	font-size: 11px;
	font-style: normal;
	font-weight: 900;
}

.sh-form-step span:first-child,
.sh-form-step--second span {
	border-color: var(--sh-green);
	background: var(--sh-green);
	color: var(--sh-teal);
}

.sh-form-step--second span:first-child {
	background: var(--sh-teal);
	border-color: var(--sh-teal);
	color: #fff;
}

.sh-form-step i {
	height: 2px;
	background: #c9d9d3;
}

.sh-form-step--second i {
	background: var(--sh-green);
}

.sh-offer__card .sh-form-step {
	margin-top: -4px;
}

.sh-funnel {
	min-height: 100vh;
	background:
		linear-gradient(rgba(241,248,241,.94), rgba(247,250,247,.97)),
		url("https://shrubby.com/wp-content/uploads/2021/12/Shrubby-Pattern-Concept01-opacity-25.png");
	background-size: auto, 520px auto;
}

.sh-funnel__header {
	border-bottom: 1px solid rgba(7,63,69,.1);
	background: rgba(255,255,255,.97);
}

.sh-funnel__header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 88px;
	gap: 30px;
}

.sh-funnel__main {
	min-height: calc(100vh - 210px);
	padding: 65px 0 85px;
}

.sh-funnel__container {
	max-width: 860px;
}

.sh-funnel__intro {
	max-width: 720px;
	margin: 0 auto 30px;
	text-align: center;
}

.sh-funnel__intro h1,
.sh-funnel__thanks h1 {
	margin-bottom: 17px;
	color: var(--sh-teal);
	font-size: clamp(38px, 5vw, 58px);
	font-weight: 850;
}

.sh-funnel__intro > p:last-child,
.sh-funnel__thanks > p {
	max-width: 670px;
	margin-right: auto;
	margin-left: auto;
	color: var(--sh-muted);
	font-size: 17px;
}

.sh-funnel__card {
	padding: 37px 42px 33px;
	border: 1px solid rgba(7,63,69,.1);
	border-radius: 18px;
	background: rgba(255,255,255,.98);
	box-shadow: 0 24px 70px rgba(5,46,49,.13);
}

.sh-funnel__reassurance {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 9px 18px;
	margin: 0 0 28px;
	padding: 0 0 22px;
	border-bottom: 1px solid var(--sh-line);
	color: #456466;
	font-size: 13px;
	font-weight: 800;
}

.sh-funnel__reassurance span {
	color: var(--sh-green-dark);
}

.sh-form--details .gform_fields {
	gap: 20px !important;
}

.sh-form--details .gfield_label {
	margin-bottom: 8px !important;
	font-size: 14px !important;
}

.sh-form--details textarea {
	min-height: 120px !important;
	resize: vertical;
}

.sh-form--details .gfield_radio {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 9px;
}

.sh-form--details .gchoice {
	position: relative;
}

.sh-form--details .gchoice input {
	position: absolute;
	width: 1px !important;
	height: 1px !important;
	opacity: 0;
	pointer-events: none;
}

.sh-form--details .gchoice label {
	display: flex !important;
	align-items: center;
	min-height: 48px;
	width: 100% !important;
	max-width: none !important;
	padding: 10px 13px !important;
	border: 1px solid #d0ded8;
	border-radius: 7px;
	background: #fbfdfb;
	color: #36595b;
	font-size: 13px !important;
	font-weight: 700 !important;
	cursor: pointer;
	transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.sh-form--details .gchoice input:checked + label {
	border-color: var(--sh-green-dark);
	background: var(--sh-mint);
	box-shadow: 0 0 0 2px rgba(103,190,88,.13);
	color: var(--sh-teal);
}

.sh-form--details .gchoice input:focus-visible + label {
	outline: 3px solid rgba(103,190,88,.26);
	outline-offset: 2px;
}

.sh-funnel__help {
	margin-top: 24px;
	color: var(--sh-muted);
	font-size: 14px;
	text-align: center;
}

.sh-funnel__help a {
	color: var(--sh-green-dark);
	font-weight: 900;
}

.sh-funnel__footer {
	padding: 26px 0;
	background: var(--sh-teal);
	color: rgba(255,255,255,.67);
}

.sh-funnel__footer .sh-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.sh-funnel__footer p {
	margin: 0;
	font-size: 12px;
}

.sh-funnel__footer div div {
	display: flex;
	gap: 22px;
}

.sh-funnel__footer a {
	font-size: 12px;
}

.sh-funnel__main--thanks {
	display: grid;
	place-items: center;
}

.sh-funnel__thanks {
	text-align: center;
}

.sh-thanks__check {
	display: grid;
	width: 70px;
	height: 70px;
	margin: 0 auto 23px;
	place-items: center;
	border-radius: 50%;
	background: var(--sh-green);
	color: var(--sh-teal);
	font-size: 31px;
	font-weight: 900;
	box-shadow: 0 10px 28px rgba(79,159,69,.22);
}

.sh-thanks__next {
	max-width: 590px;
	margin: 30px auto 25px;
	padding: 25px;
	border-radius: 12px;
	background: var(--sh-mint);
}

.sh-thanks__next h2 {
	margin-bottom: 7px;
	color: var(--sh-teal);
	font-size: 25px;
	font-weight: 850;
}

.sh-thanks__next p {
	margin-bottom: 18px;
	color: var(--sh-muted);
	font-size: 14px;
}

.sh-funnel__thanks > .sh-text-link {
	justify-content: center;
}

@media (max-width: 820px) {
	.sh-funnel__header-inner {
		min-height: 72px;
	}

	.sh-funnel__main {
		padding: 45px 0 70px;
	}

	.sh-funnel__card {
		padding: 30px 25px 27px;
	}

	.sh-funnel__footer .sh-container {
		align-items: flex-start;
		flex-direction: column;
		gap: 11px;
	}
}

@media (max-width: 560px) {
	.sh-funnel__header .sh-brand {
		padding: 6px 9px;
	}

	.sh-funnel__header .sh-brand img {
		width: 105px;
	}

	.sh-funnel__intro h1,
	.sh-funnel__thanks h1 {
		font-size: 36px;
	}

	.sh-funnel__intro > p:last-child,
	.sh-funnel__thanks > p {
		font-size: 15px;
	}

	.sh-funnel__card {
		padding: 26px 18px 24px;
		border-radius: 13px;
	}

	.sh-form--details .gfield_radio {
		grid-template-columns: 1fr;
	}

	.sh-funnel__reassurance {
		gap: 7px 12px;
		font-size: 11px;
	}

	.sh-funnel__footer {
		padding-bottom: 88px;
	}
}

/* Branded multi-page staging templates */
.sh-inner-page main{background:#fff}
.sh-inner-hero{padding:110px 0 90px;background:linear-gradient(135deg,#073e43,#0b5a5f);color:#fff}
.sh-inner-hero .sh-container{max-width:940px;text-align:center}
.sh-inner-hero h1{max-width:850px;margin:12px auto 22px;color:#fff;font-size:clamp(42px,6vw,72px);line-height:1.02}
.sh-inner-hero p:not(.sh-eyebrow){max-width:740px;margin:0 auto 30px;color:rgba(255,255,255,.82);font-size:19px;line-height:1.65}
.sh-inner-section{padding:90px 0}
.sh-process-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.sh-process-grid article{padding:34px;border:1px solid #dce7e5;border-radius:14px;background:#fff;box-shadow:0 14px 35px rgba(5,59,64,.07)}
.sh-process-grid article>span{display:grid;width:42px;height:42px;margin-bottom:24px;place-items:center;border-radius:50%;background:#6dc55e;color:#073e43;font-weight:900}
.sh-process-grid h3{margin-bottom:12px;color:#073e43;font-size:22px}
.sh-process-grid p{color:#617274;line-height:1.65}
.sh-inner-cta{padding:80px 0;background:#eef7eb;text-align:center}
.sh-inner-cta h2{margin-bottom:14px;color:#073e43;font-size:clamp(34px,4vw,50px)}
.sh-inner-cta p{margin-bottom:25px;color:#617274;font-size:18px}
.sh-situation-grid h3 a{color:#fff}
.sh-small-note{margin-top:12px;color:#617274}
@media(max-width:820px){.sh-inner-hero{padding:72px 0 65px}.sh-inner-section{padding:64px 0}.sh-process-grid{grid-template-columns:1fr}.sh-inner-page .sh-nav{display:none}}
@media(max-width:560px){.sh-inner-hero{padding:52px 0}.sh-inner-hero h1{font-size:39px}.sh-inner-hero p:not(.sh-eyebrow){font-size:16px}.sh-inner-section{padding:50px 0}.sh-process-grid article{padding:25px}}
