* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif
}
body {
	background: #0b0b0b;
	color: #eee
}
.container {
	max-width: 1100px;
	margin: auto;
	padding: 20px
}
.header {
	position: sticky;
	top: 0;
	background: rgba(0,0,0,0.7);
	backdrop-filter: blur(10px);
	z-index: 100;
}
.header .container {
	display: flex;
	justify-content: space-between;
	align-items: center
}
.logo {
	font-weight: bold;
	letter-spacing: 2px
}
.btn {
	color: #fff;
	text-decoration: none;
	border: 1px solid #444;
	padding: 10px 16px;
	border-radius: 8px;
}
.btn.primary {
	background: #007aff;
	border: none
}
/* HERO */
.hero {
	position: relative;
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url('https://images.unsplash.com/photo-1618312980096-873bd19759a0?q=80&w=1600') center/cover no-repeat;
}
.overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom,rgba(0,0,0,0.6), rgba(0,0,0,0.9))
}
.hero-content {
	position: relative;
	text-align: center;
	max-width: 700px
}
.hero h1 {
	font-size: 42px;
	margin-bottom: 15px
}
.hero p {
	color: #bbb;
	margin-bottom: 20px
}
/* FEATURES */
.features {
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
	gap: 15px;
	margin-top: 40px
}
/* CARDS */
.card {
	background: #111;
	padding: 20px;
	border-radius: 12px;
	text-align: center;
	border: 1px solid #222;
}
/* SECTIONS */
.services, .contact, .seo, .reviews, .map {
	margin-top: 60px
}
.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
	gap: 15px
}
/* FORM */
.contact form {
	display: flex;
	flex-direction: column;
	gap: 12px
}
input, button {
	padding: 14px;
	border-radius: 8px;
	border: none
}
input {
	background: #111;
	color: #fff;
	border: 1px solid #333
}
button {
	background: #007aff;
	color: #fff;
	font-weight: bold;
}
/* MAP */
iframe {
	width: 100%;
	height: 300px;
	border: 0;
	border-radius: 12px;
}
/* FLOAT */
.floating {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #007aff;
	color: #fff;
	padding: 16px;
	border-radius: 50%;
	text-decoration: none;
}
/* FOOTER */
.footer {
	text-align: center;
	padding: 30px;
	color: #666;
	margin-top: 40px
}
/* ANIMACJE */
.fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: 0.6s;
}
.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}
/* MOBILE */
@media(max-width:768px) {
.hero h1 {
	font-size: 28px
}
.hero {
	min-height: 70vh
}
}
