/* Reset & Zmienne */
:root {
	--primary-color: #0d6efd;
	--primary-hover: #0b5ed7;
	--secondary-color: #f8f9fa;
	--text-main: #334155;
	--text-muted: #64748b;
	--bg-light: #f4f7fb;
	--bg-dark: #f8fafc;
	--white: #ffffff;
	--border-radius: 12px;
	--shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.03);
	--shadow-md: 0 10px 20px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
	--glass-bg: rgba(255, 255, 255, 0.7);
	--glass-border: rgba(255, 255, 255, 1);
	--font-base: 'Inter', sans-serif;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-base);
	color: var(--text-main);
	line-height: 1.6;
	font-size: 16px;
	background-color: #f4f7fb; /* Light grayish blue background */
	-webkit-font-smoothing: antialiased;
	padding-bottom: 70px;
}
@media (min-width: 768px) {
	body {
		padding-bottom: 0;
	}
}

a {
	text-decoration: none;
	color: var(--primary-color);
	transition: color 0.3s;
}
a:hover {
	color: var(--primary-hover);
}
img {
	max-width: 100%;
	height: auto;
	display: block;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
.text-center {
	text-align: center;
}
.text-primary {
	color: var(--primary-color) !important;
}
.bg-light {
	background-color: transparent;
} /* Nie potrzebujemy bg-light bo całe tło jest jasne, ale dla sekcji możemy dać białe */
.mx-auto {
	margin-left: auto;
	margin-right: auto;
}
.max-w-800 {
	max-width: 800px;
}
.mt-4 {
	margin-top: 2rem;
}

/* Typografia */
h1,
h2,
h3,
h4 {
	color: #0f172a;
	line-height: 1.2;
	margin-bottom: 1rem;
	font-weight: 700;
}
.section-title {
	font-size: 2rem;
	margin-bottom: 1.5rem;
}
.section-desc {
	font-size: 1.125rem;
	color: var(--text-muted);
	margin-bottom: 3rem;
}
@media (min-width: 768px) {
	.section-title {
		font-size: 2.5rem;
	}
}

/* Globalne elementy sekcji: eyebrow i separator */
.section-eyebrow {
	color: var(--primary-color);
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	display: block;
	margin-bottom: 10px;
}
.section-separator {
	width: 40px;
	height: 3px;
	background: var(--primary-color);
	border-radius: 2px;
	margin-bottom: 20px;
}
.text-center .section-separator,
.section-separator.center {
	margin: 0 auto 20px;
}

/* Przyciski */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	font-weight: 600;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	border: 2px solid transparent;
	font-size: 1rem;
}
.btn-primary {
	background-color: var(--primary-color);
	color: var(--white);
	box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}
.btn-primary:hover {
	background-color: var(--primary-hover);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}
.btn-secondary {
	background-color: #28a745;
	color: var(--white);
	box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}
.btn-secondary:hover {
	background-color: #218838;
	color: var(--white);
}
.btn-outline {
	background: transparent;
	border-color: var(--primary-color);
	color: var(--primary-color);
}
.btn-outline:hover {
	background: var(--primary-color);
	color: var(--white);
}
.btn-lg {
	padding: 18px 36px;
	font-size: 1.125rem;
}
.btn-sm {
	padding: 10px 20px;
	font-size: 0.9rem;
}
.btn-block {
	width: 100%;
}

/* Header */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: transparent;
	border-bottom: 1px solid transparent;
	z-index: 1000;
	padding: 15px 0;
	box-shadow: none;
	transition: background 0.3s ease, box-shadow 0.3s ease, border-bottom 0.3s ease;
}

.site-header.is-scrolled {
	background: #335796;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow: 0 4px 20px rgba(51, 87, 150, 0.25);
}

