/**
 * NoProblem24 — style komponentów wtyczki.
 *
 * Wszystko pod prefiksem .np24-, żeby nie kolidowało z Divi.
 * Kolory marki pobrane z logo: pomarańcz #FF4600, grafit #1A1B1A.
 */

:root {
	--np24-brand: #ff4600;
	--np24-brand-dark: #d63a00;
	--np24-brand-soft: #fff1eb;
	--np24-ink: #1a1b1a;
	--np24-ink-2: #4a4d4a;
	--np24-ink-3: #7c807c;
	--np24-line: #e4e6e4;
	--np24-surface: #ffffff;
	--np24-surface-2: #f7f8f7;
	--np24-radius: 14px;
	--np24-radius-sm: 10px;
	--np24-shadow: 0 1px 2px rgb(26 27 26 / 6%), 0 8px 24px rgb(26 27 26 / 8%);
	--np24-shadow-lg: 0 2px 4px rgb(26 27 26 / 8%), 0 18px 48px rgb(26 27 26 / 12%);
	--np24-space: clamp(1rem, 2.5vw, 1.75rem);
	--np24-font: inherit;
}

/* ── Reset list wewnątrz komponentów ───────────────────────────────────── */

/*
 * Divi stylizuje `ul li` w module Code (punktory, wcięcia, a w części wersji
 * także pseudoelement ::before z ikoną) i robi to z wyższą specyficznością niż
 * zwykłe `list-style: none`. Dlatego listy budujące UI — menu, stopka, FAQ,
 * kontakt, kroki, kafelki — czyścimy tutaj twardo.
 *
 * Wyjątkiem jest `.np24-prose ul/ol` — tam punktory mają BYĆ, bo to treść.
 */
.np24-menu__list,
.np24-menu__list li,
.np24-footer__list,
.np24-footer__list li,
.np24-footer__hours,
.np24-footer__hours li,
.np24-contact,
.np24-contact li,
.np24-hero__points,
.np24-hero__points li,
.np24-steps,
.np24-steps li,
.np24-partner__scope,
.np24-partner__scope li {
	list-style: none !important;
	list-style-type: none !important;
	list-style-image: none !important;
	padding-left: 0 !important;
	background-image: none !important;
}

.np24-menu__list li::marker,
.np24-footer__list li::marker,
.np24-footer__hours li::marker,
.np24-contact li::marker,
.np24-hero__points li::marker,
.np24-steps li::marker,
.np24-partner__scope li::marker {
	content: "" !important;
}

/* Divi w kilku wersjach wstawia punktor jako ::before z fontem ETmodules. */
.np24-menu__list li::before,
.np24-footer__list li::before,
.np24-footer__hours li::before,
.np24-contact li::before {
	content: none !important;
	display: none !important;
}

/* Te dwie listy mają własne znaczniki (✓ oraz numer kroku) — nie kasujemy ich,
   tylko upewniamy się, że to NASZ znacznik, a nie punktor motywu. */
.np24-hero__points li::before {
	content: "✓" !important;
	display: inline !important;
	margin-right: .4rem;
	font-weight: 800;
	color: var(--np24-brand);
}

.np24-partner__scope li::before {
	content: "–" !important;
	display: inline !important;
	margin-right: .45rem;
	color: var(--np24-brand);
}

/* ── Nagłówek globalny ─────────────────────────────────────────────────── */

.np24-header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: var(--np24-surface);
	box-shadow: 0 1px 0 var(--np24-line);
	transition: transform .25s ease, box-shadow .25s ease;
}

/* Chowanie przy przewijaniu w dół — więcej miejsca na treść na telefonie. */
.np24-header.is-hidden { transform: translateY(-100%); }
.np24-header.is-scrolled { box-shadow: var(--np24-shadow); }

.np24-topbar {
	background: var(--np24-ink);
	color: rgb(255 255 255 / 78%);
	font-size: .82rem;
}

.np24-topbar__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .5rem .9rem;
	max-width: 1180px;
	margin: 0 auto;
	padding: .5rem 1.2rem;
}

.np24-topbar__sep { opacity: .45; }

