:root {
	--bg: #ffffff;
	--text: #0f172a; /* slate-900 */
	--muted: #475569; /* slate-600 */
	--line: #e2e8f0; /* slate-200 */
	--card: #f8fafc; /* slate-50 */
	--green: #368f43; /* primary accent */
	--green-600: #00433b;
	--green-700: #063d32;
	--green-soft: #e9f6ee;
	--shadow: 0 10px 30px rgba(16, 185, 129, 0.08);
	--radius: 16px;
	--radius-lg: 22px;
	--maxw: 1140px;
	--header-offset: 50px; /* offset for sticky header */
}
* {
	box-sizing: border-box;
}
html,
body {
	margin: 0;
	padding: 0;
	background: var(--bg);
	color: var(--text);
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	line-height: 1.55;
}

/* Offset anchored sections to account for sticky header */
section[id],
header[id],
footer[id] {
	scroll-margin-top: var(--header-offset);
}
a {
	color: var(--green);
	text-decoration: none;
}
img {
	max-width: 100%;
	display: block;
}
.container {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 20px;
}
header {
	border-bottom: 1px solid var(--line);
	position: sticky;
	top: 0;
	background: #fff;
	backdrop-filter: none;
	z-index: 30;
}
.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 0;
}
.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	letter-spacing: -0.02em;
}
.brand-logo {
	width: 150px;
}
a.btn.btn-primary {
	color: #fff !important;
}
.nav-links {
	display: flex;
	gap: 22px;
	align-items: center;
}
header .nav-links {
	gap: 18px;
	flex-wrap: wrap;
}
header .nav-links > a:not(.btn),
header .nav-links > a:not(.btn):visited {
	color: var(--green) !important;
	opacity: 1;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
}
header .nav-links > a:not(.btn):hover {
	color: var(--green-700);
	text-decoration: underline;
}
.nav-toggle {
	display: none;
	background: transparent;
	border: 1px solid var(--line);
	border-radius: 10px;
	padding: 8px 10px;
	font-size: 20px;
}
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 18px;
	border-radius: 999px;
	border: 1px solid var(--green);
	font-weight: 600;
	line-height: 1;
	margin: 0px 6px;
	text-decoration: none;
	transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 80ms ease;
}

.btn:active {
	transform: translateY(1px);
}

.btn:focus-visible {
	outline: 2px solid rgba(54, 143, 67, 0.55);
	outline-offset: 2px;
	box-shadow: 0 0 0 4px rgba(54, 143, 67, 0.18);
}

.btn[aria-disabled="true"],
.btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	box-shadow: none;
}

.nav-links .btn {
	margin: 0px -2px !important;
}
header .nav-links .btn {
	margin: 0 !important;
	padding: 9px 13px;
	border-radius: 10px;
	font-size: 14px;
}
header .nav-links .btn-primary {
	box-shadow: none;
}
.btn-primary {
	background: var(--green);
	color: #fff;
	border-color: var(--green);
	box-shadow: var(--shadow);
}
.btn-primary:hover {
	background: var(--green-600);
}

/* Secondary button for light backgrounds */
.btn-secondary,
.btn-ghost {
	background: transparent;
	color: var(--green);
	border-color: var(--green);
}
.btn-secondary:hover,
.btn-ghost:hover {
	background: var(--green-soft);
	color: var(--green-700);
}
.band a.btn.btn-primary {
	color: var(--green) !important;
	background: #fff !important;
	border-color: #fff;
	box-shadow: 0 6px 18px rgba(255, 255, 255, 0.08);
}
.band a.btn.btn-primary:hover {
	background: #f6fffa;
	color: var(--green);
	border-color: #f6fffa;
}

