:root{
  --bg:#1E1E1E;
  --text:#FFFFFF;
  --muted:rgba(255,255,255,.72);
  --muted2:rgba(255,255,255,.55);
  --stroke:rgba(255,255,255,.10);
  --accent:#E07A32;

  --container:1180px;
  --headerH:96px;
}

/* ========== RESET ========== */
*{box-sizing:border-box}
html{
  scroll-behavior:smooth;
}
body{
  margin:0;
  font-family:'Inter',system-ui,sans-serif;
  background:
    radial-gradient(1000px 800px at 80% -10%, rgba(224,122,50,.12), transparent 55%),
    radial-gradient(900px 700px at 20% -10%, rgba(224,122,50,.08), transparent 60%),
    var(--bg);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}

/* ========== CONTAINER ========== */
.container{
  width:min(var(--container),calc(100% - 32px));
  margin-inline:auto;
}

/* ================= HEADER ================= */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(18,18,18,.88);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--stroke);
}

.header-inner{
  height: var(--headerH);
  display: flex;
  align-items: center;
  justify-content: flex-start; /* było: space-between */
  gap: 16px;
}

/* ================= LOGO ================= */
.brand{
  display:flex;
  align-items:center;
  height:100%;
}

/* IMPORTANT: logo ma NIE dziedziczyć max-width:100% */
.brand img{
  height:104px;
  width:auto;
  max-width:none;         /* KLUCZ – nie zwężaj na mobile */
  object-fit:contain;     /* bezpieczeństwo proporcji */
  display:block;
  transform: translateY(6px);
}
.header-inner{
  display:flex;
  align-items:center;
  gap:24px; /* odstęp logo ↔ telefon */
}

/* TELEFON */
.header-phone{
  display:flex;
  align-items:center;
  gap:8px;
  white-space:nowrap;
  margin-left:12px;
}

/* mniejszy opis */
.phone-label{
  color:var(--muted);
  font-size:15px;          /* było 14 */
  font-weight:500;
  letter-spacing:.2px;
}

/* numer – wyraźny, ale elegancki */
.phone-number{
  font-size:18px;          /* było ~16 */
  font-weight:700;
  color:var(--accent);
  text-decoration:none;
  letter-spacing:.3px;
}

.phone-number:hover{
  text-decoration:underline;
}


/* ================= NAV ================= */
/* NAV */
.nav{
  display:flex;
  align-items:center;
  gap:14px;
  margin-left: auto;   /* KLUCZ: wypchnij menu w prawo od logo */
  flex-wrap: nowrap;
}
.nav a{
  padding:12px 16px;
  border-radius:12px;
  color:var(--muted);
  transition:.2s ease;
}
.nav a:hover{
  background:rgba(255,255,255,.06);
  color:var(--text);
}
.nav .nav-cta{
  background:rgba(224,122,50,.2);
  border:1px solid rgba(224,122,50,.45);
  color:#111;
  font-weight:600;
}

/* HAMBURGER */
.hamburger{
  display:none;
  font-size:1.8rem;
  background:none;
  border:none;
  color:var(--text);
  padding:10px;
}

/* ================= HERO ================= */
.hero-premium{
  padding:88px 0 80px; /* było za masywnie */
}

.hero-premium-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr; /* delikatnie bardziej równo */
  gap:56px; /* ciaśniej = bardziej premium */
  align-items:center;
}

.kicker{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--muted2); /* lżejszy */
  font-size:.85rem;
  margin-bottom:14px;
  letter-spacing:.04em;
}

.kicker .dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 4px rgba(224,122,50,.25); /* mniej agresywne */
}

/* H1 – spokojniejszy, nadal SEO */
.hero-title{
  font-size:clamp(1.6rem, 2.6vw, 2.4rem);
  font-weight:700; /* było 800 */
  line-height:1.2;
  letter-spacing:-0.01em;
}

