/* =============================================================
   BIOCHEMIK — Propozycja 01 „PRECYZJA"
   Jasny, korporacyjny premium. Manrope + IBM Plex Mono.
   Granat #002e5b (baza) · Pomarańcz #f15a22 (akcent).
   ============================================================= */

/* -------------------------------------------------------------
   1. Zmienne / design tokens
   ------------------------------------------------------------- */
:root {
  /* Marka */
  --navy: #002e5b;
  --navy-900: #001f3d;
  --navy-700: #123a63;
  --navy-500: #2c527a;
  --orange: #f15a22;
  --orange-deep: #d8491a;
  --blue: #298bcb;
  --blue-2: #295ca9;

  /* Powierzchnie */
  --white: #ffffff;
  --surface: #f6f8fb;
  --surface-2: #eef2f7;
  --hairline: #e4e9f0;
  --hairline-strong: #d4dce6;

  /* Tekst */
  --ink: #0d2036;      /* podstawowy tekst */
  --muted: #4d5f73;    /* tekst drugorzędny (AA na bieli) */
  --faint: #7c8b9c;

  /* Cienie (tint granatowy) */
  --shadow-sm: 0 1px 2px rgba(0, 46, 91, .05), 0 2px 6px rgba(0, 46, 91, .04);
  --shadow: 0 6px 20px rgba(0, 46, 91, .07), 0 2px 6px rgba(0, 46, 91, .05);
  --shadow-lg: 0 20px 48px rgba(0, 46, 91, .12), 0 6px 16px rgba(0, 46, 91, .06);
  --ring: 0 0 0 3px rgba(241, 90, 34, .35);

  /* Promienie */
  --r-xs: 6px;
  --r-sm: 8px;
  --r: 12px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-pill: 999px;

  /* Rytm */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 40px);
  --section-y: clamp(64px, 9vw, 128px);
  --nav-h: 76px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* -------------------------------------------------------------
   2. Reset / bazowe
   ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
[hidden] { display: none !important; } /* atrybut hidden ma zawsze wygrywać z display */
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  color: var(--navy);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

::selection { background: rgba(241, 90, 34, .18); color: var(--navy); }

/* Fokus (dostępność) */
:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: var(--r-xs);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed; top: 10px; left: 10px;
  transform: translateY(-160%);
  z-index: 200;
  background: var(--navy); color: #fff;
  padding: 10px 18px; border-radius: var(--r-sm);
  font-weight: 700; box-shadow: var(--shadow);
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* -------------------------------------------------------------
   3. Wspólne elementy marki
   ------------------------------------------------------------- */