.np24-topbar__phone {
	margin-left: auto;
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.np24-topbar__phone:hover { color: var(--np24-brand); }

.np24-nav__inner {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	max-width: 1180px;
	margin: 0 auto;
	padding: .8rem 1.2rem;
}

.np24-nav__logo { flex: 0 0 auto; line-height: 0; }

.np24-nav__logo img {
	width: auto;
	height: 42px;
	max-width: 100%;
}

.np24-menu {
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	justify-content: flex-end;
	gap: 1.5rem;
}

.np24-menu__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .2rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.np24-menu__list a {
	display: block;
	padding: .5rem .7rem;
	border-radius: 8px;
	font-size: .95rem;
	font-weight: 600;
	color: var(--np24-ink);
	text-decoration: none;
	transition: background-color .15s ease, color .15s ease;
}

.np24-menu__list a:hover { background: var(--np24-brand-soft); color: var(--np24-brand); }

.np24-menu__list a.is-active {
	color: var(--np24-brand);
	box-shadow: inset 0 -2px 0 var(--np24-brand);
	border-radius: 8px 8px 0 0;
}

.np24-menu__actions { display: flex; align-items: center; gap: .9rem; }
.np24-menu__cta { padding: .65rem 1.25rem; font-size: .92rem; white-space: nowrap; }
.np24-menu__phone { display: none; }

/* Hamburger */
.np24-burger {
	display: none;
	margin-left: auto;
	padding: .6rem;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.np24-burger__box {
	position: relative;
	display: block;
	width: 26px;
	height: 18px;
}

.np24-burger__box span,
.np24-burger__box::before,
.np24-burger__box::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2.5px;
	background: var(--np24-ink);
	border-radius: 2px;
	transition: transform .2s ease, opacity .2s ease;
}

.np24-burger__box::before { content: ""; top: 0; }
.np24-burger__box span { top: 50%; margin-top: -1.25px; }
.np24-burger__box::after { content: ""; bottom: 0; }

.np24-burger[aria-expanded="true"] .np24-burger__box::before { transform: translateY(8px) rotate(45deg); }
.np24-burger[aria-expanded="true"] .np24-burger__box span { opacity: 0; }
.np24-burger[aria-expanded="true"] .np24-burger__box::after { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 980px) {
	.np24-burger { display: block; }
	.np24-topbar__item--hide-sm { display: none; }

	.np24-menu {
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
		padding: 1.2rem;
		background: var(--np24-surface);
		border-top: 1px solid var(--np24-line);
		box-shadow: var(--np24-shadow-lg);
		transform: translateY(-8px);
		opacity: 0;
		visibility: hidden;
		transition: opacity .18s ease, transform .18s ease, visibility .18s;
	}

	.np24-nav { position: relative; }
	.np24-menu.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
	.np24-menu__list { flex-direction: column; align-items: stretch; gap: 0; }
	.np24-menu__list a { padding: .85rem .6rem; border-bottom: 1px solid var(--np24-line); border-radius: 0; }
	.np24-menu__list a.is-active { box-shadow: inset 3px 0 0 var(--np24-brand); }
	.np24-menu__actions { flex-direction: column; align-items: stretch; gap: .7rem; }
	.np24-menu__cta { width: 100%; }

	.np24-menu__phone {
		display: block;
		text-align: center;
		font-weight: 700;
		font-size: 1.05rem;
		color: var(--np24-brand);
		text-decoration: none;
	}
}

/* ── Stopka globalna ───────────────────────────────────────────────────── */

.np24-footer {
	background: var(--np24-ink);
	color: rgb(255 255 255 / 72%);
	font-size: .94rem;
	line-height: 1.65;
}

.np24-footer__inner {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
	gap: clamp(1.5rem, 4vw, 3rem);
	max-width: 1180px;
	margin: 0 auto;
	padding: clamp(2.2rem, 5vw, 3.5rem) 1.2rem;
}

@media (max-width: 980px) { .np24-footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .np24-footer__inner { grid-template-columns: 1fr; } }

.np24-footer__logo { height: 44px; width: auto; margin-bottom: 1rem; }
.np24-footer__desc { margin: 0 0 1.2rem; max-width: 42ch; }

.np24-footer__nap {
	display: flex;
	flex-direction: column;
	gap: .4rem;
	font-style: normal;
}

.np24-footer__nap a { color: #fff; font-weight: 600; text-decoration: none; }
.np24-footer__nap a:hover { color: var(--np24-brand); }

.np24-footer__title {
	margin: 0 0 .9rem;
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #fff;
}

.np24-footer__list { margin: 0; padding: 0; list-style: none; display: grid; gap: .5rem; }
.np24-footer__list a { color: inherit; text-decoration: none; }
.np24-footer__list a:hover { color: var(--np24-brand); text-decoration: underline; }

.np24-footer__hours { margin: 0 0 1rem; padding: 0; list-style: none; display: grid; gap: .45rem; }

.np24-footer__hours li {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	font-size: .9rem;
}

.np24-footer__hours strong { color: #fff; white-space: nowrap; }

.np24-footer__access {
	margin: 0 0 1.2rem;
	font-size: .85rem;
	color: rgb(255 255 255 / 60%);
}

.np24-footer__access strong { color: var(--np24-brand); }
.np24-footer__cta { width: 100%; }

.np24-footer__bar {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: .6rem 1.5rem;
	max-width: 1180px;
	margin: 0 auto;
	padding: 1.1rem 1.2rem;
	border-top: 1px solid rgb(255 255 255 / 12%);
	font-size: .84rem;
	color: rgb(255 255 255 / 55%);
}

.np24-footer__bar p { margin: 0; }
.np24-footer__made a { color: rgb(255 255 255 / 78%); text-decoration: none; }
.np24-footer__made a:hover { color: var(--np24-brand); }

/* ── Pasek akcji na telefonach ─────────────────────────────────────────── */

.np24-stickybar { display: none; }

@media (max-width: 780px) {
	.np24-stickybar {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 998;
		display: grid;
		grid-template-columns: 1fr 1.4fr;
		gap: .5rem;
		padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
		background: var(--np24-surface);
		box-shadow: 0 -2px 14px rgb(26 27 26 / 14%);
	}

	.np24-stickybar a {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: .4rem;
		padding: .8rem .6rem;
		border-radius: 999px;
		font-weight: 700;
		font-size: .95rem;
		text-decoration: none;
	}

	.np24-stickybar__call { background: var(--np24-surface-2); color: var(--np24-ink); border: 1.5px solid var(--np24-line); }
	.np24-stickybar__book { background: var(--np24-brand); color: #fff; }

	/* Żeby pasek nie zasłaniał końca stopki */
	.np24-footer__bar { padding-bottom: 4.5rem; }
}

/* ── Układ stron (hero, sekcje, kroki) ─────────────────────────────────── */

.np24-hero { padding: clamp(2rem, 6vw, 4.5rem) 0; text-align: center; }

.np24-hero__eyebrow {
	margin: 0 0 .8rem;
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--np24-brand);
}

.np24-hero__title {
	margin: 0 auto 1.1rem;
	max-width: 20ch;
	font-size: clamp(2rem, 5.5vw, 3.4rem);
	line-height: 1.1;
	letter-spacing: -.02em;
	color: var(--np24-ink);
}

.np24-hero--page .np24-hero__title { max-width: 26ch; }

.np24-hero__lead {
	margin: 0 auto;
	max-width: 62ch;
	font-size: clamp(1.02rem, 1.6vw, 1.2rem);
	line-height: 1.65;
	color: var(--np24-ink-2);
}

.np24-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: .8rem;
	justify-content: center;
	margin: 1.8rem 0 1.4rem;
}

.np24-hero__points {
	display: flex;
	flex-wrap: wrap;
	gap: .6rem 1.6rem;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: .92rem;
	color: var(--np24-ink-3);
}

.np24-hero__points li::before {
	content: "✓";
	margin-right: .4rem;
	font-weight: 800;
	color: var(--np24-brand);
}

.np24-section { padding: clamp(2rem, 5vw, 3.5rem) 0; }

.np24-section__title {
	margin: 0 0 .7rem;
	font-size: clamp(1.5rem, 3.2vw, 2.2rem);
	line-height: 1.2;
	color: var(--np24-ink);
}

.np24-section__lead {
	margin: 0 0 1.8rem;
	max-width: 70ch;
	font-size: 1.02rem;
	line-height: 1.7;
	color: var(--np24-ink-2);
}

/* ── Typografia treści (wpisy blogowe, regulamin, polityka) ────────────────
 *
 * `.np24-prose`  — blok treści wewnątrz szerszego układu
 * `.np24-article` — cała strona tekstowa: węższa kolumna, większe odstępy
 *
 * Te klasy stylizują ZWYKŁE znaczniki (p, h2, ul, table…), bo treść wpisów
 * i stron prawnych przyszła z Drupala jako surowy HTML i nie ma klas np24-*.
 */

.np24-prose,
.np24-article {
	max-width: 72ch;
	line-height: 1.75;
	color: var(--np24-ink-2);
	font-size: 1.02rem;
}

.np24-article {
	margin: 0 auto;
	padding: clamp(1.5rem, 4vw, 2.5rem) 0;
	max-width: 75ch;
}

.np24-prose > :first-child,
.np24-article > :first-child { margin-top: 0; }

.np24-prose p,
.np24-article p { margin: 0 0 1.15rem; }

.np24-prose h2,
.np24-article h2 {
	margin: 2.4rem 0 .8rem;
	font-size: clamp(1.35rem, 2.6vw, 1.8rem);
	line-height: 1.25;
	color: var(--np24-ink);
	scroll-margin-top: 6rem;   /* żeby kotwica nie chowała się pod nagłówkiem */
}

.np24-prose h3,
.np24-article h3 {
	margin: 1.9rem 0 .6rem;
	font-size: 1.18rem;
	line-height: 1.3;
	color: var(--np24-ink);
	scroll-margin-top: 6rem;
}

.np24-prose h4,
.np24-article h4 {
	margin: 1.5rem 0 .5rem;
	font-size: 1.05rem;
	color: var(--np24-ink);
}

.np24-prose ul, .np24-prose ol,
.np24-article ul, .np24-article ol {
	margin: 0 0 1.15rem;
	padding-left: 1.4rem;
}

.np24-prose li,
.np24-article li { margin-bottom: .55rem; }

.np24-prose li::marker,
.np24-article li::marker { color: var(--np24-brand); font-weight: 700; }

/* Zagnieżdżone listy w regulaminie i polityce potrafią mieć 3 poziomy */
.np24-article ol ol,
.np24-article ul ul,
.np24-article ol ul,
.np24-article ul ol { margin: .55rem 0 .3rem; }

.np24-prose strong,
.np24-article strong { color: var(--np24-ink); font-weight: 700; }

.np24-prose a,
.np24-article a {
	color: var(--np24-brand);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.np24-prose a:hover,
.np24-article a:hover { color: var(--np24-brand-dark); }

.np24-article hr {
	margin: 2.5rem 0;
	border: 0;
	border-top: 1px solid var(--np24-line);
}

.np24-article blockquote {
	margin: 1.6rem 0;
	padding: .2rem 0 .2rem 1.2rem;
	border-left: 3px solid var(--np24-brand);
	color: var(--np24-ink-2);
	font-style: italic;
}

.np24-article img {
	max-width: 100%;
	height: auto;
	border-radius: var(--np24-radius-sm);
}

/* Tabele w treści (np. tabela odbiorców danych w polityce prywatności) */
.np24-article table,
.np24-prose table {
	width: 100%;
	margin: 0 0 1.6rem;
	border-collapse: collapse;
	font-size: .93rem;
	border: 1px solid var(--np24-line);
	border-radius: var(--np24-radius-sm);
	overflow: hidden;
}

.np24-article th, .np24-article td,
.np24-prose th, .np24-prose td {
	padding: .7rem .9rem;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid var(--np24-line);
}

.np24-article thead th,
.np24-prose thead th {
	background: var(--np24-surface-2);
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--np24-ink-2);
}

/* Tabela z Drupala miała własną klasę — nie zostawiamy jej bez stylu */
.table-pp { width: 100%; }

/* Nagłówek strony tekstowej */
.np24-article__header {
	margin-bottom: 2rem;
	padding-bottom: 1.4rem;
	border-bottom: 1px solid var(--np24-line);
}

.np24-article__header h1 {
	margin: 0 0 .5rem;
	font-size: clamp(1.7rem, 4vw, 2.4rem);
	line-height: 1.2;
	color: var(--np24-ink);
}

.np24-article__meta {
	margin: 0;
	font-size: .88rem;
	color: var(--np24-ink-3);
}

/* Spis treści dla długich dokumentów prawnych */
.np24-toc {
	margin: 0 0 2.2rem;
	padding: 1.2rem 1.4rem;
	background: var(--np24-surface-2);
	border: 1px solid var(--np24-line);
	border-radius: var(--np24-radius);
}

.np24-toc__title {
	margin: 0 0 .7rem;
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--np24-ink-3);
}

.np24-toc ol {
	margin: 0;
	padding: 0;
	list-style: none;
	columns: 2;
	column-gap: 2rem;
}

@media (max-width: 640px) { .np24-toc ol { columns: 1; } }

.np24-toc li { margin: 0 0 .4rem; break-inside: avoid; }

.np24-toc a {
	color: var(--np24-ink-2);
	text-decoration: none;
	font-size: .92rem;
}

.np24-toc a:hover { color: var(--np24-brand); text-decoration: underline; }

.np24-cols {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--np24-space);
	align-items: start;
}

