:root {
	--bg: #0b0d12;
	--bg2: #121520;
	--card: #161a27;
	--acc: #6ee7b7;
	--acc2: #60a5fa;
	--muted: #8b95a7;
	--txt: #e5e7eb;
	--shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Inter, Arial,
		sans-serif;
	color: var(--txt);
	background: linear-gradient(180deg, var(--bg), var(--bg2));
	overflow-x: hidden;
}
a {
	color: inherit;
	text-decoration: none;
}
:focus-visible {
	outline: 2px solid var(--acc);
	outline-offset: 2px;
}
a:focus-visible {
	border-radius: 4px;
}
.container {
	width: min(1100px, 92%);
	margin: 0 auto;
}

/* Gradient text */
.gradient-text {
	background: linear-gradient(135deg, var(--acc), var(--acc2));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ============================================
   PASEK POSTEPU
   ============================================ */
#progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--acc), var(--acc2));
	width: 0;
	z-index: 50;
	box-shadow: 0 0 12px rgba(96, 165, 250, 0.6);
}

/* ============================================
   HEADER I NAWIGACJA
   ============================================ */
header {
	position: sticky;
	top: 0;
	background: rgba(11, 13, 18, 0.75);
	backdrop-filter: saturate(140%) blur(8px);
	border-bottom: 1px solid #1f2433;
	z-index: 20;
	transition: background 0.4s ease, border-color 0.4s ease;
}
header.scrolled {
	background: rgba(11, 13, 18, 0.9);
	border-bottom-color: #2a3347;
}
.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 0;
	position: relative;
}
.brand {
	display: flex;
	gap: 10px;
	align-items: center;
	font-weight: 700;
}
.brand .logo {
	width: 52px;
	height: 52px;
	border-radius: 10px;
	background: transparent;
	display: grid;
	place-items: center;
	transform: translateZ(0);
	transition: transform 0.4s ease;
	overflow: visible;
	padding: 2px;
}
.brand:hover .logo {
	transform: rotate(5deg) scale(1.05);
}
.brand .logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	border-radius: 8px;
}
.brand-subtitle {
	opacity: 0.7;
}
.menu-center a {
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 0.2px;
	transition: color 0.3s ease, transform 0.3s ease;
	position: relative;
	padding: 4px 0;
}
.menu-center a:hover,
.menu-center a.active {
	color: var(--acc);
}
.menu-center a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--acc), var(--acc2));
	transition: width 0.3s ease;
}
.menu-center a:hover::after,
.menu-center a.active::after {
	width: 100%;
}
.menu-center {
	display: flex;
	gap: 20px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.menu-right {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-left: auto;
}

/* Hamburger */
.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: 1px solid #2a3347;
	border-radius: 8px;
	cursor: pointer;
	padding: 8px;
	z-index: 25;
	transition: border-color 0.3s ease;
}
.hamburger:hover {
	border-color: var(--acc);
}
.hamburger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--txt);
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease;
	transform-origin: center;
}
.hamburger.active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
	opacity: 0;
}
.hamburger.active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
	display: inline-grid;
	place-items: center;
	padding: 12px 18px;
	border-radius: 12px;
	font-weight: 600;
	border: 1px solid #243047;
	background: #0f1320;
	position: relative;
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.3s ease;
}
.btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
	border-color: #3a4a6a;
}
.btn:focus-visible {
	outline-offset: 3px;
}
.btn.primary {
	background: linear-gradient(135deg, var(--acc), var(--acc2));
	color: #0b0d12;
	border: 0;
	font-size: 15px;
}
.btn.primary::after {
	content: '';
	position: absolute;
	inset: -100% -50% auto -50%;
	height: 200%;
	transform: rotate(20deg);
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0),
		rgba(255, 255, 255, 0.35),
		rgba(255, 255, 255, 0)
	);
	animation: sheen 4s linear infinite;
	pointer-events: none;
}
@keyframes sheen {
	0% { transform: translateX(-120%) rotate(20deg); }
	100% { transform: translateX(220%) rotate(20deg); }
}

/* ============================================
   SEKCJA HERO
   ============================================ */
