/* =========================================================
   GRUPA AUTO CZĘŚCI — grupa-ac.pl
   Kierunek: industrial editorial — wielka typografia,
   techniczne mono-detale, linie siatki, odważna czerwień.
   Kolory: #FB2B14 · #343A40
   ========================================================= 1 */

:root {
  color-scheme: light;

  --red: #fb2b14;
  --red-dark: #cf210f;
  --red-soft: rgba(251, 43, 20, 0.08);

  --ink: #343a40;      /* ciemne tło — panele i sekcje */
  --ink-2: #252a2f;
  --text: #343a40;
  --muted: #6b6b69;
  --faint: #979795;

  --paper: #ffffff;
  --paper-2: #f2f3f4;

  --line: #e2e2df;       /* hairline na jasnym */
  --line-strong: #c9c9c6;
  --line-dark: rgba(255, 255, 255, 0.16);

  --sans: "Archivo", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;

  --maxw: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; overflow-x: hidden; scrollbar-gutter: stable; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.02rem;
  background: var(--paper);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Zabezpieczenie przed rozpychaniem siatek przez treść, która nie może
   się złamać (domyślnie elementy grid/flex nie kurczą się poniżej
   szerokości swojej zawartości) — patrz: błąd .hero-stat strong. */
.hero-stats-grid > *,
.trust-grid > *,
.footer-grid > *,
.branch-grid > *,
.cat-index > *,
.brands-grid > *,
.steps > *,
.offer-panels > * {
  min-width: 0;
}

a { color: inherit; }
h1, h2, h3, h4 { margin: 0; color: var(--ink); }
p { margin: 0; }
img { max-width: 100%; display: block; height: auto; }
ul, ol, dl, dd { margin: 0; padding: 0; }

.container { width: min(100% - 3rem, var(--maxw)); margin-inline: auto; }

::selection { background: var(--red); color: #fff; }

/* =========================================================
   Typografia — skala edytorska
   ========================================================= */
.display, h1, .sec-head h2 {
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.96;
  letter-spacing: -0.015em;
}
h1 em, h2 em, .cta-band em, .footer-wordmark em {
  font-style: normal;
  color: var(--red);
}

.kicker {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: clamp(1.6rem, 3vw, 2.6rem);
}
.kicker span { color: var(--red); }
.kicker::after { content: ""; flex: 1; height: 1px; background: var(--line); transform: translateY(-0.2em); }
.kicker--light { color: rgba(255, 255, 255, 0.85); margin-bottom: 1rem; }
.kicker--light span { color: inherit; }
.kicker--light::after { display: none; }

/* =========================================================
   Placeholdery zdjęć — techniczny panel, znika po dodaniu pliku
   ========================================================= */
.img-slot { position: relative; margin: 0; overflow: hidden; background: var(--ink-2); }
.img-slot > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.img-slot.img-missing > img { display: none; }
.img-slot.img-missing {
  background:
    radial-gradient(ellipse at 20% 15%, rgba(251, 43, 20, 0.2), transparent 55%),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 12px),
    linear-gradient(160deg, #343a40, var(--ink));
}
.img-slot.img-missing::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}
.img-slot.img-missing::after {
  content: "[ FOTO ] " attr(data-src);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  position: absolute;
  left: 24px;
  bottom: 20px;
}
.img-slot--tall { aspect-ratio: 4 / 5; }
.img-slot--small { aspect-ratio: 3 / 2; }
.img-slot--wide { aspect-ratio: 8 / 5; }

/* =========================================================
   Przyciski — ostre, edytorskie
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 180ms var(--ease), color 180ms, border-color 180ms, transform 150ms var(--ease);
}
.btn span { font-family: var(--mono); font-weight: 400; }
.btn-sm { padding: 0.65rem 1.15rem; font-size: 0.76rem; }
.btn-lg { padding: 1.15rem 2rem; font-size: 0.86rem; }

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

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

.btn-line { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-line:hover { border-color: var(--ink); background: var(--ink); color: #fff; }

.btn-line-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.45); }
.btn-line-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* =========================================================
   Topbar — techniczny pasek danych
   ========================================================= */
.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  padding: 0.55rem 0;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.topbar a { text-decoration: none; transition: color 150ms; }
.topbar a:hover { color: var(--red); }
.topbar-group { display: flex; align-items: center; gap: 1.1rem; }
.tb-sep { width: 1px; height: 12px; background: rgba(255, 255, 255, 0.25); }

/* Przełącznik języka */
.lang-switch { display: flex; align-items: center; gap: 0.1rem; }
.lang-switch button {
  appearance: none;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.4rem;
  cursor: pointer;
  transition: color 150ms;
}
.lang-switch button:hover { color: #fff; }
.lang-switch button.is-active {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.8rem 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; flex-shrink: 0; }
.brand-logo { height: 44px; width: auto; }

.nav { display: flex; gap: 1.5rem; }
.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 0.3rem 0;
  transition: color 150ms;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--red);
  transition: width 220ms var(--ease);
}
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 0.8rem; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  background: #fff;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.menu-toggle span { width: 18px; height: 2px; background: var(--ink); transition: transform 200ms var(--ease), opacity 200ms; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO — ciemny, monumentalny
   ========================================================= */
