/* ==========================================================
   HOLTAR · pomoc drogowa 24/7
   Baza jasna, akcent żółty z logo. Płasko, bez poświat.
   ========================================================== */

:root {
  /* kolory */
  --bg: #ffffff;
  --bg-soft: #f6f6f2;
  --ink: #14161a;
  --ink-2: #3f454f;
  --muted: #767d89;
  --line: #e6e6df;
  --line-2: #d3d3c9;
  --yellow: #ffc20e;
  --yellow-2: #e5a800;

  /* wymiary */
  --wrap: 2100px;
  --gut: clamp(20px, 3vw, 56px);
  --nav-h: 98px;

  /* typografia */
  --f-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  /* promienie */
  --r-sm: 4px;
  --r-md: 8px;
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, p, dl, dd, ul { margin: 0; }
ul { list-style: none; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--yellow-2);
  outline-offset: 2px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
}
.skip:focus { left: 8px; top: 8px; }

/* --- pomocnicze ------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #17b26a;
  flex: none;
}

/* --- przyciski -------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--r-sm);
  border: 1.5px solid transparent;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  white-space: nowrap;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: none;
}

.btn--lg {
  padding: 16px 28px;
  font-size: 17px;
}
.btn--lg svg { width: 20px; height: 20px; }

.btn--primary {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}
.btn--primary:hover { background: var(--yellow-2); border-color: var(--yellow-2); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover { border-color: var(--ink); background: var(--bg-soft); }

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

/* ==========================================================
   NAWIGACJA
   ========================================================== */
.nav {
  position: relative;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__brand { flex: none; }
.nav__brand img {
  height: 58px;
  width: auto;
}
.nav__brand .brand--light { display: none; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-inline: auto;
}

.nav__links a {
  position: relative;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-2);
  padding: 6px 0;
  transition: color .16s ease;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--yellow);
  transition: right .2s ease;
}

.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { right: 0; }

/* odnośnik do drugiej firmy klienta, obok przycisku z numerem */
.nav__ext {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 6px 14px 6px 0;
  border-right: 1px solid var(--line);
  text-align: right;
  line-height: 1.25;
}

.nav__ext-lab {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav__ext-name {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-2);
  transition: color .16s ease;
}

.nav__ext:hover .nav__ext-name { color: var(--ink); }

.nav__ext-znak {
  display: block;
  height: 24px;
  width: auto;
  margin-right: 1px;
}

.nav__ext .appex--light { display: none; }
.nav--over .nav__ext .appex--dark { display: none; }
.nav--over .nav__ext .appex--light { display: block; }

.nav__ext svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  opacity: 0.55;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: none;
}

/* burger */
.nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  margin-right: -10px;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* szuflada mobilna */
.drawer {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.drawer__inner {
  display: flex;
  flex-direction: column;
  padding-block: 8px 24px;
}

.drawer__inner a {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.drawer__call {
  margin-top: 18px;
  border: 0 !important;
  background: var(--yellow);
  border-radius: var(--r-sm);
  text-align: center;
  font-size: 20px !important;
  padding: 16px 0 !important;
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  border-bottom: 1px solid var(--line);
}

/* tekst trzyma linię treści z nawigacją, zdjęcie dobija do prawej krawędzi
   i rozciąga się na całą wysokość sekcji */
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 3.2vw, 56px);
  align-items: center;
  min-height: clamp(460px, 64vh, 700px);
  padding-block: clamp(28px, 3vw, 52px);
  padding-left: max(var(--gut), calc((100% - var(--wrap)) / 2 + var(--gut)));
  padding-right: 0;
}

.hero__copy {
  align-self: center;
}

.hero__media {
  align-self: stretch;
  overflow: hidden;
  background: var(--bg-soft);
  border-radius: 28px 0 0 28px;
}

.hero__media picture {
  display: block;
  height: 100%;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
}

/* --- lewa kolumna --- */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 12px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.01em;
}