.bg-animated {
	position: relative;
	overflow: hidden;
	background: radial-gradient(
			1000px 500px at 10% 0%,
			rgba(96, 165, 250, 0.14),
			transparent 50%
		),
		radial-gradient(
			600px 600px at 90% 0%,
			rgba(110, 231, 183, 0.12),
			transparent 50%
		);
}
.bg-animated::before {
	content: '';
	position: absolute;
	inset: -20%;
	background: conic-gradient(
		from 0deg,
		rgba(96, 165, 250, 0.08),
		rgba(110, 231, 183, 0.08),
		rgba(96, 165, 250, 0.08)
	);
	filter: blur(30px);
	animation: spin 40s linear infinite;
	z-index: -1;
}
@keyframes spin {
	to { transform: rotate(1turn); }
}

.hero {
	padding: 80px 0 50px;
}
.hero-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 32px;
	align-items: center;
}
.kicker {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 999px;
	background: #121827;
	border: 1px solid #263145;
	color: #9fb0c9;
	font-size: 13px;
	margin-bottom: 16px;
}
h1 {
	font-size: clamp(28px, 5vw, 46px);
	line-height: 1.1;
	margin: 0 0 16px;
	font-weight: 700;
}
p.lead {
	font-size: clamp(16px, 2vw, 19px);
	color: #c7d0e0;
	line-height: 1.6;
}
.badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 20px 0 0;
}
.hero-actions {
	margin-top: 20px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.badge {
	font-size: 12px;
	padding: 8px 12px;
	border: 1px dashed #2b3650;
	border-radius: 10px;
	background: #0e1422;
	transition: transform 0.2s ease, border-color 0.3s ease;
}
.badge:hover {
	transform: translateY(-2px);
	border-color: rgba(110, 231, 183, 0.3);
}
.mock {
	aspect-ratio: 4/3;
	border-radius: 18px;
	background: linear-gradient(135deg, #1a2133, #0f1320);
	border: 1px solid #262f45;
	position: relative;
	box-shadow: var(--shadow);
	overflow: hidden;
}
.mock img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 18px;
	display: block;
}

/* ============================================
   TYPOGRAFIA I SEKCJE
   ============================================ */
section {
	padding: 70px 0;
	scroll-margin-top: 80px;
}
h2 {
	font-size: clamp(28px, 4vw, 40px);
	margin: 0 0 12px;
}
h3 {
	margin: 0 0 8px;
}
.muted {
	color: var(--muted);
}

/* ============================================
   KARTY
   ============================================ */
.cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}
.cards.cards-4 {
	grid-template-columns: repeat(4, 1fr);
}
.card-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(110, 231, 183, 0.1), rgba(96, 165, 250, 0.1));
	border: 1px solid rgba(110, 231, 183, 0.15);
	display: grid;
	place-items: center;
	margin-bottom: 14px;
	color: var(--acc);
	transition: transform 0.3s ease, border-color 0.3s ease;
}
.card-icon svg {
	width: 22px;
	height: 22px;
}
.card {
	background: var(--card);
	border: 1px solid #22293a;
	border-radius: 16px;
	padding: 24px;
	box-shadow: var(--shadow);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(110, 231, 183, 0.06);
	border-color: rgba(110, 231, 183, 0.2);
}
.card:hover .card-icon {
	transform: scale(1.1);
	border-color: var(--acc);
}

/* ============================================
   PROCES
   ============================================ */
.process {
	display: flex;
	align-items: stretch;
	gap: 0;
}
.step {
	background: var(--card);
	border: 1px solid #22293a;
	border-radius: 16px;
	padding: 22px 18px;
	position: relative;
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
	flex: 1;
}
.step::before {
	content: attr(data-num);
	position: absolute;
	top: -12px;
	left: -12px;
	background: linear-gradient(135deg, var(--acc), var(--acc2));
	color: #0b0d12;
	font-weight: 800;
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	border-radius: 10px;
	box-shadow: var(--shadow);
}
.step:hover {
	transform: translateY(-4px);
	border-color: rgba(110, 231, 183, 0.2);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35), 0 0 24px rgba(110, 231, 183, 0.06);
}
.step-arrow {
	display: grid;
	place-items: center;
	width: 40px;
	flex-shrink: 0;
	color: var(--acc);
	opacity: 0.4;
}
.step-arrow svg {
	width: 20px;
	height: 20px;
}

/* ============================================
   OPINIE
   ============================================ */
