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

html {
	scroll-behavior: smooth;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: #212529;
	line-height: 1.6;
	background: #fff;
}

/* Layout */
.section-inner {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 24px;
}

.section-heading {
	font-size: 28px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 48px;
}

/* Navigation */
.nav {
	position: sticky;
	top: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid #e9ecef;
	z-index: 100;
}

.nav-inner {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 56px;
}

.nav-brand {
	font-size: 18px;
	font-weight: 700;
	color: #212529;
}

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

.nav-links a {
	text-decoration: none;
	font-size: 14px;
	color: #495057;
}

.nav-links a:hover {
	color: #212529;
}

.nav-cta {
	padding: 6px 16px;
	background: #212529;
	color: #fff !important;
	border-radius: 6px;
	font-weight: 600;
}

.nav-cta:hover {
	background: #343a40;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 12px 28px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.15s;
}

.btn-primary {
	background: #212529;
	color: #fff;
}

.btn-primary:hover {
	background: #343a40;
}

.btn-secondary {
	background: #f8f9fa;
	color: #495057;
	border: 1px solid #dee2e6;
}

.btn-secondary:hover {
	background: #e9ecef;
}

.btn-full {
	display: block;
	text-align: center;
}

/* Hero */
.hero {
	padding: 80px 0 64px;
	text-align: center;
}

.hero-inner {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 24px;
}

.hero-title {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 16px;
}

.hero-subtitle {
	font-size: 17px;
	color: #6c757d;
	max-width: 600px;
	margin: 0 auto 32px;
	line-height: 1.6;
}

.hero-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	margin-bottom: 48px;
}

.hero-image {
	max-width: 720px;
	margin: 0 auto;
}

.hero-placeholder {
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 12px;
	padding: 120px 40px;
	text-align: center;
}

.hero-placeholder-text {
	color: #adb5bd;
	font-size: 14px;
	font-style: italic;
}

/* Features */
.features {
	padding: 80px 0;
	background: #f8f9fa;
}

.feature-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.feature-card {
	background: #fff;
	border: 1px solid #e9ecef;
	border-radius: 10px;
	padding: 28px;
}

.feature-icon {
	font-size: 28px;
	margin-bottom: 12px;
}

.feature-card h3 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
}

.feature-card p {
	font-size: 14px;
	color: #6c757d;
	line-height: 1.6;
}

/* How it works */
.how-it-works {
	padding: 80px 0;
}

.steps {
	display: flex;
	flex-direction: column;
	gap: 32px;
	max-width: 560px;
	margin: 0 auto;
}

.step {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.step-number {
	width: 36px;
	height: 36px;
	min-width: 36px;
	background: #212529;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 700;
}

.step-content h3 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 4px;
}

.step-content p {
	font-size: 14px;
	color: #6c757d;
}

/* Pricing */
.pricing {
	padding: 80px 0;
	background: #f8f9fa;
}

.pricing-card {
	max-width: 400px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid #e9ecef;
	border-radius: 12px;
	padding: 40px 32px;
	text-align: center;
}

.pricing-amount {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 8px;
}

.pricing-period {
	font-size: 18px;
	font-weight: 400;
	color: #6c757d;
}

.pricing-desc {
	font-size: 14px;
	color: #6c757d;
	margin-bottom: 24px;
}

.pricing-features {
	list-style: none;
	text-align: left;
	margin-bottom: 28px;
}

.pricing-features li {
	padding: 6px 0;
	font-size: 14px;
	color: #495057;
	border-bottom: 1px solid #f0f0f0;
}

.pricing-features li::before {
	content: "\2713  ";
	color: #198754;
	font-weight: 700;
}

.pricing-note {
	font-size: 12px;
	color: #adb5bd;
	margin-top: 12px;
}

/* FAQ */
.faq {
	padding: 80px 0;
}

.faq-list {
	max-width: 600px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.faq-item {
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	padding: 0;
}

.faq-item summary {
	padding: 14px 16px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::before {
	content: "+  ";
	font-weight: 400;
	color: #6c757d;
}

.faq-item[open] summary::before {
	content: "\2212  ";
}

.faq-item p {
	padding: 0 16px 14px;
	font-size: 14px;
	color: #6c757d;
	line-height: 1.6;
}

/* Footer */
.footer {
	padding: 32px 0;
	border-top: 1px solid #e9ecef;
}

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

.footer-brand {
	font-size: 15px;
	font-weight: 700;
	color: #adb5bd;
}

.footer-links {
	display: flex;
	gap: 20px;
}

.footer-links a {
	text-decoration: none;
	font-size: 13px;
	color: #adb5bd;
}

.footer-links a:hover {
	color: #6c757d;
}

/* Responsive */
@media (max-width: 640px) {
	.hero-title {
		font-size: 28px;
	}

	.hero-title br {
		display: none;
	}

	.hero-subtitle {
		font-size: 15px;
	}

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

	.feature-grid {
		grid-template-columns: 1fr;
	}

	.nav-links a:not(.nav-cta) {
		display: none;
	}
}