.np24-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: var(--np24-space);
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: np24step;
}

.np24-steps__item {
	position: relative;
	padding: 1.6rem 1.6rem 1.6rem 4.2rem;
	background: var(--np24-surface);
	border: 1px solid var(--np24-line);
	border-radius: var(--np24-radius);
}

.np24-steps__item::before {
	counter-increment: np24step;
	content: counter(np24step);
	position: absolute;
	left: 1.4rem;
	top: 1.5rem;
	width: 2rem;
	height: 2rem;
	display: grid;
	place-items: center;
	background: var(--np24-brand);
	border-radius: 50%;
	color: #fff;
	font-weight: 800;
}

.np24-steps__title { margin: 0 0 .35rem; font-size: 1.1rem; color: var(--np24-ink); }
.np24-steps__item p { margin: 0; font-size: .94rem; line-height: 1.6; color: var(--np24-ink-2); }

/* ── Obrazy: hero, figury, galeria ─────────────────────────────────────── */

/* Proporcje wymuszone w CSS, bo zdjęcia z sesji mają różne kadry.
   Dzięki temu nie ma przeskoków układu przy ładowaniu (CLS). */

.np24-hero__media {
	margin: 2.2rem 0 0;
	border-radius: var(--np24-radius);
	overflow: hidden;
	box-shadow: var(--np24-shadow-lg);
}