.testimonials {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}
.testimonial {
	background: var(--card);
	border: 1px solid #22293a;
	border-radius: 16px;
	padding: 28px;
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
	position: relative;
}
.testimonial::before {
	content: '\201C';
	position: absolute;
	top: 12px;
	right: 20px;
	font-size: 64px;
	line-height: 1;
	font-family: Georgia, serif;
	background: linear-gradient(135deg, var(--acc), var(--acc2));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	opacity: 0.15;
	pointer-events: none;
}
.testimonial:hover {
	transform: translateY(-6px);
	border-color: rgba(110, 231, 183, 0.2);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(110, 231, 183, 0.06);
}
.testimonial-stars {
	color: #f59e0b;
	font-size: 16px;
	letter-spacing: 2px;
}
.testimonial blockquote {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: #c7d0e0;
}
.testimonial-author {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid #1f2a3d;
}
.testimonial-author strong {
	font-size: 15px;
}
.testimonial-author span {
	font-size: 13px;
	color: var(--muted);
}

/* ============================================
   FILTRY GALERII
   ============================================ */
.gallery-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 18px;
}
.filter-btn {
	padding: 7px 18px;
	border: 1px solid #22293a;
	border-radius: 20px;
	background: transparent;
	color: var(--muted);
	font-size: 13px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: inherit;
}
.filter-btn:hover {
	color: var(--txt);
	border-color: #3a4558;
}
.filter-btn.active {
	background: var(--card);
	color: var(--acc);
	border-color: var(--acc);
}

/* ============================================
   GALERIA I SLIDER
   ============================================ */
.gallery-slider {
	position: relative;
}
.gallery-wrapper {
	overflow: hidden;
	border-radius: 14px;
	position: relative;
	width: 100%;
}
.gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	transition: transform 0.4s ease;
	width: 100%;
}
.gallery-slider .gallery {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 0;
	width: auto;
}
.gallery-slider .gallery-page {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	flex-shrink: 0;
	width: 100%;
}
.slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(11, 13, 18, 0.9);
	border: 1px solid #2a3347;
	color: var(--txt);
	font-size: 28px;
	cursor: pointer;
	display: grid;
	place-items: center;
	z-index: 10;
	transition: all 0.3s ease;
	backdrop-filter: blur(8px);
}
.slider-btn:hover {
	background: rgba(11, 13, 18, 0.95);
	border-color: var(--acc);
	transform: translateY(-50%) scale(1.1);
}
.slider-btn:active {
	transform: translateY(-50%) scale(0.95);
}
.slider-btn-prev {
	left: -24px;
}
.slider-btn-next {
	right: -24px;
}
.slider-btn:disabled {
	opacity: 0.3;
	cursor: not-allowed;
	pointer-events: none;
}
.slider-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 20px;
}
.slider-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #2a3347;
	border: 1px solid #3a4558;
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
}
.slider-dot:hover {
	background: #3a4558;
	border-color: var(--acc);
	transform: scale(1.2);
}
.slider-dot.active {
	background: linear-gradient(135deg, var(--acc), var(--acc2));
	border-color: var(--acc);
	width: 24px;
	border-radius: 6px;
	box-shadow: 0 0 8px rgba(110, 231, 183, 0.5);
}
.tile {
	aspect-ratio: 1/1;
	border-radius: 14px;
	border: 1px solid #263145;
	background: linear-gradient(135deg, #101623, #171d2b);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease,
		border-color 0.4s ease;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.tile::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.3);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
	pointer-events: none;
}
.tile::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 2;
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 50%;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b0d12' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cpath d='m21 21-4.35-4.35'%3E%3C/path%3E%3C/svg%3E");
	background-size: 24px 24px;
	background-position: center;
	background-repeat: no-repeat;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.tile:hover,
