/* ==========================================================================
   Uni-System — arkusz motywu.
   Tokeny 1:1 z design systemu (tokens/*.css) + komponenty z makiety.
   ========================================================================== */

/* --- Tokeny: kolory --- */
:root {
	--orange-700: #d1560a; --orange-600: #f26506; --orange-500: #f97d2b; --orange-100: #ffe3cd; --orange-50: #fff2e7;
	--ink-900: #242426; --ink-700: #34363a; --ink-500: #5c5f66; --ink-300: #9a9da3;
	--gray-200: #e4e4e6; --gray-100: #f4f4f4; --white: #ffffff;
	--success: #2e8b57; --error: #c73a1d;
	--brand: var(--orange-600); --brand-hover: var(--orange-700); --brand-tint: var(--orange-50);
	--text-heading: var(--ink-900); --text-body: var(--ink-700); --text-muted: var(--ink-500);
	--text-on-brand: var(--white); --text-on-dark: #f4f4f4;
	--surface-page: var(--white); --surface-alt: var(--gray-100); --surface-card: var(--white); --surface-dark: var(--ink-900);
	--border-subtle: var(--gray-200); --border-strong: var(--ink-300);
	--link: var(--orange-600); --link-hover: var(--orange-700);
	--focus-ring: 0 0 0 3px rgba(242, 101, 6, .35);

	/* --- Tokeny: typografia --- */
	--font-display: 'Poppins', system-ui, sans-serif;
	--font-body: 'Source Sans 3', system-ui, sans-serif;
	--text-hero: clamp(34px, 4.5vw, 56px); --text-h2: clamp(26px, 3vw, 38px); --text-h3: 24px; --text-h4: 19px;
	--text-lead: 19px; --text-base: 17px; --text-small: 15px; --text-caption: 13px;
	--weight-black: 800; --weight-bold: 700; --weight-semi: 600; --weight-regular: 400;
	--leading-tight: 1.15; --leading-normal: 1.6;
	--tracking-caps: .08em;
	--kicker: var(--weight-semi) var(--text-small)/1.2 var(--font-display);

	/* --- Tokeny: spacing / radiusy --- */
	--space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px; --space-5: 24px;
	--space-6: 32px; --space-7: 48px; --space-8: 64px; --space-9: 96px;
	--radius-sm: 6px; --radius-md: 10px; --radius-lg: 16px; --radius-pill: 999px;
	--container: 1200px; --section-pad: var(--space-9);

	/* --- Tokeny: cienie / animacje --- */
	--shadow-card: 0 2px 8px rgba(36, 36, 38, .06), 0 12px 32px rgba(36, 36, 38, .08);
	--shadow-card-hover: 0 4px 12px rgba(36, 36, 38, .08), 0 20px 44px rgba(36, 36, 38, .14);
	--shadow-button: 0 4px 14px rgba(242, 101, 6, .30);
	--ease-out: cubic-bezier(.22, .61, .36, 1);
	--dur-fast: 150ms; --dur-med: 250ms;
	--overlay-dark: linear-gradient(180deg, rgba(36, 36, 38, .15) 0%, rgba(36, 36, 38, .72) 100%);
}

/* --- Reset / baza --- */
*, *::before, *::after { box-sizing: border-box; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: var(--text-base);
	line-height: var(--leading-normal);
	color: var(--text-body);
	background: var(--surface-page);
	-webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	color: var(--text-heading);
	line-height: var(--leading-tight);
	margin: 0;
	text-wrap: pretty;
}
p { margin: 0 0 1em; }
img { max-width: 100%; height: auto; }
a { color: var(--link); text-decoration: none; transition: color var(--dur-fast) var(--ease-out); }
a:hover { color: var(--link-hover); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
	outline: none;
	box-shadow: var(--focus-ring);
	border-radius: var(--radius-sm);
}
.screen-reader-text {
	position: absolute; width: 1px; height: 1px; overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px); word-wrap: normal;
}