.np24-hero__media img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 21 / 9;
	object-fit: cover;
}

@media (max-width: 700px) {
	.np24-hero__media img { aspect-ratio: 4 / 3; }
}

.np24-figure {
	margin: 0 0 2rem;
	border-radius: var(--np24-radius);
	overflow: hidden;
	background: var(--np24-surface-2);
}

.np24-figure img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.np24-figure--wide img { aspect-ratio: 21 / 9; }

.np24-figure figcaption {
	padding: .8rem 1.1rem;
	font-size: .88rem;
	line-height: 1.55;
	color: var(--np24-ink-3);
	background: var(--np24-surface-2);
}

/* Karta ze zdjęciem u góry — zdjęcie wychodzi na krawędzie karty. */
.np24-card--media { padding: 0; overflow: hidden; }
.np24-card--media > :not(.np24-card__img) { margin-left: 1.6rem; margin-right: 1.6rem; }
.np24-card--media > :last-child { margin-bottom: 1.6rem; }
.np24-card--media > .np24-card__title { margin-top: 1.3rem; }

.np24-card__img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

/* Galeria — siatka miniatur, klik otwiera pełny plik w nowej karcie.
   Jeśli wolisz lightbox, zastąp tę sekcję modułem „Galeria" w Divi. */
.np24-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: .8rem;
}