/* Secondary on dark backgrounds */
.band .btn-secondary,
.band .btn-ghost {
	background: transparent;
	color: #fff;
	border-color: #ffffffbf; /* slightly translucent */
}
.band .btn-secondary:hover,
.band .btn-ghost:hover {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	border-color: #fff;
}
/* Ghost mapping handled above as secondary variants */
/* Hero */
.hero {
	padding: 56px 0 24px;
}
.hero-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.9fr;
	gap: 36px;
	align-items: center;
}
.eyebrow {
	font-size: 13px;
	font-weight: 700;
	color: var(--green);
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.h1 {
	font-size: 42px;
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin: 10px 0 12px;
}
.lead {
	font-size: 18px;
	max-width: 52ch;
	margin: 2.5rem 0;
}
.cta-row {
	margin-top: 20px;
	margin: 35px auto 0pc;
	width: 475px;
}
.hero-card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	min-height: 220px;
	display: grid;
	place-items: center;
	color: var(--muted);
}
.video {
	aspect-ratio: 16/9;
	border: 2px dashed var(--line);
	border-radius: var(--radius);
	display: grid;
	place-items: center;
	color: var(--muted);
}
.video-thumb {
	position: relative;
	border: none;
	background: transparent;
	padding: 0;
	cursor: pointer;
}
.video-thumb img {
	display: block;
	border-radius: 12px;
	width: 100%;
	max-width: 100%;
}
/* Cards on band should stay readable */
.top-band .card {
	background: #fff;
	border-color: rgba(255, 255, 255, 0.4);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.top-band .video-card {
	padding: 8px;
	border-radius: 12px;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.35);
	transform: scale(0.9);
	transform-origin: top left;
}
.top-band #video .h2 {
	display: none;
}
.top-band .video-caption {
	margin-top: 8px;
	font-size: 16px;
	color: #ffffffcc;
	font-weight: 600;
	text-align: center;
}
.top-band .card p,
.top-band .card small,
.top-band .card .muted {
	color: var(--muted);
}
.top-band .btn-secondary,
.top-band .btn-ghost {
	background: transparent;
	color: #fff;
	border-color: #ffffffbf;
}
.top-band .btn-secondary:hover,
.top-band .btn-ghost:hover {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	border-color: #fff;
}

/* Inside white cards on the band, use the default green secondary styles */
.top-band .card .btn-secondary,
.top-band .card .btn-ghost {
	background: transparent;
	color: var(--green);
	border-color: var(--green);
}
.top-band .card .btn-secondary:hover,
.top-band .card .btn-ghost:hover {
	background: var(--green-soft);
	color: var(--green-700);
	border-color: var(--green);
}
.video-thumb .play-badge {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-size: 28px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.video-dialog {
	width: min(100% - 32px, 1100px);
}
.video-content {
	padding: 0;
}
/* Problem */
.section {
	padding: 56px 0;
}
.section.gray {
	background: linear-gradient(180deg, #e0e0e0 0%, #d7efe3 100%);
	margin-bottom: 0;
	padding-bottom: 6rem;
}
.h2 {
	font-size: 28px;
	letter-spacing: -0.01em;
	margin: 0 0 22px;
}
.grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}
.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 18px;
	position: relative;
}
.flag-x,
.check {
	position: absolute;
	top: 14px;
	right: 15px;
	width: 75px;
	height: 75px;
	border-radius: 8px;
	background: #fee2e2;
	color: #b91c1c;
	display: grid;
	place-items: center;
	font-weight: 800;
	font-size: 48px;
}
.check {
	background: #dcfce7;
	color: #166534;
}

/* Social proof band */
.band {
	background: linear-gradient(135deg, var(--green-600), var(--green));
	color: #fff;
	padding: 5rem 0;
	margin: 0;
}
.band .container {
	text-align: center;
	max-width: 980px;
}
.top-band .container {
	text-align: left;
	max-width: var(--maxw);
}
.band .muted {
	color: #ffffffcc;
}
.top-band .eyebrow {
	color: #fff;
	opacity: 0.9;
}
.top-band .h2 {
	color: #fff;
}
.top-band .section-intro {
	color: #ffffffcc;
}
.band #book-call .card,
#book-call .card {
	margin: 0 auto;
	max-width: 980px;
}
.band h2 {
	font-size: 36px;
	line-height: 1.2;
	letter-spacing: -0.02em;
	margin: 0 0 14px;
}
.band h3 {
	margin: 0 0 24px;
	text-align: center;
	font-size: 22px;
	font-weight: 700;
}

