* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Inter, system-ui, sans-serif;
	background: #0b0d10;
	color: #e5e7eb;
}

a {
	text-decoration: none;
	color: inherit;
}

.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 96px 24px;
}

.narrow {
	max-width: 720px;
}

.center {
	text-align: center;
}

.hero {
	background: #0b0d10;
}

	.hero h1 {
		font-size: clamp(42px, 6vw, 72px);
		font-weight: 800;
	}

.hero-sub {
	color: #9ca3af;
	max-width: 700px;
	font-size: 20px;
}

.hero-actions {
	margin-top: 32px;
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.section {
	border-top: 1px solid #1f2933;
}

	.section.alt {
		background: #0f1217;
	}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-size: 12px;
	color: #6b7280;
}

.big-line {
	font-size: 28px;
	font-weight: 600;
}

.muted {
	color: #9ca3af;
}

.steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
	gap: 32px;
}

.step-num {
	width: 48px;
	height: 48px;
	background: #111827;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}

.pricing {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
	gap: 24px;
	margin-top: 48px;
}

.card {
	border: 1px solid #1f2933;
	padding: 32px;
	background: #0b0d10;
}

	.card.popular {
		border-color: #2563eb;
	}

.badge {
	color: #2563eb;
	font-size: 12px;
	margin-bottom: 8px;
}

.price {
	font-size: 36px;
	font-weight: 800;
}

.btn-primary {
	display: inline-block;
	background: #2563eb;
	padding: 14px 24px;
	font-weight: 600;
	margin-top: 16px;
}

.btn-secondary {
	border: 1px solid #e5e7eb;
	padding: 14px 24px;
}

.faq-item {
	border-bottom: 1px solid #1f2933;
}

.faq-q {
	background: none;
	border: none;
	color: #e5e7eb;
	width: 100%;
	text-align: left;
	padding: 24px 0;
	font-size: 18px;
	cursor: pointer;
}

.faq-a {
	max-height: 0;
	overflow: hidden;
	color: #9ca3af;
	transition: max-height 0.3s ease;
}

.faq-item.open .faq-a {
	max-height: 120px;
}

.final {
	background: #020617;
}

footer {
	border-top: 1px solid #1f2933;
}

.footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