/* --- Layout --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; background: var(--surface-page); }
.section--alt { background: var(--surface-alt); }
.section--dark { background: var(--surface-dark); }
.section--tight { padding: 56px 0; }
.section--dark h2, .section--dark h3 { color: var(--text-on-dark); }

.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--cards3 { gap: 24px; }

.section-intro-row {
	display: flex; justify-content: space-between; align-items: flex-end;
	gap: 24px; flex-wrap: wrap; margin-bottom: 44px;
}

/* --- Kicker + nagłówek sekcji --- */
.kicker {
	font: var(--kicker);
	color: var(--brand);
	text-transform: uppercase;
	letter-spacing: var(--tracking-caps);
	margin: 0 0 10px;
}
.section-heading { max-width: 720px; }
.section-heading.is-center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading__title { font-size: var(--text-h2); font-weight: var(--weight-bold); }
.section-heading.is-dark .section-heading__title { color: var(--text-on-dark); }
.section-heading__lead { font-size: var(--text-lead); color: var(--text-muted); margin: 14px 0 0; }
.section-heading.is-dark .section-heading__lead { color: rgba(244, 244, 244, .75); }

/* --- Przyciski --- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	font-family: var(--font-display); font-weight: var(--weight-semi); font-size: 15px;
	line-height: 1.2; padding: 11px 22px; min-height: 44px;
	border-radius: var(--radius-md); border: 2px solid transparent;
	cursor: pointer; text-decoration: none;
	transition: all var(--dur-fast) var(--ease-out);
}
.btn--lg { font-size: 17px; padding: 14px 28px; }
.btn--primary { background: var(--brand); color: var(--text-on-brand); box-shadow: var(--shadow-button); }
.btn--primary:hover { background: var(--brand-hover); color: var(--text-on-brand); }
.btn--secondary { background: transparent; color: var(--ink-900); border-color: var(--ink-900); }
.btn--secondary:hover { background: var(--ink-900); color: #fff; }
.btn--secondary.btn--on-dark { color: #fff; border-color: #fff; }
.btn--secondary.btn--on-dark:hover { background: #fff; color: var(--ink-900); }
.btn--ghost { background: transparent; color: var(--brand); }
.btn--ghost:hover { color: var(--brand-hover); }
.btn:active { transform: scale(.98); }

/* --- Karty --- */
.card {
	background: var(--surface-card);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
	transition: box-shadow var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
}
.card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }
.card-link { color: var(--text-heading); }
.card-link:hover { color: var(--brand); }

/* Chip ikony */
.icon-chip {
	display: flex; align-items: center; justify-content: center;
	background: var(--brand-tint); color: var(--brand);
	border-radius: var(--radius-md); flex-shrink: 0;
}

/* Karta usługi */
.service-card { padding: var(--space-6); position: relative; display: flex; flex-direction: column; align-items: flex-start; }
.service-card .icon-chip { margin-bottom: 18px; }
.service-card__title { font-size: var(--text-h4); font-weight: var(--weight-bold); margin-bottom: 10px; }
.service-card__title a::after { content: ""; position: absolute; inset: 0; }
.service-card__desc { font-size: var(--text-small); color: var(--text-muted); margin: 0 0 16px; flex-grow: 1; }
.card-cta { font: 600 15px var(--font-display); color: var(--brand); }
.service-card:hover .card-cta { color: var(--brand-hover); }

/* Karta blog / realizacja */
.blog-card { overflow: hidden; display: flex; flex-direction: column; }
.blog-card__media { display: block; aspect-ratio: 16 / 9; background: var(--gray-100); overflow: hidden; }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card__placeholder {
	display: flex; align-items: center; justify-content: center; height: 100%;
	font: 600 15px var(--font-display); color: var(--ink-300);
}
.blog-card__body { padding: var(--space-5); }
.blog-card__date { font-size: var(--text-caption); color: var(--text-muted); margin: 0 0 8px; }
.blog-card__title { font-size: var(--text-h4); font-weight: var(--weight-bold); }
.blog-card:hover .blog-card__title a { color: var(--brand); }

