* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background: #f8f9fa;
	color: #333;
	line-height: 1.6;
}

header {
	background: white;
	padding: 1rem 0;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	position: sticky;
	top: 0;
	z-index: 100;
}

.navbar {
	width: 100%;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-weight: 600;
	font-size: 1.5rem;
	color: #2563eb;
	white-space: nowrap;
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: #2563eb;
	padding: 0.5rem;
}

.nav-menu {
	list-style: none;
	display: flex;
	gap: 2rem;
	align-items: center;
}

.nav-menu a {
	text-decoration: none;
	color: #666;
	transition: color 0.3s;
	font-size: 0.95rem;
}

.nav-menu a:hover {
	color: #2563eb;
}

.hero {
	max-width: 1200px;
	margin: 0 auto;
	padding: 3rem 1rem;
	text-align: center;
}

h1 {
	font-size: clamp(1.75rem, 8vw, 3rem);
	margin-bottom: 1rem;
	color: #1f2937;
	line-height: 1.2;
}

.tagline {
	font-size: clamp(1rem, 3vw, 1.25rem);
	color: #666;
	margin-bottom: 2rem;
	line-height: 1.5;
}

.cta-button,
.secondary-button {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	text-decoration: none;
	border-radius: 0.5rem;
	transition: all 0.3s;
	font-size: 0.95rem;
	font-weight: 500;
	margin: 0.5rem;
	border: none;
	cursor: pointer;
}

.cta-button {
	background: #2563eb;
	color: white;
}

.cta-button:hover {
	background: #1d4ed8;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.secondary-button {
	background: white;
	color: #2563eb;
	border: 1px solid #2563eb;
}

.secondary-button:hover {
	background: #f0f7ff;
	transform: translateY(-2px);
}

.features {
	max-width: 1200px;
	margin: 2rem auto;
	padding: 2rem 1rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.feature-card {
	background: white;
	padding: 1.5rem;
	border-radius: 0.75rem;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	text-align: center;
	transition: all 0.3s;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.feature-card:hover {
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
	transform: translateY(-4px);
}

.feature-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.feature-card h3 {
	margin-bottom: 0.75rem;
	color: #1f2937;
	font-size: 1.1rem;
}

.feature-card p {
	color: #666;
	font-size: 0.95rem;
	line-height: 1.5;
}

footer {
	background: white;
	padding: 2rem 1rem;
	text-align: center;
	color: #666;
	border-top: 1px solid #e5e7eb;
	margin-top: 3rem;
	font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
	.menu-toggle {
		display: block;
	}

	.nav-menu {
		position: absolute;
		left: 0;
		top: 100%;
		width: 100%;
		background: white;
		flex-direction: column;
		gap: 0;
		padding: 1rem;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}

	.nav-menu.active {
		max-height: 300px;
		padding: 1rem;
	}

	.nav-menu li {
		width: 100%;
		padding: 0.75rem 0;
		border-bottom: 1px solid #f0f0f0;
	}

	.nav-menu li:last-child {
		border-bottom: none;
	}

	.nav-menu a {
		display: block;
		padding: 0.5rem 0;
	}

	.nav-container {
		position: relative;
		padding: 0.5rem 1rem;
	}

	.hero {
		padding: 2rem 1rem;
	}

	h1 {
		font-size: clamp(1.5rem, 6vw, 2.5rem);
		margin-bottom: 0.75rem;
	}

	.tagline {
		font-size: clamp(0.95rem, 2.5vw, 1.1rem);
		margin-bottom: 1.5rem;
	}

	.cta-button,
	.secondary-button {
		display: block;
		width: 100%;
		max-width: 300px;
		margin: 0.5rem auto;
		padding: 0.85rem 1.5rem;
		font-size: 1rem;
	}

	.features {
		grid-template-columns: 1fr;
		gap: 1rem;
		padding: 1.5rem 1rem;
		margin: 1.5rem auto;
	}

	.feature-card {
		padding: 1.25rem;
	}

	.feature-icon {
		font-size: 2rem;
		margin-bottom: 0.75rem;
	}

	.feature-card h3 {
		font-size: 1rem;
		margin-bottom: 0.5rem;
	}

	.feature-card p {
		font-size: 0.9rem;
	}

	footer {
		padding: 1.5rem 1rem;
		font-size: 0.85rem;
	}
}

@media (max-width: 480px) {
	.logo {
		font-size: 1.25rem;
	}

	h1 {
		font-size: clamp(1.25rem, 5vw, 2rem);
		margin-bottom: 0.5rem;
	}

	.tagline {
		font-size: clamp(0.9rem, 2vw, 1rem);
		margin-bottom: 1.25rem;
	}

	.cta-button,
	.secondary-button {
		padding: 0.75rem 1.25rem;
		font-size: 0.9rem;
		margin: 0.4rem auto;
	}

	.hero {
		padding: 1.5rem 0.75rem;
	}

	.features {
		padding: 1rem 0.75rem;
		gap: 0.75rem;
	}

	.feature-card {
		padding: 1rem;
	}

	.feature-icon {
		font-size: 1.75rem;
		margin-bottom: 0.5rem;
	}

	.feature-card h3 {
		font-size: 0.95rem;
	}

	.feature-card p {
		font-size: 0.85rem;
	}
}
