:root {
	--bg: #ffffff;
	--bg-soft: #f5f8f7;
	--border: #e3e9e7;
	--text: #1f2933;
	--text-muted: #6b7684;
	--accent: #0f9d8c;
	--accent-dark: #0b7d70;
	--accent-soft: #e6f5f2;
	--amber: #e0a30f;
	--brown: #8a5a3b;
	--radius: 14px;
	--font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
	margin: 0;
	font-family: var(--font);
	color: var(--text);
	background: var(--bg);
	font-size: 17px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3 { line-height: 1.2; margin: 0 0 12px; }
p { margin: 0 0 16px; }
a { color: var(--accent-dark); }

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 720px; }

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--accent);
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	padding: 11px 20px;
	border-radius: 10px;
	transition: background 0.15s ease, transform 0.15s ease;
	white-space: nowrap;
}
.btn:hover { background: var(--accent-dark); }
.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-lg { padding: 14px 26px; font-size: 16px; }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--bg-soft); }

/* --- header --- */

.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-weight: 800;
	font-size: 19px;
	color: var(--accent-dark);
	text-decoration: none;
}
.logo-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--accent); }
.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav a { color: var(--text-muted); text-decoration: none; font-size: 15px; font-weight: 600; }
.site-nav a:hover { color: var(--text); }
.site-nav a.btn { color: #fff; }
.site-nav a.btn:hover { color: #fff; }

/* --- hero --- */

.hero { padding: 84px 0 72px; background: linear-gradient(180deg, var(--accent-soft) 0%, #fff 70%); }
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 12px;
	font-weight: 700;
	color: var(--accent-dark);
	margin-bottom: 14px;
}
.hero h1 { font-size: 46px; letter-spacing: -0.02em; margin-bottom: 18px; }
.lede { font-size: 18px; color: var(--text-muted); max-width: 33em; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 26px 0 14px; }
.hero-note { font-size: 14px; color: var(--text-muted); margin: 0; }

.hero-visual { display: flex; justify-content: center; }
.map-mock {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	background:
		linear-gradient(90deg, rgba(15, 157, 140, 0.07) 1px, transparent 1px) 0 0 / 46px 46px,
		linear-gradient(rgba(15, 157, 140, 0.07) 1px, transparent 1px) 0 0 / 46px 46px,
		#fbfdfc;
	box-shadow: 0 18px 50px rgba(16, 24, 32, 0.09);
	overflow: hidden;
}
.pin {
	position: absolute;
	width: 16px;
	height: 16px;
	border-radius: 50% 50% 50% 2px;
	transform: rotate(-45deg);
	box-shadow: 0 2px 6px rgba(16, 24, 32, 0.25);
}
.pin-1 { background: var(--accent); top: 22%; left: 18%; }
.pin-2 { background: var(--amber); top: 44%; left: 62%; }
.pin-3 { background: var(--brown); top: 68%; left: 33%; }
.pin-4 { background: #2f6fed; top: 30%; left: 44%; }
.mock-card {
	position: absolute;
	right: 16px;
	bottom: 16px;
	width: 58%;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 12px;
	box-shadow: 0 8px 22px rgba(16, 24, 32, 0.1);
}
.mock-row { display: flex; align-items: center; gap: 9px; margin-bottom: 9px; }
.mock-row:last-child { margin-bottom: 0; }
.mock-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.mock-dot.amber { background: var(--amber); }
.mock-dot.brown { background: var(--brown); }
.mock-bar { height: 8px; border-radius: 4px; background: #eef2f1; }
.w-45 { width: 45%; } .w-60 { width: 60%; } .w-80 { width: 80%; }

/* --- strip --- */

.strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-soft); }
.strip-inner { display: flex; gap: 40px; flex-wrap: wrap; justify-content: space-around; padding: 26px 24px; text-align: center; }
.strip-inner div { display: flex; flex-direction: column; }
.strip-inner strong { font-size: 19px; }
.strip-inner span { font-size: 14px; color: var(--text-muted); }

/* --- sections --- */

.section { padding: 82px 0; }
.section-alt { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.section-head h2 { font-size: 32px; letter-spacing: -0.015em; }
.section-head p { color: var(--text-muted); margin: 0; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 26px;
}
.card h3 { font-size: 17px; }
.card p { color: var(--text-muted); font-size: 15px; margin: 0; }

.steps { list-style: none; counter-reset: step; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.steps li { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--accent-soft);
	color: var(--accent-dark);
	font-weight: 700;
	margin-bottom: 14px;
}
.steps h3 { font-size: 17px; }
.steps p { color: var(--text-muted); font-size: 15px; margin: 0; }

.cta-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 38px;
	text-align: center;
	box-shadow: 0 12px 36px rgba(16, 24, 32, 0.06);
}
.cta-card h3 { font-size: 22px; }
.cta-card > p { color: var(--text-muted); max-width: 42em; margin: 0 auto 22px; }
.cta-note { font-size: 14px; margin: 22px 0 0; }

/* --- footer --- */

.site-footer { background: #fff; border-top: 1px solid var(--border); padding: 48px 0 24px; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-brand p { color: var(--text-muted); font-size: 15px; max-width: 34em; margin: 12px 0 0; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 15px; }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 36px;
	padding-top: 20px;
	border-top: 1px solid var(--border);
	font-size: 13px;
	color: var(--text-muted);
}

@media (max-width: 900px) {
	.hero-inner { grid-template-columns: 1fr; gap: 40px; }
	.hero h1 { font-size: 36px; }
	.grid, .steps { grid-template-columns: 1fr; }
	.section { padding: 60px 0; }
	.hero { padding: 56px 0 48px; }
	.site-nav { gap: 14px; }
	.site-nav a:not(.btn) { display: none; }
}
