.landing-main {
	flex: 1;
	display: grid;
	place-items: center;
	padding: 24px;
}

.landing-shell {
	width: 100%;
	max-width: 780px;
	display: grid;
	justify-items: center;
	gap: 20px;
}

.flycons-logo {
	width: min(340px, 72vw);
	height: auto;
	display: block;
}

.landing-shell h1 {
	margin: 0;
	font-size: clamp(1.6rem, 3.4vw, 2.2rem);
	font-weight: 700;
}

.products-grid {
	width: 100%;
	display: grid;
}

.product-card {
	display: grid;
	grid-template-columns: 88px 1fr;
	align-items: center;
	gap: 14px;
	padding: 16px;
	border-radius: 14px;
	border: 1px solid #e2e8f0;
	background: #ffffff;
	text-decoration: none;
	color: inherit;
	transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}

.product-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
	border-color: #cbd5e1;
}

.product-logo {
	width: 76px;
	height: 76px;
	display: block;
	fill: currentColor;
}

.product-text h2 {
	margin: 0;
	font-size: 1.2rem;
}

.product-text p {
	margin: 6px 0 0;
	color: #475569;
	line-height: 1.4;
}

@media (max-width: 640px) {
	.product-card {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
	}
}