.np24-gallery__item {
	display: block;
	border-radius: var(--np24-radius-sm);
	overflow: hidden;
	background: var(--np24-surface-2);
	line-height: 0;
}

.np24-gallery__item img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	transition: transform .3s ease, filter .3s ease;
}

.np24-gallery__item:hover img { transform: scale(1.04); filter: brightness(1.05); }

.np24-gallery__item:focus-visible {
	outline: 3px solid var(--np24-brand);
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	.np24-gallery__item img { transition: none; }
	.np24-gallery__item:hover img { transform: none; }
}

/* ── Elementy bazowe ───────────────────────────────────────────────────── */

.np24-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	padding: .85rem 1.6rem;
	border: 2px solid transparent;
	border-radius: 999px;
	font: inherit;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: transform .15s ease, background-color .15s ease, border-color .15s ease, color .15s ease;
}

.np24-btn:focus-visible {
	outline: 3px solid var(--np24-brand);
	outline-offset: 3px;
}

.np24-btn--primary {
	background: var(--np24-brand);
	color: #fff;
}

.np24-btn--primary:hover {
	background: var(--np24-brand-dark);
	color: #fff;
	transform: translateY(-1px);
}

.np24-btn--ghost {
	background: transparent;
	border-color: currentcolor;
	color: var(--np24-ink);
}

.np24-btn--ghost:hover {
	background: var(--np24-ink);
	border-color: var(--np24-ink);
	color: #fff;
}

.np24-btn[disabled] {
	opacity: .6;
	cursor: not-allowed;
	transform: none;
}

.np24-phone {
	font-weight: 700;
	white-space: nowrap;
	color: var(--np24-brand);
	text-decoration: none;
}

