/* RESET / BASE */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: #0f172a;
	background: radial-gradient(circle at top left, #e5f1ff 0, #f9fafb 38%, #f3f4f6 100%);
	line-height: 1.6;
}

/* LOGO */
.logo-responsive {
	max-width: 240px;
	width: 100%;
	height: auto;
}

/* Na telefonach logo trochę mniejsze */
@media (max-width: 576px) {
	.logo-responsive {
		max-width: 180px;
		margin: 0 auto;
		display: block;
	}
}

/* LINKS & CONTAINER */
a {
	color: inherit;
	text-decoration: none;
}

.container {
	width: 90%;
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 16px;
}

/* HEADER */
.block-header {
	padding: 20px 0 12px;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* (opcjonalne, jakbyś kiedyś dodał napis w headerze) */
.brand {
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: #0f172a;
}

.status-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.06);
	color: #0f172a;
	font-size: 0.8rem;
}

.status-dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: #f97316;
}

/* MAIN LAYOUT */
.block-main {
	min-height: calc(100vh - 120px);
	display: flex;
	flex-direction: column;
}

/* HERO SECTION */
.block-hero {
	padding: 40px 0 32px;
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
	gap: 48px;
	align-items: center;
}

.hero-content {
	max-width: 580px;
}

.hero-eyebrow {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: #2563eb;
	margin-bottom: 16px;
}

.hero-content h1 {
	font-size: 2.9rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #0f172a;
	margin-bottom: 16px;
}

.hero-lead {
	font-size: 1.05rem;
	color: #1f2933;
	margin-bottom: 20px;
}

.hero-list {
	list-style: none;
	margin-bottom: 26px;
	font-size: 0.98rem;
	color: #334155;
}

.hero-list li {
	position: relative;
	padding-left: 18px;
	margin-bottom: 4px;
}

.hero-list li::before {
	content: "•";
	position: absolute;
	left: 0;
	top: 0;
	color: #2563eb;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

/* SIDE CARD */
.hero-side {
	display: flex;
	justify-content: flex-end;
}

.lock-card {
	background: rgba(255, 255, 255, 0.96);
	border-radius: 24px;
	padding: 24px 24px 20px;
	box-shadow: 0 18px 50px rgba(15, 23, 42, 0.18);
	max-width: 360px;
	border: 1px solid rgba(37, 99, 235, 0.08);
}

.lock-icon {
	width: 52px;
	height: 52px;
	border-radius: 18px;
	background: linear-gradient(145deg, #2563eb, #1d4ed8);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.lock-icon i {
	font-size: 26px;
	color: #f9fafb;
}

.lock-card h2 {
	font-size: 1.15rem;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 8px;
}

.lock-card p {
	font-size: 0.95rem;
	color: #4b5563;
	margin-bottom: 16px;
}

/* (opcjonalne) */
.info-list {
	border-radius: 14px;
	border: 1px dashed rgba(148, 163, 184, 0.9);
	padding: 10px 12px;
	margin-bottom: 10px;
}

.info-item {
	display: flex;
	justify-content: space-between;
	font-size: 0.85rem;
	color: #475569;
}

.info-label {
	opacity: 0.75;
}

.info-value {
	font-weight: 600;
	color: #0f172a;
}

.lock-note {
	font-size: 0.85rem;
	color: #64748b;
}

/* CONTACT STRIP – ZADZWOŃ DO NAS */
.block-contact {
	padding: 32px 0 48px;
}

.contact-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-radius: 20px;
	background: linear-gradient(90deg, #2563eb, #1d4ed8);
	color: #eff6ff;
	padding: 20px 24px;
	box-shadow: 0 16px 45px rgba(37, 99, 235, 0.35);
}

.contact-text h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 6px;
}

.contact-text p {
	font-size: 0.95rem;
	opacity: 0.9;
	max-width: 520px;
}

.contact-actions {
	flex-shrink: 0;
}

/* BUTTONS */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 9px 20px;
	border-radius: 999px;
	font-size: 0.95rem;
	font-weight: 500;
	border: 1px solid transparent;
	cursor: pointer;
	transition:
		background 0.18s ease,
		color 0.18s ease,
		border-color 0.18s ease,
		transform 0.08s ease,
		box-shadow 0.12s ease;
}

.btn i.me-2 {
	margin-right: 6px;
}

.btn:hover {
	transform: translateY(-1px);
}

/* Domyślne przyciski */
.btn-primary {
	background: #2563eb;
	color: #ffffff;
	box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
	border-color: #1d4ed8;
}

.btn-primary:hover {
	background: #1d4ed8;
}

.btn-outline {
	background: #ffffff;
	color: #1d4ed8;
	border-color: #bfdbfe;
	box-shadow: 0 8px 22px rgba(148, 163, 184, 0.35);
}

.btn-outline:hover {
	background: #eff6ff;
}

/* W sekcji kontakt – duży kontrast przycisku na tle gradientu */
.block-contact .btn-primary {
	background: #ffffff;
	color: #1d4ed8;
	border-color: #bfdbfe;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.3);
}

.block-contact .btn-primary:hover {
	background: #eff6ff;
}

/* FOOTER */
.block-footer {
	border-top: 1px solid #e5e7eb;
	padding: 16px 0 22px;
	background: rgba(248, 250, 252, 0.92);
}

.block-footer p {
	font-size: 0.85rem;
	color: #94a3b8;
	text-align: center;
}

/* RESPONSIVE */
@media (max-width: 992px) {
	.hero-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.hero-side {
		justify-content: flex-start;
		margin-top: 24px;
	}

	.lock-card {
		max-width: 100%;
	}
}

@media (max-width: 640px) {
	.block-hero {
		padding: 32px 0 24px;
	}

	.hero-content h1 {
		font-size: 2.4rem;
	}

	.hero-lead {
		font-size: 0.95rem;
	}

	.hero-actions {
		flex-direction: column;
		align-items: stretch;
	}

	/* ZADZWOŃ DO NAS – MOBILE */
	.contact-inner {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
		padding: 18px 16px;
		gap: 14px;
	}

	.contact-text h3 {
		font-size: 1.15rem;
	}

	.contact-text p {
		font-size: 0.9rem;
		max-width: 100%;
	}

	.contact-actions {
		width: 100%;
	}

	.contact-actions .btn {
		width: 100%;
		justify-content: center;
	}
}