/* Pills / badge */
.pill-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.pill {
	display: inline-block; font: 600 12px var(--font-display);
	padding: 3px 10px; border-radius: var(--radius-pill);
}
.pill--neutral { background: var(--gray-100); color: var(--ink-700); }
.blog-card .pill--neutral, .section--alt .pill--neutral { background: var(--gray-200); }
.pill--brand { background: var(--brand-tint); color: var(--brand-hover); }
a.pill { min-height: 0; }
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-pills .pill { font-size: 13px; padding: 8px 16px; }
.filter-pills .pill--neutral:hover { background: var(--brand-tint); color: var(--brand-hover); }

/* Karta opinii */
.testimonial-card { padding: var(--space-6); margin: 0; }
.testimonial-card blockquote { margin: 0 0 16px; font-style: italic; color: var(--text-body); }
.testimonial-card figcaption { font: 600 15px var(--font-display); color: var(--text-heading); }
.testimonial-card figcaption span { display: block; font: 400 13px var(--font-body); color: var(--text-muted); margin-top: 2px; }
.stars { display: inline-flex; gap: 2px; color: var(--brand); margin-bottom: 14px; }

/* Statystyki (ciemny pas) */
.stats-row { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 32px; margin-top: 48px; }
.stats-row--flat { margin-top: 0; }
.stat { text-align: center; }
.stat__value { font-family: var(--font-display); font-weight: var(--weight-black); font-size: 52px; line-height: 1; color: var(--brand); }
.stat__label { margin-top: 8px; font-size: var(--text-small); color: rgba(244, 244, 244, .75); }

/* --- Nagłówek strony (nav) --- */
.site-header {
	background: #fff;
	box-shadow: 0 1px 0 var(--border-subtle);
	position: relative;
	z-index: 100;
}
.site-header__inner { display: flex; align-items: center; gap: 32px; height: 76px; }
.site-logo img { height: 52px; width: auto; display: block; }
.site-nav { margin-left: auto; }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 28px; }
.site-nav li { position: relative; }
.site-nav a {
	display: inline-flex; align-items: center; gap: 5px;
	font: 600 15px var(--font-display); color: var(--ink-900);
	padding: 26px 0; border-bottom: 2px solid transparent;
	transition: color var(--dur-fast) var(--ease-out);
}
.site-nav a:hover { color: var(--brand); }
.site-nav > ul > li.current-menu-item > a,
.site-nav > ul > li.current-menu-ancestor > a,
.site-nav > ul > li.current_page_parent > a {
	color: var(--brand);
	border-bottom-color: var(--brand);
}
.site-nav .menu-item-has-children > a::after {
	content: ""; width: 8px; height: 8px; flex-shrink: 0;
	border-right: 2.5px solid currentColor; border-bottom: 2.5px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	transition: transform var(--dur-fast) var(--ease-out);
}
/* Dropdown: biały panel, radius 10, cień, hover tint + pomarańcz */
.site-nav .sub-menu {
	position: absolute; top: 100%; left: -16px;
	min-width: 300px; background: #fff;
	border-radius: var(--radius-md); box-shadow: var(--shadow-card-hover);
	padding: 10px 0; display: none; flex-direction: column; gap: 0; z-index: 110;
}
.site-nav li:hover > .sub-menu,
.site-nav li:focus-within > .sub-menu { display: flex; }
.site-nav .sub-menu a {
	display: block; padding: 10px 20px; border-bottom: none;
	font: 600 15px var(--font-display); color: var(--ink-900);
	transition: all var(--dur-fast) var(--ease-out);
}
.site-nav .sub-menu a:hover { background: var(--brand-tint); color: var(--brand); }
.header-cta { flex-shrink: 0; }

/* Hamburger */
.nav-toggle {
	display: none; margin-left: auto;
	background: none; border: none; cursor: pointer;
	width: 44px; height: 44px; align-items: center; justify-content: center;
	color: var(--ink-900);
}