.hero__title {
  margin-top: 18px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(31px, 3.4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero__title em {
  font-style: normal;
  display: inline-block;
  margin-top: 8px;
  padding: 0 .14em;
  background: var(--yellow);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero__lede {
  margin-top: 18px;
  max-width: 52ch;
  font-size: clamp(15.5px, 1.1vw, 17px);
  line-height: 1.65;
  color: var(--ink-2);
}

.hero__cta {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__facts {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.fact dt {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.fact dd {
  margin-top: 4px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(26px, 2.4vw, 33px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.fact dd span {
  font-size: 0.5em;
  font-weight: 700;
  color: var(--muted);
  margin-left: 2px;
}

/* --- mapa zasięgu ----------------------------------------- */
.coverage__lab {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.map {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 4px;
}

.map__disc { fill: #fffef8; }

.map__edge {
  fill: none;
  stroke: #c2c2b0;
  stroke-width: 1.4;
  stroke-dasharray: 6 5;
}

/* warstwy geograficzne z OpenStreetMap */
.map__border,
.map__river,
.map__road {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map__border {
  stroke: #dfdbcd;
  stroke-width: 1;
  stroke-dasharray: 5 4;
}

.map__river {
  stroke: #bcd8e6;
  stroke-width: 1.8;
}

.map__river--s {
  stroke: #d9e9f0;
  stroke-width: 0.8;
}

.map__road {
  stroke: #dcd4c1;
  stroke-width: 1.5;
}

.map__road--s {
  stroke: #eae5d7;
  stroke-width: 0.9;
}

.map__dot {
  fill: var(--ink);
  stroke: #fff;
  stroke-width: 2;
}

.map__hub-ring {
  fill: none;
  stroke: var(--yellow);
  stroke-width: 1.5;
}

.map__hub {
  fill: var(--yellow);
  stroke: var(--ink);
  stroke-width: 1.5;
}

.map__label,
.map__scale {
  paint-order: stroke fill;
  stroke: #fff;
  stroke-width: 3;
  stroke-linejoin: round;
}

.map__label {
  font-family: var(--f-body);
  font-size: 12.5px;
  font-weight: 500;
  fill: var(--ink-2);
}

.map__label--hub {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 14.5px;
  fill: var(--ink);
}

.map__scale {
  font-family: var(--f-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  fill: var(--muted);
}

.coverage__foot {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

/* wymóg licencji ODbL danych OpenStreetMap */
.coverage__attr {
  margin-top: 8px;
  font-size: 11.5px;
  color: #9aa0aa;
}

.coverage__attr a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.coverage__attr a:hover { color: var(--ink-2); }

/* nazwy widoczne są na mapie, ta lista pracuje dla czytników ekranu
   i wychodzi na wierzch dopiero na wąskich ekranach */
.coverage__list {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ==========================================================
   RESPONSYWNOŚĆ
   ========================================================== */
/* od tej szerokości druga linia tytułu mieści się w jednym wierszu */
@media (min-width: 480px) {
  .hero__title em { white-space: nowrap; }
}

@media (max-width: 1080px) {
  .nav__links { gap: 22px; }
  .nav__inner { gap: 22px; }
  .hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    min-height: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .hero__copy {
    max-width: 760px;
    padding-inline: var(--gut);
    padding-block: 8px 40px;
  }
  .hero__media {
    height: clamp(260px, 44vw, 420px);
    border-radius: 0;
  }
  .coverage { max-width: 560px; }
}

/* poniżej tej szerokości podpisy na mapie spadłyby poniżej 12 px,
   więc zostają same punkty, a nazwy wracają jako lista pod mapą */
@media (max-width: 480px) {
  .map__label:not(.map__label--hub) { display: none; }
  .map__dot { r: 4.5; }

  .map {
    max-width: 320px;
    margin-inline: auto;
  }

  .coverage__list {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    clip-path: none;
    white-space: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 9px;
    margin-top: 6px;
  }

  .coverage__list li {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink-2);
  }

  /* separator wewnątrz elementu, żeby przy zawijaniu nie zaczynał wiersza */
  .coverage__list li:not(:last-child)::after {
    content: "·";
    padding-left: 9px;
    color: var(--line-2);
  }

  .coverage__foot { margin-top: 14px; }
}

@media (max-width: 960px) {
  :root { --nav-h: 80px; }
  .nav__links, .nav__ext { display: none; }
  .nav__burger { display: flex; }
  .nav__inner { justify-content: space-between; }
  .nav__brand img { height: 46px; }
}

@media (max-width: 560px) {
  .btn--call span { display: none; }
  .btn--call { padding: 11px 14px; }
  .btn--call svg { width: 20px; height: 20px; }

  .hero__copy { padding-block: 4px 32px; }
  .hero__title { margin-top: 20px; }
  .hero__cta { margin-top: 26px; }
  .hero__cta .btn { width: 100%; }
  .hero__facts {
    margin-top: 34px;
    padding-top: 22px;
    gap: 16px;
  }
  .coverage { max-width: none; }
}

@media (max-width: 400px) {
  .hero__facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fact:last-child { grid-column: span 2; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ==========================================================
   WARIANT 2: zdjęcie w tle, nawigacja przezroczysta nad hero
   ========================================================== */
.nav--over {
  background: transparent;
  border-bottom: 0;
}

.nav--over .brand--dark { display: none; }
.nav--over .brand--light { display: block; }

.nav--over .nav__links a { color: rgba(255, 255, 255, 0.86); }
.nav--over .nav__links a:hover { color: #fff; }
.nav--over .nav__ext { border-right-color: rgba(255, 255, 255, 0.22); }
.nav--over .nav__ext-lab { color: rgba(255, 255, 255, 0.6); }
.nav--over .nav__ext-name { color: rgba(255, 255, 255, 0.92); }
.nav--over .nav__ext:hover .nav__ext-name { color: #fff; }
.nav--over .nav__burger span { background: #fff; }

.nav--over .btn--call {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}
.nav--over .btn--call:hover { background: #fff; border-color: #fff; }

/* hero ze zdjęciem w tle wchodzi pod przezroczystą nawigację */
.hero--bg {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 86vh, 900px);
  margin-top: calc(-1 * var(--nav-h));
  padding-top: var(--nav-h);
  border-bottom: 0;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg picture,
.hero__bg img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__bg img {
  object-fit: cover;
  object-position: 50% 50%;
  /* odbicie lustrzane: mężczyzna z telefonem ma być po prawej,
     czyli po jaśniejszej stronie przyciemnienia, a nie pod tekstem */
  transform: scaleX(-1);
}

/* przyciemnienie mocniejsze od strony tekstu, żeby utrzymać kontrast */
.hero--bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(11, 12, 15, 0.90) 0%,
    rgba(11, 12, 15, 0.80) 38%,
    rgba(11, 12, 15, 0.42) 72%,
    rgba(11, 12, 15, 0.26) 100%);
}

.hero--bg__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(48px, 6vw, 88px);
}

.v2 .hero__copy {
  max-width: 640px;
  padding-inline: 0;
  padding-block: 0;
}

.v2 .hero__title { color: #fff; }
.v2 .hero__title em { color: var(--ink); }
.v2 .hero__lede { color: rgba(255, 255, 255, 0.82); }

.v2 .hero__eyebrow {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
}

.hero--bg .btn--ghost,
.sec--ciemna .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.hero--bg .btn--ghost:hover,
.sec--ciemna .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.v2 .hero__facts { border-top-color: rgba(255, 255, 255, 0.2); }
.v2 .fact dt { color: rgba(255, 255, 255, 0.62); }
.v2 .fact dd { color: #fff; }
.v2 .fact dd span { color: rgba(255, 255, 255, 0.62); }

@media (max-width: 1080px) {
  .hero--bg { min-height: clamp(520px, 78vh, 760px); }
  .v2 .hero__copy { padding-block: 0; }
}

@media (max-width: 560px) {
  .hero--bg::after {
    background: linear-gradient(180deg,
      rgba(11, 12, 15, 0.86) 0%,
      rgba(11, 12, 15, 0.78) 55%,
      rgba(11, 12, 15, 0.62) 100%);
  }
  .hero--bg__inner { padding-block: 36px 44px; }
}

/* ==========================================================
   SEKCJE TREŚCI
   Układ pary: kolumna tekstu i pionowe zdjęcie obok niej.
   Kontener węższy od hero, żeby treść trzymała się kupy.
   ========================================================== */
.wrap--sekcja { max-width: 1280px; }

.sec {
  padding-block: clamp(64px, 7vw, 120px);
  border-bottom: 1px solid var(--line);
}

.sec__head { margin-bottom: clamp(28px, 3vw, 44px); }

.sec__tytul {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(27px, 2.6vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.sec__lede {
  margin-top: 14px;
  max-width: 52ch;
  font-size: clamp(15.5px, 1.05vw, 16.5px);
  line-height: 1.65;
  color: var(--ink-2);
}

/* --- para: tekst i zdjęcie -------------------------------- */
.duo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.66fr);
  gap: clamp(36px, 4.5vw, 72px);
  align-items: stretch;
}

.duo--odwrot { grid-template-columns: minmax(0, 0.66fr) minmax(0, 1fr); }

.duo__foto {
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.duo__foto picture {
  flex: 1;
  min-height: 320px;
  display: block;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-soft);
}

.duo__foto img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- lista usług ------------------------------------------ */
.usluga {
  padding-block: clamp(18px, 1.7vw, 24px);
  border-top: 1px solid var(--line);
}

.usluga:last-child { border-bottom: 1px solid var(--line); }

.usluga__gora {
  display: flex;
  align-items: baseline;
  gap: 8px 14px;
  flex-wrap: wrap;
}

.usluga__nr {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #b4b4a6;
  transition: color .18s ease;
}

.usluga:hover .usluga__nr { color: var(--yellow-2); }

.usluga__tytul {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.usluga__meta {
  margin-left: auto;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--muted);
  white-space: nowrap;
}

.usluga__opis {
  margin-top: 8px;
  padding-left: 36px;
  max-width: 62ch;
  font-size: 15px;
  line-height: 1.62;
  color: var(--ink-2);
}

.usluga__link {
  display: inline-block;
  margin-left: 4px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: inset 0 -2px 0 var(--yellow);
  transition: box-shadow .18s ease;
}
.usluga__link:hover { box-shadow: inset 0 -11px 0 var(--yellow); }

/* ==========================================================
   SEKCJA CIEMNA: przebieg wyjazdu
   ========================================================== */
.sec--ciemna {
  background: var(--ink);
  color: #fff;
  border-bottom: 0;
}

.sec--ciemna .sec__tytul { color: #fff; }
.sec--ciemna .sec__lede { color: rgba(255, 255, 255, 0.72); }
.sec--ciemna .duo__foto picture { background: #22252b; }

.krok {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 4px 14px;
  padding-block: clamp(18px, 1.7vw, 24px);
  border-top: 1px solid #2b2f36;
}

.krok:last-child { border-bottom: 1px solid #2b2f36; }

.krok__nr {
  grid-row: span 2;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--yellow);
  padding-top: 3px;
}

.krok__tytul {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(17px, 1.3vw, 20px);
  letter-spacing: -0.015em;
  color: #fff;
}

.krok__opis {
  font-size: 15px;
  line-height: 1.6;
  color: #b8bec8;
}

.wskazowka {
  margin-top: clamp(26px, 2.6vw, 36px);
  padding: clamp(20px, 2vw, 28px);
  border: 1px solid #2f333b;
  border-left: 4px solid var(--yellow);
  border-radius: 6px;
  background: #191c21;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 26px;
}

.wskazowka__lab {
  width: 100%;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
}

.wskazowka__txt {
  flex: 1 1 300px;
  font-size: 15px;
  line-height: 1.6;
  color: #cdd3dc;
}

/* --- wejście w widok -------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
  transition-delay: calc(var(--op, 0) * 70ms);
}

.reveal.jest-widoczny {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .duo,
  .duo--odwrot {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
  .duo__foto {
    max-width: 520px;
    order: 2;
  }
  .duo--odwrot .duo__foto { order: -1; }
  .duo__foto picture {
    flex: none;
    aspect-ratio: 4 / 3;
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .usluga__opis { padding-left: 0; }
  .usluga__meta {
    margin-left: 0;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================
   ZASIĘG: mapa sprzężona z listą miejscowości
   ========================================================== */
.zasieg {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 3.5vw, 56px);
  align-items: start;
}

.zasieg__mapa { min-width: 0; }

.zasieg__zrodlo {
  margin-top: 4px;
  font-size: 11.5px;
  color: #9aa0aa;
}

.zasieg__zrodlo a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.zasieg__lab {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

/* --- lista miejscowości ----------------------------------- */
.miasta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(16px, 2vw, 32px);
}

.miasto {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 10px 11px 12px;
  border-bottom: 1px solid var(--line);
  cursor: default;
  transition: background-color .16s ease;
}

/* pasek marki wjeżdża od lewej przy najechaniu */
.miasto::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--yellow);
  transition: width .18s ease;
}

.miasto:hover,
.miasto:focus-visible {
  background: #fbfaf5;
  outline: none;
}

.miasto:hover::before,
.miasto:focus-visible::before { width: 3px; }

.miasto__nazwa {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color .16s ease;
}

.miasto:hover .miasto__nazwa,
.miasto:focus-visible .miasto__nazwa {
  color: var(--ink);
  font-weight: 600;
}

.miasto__km {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
  white-space: nowrap;
  transition: color .16s ease;
}

.miasto__km small {
  font-size: 11px;
  font-weight: 600;
}

.miasto:hover .miasto__km,
.miasto:focus-visible .miasto__km { color: var(--yellow-2); }

/* --- stan podświetlenia na mapie --------------------------- */
.map__promien {
  stroke: var(--yellow);
  stroke-width: 1.4;
  opacity: 0;
  transition: opacity .2s ease;
}

.map__promien.jest-aktywny { opacity: 1; }

.map__dot,
.map__label { transition: fill .18s ease, r .18s ease; }

.map__dot.jest-aktywny {
  fill: var(--yellow-2);
  r: 5.5;
}

.map__label.jest-aktywny {
  fill: var(--ink);
  font-weight: 700;
}

/* --- domknięcie sekcji ------------------------------------ */
.zasieg__dalej {
  margin-top: 22px;
  padding: clamp(18px, 1.8vw, 24px);
  border: 1px solid var(--line);
  border-left: 4px solid var(--yellow);
  border-radius: 6px;
  background: var(--bg-soft);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
}

.zasieg__dalej p {
  flex: 1 1 260px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
}

@media (max-width: 900px) {
  .zasieg { grid-template-columns: minmax(0, 1fr); }
  .zasieg__mapa { max-width: 560px; }
}

@media (max-width: 480px) {
  .miasta { grid-template-columns: minmax(0, 1fr); }
}

/* ==========================================================
   WYNAJEM SPRZĘTU
   ========================================================== */
.sec--alt { background: var(--bg-soft); }

.sprzet {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 14px;
}

.sprzet__poz {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  gap: 2px 16px;
  padding: 14px 18px 14px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color .18s ease, transform .18s ease;
}

.sprzet__poz:hover {
  border-color: var(--line-2);
  transform: translateY(-2px);
}

.sprzet__foto {
  grid-row: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
}

.sprzet__foto img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.sprzet__nazwa {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.sprzet__spec {
  margin-top: 3px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

.sprzet__cena {
  grid-column: 2;
  margin-top: 8px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.sprzet__cena small {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.sprzet__stopka {
  margin-top: clamp(24px, 2.6vw, 36px);
  padding: clamp(20px, 2vw, 28px);
  background: var(--bg);
  border: 1px solid var(--line);
  border-left: 4px solid var(--yellow);
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
}

.sprzet__stopka p {
  flex: 1 1 320px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
}

.sprzet__akcje {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ==========================================================
   KONTAKT
   ========================================================== */
.kontakt {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 72px);
  align-items: start;
}

.kontakt__lab {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
}

.kontakt__numer {
  display: block;
  margin-top: 10px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #fff;
  transition: color .16s ease;
}
.kontakt__numer:hover { color: var(--yellow); }

.kontakt__pod {
  margin-top: 14px;
  max-width: 40ch;
  font-size: 15.5px;
  line-height: 1.62;
  color: #b8bec8;
}

.kontakt__glowny .btn { margin-top: 24px; }

.kontakt__dane {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px 36px;
}

.kontakt__poz dt {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding-bottom: 8px;
  border-bottom: 1px solid #2b2f36;
}

.kontakt__poz dd {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: #cdd3dc;
}

.kontakt__drobne {
  display: inline-block;
  margin-top: 8px;
  font-size: 13.5px;
  color: #8f97a3;
}

/* ==========================================================
   STOPKA
   ========================================================== */
.stopka {
  background: #0e1013;
  color: #b8bec8;
  padding-top: clamp(48px, 5vw, 76px);
}

.stopka__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 32px 40px;
  padding-bottom: clamp(32px, 3.5vw, 52px);
}

.stopka__marka img {
  height: 46px;
  width: auto;
}

.stopka__marka p {
  margin-top: 16px;
  max-width: 40ch;
  font-size: 14.5px;
  line-height: 1.6;
}

.stopka__lab {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6f7684;
  margin-bottom: 14px;
}

.stopka__kol ul {
  display: grid;
  gap: 9px;
  font-size: 14.5px;
}

.stopka__kol a {
  transition: color .16s ease;
}
.stopka__kol a:hover { color: #fff; }

.stopka__kol svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  opacity: 0.55;
  margin-left: 3px;
}

.stopka__tel {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.stopka__dol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
  padding-block: 20px;
  border-top: 1px solid #23262c;
  font-size: 13px;
  color: #767d89;
}

.stopka__linki {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.stopka__linki a { transition: color .16s ease; }
.stopka__linki a:hover { color: #fff; }

.stopka__made { color: #5f6672; }

/* ==========================================================
   KOMUNIKAT O PRYWATNOŚCI
   ========================================================== */
.cookies {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: 0 var(--gut) 16px;
  transform: translateY(120%);
  transition: transform .28s ease;
}

.cookies.jest-widoczny { transform: none; }

.cookies__box {
  max-width: 900px;
  margin-inline: auto;
  padding: 16px 18px;
  background: var(--ink);
  color: #cdd3dc;
  border-radius: 8px;
  border-left: 4px solid var(--yellow);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.cookies__txt {
  flex: 1 1 320px;
  font-size: 13.5px;
  line-height: 1.55;
}

.cookies__txt a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookies__ok { flex: none; }

/* ==========================================================
   DOKUMENT (polityka prywatności)
   ========================================================== */
.dokument__head { margin-bottom: clamp(28px, 3vw, 44px); }

.dokument__data {
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
}

.dokument__tresc {
  max-width: 68ch;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-2);
}

.dokument__tresc h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.dokument__tresc p + p { margin-top: 12px; }

.dokument__tresc a {
  color: var(--ink);
  box-shadow: inset 0 -2px 0 var(--yellow);
}

.dokument__powrot {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-weight: 600;
}

@media (max-width: 900px) {
  .kontakt { grid-template-columns: minmax(0, 1fr); }
  .stopka__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stopka__marka { grid-column: span 2; }
}

@media (max-width: 560px) {
  /* najdrobniejsze podpisy podbite do czytelnego minimum na telefonie */
  .zasieg__zrodlo,
  .stopka__lab,
  .cookies__txt { font-size: 12.5px; }

  .stopka__grid { grid-template-columns: minmax(0, 1fr); }
  .stopka__marka { grid-column: auto; }
  .sprzet__stopka .btn,
  .sprzet__akcje { width: 100%; }
  .sprzet__akcje .btn { flex: 1 1 100%; }
  .cookies__ok { width: 100%; }
}

/* --- tabor: laweta w barwach firmy na ciemnym tle -------- */
.tabor {
  margin: clamp(24px, 2.6vw, 40px) auto 0;
  max-width: 620px;
}

.tabor img {
  display: block;
  width: 100%;
  height: auto;
}

.tabor--jasny {
  max-width: 620px;
  margin-inline: 0;
}

/* ==========================================================
   FLOTA: lawety wycięte z tła, stojące na pasie jezdni
   ========================================================== */
.flota {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 36px);
}

.flota__poz {
  display: flex;
  flex-direction: column;
}

.flota__foto {
  position: relative;
  margin: 0 0 20px;
  height: clamp(150px, 14vw, 186px);
  padding-bottom: 14px;
}

.flota__foto picture {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* pas jezdni pod kołami: ciągła linia i przerywana oś */
.flota__foto::before,
.flota__foto::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.flota__foto::before {
  height: 1px;
  background: var(--line-2);
}

.flota__foto::after {
  bottom: 5px;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--yellow) 0 18px,
    transparent 18px 32px
  );
  opacity: 0.55;
  transition: opacity .22s ease;
}

.flota__poz:hover .flota__foto::after { opacity: 1; }

.flota__foto img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform .28s ease;
}

.flota__poz:hover .flota__foto img { transform: translateY(-4px); }

.flota__tytul {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(17px, 1.3vw, 20px);
  letter-spacing: -0.02em;
}

.flota__opis p {
  margin-top: 7px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
}

@media (max-width: 900px) {
  .flota { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .flota__foto { min-height: 0; }
  .flota__poz { max-width: 520px; }
}

@media (prefers-reduced-motion: reduce) {
  .flota__poz:hover .flota__foto img { transform: none; }
}