.site-header .container {
	max-width: 100%;
	padding: 0 40px;
}
.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo img {
	filter: brightness(0) invert(1);
	transition: filter 0.3s;
}
.logo-text {
	font-size: 1.5rem;
	color: var(--white);
	letter-spacing: -0.5px;
}
.header-cta {
	display: flex;
	align-items: center;
	gap: 15px;
}
.header-phone {
	font-weight: 700;
	font-size: 1rem;
	color: var(--white);
	border: 2px solid var(--white);
	padding: 8px 18px;
	border-radius: 8px;
	text-decoration: none;
	transition: background 0.3s ease, color 0.3s ease;
}
.header-phone:hover {
	background: var(--white);
	color: #335796;
}
.site-header .btn-primary {
	background-color: var(--white);
	color: #335796;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.site-header .btn-primary:hover {
	background-color: #f0f0f0;
	color: #2c4a80;
}

@media (max-width: 768px) {
	.site-header .btn-primary {
		display: none;
	}
	.header-phone {
		font-size: 1rem;
	}
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: var(--white);
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	display: flex;
	z-index: 1000;
	padding: 10px;
	gap: 10px;
}
.mobile-sticky-bar .btn {
	flex: 1;
	padding: 12px 0;
	border-radius: 8px;
	font-size: 1rem;
}
@media (min-width: 768px) {
	.mobile-sticky-bar {
		display: none;
	}
}

/* Hero Section (Zachowujemy ciemny styl hero) */
.hero {
	position: relative;
	padding: 100px 0 60px;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero-bg::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.85) 0%,
		rgba(0, 0, 0, 0.6) 50%,
		rgba(0, 0, 0, 0.2) 100%
	);
}
@media (max-width: 767px) {
	.hero-bg::after {
		background: rgba(0, 0, 0, 0.75);
	}
}

/* Air Flow Animation - Particles */
.air-flow-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
	pointer-events: none;
}
.particle {
	position: absolute;
	background: #ffffff;
	border-radius: 50%;
	filter: blur(1.5px);
	box-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
	animation: floatUp linear infinite;
	opacity: 0;
}
@keyframes floatUp {
	0% {
		transform: translateY(0) translateX(0);
		opacity: 0;
	}
	10% {
		opacity: var(--p-opacity);
	}
	90% {
		opacity: var(--p-opacity);
	}
	100% {
		transform: translateY(-80vh) translateX(30px);
		opacity: 0;
	}
}

.hero-inner {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
@media (min-width: 992px) {
	.hero-inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
	.hero-content {
		flex: 1;
		max-width: 700px;
	}
}
.trust-badge {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
}
.trust-badge span {
	background: rgba(255, 255, 255, 0.15);
	color: var(--white);
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	backdrop-filter: blur(5px);
}
.hero h1 {
	font-size: 2.5rem;
	margin-bottom: 20px;
	letter-spacing: -1px;
	color: var(--white);
}
@media (min-width: 768px) {
	.hero h1 {
		font-size: 3.5rem;
	}
}
.hero .subtitle {
	font-size: 1.125rem;
	color: #e0e0e0;
	margin-bottom: 30px;
}
.hero-actions {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
@media (min-width: 768px) {
	.hero-actions {
		flex-direction: row;
		align-items: center;
	}
}
.hero-phone-link {
	color: #e0e0e0;
	font-size: 1rem;
}
.hero-phone-link strong {
	font-size: 1.25rem;
	color: #6ea8fe;
}

/* Formularze w Hero (Dark Glassmorphism) */
.form-box {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 30px;
	border-radius: var(--border-radius);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.form-box h3 {
	margin-bottom: 5px;
	color: var(--white);
}
.form-box p {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 20px;
	font-size: 0.9rem;
}
.form-group {
	margin-bottom: 15px;
}
.form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: 500;
	font-size: 0.9rem;
	color: var(--white);
}
.form-group input[type='text'],
.form-group input[type='tel'] {
	width: 100%;
	padding: 12px 15px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: var(--white);
	border-radius: 8px;
	font-family: inherit;
	font-size: 16px;
	transition:
		border-color 0.3s,
		box-shadow 0.3s,
		background 0.3s;
}
.form-group input::placeholder {
	color: rgba(255, 255, 255, 0.6);
}
.form-group input:focus {
	outline: none;
	background: rgba(255, 255, 255, 0.2);
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.3);
}
.checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 20px;
}
.checkbox-group input {
	margin-top: 3px;
	min-width: 16px;
	min-height: 16px;
}
.checkbox-group label {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 400;
}
.checkbox-group label a {
	color: #6ea8fe;
}
.hp-field {
	display: none !important;
}
.form-success {
	margin-top: 15px;
	padding: 15px;
	background: rgba(34, 197, 94, 0.2);
	border: 1px solid rgba(34, 197, 94, 0.5);
	color: #4ade80;
	border-radius: 8px;
	font-size: 0.9rem;
	text-align: center;
}