/* Etykieta techniczna (mono) */
.eyebrow {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
}
.eyebrow--light { color: #ff9a6e; }

/* Prążki (motyw z logo) — malejące poziome linie */
.stripes { display: inline-flex; flex-direction: column; gap: 3px; }
.stripes i { display: block; height: 3px; border-radius: 2px; background: var(--orange); }
.stripes i:nth-child(1) { width: 26px; }
.stripes i:nth-child(2) { width: 18px; }
.stripes i:nth-child(3) { width: 11px; opacity: .7; }
.stripes--h { flex-direction: column; }

/* Numer sekcji 01–10 (duży pomarańczowy Manrope) */
.section-num {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--orange);
  font-variant-numeric: tabular-nums;
}
.section-num--light { color: #ff7b46; }

.section-head__top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

/* Nagłówek sekcji z cienką linią u góry */
.section-head {
  max-width: 720px;
  padding-top: clamp(28px, 4vw, 44px);
  border-top: 1px solid var(--hairline);
}
.section-title {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  margin-bottom: 16px;
}
.section-title--light { color: #fff; }
.section-lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 60ch;
}

.section {
  position: relative;
  padding-block: var(--section-y);
  scroll-margin-top: calc(var(--nav-h) + 12px);
}
.section--tint { background: var(--surface); }

/* Heksagonalna gwiazda — subtelny watermark */
.section__hex {
  position: absolute;
  top: 8%; right: 4%;
  width: clamp(160px, 26vw, 340px); height: auto;
  opacity: .05;
  transform: rotate(8deg);
  pointer-events: none;
}

/* -------------------------------------------------------------
   4. Przyciski
   ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 26px;
  border-radius: var(--r-sm);
  border: 1.5px solid transparent;
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
  transition: transform .2s var(--ease), background-color .2s var(--ease),
              border-color .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
}
.btn--sm { padding: 11px 18px; font-size: .95rem; }
.btn--block { width: 100%; }

.btn__arrow { transition: transform .25s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 20px rgba(241, 90, 34, .28);
}
.btn--primary:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(241, 90, 34, .34);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--hairline-strong);
}
.btn--ghost:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* -------------------------------------------------------------
   5. Nawigacja (sticky)
   ------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease), background-color .3s var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--hairline);
  box-shadow: 0 6px 24px rgba(0, 46, 91, .06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--nav-h);
}
.nav__brand { display: inline-flex; align-items: center; }
.nav__brand img { width: 128px; height: auto; }

.nav__menu { display: flex; align-items: center; gap: clamp(8px, 1.6vw, 26px); }
.nav__list { display: flex; align-items: center; gap: clamp(4px, 1.2vw, 8px); }
.nav__list a {
  position: relative;
  display: inline-block;
  padding: 8px 10px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: var(--r-xs);
  transition: color .2s var(--ease);
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 10px; right: 10px; bottom: 2px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav__list a:hover { color: var(--orange-deep); }
.nav__list a:hover::after,
.nav__list a.is-current::after { transform: scaleX(1); }
.nav__list a.is-current { color: var(--navy); }

/* Cienka pomarańczowa linia „skanująca" pod navem */
.nav__scanline {
  display: block;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.nav.is-scrolled .nav__scanline { opacity: .5; }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-sm);
  background: #fff;
}
.nav__toggle span {
  display: block;
  width: 20px; height: 2px;
  margin-inline: auto;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------------------------------------------------------
   6. Hero
   ------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(48px, 7vw, 92px) clamp(56px, 8vw, 104px);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 520px at 82% -6%, rgba(41, 139, 203, .10), transparent 60%),
    radial-gradient(760px 460px at 100% 40%, rgba(241, 90, 34, .06), transparent 62%),
    linear-gradient(180deg, #fff 0%, var(--surface) 100%);
}
/* delikatna siatka „pomiarowa" */
.hero__bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(0, 46, 91, .045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 46, 91, .045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(120% 90% at 70% 0%, #000 30%, transparent 78%);
  mask-image: radial-gradient(120% 90% at 70% 0%, #000 30%, transparent 78%);
  opacity: .55;
}
.hero__hex {
  position: absolute;
  top: 12%; left: -60px;
  width: clamp(220px, 30vw, 420px); height: auto;
  opacity: .06;
  z-index: -1;
  transform: rotate(-10deg);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 16px 8px 8px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
  margin-bottom: 26px;
}
.hero__title {
  font-size: clamp(2.35rem, 5.6vw, 4.15rem);
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.hero__title-accent {
  background: linear-gradient(180deg, var(--navy) 60%, var(--navy-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.hero__lead {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  max-width: 54ch;
  margin-bottom: 32px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.pill span { color: var(--faint); font-weight: 600; }
.pill__ico { color: var(--orange); flex-shrink: 0; }

/* Hero — media */
.hero__media { position: relative; }
.hero__frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, .7);
  aspect-ratio: 3 / 2.05;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease);
}
.hero__media:hover .hero__img { transform: scale(1.06); }

/* Narożne wsporniki „celownika" (precyzja) */
.corner {
  position: absolute;
  width: 26px; height: 26px;
  border: 2.5px solid var(--orange);
  z-index: 2;
  pointer-events: none;
}
.corner--tl { top: 14px; left: 14px; border-right: 0; border-bottom: 0; border-radius: 5px 0 0 0; }
.corner--br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; border-radius: 0 0 5px 0; }

/* Etykieta „pomiar w toku" */
.hero__tag {
  position: absolute;
  top: 14px; right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  background: rgba(13, 32, 54, .74);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--r-pill);
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: .68rem;
  letter-spacing: .04em;
  z-index: 2;
}
.hero__tag-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(241, 90, 34, .7);
  animation: pulse 2.2s infinite;
}

/* Karta statystyki nałożona na zdjęcie */
.hero__stat {
  position: absolute;
  left: -18px; bottom: -26px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 4px 16px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  z-index: 3;
}
.hero__stat-num {
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy);
  line-height: .9;
  font-variant-numeric: tabular-nums;
  grid-row: span 2;
}
.hero__stat-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.35;
}
.hero__stat .stripes { grid-column: 2; }