.band p {
	color: #fff;
	opacity: 0.95;
	margin-left: auto;
	margin-right: auto;
}
.proof-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
}
.proof {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--radius);
	min-height: 140px;
	display: grid;
	place-items: center;
}
.logo-wall {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 14px;
	margin-top: 22px;
}
.logo {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 10px;
	min-height: 76px;
	display: grid;
	place-items: center;
	color: #ffffffcc;
	font-weight: 700;
}
.logo img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	opacity: 1;
	border-radius: inherit;
}
/* CTA row */
.cta-strip {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 22px;
}
.band .cta-row {
	display: grid;
	grid-auto-flow: column;
	gap: 14px;
	justify-content: center;
	align-items: center;
	margin: 26px auto 0;
	width: auto;
}
.band .cta-row .btn {
	margin: 0;
	white-space: nowrap;
}
/* FAQ */
.faq {
	margin: 0 auto;
}
.section-intro {
	margin: 8px 0 18px;
	max-width: 60ch;
}
.muted {
	color: var(--muted);
}
details {
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 14px 16px;
	background: #fff;
}
details + details {
	margin-top: 10px;
}
summary {
	cursor: pointer;
	font-weight: 600;
}
details[open] {
	background: var(--card);
}
details p {
	margin: 10px 0 0;
	color: var(--muted);
}
/* Footer */
footer {
	border-top: 1px solid var(--line);
	padding: 28px 0;
	color: var(--muted);
	font-size: 14px;
	margin-top: 36px;
	background: linear-gradient(180deg, #e0e0e0 0%, #d7efe3 100%);
}
.foot {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
}
.foot a {
	color: inherit;
}
/* Responsive */
@media (max-width: 960px) {
	.hero-grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}
	.grid-2 {
		grid-template-columns: 1fr;
	}
	.grid-3 {
		grid-template-columns: 1fr;
	}
}

/* Collapse nav around 700px */
@media (max-width: 700px) {
	.nav-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}
	.nav-links {
		position: absolute;
		top: 56px;
		right: 20px;
		left: 20px;
		background: #fff;
		border: 1px solid var(--line);
		border-radius: 12px;
		padding: 10px;
		flex-direction: column;
		gap: 10px;
		box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
		display: none;
		z-index: 10;
	}
	.nav-links.open {
		display: flex;
	}
}

/* Tighten gutters below 600px */
@media (max-width: 600px) {
	.container {
		padding: 0 24px;
	}
	.cta-row {
		width: auto;
		margin: 24px auto 0;
		gap: 10px;
	}
}

/* Moved inline styles */
.brand-sub {
	font-weight: 600;
	color: var(--muted);
}
.nav-links.tight {
	gap: 14px;
}

.card-banner {
	margin: 0px 2rem;
	border-radius: 11px;
}
.card-banner-red {
	background: red;
}
.card-banner-green {
	background: green;
}
.card-banner img {
	width: 100%;
	border-radius: 7px;
	border: solid 2px var(--line);
	margin: 1rem auto 2rem;
}
.card-banner-green img {
	background: green;
	opacity: 0.95;
}

.card-banner-red img {
	background: red;
	opacity: 0.9;
}

.card h3 {
	text-align: left;
	font-size: 1.5rem;
	margin-left: 2rem;
	margin-bottom: 2.5rem;
	margin-top: 1rem;
}

.card p {
	margin: 10px 2rem;
}

/* Plan cards: consistent margins and hierarchy */
.plan-card {
	padding: 22px 0 22px; /* rely on inner element margins for left/right */
}
.plan-card .plan-title {
	margin: 0 2rem 10px;
	font-size: 22px;
	font-weight: 800;
}
.plan-card .plan-sub {
	margin: 0 2rem 14px;
}
.plan-card .plan-list {
	margin: 8px 2rem 18px;
}
.plan-card .plan-cta {
	margin: 2px 2rem 0;
}

section {
	margin-bottom: 2.5rem;
}
.red-highlight {
	background: rgba(255, 0, 0, 0.25);
	padding: 5px 7px;
	border-radius: 5px;
}

.green-highlight {
	background: rgba(40, 255, 40, 0.4);
	padding: 5px 7px;
	border-radius: 5px;
}

/* Pricing */
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}
.price-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 22px;
	position: relative;
}
.price-card .price {
	font-size: 28px;
	font-weight: 800;
	margin: 6px 0 14px;
}
.price-card .price span {
	font-size: 14px;
	font-weight: 600;
	color: var(--muted);
}
.price-card ul {
	margin: 0 0 18px;
	padding-left: 18px;
}
.price-card ul li {
	margin: 6px 0;
}
.price-card.popular {
	border-color: var(--green);
	box-shadow: var(--shadow);
}
.price-card .badge {
	position: absolute;
	top: 31px;
	right: 26px;
	width: 176px;
}
.price-card .badge img {
	border-radius: 8px;
}

