body {
	background: radial-gradient(circle, #16214c 60%, #243b6b 100%);
	color: #fff;
	font-family: 'Segoe UI', Arial, sans-serif;
	margin: 0;
	padding: 0;
}
.container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 32px;
}
.header-logo {
	text-align: center;
	margin-top: 32px;
	width: 36px;
	height: 36px;
}
.logo-badge{
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: linear-gradient(135deg,var(--accent-start),var(--accent-end));
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 6px 0 10px;
	box-shadow: 0 8px 30px rgba(255,122,0,0.12);
	border: 4px solid rgba(255,255,255,0.06);
}



.header-logo img {
	width: 60px;
	margin-bottom: 16px;
}
.title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #ff9100;
	text-align: center;
	margin-bottom: 10px;
}
.subtitle {
	text-align: center;
	color: #bfc8da;
	font-size: 1.15rem;
	margin-bottom: 16px;
}
.description {
	text-align: center;
	margin-bottom: 36px;
	font-size: 1rem;
	color: #e1e8f7;
}
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 18px;
	margin-bottom: 32px;
}
.service-card {
	background: #22315e;
	padding: 22px 0;
	border-radius: 12px;
	text-align: center;
	transition: background 0.2s;
	font-size: 1rem;
}
.service-card:hover {
	background: #ff9100;
	color: #22315e;
}
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px;
	margin-bottom: 28px;
}
.feature {
	background: #22315e;
	color: #aaf39d;
	border-radius: 10px;
	padding: 14px;
	text-align: center;
	font-size: 0.98rem;
}
.section-title {
	font-size: 1.35rem;
	font-weight: 600;
	text-align: center;
	margin-top: 32px;
	margin-bottom: 20px;
	color: #fff;
}
.audience-grid {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-bottom: 30px;
}
.audience-card {
	text-align: center;
	color: #add8e6;
	font-size: 1rem;
}
.platforms {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-bottom: 24px;
}
.platform {
	color: #ffde59;
	font-size: 1rem;
	text-align: center;
}
.launch-box {
	margin: 38px auto 0 auto;
	background: linear-gradient(90deg, #665393 60%, #1d2e45 100%);
	border-radius: 18px;
	padding: 32px 12px;
	max-width: 700px;
	text-align: center;
	color: #fff;
}
.launch-title {
	font-size: 1.3rem;
	font-weight: 700;
	color: #ff9100;
	margin-bottom: 10px;
}
.launch-text {
	margin-bottom: 18px;
}
.btn {
	display: inline-block;
	margin: 12px 8px;
	padding: 10px 28px;
	border-radius: 24px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	color: #fff;
	background: #ff9100;
	border: none;
	cursor: pointer;
	transition: background 0.2s;
}
.btn.partner {
	background: #1a223a;
	color: #fff;
}
.stars {
	display: flex;
	justify-content: center;
	margin-top: 24px;
	margin-bottom: 0;
}
.star {
	color: #ffde59;
	font-size: 1.2rem;
}
.trusted {
	text-align: center;
	color: #ffde59;
	margin-top: 10px;
	font-size: 1rem;
	margin-bottom: 0;
}