/* -------------------------------------------------------------
   7. Pasek zaufania + liczniki
   ------------------------------------------------------------- */
.trust {
  padding-block: clamp(40px, 6vw, 72px);
  border-block: 1px solid var(--hairline);
  background: #fff;
}
.trust__label {
  text-align: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 26px;
}
.trust__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 4vw, 56px);
  padding-bottom: clamp(34px, 5vw, 54px);
  margin-bottom: clamp(34px, 5vw, 54px);
  border-bottom: 1px solid var(--hairline);
}
.trust__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
  filter: grayscale(1);
  opacity: .72;
  transition: filter .3s var(--ease), opacity .3s var(--ease), transform .3s var(--ease);
}
.trust__logo:hover { filter: grayscale(0); opacity: 1; transform: translateY(-2px); }
.trust__logo strong {
  font-size: 1.08rem; font-weight: 800; color: var(--navy);
  letter-spacing: -0.01em;
}
.trust__logo span { font-size: .72rem; color: var(--faint); font-weight: 600; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2.5vw, 28px);
}
.stat {
  position: relative;
  padding: 6px 6px 6px 22px;
}
.stat::before {
  content: "";
  position: absolute; left: 0; top: 6px; bottom: 6px;
  width: 3px; border-radius: 3px;
  background: linear-gradient(180deg, var(--orange), rgba(241, 90, 34, .2));
}
.stat__num {
  display: block;
  font-size: clamp(2.5rem, 5.4vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  margin-bottom: 8px;
}
.stat__label { font-size: .9rem; font-weight: 600; color: var(--muted); line-height: 1.4; }
.stat__label em { font-style: normal; color: var(--faint); font-weight: 500; }

/* -------------------------------------------------------------
   8. Obszary usług — karty
   ------------------------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(40px, 5vw, 60px);
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 26px 28px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card__edge {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--hairline-strong);
}
.card:hover .card__edge { transform: scaleX(1); }
.card__num {
  position: absolute;
  top: 22px; right: 24px;
  font-family: "IBM Plex Mono", monospace;
  font-size: .82rem;
  font-weight: 500;
  color: var(--hairline-strong);
  letter-spacing: .05em;
}
.card__icon {
  width: 52px; height: 52px;
  margin-bottom: 20px;
}
.card__title {
  font-size: 1.24rem;
  margin-bottom: 12px;
}
.card__text {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55;
  margin-bottom: 20px;
  flex: 1;
}
.card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}
.card__tags li {
  font-family: "IBM Plex Mono", monospace;
  font-size: .68rem;
  letter-spacing: .03em;
  padding: 5px 10px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  color: var(--navy-500);
}
.card--accent {
  background: linear-gradient(180deg, #fff, #fff7f4);
  border-color: rgba(241, 90, 34, .28);
}
.card--accent .card__edge { transform: scaleX(1); }
.card__quote {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed rgba(241, 90, 34, .3);
  font-size: .86rem;
  font-weight: 700;
  font-style: italic;
  color: var(--orange-deep);
  line-height: 1.45;
}

/* -------------------------------------------------------------
   9. Wyszukiwarka
   ------------------------------------------------------------- */
.finder__panel {
  margin-top: clamp(36px, 4vw, 52px);
  padding: clamp(22px, 3vw, 36px);
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
}
.finder__search {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.finder__search-ico {
  position: absolute;
  left: 18px;
  color: var(--faint);
  pointer-events: none;
}
.finder__input {
  width: 100%;
  padding: 16px 48px 16px 50px;
  border: 1.5px solid var(--hairline-strong);
  border-radius: var(--r);
  background: var(--surface);
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 600;
  transition: border-color .2s var(--ease), background-color .2s var(--ease), box-shadow .2s var(--ease);
}
.finder__input::placeholder { color: var(--faint); font-weight: 500; }
.finder__input:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(241, 90, 34, .12);
}
.finder__clear {
  position: absolute;
  right: 14px;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: none;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1;
  display: grid;
  place-items: center;
}
.finder__clear:hover { background: var(--navy); color: #fff; }

.finder__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.chip {
  padding: 9px 16px;
  border: 1.5px solid var(--hairline-strong);
  border-radius: var(--r-pill);
  background: #fff;
  font-size: .86rem;
  font-weight: 600;
  color: var(--navy);
  transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--navy); transform: translateY(-1px); }
.chip.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.finder__count {
  font-family: "IBM Plex Mono", monospace;
  font-size: .76rem;
  letter-spacing: .04em;
  color: var(--faint);
  margin-bottom: 14px;
}
.finder__count b { color: var(--orange); }

.finder__results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 18px;
  border: 1px solid var(--hairline);
  border-radius: var(--r);
  background: var(--surface);
  transition: transform .2s var(--ease), border-color .2s var(--ease), background-color .2s var(--ease), box-shadow .2s var(--ease);
  animation: fadeUp .4s var(--ease) both;
}
.result:hover {
  transform: translateX(4px);
  border-color: rgba(241, 90, 34, .4);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.result__name { font-weight: 700; color: var(--navy); font-size: .96rem; line-height: 1.3; }
.result__area {
  flex-shrink: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: .66rem;
  letter-spacing: .03em;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  background: rgba(41, 139, 203, .12);
  color: var(--blue-2);
  white-space: nowrap;
}
.result__area[data-area="Mikrobiologia"] { background: rgba(241, 90, 34, .12); color: var(--orange-deep); }
.result__area[data-area="Środowisko pracy"] { background: rgba(0, 46, 91, .09); color: var(--navy); }

.finder__empty {
  padding: 26px;
  text-align: center;
  color: var(--muted);
  background: var(--surface);
  border: 1px dashed var(--hairline-strong);
  border-radius: var(--r);
}
.finder__empty a { color: var(--orange-deep); font-weight: 700; text-decoration: underline; }

/* -------------------------------------------------------------
   10. Filary „Dlaczego my"
   ------------------------------------------------------------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.4vw, 30px);
  margin-top: clamp(40px, 5vw, 60px);
}
.pillar {
  position: relative;
  padding-top: 26px;
  border-top: 2px solid var(--hairline-strong);
  transition: border-color .3s var(--ease);
}
.pillar::after {
  content: "";
  position: absolute; top: -2px; left: 0;
  width: 44px; height: 2px;
  background: var(--orange);
  transition: width .35s var(--ease);
}
.pillar:hover { border-top-color: var(--hairline); }
.pillar:hover::after { width: 100%; }
.pillar__idx {
  font-family: "IBM Plex Mono", monospace;
  font-size: .8rem;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: .06em;
}
.pillar__title { font-size: 1.2rem; margin: 12px 0 12px; }
.pillar__text { color: var(--muted); font-size: .95rem; line-height: 1.55; }

/* -------------------------------------------------------------
   11. Oś czasu (interaktywna)
   ------------------------------------------------------------- */
.timeline__wrap { margin-top: clamp(40px, 5vw, 60px); }

.timeline__axis {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
  padding-top: 30px;
  margin-bottom: 34px;
  border-top: 2px solid var(--hairline-strong);
}
.timeline__progress {
  position: absolute;
  top: -2px; left: 0;
  height: 2px;
  background: var(--orange);
  width: 6.25%;
  transition: width .45s var(--ease);
}
.tl-year {
  position: relative;
  padding: 12px 4px 6px;
  background: transparent;
  border: none;
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(.82rem, 1.4vw, 1.02rem);
  font-weight: 600;
  color: var(--faint);
  letter-spacing: .02em;
  text-align: center;
  border-radius: var(--r-xs);
  transition: color .25s var(--ease), transform .25s var(--ease);
}
.tl-year__tick {
  position: absolute;
  top: -31px; left: 50%;
  transform: translateX(-50%);
  width: 2px; height: 12px;
  background: var(--hairline-strong);
  transition: background-color .25s var(--ease), height .25s var(--ease);
}
.tl-year:hover { color: var(--navy); }
.tl-year:hover .tl-year__tick { background: var(--navy-500); }
.tl-year.is-active { color: var(--orange); transform: translateY(2px); }
.tl-year.is-active .tl-year__tick { background: var(--orange); height: 18px; top: -37px; }

.timeline__panel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
  padding: clamp(28px, 4vw, 44px);
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.timeline__panel::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange), rgba(241, 90, 34, .25));
}
.tl-panel__year {
  font-size: clamp(3rem, 8vw, 5.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy);
  line-height: .9;
  font-variant-numeric: tabular-nums;
}
.tl-panel__year b { color: var(--orange); }
.tl-panel__body { max-width: 56ch; }
.tl-panel__kicker {
  font-family: "IBM Plex Mono", monospace;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.tl-panel__title { font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin-bottom: 10px; }
.tl-panel__text { color: var(--muted); font-size: 1.02rem; line-height: 1.6; }
.tl-panel.is-swapping .tl-panel__year,
.tl-panel.is-swapping .tl-panel__body { opacity: 0; transform: translateY(8px); }
.tl-panel__year, .tl-panel__body { transition: opacity .3s var(--ease), transform .3s var(--ease); }

/* -------------------------------------------------------------
   12. Oddziały + mapa
   ------------------------------------------------------------- */
.branches {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(24px, 3vw, 44px);
  margin-top: clamp(40px, 5vw, 60px);
  align-items: start;
}
.branches__list { display: grid; gap: 12px; }
.branch {
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--hairline);
  border-radius: var(--r);
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  cursor: pointer;
}
.branch:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); border-left-color: var(--orange); }
.branch.is-active { border-left-color: var(--orange); box-shadow: var(--shadow); }
.branch__head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.branch__city { font-size: 1.28rem; }
.branch__badge {
  font-family: "IBM Plex Mono", monospace;
  font-size: .64rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: var(--r-pill);
  background: var(--orange);
  color: #fff;
}
.branch__addr { font-style: normal; color: var(--muted); font-size: .95rem; line-height: 1.6; }
.branch__addr a { color: var(--navy); font-weight: 700; }
.branch__addr a:hover { color: var(--orange-deep); }