/* Lead – lepsza relacja do H1 */
.hero-lead{
  font-size:1rem;
  max-width:560px;
  color:var(--muted);
  margin-top:10px;
}

.hero-actions{
  display:flex;
  gap:14px;
  margin:26px 0 22px;
}

.btn{
  padding:14px 22px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.05);
  color:var(--text);
  font-weight:600;
  transition:.2s ease;
}
.btn:hover{background:rgba(255,255,255,.08)}
.btn-primary{
  background:linear-gradient(180deg,#f08a44,#d96a28);
  color:#111;
  border:none;
}

/* Trust – lżejsze, bardziej B2B */
.hero-trust{
  display:flex;
  flex-wrap:wrap;
  gap:12px 20px;
}

.hero-trust span{
  margin:0;
  font-size:.8rem;
  color:var(--muted2);
  padding-left:0;
  opacity:.9;
}

.hero-trust span::before{
  display:none;
}
/* ================= FACTS ================= */
.fact-card,.fact{
  border:1px solid var(--stroke);
  padding:22px;
  border-radius:20px;
  background:rgba(0,0,0,.28);
}
.fact-card strong{
  display:block;
  margin-bottom:6px;
}
.fact-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
.fact b{
  color:var(--accent);
  font-size:1.4rem;
}

/* ================= SECTIONS ================= */
.section{
  padding:88px 0;
}
.section-head{
  max-width:720px;
  margin-bottom:48px;
}
.section-eyebrow{
  font-size:.75rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--accent);
  display:block;
  margin-bottom:8px;
}
.section h2{
  font-size:clamp(1.8rem,3vw,2.6rem);
  margin:0 0 12px;
}
.section .lead{
  color:var(--muted);
}
/* ================= SERVICES (LEGACY / SAFE) ================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(18px, 3vw, 26px);
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.service-card {
  padding: 26px 24px;
  border-radius: 20px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.04);

  font-weight: 600;
  line-height: 1.5;
  color: var(--text);

  transition:
    transform .3s cubic-bezier(.22,.61,.36,1),
    box-shadow .3s ease,
    background .3s ease;
}

/* hover – desktop */
.service-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 18px 45px rgba(0,0,0,.4);
}

/* focus – accessibility */
.service-card:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

/* ================= SERVICES — MOBILE ================= */

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 22px 20px;
    font-size: 0.95rem;
  }
}
/* ================= PROCESS ================= */

.section-process {
  background: radial-gradient(circle at top, #1e1e1e, #141414);
}

.process-grid {
  display: flex;                /* DESKTOP = FLEX */
  flex-wrap: nowrap;            /* brak zawijania */
  justify-content: center;
  gap: 18px;
  margin-top: 48px;
}

.process-step {
  position: relative;
  padding: 22px 18px;
  background: linear-gradient(180deg, #1c1c1c, #151515);
  border: 1px solid #ffffff12;
  border-radius: 14px;

  display: flex;
  align-items: flex-start;
  gap: 14px;

  flex: 1 1 0;                  /* równe szerokości */
  max-width: 215px;             /* nie ucieka poza ekran */

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: #ffffff33;
  box-shadow: 0 12px 30px rgba(0,0,0,.45);
}

.process-step b {
  color: #ffffff;
  font-weight: 700;
  margin-right: 6px;
}

.process-text {
  color: #d0d0d0;
  font-size: 14px;
  line-height: 1.45;
}

/* ===== IKONY ===== */

.process-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  opacity: .9;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 0 6px rgba(255,255,255,.12));
}


/* kontakt */
.icon-contact {
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ffffff' stroke-width='1.7' viewBox='0 0 24 24'>\
<path d='M22 16.9v3a2 2 0 0 1-2.2 2c-9.4-.6-16.9-8.1-17.5-17.5A2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7l.6 3a2 2 0 0 1-.6 1.9L8 9a16 16 0 0 0 7 7l.4-.1a2 2 0 0 1 1.9-.6l3 .6a2 2 0 0 1 1.7 2z'/>\
</svg>");
}