.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.hero .img-slot--hero { position: absolute; inset: 0; background: none; }
.hero .img-slot--hero.img-missing {
  background:
    radial-gradient(ellipse at 15% 20%, rgba(251, 43, 20, 0.28), transparent 50%),
    radial-gradient(ellipse at 90% 85%, rgba(251, 43, 20, 0.1), transparent 45%),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 14px),
    linear-gradient(160deg, #343a40, var(--ink) 65%);
}
.hero .img-slot--hero.img-missing::before,
.hero .img-slot--hero.img-missing::after { display: none; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(20, 20, 19, 0.92) 25%, rgba(20, 20, 19, 0.6) 65%, rgba(20, 20, 19, 0.35));
}

.hero-inner { position: relative; z-index: 2; padding: clamp(4rem, 9vw, 7.5rem) 0 clamp(3rem, 6vw, 5rem); }

.hero-meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: clamp(1.8rem, 3.5vw, 3rem);
}
.hero-meta .meta-index { color: var(--red); }
.meta-dot { width: 5px; height: 5px; background: var(--red); }

.hero h1 {
  color: #fff;
  font-size: clamp(2.7rem, 8vw, 6.2rem);
}
.hero h1 em { color: #fff; }
.hero h1 em span { color: var(--red); }

.hero-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: clamp(2rem, 4vw, 3.2rem);
}
.hero .lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.3vw, 1.15rem);
  line-height: 1.7;
  max-width: 52ch;
}
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* Pas statystyk — arkusz danych */
.hero-stats { position: relative; z-index: 2; border-top: 1px solid var(--line-dark); background: rgba(15, 15, 14, 0.55); backdrop-filter: blur(8px); }
.hero-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.hero-stat { padding: 1.5rem 1.8rem; border-left: 1px solid var(--line-dark); }
.hero-stat:first-child { border-left: none; }
.stat-label {
  display: block;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.5rem;
}
.hero-stat strong {
  font-size: clamp(1.25rem, 2.3vw, 1.8rem);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* =========================================================
   Ticker
   ========================================================= */
.ticker { overflow: hidden; border-bottom: 1px solid var(--line); background: var(--paper); padding: 0.9rem 0; }
.ticker-track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  animation: ticker 40s linear infinite;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.ticker-track i { font-style: normal; color: var(--red); font-size: 0.6rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* =========================================================
   Sekcje + nagłówki edytorskie
   ========================================================= */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--tint { background: var(--paper-2); border-block: 1px solid var(--line); }
.section--dark { background: var(--ink); }
.section--dark .sec-head h2 { color: #fff; }
.section--dark .kicker { color: rgba(255, 255, 255, 0.8); }
.section--dark .kicker::after { background: var(--line-dark); }
.section--dark .sec-intro { color: rgba(255, 255, 255, 0.62); }

.sec-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.sec-head-row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
}
.sec-head h2 { font-size: clamp(2.1rem, 4.8vw, 3.9rem); }
.sec-intro { color: var(--muted); font-size: 1.03rem; line-height: 1.7; max-width: 46ch; justify-self: end; padding-bottom: 0.35rem; }
.sec-intro a { color: var(--red); font-weight: 600; text-decoration: none; border-bottom: 1px solid currentColor; }

/* =========================================================
   01 / O NAS
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.about-copy p { color: var(--muted); margin-bottom: 1.1rem; max-width: 58ch; }

.spec-list { list-style: none; margin: 1.8rem 0; border-top: 1px solid var(--line); }
.spec-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0.2rem;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  color: var(--ink);
}
.spec-list li::before { content: ""; width: 8px; height: 8px; background: var(--red); flex: none; }

.brand-quote {
  margin: 2rem 0 0;
  padding: 0 0 0 1.6rem;
  border-left: 1px solid var(--red);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
}

.about-media { position: relative; display: grid; grid-template-columns: repeat(12, 1fr); }
.about-photo-main { grid-column: 3 / 13; grid-row: 1; }
.about-photo-side {
  grid-column: 1 / 7;
  grid-row: 1;
  align-self: end;
  transform: translateY(3.5rem);
  border: 1px solid var(--paper);
  z-index: 2;
}
.about-media::before {
  content: "";
  position: absolute;
  top: -14px;
  right: -14px;
  width: 45%;
  height: 45%;
  border: 1px solid var(--red);
  z-index: 0;
  pointer-events: none;
}

/* Pasek zaufania — konkretne, weryfikowalne liczby dla warsztatów */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.trust-tile {
  background: var(--paper);
  padding: clamp(1.4rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.trust-value {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.trust-label {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}
@media (max-width: 900px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .trust-grid { grid-template-columns: 1fr; } }

/* =========================================================
   02 / OFERTA — indeks kategorii
   ========================================================= */
.cat-index {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}
.cat-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: var(--paper);
  text-decoration: none;
  transition: background 200ms var(--ease);
}
.cat-icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  color: var(--red);
  transition: color 200ms, border-color 200ms;
}
.cat-icon svg { width: 24px; height: 24px; }
.cat-text { display: flex; flex-direction: column; gap: 0.25rem; min-width: 0; }
.cat-num { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.12em; color: var(--faint); transition: color 200ms; }
.cat-name {
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--ink);
  transition: color 200ms;
}
.cat-arrow { margin-left: auto; flex: none; font-family: var(--mono); font-size: 1.1rem; color: var(--faint); transition: color 200ms, transform 220ms var(--ease); }
.cat-row:hover { background: var(--ink); }
.cat-row:hover .cat-icon { color: #fff; border-color: rgba(255, 255, 255, 0.3); }
.cat-row:hover .cat-name { color: #fff; }
.cat-row:hover .cat-num { color: rgba(255, 255, 255, 0.5); }
.cat-row:hover .cat-arrow { color: var(--red); transform: translateX(4px); }

.offer-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-strong); border: 1px solid var(--line-strong); margin-top: clamp(2.5rem, 5vw, 4rem); }
.offer-panel { padding: clamp(1.8rem, 3.5vw, 2.8rem); display: flex; flex-direction: column; align-items: flex-start; gap: 0.7rem; }
.offer-panel h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 800; text-transform: uppercase; line-height: 1.1; color: #fff; }
.offer-panel p { font-size: 0.95rem; line-height: 1.65; }
.offer-panel .btn { margin-top: 1.1rem; }
.offer-panel--ink { background: var(--ink); }
.offer-panel--ink p { color: rgba(255, 255, 255, 0.65); }
.offer-panel--ink .kicker--light span { color: var(--red); }
.offer-panel--red { background: var(--red); }
.offer-panel--red p { color: rgba(255, 255, 255, 0.85); }

/* =========================================================
   03 / JAK TO DZIAŁA
   ========================================================= */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line);
}
.step { padding: 0.4rem 1.6rem 0.6rem; border-right: 1px solid var(--line); position: relative; }
.step-num {
  display: block;
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--line-strong);
  margin-bottom: 1.2rem;
  transition: color 200ms;
}
.step:hover .step-num { color: var(--red); }
.step h3 { font-size: 1.05rem; font-weight: 800; text-transform: uppercase; margin-bottom: 0.6rem; }
.step p { color: var(--muted); font-size: 0.93rem; line-height: 1.6; }

