/*
 * FabrykaCmyka 2.0 — podstrony treściowe: O nas (.fcs-onas), Kontakt (.fcs-kontakt),
 * CSR (.fcs-csr) i strona 404 (.fcs-404). Port stylow z handoffow 1:1, scope per widok.
 * Tokeny z motywu (assets/tokens.css) z fallbackami var(--fc-..., #hex).
 * Sekcje full-bleed poza kontenerem .fc2 → responsywnosc przez media queries (1080/680),
 * nie container queries. Uwaga: w komentarzach nigdy sekwencja gwiazdka-slash.
 */

/* ============================================================
 *  WSPOLNE tokeny + primitywy (wszystkie 4 widoki)
 * ============================================================ */
.fcs-onas,
.fcs-kontakt,
.fcs-csr,
.fcs-404 {
	--fcp-yellow: var(--fc-yellow, #FFDE2C);
	--fcp-yellow-deep: var(--fc-yellow-deep, #F5C400);
	--fcp-magenta: var(--fc-magenta, #C800A7);
	--fcp-magenta-d: var(--fc-magenta-d, #a90b8f);
	--fcp-cyan: var(--fc-cyan, #6EC1E4);
	--fcp-ink: var(--fc-ink, #2B2B2B);
	--fcp-text: var(--fc-text, #54595F);
	--fcp-soft: var(--fc-soft, #7A7A7A);
	--fcp-border: var(--fc-border, #ECECEC);
	--fcp-bg-soft: var(--fc-bg-soft, #F7F8F8);
	--fcp-ok: var(--fc-ok, #2ea05a);
	--fcp-err: var(--fc-err, #d62d2d);
	--fcp-head: var(--fc-font-head, 'Poppins', sans-serif);
	--fcp-body: var(--fc-font-body, 'Lato', sans-serif);

	font-family: var(--fcp-body);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

.fcs-onas,
.fcs-kontakt,
.fcs-csr {
	background: #141418;
	color: #E8E8EA;
}

.fcs-onas h1, .fcs-onas h2, .fcs-onas h3, .fcs-onas h4,
.fcs-kontakt h1, .fcs-kontakt h2, .fcs-kontakt h3, .fcs-kontakt h4,
.fcs-csr h1, .fcs-csr h2, .fcs-csr h3, .fcs-csr h4,
.fcs-404 h1 {
	font-family: var(--fcp-head);
	margin: 0;
	line-height: 1.12;
}

.fcs-onas p, .fcs-kontakt p, .fcs-csr p, .fcs-404 p { margin: 0; }

.fcs-onas a, .fcs-kontakt a, .fcs-csr a, .fcs-404 a {
	text-decoration: none;
	color: inherit;
}

.fcs-onas button, .fcs-kontakt button, .fcs-csr button {
	font-family: inherit;
	cursor: pointer;
}

/* Wrap — pelna szerokosc panelu z ustawien, cap na 1440 jak w handoffie. */
.fcp-wrap {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 56px;
}

/* Eyebrow (kreska + tekst). */
.fcp-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-family: var(--fcp-head);
	font-weight: 700;
	font-size: 12.5px;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	margin-bottom: 16px;
}
.fcp-eyebrow i { width: 22px; height: 2px; background: currentColor; display: block; flex: none; }

/* Reveal-on-scroll. */
.fcp-rv {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .7s cubic-bezier(.16, .8, .24, 1), transform .7s cubic-bezier(.16, .8, .24, 1);
}
.fcp-rv.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	.fcp-rv { transition: none; opacity: 1; transform: none; }
	.fcs-csr .fcp-logos__track { animation: none; }
}

/* Placeholder obrazka (gdy brak media_id). */
.fcp-imgph {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background:
		linear-gradient(135deg, rgba(110, 193, 228, .16), rgba(200, 0, 167, .12)),
		#1c1c22;
	display: block;
}
.fcp-imgph img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Przyciski. */
.fcp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	height: 52px;
	padding: 0 26px;
	border-radius: 11px;
	font-family: var(--fcp-head);
	font-weight: 700;
	font-size: 15.5px;
	border: 2px solid transparent;
	transition: .16s;
	white-space: nowrap;
}
.fcp-btn svg { flex: none; transition: transform .16s; }
.fcp-btn:hover svg { transform: translateX(3px); }

/* Kolor bazowy wariantow musi wygrywac z ogolna regula ".fcs-* a { color: inherit }" (0,1,1) —
   na zoltym CTA link-przycisk dziedziczyl atrament i ciemny przycisk byl nieczytelny
   (zgloszenie wlasciciela 2026-07-25). Podwojna klasa = (0,2,0); blok PRZED hoverami,
   zeby hovery o rownej specyficznosci (klasa+pseudoklasa) dalej wygrywaly kolejnoscia. */
.fcp-btn.fcp-btn--yellow { color: #1a1600; }
.fcp-btn.fcp-btn--dark { color: #fff; }
.fcp-btn.fcp-btn--onyellow { color: #1a1600; }
.fcp-btn.fcp-btn--outdark { color: #1a1600; }

.fcp-btn--yellow { background: var(--fcp-yellow); color: #1a1600; }
.fcp-btn--yellow:hover,
.fcp-btn--yellow:focus-visible { background: #fff; color: #1a1600; outline: none; }
.fcp-btn--yellow:active { background: var(--fcp-yellow-deep); color: #1a1600; }

.fcp-btn--dark { background: #141418; color: #fff; }
.fcp-btn--dark:hover,
.fcp-btn--dark:focus-visible { background: var(--fcp-magenta); color: #fff; outline: none; }
.fcp-btn--dark:active { background: var(--fcp-magenta-d); color: #fff; }

.fcp-btn--onyellow { background: #fff; color: #1a1600; border-color: #fff; }
.fcp-btn--onyellow:hover,
.fcp-btn--onyellow:focus-visible { background: #141418; color: #fff; border-color: #141418; outline: none; }
.fcp-btn--onyellow:active { background: #000; color: #fff; border-color: #000; }

.fcp-btn--outdark { background: transparent; color: #1a1600; border-color: #1a1600; }
.fcp-btn--outdark:hover,
.fcp-btn--outdark:focus-visible { background: #1a1600; color: var(--fcp-yellow); outline: none; }
.fcp-btn--outdark:active { background: #000; color: var(--fcp-yellow); }

/* Breadcrumb (hero O nas / Kontakt). */
.fcp-crumb {
	font-family: var(--fcp-head);
	font-weight: 600;
	font-size: 13px;
	color: #c9c9d2;
	margin-bottom: 20px;
	display: flex;
	gap: 9px;
	align-items: center;
	flex-wrap: wrap;
}
.fcp-crumb a:hover { color: var(--fcp-yellow); }
.fcp-crumb span { color: #7a7a84; }

/* Hero z obrazem (O nas / Kontakt). */
.fcp-mhero {
	position: relative;
	min-height: 460px;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background: #141418;
}
/* Wysokosc hero WSPOLNA dla O nas / Kontakt / metod nadruku (ten sam element) — nie dodawac per-strona min-height. */
.fcp-mhero__media { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.fcp-mhero__scrim {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(8, 8, 12, .82), rgba(8, 8, 12, .45) 55%, rgba(8, 8, 12, .12));
}
.fcp-mhero__in { position: relative; z-index: 2; width: 100%; padding-bottom: 60px; }
.fcp-mhero h1 {
	font-family: var(--fcp-head);
	font-weight: 800;
	font-size: 72px;
	line-height: 1;
	letter-spacing: -2px;
	text-transform: uppercase;
	color: #fff;
	text-shadow: 0 4px 34px rgba(0, 0, 0, .45);
}
.fcs-kontakt .fcp-mhero h1 { font-size: 66px; max-width: 720px; }
.fcp-mhero__bar { width: 92px; height: 5px; background: var(--fcp-yellow); border-radius: 3px; margin-top: 24px; }

/* Sekcje. */
.fcp-sec { padding: 96px 0; }
.fcp-sec--white { background: #fff; color: var(--fcp-text); }

.fcp-shead { max-width: 720px; margin-bottom: 52px; }
.fcp-shead--c { margin: 0 auto 56px; text-align: center; }
.fcp-shead h2 {
	font-size: 46px;
	font-weight: 800;
	letter-spacing: -1.4px;
	text-transform: uppercase;
	line-height: 1;
	color: #fff;
}
.fcp-shead p { font-size: 17px; margin-top: 16px; text-wrap: pretty; opacity: .75; }
.fcp-sec .fcp-eyebrow { color: var(--fcp-yellow); }
.fcp-sec--white .fcp-eyebrow { color: var(--fcp-magenta); }
.fcp-sec--white .fcp-shead h2 { color: var(--fcp-ink); }
.fcp-sec--white .fcp-shead p { opacity: 1; color: var(--fcp-soft); }
.fcp-shead--c .fcp-divider { width: 120px; height: 2px; background: rgba(255, 255, 255, .16); margin: 22px auto 0; }
.fcp-sec--white .fcp-shead--c .fcp-divider { background: var(--fcp-border); }

/* ============================================================
 *  O NAS
 * ============================================================ */

/* Wideo. */
.fcs-onas .fcp-vidhead { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.fcs-onas .fcp-vidhead h2 {
	font-family: var(--fcp-head);
	font-weight: 800;
	font-size: 46px;
	letter-spacing: -1.4px;
	text-transform: uppercase;
	color: #fff;
	line-height: 1;
}
.fcs-onas .fcp-vidhead p {
	font-family: var(--fcp-head);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--fcp-yellow);
	margin-top: 16px;
}
.fcs-onas .fcp-vidframe {
	position: relative;
	max-width: 960px;
	margin: 0 auto;
	aspect-ratio: 16 / 9;
	border-radius: 20px;
	overflow: hidden;
	background: #1c1c22;
	border: 1px solid rgba(255, 255, 255, .1);
	box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .7);
}
.fcs-onas .fcp-vidframe .fcp-imgph { position: absolute; inset: 0; }
.fcs-onas .fcp-vidframe iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 5; }
.fcs-onas .fcp-vidplay {
	position: absolute;
	inset: 0;
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(10, 10, 14, .28);
	border: 0;
	transition: background .2s;
}
.fcs-onas .fcp-vidplay:hover,
.fcs-onas .fcp-vidplay:focus-visible { background: rgba(10, 10, 14, .12); outline: none; }
.fcs-onas .fcp-vidplay span {
	width: 92px;
	height: 64px;
	border-radius: 16px;
	background: #ff0000;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 12px 34px -8px rgba(255, 0, 0, .6);
	transition: transform .18s;
}
.fcs-onas .fcp-vidplay:hover span,
.fcs-onas .fcp-vidplay:focus-visible span { transform: scale(1.08); }
.fcs-onas .fcp-vidplay svg { margin-left: 3px; flex: none; }

/* Split (kim jesteśmy / co nas wyróżnia). */
.fcs-onas .fcp-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.fcs-onas .fcp-split--rev .fcp-split__media { order: -1; }
.fcs-onas .fcp-split__body h2 {
	font-family: var(--fcp-head);
	font-weight: 800;
	font-size: 44px;
	letter-spacing: -1.4px;
	text-transform: uppercase;
	line-height: 1.02;
}
.fcs-onas .fcp-split--dark .fcp-split__body h2 { color: #fff; }
.fcs-onas .fcp-split--white .fcp-split__body h2 { color: var(--fcp-ink); }
.fcs-onas .fcp-split__body p { font-size: 16px; line-height: 1.8; margin-top: 18px; text-wrap: pretty; }
.fcs-onas .fcp-split--dark .fcp-split__body p { color: #a6a6b0; }
.fcs-onas .fcp-split--white .fcp-split__body p { color: var(--fcp-text); }
.fcs-onas .fcp-split__media {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background: #1c1c22;
	border: 1px solid rgba(255, 255, 255, .08);
	aspect-ratio: 4 / 3;
}
.fcs-onas .fcp-split--white .fcp-split__media { border-color: var(--fcp-border); }

/* Wyróżniki (lista z ikonami). */
.fcs-onas .fcp-feat { display: flex; flex-direction: column; gap: 22px; margin-top: 26px; }
.fcs-onas .fcp-feat li { list-style: none; display: flex; gap: 16px; align-items: flex-start; }
.fcs-onas .fcp-feat__ico {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--fcp-bg-soft);
	border: 1px solid var(--fcp-border);
	color: var(--fcp-magenta);
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
}
.fcs-onas .fcp-feat__ico svg { flex: none; }
.fcs-onas .fcp-feat h3 {
	font-family: var(--fcp-head);
	font-weight: 800;
	font-size: 16.5px;
	color: var(--fcp-ink);
	margin-bottom: 5px;
	letter-spacing: -.2px;
}
.fcs-onas .fcp-feat p { font-size: 14.5px; color: var(--fcp-text); line-height: 1.62; text-wrap: pretty; }

/* Staty. */
.fcs-onas .fcp-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 8px; }
.fcs-onas .fcp-stat { text-align: center; padding: 12px; }
.fcs-onas .fcp-stat b {
	display: block;
	font-family: var(--fcp-head);
	font-weight: 800;
	font-size: 52px;
	line-height: 1;
	color: var(--fcp-yellow);
	letter-spacing: -2px;
}
.fcs-onas .fcp-stat span {
	display: block;
	font-family: var(--fcp-head);
	font-weight: 600;
	font-size: 13.5px;
	letter-spacing: .4px;
	color: #a6a6b0;
	margin-top: 12px;
	text-transform: uppercase;
}

/* ============================================================
 *  KONTAKT — zespol + formularz + dane
 * ============================================================ */
.fcs-kontakt .fcp-teamgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fcs-kontakt .fcp-tcard {
	background: #1c1c22;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 18px;
	padding: 30px 26px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: transform .2s cubic-bezier(.16, .8, .24, 1), border-color .2s, box-shadow .2s;
}
.fcs-kontakt .fcp-tcard:hover {
	transform: translateY(-6px);
	border-color: var(--fcp-magenta);
	box-shadow: 0 28px 54px -30px rgba(200, 0, 167, .5);
}
.fcs-kontakt .fcp-tcard--lead { border-color: rgba(255, 222, 44, .35); background: linear-gradient(180deg, #22201a, #1a1a1f); }
.fcs-kontakt .fcp-tcard--lead:hover { border-color: var(--fcp-yellow); box-shadow: 0 28px 54px -30px rgba(255, 222, 44, .4); }
.fcs-kontakt .fcp-tcard__av {
	width: 104px;
	height: 104px;
	border-radius: 50%;
	background: #26262f;
	border: 2px solid rgba(255, 255, 255, .12);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--fcp-head);
	font-weight: 800;
	font-size: 30px;
	color: var(--fcp-yellow);
	margin-bottom: 18px;
}
.fcs-kontakt .fcp-tcard__av--img { overflow: hidden; padding: 0; }
.fcs-kontakt .fcp-tcard__av--img img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; }
.fcs-kontakt .fcp-tcard--lead .fcp-tcard__av { background: var(--fcp-yellow); color: #1a1600; border-color: var(--fcp-yellow); }
.fcs-kontakt .fcp-tcard__badge {
	font-family: var(--fcp-head);
	font-weight: 800;
	font-size: 10px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #1a1600;
	background: var(--fcp-yellow);
	padding: 4px 11px;
	border-radius: 999px;
	margin-bottom: 14px;
}
.fcs-kontakt .fcp-tcard h3 {
	font-family: var(--fcp-head);
	font-weight: 800;
	font-size: 18px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: -.2px;
}
.fcs-kontakt .fcp-tcard__role { font-size: 13.5px; color: #a6a6b0; margin-top: 6px; line-height: 1.45; min-height: 38px; }
.fcs-kontakt .fcp-tcard__cont { display: flex; flex-direction: column; gap: 5px; margin-top: 16px; }
.fcs-kontakt .fcp-tcard__cont a { font-size: 13.8px; color: #d4d4dc; }
.fcs-kontakt .fcp-tcard__cont a:hover { color: var(--fcp-yellow); }
.fcs-kontakt .fcp-tcard__tel { font-family: var(--fcp-head); font-weight: 700; font-size: 14px; color: #fff; }
.fcs-kontakt .fcp-tcard__flags { display: flex; gap: 8px; margin-top: 18px; }
.fcs-kontakt .fcp-flag {
	width: 26px;
	height: 18px;
	border-radius: 3px;
	overflow: hidden;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, .14);
	flex: none;
}
.fcs-kontakt .fcp-flag svg { display: block; }

/* Kontakt — form + dane (sekcja biala). */
.fcs-kontakt .fcp-contact { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: start; }
.fcs-kontakt .fcp-cform h2 {
	font-family: var(--fcp-head);
	font-weight: 800;
	font-size: 38px;
	text-transform: uppercase;
	letter-spacing: -1.2px;
	color: var(--fcp-ink);
	margin-bottom: 26px;
}
.fcs-kontakt .fcp-field { margin-bottom: 18px; }
.fcs-kontakt .fcp-field label {
	display: block;
	font-family: var(--fcp-head);
	font-weight: 700;
	font-size: 14px;
	color: var(--fcp-ink);
	margin-bottom: 8px;
}
.fcs-kontakt .fcp-field input,
.fcs-kontakt .fcp-field textarea {
	width: 100%;
	border: 1.5px solid var(--fcp-border);
	border-radius: 11px;
	background: #fff;
	color: var(--fcp-ink);
	padding: 14px 16px;
	font-size: 15px;
	font-family: var(--fcp-body);
	outline: none;
	transition: .15s;
}
.fcs-kontakt .fcp-field input:focus,
.fcs-kontakt .fcp-field input:focus-visible,
.fcs-kontakt .fcp-field textarea:focus,
.fcs-kontakt .fcp-field textarea:focus-visible {
	border-color: var(--fcp-magenta);
	box-shadow: 0 0 0 4px rgba(200, 0, 167, .1);
}
.fcs-kontakt .fcp-field textarea { min-height: 150px; resize: vertical; }
/* Honeypot — ukryte pole; poza ekranem, nie display:none (boty pomijaja hidden). */
.fcs-kontakt .fcp-hp {
	position: absolute !important;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.fcs-kontakt .fcp-submit {
	width: 100%;
	height: 56px;
	border: 0;
	border-radius: 12px;
	background: var(--fcp-magenta);
	color: #fff;
	font-family: var(--fcp-head);
	font-weight: 800;
	font-size: 16px;
	letter-spacing: .4px;
	transition: .16s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.fcs-kontakt .fcp-submit svg { flex: none; }
/* GOTCHA: property .hidden nie dziala na svg — chowamy strzalke atrybutem hidden,
 * a jawna regula bije ewentualne globalne svg{display:...} motywu (wzorzec fcp-copy). */
.fcs-kontakt .fcp-submit svg[hidden] { display: none; }
.fcs-kontakt .fcp-submit:hover,
.fcs-kontakt .fcp-submit:focus-visible { background: var(--fcp-magenta-d); outline: none; }
.fcs-kontakt .fcp-submit:active { background: #8f0a7e; }
.fcs-kontakt .fcp-submit[disabled] { opacity: .6; cursor: default; }
/* Bramka RODO: przycisk wyszarzony do czasu zaznaczenia zgody (aria-disabled ustawiany tylko dla tej
 * bramki, NIE przy wysyłce — dlatego sending/spinner nie łapie tego kursora). Reguła po bazowej +
 * !important na tle/kursorze, bo Astra przemalowuje <button>:hover/focus/active swoim kolorem. */
.fcs-kontakt .fcp-submit[aria-disabled="true"],
.fcs-kontakt .fcp-submit[aria-disabled="true"]:hover,
.fcs-kontakt .fcp-submit[aria-disabled="true"]:focus,
.fcs-kontakt .fcp-submit[aria-disabled="true"]:active {
	background: var(--fcp-magenta) !important;
	opacity: .5 !important;
	cursor: not-allowed !important;
}
.fcs-kontakt .fcp-fmsg { margin-top: 16px; padding: 14px 18px; border-radius: 11px; font-family: var(--fcp-head); font-weight: 700; font-size: 14px; }
.fcs-kontakt .fcp-fmsg.is-ok { background: rgba(46, 160, 90, .12); border: 1px solid rgba(46, 160, 90, .4); color: #1d7a45; }
.fcs-kontakt .fcp-fmsg.is-err { background: rgba(214, 69, 69, .1); border: 1px solid rgba(214, 69, 69, .4); color: #b23131; }

/* ============================================================
 *  STANY WYSYŁKI FORMULARZA (idle -> sending -> ok | err)
 *  Port 1:1 z handoffu46. Prefiks klas fcp-, keyframes fcpCf*.
 *  W komentarzach nie uzywac sekwencji gwiazdka-ukosnik.
 * ============================================================ */

/* Kotwica nakladki. */
.fcs-kontakt .fcp-cfwrap { position: relative; }

/* 1. STAN WYSYLANIE — przycisk disabled + spinner. */
.fcs-kontakt .fcp-submit:disabled { opacity: .85; cursor: progress; }
.fcs-kontakt .fcp-cfspin {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 2.4px solid rgba(255, 255, 255, .35);
	border-top-color: #fff;
	flex: none;
	animation: fcpCfSpin .7s linear infinite;
}
@keyframes fcpCfSpin { to { transform: rotate(360deg); } }

/* 2. KOMUNIKAT POD FORMULARZEM (wariant inline). */
.fcs-kontakt .fcp-cfmsg {
	margin-top: 18px;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px 20px;
	border-radius: 14px;
	animation: fcpCfIn .42s cubic-bezier(.2, .85, .25, 1) both;
}
@keyframes fcpCfIn {
	from { opacity: 0; transform: translateY(12px) scale(.98); }
	to { opacity: 1; transform: none; }
}
.fcs-kontakt .fcp-cfmsg__ico {
	flex: none;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.fcs-kontakt .fcp-cfmsg__ico svg { width: 22px; height: 22px; }
/* Rysowanie ikony — stroke-dashoffset. */
.fcs-kontakt .fcp-cfmsg__ico svg path,
.fcs-kontakt .fcp-cfmsg__ico svg line {
	stroke-dasharray: 48;
	stroke-dashoffset: 48;
	animation: fcpCfDraw .5s .16s cubic-bezier(.5, 0, .3, 1) forwards;
}
.fcs-kontakt .fcp-cfmsg__ico svg line:nth-of-type(2) { animation-delay: .32s; }
@keyframes fcpCfDraw { to { stroke-dashoffset: 0; } }
.fcs-kontakt .fcp-cfmsg b { display: block; font-family: var(--fcp-head); font-weight: 800; font-size: 17px; letter-spacing: -.2px; text-transform: uppercase; }
.fcs-kontakt .fcp-cfmsg p { margin: 5px 0 0; font-size: 13.5px; line-height: 1.5; }
.fcs-kontakt .fcp-cfmsg--ok { background: rgba(46, 160, 90, .1); border: 1px solid rgba(46, 160, 90, .4); color: #1a6d3d; }
.fcs-kontakt .fcp-cfmsg--err {
	background: rgba(214, 45, 45, .08);
	border: 1px solid rgba(214, 45, 45, .38);
	color: #a01d1d;
	animation: fcpCfIn .42s cubic-bezier(.2, .85, .25, 1) both, fcpCfShake .5s .2s;
}
@keyframes fcpCfShake {
	0%, 100% { transform: translateX(0); }
	18% { transform: translateX(-7px); }
	38% { transform: translateX(6px); }
	58% { transform: translateX(-4px); }
	78% { transform: translateX(3px); }
}

/* 3. KOLKO IKONY — wlasne modyfikatory (nie mieszac z .fcp-cfmsg--ok/--err na kontenerze). */
.fcs-kontakt .fcp-cfmsg__ico--ok { background: var(--fcp-ok); color: #fff; animation: fcpCfPop .5s cubic-bezier(.2, 1.5, .4, 1) both; }
.fcs-kontakt .fcp-cfmsg__ico--err { background: var(--fcp-err); color: #fff; animation: fcpCfPop .5s cubic-bezier(.2, 1.5, .4, 1) both; }
@keyframes fcpCfPop {
	from { transform: scale(.4); opacity: 0; }
	to { transform: none; opacity: 1; }
}
/* W wariancie inline ikone stylują te same modyfikatory kontenera. */
.fcs-kontakt .fcp-cfmsg--ok .fcp-cfmsg__ico { background: var(--fcp-ok); color: #fff; animation: fcpCfPop .5s cubic-bezier(.2, 1.5, .4, 1) both; }
.fcs-kontakt .fcp-cfmsg--err .fcp-cfmsg__ico { background: var(--fcp-err); color: #fff; }

.fcs-kontakt .fcp-cfmsg__retry {
	margin-top: 11px;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 9px 15px;
	border-radius: 9px;
	border: 1px solid currentColor;
	background: none;
	color: inherit;
	font-family: var(--fcp-head);
	font-weight: 800;
	font-size: 12.5px;
	letter-spacing: .4px;
	text-transform: uppercase;
	cursor: pointer;
	transition: .15s;
}
.fcs-kontakt .fcp-cfmsg__retry:hover,
.fcs-kontakt .fcp-cfmsg__retry:focus-visible { background: var(--fcp-err); border-color: var(--fcp-err); color: #fff; outline: none; }

/* 4. NAKLADKA NA FORMULARZ (wariant overlay — domyslny). */
.fcs-kontakt .fcp-cfover {
	position: absolute;
	inset: -10px;
	z-index: 5;
	border-radius: 18px;
	background: rgba(255, 255, 255, .94);
	backdrop-filter: blur(3px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 36px;
	animation: fcpCfIn .4s cubic-bezier(.2, .85, .25, 1) both;
}
.fcs-kontakt .fcp-cfover .fcp-cfmsg__ico { width: 74px; height: 74px; margin-bottom: 20px; }
.fcs-kontakt .fcp-cfover .fcp-cfmsg__ico svg { width: 38px; height: 38px; }
.fcs-kontakt .fcp-cfover b { font-family: var(--fcp-head); font-weight: 800; font-size: 30px; text-transform: uppercase; letter-spacing: -.8px; color: var(--fcp-ink); }
.fcs-kontakt .fcp-cfover p { margin: 10px 0 0; font-size: 14.5px; max-width: 400px; line-height: 1.55; color: var(--fcp-text); }
.fcs-kontakt .fcp-cfover__btn {
	margin-top: 22px;
	white-space: nowrap;
	padding: 13px 22px;
	border-radius: 11px;
	border: 0;
	background: var(--fcp-magenta);
	color: #fff;
	font-family: var(--fcp-head);
	font-weight: 800;
	font-size: 13.5px;
	letter-spacing: .5px;
	text-transform: uppercase;
	cursor: pointer;
	transition: .15s;
}
.fcs-kontakt .fcp-cfover__btn:hover,
.fcs-kontakt .fcp-cfover__btn:focus-visible { background: var(--fcp-magenta-d); outline: none; }

/* 5. DOSTEPNOSC — wylacz ruch, zostaw fade. */
@media (prefers-reduced-motion: reduce) {
	.fcs-kontakt .fcp-cfmsg,
	.fcs-kontakt .fcp-cfover,
	.fcs-kontakt .fcp-cfmsg__ico--ok,
	.fcs-kontakt .fcp-cfmsg__ico--err,
	.fcs-kontakt .fcp-cfmsg--ok .fcp-cfmsg__ico { animation: none !important; }
	.fcs-kontakt .fcp-cfmsg__ico svg path,
	.fcs-kontakt .fcp-cfmsg__ico svg line { stroke-dashoffset: 0; animation: none; }
	.fcs-kontakt .fcp-cfspin { animation-duration: 1.4s; }
}
.fcs-kontakt .fcp-consent {
	display: flex;
	gap: 11px;
	align-items: flex-start;
	margin: 4px 0 20px;
	font-size: 13px;
	color: var(--fcp-text);
	line-height: 1.5;
	cursor: pointer;
}
.fcs-kontakt .fcp-consent input {
	width: 20px;
	height: 20px;
	flex: none;
	margin: 1px 0 0;
	accent-color: var(--fcp-magenta);
	cursor: pointer;
}
/* Link w zgodzie musi być WIDOCZNY (podkreślenie) — magenta na jasnym tle formularza. */
.fcs-kontakt .fcp-consent a { color: var(--fcp-magenta); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.fcs-kontakt .fcp-consent a:hover,
.fcs-kontakt .fcp-consent a:focus-visible { color: var(--fcp-magenta-d); text-decoration-thickness: 2px; }

.fcs-kontakt .fcp-info {
	display: flex;
	flex-direction: column;
	gap: 34px;
	background: var(--fcp-bg-soft);
	border: 1px solid var(--fcp-border);
	border-radius: 20px;
	padding: 38px 34px;
}
.fcs-kontakt .fcp-infobox h4 {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--fcp-head);
	font-weight: 800;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: .4px;
	color: var(--fcp-ink);
	margin-bottom: 18px;
}
.fcs-kontakt .fcp-infobox h4 span {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: var(--fcp-ink);
	color: var(--fcp-yellow);
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
}
.fcs-kontakt .fcp-inforows { display: flex; flex-direction: column; gap: 9px; font-size: 15px; color: var(--fcp-text); line-height: 1.55; }
.fcs-kontakt .fcp-inforows b { color: var(--fcp-ink); font-family: var(--fcp-head); font-weight: 800; font-size: 16px; }
.fcs-kontakt .fcp-inforows .fcp-acct { display: block; }
.fcs-kontakt .fcp-inforows .fcp-acct + .fcp-acct { margin-top: 8px; }
.fcs-kontakt .fcp-inforows .fcp-acct b { font-size: 14px; }
.fcs-kontakt .fcp-inforows .fcp-mono { font-variant-numeric: tabular-nums; }
.fcs-kontakt .fcp-acct__num { display: inline-flex; align-items: center; gap: 8px; }
.fcs-kontakt .fcp-copy {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	background: none;
	color: #8a9096;
	cursor: pointer;
	line-height: 0;
	transition: color .18s ease;
}
.fcs-kontakt .fcp-copy:hover,
.fcs-kontakt .fcp-copy:focus-visible { color: var(--fcp-magenta); }
.fcs-kontakt .fcp-copy.is-done { color: var(--fcp-magenta); }
/* Atrybut hidden na svg przegrywa z globalnym display — jawna reguła (gotcha jak fc-sgm w v1.31). */
.fcs-kontakt .fcp-copy svg[hidden] { display: none; }

/* ============================================================
 *  CSR
 * ============================================================ */
/* Płynne przewijanie do kotwic (przycisk hero „Nasza eko filozofia" → #csr-filary). */
html:has(.fcs-csr) { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html:has(.fcs-csr) { scroll-behavior: auto; }
}
.fcs-csr .fcp-csrhero {
	position: relative;
	min-height: 640px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	background: #141418;
}
.fcs-csr .fcp-csrhero__media { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.fcs-csr .fcp-csrhero__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8, 8, 12, .5), rgba(8, 8, 12, .62)); }
.fcs-csr .fcp-csrhero__in { position: relative; z-index: 2; max-width: 900px; padding: 70px 32px; }
.fcs-csr .fcp-csrhero h1 {
	font-family: var(--fcp-head);
	font-weight: 800;
	font-size: 86px;
	line-height: .98;
	letter-spacing: -2.5px;
	text-transform: uppercase;
	color: var(--fcp-yellow);
	text-shadow: 0 6px 40px rgba(0, 0, 0, .4);
}
.fcs-csr .fcp-csrhero p {
	font-size: 18px;
	color: #f0f0f2;
	margin: 26px auto 0;
	max-width: 680px;
	line-height: 1.7;
	text-shadow: 0 2px 16px rgba(0, 0, 0, .5);
	text-wrap: pretty;
}
.fcs-csr .fcp-csrhero .fcp-btn { margin-top: 34px; }

/* CSR filary. */
.fcs-csr .fcp-pill { position: relative; background: #f4f5f3; color: var(--fcp-text); padding: 80px 0 100px; overflow: hidden; }
/* Tlo-zdjecie sekcji filarow (zgloszenie wlasciciela 2026-07-25): ledwo widoczne — mocny jasny overlay. */
.fcs-csr .fcp-pill__bg { position: absolute; inset: 0; z-index: 0; display: block; }
.fcs-csr .fcp-pill__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fcs-csr .fcp-pill__bg::after { content: ""; position: absolute; inset: 0; background: rgba(244, 245, 243, .86); }
.fcs-csr .fcp-pill__in { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; padding: 0 32px; }
.fcs-csr .fcp-pill h2 { font-family: var(--fcp-head); font-weight: 800; font-size: 38px; letter-spacing: .5px; text-transform: uppercase; color: var(--fcp-ink); text-align: center; }
.fcs-csr .fcp-pill__lead { text-align: center; font-size: 15.5px; color: var(--fcp-soft); margin: 20px auto 0; max-width: 620px; }
/* Odstęp nagłówka sekcji od kart (1:1 z handoffem — w projekcie dawał go margines leadu; tu na wrapperze,
   by zadziałał też gdy podtytuł jest pusty). */
.fcs-csr .fcp-pill__in > .fcp-rv:first-child { margin-bottom: 56px; }
.fcs-csr .fcp-pill__list { display: flex; flex-direction: column; gap: 26px; }
.fcs-csr .fcp-pill__card { display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: center; }
.fcs-csr .fcp-pill__num {
	width: 66px;
	height: 66px;
	border-radius: 50%;
	background: #141418;
	color: #fff;
	font-family: var(--fcp-head);
	font-weight: 800;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
}
.fcs-csr .fcp-pill__num svg { flex: none; }
.fcs-csr .fcp-pill__body {
	background: #fff;
	border: 1px solid var(--fcp-border);
	border-radius: 16px;
	padding: 26px 30px;
	box-shadow: 0 20px 40px -30px rgba(0, 0, 0, .35);
}
.fcs-csr .fcp-pill__body h3 { font-family: var(--fcp-head); font-weight: 800; font-size: 20px; text-transform: uppercase; letter-spacing: -.2px; color: var(--fcp-ink); margin-bottom: 10px; }
.fcs-csr .fcp-pill__body p { font-size: 14.5px; color: var(--fcp-text); line-height: 1.65; text-wrap: pretty; }

/* CSR eco (naprzemienne wiersze). */
.fcs-csr .fcp-eco { background: #fafafa; color: var(--fcp-text); }
.fcs-csr .fcp-eco__grid { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--fcp-border); }
.fcs-csr .fcp-eco__aside { padding: 60px 56px; display: flex; flex-direction: column; justify-content: center; }
.fcs-csr .fcp-eco__aside--r { border-left: 1px solid var(--fcp-border); }
.fcs-csr .fcp-eco__aside--l { border-right: 1px solid var(--fcp-border); }
.fcs-csr .fcp-eco__ic { width: 82px; height: 82px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #1a1600; margin-bottom: 26px; flex: none; }
.fcs-csr .fcp-eco__ic svg { flex: none; }
.fcs-csr .fcp-eco__ic--y { background: radial-gradient(circle at 38% 32%, #FFE873, #F5C400); }
.fcs-csr .fcp-eco__ic--c { background: radial-gradient(circle at 38% 32%, #BEE3F1, #6EC1E4); color: #123; }
.fcs-csr .fcp-eco__ic--m { background: radial-gradient(circle at 38% 32%, #E24FC6, #B4008F); color: #fff; }
.fcs-csr .fcp-eco__eyebrow { font-family: var(--fcp-head); font-weight: 700; font-size: 12px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--fcp-soft); margin-bottom: 14px; }
.fcs-csr .fcp-eco__title { font-family: var(--fcp-head); font-weight: 800; font-size: 32px; letter-spacing: -.6px; color: var(--fcp-ink); line-height: 1.1; }
.fcs-csr .fcp-eco__desc { font-size: 15px; color: var(--fcp-text); line-height: 1.75; margin-top: 18px; text-wrap: pretty; }
.fcs-csr .fcp-eco__items { display: flex; flex-direction: column; }
.fcs-csr .fcp-eco__item { padding: 40px 56px; border-bottom: 1px solid var(--fcp-border); display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: start; }
.fcs-csr .fcp-eco__item:last-child { border-bottom: 0; }
.fcs-csr .fcp-eco__dot { width: 46px; height: 46px; border-radius: 50%; flex: none; margin-top: 4px; }
.fcs-csr .fcp-eco__dot--y { background: radial-gradient(circle at 40% 32%, #FFE873, #F5C400 78%); }
.fcs-csr .fcp-eco__dot--c { background: radial-gradient(circle at 40% 32%, #CDE9F4, #6EC1E4 78%); }
.fcs-csr .fcp-eco__dot--m { background: radial-gradient(circle at 40% 32%, #E24FC6, #B4008F 78%); }
.fcs-csr .fcp-eco__item h3 { font-family: var(--fcp-head); font-weight: 800; font-size: 20px; letter-spacing: -.2px; color: var(--fcp-ink); line-height: 1.2; margin-bottom: 10px; }
.fcs-csr .fcp-eco__item p { font-size: 14.5px; color: var(--fcp-text); line-height: 1.68; text-wrap: pretty; }
.fcs-csr .fcp-eco__item p + p { margin-top: 8px; }

/* CSR logotypy certyfikatow — przewijany pasek (marquee, czysty CSS, bez JS). */
.fcs-csr .fcp-logos {
	background: #fff;
	padding: 50px 0;
	border-top: 1px solid var(--fcp-border);
	border-bottom: 1px solid var(--fcp-border);
	overflow: hidden;
	/* Maska brzegowa USUNIETA (korekta wlasciciela 2026-07-25: na ciemnym body dawala
	   ciemne pasy po bokach); loga w kontenerze .fcp-wrap jak sekcje wyzej. */
}
.fcs-csr .fcp-logos__vp { overflow: hidden; }
.fcs-csr .fcp-logos__track {
	display: flex;
	align-items: center;
	gap: 64px;
	width: max-content;
	animation: fcpLogosScroll 34s linear infinite;
}
.fcs-csr .fcp-logos:hover .fcp-logos__track { animation-play-state: paused; }
@keyframes fcpLogosScroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
.fcs-csr .fcp-logos__it {
	width: 190px;
	height: 84px;
	flex: none;
	/* Pelny kolor od razu, rozmiar powiekszony (korekty wlasciciela 2026-07-25 wg projektu). */
}
.fcs-csr .fcp-logos__it img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* CSR FAQ akordeon. */
.fcs-csr .fcp-faqs { position: relative; padding: 92px 0; overflow: hidden; background: #e7e8ea; }
.fcs-csr .fcp-faqs__card {
	position: relative;
	z-index: 2;
	max-width: 1000px;
	margin: 0 auto;
	background: #fff;
	border-radius: 22px;
	box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .35);
	padding: 52px 56px 40px;
}
.fcs-csr .fcp-faqs__card h2 { font-family: var(--fcp-head); font-weight: 800; font-size: 34px; letter-spacing: 1px; text-transform: uppercase; color: var(--fcp-ink); text-align: center; margin-bottom: 36px; }
.fcs-csr .fcp-facc { border-top: 1px solid var(--fcp-border); }
.fcs-csr .fcp-fitem { border-bottom: 1px solid var(--fcp-border); }
.fcs-csr .fcp-fq {
	width: 100%;
	text-align: left;
	background: transparent;
	border: 0;
	color: var(--fcp-ink);
	font-family: var(--fcp-head);
	font-weight: 700;
	font-size: 16px;
	padding: 22px 4px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	transition: .14s;
	line-height: 1.35;
}
.fcs-csr .fcp-fq:hover,
.fcs-csr .fcp-fq:focus-visible { color: var(--fcp-magenta); outline: none; }
.fcs-csr .fcp-fq.is-open { color: var(--fcp-magenta); }
.fcs-csr .fcp-fq__sign { flex: none; font-size: 24px; font-weight: 600; line-height: 1; width: 22px; text-align: center; }
.fcs-csr .fcp-fa { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s cubic-bezier(.16, .8, .24, 1); }
.fcs-csr .fcp-fa.is-open { grid-template-rows: 1fr; }
.fcs-csr .fcp-fa > div { overflow: hidden; }
.fcs-csr .fcp-fa__in { font-size: 15px; color: var(--fcp-text); line-height: 1.72; padding: 0 4px 24px; max-width: 820px; text-wrap: pretty; }

/* CTA (wspolne O nas / CSR). */
.fcs-onas .fcp-cta,
.fcs-csr .fcp-cta { background: var(--fcp-yellow); color: #1a1600; padding: 80px 0; }
.fcs-csr .fcp-cta { padding: 76px 0; }
.fcs-onas .fcp-cta__in,
.fcs-csr .fcp-cta__in { text-align: center; max-width: 820px; margin: 0 auto; }
.fcs-csr .fcp-cta__in { max-width: 760px; }
.fcs-onas .fcp-cta h2,
.fcs-csr .fcp-cta h2 { font-family: var(--fcp-head); font-weight: 800; font-size: 44px; text-transform: uppercase; letter-spacing: -1.3px; line-height: 1.02; }
.fcs-csr .fcp-cta h2 { font-size: 38px; letter-spacing: -1.1px; line-height: 1.04; }
.fcs-onas .fcp-cta p,
.fcs-csr .fcp-cta p { font-size: 17px; color: #3a3200; margin: 16px auto 0; max-width: 660px; line-height: 1.6; }
.fcs-csr .fcp-cta p { font-size: 16.5px; max-width: 600px; margin-top: 14px; }
.fcs-onas .fcp-cta__act,
.fcs-csr .fcp-cta__act { display: flex; gap: 13px; flex-wrap: wrap; justify-content: center; margin-top: 32px; }
.fcs-csr .fcp-cta__act { margin-top: 30px; }

/* ============================================================
 *  404
 * ============================================================ */
.fcs-404 { background: #fff; color: var(--fcp-text); }
.fcs-404 .fcp-e404 {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 80px 0 96px;
	overflow: hidden;
	background: var(--fcp-bg-soft);
	min-height: 60vh;
}
.fcs-404 .fcp-e404__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image:
		radial-gradient(1100px 460px at 78% -10%, rgba(200, 0, 167, .1), transparent 60%),
		radial-gradient(900px 420px at 8% 120%, rgba(110, 193, 228, .14), transparent 60%);
}
.fcs-404 .fcp-e404__in { position: relative; z-index: 1; max-width: 660px; padding: 0 32px; }
.fcs-404 .fcp-e404__num {
	font-family: var(--fcp-head);
	font-weight: 800;
	font-size: 180px;
	line-height: .9;
	letter-spacing: -6px;
	color: var(--fcp-ink);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.fcs-404 .fcp-e404__dots { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; width: 96px; height: 96px; transform: translateY(6px); }
.fcs-404 .fcp-e404__dots i { border-radius: 12px; display: block; }
.fcs-404 .fcp-e404__dots i:nth-child(1) { background: var(--fcp-cyan); }
.fcs-404 .fcp-e404__dots i:nth-child(2) { background: var(--fcp-magenta); }
.fcs-404 .fcp-e404__dots i:nth-child(3) { background: var(--fcp-yellow); }
.fcs-404 .fcp-e404__dots i:nth-child(4) { background: var(--fcp-ink); }
.fcs-404 .fcp-e404 h1 {
	font-family: var(--fcp-head);
	font-weight: 800;
	font-size: 34px;
	letter-spacing: -1px;
	text-transform: uppercase;
	color: var(--fcp-ink);
	margin-top: 26px;
}
.fcs-404 .fcp-e404 p { font-size: 17px; color: var(--fcp-soft); margin-top: 16px; line-height: 1.6; text-wrap: pretty; }
.fcs-404 .fcp-e404__act { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.fcs-404 .fcp-e404__links { margin-top: 44px; display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.fcs-404 .fcp-e404__links a {
	background: #fff;
	border: 1px solid var(--fcp-border);
	color: var(--fcp-text);
	border-radius: 999px;
	padding: 10px 18px;
	font-family: var(--fcp-head);
	font-weight: 600;
	font-size: 13.5px;
	transition: .15s;
}
.fcs-404 .fcp-e404__links a:hover,
.fcs-404 .fcp-e404__links a:focus-visible { border-color: var(--fcp-magenta); color: var(--fcp-magenta); outline: none; }

/* ============================================================
 *  RESPONSYWNOSC
 * ============================================================ */
@media (max-width: 1080px) {
	.fcp-wrap { padding: 0 32px; }
	.fcp-mhero h1 { font-size: 50px; }
	.fcs-kontakt .fcp-mhero h1 { font-size: 46px; }
	.fcs-onas .fcp-split { grid-template-columns: 1fr; gap: 34px; }
	.fcs-onas .fcp-split--rev .fcp-split__media { order: 0; }
	.fcs-onas .fcp-vidhead h2,
	.fcs-onas .fcp-split__body h2,
	.fcs-onas .fcp-cta h2 { font-size: 34px; }
	.fcs-onas .fcp-stats { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
	.fcs-kontakt .fcp-teamgrid { grid-template-columns: repeat(2, 1fr); }
	.fcs-kontakt .fcp-contact { grid-template-columns: 1fr; gap: 44px; }
	.fcs-kontakt .fcp-cform h2 { font-size: 30px; }
	.fcs-csr .fcp-csrhero h1 { font-size: 56px; }
	.fcs-csr .fcp-pill h2,
	.fcs-csr .fcp-cta h2,
	.fcs-csr .fcp-faqs__card h2 { font-size: 28px; }
	.fcs-csr .fcp-eco__grid { grid-template-columns: 1fr; }
	.fcs-csr .fcp-eco__aside { border: 0 !important; border-bottom: 1px solid var(--fcp-border) !important; padding: 44px 32px; }
	.fcs-csr .fcp-eco__aside--r { order: -1; }
	.fcs-csr .fcp-eco__item { padding: 32px; }
	.fcs-csr .fcp-faqs__card { padding: 36px 28px; }
}

@media (max-width: 680px) {
	/* 300px (nie 360) — zgłoszenie właściciela „hero na mobile za wysoki"; wspólnie z .fcs-mhero metod. */
	.fcp-mhero { min-height: 300px; }
	.fcp-mhero h1 { font-size: 38px; }
	.fcs-kontakt .fcp-mhero h1 { font-size: 36px; }
	.fcp-mhero__scrim { background: linear-gradient(180deg, rgba(8, 8, 12, .35), rgba(8, 8, 12, .75)); }
	.fcs-onas .fcp-stat b { font-size: 42px; }
	/* Lista „Co nas wyróżnia" bez natywnego wcięcia UL (40px) — lepsze wykorzystanie szerokości. */
	.fcs-onas .fcp-feat { padding-left: 0; }
	.fcs-kontakt .fcp-teamgrid { grid-template-columns: 1fr; }
	.fcs-csr .fcp-csrhero { min-height: 520px; }
	.fcs-csr .fcp-csrhero h1 { font-size: 40px; }
	.fcs-csr .fcp-pill__card { grid-template-columns: 1fr; gap: 0; }
	.fcs-csr .fcp-pill__num { margin-bottom: -33px; margin-left: 20px; position: relative; z-index: 2; }
	.fcs-csr .fcp-pill__body { padding-top: 44px; }
	.fcs-404 .fcp-e404__num { font-size: 118px; letter-spacing: -4px; }
	.fcs-404 .fcp-e404__dots { width: 64px; height: 64px; gap: 6px; }
	.fcs-404 .fcp-e404 h1 { font-size: 26px; }
}

/* Dlugie wyrazy (np. niemieckie zlozenia jak Geschaeftspartner) rozpychaly strone w poziomie na mobile.
   overflow-wrap dziedziczy na potomkow i lamie wyraz TYLKO gdy nie miesci sie w kolumnie - zero zmian w normalnym skladzie; "anywhere" (nie break-word) bo wplywa na min-content = dziala tez we flex/grid. */
main[class*="fcs-"]{overflow-wrap:anywhere}