/* --- Hero (strona główna, wideo) --- */
.hero {
	position: relative; min-height: calc(100vh - 76px);
	display: flex; align-items: center; overflow: hidden;
	background-color: var(--ink-900);
	background-size: cover;
	background-position: center;
}
.hero__video { position: absolute; inset: 0; }
.hero__video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(36, 36, 38, .55) 0%, rgba(36, 36, 38, .75) 100%);
	pointer-events: none;
}
.hero__content { position: relative; width: 100%; padding: 96px 0; text-align: center; }
.hero__content .kicker { color: var(--orange-500); }
.hero__title {
	font-size: var(--text-hero); font-weight: var(--weight-black);
	color: #fff; max-width: 820px; margin: 16px auto 0;
}
.hero__lead {
	font-size: var(--text-lead); color: rgba(244, 244, 244, .85);
	max-width: 640px; margin: 18px auto 0;
}
.hero__actions { display: flex; gap: 14px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.hero__proof { display: flex; gap: 40px; margin-top: 44px; align-items: center; justify-content: center; flex-wrap: wrap; }
.hero__count { font: 800 34px var(--font-display); color: #fff; }
.hero__count-label { font-size: 14px; color: rgba(244, 244, 244, .7); }
.hero__rating { display: flex; align-items: center; gap: 8px; color: #fff; }
.hero__rating .stars { margin-bottom: 0; }
.hero__rating-label { font-size: var(--text-small); color: rgba(244, 244, 244, .7); }

/* --- Hero podstron (PageHero) --- */
.page-hero { padding: 56px 0; }

/* Hero usługi: chip + H1 + lead */
.usluga-hero { display: flex; gap: 32px; align-items: center; max-width: 900px; margin: 0 auto; flex-wrap: wrap; }
.usluga-hero .icon-chip { width: 72px; height: 72px; border-radius: var(--radius-lg); }
.usluga-hero__text { flex: 1; min-width: 300px; }
.usluga-hero__title { font-size: var(--text-h2); font-weight: var(--weight-black); margin-top: 8px; }
.usluga-hero__lead { font-size: var(--text-lead); color: var(--text-muted); margin: 12px 0 0; }

/* --- Sekcje treści usługi / miasta --- */
.split { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.split--even { grid-template-columns: 1fr 1fr; }
.split--faq { grid-template-columns: 1fr 1.4fr; align-items: start; }
.split--list { grid-template-columns: 1fr 1.3fr; align-items: start; }
.split__media img { width: 100%; border-radius: 20px; display: block; object-fit: cover; }
.split__media--placeholder {
	min-height: 340px; border-radius: 20px; background: var(--gray-100);
	display: flex; align-items: center; justify-content: center;
	font: 600 15px var(--font-display); color: var(--ink-300);
}
.intro-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

/* Karty korzyści */
.benefit-card { padding: var(--space-5); }
.benefit-card .icon-chip { margin-bottom: 14px; }
.benefit-card h3 { font-size: 17px; font-weight: var(--weight-bold); margin-bottom: 8px; }
.benefit-card p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* Proces 4 kroków */
.step { text-align: center; padding: 0 8px; }
.step__circle {
	width: 56px; height: 56px; margin: 0 auto 14px;
	background: var(--brand); color: #fff; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	box-shadow: var(--shadow-button);
}
.step h3 { font-size: 17px; font-weight: var(--weight-bold); margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* FAQ akordeon */
.faq-list { display: grid; gap: 12px; }
.faq-item { background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-card); overflow: hidden; }
.faq-item__q {
	width: 100%; text-align: left; background: none; border: none; cursor: pointer;
	padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
	font: 700 17px var(--font-display); color: var(--text-heading);
	min-height: 44px;
}
.faq-item__q .faq-item__plus {
	color: var(--brand); flex-shrink: 0; display: flex;
	transition: transform var(--dur-fast) var(--ease-out);
}
.faq-item.is-open .faq-item__q { color: var(--brand); }
.faq-item.is-open .faq-item__plus { transform: rotate(45deg); }
.faq-item__a { padding: 0 22px 20px; color: var(--text-body); display: none; }
.faq-item.is-open .faq-item__a { display: block; }
.faq-item__a p:last-child { margin-bottom: 0; }

/* Lista check (miasta, o nas) */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.check-list li {
	display: flex; gap: 14px; align-items: flex-start;
	background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-card);
	padding: 16px 20px; font-size: 16px;
}
.check-list li .check-ic { color: var(--brand); display: flex; flex-shrink: 0; margin-top: 2px; }
.check-list--plain li { background: none; box-shadow: none; padding: 0; align-items: center; }

/* --- CTA band --- */
.cta-band { background: var(--surface-dark); padding: 64px 0; }
.cta-band__inner { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.cta-band__text { flex: 1; min-width: 320px; }
.cta-band__title { color: #fff; font-size: 26px; font-weight: var(--weight-bold); }
.cta-band__sub { color: rgba(244, 244, 244, .7); margin: 10px 0 0; }
.cta-band__actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.cta-band__phone { font: 800 28px var(--font-display); color: var(--orange-500); white-space: nowrap; }
.cta-band__phone:hover { color: var(--orange-100); }

/* --- Stopka --- */
.site-footer { background: var(--surface-dark); color: var(--text-on-dark); }
.site-footer__grid {
	display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 48px; padding: 64px 0 32px;
}
/* Logo ma ciemny tekst „SYSTEM" + tagline — na ciemnej stopce trzyma je na jasnym chipie. */
.footer-logo-chip { background: #f4f4f4; border-radius: 8px; padding: 8px 12px; display: inline-block; }
.footer-logo-chip img { height: 44px; width: auto; display: block; }
.site-footer__about { font-size: 15px; color: rgba(244, 244, 244, .7); margin-top: 18px; line-height: 1.7; }
.site-footer__areas { font-size: 14px; color: rgba(244, 244, 244, .5); }
.site-footer h4 { color: #fff; font-size: 16px; font-weight: var(--weight-bold); margin-bottom: 16px; }
.site-footer__col ul { list-style: none; margin: 0; padding: 0; }
.site-footer__col a { display: block; color: rgba(244, 244, 244, .7); font-size: 15px; margin-bottom: 10px; padding: 2px 0; }
.site-footer__col a:hover { color: var(--orange-500); }
.site-footer__legal { border-top: 1px solid rgba(244, 244, 244, .12); }
.site-footer__legal-inner {
	display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
	padding: 18px 0; font-size: 13px; color: rgba(244, 244, 244, .5);
}
.site-footer__legal a { color: inherit; margin-left: 20px; }
.site-footer__legal a:first-child { margin-left: 0; }
.site-footer__legal a:hover { color: var(--orange-500); }

/* --- Formularze --- */
.form-card { padding: 32px; display: grid; gap: 18px; }
.form-card h3 { font-size: 22px; font-weight: var(--weight-bold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field label, .form-field .form-label {
	display: block; font: 600 14px var(--font-display); color: var(--text-heading); margin-bottom: 6px;
}
.form-field .req { color: var(--brand); }
.form-field input, .form-field select, .form-field textarea {
	width: 100%; font: 400 16px var(--font-body); color: var(--text-body);
	padding: 12px 14px; min-height: 44px;
	border-radius: var(--radius-sm); border: 1px solid var(--border-subtle);
	background: #fff; outline: none;
	transition: box-shadow var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
	border-color: var(--brand); box-shadow: var(--focus-ring);
}
.form-note { font-size: 13px; color: var(--text-muted); margin: 0; }
.form-honeypot { position: absolute; left: -9999px; }
.form-alert { border-radius: var(--radius-md); padding: 14px 18px; font: 600 15px var(--font-display); }
.form-alert--ok { background: var(--brand-tint); color: var(--brand-hover); }
.form-alert--error { background: #fdecea; color: var(--error); }

/* Karty kontaktowe */
.contact-card { display: flex; gap: 16px; align-items: flex-start; padding: 20px; }
.contact-card__title { font: 700 16px var(--font-display); color: var(--text-heading); }
.contact-card__value { font-size: 15px; color: var(--text-muted); margin-top: 2px; }
.contact-card__value a { color: var(--text-muted); }
.contact-card__value a:hover { color: var(--brand); }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.contact-map iframe { display: block; width: 100%; height: 260px; border: 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-cards { display: grid; gap: 16px; }

/* --- Artykuł (wpis bloga) --- */
.entry-article { max-width: 780px; margin: 0 auto; }
.entry-article__meta { font-size: var(--text-caption); color: var(--text-muted); margin-bottom: 10px; }
.entry-article__title { font-size: var(--text-h2); font-weight: var(--weight-black); }
.entry-article__thumb { margin: 32px 0; }
.entry-article__thumb img { border-radius: var(--radius-lg); width: 100%; object-fit: cover; }
.entry-content { margin-top: 28px; }
.entry-content h2 { font-size: var(--text-h3); margin: 40px 0 16px; }
.entry-content h3 { font-size: 20px; margin: 32px 0 12px; }
.entry-content ul, .entry-content ol { padding-left: 24px; margin: 0 0 1em; }
.entry-content li { margin-bottom: 6px; }
.entry-content blockquote {
	margin: 24px 0; padding: 16px 24px;
	border-left: 3px solid var(--brand); background: var(--brand-tint);
	border-radius: 0 var(--radius-md) var(--radius-md) 0; font-style: italic;
}
.entry-content img { border-radius: var(--radius-md); }
.entry-content a { text-decoration: underline; text-underline-offset: 2px; }
.wp-block-image figcaption { font-size: var(--text-caption); color: var(--text-muted); text-align: center; }

/* Paginacja */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 44px; min-height: 44px; padding: 0 12px;
	font: 600 15px var(--font-display); color: var(--ink-900);
	background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-card);
}
.pagination .page-numbers.current { background: var(--brand); color: #fff; box-shadow: var(--shadow-button); }
.pagination .page-numbers:hover:not(.current) { color: var(--brand); }

/* 404 */
.error-404 { text-align: center; padding: 120px 0; }
.error-404 .hero__count { color: var(--brand); font-size: 80px; }

/* ==========================================================================
   Baner cookies + pływająca ikona ciasteczka
   ========================================================================== */
.cookie-banner {
	position: fixed; left: 20px; bottom: 20px; z-index: 1001;
	width: min(400px, calc(100vw - 40px));
	display: flex; gap: 16px; align-items: flex-start;
	background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-card-hover);
	padding: 22px 24px;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__icon {
	flex-shrink: 0; width: 44px; height: 44px; border-radius: var(--radius-md);
	background: var(--brand-tint); color: var(--brand);
	display: flex; align-items: center; justify-content: center;
}
.cookie-banner__title { font-size: 17px; font-weight: var(--weight-bold); margin: 0 0 6px; }
.cookie-banner__text { font-size: 14px; color: var(--text-muted); margin: 0 0 16px; line-height: 1.55; }
.cookie-banner__text a { text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner__actions .btn { font-size: 14px; padding: 9px 16px; min-height: 40px; }

.cookie-toggle {
	position: fixed; left: 20px; bottom: 20px; z-index: 1000;
	width: 48px; height: 48px; border-radius: 50%; border: none; cursor: pointer;
	background: #fff; color: var(--brand); box-shadow: var(--shadow-card);
	display: flex; align-items: center; justify-content: center;
	transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.cookie-toggle[hidden] { display: none; }
.cookie-toggle:hover { transform: translateY(-2px); box-shadow: var(--shadow-card-hover); }

/* ==========================================================================
   Pływający widget Opinie Google
   ========================================================================== */
.greviews { position: fixed; right: 20px; bottom: 20px; z-index: 1000; }
.greviews__badge {
	display: flex; align-items: center; gap: 10px; cursor: pointer;
	background: #fff; border: none; border-radius: var(--radius-pill);
	box-shadow: var(--shadow-card); padding: 8px 16px 8px 10px;
	animation: greviews-float 3.5s var(--ease-out) infinite;
	transition: box-shadow var(--dur-fast) var(--ease-out);
}
.greviews__badge:hover { box-shadow: var(--shadow-card-hover); }
@keyframes greviews-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
.greviews__g {
	flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
	background: #fff; box-shadow: inset 0 0 0 2px var(--border-subtle);
	color: #4285f4; font: 800 18px var(--font-display);
	display: flex; align-items: center; justify-content: center;
}
.greviews__meta { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; }
.greviews__score { font: 700 15px var(--font-display); color: var(--text-heading); display: flex; align-items: center; gap: 6px; }
.greviews__score .stars { margin: 0; }
.greviews__label { font-size: 12px; color: var(--text-muted); }

.greviews__panel {
	position: absolute; right: 0; bottom: calc(100% + 12px);
	width: min(340px, calc(100vw - 40px));
	background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-card-hover);
	padding: 18px 20px 20px;
}
.greviews__panel[hidden] { display: none; }
.greviews__head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.greviews__head-title { font: 700 16px var(--font-display); color: var(--text-heading); }
.greviews__head-sub { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; margin-top: 2px; }
.greviews__head-sub .stars { margin: 0; }
.greviews__close { background: none; border: none; cursor: pointer; color: var(--text-muted); display: flex; padding: 4px; }
.greviews__close:hover { color: var(--brand); }
.greviews__track { position: relative; min-height: 132px; }
.greviews__item {
	position: absolute; inset: 0; margin: 0;
	opacity: 0; visibility: hidden; transform: translateY(6px);
	transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
}
.greviews__item.is-active { opacity: 1; visibility: visible; transform: none; position: relative; }
.greviews__item-stars { color: var(--brand); display: inline-flex; }
.greviews__item blockquote { margin: 8px 0 12px; font-style: italic; font-size: 14px; color: var(--text-body); line-height: 1.5; }
.greviews__item figcaption { font: 600 14px var(--font-display); color: var(--text-heading); }
.greviews__item figcaption span { display: block; font: 400 12px var(--font-body); color: var(--text-muted); margin-top: 1px; }
.greviews__cta { display: inline-block; margin-top: 14px; font: 600 14px var(--font-display); color: var(--brand); }
.greviews__cta:hover { color: var(--brand-hover); }

/* ==========================================================================
   Responsywność
   ========================================================================== */
@media (max-width: 1024px) {
	.grid--4 { grid-template-columns: repeat(2, 1fr); }
	.grid--3 { grid-template-columns: repeat(2, 1fr); }
	.split, .split--even, .split--faq, .split--list { grid-template-columns: 1fr; gap: 36px; }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 782px) {
	.section { padding: 56px 0; }
	.grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
	.form-row { grid-template-columns: 1fr; }
	.contact-grid { grid-template-columns: 1fr; }
	.stats-row { gap: 24px; }
	.stat__value { font-size: 40px; }
	.hero { min-height: 70vh; }
	.cta-band__phone { font-size: 24px; }

	/* Mobile menu */
	.nav-toggle { display: inline-flex; }
	.header-cta { display: none; }
	.site-nav {
		display: none; position: absolute; top: 76px; left: 0; right: 0;
		background: #fff; box-shadow: var(--shadow-card-hover);
		padding: 12px 24px 24px; max-height: calc(100vh - 76px); overflow-y: auto;
	}
	.site-nav.is-open { display: block; }
	.site-nav ul { flex-direction: column; gap: 0; }
	.site-nav a { display: flex; padding: 12px 0; border-bottom: none; width: 100%; justify-content: space-between; }
	.site-nav .sub-menu {
		position: static; display: none; min-width: 0; box-shadow: none;
		border-radius: 0; padding: 0 0 8px 16px;
	}
	.site-nav li.is-sub-open > .sub-menu { display: flex; }
	.site-nav li:hover > .sub-menu { display: none; }
	.site-nav li.is-sub-open:hover > .sub-menu { display: flex; }
	.site-nav .menu-item-has-children.is-sub-open > a::after { transform: rotate(225deg) translateY(-2px); }
	.site-footer__grid { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 24px; }
	.site-footer__legal-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
	.site-footer__legal a { margin-left: 0; margin-right: 16px; }

	/* Widgety pływające na mobile */
	.cookie-banner { left: 12px; right: 12px; bottom: 12px; width: auto; }
	.cookie-toggle { left: 12px; bottom: 12px; }
	.greviews { right: 12px; bottom: 12px; }
	/* Gdy baner cookies otwarty, nie zasłaniaj go widgetem opinii */
	body.has-cookie-banner .greviews { display: none; }
	.greviews__label { display: none; }
	.greviews__badge { padding: 8px; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { transition-duration: 0s !important; animation: none !important; }
	html { scroll-behavior: auto; }
}
