:root {
	--bg: #0b1220;
	--card: #0f172a;
	--muted: #94a3b8;
	--text: #e2e8f0;
	--primary: #10b981;
	--primary-600: #059669;
	--ring: #34d399;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
	font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	background: radial-gradient(1200px 800px at 20% -10%, #065f461f, transparent), radial-gradient(1200px 800px at 120% 10%, #10b9811a, transparent), var(--bg);
	color: var(--text);
	line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 1px solid #1f2937;
	background: #111827;
	color: #fff;
	padding: 10px 16px;
	border-radius: 10px;
	font-weight: 600;
	transition: transform .06s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
	box-shadow: 0 0 0 0 rgba(52,211,153,0);
}
.btn:hover { transform: translateY(-1px); border-color: #334155; }
.btn:active { transform: translateY(0); }
.btn.btn-primary {
	background: linear-gradient(180deg, var(--primary), var(--primary-600));
	border-color: transparent;
	box-shadow: 0 10px 30px -10px rgba(16,185,129,.5);
}
.btn.btn-primary:hover { filter: brightness(1.05); }
.btn.btn-lg { padding: 14px 22px; font-size: 16px; }
.btn.btn-sm { padding: 8px 12px; font-size: 13px; }
.btn.btn-ghost { background: transparent; border-color: #334155; color: var(--text); }
.btn.btn-outline { background: transparent; border: 1px solid #334155; }

.site-header {
	position: sticky;
	top: 0;
	backdrop-filter: blur(8px);
	background: rgba(11, 18, 32, .6);
	border-bottom: 1px solid rgba(148,163,184,.1);
	z-index: 50;
}
.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 68px;
}
.logo {
	font-weight: 800;
	font-size: 20px;
	letter-spacing: -0.02em;
}
.logo span { color: var(--primary); }
.menu { display: none; gap: 18px; color: var(--muted); }
.menu a:hover { color: #cbd5e1; }
.menu-toggle {
	display: none;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	border: 1px solid #334155;
	background:
		linear-gradient(#fff,#fff) center/18px 2px no-repeat,
		linear-gradient(#fff,#fff) center/18px 2px no-repeat,
		linear-gradient(#fff,#fff) center/18px 2px no-repeat;
	background-position: center 11px, center 17px, center 23px;
	opacity: .7;
}

.hero-ong {
	padding: 64px 0 32px;
	background:
		radial-gradient(600px 300px at 20% 0%, rgba(16,185,129,.16), transparent),
		radial-gradient(700px 400px at 100% 0%, rgba(5,150,105,.14), transparent);
}
.grid-2 {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 40px;
	align-items: center;
}
.hero-copy h1 {
	font-size: clamp(28px, 5vw, 44px);
	line-height: 1.1;
	margin: 10px 0 12px;
	letter-spacing: -0.02em;
}
.hero-copy .subtitle { color: #cbd5e1; max-width: 56ch; }
.eyebrow {
	color: var(--primary);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .16em;
	font-size: 12px;
}
.cta-wrap { display: flex; gap: 12px; margin: 22px 0; flex-wrap: wrap; }
.trust-badges { display: flex; gap: 18px; color: var(--muted); padding: 0; margin: 12px 0 0; list-style: none; flex-wrap: wrap; }
.hero-media { position: relative; }
.hero-media img {
	border-radius: 18px;
	border: 1px solid #1f2937;
	box-shadow: 0 30px 70px -30px rgba(16,185,129,.35);
}
.card-floating {
	position: absolute;
	right: -10px;
	bottom: -12px;
	background: linear-gradient(180deg, #0b1324, #0f1a32);
	border: 1px solid #1f2937;
	border-radius: 14px;
	padding: 12px 14px;
	box-shadow: 0 18px 40px -18px rgba(16,185,129,.4);
}
.card-floating.green strong { color: #d1fae5; }
.card-floating strong { display: block; font-size: 22px; }
.card-floating span { color: var(--muted); font-size: 12px; }

.section { padding: 64px 0; }
.section-alt { background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)); border-top: 1px solid rgba(148,163,184,.08); border-bottom: 1px solid rgba(148,163,184,.08); }
.section h2 {
	text-align: center;
	font-size: clamp(22px, 4vw, 32px);
	letter-spacing: -0.02em;
	margin: 0 0 10px;
}
.section-subtitle { text-align: center; color: #cbd5e1; margin: 0 auto 28px; max-width: 70ch; }

.features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}
.feature {
	background: linear-gradient(180deg, #0b1324, #0e162b);
	border: 1px solid #1f2937;
	border-radius: 14px;
	padding: 18px;
}
.feature .icon { font-size: 22px; }
.feature h3 { margin: 8px 0 6px; }
.feature p { color: var(--muted); margin: 0; }

.impact-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
.impact-card {
	background: #0b1324;
	border: 1px solid #1f2937;
	border-radius: 14px;
	padding: 18px;
	text-align: center;
}
.impact-card strong { display: block; font-size: 28px; font-weight: 800; letter-spacing: -0.02em; }
.impact-card span { color: var(--muted); font-size: 13px; }

.transp-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}
.transp-item {
	background: #0b1324;
	border: 1px solid #1f2937;
	border-radius: 14px;
	padding: 18px;
}
.transp-item h3 { margin: 6px 0 8px; }
.transp-item p { color: var(--muted); margin: 0; }

.partners {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	align-items: center;
	justify-items: center;
	opacity: .9;
}
.partners img {
	filter: grayscale(100%);
	opacity: .8;
	transition: opacity .2s ease;
}
.partners img:hover { opacity: 1; }

.pricing {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}
.price-card {
	position: relative;
	background: linear-gradient(180deg, #0b1324, #0f192f);
	border: 1px solid #1f2937;
	border-radius: 16px;
	padding: 22px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.price-card .badge {
	position: absolute;
	top: -12px; right: 16px;
	background: #064e3b;
	color: #a7f3d0;
	border: 1px solid #065f46;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	padding: 6px 10px;
}
.price-card .price {
	font-size: 34px;
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: 0;
}
.price-card .price span { font-size: 16px; font-weight: 600; color: #cbd5e1; margin-right: 4px; }
.price-card ul { margin: 4px 0 10px; padding-left: 18px; color: var(--muted); }
.price-card a { margin-top: auto; }
.price-card.featured {
	background: linear-gradient(180deg, #0b1324, #0f1f3a);
	border-color: #065f464d;
	box-shadow: 0 30px 70px -30px rgba(16,185,129,.45);
}

.faq { display: grid; gap: 10px; }
.faq-item {
	border: 1px solid #1f2937;
	border-radius: 12px;
	background: #0b1324;
	overflow: hidden;
}
.faq-q {
	width: 100%;
	text-align: left;
	background: transparent;
	color: #e2e8f0;
	font-weight: 600;
	padding: 16px;
	border: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}
.faq-q .chev {
	width: 14px; height: 14px;
	border-right: 2px solid #6ee7b7;
	border-bottom: 2px solid #6ee7b7;
	transform: rotate(45deg);
	transition: transform .2s ease;
}
.faq-item.open .faq-q .chev { transform: rotate(-135deg); }
.faq-a {
	display: none;
	padding: 0 16px 16px;
	color: var(--muted);
}
.faq-item.open .faq-a { display: block; }

.center { text-align: center; }
.small { font-size: 13px; color: var(--muted); }

.site-footer {
	border-top: 1px solid rgba(148,163,184,.08);
	background: #0a101c;
	padding: 26px 0 10px;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 18px;
	align-items: center;
}
.footer-links { display: flex; gap: 14px; align-items: center; color: var(--muted); }
.footer-links a:hover { color: #cbd5e1; }
.copyright {
	margin: 12px 0 0;
	text-align: center;
	color: #94a3b8;
	font-size: 12px;
}

@media (max-width: 960px) {
	.menu { display: none; }
	.menu-toggle { display: inline-block; }
	.grid-2 { grid-template-columns: 1fr; }
	.hero-ong { padding-top: 34px; }
	.features { grid-template-columns: 1fr; }
	.impact-grid { grid-template-columns: 1fr 1fr; }
	.transp-grid { grid-template-columns: 1fr; }
	.partners { grid-template-columns: 1fr 1fr; }
	.pricing { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}