/* wycena */
.icon-quote {
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ffffff' stroke-width='1.7' viewBox='0 0 24 24'>\
<rect x='3' y='4' width='18' height='16' rx='2'/>\
<path d='M7 8h10M7 12h6M7 16h4'/>\
</svg>");
}

/* odbiór */
.icon-pickup {
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ffffff' stroke-width='1.7' viewBox='0 0 24 24'>\
<path d='M3 7h13v10H3z'/>\
<path d='M16 10h4l1 3v4h-5z'/>\
<circle cx='7.5' cy='18.5' r='1.5'/>\
<circle cx='17.5' cy='18.5' r='1.5'/>\
</svg>");
}

/* transport */
.icon-transport {
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ffffff' stroke-width='1.7' viewBox='0 0 24 24'>\
<path d='M3 3h18v13H3z'/>\
<path d='M8 21l4-4 4 4'/>\
</svg>");
}

/* dokumenty */
.icon-docs {
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ffffff' stroke-width='1.7' viewBox='0 0 24 24'>\
<path d='M6 2h9l5 5v15a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2z'/>\
<path d='M14 2v6h6'/>\
</svg>");
}
/* ================= CTA ================= */
.section-cta{
  background:linear-gradient(
    180deg,
    rgba(224,122,50,.18),
    rgba(0,0,0,.25)
  );
}
.cta-box{
  padding:56px 32px;
  border-radius:28px;
  border:1px solid rgba(224,122,50,.35);
  text-align:center;
}
/* ================= CONTACT ================= */
.contact-grid{
  display:grid;
  grid-template-columns:1.3fr .7fr;
  gap:48px;
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.field{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.field input,
.field select,
.field textarea{
  padding:12px 14px;
  border-radius:12px;
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.35);
  color:var(--text);
}

.field.checkbox{
  margin:16px 0;
  font-size:.9rem;
  color:var(--muted);
}

.process-list{
  padding-left:18px;
  margin:16px 0;
  color:var(--muted);
}

@media (max-width:980px){
  .contact-grid{
    grid-template-columns:1fr;
    gap:36px;
  }

  .form-grid{
    grid-template-columns:1fr;
  }
}
/* ================= FOOTER 2025 ================= */

.footer-pro{
  background:#0f0f0f;
  border-top:1px solid var(--stroke);
}

/* GŁÓWNY UKŁAD */
.footer-main{
  display:grid;
  grid-template-columns:2fr 1.3fr 1.3fr;
  gap:48px;
  padding:64px 0 56px;
  align-items:flex-start;
}

/* BLOKI */
.footer-block h4{
  margin:0 0 14px;
  font-size:.85rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted2);
}

/* BRAND */
.footer-logo-img{
  height:76px;
  width:auto;
}

.footer-desc{
  max-width:380px;
  font-size:.9rem;
  line-height:1.55;
  color:var(--muted);
  margin:14px 0 18px;
}