.branches__map {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow);
  min-height: 380px;
  height: 100%;
}
.branches__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: grayscale(.2) contrast(1.02); }
.branches__map-cap {
  position: absolute;
  left: 16px; bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(6px);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: .88rem;
  color: var(--navy);
}
.branches__map-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(241, 90, 34, .6);
  animation: pulse 2.2s infinite;
}

/* -------------------------------------------------------------
   13. Strefa B2B (ciemna wstawka)
   ------------------------------------------------------------- */
.b2b {
  position: relative;
  padding-block: var(--section-y);
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  scroll-margin-top: var(--nav-h);
}
.b2b__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(700px 400px at 88% 10%, rgba(41, 139, 203, .28), transparent 60%),
    radial-gradient(600px 420px at 6% 100%, rgba(241, 90, 34, .14), transparent 60%);
}
.b2b__hex {
  position: absolute; right: -40px; bottom: -50px;
  width: clamp(220px, 30vw, 420px);
  opacity: .08;
  filter: brightness(0) invert(1);
  transform: rotate(14deg);
  pointer-events: none;
}
.b2b__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
}
.b2b .section-title { color: #fff; }
.b2b__lead {
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  max-width: 52ch;
  margin: 16px 0 26px;
}
.b2b__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  margin-bottom: 34px;
}
.b2b__features li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 600;
  font-size: .96rem;
  color: rgba(255, 255, 255, .92);
}
.b2b__features svg { color: var(--orange); flex-shrink: 0; }
.b2b__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px 28px; }
.b2b__systems {
  display: flex; align-items: center; gap: 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: .78rem;
  color: rgba(255, 255, 255, .55);
}
.b2b__systems strong { color: #fff; font-weight: 600; }

/* Wizualizacja portalu LIMS */
.portal {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .35);
  backdrop-filter: blur(4px);
}
.portal__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.portal__dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, .3); }
.portal__dot:nth-child(1) { background: var(--orange); }
.portal__url {
  margin-left: 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: .74rem;
  color: rgba(255, 255, 255, .6);
}
.portal__body { padding: 8px 8px; }
.portal__row {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: var(--r-sm);
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
  transition: background-color .2s var(--ease);
}
.portal__row:hover { background: rgba(255, 255, 255, .04); }
.portal__row--head {
  font-family: "IBM Plex Mono", monospace;
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  font-weight: 500;
}
.portal__row em { font-style: normal; font-size: .74rem; padding: 4px 10px; border-radius: var(--r-pill); font-weight: 600; }
.portal__ok { background: rgba(80, 200, 120, .16); color: #6ee7a0; }
.portal__wip { background: rgba(241, 90, 34, .18); color: #ff9a6e; }
.portal__foot {
  display: flex; align-items: center; gap: 9px;
  padding: 13px 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-family: "IBM Plex Mono", monospace;
  font-size: .72rem;
  color: rgba(255, 255, 255, .55);
}
.portal__pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #6ee7a0;
  box-shadow: 0 0 0 0 rgba(110, 231, 160, .6);
  animation: pulse 2s infinite;
}

/* -------------------------------------------------------------
   14. Kontakt + formularz
   ------------------------------------------------------------- */
.contact__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(28px, 4vw, 56px);
  margin-top: clamp(40px, 5vw, 60px);
  align-items: start;
}
.contact__list { display: grid; gap: 18px; margin-bottom: 30px; }
.contact__list li { display: flex; align-items: flex-start; gap: 14px; }
.contact__ico {
  flex-shrink: 0;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: var(--surface);
  border: 1px solid var(--hairline);
  color: var(--orange);
}
.contact__list span span { display: block; }
.contact__k {
  font-family: "IBM Plex Mono", monospace;
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 2px;
}
.contact__list a { font-weight: 700; color: var(--navy); }
.contact__list a:hover { color: var(--orange-deep); }