/* Social Proof Bar */

/* Grid Layouts */
.grid-4,
.grid-3 {
	display: grid;
	gap: 30px;
}
@media (min-width: 768px) {
	.grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}
	.grid-3 {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (min-width: 992px) {
	.grid-4 {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Section Spacing */
section {
	padding: 80px 0;
}
section:not(.hero):not(.bottom-cta):nth-child(even) {
	background-color: var(--white);
}
section:not(.hero):not(.bottom-cta):nth-child(odd) {
	background-color: var(--bg-light);
}

/* Light Glassmorphism Cards */
.offer-card,
.review-card,
.mb-box,
.pricing-table-wrapper,
.accordion-item {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-sm);
	transition:
		transform 0.3s,
		box-shadow 0.3s;
}

/* Bento Grid Section */
.bento-features {
	padding: 80px 0;
}
.bento-grid {
	display: grid;
	gap: 20px;
}
@media (min-width: 992px) {
	.bento-grid {
		grid-template-columns: 1.1fr 0.9fr;
	}
}

.bento-main-card {
	background: linear-gradient(135deg, #f0f7ff, #e2eafc);
	border-radius: 20px;
	padding: 50px;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.5);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.b-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(13, 110, 253, 0.1);
	color: var(--primary-color);
	padding: 8px 16px;
	border-radius: 30px;
	font-size: 0.85rem;
	font-weight: 700;
	margin-bottom: 25px;
	width: max-content;
	position: relative;
	z-index: 2;
}

.bento-main-card h2 {
	font-size: 3.5rem;
	line-height: 1.1;
	margin-bottom: 20px;
	color: #0f172a;
	position: relative;
	z-index: 2;
}

.bento-main-card .text-primary {
	color: var(--primary-color);
}

.bento-main-card p {
	font-size: 1.1rem;
	color: var(--text-muted);
	margin-bottom: 40px;
	max-width: 400px;
	position: relative;
	z-index: 2;
}

.b-price-box {
	display: flex;
	align-items: center;
	gap: 15px;
	background: var(--white);
	padding: 15px 25px;
	border-radius: 12px;
	width: max-content;
	margin-bottom: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
	position: relative;
	z-index: 2;
}

.b-price-icon {
	background: rgba(13, 110, 253, 0.1);
	color: var(--primary-color);
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.b-price-text {
	display: flex;
	align-items: baseline;
	gap: 5px;
}

.bp-from {
	font-weight: 600;
	color: var(--text-muted);
}
.bp-amount {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--primary-color);
	line-height: 1;
}
.bp-currency {
	font-weight: 700;
	color: var(--primary-color);
	font-size: 1.25rem;
}
.bp-desc {
	margin-left: 5px;
	font-size: 0.9rem;
	color: var(--text-muted);
}

.b-cta-btn {
	width: max-content;
	gap: 10px;
	margin-bottom: 30px;
	position: relative;
	z-index: 2;
}

.b-check-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-muted);
	position: relative;
	z-index: 2;
}