.footer-badges{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.footer-badges li{
  padding:6px 12px;
  border-radius:999px;
  border:1px solid var(--stroke);
  font-size:.75rem;
  color:var(--muted2);
  background:rgba(255,255,255,.03);
}

/* ADRES */
.footer-address{
  font-style:normal;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.addr-item{
  display:flex;
  gap:10px;
  font-size:.9rem;
  color:var(--muted);
  line-height:1.45;
}

.addr-item .icon{
  color:var(--accent);
  line-height:1;
}

/* KONTAKT + CTA */
.footer-contact-cta{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.contact-link{
  font-size:.95rem;
  color:var(--muted);
}

.contact-link.phone{
  font-weight:600;
  color:var(--text);
}

.footer-btn{
  margin-top:12px;
  align-self:flex-start;
}

/* ================= FOOTER BOTTOM ================= */

.footer-bottom{
  border-top:1px solid var(--stroke);
}

.footer-bottom-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 0;
  font-size:.78rem;
  color:var(--muted2);
}
/* ================= ANIMATIONS ================= */
[data-animate]{
  opacity:0;
  transform:translateY(16px);
  transition:opacity .6s ease, transform .6s ease;
}
[data-animate].visible{
  opacity:1;
  transform:none;
}

@media (prefers-reduced-motion: reduce){
  *{
    animation:none !important;
    transition:none !important;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .hamburger{
    display:inline-flex;
  }

  /* LOGO */
  .brand img{
    height:82px;
    margin-top:-20px;
    margin-bottom:-20px;
  }

  /* NAV */
  .nav{
    position:fixed;
    top:var(--headerH);
    left:0;
    right:0;
    background:#121212;
    flex-direction:column;
    display:none;
    z-index:999;
  }

  .nav.open{
    display:flex;
  }

  .nav a{
    padding:18px 24px;
    border-bottom:1px solid var(--stroke);
  }

  /* HERO */
  .hero-premium{
    padding:72px 0 64px;
  }

  .hero-premium-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .hero-actions{
    flex-direction:column;
  }

  /* SERVICES */
  .services-grid{
    grid-template-columns:1fr;
  }

/* ================= PROCESS – MOBILE ================= */
 .process-grid {
    display: grid;              /* MOBILE = GRID */
    grid-template-columns: 1fr; /* jedna kolumna */
    gap: 16px;
    margin-top: 36px;
    max-width: 100%;
    overflow-x: hidden;
  }

  .process-step {
    width: 100%;
    max-width: 100%;
    flex: none;
  }

}

  /* FOOTER */
  .footer-bottom-inner{
    flex-direction:column;
    gap:6px;
    text-align:center;
  }

}

  /* ===== FOOTER 2025 MOBILE ===== */
  .footer-main{
    grid-template-columns:1fr;
    gap:36px;
    padding:48px 0;
  }

  .footer-btn{
    align-self:stretch;
    text-align:center;
  }
}
/* ================= ROUTES MAP ================= */
.section-routes {
  background: radial-gradient(circle at top, #1e1e1e, #141414);
}

#routes-map {
  width: 100%;
  height: 480px;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  box-shadow: 0 30px 60px rgba(0,0,0,.45);
  margin: 40px 0;
}

.routes-description {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  text-align: center;
}

.route-tooltip {
  background: rgba(20,20,20,.95);
  color: #fff;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 8px 20px rgba(0,0,0,.4);
}

/* ================= ROUTES MAP — MOBILE ================= */
@media (max-width: 768px) {
  #routes-map {
    height: 360px;
    border-radius: 18px;
  }
}

/* ================= HERO CENTERED ================= */
.hero-centered {
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.hero-centered-content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

/* kicker */
.kicker-centered {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

/* title – POPRAWIONE (MNIEJSZE, PREMIUM) */
.hero-title-centered {
  font-size: clamp(1.9rem, 3.8vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 1.3rem;
  letter-spacing: -0.01em;
}

/* accent title */
.hero-title-accent {
  color: var(--accent);
}

/* lead */
.hero-lead-centered {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  margin: 0 auto 2.2rem;
  max-width: 720px;
  opacity: 0.88;
}

/* softer lead */
.hero-lead-soft {
  font-weight: 400;
  opacity: 0.85;
}

/* =====================================================
   FLOTA – FULL WIDTH PREMIUM (DESKTOP)
===================================================== */

/* galeria na pełną szerokość viewportu */
.fleet-grid-full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(18px, 2.5vw, 32px);
  padding: clamp(2rem, 4vw, 4rem);
}

/* kafelki */
.fleet-item {
  position: relative;
  display: block;
  width: 100%;
  cursor: zoom-in;

  border-radius: 24px;
  overflow: hidden;
  background: #0e0e0e;

  /* ⛔ NIE POLEGAJ TYLKO NA aspect-ratio (iOS bug) */
  aspect-ratio: 4 / 3;
  min-height: 1px;

  border: none;
  padding: 0;

  touch-action: manipulation;

  transition:
    transform .45s cubic-bezier(.22,.61,.36,1),
    box-shadow .45s ease;
}

/* image – CRITICAL MOBILE FIX */
.fleet-item img {
  display: block;
  width: 100%;
  height: auto;               /* 🔴 KLUCZOWE */
  aspect-ratio: 4 / 3;
  object-fit: cover;

  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);

  transition: transform .6s ease;
}

/* hover premium (desktop only) */
@media (hover: hover) {
  .fleet-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,.65);
  }

  .fleet-item:hover img {
    transform: scale(1.08);
  }
}