.np24-phone:hover { text-decoration: underline; }

.np24-note {
	margin-top: 1rem;
	font-size: .9rem;
	color: var(--np24-ink-3);
}

/* ── Siatki i karty ────────────────────────────────────────────────────── */

.np24-grid {
	display: grid;
	gap: var(--np24-space);
}

.np24-grid--benefits { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.np24-grid--boxes    { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }
.np24-grid--cases    { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.np24-card {
	display: flex;
	flex-direction: column;
	gap: .55rem;
	padding: 1.6rem;
	background: var(--np24-surface);
	border: 1px solid var(--np24-line);
	border-radius: var(--np24-radius);
	box-shadow: var(--np24-shadow);
}

.np24-card__eyebrow {
	margin: 0;
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--np24-ink-3);
}

.np24-card__title {
	margin: 0;
	font-size: 1.25rem;
	line-height: 1.25;
	color: var(--np24-ink);
}

.np24-card__text {
	margin: 0;
	color: var(--np24-ink-2);
	font-size: .96rem;
	line-height: 1.6;
}

.np24-card--box { text-align: center; align-items: center; }

.np24-card--box .np24-card__title {
	font-size: 1.9rem;
	font-weight: 800;
	letter-spacing: -.02em;
}

.np24-card__price { margin: 0; color: var(--np24-ink-2); font-size: .95rem; }
.np24-card__price strong { font-size: 1.15rem; color: var(--np24-brand); }
.np24-card--box .np24-btn { margin-top: auto; }

.np24-card--benefit { border-top: 4px solid var(--np24-brand); }

/* Ikony przewag — czyste CSS, bez ładowania fontu ikon. */
.np24-ico {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: var(--np24-brand-soft) center / 22px 22px no-repeat;
	display: inline-block;
}

.np24-ico--shield   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF4600' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E"); }
.np24-ico--clock    { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF4600' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E"); }
.np24-ico--resize   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF4600' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 3h6v6M9 21H3v-6M21 3l-7 7M3 21l7-7'/%3E%3C/svg%3E"); }
.np24-ico--calendar { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF4600' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M16 3v4M8 3v4M3 11h18'/%3E%3C/svg%3E"); }
.np24-ico--card     { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF4600' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='5' width='20' height='14' rx='2'/%3E%3Cpath d='M2 10h20'/%3E%3C/svg%3E"); }
.np24-ico--truck    { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF4600' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 16V6h11v10M14 9h4l3 3v4h-7'/%3E%3Ccircle cx='7' cy='18' r='2'/%3E%3Ccircle cx='17' cy='18' r='2'/%3E%3C/svg%3E"); }

/* ── Partnerzy (transport / przeprowadzki) ─────────────────────────────── */

.np24-partner__logo {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: var(--np24-radius-sm);
}

.np24-partner__scope {
	margin: 0;
	padding-left: 1.1rem;
	font-size: .94rem;
	line-height: 1.6;
	color: var(--np24-ink-2);
}

/* ── Zastosowania ──────────────────────────────────────────────────────── */

.np24-case {
	padding-left: 1.1rem;
	border-left: 3px solid var(--np24-brand);
}

.np24-case__title {
	margin: 0 0 .3rem;
	font-size: 1.05rem;
	color: var(--np24-ink);
}

.np24-case__text {
	margin: 0;
	font-size: .94rem;
	line-height: 1.6;
	color: var(--np24-ink-2);
}

/* ── Kalkulator ────────────────────────────────────────────────────────── */

.np24-calc {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
	gap: var(--np24-space);
	padding: var(--np24-space);
	background: var(--np24-surface-2);
	border: 1px solid var(--np24-line);
	border-radius: var(--np24-radius);
}

@media (max-width: 860px) {
	.np24-calc { grid-template-columns: 1fr; }
}

.np24-field { margin: 0 0 1.4rem; padding: 0; border: 0; }
.np24-field:last-child { margin-bottom: 0; }

.np24-field__legend {
	padding: 0;
	margin-bottom: .7rem;
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--np24-ink-3);
}

.np24-field__hint {
	margin: .7rem 0 0;
	font-size: .85rem;
	color: var(--np24-ink-3);
}

.np24-chips {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
}

.np24-chip {
	padding: .6rem 1rem;
	background: var(--np24-surface);
	border: 1.5px solid var(--np24-line);
	border-radius: 999px;
	font: inherit;
	font-weight: 600;
	font-size: .95rem;
	color: var(--np24-ink);
	cursor: pointer;
	transition: border-color .15s ease, background-color .15s ease, color .15s ease;
}

.np24-chips--wide .np24-chip { flex: 1 1 auto; }

.np24-chip:hover { border-color: var(--np24-brand); }

.np24-chip[aria-checked="true"] {
	background: var(--np24-ink);
	border-color: var(--np24-ink);
	color: #fff;
}

.np24-chip:focus-visible {
	outline: 3px solid var(--np24-brand);
	outline-offset: 2px;
}

.np24-calc__result {
	display: flex;
	flex-direction: column;
	gap: .35rem;
	padding: 1.5rem;
	background: var(--np24-ink);
	border-radius: var(--np24-radius);
	color: #fff;
	text-align: center;
}

.np24-calc__size {
	margin: 0;
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgb(255 255 255 / 65%);
}

.np24-calc__price {
	margin: .2rem 0 0;
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: .4rem;
}

.np24-calc__amount {
	font-size: clamp(2.4rem, 6vw, 3.2rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -.03em;
	color: var(--np24-brand);
}

.np24-calc__unit { font-size: .95rem; color: rgb(255 255 255 / 75%); }

.np24-calc__monthly {
	margin: 0;
	font-size: .95rem;
	color: rgb(255 255 255 / 80%);
}

.np24-calc__capacity {
	margin: .6rem 0 1rem;
	font-size: .9rem;
	line-height: 1.55;
	color: rgb(255 255 255 / 70%);
}

.np24-calc__cta { align-self: stretch; }

.np24-calc__note {
	margin: .7rem 0 0;
	font-size: .78rem;
	color: rgb(255 255 255 / 55%);
}

/* ── Tabela cen ────────────────────────────────────────────────────────── */

.np24-table-wrap {
	overflow-x: auto;
	border: 1px solid var(--np24-line);
	border-radius: var(--np24-radius);
	background: var(--np24-surface);
}

.np24-table {
	width: 100%;
	border-collapse: collapse;
	font-size: .96rem;
}

.np24-table__caption {
	padding: 1rem 1.2rem;
	text-align: left;
	font-size: .9rem;
	color: var(--np24-ink-3);
	border-bottom: 1px solid var(--np24-line);
}

.np24-table th,
.np24-table td {
	padding: .85rem 1.2rem;
	text-align: left;
	border-bottom: 1px solid var(--np24-line);
	vertical-align: top;
}

.np24-table thead th {
	background: var(--np24-surface-2);
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--np24-ink-2);
	white-space: nowrap;
}

.np24-table tbody tr:last-child th,
.np24-table tbody tr:last-child td { border-bottom: 0; }

.np24-table tbody tr:hover { background: var(--np24-brand-soft); }

.np24-table__size {
	font-size: 1.05rem;
	font-weight: 800;
	white-space: nowrap;
	color: var(--np24-ink);
}

.np24-table__price { white-space: nowrap; font-weight: 600; }
.np24-table__unit  { display: block; font-size: .78rem; font-weight: 400; color: var(--np24-ink-3); }
.np24-table__capacity { min-width: 260px; color: var(--np24-ink-2); font-size: .9rem; }

/* ── FAQ ───────────────────────────────────────────────────────────────── */

.np24-faq {
	border: 1px solid var(--np24-line);
	border-radius: var(--np24-radius);
	overflow: hidden;
	background: var(--np24-surface);
}

.np24-faq__item + .np24-faq__item { border-top: 1px solid var(--np24-line); }

.np24-faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.1rem 1.4rem;
	font-weight: 700;
	font-size: 1.02rem;
	color: var(--np24-ink);
	cursor: pointer;
	list-style: none;
}

.np24-faq__q::-webkit-details-marker { display: none; }

.np24-faq__q::after {
	content: "";
	flex: 0 0 auto;
	width: 12px;
	height: 12px;
	border-right: 2.5px solid var(--np24-brand);
	border-bottom: 2.5px solid var(--np24-brand);
	transform: rotate(45deg);
	transition: transform .2s ease;
}

.np24-faq__item[open] .np24-faq__q::after { transform: rotate(-135deg); }
.np24-faq__q:hover { background: var(--np24-surface-2); }

.np24-faq__q:focus-visible {
	outline: 3px solid var(--np24-brand);
	outline-offset: -3px;
}

.np24-faq__a {
	padding: 0 1.4rem 1.3rem;
	color: var(--np24-ink-2);
	line-height: 1.7;
}

.np24-faq__a p { margin: 0; }

/* ── Formularze ────────────────────────────────────────────────────────── */

.np24-form {
	padding: var(--np24-space);
	background: var(--np24-surface);
	border: 1px solid var(--np24-line);
	border-radius: var(--np24-radius);
	box-shadow: var(--np24-shadow);
}

.np24-form__title { margin: 0 0 1.2rem; font-size: 1.4rem; color: var(--np24-ink); }

.np24-form__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 1rem;
}

.np24-form__row { display: flex; flex-direction: column; gap: .35rem; }
.np24-form__row--wide { grid-column: 1 / -1; }

.np24-form__label {
	font-size: .85rem;
	font-weight: 700;
	color: var(--np24-ink-2);
}

.np24-form__req { color: var(--np24-brand); }

.np24-form__input {
	width: 100%;
	padding: .8rem 1rem;
	background: var(--np24-surface);
	border: 1.5px solid var(--np24-line);
	border-radius: var(--np24-radius-sm);
	font: inherit;
	font-size: 1rem;
	color: var(--np24-ink);
	transition: border-color .15s ease, box-shadow .15s ease;
}

.np24-form__input:focus {
	border-color: var(--np24-brand);
	outline: none;
	box-shadow: 0 0 0 3px rgb(255 70 0 / 15%);
}

.np24-form__input[aria-invalid="true"] { border-color: #d92d20; }

.np24-form__error {
	min-height: 1rem;
	font-size: .8rem;
	color: #d92d20;
}

.np24-form__consent {
	margin: 1rem 0 0;
	font-size: .82rem;
	line-height: 1.6;
	color: var(--np24-ink-3);
}

.np24-form__consent a { color: var(--np24-ink-2); }

.np24-form__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
	margin-top: 1.2rem;
}

.np24-form__alt { font-size: .92rem; color: var(--np24-ink-3); }

.np24-form__status {
	margin: 1rem 0 0;
	padding: 0;
	font-size: .95rem;
	line-height: 1.6;
}

.np24-form__status:not(:empty) {
	padding: .9rem 1.1rem;
	border-radius: var(--np24-radius-sm);
}

.np24-form__status.is-ok {
	background: #ecfdf3;
	color: #05603a;
}

.np24-form__status.is-error {
	background: #fef3f2;
	color: #b42318;
}

.np24-form.is-sent .np24-form__grid,
.np24-form.is-sent .np24-form__actions,
.np24-form.is-sent .np24-form__consent { display: none; }

/* Honeypot — poza ekranem, niewidoczny dla ludzi, widoczny dla botów. */
.np24-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* ── Kontakt / mapa / CTA ──────────────────────────────────────────────── */

.np24-contact { margin: 0; padding: 0; list-style: none; display: grid; gap: 1.1rem; }

.np24-contact__item {
	display: flex;
	gap: .9rem;
	align-items: flex-start;
	line-height: 1.6;
	color: var(--np24-ink-2);
}

.np24-contact__item > span:last-child { display: flex; flex-direction: column; }

.np24-contact__item strong {
	font-size: .78rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--np24-ink-3);
}

.np24-contact__item a { color: var(--np24-ink); font-weight: 600; text-decoration: none; }
.np24-contact__item a:hover { color: var(--np24-brand); }
.np24-contact__item em { font-style: normal; color: var(--np24-brand); font-weight: 600; }

.np24-contact__icon {
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	background: var(--np24-brand-soft);
	border-radius: 10px;
	font-size: 1.05rem;
}

.np24-map {
	overflow: hidden;
	border-radius: var(--np24-radius);
	border: 1px solid var(--np24-line);
	line-height: 0;
}

.np24-cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--np24-space);
	padding: clamp(1.5rem, 4vw, 2.75rem);
	background: var(--np24-ink);
	border-radius: var(--np24-radius);
	color: #fff;
}

.np24-cta__title { margin: 0 0 .4rem; font-size: clamp(1.3rem, 3vw, 1.9rem); color: #fff; }
.np24-cta__text  { margin: 0; max-width: 52ch; color: rgb(255 255 255 / 75%); line-height: 1.65; }
.np24-cta__actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.np24-cta .np24-btn--ghost { color: #fff; }
.np24-cta .np24-btn--ghost:hover { background: #fff; color: var(--np24-ink); }

/* ── Ograniczenie animacji ─────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
	.np24-btn,
	.np24-chip,
	.np24-form__input,
	.np24-faq__q::after {
		transition: none;
	}
}