.tile:focus-visible {
	transform: translateY(-8px) scale(1.05);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(110, 231, 183, 0.08);
	border-color: rgba(110, 231, 183, 0.2);
}
.tile:hover::before,
.tile:focus-visible::before {
	opacity: 1;
}
.tile:hover::after,
.tile:focus-visible::after {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

/* ============================================
   TABS
   ============================================ */
.tabs {
	display: flex;
	gap: 6px;
	margin-bottom: 18px;
}
.tab {
	padding: 10px 24px;
	border: 1px solid #22293a;
	border-radius: 10px;
	background: transparent;
	color: var(--muted);
	font-size: 15px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: inherit;
}
.tab:hover {
	color: var(--txt);
	border-color: #3a4558;
}
.tab.active {
	background: linear-gradient(135deg, var(--acc), var(--acc2));
	color: #0b0d12;
	border-color: transparent;
	font-weight: 600;
}
.tab-panel {
	display: none;
}
.tab-panel.active {
	display: block;
}

/* ============================================
   VIDEO GRID
   ============================================ */
.video-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.video-card {
	position: relative;
	border-radius: 14px;
	overflow: hidden;
	background: var(--card);
	border: 1px solid #22293a;
	aspect-ratio: 16/9;
	cursor: pointer;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease,
		border-color 0.4s ease;
}
.video-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
	border-color: var(--acc);
}
.video-card video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.video-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(1);
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(110, 231, 183, 0.9);
	border: none;
	color: #0b0d12;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 2;
	box-shadow: 0 4px 20px rgba(110, 231, 183, 0.4);
}
.video-play svg {
	width: 28px;
	height: 28px;
	margin-left: 3px;
}
.video-play:hover {
	transform: translate(-50%, -50%) scale(1.1);
	background: var(--acc);
	box-shadow: 0 4px 30px rgba(110, 231, 183, 0.6);
}
.video-card.playing .video-play {
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, -50%) scale(0.5);
}
.video-label {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 28px 16px 14px;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	z-index: 1;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

/* ============================================
   FAQ
   ============================================ */
.faq details {
	background: var(--card);
	border: 1px solid #22293a;
	border-radius: 14px;
	padding: 16px 18px;
	margin: 10px 0;
	cursor: pointer;
	transition: transform 0.2s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq details:hover {
	border-color: rgba(110, 231, 183, 0.15);
}
.faq details[open] {
	border-color: rgba(96, 165, 250, 0.2);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.faq details summary {
	font-weight: 600;
	font-size: 16px;
	user-select: none;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	cursor: pointer;
}
.faq details summary::-webkit-details-marker {
	display: none;
}
.faq details summary::marker {
	display: none;
}
.faq-icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 300;
	color: var(--acc);
	background: rgba(110, 231, 183, 0.1);
	border: 1px solid rgba(110, 231, 183, 0.3);
	border-radius: 8px;
	pointer-events: none;
	transition: color 0.3s ease, background 0.3s ease,
		border-color 0.3s ease, transform 0.3s ease;
}
.faq-icon::before {
	content: '+';
	font-size: 20px;
	display: block;
	margin-top: -1px;
}
.faq details[open] .faq-icon::before {
	content: '\00d7';
	font-size: 24px;
	margin-top: -2px;
}
.faq details[open] .faq-icon {
	color: var(--acc2);
	background: rgba(96, 165, 250, 0.1);
	border-color: rgba(96, 165, 250, 0.3);
}
.faq details:hover .faq-icon {
	transform: scale(1.1);
	background: rgba(110, 231, 183, 0.2);
	border-color: var(--acc);
}
.faq details[open]:hover .faq-icon {
	background: rgba(96, 165, 250, 0.2);
	border-color: var(--acc2);
}
.faq details p {
	cursor: default;
	margin: 14px 0 0 0;
	line-height: 1.6;
	color: #b0bdd0;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
	text-align: center;
}
.cta-content {
	max-width: 700px;
}
.cta-content h2 {
	font-size: clamp(24px, 4vw, 36px);
}
.cta-content .hero-actions {
	justify-content: center;
}

/* ============================================
   KONTAKT
   ============================================ */
.contact-card {
	max-width: 780px;
	margin: 0 auto;
	background: var(--card);
	border: 1px solid #22293a;
	border-radius: 16px;
	padding: 24px;
	transition: transform 0.25s ease;
}
.contact-card:hover {
	transform: translateY(-3px);
}
.contact-row {
	display: grid;
	gap: 10px;
	margin: 14px 0;
}
.contact-line {
	display: flex;
	align-items: center;
	gap: 10px;
}
.ico {
	width: 28px;
	height: 28px;
	display: inline-grid;
	place-items: center;
	border-radius: 8px;
	background: linear-gradient(135deg, rgba(110, 231, 183, 0.08), rgba(96, 165, 250, 0.08));
	border: 1px solid rgba(110, 231, 183, 0.12);
	flex-shrink: 0;
}
.ico svg {
	width: 14px;
	height: 14px;
	fill: var(--acc);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
	padding: 40px 0 0;
	border-top: 1px solid #1f2433;
	color: #92a0b8;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 32px;
	padding-bottom: 32px;
}
.footer-col strong {
	display: block;
	color: var(--txt);
	margin-bottom: 10px;
	font-size: 16px;
}
.footer-col p {
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}
.footer-nav {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.footer-nav a {
	font-size: 14px;
	transition: color 0.2s ease;
}
.footer-nav a:hover {
	color: var(--acc);
}
.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 14px;
}
.footer-contact a:hover {
	color: var(--acc);
}
.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	padding: 20px 0;
	border-top: 1px solid #1a1f2e;
	font-size: 13px;
}
.footer-bottom a:hover {
	color: var(--acc);
}

/* ============================================
   ANIMACJE
   ============================================ */
.reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.6s ease, transform 0.6s ease;
	will-change: transform, opacity;
}
.reveal.in {
	opacity: 1;
	transform: none;
}