/* focus (a11y) */
.fleet-item:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

/* zapobiega martwym klikom */
.fleet-item * {
  pointer-events: none;
}

/* =====================================================
   FLOTA – SEKCJA GALERII (TŁO)
===================================================== */

.fleet-gallery {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  background: radial-gradient(
    circle at top,
    rgba(255,255,255,0.03),
    transparent 60%
  );
}

/* =====================================================
   HERO FLEET
===================================================== */

.hero-fleet {
  background:
    radial-gradient(60% 40% at 50% 0%, rgba(249,115,22,.12), transparent 70%),
    linear-gradient(to bottom, #1e1e1e, #141414);
}

/* =====================================================
   FLOTA – MOBILE FIX (iOS / Android)
===================================================== */

@media (max-width: 768px) {

  /* ❌ USUWAMY 100vw + calc() (iOS bug) */
  .fleet-grid-full {
    width: 100%;
    margin-left: 0;
    margin-right: 0;

    grid-template-columns: 1fr;
    padding: 1.25rem;
  }

}

/* =====================================================
   LIGHTBOX
===================================================== */

.fleet-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,.92);

  display: grid;
  place-items: center;

  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;

  -webkit-overflow-scrolling: touch;
}

.fleet-lightbox[aria-hidden="false"],
.fleet-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.fleet-lightbox-img {
  max-width: min(92vw, 1200px);
  max-height: 82vh;
  border-radius: 18px;
  box-shadow: 0 40px 120px rgba(0,0,0,.8);
}

/* lightbox controls */
.fleet-close,
.fleet-prev,
.fleet-next {
  position: absolute;
  background: rgba(0,0,0,.6);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: .4em .6em;
  cursor: pointer;
  border-radius: 10px;
}

.fleet-close { top: 20px; right: 20px; }
.fleet-prev  { left: 20px; }
.fleet-next  { right: 20px; }

/* MOBILE UX */
@media (max-width: 640px) {

  .fleet-prev,
  .fleet-next {
    display: none;
  }

  .fleet-close {
    font-size: 2.4rem;
    padding: .6em .8em;
  }

  .fleet-lightbox-img {
    max-width: 96vw;
    max-height: 80vh;
  }
}

/* ================= SECTION HEAD — WIDE ================= */

.section-head-wide {
  max-width: 1100px;           /* było ~760–860 → teraz szerzej */
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* h2 ~10% mniejszy */
.section-head-wide h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem); /* ↓ ok. 10% */
  line-height: 1.18;
  margin-bottom: 1rem;
}

/* opis rozciągnięty poziomo */
.section-head-wide .lead {
  max-width: 980px;            /* był węższy */
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* MOBILE */
@media (max-width: 768px) {
  .section-head-wide {
    max-width: 100%;
    padding: 0 1rem;
  }

  .section-head-wide h2 {
    font-size: 1.75rem;
  }

  .section-head-wide .lead {
    font-size: 1rem;
  }
}
/* ================= PROCESS HEADER ================= */

.section-head-process .lead {
  opacity: 0.88;
}
/* ================= PROCESS / TARGET LIST ================= */

.process-list-cards {
  list-style: none;
  padding: 0;
  margin: clamp(2.5rem, 4vw, 4rem) auto 0;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(14px, 2.5vw, 24px);
  max-width: 1100px;
}

.process-list-cards li {
  display: flex;
  align-items: center;
  gap: 14px;

  background: rgba(255,255,255,0.04);
  border: 1px solid var(--stroke);
  border-radius: 18px;

  padding: 18px 22px;
  font-weight: 500;
  color: var(--text);

  transition:
    transform .35s cubic-bezier(.22,.61,.36,1),
    box-shadow .35s ease,
    background .35s ease;
}

.process-list-cards li:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 18px 45px rgba(0,0,0,.45);
}