.contact__reg {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 0;
  border-block: 1px solid var(--hairline);
  margin-bottom: 26px;
}
.contact__reg div {
  display: flex; flex-direction: column;
  padding-right: 18px;
  border-right: 1px solid var(--hairline);
}
.contact__reg div:last-child { border-right: 0; }
.contact__reg dt {
  font-family: "IBM Plex Mono", monospace;
  font-size: .62rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--faint);
}
.contact__reg dd { font-weight: 700; color: var(--navy); font-size: .92rem; }

/* Newsletter */
.newsletter {
  padding: 22px 24px;
  background: var(--navy);
  border-radius: var(--r-lg);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.newsletter::after {
  content: "";
  position: absolute; top: -30px; right: -30px;
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 90, 34, .35), transparent 70%);
}
.newsletter__title { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.newsletter__text { font-size: .86rem; color: rgba(255, 255, 255, .72); margin-bottom: 16px; }
.newsletter__row { display: flex; gap: 8px; position: relative; z-index: 1; }
.newsletter__input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  border: 1.5px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: .92rem;
}
.newsletter__input::placeholder { color: rgba(255, 255, 255, .55); }
.newsletter__input:focus { outline: none; border-color: var(--orange); background: rgba(255, 255, 255, .12); }
.newsletter__msg { font-size: .82rem; margin-top: 10px; min-height: 1em; color: #6ee7a0; font-weight: 600; }
.newsletter__msg.is-error { color: #ff9a6e; }

/* Formularz */
.form {
  padding: clamp(26px, 3.4vw, 42px);
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
}
.form__title { font-size: 1.35rem; font-weight: 800; color: var(--navy); margin-bottom: 22px; }
.form__row { margin-bottom: 18px; }
.form__row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; }
.field__label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
}
.field__label b { color: var(--orange); }
.field__input {
  padding: 13px 15px;
  border: 1.5px solid var(--hairline-strong);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--ink);
  font-size: .98rem;
  font-weight: 500;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.field__input::placeholder { color: var(--faint); }
