/* =========================================================================
   Slican4u Theme — main.css
   Paleta Slican: granat #232f7e, czerwień #e11f26. Hero #11233f, sekcje #f4f7fb.
   ========================================================================= */

:root {
	--navy:        #232f7e;
	--navy-dark:   #11233f;
	--navy-700:    #1b2560;
	--red:         #e11f26;
	--red-dark:    #b8161c;
	--ink:         #14203a;
	--muted:       #5a6885;
	--line:        #e2e8f2;
	--bg:          #ffffff;
	--bg-soft:     #f4f7fb;
	--bg-soft-2:   #eef2f9;
	--white:       #ffffff;
	--shadow-sm:   0 1px 3px rgba(17,35,63,.08);
	--shadow:      0 6px 24px rgba(17,35,63,.10);
	--shadow-lg:   0 18px 48px rgba(17,35,63,.16);
	--radius:      12px;
	--radius-sm:   8px;
	--container:   1200px;
	--font:        system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font);
	color: var(--ink);
	background: var(--bg);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--red); }
h1, h2, h3 { line-height: 1.2; color: var(--ink); margin: 0 0 .5em; }

.s4u-container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 8px; top: 8px; background: #fff; padding: 8px 14px; z-index: 999; border-radius: 6px; }

.s4u-icon { flex: none; vertical-align: middle; }

