/* =========================================================
   Tomasz Transport — style.css
   Motyw marki: cyjanowo-niebieski (logo — globus)
   ========================================================= */

:root{
  --brand:        #00A9E0;   /* jasny błękit z logo */
  --brand-2:      #0077B6;   /* ciemniejszy błękit  */
  --brand-3:      #3FD0F5;   /* rozjaśnienie        */
  --navy:         #0B2136;   /* granat / tła ciemne */
  --navy-2:       #0F2C48;
  --ink:          #14202B;   /* tekst główny        */
  --muted:        #5B6b78;   /* tekst pomocniczy    */
  --line:         #e5ecf2;
  --bg:           #ffffff;
  --bg-soft:      #f4f8fb;
  --bg-tint:      #eef6fb;
  --white:        #ffffff;

  --grad: linear-gradient(135deg, var(--brand-3) 0%, var(--brand) 45%, var(--brand-2) 100%);
  --shadow-sm: 0 2px 8px rgba(11,33,54,.06);
  --shadow:    0 12px 30px rgba(11,33,54,.10);
  --shadow-lg: 0 24px 60px rgba(11,33,54,.16);

  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;

  --ff-head: "Sora", system-ui, sans-serif;
  --ff-body: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  margin:0;
  font-family:var(--ff-body);
  color:var(--ink);
  background:var(--bg);
  line-height:1.65;
  font-size:17px;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{ font-family:var(--ff-head); line-height:1.12; margin:0; color:var(--ink); letter-spacing:-.02em; }
p{ margin:0; }
.ico{ width:1.15em; height:1.15em; fill:currentColor; flex:none; }
.ico path{ }
/* stroke-based icons */
.corridor__line .ico, #trasy .corridor .ico{ fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }

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

/* ---------------- Buttons ---------------- */
.btn{
  --pad-y:.8rem; --pad-x:1.25rem;
  display:inline-flex; align-items:center; gap:.55rem;
  padding:var(--pad-y) var(--pad-x);
  border-radius:999px;
  font-family:var(--ff-body);
  font-weight:700; font-size:.98rem;
  border:2px solid transparent; cursor:pointer;
  transition:transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn--sm{ --pad-y:.55rem; --pad-x:1rem; font-size:.9rem; }
.btn--lg{ --pad-y:1rem; --pad-x:1.7rem; font-size:1.05rem; }
.btn--primary{ background:linear-gradient(180deg,#17ADE6 0%,#0090C9 100%); color:#fff; box-shadow:0 6px 16px -6px rgba(0,120,182,.5); }
.btn--primary:hover{ box-shadow:0 12px 22px -8px rgba(0,120,182,.55); filter:brightness(1.04); }
.btn--ghost{ background:rgba(255,255,255,.08); color:#fff; border-color:rgba(255,255,255,.55); backdrop-filter:blur(4px); }
.btn--ghost:hover{ background:rgba(255,255,255,.16); border-color:#fff; }
.btn--white{ background:#fff; color:var(--brand-2); box-shadow:var(--shadow); }
#promocje .btn--primary, #trasy .btn--primary{ box-shadow:0 6px 16px -6px rgba(0,120,182,.4); }

/* ---------------- Topbar ---------------- */
.topbar{ background:var(--navy); color:#cfe6f3; font-size:.85rem; }
.topbar__inner{ display:flex; align-items:center; justify-content:space-between; min-height:40px; gap:1rem; }
.topbar__left{ display:flex; gap:1.4rem; align-items:center; }
.topbar__item{ display:inline-flex; align-items:center; gap:.4rem; white-space:nowrap; }
.topbar__item .ico{ fill:var(--brand-3); }
.topbar__right{ display:flex; align-items:center; gap:1rem; flex:none; }
.topbar__phone{ display:inline-flex; align-items:center; gap:.4rem; font-weight:700; color:#fff; white-space:nowrap; }
.topbar__phone .ico{ fill:var(--brand-3); }
.topbar__fb{ display:inline-flex; }
.topbar__fb .ico{ fill:#cfe6f3; width:18px; height:18px; transition:fill .2s; }
.topbar__fb:hover .ico{ fill:#fff; }

/* ---------------- Header ---------------- */
.header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.85);
  backdrop-filter:saturate(160%) blur(12px);
  border-bottom:1px solid var(--line);
  transition:box-shadow .25s ease, background .25s ease;
}
.header.is-scrolled{ box-shadow:var(--shadow-sm); background:rgba(255,255,255,.95); }
.header__inner{ display:flex; align-items:center; gap:1rem; min-height:70px; }

.brand{ display:inline-flex; align-items:center; gap:.7rem; }
.brand__mark{ width:44px; height:44px; display:grid; place-items:center; }
.brand__mark svg{ width:44px; height:44px; filter:drop-shadow(0 4px 8px rgba(0,169,224,.35)); }
.brand__text{ display:flex; flex-direction:column; line-height:1; }
.brand__text strong{ font-family:var(--ff-head); font-weight:800; font-size:1.18rem; letter-spacing:.02em; color:var(--navy); }
.brand__text span{ font-size:.72rem; letter-spacing:.42em; color:var(--brand-2); font-weight:600; padding-left:2px; }
.brand--light .brand__text strong{ color:#fff; }
.brand--light .brand__text span{ color:var(--brand-3); }

.nav{ display:flex; gap:.35rem; margin-left:auto; }
.nav a{
  position:relative; padding:.5rem .8rem; font-weight:600; font-size:.96rem; color:var(--ink);
  border-radius:8px; transition:color .2s;
}
.nav a::after{
  content:""; position:absolute; left:.8rem; right:.8rem; bottom:.28rem; height:2px;
  background:var(--grad); border-radius:2px; transform:scaleX(0); transform-origin:left; transition:transform .22s ease;
}
.nav a:hover{ color:var(--brand-2); }
.nav a:hover::after, .nav a.active::after{ transform:scaleX(1); }

.header__cta{ margin-left:.4rem; }

.burger{ display:none; width:44px; height:44px; border:none; background:transparent; cursor:pointer; margin-left:auto; }
.burger span{ display:block; width:24px; height:2.4px; margin:5px auto; background:var(--navy); border-radius:2px; transition:.3s; }
.burger[aria-expanded="true"] span:nth-child(1){ transform:translateY(7.4px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.burger[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7.4px) rotate(-45deg); }

/* ---------------- Hero ---------------- */
.hero{ position:relative; color:#fff; isolation:isolate; }
.hero__media{ position:absolute; inset:0; z-index:-1; }
.hero__media img{ width:100%; height:100%; object-fit:cover; object-position:center 60%; }
.hero__overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(100deg, rgba(11,33,54,.94) 0%, rgba(11,33,54,.78) 42%, rgba(11,33,54,.30) 100%),
    linear-gradient(0deg, rgba(11,33,54,.55), rgba(11,33,54,0) 45%);
}
.hero__inner{ padding-block:clamp(4rem, 11vw, 8.5rem); }
.hero__content{ max-width:660px; }
.pill{
  display:inline-flex; align-items:center; gap:.5rem;
  background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.28);
  padding:.4rem .9rem; border-radius:999px; font-size:.85rem; font-weight:600; backdrop-filter:blur(4px);
}
.pill .dot{ width:9px; height:9px; border-radius:50%; background:#37e0a0; box-shadow:0 0 0 4px rgba(55,224,160,.25); animation:pulse 2s infinite; }
@keyframes pulse{ 0%,100%{opacity:1} 50%{opacity:.4} }
.hero h1{
  font-size:clamp(2.3rem, 5.6vw, 4rem); font-weight:800; margin:1.1rem 0 1rem; letter-spacing:-.03em;
  text-shadow:0 2px 30px rgba(0,0,0,.25);
}
.hero h1 .hl{ color:transparent; background:var(--grad); -webkit-background-clip:text; background-clip:text; }
.hero__lead{ font-size:clamp(1.05rem, 2vw, 1.25rem); color:#dfeaf3; max-width:560px; }
.hero__actions{ display:flex; gap:.9rem; flex-wrap:wrap; margin-top:1.9rem; }
.hero__badges{
  list-style:none; padding:0; margin:2.2rem 0 0;
  display:flex; flex-wrap:wrap; gap:.6rem 1.6rem;
}
.hero__badges li{ display:inline-flex; align-items:center; gap:.5rem; font-weight:600; font-size:.95rem; color:#eaf3fa; }
.hero__badges .ico{ fill:var(--brand-3); }

/* ---------------- Stats ---------------- */
.stats{ background:var(--navy-2); }
.stats__grid{ display:grid; grid-template-columns:repeat(4,1fr); }
.stat{ text-align:center; padding:1.6rem 1rem; color:#fff; position:relative; }
.stat + .stat::before{ content:""; position:absolute; left:0; top:22%; bottom:22%; width:1px; background:rgba(255,255,255,.14); }
.stat__num{ display:block; font-family:var(--ff-head); font-weight:800; font-size:clamp(1.8rem,4vw,2.6rem); color:var(--brand-3); letter-spacing:-.02em; }
.stat__lbl{ display:block; font-size:.9rem; color:#bcd4e4; margin-top:.2rem; }

/* ---------------- Sections ---------------- */
.section{ padding-block:clamp(3.5rem, 8vw, 6rem); }
.section--tint{ background:var(--bg-tint); }
.section--dark{ background:var(--navy); color:#fff; }
.section__head{ max-width:720px; margin:0 auto clamp(2.2rem,4vw,3.2rem); text-align:center; }
.eyebrow{
  display:inline-block; font-weight:700; font-size:.8rem; letter-spacing:.18em; text-transform:uppercase;
  color:var(--brand-2); margin-bottom:.7rem;
}
.section--dark .eyebrow{ color:var(--brand-3); }
.section__head h2{ font-size:clamp(1.7rem, 4vw, 2.6rem); font-weight:800; }
.section__head p{ color:var(--muted); margin-top:.9rem; font-size:1.08rem; }
.section--dark .section__head h2{ color:#fff; }
.section--dark .section__head p{ color:#bcd4e4; }

/* ---------------- Cards (usługi) ---------------- */
.cards{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.3rem; }
.card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  padding:1.9rem 1.5rem; box-shadow:var(--shadow-sm);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); border-color:#cfe6f3; }
.card__ico{
  width:58px; height:58px; border-radius:16px; display:grid; place-items:center;
  background:var(--bg-tint); color:var(--brand-2); margin-bottom:1.1rem;
}
.card__ico svg{ width:30px; height:30px; fill:currentColor; }
.card h3{ font-size:1.2rem; margin-bottom:.5rem; }
.card p{ color:var(--muted); font-size:.98rem; }

/* ---------------- Why ---------------- */
.why{ display:grid; grid-template-columns:1fr 1.1fr; gap:clamp(1.6rem,4vw,3.4rem); align-items:center; }
.why__media{ position:relative; }
.why__media img{ width:100%; border-radius:var(--radius); box-shadow:var(--shadow-lg); }
.why__badge{
  position:absolute; left:-14px; bottom:22px; background:#fff; border-radius:14px; padding:.9rem 1.2rem;
  box-shadow:var(--shadow); border:1px solid var(--line);
}
.why__badge strong{ display:block; font-family:var(--ff-head); color:var(--navy); font-size:1.05rem; }
.why__badge span{ font-size:.85rem; color:var(--muted); }
.why__content h2{ font-size:clamp(1.6rem,3.5vw,2.3rem); font-weight:800; margin:.6rem 0 1rem; }
.why__content > p{ color:var(--muted); margin-bottom:1.4rem; }
.feats{ list-style:none; padding:0; margin:0; display:grid; grid-template-columns:1fr 1fr; gap:.8rem 1.4rem; }
.feats li{ display:flex; align-items:flex-start; gap:.6rem; font-weight:600; font-size:.98rem; }
.feats .ico{ fill:#fff; background:var(--grad); border-radius:50%; padding:3px; width:22px; height:22px; margin-top:1px; }

/* ---------------- Routes ---------------- */
.routes{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.2rem; }
.route{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  padding:1.4rem 1.4rem; box-shadow:var(--shadow-sm); transition:transform .22s, box-shadow .22s;
  border-left:4px solid var(--brand);
}
.route:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }
.route h3{ margin-bottom:.5rem; }
.route__tag{
  display:inline-block; font-family:var(--ff-body); font-weight:700; font-size:.82rem; letter-spacing:.04em;
  text-transform:uppercase; color:var(--brand-2); background:var(--bg-tint); padding:.28rem .7rem; border-radius:999px;
}
.route p{ color:var(--muted); font-size:.96rem; }
.route--cta{ background:var(--navy); border-left-color:var(--brand-3); color:#fff; display:flex; flex-direction:column; align-items:flex-start; gap:.6rem; justify-content:center; }
.route--cta h3{ color:#fff; }
.route--cta p{ color:#bcd4e4; }

.corridor{
  display:flex; align-items:center; justify-content:center; gap:.6rem; flex-wrap:wrap;
  margin-top:2.4rem; padding:1.1rem; background:#fff; border:1px dashed #bcdcec; border-radius:var(--radius);
}
.corridor__pt{ font-family:var(--ff-head); font-weight:700; color:var(--navy); padding:.35rem .9rem; background:var(--bg-tint); border-radius:999px; }
.corridor__line{ color:var(--brand); display:inline-flex; }
.corridor__line .ico{ width:26px; height:26px; }

/* ---------------- Gallery ---------------- */
.gallery{ display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:180px; gap:1rem; }
.gallery__item{
  border:none; padding:0; margin:0; cursor:pointer; overflow:hidden; border-radius:14px; position:relative;
  background:#0a1a2a; box-shadow:var(--shadow-sm);
}
.gallery__item--wide{ grid-column:span 2; grid-row:span 2; }
.gallery__item--full{ grid-column:1 / -1; }
.gallery__item img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.gallery__item::after{
  content:""; position:absolute; inset:0; background:linear-gradient(0deg, rgba(0,169,224,.35), transparent 60%);
  opacity:0; transition:opacity .3s;
}
.gallery__item:hover img{ transform:scale(1.08); }
.gallery__item:hover::after{ opacity:1; }

/* ---------------- Promocje ---------------- */
.promos{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; align-items:stretch; }
.promo{
  position:relative; background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  padding:2rem 1.6rem; text-align:center; box-shadow:var(--shadow-sm); transition:transform .22s, box-shadow .22s;
}
.promo:hover{ transform:translateY(-6px); box-shadow:var(--shadow); }
.promo__save{
  display:inline-block; font-family:var(--ff-head); font-weight:800; font-size:1.15rem;
  color:var(--brand-2); background:var(--bg-tint); border-radius:999px; padding:.4rem 1.1rem; margin-bottom:1rem;
}
.promo h3{ font-size:1.3rem; margin-bottom:.5rem; }
.promo p{ color:var(--muted); font-size:.98rem; }
.promo--featured{ background:var(--grad); color:#fff; border:none; box-shadow:0 22px 44px -12px rgba(0,120,182,.5); transform:scale(1.03); }
.promo--featured:hover{ transform:scale(1.03) translateY(-6px); }
.promo--featured h3{ color:#fff; }
.promo--featured p{ color:rgba(255,255,255,.92); }
.promo--featured .promo__save{ background:rgba(255,255,255,.2); color:#fff; }
.promo__ribbon{
  position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background:var(--navy); color:#fff; font-size:.75rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  padding:.35rem .9rem; border-radius:999px; box-shadow:var(--shadow);
}
.promos__note{ text-align:center; color:var(--muted); font-size:.9rem; margin-top:1.4rem; font-style:italic; }

/* ---------------- Steps ---------------- */
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.2rem; margin-bottom:2.6rem; }
.step{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:1.6rem 1.4rem; box-shadow:var(--shadow-sm); position:relative; }
.step__n{
  display:grid; place-items:center; width:44px; height:44px; border-radius:12px;
  background:var(--grad); color:#fff; font-family:var(--ff-head); font-weight:800; font-size:1.2rem; margin-bottom:1rem;
  box-shadow:0 10px 18px -6px rgba(0,120,182,.45);
}
.step h3{ font-size:1.1rem; margin-bottom:.4rem; }
.step p{ color:var(--muted); font-size:.95rem; }

.reserve-cta{
  display:flex; align-items:center; justify-content:space-between; gap:1.6rem; flex-wrap:wrap;
  background:var(--navy); color:#fff; border-radius:var(--radius); padding:clamp(1.6rem,4vw,2.6rem);
  box-shadow:var(--shadow);
}
.reserve-cta__text{ max-width:560px; }
.reserve-cta__text h3{ color:#fff; font-size:1.4rem; margin-bottom:.5rem; }
.reserve-cta__text p{ color:#bcd4e4; }
.reserve-cta__actions{ display:flex; gap:.8rem; flex-wrap:wrap; }

/* ---------------- Contact ---------------- */
.contact{ display:grid; grid-template-columns:1.35fr 1fr; gap:1.6rem; align-items:start; }
.contact__cards{ display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; margin-bottom:1.6rem; }
.contact__card{
  display:flex; flex-direction:column; gap:.15rem; background:#fff; border:1px solid var(--line);
  border-radius:var(--radius-sm); padding:1.3rem; box-shadow:var(--shadow-sm); transition:transform .2s, box-shadow .2s;
}
a.contact__card:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }
.contact__ico{ width:44px; height:44px; border-radius:12px; background:var(--bg-tint); color:var(--brand-2); display:grid; place-items:center; margin-bottom:.6rem; }
.contact__ico svg{ width:24px; height:24px; fill:currentColor; }
.contact__k{ font-size:.8rem; text-transform:uppercase; letter-spacing:.08em; color:var(--muted); font-weight:700; }
.contact__v{ font-weight:700; color:var(--navy); font-size:1.05rem; }
.contact__panel{ background:var(--navy); color:#fff; border-radius:var(--radius); padding:1.8rem; box-shadow:var(--shadow); }
.contact__panel h3{ color:#fff; font-size:1.25rem; margin-bottom:.4rem; }
.contact__panel h4{ color:var(--brand-3); font-size:.85rem; text-transform:uppercase; letter-spacing:.08em; margin:1.2rem 0 .3rem; }
.contact__firm{ color:#dceaf3; }
.contact__acct{ font-family:var(--ff-head); font-weight:600; letter-spacing:.02em; color:#fff; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); border-radius:10px; padding:.7rem .9rem; font-size:.98rem; }
.contact__hint{ color:#9fbdd2; font-size:.88rem; margin-top:1.2rem; }

/* ---------------- Contact form ---------------- */
.cform{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:1.8rem; box-shadow:var(--shadow-sm); }
.cform h3{ font-size:1.25rem; margin-bottom:.3rem; }
.cform__intro{ color:var(--muted); font-size:.94rem; margin-bottom:1.2rem; }
.cform__intro span{ color:var(--brand-2); font-weight:700; }
.cform__row{ display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.field{ display:flex; flex-direction:column; gap:.35rem; margin-bottom:1rem; }
.field > span{ font-size:.85rem; font-weight:700; color:var(--navy); }
.field .req{ color:#e0483d; }
.field input, .field select, .field textarea{
  font-family:var(--ff-body); font-size:1rem; color:var(--ink);
  border:1.5px solid var(--line); border-radius:10px; padding:.7rem .85rem; background:#fbfdff;
  transition:border-color .2s, box-shadow .2s; width:100%;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--brand); box-shadow:0 0 0 3px rgba(0,169,224,.15);
}
.field textarea{ resize:vertical; min-height:80px; }
.field input:invalid.touched, .field textarea:invalid.touched{ border-color:#e0483d; }
.cform__hp{ position:absolute; left:-9999px; width:1px; height:1px; opacity:0; }
.cform__submit{ margin-top:.4rem; }
.cform__status{ margin-top:.9rem; font-weight:600; font-size:.95rem; display:none; padding:.7rem .9rem; border-radius:10px; }
.cform__status.ok{ display:block; background:#e7f8ef; color:#177a48; border:1px solid #b6e6cd; }
.cform__status.err{ display:block; background:#fdeceb; color:#c0392b; border:1px solid #f5c6c2; }
.cform__note{ margin-top:1rem; font-size:.9rem; color:var(--muted); }
.cform__note a{ color:var(--brand-2); font-weight:700; }

/* zgoda RODO */
.consent{ display:flex; align-items:flex-start; gap:.6rem; margin:.2rem 0 1.1rem; font-size:.88rem; color:var(--muted); line-height:1.5; }
.consent input{ margin-top:.15rem; width:18px; height:18px; flex:none; accent-color:var(--brand); cursor:pointer; }
.consent a{ color:var(--brand-2); font-weight:700; }
.consent .req{ color:#e0483d; }
.consent input.touched:invalid{ outline:2px solid #e0483d; outline-offset:2px; border-radius:3px; }

/* ---------------- Strona prawna (polityka prywatności) ---------------- */
.legal{ max-width:820px; margin:0 auto; }
.legal__back{ display:inline-flex; align-items:center; gap:.35rem; margin-bottom:1.4rem; color:var(--brand-2); font-weight:700; font-size:.95rem; }
.legal h1{ font-size:clamp(1.8rem,4vw,2.6rem); margin-bottom:.4rem; }
.legal__updated{ color:var(--muted); margin-bottom:2rem; }
.legal h2{ font-size:1.25rem; margin:2rem 0 .6rem; color:var(--navy); }
.legal p{ color:#3a4a57; margin-bottom:.8rem; }
.legal ul{ padding-left:1.25rem; margin:0 0 .9rem; }
.legal li{ color:#3a4a57; margin:.35rem 0; }
.legal a{ color:var(--brand-2); font-weight:600; }
.legal__note{ margin-top:2rem; padding:1rem 1.2rem; background:var(--bg-tint); border-radius:12px; font-size:.9rem; color:var(--muted); }

/* ---------------- FAQ ---------------- */
.faq-section{ background:var(--bg-tint); }
.faq{ max-width:840px; margin:0 auto; display:flex; flex-direction:column; gap:.85rem; }
.faq__item{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-sm);
  box-shadow:var(--shadow-sm); overflow:hidden; transition:box-shadow .2s, border-color .2s;
}
.faq__item[open]{ box-shadow:var(--shadow); border-color:#cfe6f3; }
.faq__item summary{
  list-style:none; cursor:pointer; padding:1.1rem 1.35rem;
  font-family:var(--ff-head); font-weight:700; font-size:1.05rem; color:var(--navy);
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  transition:color .2s;
}
.faq__item summary::-webkit-details-marker{ display:none; }
.faq__item summary:hover{ color:var(--brand-2); }
.faq__item summary::after{
  content:""; flex:none; width:22px; height:22px;
  background:
    linear-gradient(var(--brand),var(--brand)) center/2.5px 13px no-repeat,
    linear-gradient(var(--brand),var(--brand)) center/13px 2.5px no-repeat;
  transition:transform .25s ease;
}
.faq__item[open] summary::after{
  /* tylko pozioma kreska = znak minus */
  background:linear-gradient(var(--brand),var(--brand)) center/13px 2.5px no-repeat;
}
.faq__a{ padding:0 1.35rem 1.25rem; color:var(--muted); }
.faq__a p{ margin:0; }
.faq__a strong{ color:var(--ink); }

/* ---------------- CTA band ---------------- */
.cta-band{ background:var(--grad); color:#fff; }
.cta-band__inner{ display:flex; align-items:center; justify-content:space-between; gap:1.4rem; flex-wrap:wrap; padding-block:clamp(2.2rem,5vw,3.2rem); }
.cta-band h2{ color:#fff; font-size:clamp(1.6rem,3.5vw,2.2rem); }
.cta-band p{ color:rgba(255,255,255,.9); margin-top:.3rem; }

/* ---------------- Footer ---------------- */
.footer{ background:var(--navy); color:#b9d1e2; }
.footer__inner{ display:grid; grid-template-columns:1.6fr 1fr 1fr; gap:2rem; padding-block:3rem; }
.footer__brand p{ margin-top:1rem; color:#8fb0c6; max-width:340px; font-size:.96rem; }
.footer__col h4{ color:#fff; font-size:1rem; margin-bottom:1rem; }
.footer__col a, .footer__col span{ display:block; color:#b9d1e2; padding:.28rem 0; font-size:.96rem; transition:color .2s; }
.footer__col a:hover{ color:var(--brand-3); }
.footer__bar{ border-top:1px solid rgba(255,255,255,.1); }
.footer__bar-inner{ display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; padding-block:1.1rem; font-size:.85rem; color:#7fa0b8; }

/* ---------------- FAB (mobile call) ---------------- */
.fab{
  position:fixed; right:18px; bottom:18px; z-index:60; width:56px; height:56px; border-radius:50%;
  display:none; place-items:center; background:var(--grad); color:#fff;
  box-shadow:0 12px 26px rgba(0,169,224,.5); animation:fabPulse 2.4s infinite;
}
.fab .ico{ width:26px; height:26px; }
@keyframes fabPulse{ 0%{box-shadow:0 0 0 0 rgba(0,169,224,.5)} 70%{box-shadow:0 0 0 16px rgba(0,169,224,0)} 100%{box-shadow:0 0 0 0 rgba(0,169,224,0)} }

/* ---------------- Lightbox ---------------- */
.lightbox{
  position:fixed; inset:0; z-index:100; background:rgba(6,18,30,.92);
  display:none; align-items:center; justify-content:center; padding:4vw;
}
.lightbox.is-open{ display:flex; }
.lightbox__img{ max-width:92vw; max-height:86vh; border-radius:12px; box-shadow:0 30px 80px rgba(0,0,0,.6); }
.lightbox__close, .lightbox__nav{
  position:absolute; background:rgba(255,255,255,.12); color:#fff; border:1px solid rgba(255,255,255,.3);
  width:52px; height:52px; border-radius:50%; font-size:1.8rem; cursor:pointer; display:grid; place-items:center;
  transition:background .2s; line-height:1;
}
.lightbox__close:hover, .lightbox__nav:hover{ background:rgba(255,255,255,.28); }
.lightbox__close{ top:20px; right:20px; }
.lightbox__nav--prev{ left:20px; top:50%; transform:translateY(-50%); }
.lightbox__nav--next{ right:20px; top:50%; transform:translateY(-50%); }

/* ---------------- Reveal animation ---------------- */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:1024px){
  .cards{ grid-template-columns:1fr 1fr; }
  .steps{ grid-template-columns:1fr 1fr; }
  .routes{ grid-template-columns:1fr 1fr; }
  .contact{ grid-template-columns:1fr; }
  .contact__cards{ grid-template-columns:1fr 1fr; }
}
@media (max-width:860px){
  .nav{
    position:fixed; inset:0 0 0 auto; width:min(80vw,320px); background:#fff; flex-direction:column;
    padding:5.5rem 1.5rem 2rem; gap:.2rem; box-shadow:-20px 0 60px rgba(11,33,54,.2);
    transform:translateX(100%); transition:transform .3s ease; margin-left:0;
  }
  .nav.is-open{ transform:translateX(0); }
  .nav a{ padding:.9rem .6rem; border-bottom:1px solid var(--line); font-size:1.05rem; }
  .nav a::after{ display:none; }
  .burger{ display:block; }
  .header__cta{ display:none; }
  .why{ grid-template-columns:1fr; }
  .why__media{ order:-1; }
  .feats{ grid-template-columns:1fr; }
  .stats__grid{ grid-template-columns:1fr 1fr; }
  .stat:nth-child(3)::before, .stat:nth-child(2)::before{ display:var(--x,block); }
  .stat:nth-child(3)::before{ display:none; }
  .promos{ grid-template-columns:1fr; }
  .promo--featured{ transform:none; }
  .promo--featured:hover{ transform:translateY(-6px); }
  .gallery{ grid-template-columns:1fr 1fr; grid-auto-rows:150px; }
  .gallery__item--wide{ grid-column:span 2; grid-row:span 1; }
  .fab{ display:grid; }
  .topbar__item--hide{ display:none; }
}
@media (max-width:560px){
  body{ font-size:16px; }
  .cards{ grid-template-columns:1fr; }
  .steps{ grid-template-columns:1fr; }
  .routes{ grid-template-columns:1fr; }
  .contact__cards{ grid-template-columns:1fr; }
  .cform__row{ grid-template-columns:1fr; }
  .footer__inner{ grid-template-columns:1fr; gap:1.6rem; }
  /* na telefonach chowamy długi opis kierunku — pasek zostaje jednoliniowy (FB + telefon) */
  .topbar__left{ display:none; }
  .topbar__inner{ justify-content:center; gap:1.4rem; }
  .topbar__phone{ font-size:.95rem; }
  .hero__actions .btn{ width:100%; justify-content:center; }
  .corridor__pt{ font-size:.9rem; }
}
@media (prefers-reduced-motion:reduce){
  *{ animation:none!important; transition:none!important; scroll-behavior:auto!important; }
  .reveal{ opacity:1; transform:none; }
}
