* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', system-ui, sans-serif;
}

body {
	background: #0f172a;
	color: #f8fafc;
	line-height: 1.6;
}

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

header {
	background: #1e293b;
	padding: 1rem 0;
	border-bottom: 1px solid #334155;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: #f97316;
	text-decoration: none;
}

.nav-links {
	display: flex;
	gap: 2rem;
	list-style: none;
}

.nav-links a {
	color: #cbd5e1;
	text-decoration: none;
	transition: color 0.3s;
}

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

.btn {
	display: inline-block;
	background: #f97316;
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: background 0.3s;
}

.btn:hover {
	background: #ea580c;
}

.hero {
	padding: 4rem 0;
	text-align: center;
	background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
	color: #f8fafc;
}

.hero p {
	font-size: 1.2rem;
	color: #94a3b8;
	max-width: 600px;
	margin: 0 auto 2rem;
}

.models {
	padding: 4rem 0;
	background: #1e293b;
}

.section-title {
	text-align: center;
	margin-bottom: 3rem;
}

.section-title h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #f8fafc;
}

.section-title p {
	color: #94a3b8;
	font-size: 1.1rem;
}

.models-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.model-card {
	background: #334155;
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
	transition: transform 0.3s;
}

.model-card:hover {
	transform: translateY(-5px);
}

.model-icon {
	width: 60px;
	height: 60px;
	background: #f97316;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-size: 1.5rem;
	color: white;
}

.model-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #f8fafc;
}

.model-card p {
	color: #cbd5e1;
	margin-bottom: 1.5rem;
}

.cta {
	padding: 4rem 0;
	text-align: center;
	background: #0f172a;
}

.cta h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #f8fafc;
}

.cta p {
	color: #94a3b8;
	font-size: 1.1rem;
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

footer {
	background: #1e293b;
	padding: 3rem 0 1rem;
	border-top: 1px solid #334155;
}

.footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 2rem;
}

.footer-column h3 {
	margin-bottom: 1rem;
	color: #f8fafc;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.5rem;
}

.footer-links a {
	color: #94a3b8;
	text-decoration: none;
	transition: color 0.3s;
}

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

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid #334155;
	color: #64748b;
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
	}
	
	.hero h1 {
		font-size: 2rem;
	}
	
	.footer-content {
		grid-template-columns: 1fr;
	}
}