/* ---------- Buttons ---------------------------------------------------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 12px 22px; border-radius: var(--radius-sm); font-weight: 700;
	font-size: 15px; line-height: 1; border: 2px solid transparent; cursor: pointer;
	transition: transform .12s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
	text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-dark); color: #fff; box-shadow: 0 8px 20px rgba(225,31,38,.28); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-700); color: #fff; box-shadow: 0 8px 20px rgba(35,47,126,.26); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { background: var(--bg-soft); color: var(--navy); }
.btn--ghost-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost-light:hover { background: rgba(255,255,255,.22); color: #fff; }
.btn--sm { padding: 9px 15px; font-size: 14px; }
.btn--lg { padding: 15px 28px; font-size: 16px; }
.btn--full { width: 100%; }

.section-title { font-size: clamp(22px, 3vw, 30px); font-weight: 800; }

/* ---------- Topbar ----------------------------------------------------- */
.topbar { background: var(--navy-dark); color: #dbe3f4; font-size: 13.5px; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 38px; }
.topbar__badge { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; }
.topbar__badge .s4u-icon { color: #6ee7a8; }
.topbar__contact { display: inline-flex; align-items: center; gap: 18px; }
.topbar__contact a { color: #dbe3f4; display: inline-flex; align-items: center; gap: 6px; }
.topbar__contact a:hover { color: #fff; }

/* ---------- Header ----------------------------------------------------- */
.site-header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.site-header__inner { display: flex; align-items: center; gap: 24px; min-height: 76px; }
.site-header__logo img { height: 46px; width: auto; }
.main-nav { margin-left: auto; }
.nav-list, .mobile-nav-list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 4px; }
.nav-list a { position: relative; display: block; padding: 10px 14px; font-weight: 600; font-size: 15px; color: var(--ink); }
.nav-list a::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px; background: var(--red); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .18s ease; }
.nav-list a:hover { color: var(--navy); }
.nav-list a:hover::after { transform: scaleX(1); }
.nav-list .current-menu-item > a { color: var(--navy); }
.nav-list .current-menu-item > a::after { transform: scaleX(1); }
.site-header__cta { flex: none; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }

.mobile-menu { display: none; border-top: 1px solid var(--line); background: #fff; }
.mobile-menu .mobile-nav-list { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 20px 18px; }
.mobile-menu .mobile-nav-list a { padding: 13px 4px; border-bottom: 1px solid var(--line); font-weight: 600; }

/* ---------- Hero ------------------------------------------------------- */
.hero {
	position: relative; color: var(--ink); overflow: hidden;
	background:
		radial-gradient(900px 460px at 92% 0%, rgba(35,47,126,.06), transparent 60%),
		linear-gradient(180deg, #ffffff 0%, #eef3fb 100%);
	border-bottom: 1px solid var(--line);
}
.hero__nodes { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; padding: 60px 0 64px; }
.hero__badge {
	display: inline-flex; align-items: center; gap: 8px; background: rgba(35,47,126,.07);
	border: 1px solid rgba(35,47,126,.16); padding: 7px 15px; border-radius: 999px;
	font-size: 13.5px; font-weight: 700; letter-spacing: .01em; margin-bottom: 20px; color: var(--navy);
}
.hero__badge .s4u-icon { color: var(--red); }
.hero__title { font-size: clamp(30px, 4.4vw, 50px); font-weight: 800; color: var(--ink); letter-spacing: -.015em; }
.hero__title .accent { color: var(--red); }
.hero__lead { font-size: clamp(16px, 1.7vw, 19px); color: var(--muted); max-width: 48ch; margin: 6px 0 28px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__benefits { list-style: none; margin: 30px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 24px; }
.hero__benefits li { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--ink); }
.hero__benefits .s4u-icon { color: #16a34a; flex: none; }

.hero__visual { display: flex; align-items: center; justify-content: center; }
.hero__visual svg { width: 100%; max-width: 255px; max-height: 350px; height: auto; }
.hero__tree { width: 100%; max-width: 430px; aspect-ratio: 1 / 1; display: block; margin: 0 auto; }

/* ---------- Trust bar -------------------------------------------------- */
.trust { background: #fff; border-bottom: 1px solid var(--line); }
.trust__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 22px 0; }
.trust__item { display: flex; align-items: center; gap: 12px; padding: 4px 10px; }
.trust__item .s4u-icon { color: var(--navy); flex: none; }
.trust__item b { display: block; font-size: 15px; }
.trust__item span { font-size: 13px; color: var(--muted); }

/* ---------- Sections generic ------------------------------------------ */
.section { padding: 62px 0; }
.section--soft { background: var(--bg-soft); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 38px; }
.section__head p { color: var(--muted); font-size: 16px; margin: 6px 0 0; }
.section__eyebrow { color: var(--red); font-weight: 800; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }

/* ---------- Family tiles (centrale) ------------------------------------ */
.family-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.family-tile {
	display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
	border-radius: var(--radius); padding: 20px 18px; text-align: left; color: var(--ink);
	transition: transform .14s ease, box-shadow .18s ease, border-color .18s ease;
}
.family-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--navy); color: var(--ink); }
.family-tile__code { font-size: 20px; font-weight: 800; color: var(--navy); }
.family-tile__desc { font-size: 13.5px; color: var(--muted); margin: 8px 0 16px; flex: 1; }
.family-tile__price { font-size: 13px; color: var(--muted); }
.family-tile__price b { display: block; font-size: 17px; color: var(--ink); font-weight: 800; }
.family-tile__go { margin-top: 12px; display: inline-flex; align-items: center; gap: 6px; color: var(--red); font-weight: 700; font-size: 14px; }

/* ---------- Category cards (home) -------------------------------------- */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cat-card {
	display: flex; gap: 16px; background: #fff; border: 1px solid var(--line);
	border-radius: var(--radius); padding: 22px; color: var(--ink);
	transition: transform .14s ease, box-shadow .18s ease;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: var(--ink); }
.cat-card__icon {
	flex: none; width: 50px; height: 50px; border-radius: 10px; display: grid; place-items: center;
	background: var(--bg-soft); color: var(--navy);
}
.cat-card__text { display: flex; flex-direction: column; }
.cat-card__title { display: block; font-size: 17px; font-weight: 800; margin: 2px 0 7px; line-height: 1.25; }
.cat-card__desc { display: block; font-size: 13.5px; color: var(--muted); margin: 0; }
.cat-card__price { display: inline-block; align-self: flex-start; font-size: 13px; color: var(--red); font-weight: 800; margin-top: 12px; background: rgba(225,31,38,.08); padding: 4px 10px; border-radius: 6px; }

/* ---------- Family cards (kategoria → rodziny) ------------------------- */
.cat-lead { color: var(--muted); font-size: 15px; margin: 0 0 22px; }
.fam-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.fam-card {
	display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
	border-radius: var(--radius); overflow: hidden; color: var(--ink);
	transition: transform .14s ease, box-shadow .18s ease, border-color .18s ease;
}
.fam-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--navy); color: var(--ink); }
.fam-card__media { display: grid; place-items: center; aspect-ratio: 4/3; background: #fff; padding: 18px; }
.fam-card__media img { max-width: 100%; max-height: 100%; object-fit: contain; }
.fam-card__body { display: flex; flex-direction: column; gap: 6px; padding: 16px; border-top: 1px solid var(--line); flex: 1; }
.fam-card__title { font-size: 16px; font-weight: 800; color: var(--navy); }
.fam-card__desc { font-size: 13px; color: var(--muted); flex: 1; }
.fam-card__meta { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; margin-top: 6px; }
.fam-card__count { font-size: 12px; color: var(--muted); background: var(--bg-soft); padding: 3px 8px; border-radius: 6px; }
.fam-card__price { font-size: 12.5px; color: var(--muted); }
.fam-card__price b { font-size: 15px; color: var(--ink); }
.fam-card__go { margin-top: 10px; display: inline-flex; align-items: center; gap: 6px; color: var(--red); font-weight: 700; font-size: 13.5px; }

/* ---------- License / shop tile (dół strony rodziny) ------------------- */
.license-tile {
	display: flex; align-items: center; gap: 18px; margin-top: 34px; padding: 22px 26px;
	background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); color: #fff;
	border-radius: var(--radius); transition: box-shadow .18s ease, transform .12s ease;
}
.license-tile:hover { color: #fff; box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.license-tile__icon { flex: none; width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.14); color: #fff; }
.license-tile__text { flex: 1; }
.license-tile__text b { display: block; font-size: 18px; color: #fff; }
.license-tile__text span { font-size: 14px; color: #cfd8ee; }
.license-tile__go { flex: none; color: #fff; opacity: .8; }

/* ---------- Product cards / grid --------------------------------------- */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
	display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
	border-radius: var(--radius); overflow: hidden; transition: transform .14s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card__media { position: relative; display: block; aspect-ratio: 4/3; background: #fff; padding: 16px; }
.card__media img { width: 100%; height: 100%; object-fit: contain; }
.card__badge {
	position: absolute; top: 10px; left: 10px; background: var(--navy); color: #fff;
	font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: 999px;
}
.card__body { display: flex; flex-direction: column; gap: 10px; padding: 16px; border-top: 1px solid var(--line); flex: 1; }
.card__title { font-size: 14.5px; font-weight: 700; margin: 0; line-height: 1.35; }
.card__title a { color: var(--ink); }
.card__title a:hover { color: var(--navy); }
.card__price { margin-top: auto; }
.card__price-brutto { display: block; font-size: 19px; font-weight: 800; color: var(--ink); }
.card__price-netto { display: block; font-size: 12.5px; color: var(--muted); }
.card__price--quote { font-size: 15px; font-weight: 800; color: var(--navy); }
.card__buy { margin-top: 2px; }

/* ---------- Category hero + breadcrumbs -------------------------------- */
.breadcrumbs { font-size: 13px; color: var(--muted); padding: 16px 0 0; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--navy); }
.breadcrumbs span { color: var(--ink); font-weight: 600; }
.cat-hero { background: var(--bg-soft); border-bottom: 1px solid var(--line); color: var(--ink); padding: 4px 0 30px; }
.cat-hero .breadcrumbs, .cat-hero .breadcrumbs a { color: var(--muted); }
.cat-hero .breadcrumbs span { color: var(--ink); }
.cat-hero__title { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; color: var(--ink); margin-top: 14px; }
.cat-hero__brand { color: var(--red); }
.cat-hero__desc { color: var(--muted); max-width: 62ch; margin: 0; }

.cat-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.chip { display: inline-block; padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; font-size: 13.5px; font-weight: 600; color: var(--ink); background: #fff; }
.chip:hover { border-color: var(--navy); color: var(--navy); }

.page-wrap { padding: 30px 0 64px; }
.prod-group { margin-bottom: 46px; scroll-margin-top: 90px; }
.prod-group__title { font-size: 22px; font-weight: 800; margin-bottom: 18px; display: flex; align-items: baseline; gap: 14px; }
.prod-group__more { font-size: 14px; font-weight: 600; color: var(--red); }
.prod-empty { color: var(--muted); }
.page-title { font-size: clamp(24px, 3vw, 34px); font-weight: 800; }

/* ---------- Single product --------------------------------------------- */
.product { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; padding: 24px 20px 56px; align-items: start; }
.product__media { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.product__media img { width: 100%; height: auto; max-height: 460px; object-fit: contain; }
.product__mark { position: absolute; top: 16px; right: 16px; font-weight: 800; color: var(--navy); opacity: .5; letter-spacing: .05em; }
.product__family { color: var(--red); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; margin: 0 0 6px; }
.product__title { font-size: clamp(23px, 3vw, 32px); font-weight: 800; }
.product__price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.product__price-brutto { font-size: 34px; font-weight: 800; color: var(--ink); }
.product__price-tax { font-size: 13px; color: var(--muted); }
.product__price-netto { font-size: 15px; color: var(--muted); width: 100%; }
.product__price--quote { font-size: 24px; font-weight: 800; color: var(--navy); }
.product__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.product__note { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--muted); background: var(--bg-soft); padding: 12px 14px; border-radius: var(--radius-sm); }
.product__note .s4u-icon { color: var(--navy); flex: none; }
.product__desc { margin-top: 22px; border-top: 1px solid var(--line); padding-top: 22px; color: #33405c; }
.product__desc h3 { font-size: 16px; font-weight: 800; color: var(--navy); margin: 24px 0 10px; }
.product__desc .s4u-spec { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.product__desc .s4u-spec li { display: flex; justify-content: space-between; gap: 16px; padding: 8px 2px; border-bottom: 1px solid var(--line); font-size: 14px; }
.product__desc .s4u-spec li span { color: #4a5568; }
.product__desc .s4u-spec li b { color: var(--navy); text-align: right; white-space: nowrap; }
.product__desc .s4u-src { font-size: 12px; color: var(--muted); margin-top: 14px; font-style: italic; }
.product__expand { margin-top: 16px; font-size: 14px; }

/* Galeria miniatur */
.product__thumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.product__thumb { padding: 4px; background: #fff; border: 1px solid var(--line); border-radius: 8px; cursor: pointer; width: 68px; height: 68px; }
.product__thumb img { width: 100%; height: 100%; object-fit: contain; }
.product__thumb.is-active { border-color: var(--navy); box-shadow: 0 0 0 2px rgba(35,47,126,.15); }

/* Do pobrania */
.product__downloads { margin-top: 24px; border-top: 1px solid var(--line); padding-top: 22px; }
.product__downloads-title { font-size: 18px; font-weight: 800; margin-bottom: 12px; }
.dl-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.dl-list a { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; color: var(--ink); font-weight: 600; }
.dl-list a:hover { border-color: var(--navy); background: var(--bg-soft); color: var(--navy); }
.dl-list__pdf { flex: none; font-size: 11px; font-weight: 800; color: #fff; background: var(--red); padding: 4px 8px; border-radius: 5px; letter-spacing: .03em; }
.dl-list__label { flex: 1; }
.related { padding-bottom: 64px; }
.related .section-title { margin-bottom: 22px; }

/* ---------- Solutions / industries ------------------------------------ */
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ind-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.ind-card h3 { font-size: 16px; font-weight: 800; margin: 0 0 6px; }
.ind-card p { font-size: 13.5px; color: var(--muted); margin: 0; }
.ind-card__tag { display: inline-block; font-size: 11px; font-weight: 700; color: var(--navy); background: var(--bg-soft); padding: 3px 8px; border-radius: 6px; margin-bottom: 12px; }

/* ---------- Software (info) -------------------------------------------- */
.soft { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.soft__list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 12px; }
.soft__list li { display: flex; gap: 12px; align-items: flex-start; }
.soft__list .s4u-icon { color: var(--red); flex: none; margin-top: 2px; }
.soft__list b { display: block; }
.soft__list span { font-size: 13.5px; color: var(--muted); }
.soft__card { background: var(--navy-dark); color: #fff; border-radius: 16px; padding: 30px; }
.soft__card h3 { color: #fff; }
.soft__card p { color: #cfd8ee; font-size: 14.5px; }

/* ---------- SEO content ------------------------------------------------ */
.seo-content { max-width: 980px; margin: 0 auto; }
.seo-content h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; margin-bottom: 16px; }
.seo-content > p { color: #33405c; font-size: 15.5px; margin: 0 0 16px; }
.seo-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 26px; }
.seo-col h3 { font-size: 16px; font-weight: 800; margin: 0 0 8px; color: var(--navy); }
.seo-col p { font-size: 13.5px; color: var(--muted); margin: 0; }
.seo-col a { font-weight: 700; }

/* ---------- Distributor strip ------------------------------------------ */
.distributor { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); color: #fff; }
.distributor__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 44px 0; flex-wrap: wrap; }
.distributor__title { color: #fff; font-size: clamp(22px, 3vw, 28px); font-weight: 800; margin-bottom: 8px; }
.distributor__text p { color: #cfd8ee; max-width: 60ch; margin: 0; }
.distributor__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Footer ----------------------------------------------------- */
.site-footer { background: #0e1a30; color: #b9c4e4; padding: 52px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 34px; padding-bottom: 40px; }
.footer-logo { background: #fff; border-radius: 8px; padding: 8px 10px; height: auto; width: auto; max-width: 200px; }
.footer-tagline { font-size: 14px; margin: 16px 0 10px; color: #cfd8ee; }
.footer-disclaimer { font-size: 11.5px; color: #7f8db4; line-height: 1.5; }
.footer-heading { color: #fff; font-size: 15px; font-weight: 800; margin: 0 0 14px; }
.footer-nav { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-nav a { color: #b9c4e4; font-size: 14px; }
.footer-nav a:hover { color: #fff; }
.footer-shop-text { font-size: 13.5px; color: #9fabce; margin: 0 0 8px; }
.footer-shop-link { display: inline-flex; align-items: center; gap: 6px; color: #ff6a6f; font-weight: 700; }
.footer-shop-link:hover { color: #fff; }
.footer-address { font-style: normal; font-size: 14px; color: #b9c4e4; display: grid; gap: 6px; }
.footer-address p { margin: 0; line-height: 1.5; }
.footer-address p + p { margin-top: 4px; }
.footer-address a { color: #b9c4e4; }
.footer-address a:hover { color: #fff; }
.footer-wycena {
	display: inline-flex; align-items: center; gap: 7px; margin-top: 8px; padding: 9px 15px;
	border: 1.5px solid rgba(255,255,255,.38); border-radius: 8px; color: #fff; font-weight: 700; font-size: 13.5px;
	transition: background .18s ease, border-color .18s ease;
}
.footer-wycena:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer-wycena .s4u-icon { color: currentColor; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 16px 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 12.5px; color: #7f8db4; }
.footer-bottom p { margin: 0; }

/* ---------- Form (wycena) ---------------------------------------------- */
.wycena { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; padding: 40px 0 64px; align-items: start; }
.wycena__intro h1 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; }
.wycena__intro p { color: var(--muted); }
.wycena__points { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 12px; }
.wycena__points li { display: flex; gap: 10px; align-items: flex-start; }
.wycena__points .s4u-icon { color: var(--red); flex: none; margin-top: 3px; }
.wform { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px; }
.wform label { display: block; font-weight: 600; font-size: 14px; margin: 0 0 6px; }
.wform .field { margin-bottom: 16px; }
.wform input, .wform textarea, .wform select {
	width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
	font-family: inherit; font-size: 15px; color: var(--ink); background: #fff;
}
.wform input:focus, .wform textarea:focus, .wform select:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(35,47,126,.12); }
.wform textarea { min-height: 120px; resize: vertical; }
.wform__note { font-size: 12px; color: var(--muted); margin-top: 12px; }

/* ---------- FAQ (styl jak asset.com.pl: akordeon + boczna karta) ------- */
.faq-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); box-shadow: var(--shadow-sm); overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item[open] { border-color: var(--red); }
.faq-item__question { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; font-weight: 700; font-size: 16px; color: var(--ink); cursor: pointer; list-style: none; user-select: none; }
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item[open] .faq-item__question { color: var(--red); border-bottom: 1px solid var(--line); }
.faq-item__chevron { flex: none; color: var(--muted); transition: transform .25s ease, color .25s ease; }
.faq-item[open] .faq-item__chevron { transform: rotate(180deg); color: var(--red); }
.faq-item__answer { padding: 16px 22px 20px; }
.faq-item__answer p { margin: 0; color: var(--muted); line-height: 1.7; }
.faq-sidebar__card { padding: 30px 26px; background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--red); border-radius: var(--radius); box-shadow: var(--shadow-sm); text-align: center; }
.faq-sidebar__title { font-size: 19px; color: var(--ink); margin: 0 0 8px; }
.faq-sidebar__text { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0 0 22px; }
.faq-sidebar__phone { display: block; margin-top: 16px; font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: .3px; }
.faq-sidebar__phone:hover { color: var(--red); }
@media (max-width: 960px) { .faq-layout { grid-template-columns: 1fr; } .faq-sidebar__card { max-width: 460px; margin: 0 auto; } }

/* ---------- Linki prawne w stopce + baner cookies --------------------- */
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal a { color: #7f8db4; text-decoration: none; }
.footer-legal a:hover { color: #fff; text-decoration: underline; }

.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000; background: var(--navy-dark); color: #fff; box-shadow: 0 -4px 24px rgba(17,35,63,.28); transition: transform .35s ease, opacity .35s ease; }
.cookie-banner.is-hidden { transform: translateY(110%); opacity: 0; }
.cookie-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 0; flex-wrap: wrap; }
.cookie-banner__text { margin: 0; font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,.9); max-width: 74ch; }
.cookie-banner__text a { color: #fff; text-decoration: underline; }
.cookie-banner__text a:hover { opacity: .85; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
@media (max-width: 640px) { .cookie-banner__inner { flex-direction: column; align-items: stretch; text-align: center; gap: 14px; } .cookie-banner__actions { justify-content: center; } }

/* ---------- Responsive ------------------------------------------------- */
@media (max-width: 1024px) {
	.family-grid { grid-template-columns: repeat(3, 1fr); }
	.fam-grid { grid-template-columns: repeat(3, 1fr); }
	.card-grid { grid-template-columns: repeat(3, 1fr); }
	.trust__inner { grid-template-columns: repeat(2, 1fr); }
	.ind-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
	.main-nav, .site-header__cta { display: none; }
	.hamburger { display: flex; margin-left: auto; }
	.mobile-menu:not([hidden]) { display: block; }
	.hero__inner { grid-template-columns: 1fr; gap: 28px; padding: 44px 0 50px; }
	.hero__panel { order: 2; }
	.cat-grid { grid-template-columns: 1fr; }
	.seo-cols { grid-template-columns: 1fr; }
	.soft, .product, .wycena { grid-template-columns: 1fr; gap: 26px; }
	.topbar__email { display: none; }
}
@media (max-width: 620px) {
	.family-grid, .fam-grid, .card-grid { grid-template-columns: repeat(2, 1fr); }
	.license-tile { flex-wrap: wrap; }
	.trust__inner, .ind-grid { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; }
	.topbar__badge { font-size: 12px; }
	.distributor__inner { flex-direction: column; align-items: flex-start; }
}