.b-check-list span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(255, 255, 255, 0.85);
	padding: 6px 14px;
	border-radius: 20px;
	color: #0f172a;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}
.b-check-list span svg {
	color: var(--primary-color);
}

.bento-small-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.b-card {
	background: var(--white);
	border-radius: 20px;
	padding: 35px 25px;
	border: 1px solid var(--glass-border);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.b-icon-wrapper {
	background: rgba(13, 110, 253, 0.08);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
}

.b-card h3 {
	font-size: 1.3rem;
	margin-bottom: 15px;
	color: #0f172a;
}

.b-separator {
	width: 30px;
	height: 3px;
	background: var(--primary-color);
	border-radius: 2px;
	margin-bottom: 15px;
}

.b-card p {
	color: var(--text-muted);
	font-size: 0.95rem;
	line-height: 1.5;
}

@media (max-width: 767px) {
	.bento-main-card h2 {
		font-size: 2.2rem;
	}
	.bento-main-card {
		padding: 30px 20px;
	}
	.bento-small-cards {
		grid-template-columns: 1fr;
	}
	.bp-amount {
		font-size: 2rem;
	}
	.b-price-box {
		flex-direction: column;
		text-align: center;
		align-items: center;
	}
}

/* Background image overlay for main card */
.bento-bg-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	opacity: 0.7; /* lekko rozjaśnione tło dla czytelności czarnego tekstu */
	pointer-events: none;
}

/* Process Section Modern */
.process-section,
.bg-light {
	padding: 80px 0;
	background: url('icons/bg.png') no-repeat center center !important;
	background-size: cover !important;
	overflow: hidden;
}
.process-header {
	margin-bottom: 60px;
}


.process-subtitle {
	font-size: 1.1rem;
	color: var(--text-muted);
}

.pt-timeline-modern {
	position: relative;
	max-width: 1100px;
	margin: 0 auto;
	z-index: 1;
}

.pt-steps-container {
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 10; /* Steps above the line */
}

@media (max-width: 991px) {
	.pt-steps-container {
		flex-direction: column;
		gap: 40px;
	}
}

.pt-step {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
	padding: 0 10px;
}

/* Horizontal Line */
@media (min-width: 992px) {
	.pt-timeline-modern::before {
		content: '';
		position: absolute;
		top: 65px;
		left: 10%;
		right: 10%;
		height: 2px;
		background: #e2e8f0;
		z-index: 2;
	}
	.pt-timeline-modern::after {
		content: '';
		position: absolute;
		top: 64px;
		left: 10%;
		right: 10%;
		height: 4px;
		border-radius: 2px;
		background: linear-gradient(
			90deg,
			transparent 0%,
			var(--primary-color) 50%,
			transparent 100%
		);
		background-size: 200% 100%;
		animation: sweepInfinity 4s linear infinite;
		z-index: 3;
	}
}

@keyframes sweepInfinity {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -100% 0;
	}
}

/* Small circles on the line */
.pt-small-circle {
	position: absolute;
	top: 65px;
	right: -50%;
	transform: translate(50%, -50%);
	width: 14px;
	height: 14px;
	border: 2px solid var(--primary-color);
	background: transparent; /* Line cuts through it! */
	border-radius: 50%;
	z-index: 15; /* Above the line */
}

.pt-step:last-child .pt-small-circle {
	display: none;
}

@media (max-width: 991px) {
	.pt-small-circle {
		display: none;
	}
}

/* Big Circle */
.pt-circle-wrapper {
	position: relative;
	margin-bottom: 40px; /* space for dashed line */
	display: flex;
	justify-content: center;
	z-index: 20;
}

.pt-circle {
	width: 130px;
	height: 130px;
	background: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
	border: 2px solid #d1dbec;
	position: relative;
	z-index: 21;
	overflow: hidden;
	transform: translateZ(0);
	-webkit-mask-image: -webkit-radial-gradient(white, black);
}