/* =========================================================
   04 / ODDZIAŁY — karty-specyfikacje
   ========================================================= */
.branch-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem, 3vw, 2.5rem); }
.branch { background: var(--paper); border: 1px solid var(--line-strong); }
.branch .img-slot--wide { border-bottom: 1px solid var(--line-strong); }
.branch-body { padding: clamp(1.5rem, 3vw, 2.2rem); }
.branch-tag { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.16em; color: var(--red); margin-bottom: 0.5rem; }
.branch-body h3 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; text-transform: uppercase; margin-bottom: 1.4rem; }

.branch-specs { border-top: 1px solid var(--line); margin-bottom: 1.6rem; }
.branch-specs > div {
  display: grid;
  grid-template-columns: minmax(0, 118px) minmax(0, 1fr);
  gap: 1rem;
  align-items: baseline;
  padding: 0.7rem 0.2rem;
  border-bottom: 1px solid var(--line);
}
.branch-specs dt { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.12em; color: var(--faint); }
.branch-specs dd { font-weight: 600; color: var(--ink); font-size: 0.97rem; overflow-wrap: anywhere; }
.branch-specs a { text-decoration: none; }
.branch-specs a:hover { color: var(--red); }
.branch-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }

/* =========================================================
   05 / DOSTAWCY — jasna, równa siatka logotypów
   ========================================================= */
.brands-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.26);
}
.brands-grid li {
  display: grid;
  place-items: center;
  min-height: clamp(120px, 13vw, 158px);
  padding: clamp(1.2rem, 2.4vw, 2rem);
  background: #fff;
  transition: background 200ms, border-color 200ms;
}
.brands-grid li:hover { background: #f3f4f5; }
.brands-grid img {
  max-width: min(78%, 190px);
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  transition: transform 200ms var(--ease);
}
.brands-grid li:hover img { transform: translateY(-2px); }

/* =========================================================
   06 / FAQ — wiersze edytorskie
   ========================================================= */
.faq-list { border-top: 1px solid var(--line-strong); }
.faq-item { border-bottom: 1px solid var(--line-strong); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0.4rem;
  background: none;
  border: none;
  font-family: var(--sans);
  color: var(--ink);
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color 160ms;
}
.faq-q:hover { color: var(--red); }
.faq-q i {
  flex: none;
  font-family: var(--mono);
  font-style: normal;
  font-size: 1.3rem;
  color: var(--red);
  transition: transform 250ms var(--ease);
}
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 320ms var(--ease); }
.faq-a p { padding: 0 0.4rem 1.5rem; color: var(--muted); max-width: 68ch; line-height: 1.7; }
.faq-a a { color: var(--red); font-weight: 600; }

/* =========================================================
   07 / KONTAKT
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.contact-specs { border-top: 1px solid var(--line-strong); }
.contact-specs > div { padding: 1.05rem 0.2rem; border-bottom: 1px solid var(--line-strong); }
.contact-specs dt { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; color: var(--faint); margin-bottom: 0.35rem; }
.contact-specs dd { font-weight: 700; font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--ink); overflow-wrap: anywhere; }
.contact-specs a { text-decoration: none; transition: color 150ms; }
.contact-specs a:hover { color: var(--red); }

.contact-form { display: grid; gap: 1.6rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.contact-form label { display: grid; gap: 0.45rem; }
.contact-form label > span {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  padding: 0.65rem 0.1rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  outline: none;
  transition: border-color 180ms;
  width: 100%;
}
.contact-form select { cursor: pointer; }
.contact-form select:invalid { color: var(--faint); font-weight: 400; }
.contact-form textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-bottom-color: var(--red); }

.form-footer { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.form-note { font-size: 0.82rem; color: var(--faint); max-width: 34ch; line-height: 1.5; }
.form-note a { color: var(--red); }

/* =========================================================
   CTA — czerwony pas
   ========================================================= */
