@media only screen and (max-width: 900px) {
	.hero {
		grid-template-columns: 1fr;
	}

	.products {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media only screen and (max-width: 750px) {
	nav {
		display: none;
	}
}

@media only screen and (max-width: 600px) {
	.language-switch {
		flex-direction: column;
		gap: 0;
	}
	.language-switch span {
		transform: rotate(90deg);
		margin: -5px;
	}
	
	.hero {
		padding-top: 50px;
	}

	.hero-card {
		min-height: 260px;
	}

	.hero-icon {
		font-size: 6rem;
	}

	.products {
		grid-template-columns: 1fr;
	}

	.trust-grid {
		grid-template-columns: 1fr;
	}

	.footer-inner {
		flex-direction: column;
	}

	.footer-links {
		flex-direction: column;
		gap: 10px;
	}
}