@keyframes pulseStepWrapper {
	0% { transform: scale(1); }
	10% { transform: scale(1.1); }
	20% { transform: scale(1); }
	100% { transform: scale(1); }
}

@keyframes pulseStepCircle {
	0% { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); border-color: #d1dbec; }
	10% { box-shadow: 0 15px 35px rgba(13, 110, 253, 0.4); border-color: var(--primary-color); }
	20% { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); border-color: #d1dbec; }
	100% { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); border-color: #d1dbec; }
}

.pt-step .pt-circle-wrapper {
	animation: pulseStepWrapper 5s infinite;
}

.pt-step .pt-circle {
	animation: pulseStepCircle 5s infinite;
}

.pt-step:nth-child(1) .pt-circle-wrapper, .pt-step:nth-child(1) .pt-circle, .pt-step:nth-child(1) .pt-card { animation-delay: 0s; }
.pt-step:nth-child(2) .pt-circle-wrapper, .pt-step:nth-child(2) .pt-circle, .pt-step:nth-child(2) .pt-card { animation-delay: 1s; }
.pt-step:nth-child(3) .pt-circle-wrapper, .pt-step:nth-child(3) .pt-circle, .pt-step:nth-child(3) .pt-card { animation-delay: 2s; }
.pt-step:nth-child(4) .pt-circle-wrapper, .pt-step:nth-child(4) .pt-circle, .pt-step:nth-child(4) .pt-card { animation-delay: 3s; }
.pt-step:nth-child(5) .pt-circle-wrapper, .pt-step:nth-child(5) .pt-circle, .pt-step:nth-child(5) .pt-card { animation-delay: 4s; }

.pt-icon {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 22;
	border-radius: 50%;
	mix-blend-mode: multiply;
}

.pt-circle-num {
	position: absolute;
	top: -2px;
	left: -2px;
	width: 36px;
	height: 36px;
	background: var(--primary-color);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	font-weight: 700;
	z-index: 23;
	box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
}

/* Dashed line */
.pt-dash-line {
	position: absolute;
	top: 130px;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	height: 40px;
	border-left: 2px dashed var(--primary-color);
	opacity: 0.5;
	z-index: 5;
}

.pt-dash-line::after {
	content: '';
	position: absolute;
	bottom: -6px;
	left: -3px;
	width: 8px;
	height: 8px;
	background: var(--primary-color);
	border-radius: 50%;
}

@media (max-width: 991px) {
	.pt-dash-line {
		display: none;
	}
}

/* Card */
.pt-card {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	border-radius: 16px;
	padding: 25px 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
	width: 100%;
	max-width: 260px;
	border: 1px solid rgba(255, 255, 255, 1);
	border-top: 4px solid transparent;
	transition:
		transform 0.3s,
		border-color 0.3s;
	position: relative;
	z-index: 30;
}

@keyframes pulseStepCard {
	0% { transform: scale(1) translateY(0); border-top-color: transparent; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); }
	10% { transform: scale(1.05) translateY(-5px); border-top-color: var(--primary-color); box-shadow: 0 15px 35px rgba(13, 110, 253, 0.15); }
	20% { transform: scale(1) translateY(0); border-top-color: transparent; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); }
	100% { transform: scale(1) translateY(0); border-top-color: transparent; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); }
}

.pt-step .pt-card {
	animation: pulseStepCard 5s infinite;
}

.pt-card h4 {
	font-size: 1.15rem;
	margin-bottom: 10px;
	color: #0f172a;
}

.pt-card p {
	font-size: 0.9rem;
	color: var(--text-muted);
	line-height: 1.5;
}

/* Offer Cards */
.offer-card {
	position: relative;
	overflow: hidden;
	padding: 0;
	text-align: left;
	border-radius: var(--border-radius);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	background: var(--white);
	border: 1px solid var(--glass-border);
	box-shadow: var(--shadow-sm);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
}

.offer-img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	background: #f8fafc;
}