.field__input:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(241, 90, 34, .1);
}
.field__input--area { resize: vertical; min-height: 108px; }
.field__input[aria-invalid="true"] { border-color: #e0492a; background: #fff6f4; }
.field__error {
  display: block;
  min-height: 0;
  font-size: .78rem;
  font-weight: 600;
  color: #d23b1c;
  margin-top: 6px;
}
.field__error--consent { margin-top: 0; }

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 4px 0 6px;
  cursor: pointer;
}
.consent__box { position: absolute; opacity: 0; width: 20px; height: 20px; }
.consent__mark {
  width: 22px; height: 22px;
  border: 1.5px solid var(--hairline-strong);
  border-radius: var(--r-xs);
  background: var(--surface);
  display: grid; place-items: center;
  transition: all .2s var(--ease);
  margin-top: 2px;
}
.consent__mark::after {
  content: "";
  width: 11px; height: 6px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg) scale(0);
  transition: transform .2s var(--ease);
  margin-top: -2px;
}
.consent__box:checked + .consent__mark { background: var(--orange); border-color: var(--orange); }
.consent__box:checked + .consent__mark::after { transform: rotate(-45deg) scale(1); }
.consent__box:focus-visible + .consent__mark { box-shadow: var(--ring); }
.consent__text { font-size: .82rem; color: var(--muted); line-height: 1.5; }
.consent__text a { color: var(--orange-deep); font-weight: 700; text-decoration: underline; }
.consent__text b { color: var(--orange); }