/* icon */
.process-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}

/* text */
.process-text {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* mobile polish */
@media (max-width: 640px) {
  .process-list-cards {
    grid-template-columns: 1fr;
  }
}
/* ================= SERVICES – PREMIUM ================= */

.services-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(18px, 3vw, 28px);
  margin-top: clamp(2.5rem, 4vw, 4rem);
}

.service-card-premium {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 26px 24px;

  display: flex;
  flex-direction: column;
  gap: 12px;

  transition:
    transform .35s cubic-bezier(.22,.61,.36,1),
    box-shadow .35s ease,
    background .35s ease;
}

.service-card-premium:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 22px 55px rgba(0,0,0,.45);
}

/* icon */
.service-icon {
  font-size: 1.6rem;
  line-height: 1;
}

/* title */
.service-card-premium h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}

/* text */
.service-card-premium p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* mobile */
@media (max-width: 640px) {
  .services-grid-premium {
    grid-template-columns: 1fr;
  }
}
/* ================= FAQ ACCORDION ================= */

.section-faq {
  background: radial-gradient(circle at top, #1e1e1e, #141414);
}

.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--stroke);
  border-radius: 18px;
  background: rgba(0,0,0,.35);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  font-size: 1.05rem;
}

.faq-icon {
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
  transition: transform .35s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(135deg);
}

.faq-content {
  padding: 0 26px 22px;
  color: var(--muted);
  line-height: 1.65;
}

.faq-content p + p {
  margin-top: 10px;
}

/* MOBILE */
@media (max-width: 640px) {
  .faq-item summary {
    padding: 18px 20px;
  }
}
/* ================= HERO ABOUT (DISTINCT) ================= */

.hero-about {
  position: relative;
  background:
    radial-gradient(900px 600px at 50% -10%, rgba(224,122,50,.14), transparent 55%),
    linear-gradient(180deg, #1e1e1e, #141414);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* delikatna ramka premium */
.hero-about::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}

/* zawartość */
.hero-about-content {
  max-width: 920px;
}

/* METRYKI */
.hero-about-metrics {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 2.8rem;
  flex-wrap: wrap;
}

.hero-about-metrics .metric {
  text-align: center;
}

.hero-about-metrics strong {
  display: block;
  font-size: 1.6rem;
  color: var(--accent);
  font-weight: 800;
}

.hero-about-metrics span {
  font-size: .85rem;
  color: var(--muted);
  letter-spacing: .03em;
}

/* MOBILE */
@media (max-width: 640px) {
  .hero-about-metrics {
    gap: 1.6rem;
  }
}
/* ================= HERO OFFER (SUBTLE DISTINCT) ================= */

.hero-offer {
  background:
    radial-gradient(800px 500px at 60% -10%, rgba(224,122,50,.12), transparent 60%),
    linear-gradient(180deg, #1e1e1e, #141414);
}

/* lżejszy lead w hero */
.hero-lead-soft {
  font-weight: 400;
  opacity: 0.88;
}

/* delikatne wzmocnienie nagłówka */
.hero-title-accent {
  color: var(--accent);
}

/* trust badges bardziej „enterprise” */
.hero-trust-metrics span {
  position: relative;
  padding-left: 18px;
}

.hero-trust-metrics span::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
/* ================= SECTION HEAD — SMALL TITLE ================= */
.section-title-sm {
  font-size: calc(var(--h2-size, 2.2rem) * 0.9);
  line-height: 1.2;
}
/* =====================================================
   HERO ROUTES – CENTERED PREMIUM
===================================================== */

.hero-routes {
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(255,122,0,.08), transparent 60%),
    linear-gradient(180deg, #1b1b1b, #141414);
}

/* zawężenie i rytm treści */
.hero-routes-content {
  max-width: 920px;
}

/* tytuł tras – celowo mniejszy niż oferta */
.hero-routes .hero-title-centered {
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
}

/* lead bardziej „lekki” */
.hero-routes .hero-lead-centered {
  max-width: 760px;
  opacity: 0.88;
}

/* metryki tras */
.hero-routes-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.4rem;
  margin-top: 3rem;
}

/* pojedyncza metryka */
.hero-routes-metrics .metric {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 1.4rem 1.2rem;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: transform .3s ease, box-shadow .3s ease;
}

.hero-routes-metrics .metric:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
}

