* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
	background: #000;
	color: #f5f5f7;
	overflow-x: hidden;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 60px;
	position: fixed;
	width: 100%;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(20px);
	z-index: 1000;
}

nav h2 {
	font-weight: 600;
	font-size: 18px;
}

nav ul {
	list-style: none;
	display: flex;
	gap: 30px;
}

nav a {
	text-decoration: none;
	color: #f5f5f7;
	font-size: 14px;
	opacity: 0.7;
	transition: 0.3s;
}

nav a:hover {
	opacity: 1;
}

.menu-link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.hero {
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 20px;
}

.hero h1 {
	font-size: 72px;
	font-weight: 600;
	letter-spacing: -2px;
	background: linear-gradient(90deg, #fff, #888);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero p {
	margin-top: 20px;
	font-size: 24px;
	color: #a1a1a6;
	max-width: 700px;
}

.hero button {
	margin-top: 35px;
	padding: 12px 28px;
	border-radius: 30px;
	border: 1px solid #444;
	background: #111;
	color: #fff;
	font-size: 15px;
	cursor: pointer;
	transition: 0.4s;
}

.hero button:hover {
	background: #fff;
	color: #000;
}

section {
	padding: 140px 20px;
	text-align: center;
	max-width: 1100px;
	margin: auto;
}

.section-title {
	font-size: 56px;
	font-weight: 600;
	margin-bottom: 20px;
}

.section-sub {
	font-size: 22px;
	color: #a1a1a6;
	max-width: 700px;
	margin: 0 auto 80px;
}

.feature {
	margin-bottom: 120px;
}

.feature h3 {
	font-size: 38px;
	font-weight: 600;
}

.feature p {
	font-size: 20px;
	color: #a1a1a6;
	margin-top: 15px;
}

.languages {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 40px;
	max-width: 1000px;
	margin: auto;
}

.lang-card {
	padding: 50px 25px;
	border-radius: 24px;
	background: linear-gradient(145deg, #0a0a0a, #111);
	border: 1px solid #1c1c1e;
	transition: 0.4s;
	cursor: pointer;
}

.lang-card:hover {
	transform: translateY(-10px);
	border-color: #333;
	background: #141414;
}

.lang-card h4 {
	font-size: 24px;
	margin-bottom: 12px;
}

.lang-card p {
	font-size: 15px;
	color: #8e8e93;
}

.grid-menu {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	margin-top: 60px;
}

.menu-card {
	padding: 40px 20px;
	border-radius: 20px;
	background: #111;
	border: 1px solid #1c1c1e;
	transition: 0.3s;
	cursor: pointer;
}

.menu-card:hover {
	background: #151515;
	transform: translateY(-8px);
}

.menu-card h4 {
	font-size: 22px;
	margin-bottom: 8px;
}

.menu-card p {
	font-size: 14px;
	color: #8e8e93;
}

footer {
	padding: 80px 20px;
	text-align: center;
	color: #6e6e73;
	font-size: 14px;
	border-top: 1px solid #1c1c1e;
}

.fade {
	opacity: 0;
	transform: translateY(60px);
	transition: 1.2s ease;
}

.fade.show {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width:768px) {

	nav {
		padding: 20px;
	}

	.hero h1 {
		font-size: 48px;
	}

	.section-title {
		font-size: 38px;
	}

}