.offer-content {
	background: transparent;
	padding: 25px;
	color: var(--text-color);
}

.offer-content h4 {
	color: #0f172a;
	margin-bottom: 10px;
	font-size: 1.3rem;
}

.offer-content p {
	color: var(--text-muted);
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.5;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Pricing Table */
.pricing-table-wrapper {
	overflow-x: auto;
	margin-bottom: 20px;
}
.pricing-table {
	width: 100%;
	border-collapse: collapse;
}
.pricing-table th,
.pricing-table td {
	padding: 15px 20px;
	text-align: left;
	border-bottom: 1px solid #e2e8f0;
}
.pricing-table th {
	background: rgba(0, 0, 0, 0.03);
	font-weight: 600;
	color: #0f172a;
}
.pricing-subtext {
	margin-bottom: 20px;
	font-weight: 500;
}
.disclaimer {
	font-size: 0.8rem;
	color: var(--text-muted);
}

@media (max-width: 767px) {
	.pricing-table thead {
		display: none;
	}
	.pricing-table tr {
		display: block;
		margin-bottom: 15px;
		border: 1px solid #e2e8f0;
		border-radius: 8px;
		background: var(--white);
	}
	.pricing-table td {
		display: flex;
		justify-content: space-between;
		align-items: center;
		border-bottom: 1px solid #f1f5f9;
	}
	.pricing-table td:last-child {
		border-bottom: none;
	}
	.pricing-table td::before {
		content: attr(data-label);
		font-weight: 600;
		margin-right: 10px;
	}
}

/* Montaż Basic */
.mb-content {
	max-width: 800px;
	margin: 0 auto;
}
.checklist {
	list-style: none;
	margin: 20px 0;
}
.checklist li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 15px;
}
.checklist li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 0;
	color: var(--primary-color);
	font-weight: bold;
	font-size: 1.2rem;
}
.mb-box {
	padding: 25px;
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid #e2e8f0;
}
@media (min-width: 768px) {
	.mb-box {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

/* Reviews */
.review-card {
	padding: 30px;
	text-align: left;
}
.stars {
	color: #fbbf24;
	font-size: 1.5rem;
	margin-bottom: 15px;
}
.review-card p {
	font-style: italic;
	margin-bottom: 15px;
}

/* Gallery */
.gallery-item {
	position: relative;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--glass-border);
}
.gallery-item img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	transition: transform 0.5s;
}
.gallery-item:hover img {
	transform: scale(1.05);
}
.g-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(5px);
	color: var(--white);
	padding: 10px;
	font-size: 0.9rem;
}

/* Certs & Bonus */
.certs-inner {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
@media (min-width: 768px) {
	.certs-inner {
		flex-direction: row;
		align-items: center;
	}
	.certs-text {
		flex: 1;
	}
	.certs-right {
		flex: 1;
		display: flex;
		flex-direction: column;
		gap: 30px;
	}
}

.cert-images {
	display: flex;
	gap: 20px;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
}
.cert-images a {
	display: inline-block;
	transition: transform 0.3s;
}
.cert-images a:hover {
	transform: scale(1.05);
}
.cert-img {
	max-height: 120px;
	width: auto;
	object-fit: contain;
	border-radius: 8px;
	box-shadow: var(--shadow-sm);
	background: var(--white);
	padding: 10px;
	display: block;
}
@media (min-width: 768px) {
	.cert-images {
		margin-top: 0;
		justify-content: flex-start;
	}
}
.bonus-box {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, var(--primary-color), #00c6ff);
	color: var(--white);
	padding: 40px;
	border-radius: var(--border-radius);
	box-shadow: 0 10px 30px rgba(13, 110, 253, 0.2);
}
.bonus-box::after {
	content: '';
	position: absolute;
	bottom: -25px;
	right: -25px;
	width: 220px;
	height: 220px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 12 20 22 4 22 4 12'%3E%3C/polyline%3E%3Crect x='2' y='7' width='20' height='5'%3E%3C/rect%3E%3Cline x1='12' y1='22' x2='12' y2='7'%3E%3C/line%3E%3Cpath d='M12 7H7.5a2.5 2.5 0 0 1 0-5C11 2 12 7 12 7z'%3E%3C/path%3E%3Cpath d='M12 7h4.5a2.5 2.5 0 0 0 0-5C13 2 12 7 12 7z'%3E%3C/path%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	opacity: 0.15;
	transform: rotate(-10deg);
	pointer-events: none;
}
.bonus-box * {
	position: relative;
	z-index: 1;
}
.bonus-box h3 {
	color: var(--white);
}

/* FAQ Accordion */
.accordion {
	max-width: 800px;
	margin: 0 auto;
}
.accordion-item {
	margin-bottom: 15px;
	overflow: hidden;
}
.accordion-header {
	width: 100%;
	text-align: left;
	padding: 20px;
	background: none;
	border: none;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	color: #0f172a;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.accordion-header::after {
	content: '+';
	font-size: 1.5rem;
	color: var(--primary-color);
	transition: transform 0.3s;
}
.accordion-header.active::after {
	transform: rotate(45deg);
}
.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
}
.accordion-content p {
	padding: 0 20px 20px;
	color: var(--text-muted);
}