.hero-routes-metrics .metric strong {
  display: block;
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: .3rem;
}

.hero-routes-metrics .metric span {
  font-size: .9rem;
  color: var(--muted);
}

/* MOBILE */
@media (max-width: 640px) {
  .hero-routes .hero-title-centered {
    font-size: 2rem;
  }

  .hero-routes-metrics {
    gap: 1rem;
  }
}
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
/* ================= FOOTER – MOBILE ================= */
@media (max-width:980px){

  .footer-main{
    grid-template-columns:1fr;
    gap:36px;
    padding:48px 0 36px;
    text-align:center;
  }

  .footer-block{
    display:flex;
    flex-direction:column;
    align-items:center;
  }

  .footer-logo-img{
    margin-left:auto;
    margin-right:auto;
  }

  .footer-desc{
    margin-left:auto;
    margin-right:auto;
  }

  .footer-badges{
    justify-content:center;
  }

  .footer-address{
    align-items:center;
    text-align:center;
  }

  .addr-item{
    justify-content:center;
    text-align:center;
  }

  .footer-contact-cta{
    align-items:center;
  }

  .footer-btn{
    align-self:center;
  }

  .footer-bottom-inner{
    flex-direction:column;
    gap:6px;
    text-align:center;
  }
}
.lang-switch{
  display:flex;
  align-items:center;
  gap:6px;
  margin-left: 12px;   /* blisko "Kontakt" */
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}

.lang-switch .lang {
  color: #9a9a9a;
  text-decoration: none;
}

.lang-switch .lang.active,
.lang-switch .lang:hover {
  color: #fff;
}
.privacy-title {
  font-size: 0.95rem;        /* mniejsza czcionka */
  font-weight: 600;          /* lekko pogrubiona */
  line-height: 1.2;          /* ciasna wysokość wiersza */
  white-space: nowrap;       /* jedna linia */
  overflow: hidden;          /* ukrywa nadmiar, jeśli za długa */
  text-overflow: ellipsis;   /* opcjonalne: dodaje "..." gdy tekst wykracza */
  margin-top: 4px;           /* niewielki odstęp od eybrow */
}
/* ================= MOBILE HEADER ================= */
@media (max-width: 768px) {

  .header-inner{
    justify-content: space-between;
    gap: 12px;
  }

  /* LOGO – stabilnie i bez “wychudzania” */
  .brand img{
    height: 68px;       /* estetyczniej niż 82 w ciasnym headerze */
    width: auto;
    max-width: none;
    margin: 0;          /* USUWA -20px */
    transform: none;    /* opcjonalnie – równa linia */
  }

  /* TELEFON – widoczny i nie rozpycha nagłówka */
  .header-phone{
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-left: 0;
    line-height: 1.1;
  }

  .phone-label{ font-size: 12px; }
  .phone-number{ font-size: 14px; }

  .hamburger{
    display:inline-flex;
  }
}