/* Tick list */
.tick-list {
	margin: 0;
	padding-left: 22px;
}
.tick-list li {
	margin: 8px 0;
	position: relative;
}
.tick-list li::marker {
	color: var(--green-700);
}

/* How it Works: card refinements and step badges */
#how .card {
	padding: 24px 26px 26px;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
#how .card .step-head {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 10px;
	width: 100px;
	margin: 0px auto 1rem;
}
#how .card .step-num {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: #e7f7ec;
	color: var(--green-700);
	display: grid;
	place-items: center;
	font-weight: 800;
	font-size: 22px;
}
#how .card .step-icon svg {
	display: block;
}
#how .card h3 {
	margin: 0 0 10px;
	font-size: 22px;
}
#how .card p {
	color: var(--muted);
}
section#how h3 {
	text-align: center;
}
/* Pricing calculator */
.pricing-calc {
	margin-top: 26px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	padding: 18px;
}
.pricing-calc h3 {
	margin: 0 0 12px;
}
.pricing-calc .fields {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-bottom: 12px;
}
.pricing-calc label span {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
}
.pricing-calc input,
.pricing-calc select {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--line);
	border-radius: 10px;
	font-family: inherit;
	font-size: 16px;
}
.pricing-calc .result {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: 8px;
}
.pricing-calc .result #pricingResult {
	font-size: 24px;
	font-weight: 800;
}
.pricing-calc .result .muted {
	color: var(--muted);
	font-size: 14px;
}
.pricing-calc .cap-note {
	color: var(--muted);
	font-size: 13px;
}

/* Modal */
.modal {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 50;
}
.modal[aria-hidden="false"] {
	display: flex;
}
.modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
}
.modal-dialog {
	position: relative;
	background: #fff;
	border-radius: var(--radius-lg);
	width: min(100% - 32px, 1000px);
	max-height: calc(100% - 32px);
	overflow: auto;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}
.modal-content {
	padding: 22px;
}
.modal-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}
.modal-pane h3 {
	margin: 0 0 12px;
}
.modal-close {
	position: absolute;
	top: 10px;
	right: 10px;
	background: transparent;
	border: none;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
}

/* Offscreen Calendly preload container */
.calendly-preload {
	position: fixed;
	left: -99999px;
	top: -99999px;
	visibility: hidden;
	pointer-events: none;
	opacity: 0;
}

/* Forms */
.contact-form label {
	display: block;
	margin: 10px 0;
}
.contact-form fieldset.checkbox-fieldset {
	border: 1px solid var(--line);
	border-radius: 10px;
	padding: 12px;
	margin: 14px 0;
}
.contact-form fieldset.checkbox-fieldset legend {
	font-weight: 700;
	padding: 0 6px;
}
.checkbox-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px 14px;
}
.checkbox-grid .checkbox {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.contact-form span {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--line);
	border-radius: 10px;
	font-family: inherit;
	font-size: 16px;
}
.contact-form select {
	appearance: none;
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235b6b73' d='M6 8L0 0h12z'/%3E%3C/svg%3E") no-repeat right 12px center / 12px 8px;
	padding-right: 36px;
	font-weight: 600;
	line-height: 1.4;
}

/* Smooth scroll */
html {
	scroll-behavior: smooth;
}

/* Target highlight when navigated by quiz */
.active-target {
	outline: 2px solid var(--green);
	box-shadow: 0 0 0 4px rgba(54, 143, 67, 0.12) inset;
	background: var(--green-soft);
	transition: background-color 400ms ease;
}

@media (max-width: 960px) {
	.pricing-grid {
		grid-template-columns: 1fr;
	}
	.pricing-calc .fields {
		grid-template-columns: 1fr;
	}
	.modal-grid {
		grid-template-columns: 1fr;
	}
	.checkbox-grid {
		grid-template-columns: 1fr;
	}
	.logo-wall {
		grid-template-columns: repeat(3, 1fr);
	}
}

#how img {
	border: solid 1px #ddd;
	border-radius: 10px;
}

.top-band .video-card-2 {
	transform: scale(1);
}
