:root {
	--c-acc: #0d6e57;
	--c-acc-dark: #084d3d;
	--c-dark: #0a1a20;
	--c-bg: #ffffff;
	--c-bg-soft: #f0f4f3;
	--c-border: #d4dde0;
	--c-text: #0a1a20;
	--c-muted: rgba(0,0,0,.55);
	--rhythm: 80px;
	--radius: 8px;
	--shadow: 0 2px 12px rgba(0,0,0,.06);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	font-family: 'Outfit', system-ui, -apple-system, sans-serif;
	color: var(--c-text);
	background: var(--c-bg);
	line-height: 1.6;
}

a {
	color: var(--c-acc);
	text-decoration: none;
	transition: opacity 0.2s;
}

a:hover {
	text-decoration: underline;
}

.wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.sec {
	padding: var(--rhythm) 0;
}

h1, h2, h3, h4 {
	font-weight: 700;
}

h1 {
	font-size: 48px;
	line-height: 1.2;
	margin-bottom: 20px;
}

h2 {
	font-size: 32px;
	margin-bottom: 30px;
	margin-top: 0;
}

h3 {
	font-size: 18px;
	margin-bottom: 12px;
}

p {
	margin-bottom: 16px;
}

.lead {
	font-size: 18px;
	color: var(--c-muted);
	max-width: 700px;
	margin: 0 auto 40px;
}

header.hd {
	background: var(--c-bg);
	border-bottom: 1px solid var(--c-border);
	padding: 20px 0;
	position: sticky;
	top: 0;
	z-index: 100;
}

.hd-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.hd-logo {
	font-size: 24px;
	font-weight: 700;
	color: var(--c-text);
}

.hd-nav {
	display: flex;
	gap: 30px;
}

.hd-link {
	color: var(--c-text);
	font-weight: 500;
}

.hd-link:hover {
	color: var(--c-acc);
}

.hero {
	text-align: center;
	padding: 160px 0;
}

.chips {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.hero-chip {
	background: var(--c-bg-soft);
	padding: 8px 16px;
	border-radius: 24px;
	font-size: 14px;
	color: var(--c-text);
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.hero-chip i {
	color: var(--c-acc);
}

.comparison {
	overflow-x: auto;
}

table.cmp {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid var(--c-border);
	margin-top: 0;
}

table.cmp th,
table.cmp td {
	padding: 16px;
	text-align: left;
	border-bottom: 1px solid var(--c-border);
}

table.cmp th {
	background: var(--c-bg-soft);
	font-weight: 600;
	font-size: 14px;
}

table.cmp tr:last-child td {
	border-bottom: none;
}

.cmp-name {
	font-weight: 600;
	white-space: nowrap;
}

.cmp-name a {
	color: var(--c-acc);
}

.cmp-badge {
	background: var(--c-acc);
	color: white;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 700;
	margin-left: 8px;
	white-space: nowrap;
}

.rating {
	color: var(--c-acc);
	font-size: 14px;
	font-weight: 600;
}

.action {
	white-space: nowrap;
}

.btn {
	display: inline-block;
	padding: 10px 24px;
	border-radius: var(--radius);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	border: 1px solid var(--c-acc);
	transition: all 0.2s;
}

.btn-acc {
	background: var(--c-acc);
	color: white;
}

.btn-acc:hover {
	background: var(--c-acc-dark);
	text-decoration: none;
}

.btn-outline {
	background: transparent;
	color: var(--c-acc);
	border: 1px solid var(--c-acc);
}

.btn-outline:hover {
	background: var(--c-bg-soft);
	text-decoration: none;
}

.faq {
	margin-top: var(--rhythm);
}

.faq-item {
	background: var(--c-bg-soft);
	padding: 20px;
	margin-bottom: 16px;
	border-radius: var(--radius);
	cursor: pointer;
	border: 1px solid var(--c-border);
}

.faq-item.active .faq-a {
	display: block;
}

.faq-q {
	font-weight: 600;
	display: flex;
	justify-content: space-between;
	align-items: center;
	user-select: none;
}

.faq-a {
	display: none;
	margin-top: 16px;
	color: var(--c-muted);
	line-height: 1.8;
}

footer.ft {
	background: var(--c-dark);
	color: white;
	padding: var(--rhythm) 0;
	margin-top: 160px;
	border-top: 1px solid rgba(255,255,255,.1);
}

.ft-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.ft-grid h3 {
	margin-bottom: 16px;
	color: white;
}

.ft-grid ul {
	list-style: none;
}

.ft-grid li {
	margin-bottom: 8px;
}

.ft-grid a {
	color: rgba(255,255,255,.8);
}

.ft-grid a:hover {
	color: white;
}

.ft-bottom {
	border-top: 1px solid rgba(255,255,255,.1);
	padding-top: 20px;
	text-align: center;
	color: rgba(255,255,255,.6);
	font-size: 12px;
	line-height: 1.6;
}

@media (max-width: 768px) {
	h1 {
		font-size: 32px;
	}

	.hero {
		padding: 80px 0;
	}

	.hd-nav {
		gap: 15px;
		font-size: 14px;
	}

	.chips {
		flex-direction: column;
		align-items: center;
	}

	table.cmp {
		font-size: 14px;
	}

	table.cmp th,
	table.cmp td {
		padding: 12px 8px;
	}

	.btn {
		padding: 8px 16px;
		font-size: 12px;
	}
}