.cta-band { background: var(--red); color: #fff; padding: clamp(3.5rem, 7vw, 6rem) 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 {
  color: #fff;
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.96;
  letter-spacing: -0.015em;
}
.cta-band h2 em { color: var(--ink); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.7); padding-top: clamp(3rem, 6vw, 5rem); }
.footer-wordmark {
  font-weight: 900;
  font-size: clamp(1.9rem, 6vw, 4.6rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(1.8rem, 3.5vw, 3rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 0.9fr;
  gap: 2.5rem;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.footer-col--about p { font-size: 0.95rem; line-height: 1.7; max-width: 36ch; margin-bottom: 1.2rem; }
.footer-fb {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid var(--red);
  padding-bottom: 0.2rem;
  transition: color 150ms;
}
.footer-fb:hover { color: var(--red); }
.footer-col h4 {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--red);
  margin-bottom: 1rem;
}
.footer-col a, .footer-col span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  transition: color 150ms;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line-dark);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom a { color: inherit; text-decoration: none; transition: color 150ms; }
.footer-bottom a:hover { color: var(--red); }

/* =========================================================
   BOOST 2026 — ostre krawędzie, mocniejszy kontrast, bez cieni
   ========================================================= */
body {
  background:
    linear-gradient(90deg, rgba(52, 58, 64, 0.035) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(0deg, rgba(52, 58, 64, 0.025) 1px, transparent 1px) 0 0 / 64px 64px,
    var(--paper);
}

.btn {
  position: relative;
  min-height: 46px;
  border-width: 1px;
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute;
  inset: -2px auto -2px -2px;
  width: 7px;
  background: currentColor;
  opacity: 0.18;
  transition: width 180ms var(--ease), opacity 180ms var(--ease);
  z-index: -1;
}
.btn:hover::before { width: calc(100% + 4px); opacity: 0.1; }
.btn-red { border-color: var(--red); }
.btn-red:hover { background: #fff; color: var(--red); border-color: #fff; }
.btn-ink { background: var(--ink); border-color: var(--ink); }
.btn-line-light { border-color: rgba(255, 255, 255, 0.72); }

.topbar {
  background: var(--red);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}
.topbar a:hover { color: var(--ink); }
.tb-sep { background: rgba(255, 255, 255, 0.5); }

.site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--ink);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--red) 0 34%, transparent 34% 100%);
}
.nav a { color: var(--ink); }
.nav a::after { height: 2px; bottom: -0.58rem; }

.hero {
  min-height: min(820px, calc(100vh - 64px));
  display: grid;
  align-items: end;
  border-bottom: 2px solid var(--red);
}
.hero .img-slot--hero > img {
  filter: grayscale(20%) contrast(1.12) saturate(0.9);
  transform: scale(1.03);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(52, 58, 64, 0.98) 0 38%, rgba(52, 58, 64, 0.84) 52%, rgba(52, 58, 64, 0.38) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.25), transparent 48%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 80px 80px;
  z-index: 1;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: clamp(1rem, 7vw, 7rem);
  width: clamp(22px, 3.2vw, 48px);
  height: 52%;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 18px),
    var(--red);
  mix-blend-mode: normal;
  z-index: 1;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 62% 100%, 0 100%);
}
.hero-inner {
  padding-top: clamp(5rem, 10vw, 9rem);
  padding-bottom: clamp(3.5rem, 7vw, 6.2rem);
}
.hero-meta {
  width: fit-content;
  padding: 0.55rem 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  border-left: 2px solid var(--red);
}
.hero h1 {
  max-width: 9ch;
  font-size: clamp(3.2rem, 9.4vw, 8.3rem);
  letter-spacing: 0;
  text-wrap: balance;
}
.hero h1::after {
  content: "";
  display: block;
  width: min(30vw, 320px);
  height: 3px;
  margin-top: clamp(1rem, 2vw, 1.5rem);
  background: var(--red);
}
.hero .lead {
  padding: 1.1rem 1.2rem;
  border-left: 2px solid var(--red);
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.88);
}
.hero-stats {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: none;
}
.hero-stat {
  position: relative;
  padding-block: 1.8rem;
}
.hero-stat strong { color: #fff; }

.ticker {
  padding: 1rem 0;
  background: var(--red);
  border-bottom: 0;
}
.ticker-track { color: #fff; font-weight: 700; }
.ticker-track i { color: var(--ink); font-size: 0.75rem; }

.section {
  position: relative;
  overflow: clip;
}
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(52, 58, 64, 0.045) 1px, transparent 1px) 0 0 / 96px 96px;
  pointer-events: none;
}
.section > .container { position: relative; z-index: 1; }
.section--tint {
  background:
    linear-gradient(90deg, transparent 0 calc(100% - clamp(56px, 9vw, 120px)), rgba(251, 43, 20, 0.09) calc(100% - clamp(56px, 9vw, 120px)) 100%),
    var(--paper-2);
  border-block: 1px solid var(--ink);
}
.section--dark {
  background:
    linear-gradient(135deg, rgba(251, 43, 20, 0.16) 0 18%, transparent 18% 100%),
    var(--ink);
}

