:root {
	--primary: #3ca82d;
	--primary-dark: #2f8423;
	--accent: #24c799;
	--ink: #0f1d14;
	--muted: #55635b;
	--bg: linear-gradient(180deg, #f8fbf7 0%, #eef6ef 60%, #fdfefc 100%);
	--card: #ffffff;
	--shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
	--radius: 18px;
}

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

body {
	margin: 0;
	font-family: 'Manrope', 'Segoe UI', sans-serif;
	color: var(--ink);
	background: var(--bg);
	line-height: 1.6;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	display: block;
}

.shell {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 20px;
}

.topbar {
	position: sticky;
	top: 0;
	z-index: 10;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.topbar .shell {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 74px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
}

.brand__mark {
	width: 66px;
	height: auto;
	display: block;
}

.brand__kicker {
	margin: 0;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--muted);
}

.brand__name {
	margin: -2px 0 0;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0.5px;
}

.nav {
	display: flex;
	align-items: center;
	gap: 14px;
}

.nav a {
	font-weight: 700;
	padding: 10px 8px;
	color: #1e1e1e;
	position: relative;
}

.nav a::after {
	content: '';
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 6px;
	height: 2px;
	background: var(--accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.2s ease;
}

.nav a:hover::after {
	transform: scaleX(1);
}

.nav .pill {
	border-radius: 999px;
	padding: 9px 16px;
	color: #fff;
	background: linear-gradient(135deg, var(--primary), var(--accent));
	box-shadow: 0 8px 20px rgba(36, 199, 153, 0.3);
}

.nav .pill:hover {
	filter: brightness(0.95);
}

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: none;
	border: none;
	padding: 8px;
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: #111;
	border-radius: 2px;
}

.hero {
	padding: 90px 0 50px;
	background: radial-gradient(circle at 20% 20%, rgba(60, 168, 45, 0.12), transparent 35%), radial-gradient(circle at 80% 0%, rgba(36, 199, 153, 0.16), transparent 40%), #ffffff;
	background-size: 200% 200%;
	animation: gradientShift 14s ease infinite;
}

.hero__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 30px;
	align-items: center;
}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 12px;
	font-weight: 800;
	color: var(--primary);
	margin: 0 0 8px;
}

h1 {
	font-size: 38px;
	line-height: 1.2;
	margin: 0 0 16px;
}

h2 {
	font-size: 30px;
	line-height: 1.2;
	margin: 0 0 10px;
}

h3 {
	margin: 0 0 10px;
	font-size: 20px;
}

.lede {
	font-size: 17px;
	color: #2d2d2d;
	margin: 0 0 20px;
}

.hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 16px 0;
}

.btn {
	border-radius: var(--radius);
	padding: 13px 18px;
	font-weight: 800;
	border: 1px solid transparent;
	cursor: pointer;
	display: inline-block;
	transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.btn.primary {
	background: linear-gradient(135deg, var(--primary), var(--accent));
	color: #fff;
	box-shadow: var(--shadow);
}

.btn.primary:hover {
	transform: translateY(-2px) scale(1.01);
	filter: brightness(0.98);
}

.btn.ghost {
	border-color: rgba(47, 132, 35, 0.4);
	color: var(--primary-dark);
	background: #fff;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.btn.ghost:hover {
	background: #f2fbf5;
}

.btn.full {
	width: 100%;
	text-align: center;
}

.hero__bullets {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	color: #333;
	font-weight: 700;
}

.hero__bullets span {
	background: #eff8ef;
	color: #21431b;
	padding: 8px 12px;
	border-radius: 999px;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hero__bullets span:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.card {
	background: var(--card);
	border-radius: var(--radius);
	padding: 22px;
	box-shadow: var(--shadow);
	border: 1px solid rgba(0, 0, 0, 0.025);
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
	transform: translateY(-6px);
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
}

.stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	animation: floaty 6s ease-in-out infinite;
}

.stat__number {
	margin: 0;
	font-size: 28px;
	font-weight: 900;
	color: var(--primary);
}

.stat__label {
	margin: 4px 0 0;
	color: #444;
}

.section {
	padding: 64px 0;
}

.section.muted {
	background: #f3f7f3;
}

.section__header {
	text-align: center;
	max-width: 760px;
}

.cards {
	margin-top: 32px;
	gap: 18px;
}

.grid-3 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.chips {
	list-style: none;
	padding: 0;
	margin: 14px 0 0;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.chips li {
	background: #eef7ed;
	color: #1e301a;
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
}

.split {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 24px;
	align-items: center;
}

.list {
	list-style: none;
	padding: 0;
	margin: 14px 0 0;
}

.list li {
	margin: 8px 0;
	padding-left: 20px;
	position: relative;
}

.list li::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--primary);
	position: absolute;
	left: 0;
	top: 9px;
}

.emphasis {
	background: linear-gradient(135deg, rgba(60, 168, 45, 0.12), rgba(36, 199, 153, 0.12));
	border: 1px solid rgba(73, 180, 51, 0.22);
	box-shadow: 0 16px 45px rgba(0, 0, 0, 0.06);
}

.contact {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 24px;
	align-items: start;
}

.contact a {
	color: var(--primary);
	font-weight: 800;
}

.form {
	display: grid;
	gap: 12px;
}

.form label {
	display: grid;
	gap: 6px;
	font-weight: 700;
	color: #222;
}

.form input,
.form textarea {
	width: 100%;
	padding: 12px;
	border-radius: 12px;
	border: 1px solid #d7e3d2;
	font-family: inherit;
	font-size: 15px;
	background: #fff;
}

.form input:focus,
.form textarea:focus {
	outline: 2px solid rgba(73, 180, 51, 0.35);
	border-color: rgba(73, 180, 51, 0.5);
}

.note {
	color: var(--muted);
	font-size: 13px;
	margin: 0;
}

.footer {
	background: #0c150e;
	color: #e6f3e3;
	padding: 32px 0 20px;
}

.footer__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
	align-items: start;
}

.footer__links {
	display: grid;
	gap: 8px;
}

.footer__links a {
	color: #e6f3e3;
}

.footer__links a:hover {
	color: var(--accent);
}

.footer__meta {
	margin: 18px auto 0;
	text-align: center;
	color: #9eb7a6;
	font-size: 13px;
}

@keyframes gradientShift {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

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

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
}

@media (max-width: 900px) {
	.hero__grid,
	.split,
	.contact {
		grid-template-columns: 1fr;
	}

	.topbar .shell {
		height: 66px;
	}

	.nav {
		position: absolute;
		top: 66px;
		left: 0;
		right: 0;
		flex-direction: column;
		background: #fff;
		border-bottom: 1px solid rgba(0, 0, 0, 0.06);
		padding: 10px 20px 20px;
		transform: translateY(-120%);
		opacity: 0;
		pointer-events: none;
		transition: all 0.2s ease;
	}

	.nav.is-open {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}

	.nav-toggle {
		display: flex;
	}
}

@media (max-width: 640px) {
	.hero {
		padding: 68px 0 30px;
	}

	h1 {
		font-size: 30px;
	}

	.hero__cta {
		flex-direction: column;
	}

	.nav .pill {
		width: 100%;
		text-align: center;
	}
}