.form .btn { margin-top: 18px; }
.form__note { font-size: .78rem; color: var(--faint); margin-top: 14px; line-height: 1.5; }
.form__note b { color: var(--muted); }
.form__success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--r);
  background: rgba(80, 200, 120, .1);
  border: 1px solid rgba(80, 200, 120, .35);
  color: #1f7a4d;
  font-weight: 700;
  font-size: .92rem;
}
.form__success svg { color: #2a9d5c; flex-shrink: 0; }

/* -------------------------------------------------------------
   15. Stopka
   ------------------------------------------------------------- */
.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, .7);
  padding-top: clamp(50px, 6vw, 78px);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(40px, 5vw, 60px);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer__logo {
  display: inline-flex;
  padding: 12px 16px;
  background: #fff;
  border-radius: var(--r);
  margin-bottom: 18px;
}
.footer__logo img { width: 120px; height: auto; }
.footer__tag { font-size: .9rem; line-height: 1.6; max-width: 42ch; margin-bottom: 18px; }
.footer__h {
  font-family: "IBM Plex Mono", monospace;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 16px;
}
.footer__col ul { display: grid; gap: 11px; }
.footer__col a { font-size: .92rem; font-weight: 600; color: rgba(255, 255, 255, .8); transition: color .2s var(--ease); }
.footer__col a:hover { color: var(--orange); }
.footer__reg li { font-size: .86rem; font-family: "IBM Plex Mono", monospace; color: rgba(255, 255, 255, .6); margin-bottom: 4px; }
.footer__accr {
  display: flex; flex-wrap: wrap; gap: 7px;
  margin-top: 18px;
}
.footer__accr li {
  font-size: .68rem; font-weight: 700;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--r-pill);
  color: #fff;
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-block: 24px 30px;
  font-size: .84rem;
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__legal a { color: rgba(255, 255, 255, .7); transition: color .2s var(--ease); }
.footer__legal a:hover { color: var(--orange); }