/* Bottom CTA (Zostawiamy ciemne dla kontrastu przed stópką) */
.bottom-cta {
	background: #111;
	color: var(--white);
}
.bottom-cta h2,
.bottom-cta h3 {
	color: var(--white);
}
.cta-inner {
	display: flex;
	flex-direction: column;
	gap: 50px;
}
@media (min-width: 768px) {
	.cta-inner {
		flex-direction: row;
		align-items: center;
	}
	.cta-text,
	.cta-form {
		flex: 1;
	}
}
.huge-phone {
	display: block;
	font-size: 3rem;
	font-weight: 700;
	color: var(--primary-color);
	margin: 20px 0;
}
.huge-phone:hover {
	color: var(--primary-hover);
}
.company-info {
	color: #ccc;
	font-size: 0.95rem;
}
.bottom-cta .form-box {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.1);
}
.bottom-cta .form-group label {
	color: #eee;
}
.bottom-cta .form-group input[type='text'],
.bottom-cta .form-group input[type='tel'] {
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.2);
}
.bottom-cta .form-group input::placeholder {
	color: #aaa;
}

/* Footer */
.site-footer {
	background: #000;
	color: #888;
	padding: 40px 0;
	font-size: 0.85rem;
}
.footer-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	text-align: center;
}
.footer-inner p {
	margin-bottom: 5px;
}

.footer-certs {
	justify-content: center !important;
	margin-bottom: 0;
}
.footer-certs .cert-img {
	max-height: 100px;
	background: rgba(255, 255, 255, 0.95);
	padding: 5px;
	box-shadow: none;
}
.footer-links {
	margin-top: 15px;
}
.footer-links a {
	color: #aaa;
	margin: 0 10px;
}

@media (min-width: 768px) {
	.footer-inner {
		flex-direction: row;
		justify-content: space-between;
		text-align: right;
	}
	.footer-certs-col {
		flex: 0 0 auto;
	}
	.footer-text-col {
		flex: 1;
	}
}
.footer-links a:hover {
	color: var(--white);
}
.discrete-link {
	opacity: 0.5;
}

/* Realizacje - Slider */
.slider-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.slider-container::before,
.slider-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.slider-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light) 0%, transparent 100%);
}

.slider-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light) 0%, transparent 100%);
}

.slider-track {
    display: inline-block;
    animation: scroll 30s linear infinite;
}

.slider-track:hover {
    animation-play-state: paused;
}

.slide {
    display: inline-block;
    width: 300px;
    height: 220px;
    margin: 0 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    vertical-align: top;
}

.slide:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-md);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .slide {
        width: 250px;
        height: 180px;
    }
}