.kicker {
  padding-left: 0.7rem;
  border-left: 2px solid var(--red);
}
.kicker::after { height: 1px; background: var(--ink); opacity: 0.22; }
.section--dark .kicker::after { background: #fff; opacity: 0.22; }
.sec-head h2 {
  letter-spacing: 0;
  text-wrap: balance;
}
.sec-intro {
  padding: 1rem 0 1rem 1.2rem;
  border-left: 1px solid var(--red);
}

.about-copy {
  padding: clamp(1.4rem, 3vw, 2.1rem);
  border: 1px solid var(--ink);
  background: #fff;
}
.spec-list li::before {
  width: 12px;
  height: 4px;
}
.brand-quote {
  margin-inline: -1px 0;
  padding: 1.2rem 1.4rem;
  background: var(--ink);
  color: #fff;
  border-left: 2px solid var(--red);
}
.about-photo-main,
.about-photo-side,
.branch .img-slot,
.brands-grid li {
  border: 1px solid var(--ink);
}
.about-photo-side { border-color: #fff; outline: 1px solid var(--red); }
.about-media::before {
  top: -22px;
  right: -22px;
  width: 54%;
  height: 54%;
  border: 2px solid var(--red);
}

.offer-panels {
  gap: 0;
  background: transparent;
  border: 1px solid var(--ink);
}
.offer-panel {
  min-height: 280px;
  padding: clamp(2rem, 4vw, 3.4rem);
}
.offer-panel--ink {
  background:
    linear-gradient(135deg, rgba(251, 43, 20, 0.18) 0 28%, transparent 28% 100%),
    var(--ink);
}
.offer-panel--red {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 22px),
    var(--red);
  border-left: 1px solid var(--ink);
}
.offer-panel h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }

.steps {
  border: 1px solid var(--ink);
  background: #fff;
}
.step {
  padding: clamp(1.4rem, 2.8vw, 2.4rem);
  border-right: 1px solid var(--ink);
}
.step:last-child { border-right: 0; }
.step h3 { font-size: clamp(1.1rem, 1.7vw, 1.35rem); }

.branch {
  border: 1px solid var(--ink);
  background: #fff;
}
.branch .img-slot--wide { border-bottom: 1px solid var(--ink); }
.branch-body h3 {
  position: relative;
  padding-bottom: 0.7rem;
}
.branch-body h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 2px;
  background: var(--red);
}
.branch-specs { border-top: 1px solid var(--ink); }
.branch-specs > div { border-bottom: 1px solid var(--line); }
.branch-actions .btn { flex: 1 1 180px; }

.brands-grid {
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.brands-grid li {
  min-height: clamp(120px, 13vw, 158px);
  background: #fff;
  border-color: rgba(52, 58, 64, 0.14);
}
.brands-grid li:hover { background: #f3f4f5; border-color: rgba(251, 43, 20, 0.42); }
.brands-grid img {
  max-width: min(78%, 190px);
  max-height: 58px;
  filter: none;
}
.brands-grid li:hover img { filter: none; transform: translateY(-2px); }

.faq-list {
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  background: #fff;
}
.faq-item { border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.faq-q {
  padding: 1.55rem 1.2rem;
}
.faq-q i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--red);
  color: #fff;
}
.faq-a p { padding-inline: 1.2rem; }

.contact-specs {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--ink);
  border: 1px solid var(--ink);
}
.contact-specs > div {
  border-color: rgba(255, 255, 255, 0.18);
}
.contact-specs dt { color: rgba(255, 255, 255, 0.48); }
.contact-specs dd,
.contact-specs a { color: #fff; }
.contact-form {
  padding: clamp(1.2rem, 3vw, 2rem);
  background: #fff;
  border: 1px solid var(--ink);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--line-strong);
  background: #fff;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
}

