/* =====================================================================
   AUTO-JOŃSKI — transport międzynarodowy
   Motyw: "glassmorphism", jasny błękit
   ===================================================================== */

/* ---------- Font (self-hosted, bez Google Fonts — brak zapytań do stron trzecich) ---------- */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/manrope-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Zmienne ---------- */
:root {
  --bg-top:      #f4faff;
  --bg-bottom:   #d9e9fa;

  --ink:         #0b2748;
  --ink-soft:    #3f5f86;
  --ink-faint:   #6d88a8;

  --brand:       #1279d6;
  --brand-deep:  #0b5aa5;
  --brand-light: #58b3f7;
  --brand-glow:  #9ad4ff;

  --glass:       rgba(255, 255, 255, .55);
  --glass-strong:rgba(255, 255, 255, .72);
  --glass-brd:   rgba(255, 255, 255, .85);
  --glass-brd-2: rgba(146, 191, 234, .45);

  --shadow-sm:   0 6px 18px -8px rgba(11, 60, 110, .35);
  --shadow:      0 22px 48px -24px rgba(11, 60, 110, .45);
  --shadow-lg:   0 42px 80px -34px rgba(11, 60, 110, .55);

  --r-sm: 12px;
  --r:    20px;
  --r-lg: 28px;
  --r-xl: 36px;

  --maxw: 1180px;
  --pad:  clamp(1.15rem, 4vw, 2.5rem);
  --sect: clamp(4.5rem, 11vw, 8.5rem);

  --ease: cubic-bezier(.22, .68, .35, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, ul, ol, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }

body {
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg-top);
  line-height: 1.62;
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* =====================================================================
   TŁO — stały, wielowarstwowy gradient + rozmyte plamy światła
   ===================================================================== */
.backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 85% at 50% -10%, #ffffff 0%, rgba(255,255,255,0) 55%),
    linear-gradient(178deg, var(--bg-top) 0%, #e8f2fd 45%, var(--bg-bottom) 100%);
}
.backdrop::after {           /* delikatna siatka */
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(93, 150, 205, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 150, 205, .07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(105% 75% at 50% 30%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(105% 75% at 50% 30%, #000 25%, transparent 78%);
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(75px);
  opacity: .55;
  will-change: transform;
}
.blob-1 { width: 46vw; height: 46vw; left: -12vw; top: -8vw;
          background: radial-gradient(circle, #8ecbff 0%, rgba(142,203,255,0) 70%);
          animation: drift1 26s var(--ease) infinite alternate; }
.blob-2 { width: 40vw; height: 40vw; right: -10vw; top: 22vh;
          background: radial-gradient(circle, #b6e0ff 0%, rgba(182,224,255,0) 70%);
          animation: drift2 32s var(--ease) infinite alternate; }
.blob-3 { width: 52vw; height: 52vw; left: 18vw; bottom: -18vw;
          background: radial-gradient(circle, #a8d8fb 0%, rgba(168,216,251,0) 70%);
          animation: drift3 38s var(--ease) infinite alternate; }

@keyframes drift1 { to { transform: translate3d(7vw, 5vh, 0) scale(1.14); } }
@keyframes drift2 { to { transform: translate3d(-8vw, 8vh, 0) scale(1.1); } }
@keyframes drift3 { to { transform: translate3d(5vw, -7vh, 0) scale(.9); } }

/* =====================================================================
   Podstawowe klasy
   ===================================================================== */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

.glass {
  background: var(--glass);
  -webkit-backdrop-filter: blur(22px) saturate(175%);
  backdrop-filter: blur(22px) saturate(175%);
  border: 1px solid var(--glass-brd);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.9);
  border-radius: var(--r-lg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .42rem .95rem .42rem .7rem;
  border-radius: 999px;
  background: rgba(255,255,255,.6);
  border: 1px solid var(--glass-brd);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand-deep);
  box-shadow: var(--shadow-sm);
}
.eyebrow .dot {
  width: .5rem; height: .5rem; border-radius: 50%;
  background: var(--brand-light);
  box-shadow: 0 0 0 4px rgba(88, 179, 247, .25);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  50% { box-shadow: 0 0 0 8px rgba(88, 179, 247, 0); }
}

h1, h2, h3 { line-height: 1.1; letter-spacing: -.025em; font-weight: 800; }
h2 { font-size: clamp(1.95rem, 1.2rem + 2.9vw, 3.3rem); }
h3 { font-size: clamp(1.15rem, 1rem + .6vw, 1.45rem); letter-spacing: -.015em; }

.grad {
  background: linear-gradient(100deg, var(--brand-deep) 0%, var(--brand) 40%, var(--brand-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead { color: var(--ink-soft); font-size: clamp(1.02rem, .97rem + .3vw, 1.18rem); max-width: 62ch; }

section { padding-block: var(--sect); position: relative; scroll-margin-top: 5rem; }

.sect-head { max-width: 44rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.sect-head h2 { margin: 1.1rem 0 .95rem; }

/* ---------- Przyciski ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .92rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: -.01em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
  will-change: transform;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  box-shadow: 0 14px 30px -12px rgba(18, 121, 214, .75), inset 0 1px 0 rgba(255,255,255,.28);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 42px -14px rgba(18, 121, 214, .85), inset 0 1px 0 rgba(255,255,255,.28); }
.btn-ghost {
  color: var(--brand-deep);
  background: rgba(255,255,255,.6);
  border: 1px solid var(--glass-brd);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { transform: translateY(-3px); background: rgba(255,255,255,.85); }

/* =====================================================================
   Pasek postępu + nawigacja
   ===================================================================== */
.progress {
  position: fixed; top: 0; left: 0; z-index: 60;
  height: 3px; width: 100%;
  transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--brand-deep), var(--brand-light));
}

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s;
}
.nav-inner {
  display: flex; align-items: center; gap: 1.4rem;
  height: 4.6rem;
}
.nav.is-stuck {
  background: rgba(244, 250, 255, .72);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(146, 191, 234, .4), 0 12px 30px -22px rgba(11, 60, 110, .5);
}

.brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand-mark { width: 2.35rem; height: 2.35rem; flex: none; }
.brand-txt { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-weight: 800; letter-spacing: -.03em; font-size: 1.12rem; }
.brand-sub { font-size: .64rem; letter-spacing: .19em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-links a {
  padding: .5rem .85rem; border-radius: 999px;
  font-size: .93rem; font-weight: 600; color: var(--ink-soft);
  transition: color .25s, background .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--brand-deep); background: rgba(255,255,255,.7); }

.nav-cta { display: inline-flex; }
.nav-cta .btn { padding: .68rem 1.25rem; font-size: .92rem; }

.burger { display: none; width: 2.7rem; height: 2.7rem; border-radius: 50%;
          align-items: center; justify-content: center;
          background: rgba(255,255,255,.65); border: 1px solid var(--glass-brd); }
.burger span { display: block; width: 1.1rem; height: 2px; border-radius: 2px; background: var(--ink);
               position: relative; transition: transform .3s var(--ease); }
.burger span::before, .burger span::after {
  content: ''; position: absolute; left: 0; width: 100%; height: 2px; border-radius: 2px; background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s;
}
.burger span::before { top: -6px; }
.burger span::after  { top:  6px; }
.nav.open .burger span { transform: rotate(45deg); }
.nav.open .burger span::before { transform: translateY(6px) rotate(-90deg); }
.nav.open .burger span::after  { opacity: 0; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero { padding-top: clamp(7.5rem, 15vw, 10.5rem); padding-bottom: clamp(3rem, 7vw, 5rem); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.6rem, 1.2rem + 5.6vw, 5.1rem);
  margin: 1.25rem 0 1.3rem;
  letter-spacing: -.045em;
}
.hero h1 .line { display: block; }
.hero-meta { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; }
.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1rem; border-radius: 999px;
  background: rgba(255,255,255,.55);
  border: 1px solid var(--glass-brd);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-size: .875rem; font-weight: 600; color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.chip svg { width: 1.05em; height: 1.05em; color: var(--brand); flex: none; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.2rem; }

/* Zdjęcie w szklanej ramce */
.hero-media { position: relative; }
.photo-card {
  position: relative;
  padding: .6rem;
  border-radius: var(--r-xl);
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(22px) saturate(175%);
  backdrop-filter: blur(22px) saturate(175%);
  border: 1px solid var(--glass-brd);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.95);
  transform: rotate(-1.1deg);
  transition: transform .7s var(--ease);
}
.photo-card:hover { transform: rotate(0deg) translateY(-6px); }
.photo-card img { border-radius: calc(var(--r-xl) - .6rem); width: 100%; }
.photo-tag {
  position: absolute; left: 1.4rem; top: 1.4rem;
  display: flex; flex-direction: column; gap: .1rem;
  padding: .7rem 1.1rem; border-radius: var(--r-sm);
  background: rgba(11, 39, 72, .74);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: #fff;
  box-shadow: 0 12px 26px -14px rgba(0,0,0,.7);
}
.photo-tag b { font-size: .95rem; letter-spacing: -.01em; }
.photo-tag span { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; opacity: .78; }

.float-badge {
  position: absolute; right: -1rem; top: -1.6rem;
  display: flex; align-items: center; gap: .85rem;
  padding: .85rem 1.35rem;
  border-radius: var(--r);
  background: rgba(255,255,255,.82);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid var(--glass-brd);
  box-shadow: var(--shadow);
  animation: bob 6s ease-in-out infinite;
}
.float-badge-2 {
  right: auto; top: auto;
  left: -1.6rem; bottom: -1.8rem;
  animation-delay: -3s;
}
@keyframes bob { 50% { transform: translateY(-11px); } }
.float-badge .num {
  font-size: 2.05rem; font-weight: 800; letter-spacing: -.045em; line-height: 1;
}
.float-badge .lbl {
  font-size: .7rem; font-weight: 700; line-height: 1.3;
  letter-spacing: .09em; text-transform: uppercase; color: var(--ink-faint);
}

/* =====================================================================
   Pasek liczb
   ===================================================================== */
.stats { padding-block: 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  padding: clamp(1.6rem, 3vw, 2.4rem) 0;
}
.stat { padding: .5rem clamp(1rem, 2.4vw, 2rem); position: relative; text-align: center; }
.stat + .stat::before {
  content: ''; position: absolute; left: 0; top: 15%; bottom: 15%;
  width: 1px; background: linear-gradient(transparent, rgba(146,191,234,.75), transparent);
}
.stat .v { font-size: clamp(2rem, 1.2rem + 2.2vw, 3rem); font-weight: 800; letter-spacing: -.045em; line-height: 1.05; }
.stat .k { margin-top: .35rem; font-size: .82rem; font-weight: 600; color: var(--ink-faint); letter-spacing: .02em; }

/* =====================================================================
   Obszar działania — mapa
   ===================================================================== */
.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  gap: clamp(1.6rem, 3.5vw, 3rem);
  align-items: start;
}
.map-card { padding: clamp(1rem, 2.5vw, 1.8rem); overflow: hidden; }
.eu-map { width: 100%; height: auto; }

.eu-map .ctx path { fill: rgba(160, 193, 224, .3); stroke: rgba(255,255,255,.55); stroke-width: .8; }
.eu-map .c {
  stroke: rgba(255, 255, 255, .8);
  stroke-width: .9;
  stroke-linejoin: round;
  transition: fill .3s var(--ease), filter .3s;
}
.eu-map .eu .c  { fill: url(#gEu); }
.eu-map .bal .c { fill: url(#gBal); }
.eu-map .home .c{ fill: url(#gHome); stroke: rgba(255,255,255,.95); stroke-width: 1.4; }
.eu-map .c:hover { filter: brightness(1.09) saturate(1.15); }

.eu-map .route {
  fill: none;
  stroke: rgba(11, 90, 165, .5);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 5 8;
  animation: dash 3.4s linear infinite;
  animation-delay: calc(var(--i) * -.42s);
}
@keyframes dash { to { stroke-dashoffset: -26; } }
.eu-map .dest { fill: #fff; stroke: var(--brand-deep); stroke-width: 2.2; }
.eu-map .pin-halo  { fill: rgba(18, 121, 214, .17); animation: halo 3s ease-out infinite; transform-origin: center; }
.eu-map .pin-halo2 { fill: rgba(18, 121, 214, .3); }
.eu-map .pin-dot   { fill: var(--brand-deep); stroke: #fff; stroke-width: 2.5; }
@keyframes halo { 0% { transform: scale(.55); opacity: .9; } 100% { transform: scale(1.5); opacity: 0; } }
.eu-map .pin-label {
  fill: var(--ink); font-size: 21px; font-weight: 800; letter-spacing: 2px;
  text-anchor: middle; paint-order: stroke;
  stroke: rgba(255,255,255,.9); stroke-width: 5px; stroke-linejoin: round;
}

.legend { display: flex; flex-wrap: wrap; gap: 1.15rem; margin-top: 1.2rem; padding-inline: .4rem; }
.legend li { display: flex; align-items: center; gap: .5rem; font-size: .84rem; font-weight: 600; color: var(--ink-soft); }
.legend .sw { width: 1.05rem; height: 1.05rem; border-radius: 5px; border: 1px solid rgba(255,255,255,.85); flex: none; }
.sw-home { background: linear-gradient(140deg, #0b5aa5, #1279d6); }
.sw-eu   { background: linear-gradient(140deg, #59b4f6, #8fd0fb); }
.sw-bal  { background: linear-gradient(140deg, #2fa8d8, #6fd4e8); }

.region { padding: clamp(1.3rem, 2.6vw, 1.9rem); }
.region + .region { margin-top: 1.1rem; }
.region-head { display: flex; align-items: baseline; gap: .7rem; margin-bottom: 1rem; }
.region-head h3 { letter-spacing: -.02em; }
.region-head .count {
  font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand-deep); background: rgba(88, 179, 247, .18);
  padding: .2rem .6rem; border-radius: 999px;
}
.countries { display: flex; flex-wrap: wrap; gap: .4rem; }
.countries li {
  font-size: .845rem; font-weight: 600; color: var(--ink-soft);
  padding: .32rem .72rem; border-radius: 8px;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(146, 191, 234, .38);
  transition: transform .25s var(--ease), background .25s, color .25s;
}
.countries li:hover { transform: translateY(-2px); background: #fff; color: var(--brand-deep); }
.region .note { margin-top: 1rem; font-size: .875rem; color: var(--ink-faint); }

/* =====================================================================
   Flota
   ===================================================================== */
.fleet-hero { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.fleet-hero img { width: 100%; aspect-ratio: 1240 / 620; object-fit: cover; }
.fleet-hero-cap {
  position: absolute; inset: auto 0 0 0;
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem;
  padding: clamp(1.4rem, 4vw, 2.6rem);
  background: linear-gradient(transparent, rgba(6, 32, 61, .82));
  color: #fff;
}
.fleet-hero-cap h3 { font-size: clamp(1.3rem, 1rem + 1.4vw, 2rem); }
.fleet-hero-cap p { font-size: .93rem; opacity: .85; margin-top: .3rem; max-width: 34ch; }
.spec-pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.spec-pills li {
  font-size: .8rem; font-weight: 700; letter-spacing: .02em;
  padding: .42rem .85rem; border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}
.fcard { padding: clamp(1.4rem, 2.6vw, 2rem); display: flex; flex-direction: column; gap: 1rem;
         transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.fcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.9); }
.fcard-top { display: flex; align-items: center; gap: .9rem; }
.fcard-ico {
  width: 3rem; height: 3rem; flex: none; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(88,179,247,.28), rgba(255,255,255,.5));
  border: 1px solid rgba(255,255,255,.85);
  color: var(--brand-deep);
}
.fcard-ico svg { width: 1.5rem; height: 1.5rem; }
.fcard-n { font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-faint); }
.fcard p { color: var(--ink-soft); font-size: .95rem; }
.fcard-media { border-radius: var(--r-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.fcard-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.adr-box {
  aspect-ratio: 16 / 10;
  display: grid; place-items: center;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.5) 0 12px, rgba(214,234,250,.5) 12px 24px);
  border: 1px solid rgba(255,255,255,.8);
}
.fcard ul.ticks { display: grid; gap: .45rem; margin-top: auto; }
.ticks li { display: flex; gap: .55rem; font-size: .9rem; color: var(--ink-soft); }
.ticks li::before {
  content: ''; flex: none; width: 1.05rem; height: 1.05rem; margin-top: .28rem; border-radius: 50%;
  background: rgba(88,179,247,.22) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b5aa5' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/.65rem no-repeat;
}

/* Tablica ADR */
.adr-plate {
  width: 62%; max-width: 11rem;
  aspect-ratio: 40 / 30;
  border-radius: 8px;
  background: #f39200;
  border: 3px solid #111;
  display: grid; grid-template-rows: 1fr 1fr;
  font-weight: 800; letter-spacing: .06em;
  color: #111; text-align: center;
  box-shadow: var(--shadow-sm);
  font-variant-numeric: tabular-nums;
}
.adr-plate span { display: grid; place-items: center; font-size: clamp(1.1rem, 3.2vw, 1.5rem); }
.adr-plate span:first-child { border-bottom: 3px solid #111; }

/* =====================================================================
   Kontakt
   ===================================================================== */
.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
  gap: clamp(1.8rem, 4vw, 3.5rem);
  padding: clamp(1.8rem, 4vw, 3.4rem);
  align-items: center;
}
.contact-list { display: grid; gap: 1.5rem; margin-top: 2rem; }
.cline { display: flex; gap: 1rem; align-items: flex-start; }
.cline .ico {
  width: 2.8rem; height: 2.8rem; flex: none; border-radius: 14px;
  display: grid; place-items: center; color: var(--brand-deep);
  background: linear-gradient(140deg, rgba(88,179,247,.3), rgba(255,255,255,.55));
  border: 1px solid rgba(255,255,255,.85);
}
.cline .ico svg { width: 1.35rem; height: 1.35rem; }
.cline .k { font-size: .73rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-faint); }
.cline .v { font-size: clamp(1.05rem, .95rem + .5vw, 1.35rem); font-weight: 700; letter-spacing: -.02em; }
.cline a.v:hover { color: var(--brand-deep); }
.cline .sub { font-size: .875rem; color: var(--ink-faint); }

.contact-aside {
  position: relative;
  border-radius: var(--r);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background: linear-gradient(150deg, rgba(18,121,214,.95), rgba(11,90,165,.95));
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact-aside::before {
  content: ''; position: absolute; width: 18rem; height: 18rem; right: -7rem; top: -8rem;
  border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.28), transparent 65%);
}
.contact-aside h3 { margin-bottom: .6rem; }
.contact-aside p { font-size: .93rem; opacity: .88; }
.contact-aside .btn { margin-top: 1.5rem; background: #fff; color: var(--brand-deep); box-shadow: 0 14px 30px -14px rgba(0,0,0,.5); }
.contact-aside .btn:hover { transform: translateY(-3px); }
.aside-hours { margin-top: 1.5rem; display: grid; gap: .45rem; font-size: .9rem; }
.aside-hours li { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: .45rem;
                  border-bottom: 1px solid rgba(255,255,255,.22); }
.aside-hours li:last-child { border-bottom: 0; }
.aside-hours b { font-weight: 700; }

/* =====================================================================
   Stopka
   ===================================================================== */
.footer { padding-block: clamp(2.5rem, 5vw, 3.5rem); border-top: 1px solid rgba(146,191,234,.4); }
.footer-inner { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between; }
.footer p, .footer a { font-size: .84rem; color: var(--ink-faint); }
.footer a:hover { color: var(--brand-deep); }
.footer .credits { max-width: 46ch; line-height: 1.55; }

/* =====================================================================
   Animacje wejścia przy przewijaniu
   ===================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
  transition-delay: calc(var(--d, 0) * 95ms);
}
[data-reveal='left']  { transform: translateX(-34px); }
[data-reveal='right'] { transform: translateX(34px); }
[data-reveal='zoom']  { transform: scale(.94); }
[data-reveal].in { opacity: 1; transform: none; }

/* mapa: kraje "zapalają się" po kolei */
.eu-map .c { opacity: 0; transition: opacity .55s var(--ease), fill .3s var(--ease), filter .3s; }
.map-card.in .eu-map .c { opacity: 1; }
.map-card.in .eu-map .eu  .c { transition-delay: calc(.25s + var(--n, 0) * 22ms); }
.map-card.in .eu-map .bal .c { transition-delay: calc(.85s + var(--n, 0) * 45ms); }
.eu-map .routes, .eu-map .dests, .eu-map .pin { opacity: 0; transition: opacity .8s var(--ease) 1.25s; }
.map-card.in .eu-map .routes,
.map-card.in .eu-map .dests,
.map-card.in .eu-map .pin { opacity: 1; }

/* =====================================================================
   Responsywność
   ===================================================================== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 34rem; }
  .float-badge { right: .5rem; }
  .map-layout { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 0; }
  .stat:nth-child(3)::before { display: none; }

  .nav-links, .nav-cta { display: none; }
  .burger { display: inline-flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: .2rem;
    position: absolute; left: var(--pad); right: var(--pad); top: 4.4rem;
    padding: .8rem;
    background: rgba(255,255,255,.82);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--glass-brd);
    border-radius: var(--r);
    box-shadow: var(--shadow);
  }
  .nav.open .nav-links a { padding: .8rem 1rem; }
}

@media (max-width: 700px) {
  /* pionowy kadr, żeby podpis nie zasłaniał całego zdjęcia */
  .fleet-hero img { aspect-ratio: 4 / 3; }
  .fleet-hero-cap { background: linear-gradient(transparent 8%, rgba(6,32,61,.9) 52%); }
}

@media (max-width: 560px) {
  .float-badge   { transform: scale(.86); transform-origin: right top; right: -.2rem; }
  .float-badge-2 { transform: scale(.86); transform-origin: left bottom; left: -.2rem; }
  .legend { gap: .75rem 1rem; }
}

/* ---------- Dostępność ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .eu-map .c, .eu-map .routes, .eu-map .dests, .eu-map .pin { opacity: 1; }
}

:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; border-radius: 6px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  padding: .8rem 1.2rem; background: #fff; border-radius: 0 0 var(--r-sm) 0; font-weight: 700;
}
.skip:focus { left: 0; }
