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

body {
	font-family: 'Poppins', sans-serif;
	background: #f8faf8;
	color: #222;
	line-height: 1.6;
}

header {
	background: #63D86A;
	padding: 80px 20px 120px;
	text-align: center;
	clip-path: ellipse(100% 100% at 50% 0%);
}

.logo {
	width: 220px;
	margin-bottom: 30px;
}

.hero h1 {
	font-size: 52px;
	font-weight: 700;
	color: white;
	margin-bottom: 10px;
}

.hero p {
	font-size: 20px;
	color: white;
	max-width: 700px;
	margin: auto;
	margin-bottom: 20px;
}

.store-button img {
	height: 220px;
	transition: .3s;
}

.store-button:hover img {
	transform: scale(1.05);
}

.features {
	padding: 90px 20px;
	max-width: 1200px;
	margin: auto;
}

.features h2 {
	text-align: center;
	font-size: 38px;
	margin-bottom: 60px;
}

.cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.card {
	background: white;
	padding: 40px;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 15px 30px rgba(0,0,0,.08);
	transition: .3s;
}

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

.icon {
	font-size: 52px;
	margin-bottom: 20px;
}

.card h3 {
	margin-bottom: 15px;
}

.about {
	padding: 90px 20px;
	text-align: center;
	max-width: 900px;
	margin: auto;
}

.about h2 {
	font-size: 40px;
	margin-bottom: 30px;
}

.about p {
	font-size: 18px;
	margin-bottom: 20px;
}

.cta h2 {
	font-size: 42px;
	margin-bottom: 20px;
}

.cta p {
	margin-bottom: 40px;
	font-size: 20px;
}

.store-footer {
	height: 65px;
}

footer {
	padding: 30px;
	text-align: center;
	background: #111;
	color: white;
}

@media (max-width: 768px) {
	.hero h1 {
		font-size: 38px;
	}

	.hero p {
		font-size: 18px;
	}

	.logo {
		width: 130px;
	}
}