.cta-band {
  position: relative;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 28px),
    var(--red);
  border-block: 2px solid var(--ink);
}
.cta-band::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: min(12vw, 120px);
  height: 100%;
  background: var(--ink);
  clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 100%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-band h2 em { color: var(--ink); background: #fff; padding-inline: 0.08em; }

.site-footer {
  background:
    linear-gradient(90deg, rgba(251, 43, 20, 0.2) 0 6px, transparent 6px 100%),
    var(--ink);
  border-top: 2px solid var(--red);
}
.footer-wordmark {
  letter-spacing: 0;
  border-bottom-width: 3px;
}

/* =========================================================
   Animacja wejścia
   ========================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 650ms var(--ease), transform 650ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   Responsywność
   ========================================================= */
@media (max-width: 1020px) {
  .sec-head-row { grid-template-columns: 1fr; align-items: start; }
  .sec-intro { justify-self: start; }
  .steps { grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
  .step { padding-top: 1.4rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
  .step:nth-child(2n) { border-right: 0; }
  .offer-panels { grid-template-columns: 1fr; }
  .offer-panel--red { border-left: 0; border-top: 1px solid var(--ink); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .brands-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 80px; }
  .topbar-inner { justify-content: center; }
  .topbar-group:nth-child(2) { display: none; }

  .nav {
    position: fixed;
    top: 72px;
    right: 1rem;
    flex-direction: column;
    gap: 0.2rem;
    padding: 1.1rem;
    background: #fff;
    border: 1px solid var(--line-strong);
    width: min(78vw, 290px);
    max-width: calc(100vw - 2rem);
    /* Menu bez ruchu: samo pojawienie sie (opacity). Zadnego transform,
       ktory moglby przesunac uklad strony w poziomie. Panel stoi w miejscu,
       w granicach ekranu. */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 160ms var(--ease), visibility 0s linear 160ms;
    z-index: 60;
  }
  .nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 160ms var(--ease), visibility 0s linear 0s;
  }
  .nav a { padding: 0.7rem 0.4rem; font-size: 0.9rem; }
  .menu-toggle { display: flex; }
  .header-actions .btn-sm { display: none; }

  .hero-stats-grid { grid-template-columns: 1fr; }
  .hero-stat { border-left: none; border-top: 1px solid var(--line-dark); padding: 1rem 0; }
  .hero-stat:first-child { border-top: none; }

  .about-grid { grid-template-columns: 1fr; }
  .about-media { margin-top: 2.5rem; }
  .branch-grid { grid-template-columns: 1fr; }
  .cat-index { grid-template-columns: 1fr; }
  .hero::after { opacity: 0.28; right: 0; width: 28px; }
  .hero h1 { max-width: 8ch; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 2.2rem, var(--maxw)); }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .brands-grid { grid-template-columns: 1fr; }
  .about-photo-side { transform: translateY(2rem); border-width: 1px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .topbar { font-size: 0.62rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   SOTY INSPIRED — editorial motion, asymetria, premium B2B
   ========================================================= */
:root {
  --stage: #f7f7f5;
  --hair: rgba(52, 58, 64, 0.18);
}

body {
  background:
    linear-gradient(90deg, rgba(52, 58, 64, 0.045) 1px, transparent 1px) 0 0 / min(9vw, 116px) min(9vw, 116px),
    var(--stage);
}

.site-header {
  padding: 0;
  background: rgba(247, 247, 245, 0.94);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: 74px; }
.brand-logo { height: 50px; }
.nav { gap: 0; align-self: stretch; }
.nav a {
  display: grid;
  place-items: center;
  padding-inline: clamp(0.75rem, 1.2vw, 1.25rem);
  border-left: 1px solid var(--hair);
}
.nav a:last-child { border-right: 1px solid var(--hair); }
.nav a::after { bottom: 0; }
.header-actions .btn { min-height: 48px; }

/* Nagłówek na całą szerokość ekranu (container-fluid): logo, nawigacja
   i przycisk „Katalog online" w jednym rzędzie, rozłożone na pełną
   szerokość. Dzięki temu dłuższe etykiety (inne języki) się mieszczą
   i nic nie przechodzi do drugiej linii. */
.site-header > .header-inner,
.topbar > .topbar-inner {
  width: 100%;
  max-width: none;
  padding-inline: clamp(1rem, 3vw, 2.5rem);
}
@media (min-width: 861px) {
  .header-inner { flex-wrap: nowrap; }
  .nav { flex: 0 1 auto; flex-wrap: nowrap; }
  .nav a { white-space: nowrap; }

  /* Topbar: 3 kolumny — telefony (lewo), godziny+FB (środek), języki (prawo).
     Boczne kolumny 1fr sprawiają, że środkowa grupa jest zawsze na środku. */
  .topbar-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  .topbar-inner > .topbar-group:first-child { justify-self: start; }
  .topbar-inner > .topbar-group:nth-child(2) { justify-self: center; }
  .topbar-inner > .lang-switch { justify-self: end; }
}

.hero {
  min-height: min(860px, calc(100svh - 74px));
  background: var(--ink);
  isolation: isolate;
}
.hero .img-slot--hero {
  left: 42%;
  width: 58%;
  opacity: 1;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}
.hero .img-slot--hero > img {
  filter: grayscale(10%) contrast(1.18) saturate(1.05);
  transform: scale(1.03);
}
.hero-overlay {
  background:
    linear-gradient(90deg, var(--ink) 0 50%, rgba(52, 58, 64, 0.72) 64%, rgba(52, 58, 64, 0.18) 100%);
}
.hero::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 92px 92px;
}
.hero-meta {
  background: transparent;
  border-left: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
}
.hero-meta::before {
  content: "";
  width: clamp(40px, 7vw, 90px);
  height: 1px;
  background: var(--red);
}
.hero h1 {
  max-width: none;
  font-size: clamp(2.6rem, 6.4vw, 5.6rem);
  line-height: 0.95;
}
.hero h1::after {
  width: clamp(80px, 13vw, 190px);
  height: 2px;
}
.hero-row {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.42fr);
  align-items: end;
}
.hero .lead {
  max-width: 58ch;
  background: transparent;
  border-left: 1px solid var(--red);
  padding-block: 0.2rem;
}
.hero-actions {
  justify-content: flex-end;
}
.hero-stats {
  background: var(--ink);
}
.hero-stats-grid {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}
.hero-stat {
  padding: clamp(1.2rem, 2vw, 1.8rem);
}

.ticker {
  transform: none;
  margin-block: 0;
  position: relative;
  z-index: 4;
}

.section {
  padding: clamp(5rem, 9vw, 9rem) 0;
}
.section::after {
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  top: clamp(1.6rem, 4vw, 3.4rem);
  font-family: var(--mono);
  font-size: clamp(3.5rem, 10vw, 9rem);
  line-height: 1;
  color: rgba(52, 58, 64, 0.055);
  pointer-events: none;
}
#o-nas::after { content: "01"; }
#oferta::after { content: "02"; }
#jak-to-dziala::after { content: "03"; }
#oddzialy::after { content: "04"; }
#dostawcy::after { content: "05"; color: rgba(255, 255, 255, 0.08); }
#faq::after { content: "06"; }
#kontakt::after { content: "07"; }

.sec-head-row {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.58fr);
}
.sec-head h2 {
  font-size: clamp(2.5rem, 6.1vw, 5.6rem);
  line-height: 0.9;
}
.sec-intro {
  border-left: 1px solid var(--red);
  background: rgba(255, 255, 255, 0.42);
}
.section--dark .sec-intro { background: rgba(255, 255, 255, 0.04); }

.about-grid {
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
}
.about-copy {
  align-self: end;
  background: rgba(255, 255, 255, 0.82);
}
.about-media {
  min-height: 620px;
  align-items: center;
}
.about-photo-main {
  grid-column: 4 / 13;
}
.about-photo-side {
  grid-column: 1 / 8;
  transform: translateY(5.5rem);
}
.about-photo-main img,
.about-photo-side img,
.branch img {
  transition: transform 700ms var(--ease), filter 700ms var(--ease);
}
.about-photo-main:hover img,
.about-photo-side:hover img,
.branch:hover img {
  transform: scale(1.045);
  filter: contrast(1.08) saturate(1.05);
}


.offer-panels {
  margin-top: clamp(3rem, 6vw, 5rem);
}
.offer-panel {
  min-height: clamp(320px, 34vw, 460px);
  justify-content: flex-end;
}
.offer-panel h3 {
  font-size: clamp(1.7rem, 3.8vw, 3.4rem);
  line-height: 0.95;
}

.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.step {
  min-height: clamp(240px, 28vw, 360px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.step h3 {
  font-size: clamp(1.2rem, 2vw, 1.75rem);
}

.branch-grid {
  gap: 1px;
  background: var(--hair);
}
.branch {
  border-color: transparent;
}
.branch .img-slot--wide {
  aspect-ratio: 16 / 9;
}
.branch-body h3 {
  font-size: clamp(2rem, 4.2vw, 4.2rem);
}

.brands-grid {
  max-width: 1040px;
  margin-inline: auto;
}
.brands-grid li {
  min-height: clamp(138px, 14vw, 178px);
}
.brands-grid img {
  max-width: min(72%, 210px);
  max-height: 70px;
}

.faq-list {
  max-width: 980px;
  margin-inline: auto;
}
.faq-q {
  min-height: 92px;
  font-size: clamp(1.2rem, 2.3vw, 2rem);
}

.contact-grid {
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
}
.contact-specs,
.contact-form {
  background: rgba(255, 255, 255, 0.86);
}
.contact-specs {
  background: var(--ink);
  position: sticky;
  top: 100px;
}

.cta-band {
  overflow: hidden;
}
.cta-band h2 {
  font-size: clamp(3rem, 8vw, 7rem);
}

@media (max-width: 1020px) {
  .hero-row,
  .sec-head-row,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions { justify-content: flex-start; }
  .about-media { min-height: 520px; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .step { min-height: 250px; }
}

@media (max-width: 860px) {
  .nav a {
    display: block;
    border-left: 0;
  }
  .nav a:last-child { border-right: 0; }
  .hero .img-slot--hero {
    left: 0;
    width: 100%;
    clip-path: none;
    opacity: 0.35;
  }
  .hero-overlay {
    background: linear-gradient(90deg, rgba(52, 58, 64, 0.98), rgba(52, 58, 64, 0.86));
  }
  .brands-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-specs { position: static; }
}

@media (max-width: 620px) {
  .hero h1 { font-size: clamp(3.2rem, 18vw, 5.4rem); }
  .hero-row { gap: 1.5rem; }
  .ticker { transform: none; margin-block: 0; }
  .about-media { min-height: 430px; }
  .about-photo-main { grid-column: 2 / 13; }
  .about-photo-side { grid-column: 1 / 9; transform: translateY(3rem); }
  .steps { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: 1fr; }
  .section::after { display: none; }
}

/* =========================================================
   WARSTWA INTERAKCJI — custom kursor, magnetyczne przyciski,
   ziarno, pasek postępu, kinetyczne nagłówki, kaskadowy reveal.
   ========================================================= */

/* Pasek postępu scrolla */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--red);
  z-index: 999;
  pointer-events: none;
}

/* Kaskadowy reveal list powtarzalnych (kategorie, kroki, oddziały, marki, FAQ) */
.stagger-item { transition-delay: calc(var(--i, 0) * 70ms); }

/* =========================================================
   WARSTWA SPRZEDAŻOWA — status otwarcia, sticky CTA,
   potwierdzenie formularza, kopiowanie danych kontaktowych.
   ========================================================= */

/* Status otwarcia (na żywo) */
.status-line {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8a8f96;
  flex: none;
  transition: background 200ms, box-shadow 200ms;
}
.status-line.is-open .status-dot { background: #22c55e; box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.22); }
.status-line.is-closed .status-dot { background: var(--red); box-shadow: 0 0 0 3px rgba(251, 43, 20, 0.18); }

.hero-cta-block { display: flex; flex-direction: column; align-items: flex-end; gap: 0.9rem; }
.hero-status {
  padding: 0.5rem 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
}

/* Pasek szybkiego kontaktu (sticky) */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: 0.7rem 0;
  background: rgba(24, 27, 30, 0.96);
  backdrop-filter: blur(14px);
  border-top: 2px solid var(--red);
  transform: translateY(110%);
  visibility: hidden;
  transition: transform 320ms var(--ease), visibility 0s linear 320ms;
}
.sticky-cta.visible {
  transform: translateY(0);
  visibility: visible;
  transition: transform 320ms var(--ease), visibility 0s linear 0s;
}
body.nav-open .sticky-cta.visible { transform: translateY(110%); }
.sticky-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.sticky-status { color: rgba(255, 255, 255, 0.85); }
.sticky-cta-actions { display: flex; gap: 0.6rem; }

/* Potwierdzenie formularza */
.form-success {
  padding: clamp(1.6rem, 3vw, 2.2rem);
  background: var(--ink);
  color: #fff;
}
.form-success-title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 0.8rem;
}
.form-success-text { color: rgba(255, 255, 255, 0.72); font-size: 0.95rem; line-height: 1.65; margin-bottom: 1.4rem; }
.form-success-contact { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 1.5rem; }

.copy-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 1.1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.82rem;
  cursor: pointer;
  transition: background 180ms, border-color 180ms;
}
.copy-chip:hover { border-color: var(--red); }
.copy-chip.copied { background: rgba(34, 197, 94, 0.16); border-color: rgba(34, 197, 94, 0.5); }
.copy-chip-action { color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.7rem; }
.copy-chip.copied .copy-chip-action { color: #22c55e; }

.form-success-reset {
  background: none;
  border: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--sans);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-success-reset:hover { color: #fff; }

@media (max-width: 620px) {
  .sticky-status .status-text { display: none; }
  .sticky-cta-actions .btn span { display: none; }
  .sticky-cta-actions .btn { flex: 1; }
  .sticky-cta-inner { gap: 0.7rem; }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-cta { transition: none; }
}

/* =========================================================
   UROZMAICENIE — mocniejszy rytm sekcji, akcentowe karty,
   subtelne cienie. Blok zbiorczy, łatwy do dostrojenia.
   ========================================================= */
:root {
  --shadow-card: 0 1px 0 rgba(52, 58, 64, 0.04), 0 8px 18px -14px rgba(52, 58, 64, 0.3);
}

/* 1 · Wyraźniejszy szary na sekcjach „tint" (mocniejszy przeplot biel/szarość) */
.section--tint {
  background:
    linear-gradient(90deg, transparent 0 calc(100% - clamp(56px, 9vw, 120px)), rgba(251, 43, 20, 0.10) calc(100% - clamp(56px, 9vw, 120px)) 100%),
    #e5e7ec;
}

/* 2 · Akcentowe kafle w pasku zaufania (ciemny + czerwony, po przekątnej) */
.trust-tile:nth-child(3) { background: var(--ink); }
.trust-tile:nth-child(4) { background: var(--red); }
.trust-tile:nth-child(3) .trust-value,
.trust-tile:nth-child(4) .trust-value { color: #fff; }
.trust-tile:nth-child(3) .trust-label { color: rgba(255, 255, 255, 0.7); }
.trust-tile:nth-child(4) .trust-label { color: rgba(255, 255, 255, 0.92); }

/* Kroki „jak to działa" — czerwone karty z odstępami, bez ramek, biały tekst */
.steps {
  border: 0;
  background: transparent;
  box-shadow: none;
  gap: clamp(0.6rem, 1.4vw, 1.1rem);
}
.step {
  border: 0;
  background: var(--red);
  padding: clamp(1.5rem, 2.8vw, 2.2rem);
  justify-content: flex-start;
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
  min-height: clamp(190px, 20vw, 260px);
  transition: background 200ms var(--ease);
}
.step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: clamp(1rem, 2vw, 1.4rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.step-head .step-num { margin: 0; color: rgba(255, 255, 255, 0.55); }
.step-icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  transition: background 200ms var(--ease), border-color 200ms var(--ease);
}
.step-icon svg { width: 26px; height: 26px; }
.step-body { display: flex; flex-direction: column; gap: 0.55rem; }
.step h3 { color: #fff; }
.step p { color: rgba(255, 255, 255, 0.85); }
.step:hover { background: var(--red-dark); }
.step:hover .step-num { color: rgba(255, 255, 255, 0.8); }
.step:hover .step-icon { background: rgba(255, 255, 255, 0.14); border-color: #fff; }

/* 3 · Subtelne cienie — karty i bloki odrywają się od tła */
.about-copy,
.trust-grid,
.cat-index,
.offer-panels,
.branch,
.brands-grid,
.faq-list,
.contact-specs,
.contact-form {
  box-shadow: var(--shadow-card);
}

/* =========================================================
   BEZ RAMEK — zdjęte obramowania kontenerów, kart i siatek.
   Przyciski i pola formularza zachowują ramki (funkcjonalne).
   Karty pozostają czytelne dzięki odstępom i cieniom.
   ========================================================= */
.topbar, .site-header, .ticker,
.section--tint, .section--dark,
.kicker, .sec-intro, .brand-quote,
.about-copy, .about-photo-main, .about-photo-side,
.trust-grid, .trust-tile,
.cat-index, .cat-row, .cat-icon,
.offer-panels, .offer-panel,
.branch, .branch-grid, .branch .img-slot--wide, .branch-specs, .branch-specs > div,
.brands-grid, .brands-grid li,
.faq-list, .faq-item,
.contact-specs, .contact-specs > div,
.contact-form,
.spec-list, .spec-list li,
.hero, .nav a, .lang-switch,
.site-footer, .footer-wordmark, .footer-bottom, .footer-fb {
  border: 0 !important;
}
.about-photo-side { outline: 0 !important; }
.about-media::before,
.site-header::after { display: none !important; }

/* Siatki dzielone dotąd liniami — teraz odstępy zamiast kresek */
.trust-grid, .cat-index, .brands-grid {
  background: transparent !important;
  gap: clamp(0.5rem, 1.1vw, 1rem);
}
.branch-grid {
  background: transparent !important;
  gap: clamp(1rem, 2vw, 1.6rem);
}
.faq-list { background: transparent !important; }

/* Karty, które straciły kreski, dostają cień żeby się nie zlewały z tłem */
.trust-tile, .cat-row, .brands-grid li {
  box-shadow: var(--shadow-card);
}
.faq-item {
  background: #fff;
  box-shadow: var(--shadow-card);
  margin-bottom: 0.6rem;
}