/* Lightbox */
#lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 40;
	padding: 20px;
	backdrop-filter: blur(4px);
}
#lightbox.open {
	display: flex;
}
#lightbox .box {
	max-width: min(1000px, 92%);
	width: 100%;
	background: #101522;
	border: 1px solid #2b3650;
	border-radius: 16px;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
	position: relative;
}
#lightbox img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 16px;
}
#lightbox .close {
	position: absolute;
	top: -16px;
	right: -16px;
	width: 36px;
	height: 36px;
	border: 1px solid #2b3650;
	background: #0b0d12;
	color: #e5e7eb;
	font-size: 20px;
	cursor: pointer;
	line-height: 1;
	border-radius: 50%;
	display: grid;
	place-items: center;
	transition: border-color 0.3s ease, transform 0.2s ease;
}
#lightbox .close:hover {
	border-color: var(--acc);
	transform: scale(1.1);
}

/* Video Lightbox */
#videoLightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.9);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 50;
	padding: 20px;
	backdrop-filter: blur(6px);
}
#videoLightbox.open {
	display: flex;
}
.video-lightbox-box {
	max-width: min(1100px, 95%);
	width: 100%;
	position: relative;
}
.video-lightbox-box video {
	width: 100%;
	max-height: 85vh;
	border-radius: 14px;
	background: #000;
	display: block;
}
.video-lightbox-box .close {
	position: absolute;
	top: -16px;
	right: -16px;
	width: 36px;
	height: 36px;
	border: 1px solid #2b3650;
	background: #0b0d12;
	color: #e5e7eb;
	font-size: 20px;
	cursor: pointer;
	line-height: 1;
	border-radius: 50%;
	display: grid;
	place-items: center;
	transition: border-color 0.3s ease, transform 0.2s ease;
	z-index: 2;
}
.video-lightbox-box .close:hover {
	border-color: var(--acc);
	transform: scale(1.1);
}

/* ============================================
   RESPONSYWNOSC
   ============================================ */
@media (prefers-reduced-motion: reduce) {
	* {
		animation: none !important;
		transition: none !important;
	}
	.reveal {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 900px) {
	.hero-grid {
		grid-template-columns: 1fr;
	}
	.cards {
		grid-template-columns: 1fr 1fr;
	}
	.cards.cards-4 {
		grid-template-columns: 1fr 1fr;
	}
	.process {
		flex-wrap: wrap;
	}
	.step {
		flex: 1 1 calc(50% - 20px);
		min-width: 200px;
	}
	.step-arrow {
		display: none;
	}
	.testimonials {
		grid-template-columns: 1fr;
	}
	.video-grid {
		grid-template-columns: 1fr 1fr;
	}
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 600px) {
	.hamburger {
		display: flex;
	}
	.menu-center {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: #0b0d12;
		border-bottom: 1px solid #1f2433;
		z-index: 22;
		transform: none;
		padding: 8px 0;
	}
	.menu-center.open {
		display: flex;
	}
	.menu-center a {
		font-size: 16px;
		padding: 12px 24px;
	}
	.menu-center a:hover {
		background: #121520;
	}
	.menu-right {
		display: none;
	}
	.hero {
		padding: 50px 0 30px;
	}
	.cards {
		grid-template-columns: 1fr;
	}
	.cards.cards-4 {
		grid-template-columns: 1fr 1fr;
	}
	.process {
		flex-direction: column;
	}
	.step {
		flex: 1 1 100%;
	}
	.gallery-slider .gallery-page {
		grid-template-columns: repeat(2, 1fr);
	}
	.slider-btn {
		width: 40px;
		height: 40px;
		font-size: 24px;
	}
	.slider-btn-prev {
		left: -10px;
	}
	.slider-btn-next {
		right: -10px;
	}
	.video-grid {
		grid-template-columns: 1fr;
	}
	.video-play {
		width: 52px;
		height: 52px;
	}
	.video-play svg {
		width: 22px;
		height: 22px;
	}
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	section {
		padding: 50px 0;
	}
}