/* -------------------------------------------------------------
   16. Animacje / reveal
   ------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(241, 90, 34, .55); }
  70% { box-shadow: 0 0 0 9px rgba(241, 90, 34, 0); }
  100% { box-shadow: 0 0 0 0 rgba(241, 90, 34, 0); }
}

/* -------------------------------------------------------------
   17. Responsywność
   ------------------------------------------------------------- */
@media (max-width: 1080px) {
  .nav__menu {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 18px var(--gutter) 26px;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--hairline);
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
    max-height: calc(100dvh - var(--nav-h));
    overflow-y: auto;
  }
  .nav__menu.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__list a { padding: 13px 12px; font-size: 1.02rem; border-radius: var(--r-sm); }
  .nav__list a::after { display: none; }
  .nav__list a:hover { background: var(--surface); }
  .nav__cta { margin-top: 12px; width: 100%; }
  .nav__toggle { display: flex; }

  .hero__grid { grid-template-columns: 1fr; gap: clamp(56px, 9vw, 80px); }
  .hero__media { max-width: 560px; margin-inline: auto; width: 100%; }
  .b2b__grid { grid-template-columns: 1fr; }
  .branches { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 26px 20px; }
  .timeline__panel { grid-template-columns: 1fr; text-align: left; gap: 14px; }
  .finder__results { grid-template-columns: 1fr; }
  .b2b__features { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  :root { --nav-h: 66px; }
  .nav__brand img { width: 112px; }
  .cards { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .form__row--2 { grid-template-columns: 1fr; }
  .hero__stat { left: 8px; right: 8px; bottom: -20px; }
  .contact__reg { flex-direction: column; gap: 12px; }
  .contact__reg div { border-right: 0; border-bottom: 1px solid var(--hairline); padding-bottom: 12px; padding-right: 0; }
  .contact__reg div:last-child { border-bottom: 0; padding-bottom: 0; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__grid { grid-template-columns: 1fr; }
  .trust__logos { gap: 20px 28px; }
}

/* -------------------------------------------------------------
   18. Reduced motion
   ------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__tag-dot, .branches__map-dot, .portal__pulse { animation: none; }
}

/* -------------------------------------------------------------
   19. Demo: przełącznik logo (klik w logo = stare ⇄ nowe)
   ------------------------------------------------------------- */
.logoswap { cursor: pointer; }
.logoswap__new {
  display: none;
  position: relative;
  white-space: nowrap;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
  padding-bottom: .3em;
  color: var(--navy);
  font-size: 27px;
}
.logoswap__new i {
  position: absolute; bottom: 0;
  height: .14em; border-radius: 999px;
  background: var(--orange);
}
.logoswap__new i:first-of-type { left: 0; width: 1.35em; }
.logoswap__new i:last-of-type { left: 1.55em; width: .58em; }
html.logo-new .logoswap__old { display: none; }
html.logo-new .logoswap__new { display: inline-block; }
.footer__logo .logoswap__new { font-size: 25px; }
@media (max-width: 560px) {
  .nav__brand .logoswap__new { font-size: 23px; }
}
