/* =============================================================
   MADO PARKING - light glassmorphism
   Paleta: emerald/teal + koralowy akcent (ciepłe neutralne)
   Fonts: Montserrat (display - zamiennik Gotham z logo) + Manrope (body)
   ============================================================= */

:root {
  /* Neutralne / tło */
  --bg:            #eef1fa;
  --bg-2:          #f7f9ff;
  --ink:           #101a33;
  --ink-soft:      #454f6b;
  --ink-faint:     #7a8299;
  --line:          rgba(16, 26, 51, 0.09);

  /* Marka - niebieski z logo #5271FF + biel */
  --brand:         #5271ff;
  --brand-2:       #3f5cf0;
  --brand-3:       #8098ff;
  --brand-rgb:     82, 113, 255;
  --grad:          linear-gradient(120deg, #4a68ff 0%, #5271ff 45%, #7d93ff 100%);

  /* Akcent - bursztyn (gwiazdki, last-minute) */
  --accent:        #f5a623;
  --accent-rgb:    245, 166, 35;
  --amber:         #f5a623;

  /* Zieleń - dostępność (moduł wolnych miejsc) */
  --ok:            #16b364;
  --ok-rgb:        22, 179, 100;

  /* Szkło */
  --glass-bg:      rgba(255, 255, 255, 0.58);
  --glass-bg-2:    rgba(255, 255, 255, 0.78);
  --glass-brd:     rgba(255, 255, 255, 0.85);
  --glass-shadow:  0 20px 50px -20px rgba(30, 44, 90, 0.26);
  --blur:          20px;

  --radius:        22px;
  --radius-lg:     30px;
  --maxw:          1180px;
  --ease:          cubic-bezier(.22, 1, .36, 1);
}

/* ------------------------------------------------------------- */
/* RESET                                                          */
/* ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  /* clip zamiast hidden - hidden potrafi zepsuć position:sticky nagłówka */
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, iframe { display: block; max-width: 100%; }
/* twarda blokada poziomego overflow - żaden element nie poszerzy strony
   (poszerzenie layoutu odsuwało pływający telefon i stopkę poza ekran) */
main, .site-footer { overflow-x: clip; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: "Montserrat", "Manrope", sans-serif;
  font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; color: var(--ink);
}

.container { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }

/* ------------------------------------------------------------- */
/* TŁO - AURORA / GRADIENT MESH                                   */
/* ------------------------------------------------------------- */
.aurora { position: fixed; inset: 0; z-index: -1; overflow: hidden;
  background:
    radial-gradient(1000px 560px at 84% -10%, rgba(82,113,255,.12) 0%, transparent 60%),
    radial-gradient(820px 520px at -6% 26%, rgba(82,113,255,.09) 0%, transparent 55%),
    linear-gradient(180deg, #eef2fb 0%, #e6eaf6 100%);
}
.blob { display: none; }
.blob--violet { width: 46vw; height: 46vw; left: -8vw; top: -6vw;
  background: radial-gradient(circle, #9db4ff, transparent 68%); }
.blob--sky    { width: 40vw; height: 40vw; right: -8vw; top: 8vw;
  background: radial-gradient(circle, #b9ccff, transparent 68%); animation-delay: -7s; }
.blob--mint   { width: 38vw; height: 38vw; left: 30vw; bottom: -14vw;
  background: radial-gradient(circle, #ffe0a6, transparent 70%); animation-delay: -13s; opacity: .3; }
.grain { position: absolute; inset: -50%; opacity: .16; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

@keyframes drift { from { transform: translate(0,0) scale(1); } to { transform: translate(4vw,5vh) scale(1.12); } }

/* ------------------------------------------------------------- */
/* SZKŁO                                                          */
/* ------------------------------------------------------------- */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-brd);
  backdrop-filter: blur(var(--blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(180%);
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255,255,255,.6);
  border-radius: var(--radius);
}

/* ------------------------------------------------------------- */
/* BUTTONS                                                        */
/* ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .8em 1.4em; border-radius: 100px; font-weight: 600; font-size: .98rem;
  letter-spacing: -.01em; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn--primary { color: #fff; background: var(--grad); background-size: 160% 160%;
  box-shadow: 0 12px 26px -10px rgba(var(--brand-rgb), .7); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -10px rgba(var(--brand-rgb), .85); background-position: 100% 0; }
.btn--accent { color: #3a2a00; background: linear-gradient(120deg, #ffc24d, #f5a623);
  box-shadow: 0 12px 26px -10px rgba(var(--accent-rgb), .7); }
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -10px rgba(var(--accent-rgb), .85); }
.btn--glass { color: var(--brand); background: var(--glass-bg-2);
  border: 1px solid var(--glass-brd); backdrop-filter: blur(10px); box-shadow: var(--glass-shadow); }
.btn--glass:hover { transform: translateY(-2px); background: #fff; }
.btn--white { color: var(--brand); background: #fff; box-shadow: 0 12px 26px -10px rgba(16, 26, 51, .5); }
.btn--white:hover { transform: translateY(-2px); background: #f2f5ff; }
.btn--ghost { color: var(--ink); background: transparent; }
.btn--ghost:hover { color: var(--brand); }
.btn--lg { padding: 1em 1.7em; font-size: 1.05rem; }
.btn--sm { padding: .6em 1.1em; font-size: .88rem; }
.btn--block { width: 100%; }

/* ------------------------------------------------------------- */
/* HEADER / NAV                                                   */
/* ------------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 100; padding: 12px 0; transition: padding .3s var(--ease); }
.site-header.scrolled { padding: 6px 0; }
.site-header.scrolled .nav { background: var(--glass-bg-2); box-shadow: var(--glass-shadow); }

.nav { display: flex; align-items: center; gap: 16px; padding: 10px 14px 10px 18px;
  border-radius: 100px; border: 1px solid transparent; transition: background .3s, box-shadow .3s;
  backdrop-filter: blur(var(--blur)); }
.brand { display: inline-flex; align-items: center; gap: 10px; transition: transform .3s var(--ease); }
.brand:hover { transform: translateY(-1px); }
/* wordmark „Odlotowy Parking" (ikona + tekst - bez pliku graficznego) */
.brand__mark { display: grid; place-items: center; flex: 0 0 auto; width: 40px; height: 40px;
  border-radius: 13px; color: #fff; background: var(--grad);
  box-shadow: 0 6px 14px -4px rgba(var(--brand-rgb), .55); }
.brand__name { font-family: "Montserrat", "Manrope", sans-serif; font-weight: 800;
  font-size: 1.16rem; letter-spacing: -.02em; line-height: 1; color: var(--ink); white-space: nowrap; }
.brand__name em { font-style: normal; color: var(--brand); }
.footer__brand .brand__mark { width: 46px; height: 46px; border-radius: 15px; }
.footer__brand .brand__name { font-size: 1.3rem; }
/* prawdziwe logo Odlotowy Parking (plik graficzny) */
/* Logo ma wbudowany przezroczysty margines po bokach (znak zajmuje ~56% szerokości);
   przycinamy go poziomo przez object-fit, żeby logo nie było „za szerokie". */
.brand__logo { height: 36px; width: 69px; object-fit: cover; object-position: 48.7% center; display: block; }
.site-header.scrolled .brand__logo { height: 32px; width: 61px; }
.footer__logo { height: 46px; width: 88px; object-fit: cover; object-position: 48.7% center; display: block; }

.nav__links { display: flex; gap: 4px; margin-left: auto; }
.nav__links { white-space: nowrap; }
.nav__links a { padding: .5em .6em; border-radius: 100px; font-weight: 500; font-size: .93rem;
  color: var(--ink-soft); white-space: nowrap; transition: color .2s, background .2s; }
.nav__links a:hover { color: var(--brand); background: rgba(var(--brand-rgb),.08); }

.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.nav__burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ------------------------------------------------------------- */
/* HERO                                                           */
/* ------------------------------------------------------------- */
.hero { padding: clamp(40px, 7vw, 90px) 0 40px; }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }

/* Moduł wolnych miejsc (na żywo) */
.spots { display: inline-flex; align-items: center; gap: 12px; padding: .55em 1.1em; border-radius: 100px;
  font-size: .92rem; font-weight: 600; color: var(--ink); background: var(--glass-bg-2);
  border: 1px solid var(--glass-brd); backdrop-filter: blur(10px); box-shadow: var(--glass-shadow); }
.spots__pulse { position: relative; width: 10px; height: 10px; }
.spots__pulse span { position: absolute; inset: 0; border-radius: 50%; background: var(--ok);
  box-shadow: 0 0 0 0 rgba(var(--ok-rgb), .55); animation: pulseOk 1.8s infinite; }
.spots__label { color: var(--ink-soft); }
.spots__num { display: inline-block; font-weight: 800; color: var(--ok); transition: transform .35s var(--ease); }
.spots__num.bump { transform: scale(1.16); }
.spots__total { color: var(--ink-soft); margin-left: 1px; }
.spots__hint { color: var(--ink-faint); font-size: .78rem; font-weight: 500; padding-left: 10px;
  border-left: 1px solid var(--line); }
/* stany dostępności: ≤5 czerwony, 6-10 żółty, >10 zielony (kropka + liczba) */
.spots--red .spots__num { color: #e02d3c; }
.spots--red .spots__pulse span { background: #e02d3c; animation-name: pulseRed; }
.spots--amber .spots__num { color: #d97706; }
.spots--amber .spots__pulse span { background: #f5a623; animation-name: pulseAmber; }
@keyframes pulseRed { 0%{box-shadow:0 0 0 0 rgba(224,45,60,.5)} 70%{box-shadow:0 0 0 10px rgba(224,45,60,0)} 100%{box-shadow:0 0 0 0 rgba(224,45,60,0)} }
@keyframes pulseAmber { 0%{box-shadow:0 0 0 0 rgba(245,166,35,.55)} 70%{box-shadow:0 0 0 10px rgba(245,166,35,0)} 100%{box-shadow:0 0 0 0 rgba(245,166,35,0)} }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(var(--brand-rgb),.5)} 70%{box-shadow:0 0 0 10px rgba(var(--brand-rgb),0)} 100%{box-shadow:0 0 0 0 rgba(var(--brand-rgb),0)} }
@keyframes pulseOk { 0%{box-shadow:0 0 0 0 rgba(var(--ok-rgb),.5)} 70%{box-shadow:0 0 0 10px rgba(var(--ok-rgb),0)} 100%{box-shadow:0 0 0 0 rgba(var(--ok-rgb),0)} }

.hero__title { font-size: clamp(2.3rem, 5.4vw, 4rem); font-weight: 800; margin: 22px 0 18px; }
.hero__title-sub { color: var(--ink-soft); font-weight: 700; font-size: .62em; white-space: nowrap; }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--ink-soft); max-width: 46ch; }
.hero__lead strong { color: var(--ink); }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 20px; }
.hero__trust { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; color: var(--ink-faint); font-size: .95rem; margin-top: 6px; }
.hero__trust a { font-weight: 600; color: var(--ink-soft); text-decoration: underline; text-underline-offset: 2px; }
.hero__trust a:hover { color: var(--brand); }
.stars { color: var(--amber); font-weight: 700; letter-spacing: 1px; }
.stars span { color: var(--ink); margin-left: 4px; }
.hero__trust-sep { width: 1px; height: 18px; background: var(--line); }

/* pasek zaufania: 4 w rzędzie (szeroki desktop) → 2×2 (tablet/średnie) → 1 kolumna (telefon).
   Grid zamiast flex-wrap, żeby nie robił się układ „3 + 1". */
.trust-bar { display: grid; grid-template-columns: repeat(4, auto); justify-content: space-between; align-items: center;
  gap: 14px 24px; margin-top: 48px; padding: 18px 32px; border-radius: 100px; }
.trust-bar li { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: .93rem; color: var(--ink-soft); }
.trust-bar svg { color: var(--brand); flex-shrink: 0; }
@media (max-width: 1220px) {
  .trust-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 22px; padding: 18px 26px; border-radius: 26px; }
  .trust-bar li { align-items: flex-start; }
}
@media (max-width: 560px) {
  .trust-bar { grid-template-columns: 1fr; border-radius: 22px; }
}

/* ------------------------------------------------------------- */
/* SECTIONS                                                       */
/* ------------------------------------------------------------- */
.section { padding: clamp(56px, 9vw, 110px) 0; }
.section--tint { position: relative; }
.section--tint::before { content: none; }
/* WARSTWY - co druga sekcja to biały „arkusz" z miękkim cieniem u góry i dołu.
   Dzięki temu każda sekcja (i hero powyżej) jest wyraźnie oddzielona od sąsiedniej.
   Hero liczy się jako 1. sekcja → parzyste (Proces, Rezerwacja, Atuty, Partnerzy)
   dostają biały arkusz, więc Proces odcina się od hero. */
main > .section { position: relative; }
main > .section:nth-of-type(even)::before { content: ""; position: absolute; inset: 0; z-index: -1;
  background: #fff; box-shadow: 0 -20px 44px -26px rgba(30,44,90,.28), 0 20px 44px -26px rgba(30,44,90,.28); }

.section__head { max-width: 960px; margin: 0 auto clamp(38px, 5vw, 60px); text-align: center; }
.section__head p { max-width: 860px; margin-left: auto; margin-right: auto; }
/* Sekcja „Zaufali nam / Partnerzy" - nagłówek i tekst na pełną szerokość
   kontenera (baner Ryanair i siatka partnerów pod spodem też są pełnej szerokości). */
#partnerzy .section__head, #partnerzy .section__head p { max-width: none; }
.eyebrow { display: inline-block; font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); margin-bottom: 12px; }
.section__head h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
/* wymuszony podział wiersza w nagłówku - tylko na szerszych ekranach */
.brk { display: none; }
@media (min-width: 721px) { .brk { display: inline; } }
.section__head p { margin-top: 14px; color: var(--ink-soft); font-size: 1.08rem; }

/* ------------------------------------------------------------- */
/* CARDS (atuty)                                                  */
/* ------------------------------------------------------------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 40px; }
/* atuty jako czysty tekst (bez tła „karteczki") - zostaje tylko ikona + treść */
.card { padding: 4px 2px; }
.card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.card__icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 16px; flex-shrink: 0;
  color: var(--brand); background: linear-gradient(135deg, rgba(var(--brand-rgb),.14), rgba(var(--accent-rgb),.12));
  border: 1px solid rgba(var(--brand-rgb),.16); }
.card h3 { font-size: 1.22rem; margin-bottom: 0; }
.card p { color: var(--ink-soft); font-size: .98rem; }
/* karta lojalnościowa - osobny element pod siatką/karuzelą kart, na całą szerokość */
.card--wide { margin-top: 34px; }

/* KUPON / KARTA LOJALNOŚCIOWA - bez tła zewnętrznego (tło ma tylko biała karta) */
.loyalty { display: grid; grid-template-columns: 1.05fr 1.25fr; gap: 40px; align-items: center;
  padding: 8px 2px; margin-top: 6px; }
.loyalty__info h3 { font-size: 1.22rem; margin-bottom: 0; }
.loyalty__info p { color: var(--ink-soft); font-size: .98rem; }
.loyalty__info .card__head { margin-bottom: 12px; }

/* sama karta-kupon (bilecik z perforacją u góry) */
.loyalty__card { position: relative; border-radius: 18px; padding: 16px 18px 14px;
  background: #fff; border: 1.5px dashed rgba(var(--brand-rgb),.4);
  box-shadow: 0 18px 40px -22px rgba(30,44,90,.5); }
.loyalty__card-top { margin-bottom: 12px; }
.loyalty__brand { display: inline-flex; align-items: center; gap: 7px; font-size: .74rem; font-weight: 700;
  letter-spacing: .02em; text-transform: uppercase; color: var(--brand); }
.loyalty__stamps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.stamp { position: relative; aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center;
  color: var(--brand); background: rgba(var(--brand-rgb),.08); border: 2px dashed rgba(var(--brand-rgb),.45); }
.stamp svg { width: 52%; height: 52%; }
/* kółko z numerem - w prawym-dolnym rogu, dokładnie na linii przerywanej (~godz. 4:30) */
.stamp i { position: absolute; left: 85.4%; top: 85.4%; transform: translate(-50%, -50%);
  width: 17px; height: 17px; border-radius: 50%;
  display: grid; place-items: center; font-style: normal; font-size: .6rem; font-weight: 800;
  color: #fff; background: var(--brand); box-shadow: 0 0 0 2px #fff; }
/* 6. pieczątka - nagroda */
.stamp--free { color: #7a4d00; background: linear-gradient(135deg, #ffd873, #f5a623);
  border: 2px solid #f0a11c; box-shadow: 0 8px 18px -8px rgba(var(--accent-rgb),.9); }
.stamp--free svg { width: 52%; height: 52%; margin-top: -6%; }   /* gwiazdka = rozmiar samolotu */
/* FREE - osobno na dole (nie podnosi gwiazdki) */
.stamp--free b { position: absolute; left: 50%; bottom: 13%; transform: translateX(-50%);
  font-size: .64rem; font-weight: 800; letter-spacing: -.01em; white-space: nowrap; }
.stamp--free i { color: #fff; background: #ec9a10; }        /* złote kółko z „6" */
.loyalty__hint { display: block; margin-top: 12px; font-size: .84rem; color: var(--ink-soft); text-align: center; }
.loyalty__hint strong { color: var(--ink); }
@media (max-width: 720px) {
  .loyalty { grid-template-columns: 1fr; gap: 22px; padding: 24px; }
  /* 6. pieczątka na mobile: bez gwiazdki (nakładała się na napis), zostaje samo „FREE" na środku */
  .stamp--free > svg { display: none; }
  .stamp--free b { position: static; transform: none; font-size: .58rem; }
}

/* ------------------------------------------------------------- */
/* PARTNERZY / WSPÓŁPRACA                                        */
/* ------------------------------------------------------------- */
/* wyróżnienie Ryanair - granat przewoźnika + żółty kafel z logo */
.ryanair { display: flex; align-items: center; gap: 28px; padding: 30px 34px; border-radius: var(--radius-lg);
  background: linear-gradient(120deg, #0a3a8f 0%, #1550c0 100%); border-color: rgba(255,255,255,.2);
  box-shadow: 0 24px 55px -22px rgba(10, 58, 143, .65); }
.ryanair__logo { flex: 0 0 auto; display: grid; place-items: center; }
.ryanair__logo img { height: 40px; width: auto; }
.ryanair__text h3 { color: #fff; font-size: 1.35rem; margin-bottom: 6px; }
.ryanair__text p { color: rgba(255,255,255,.86); font-size: .99rem; max-width: 72ch; }

/* współpraca z Portem Lotniczym Łódź */
.partners__airport { display: flex; align-items: center; gap: 24px; padding: 20px 28px; margin-top: 16px; }
.partners__airport img { height: 36px; width: auto; flex: 0 0 auto; }
.partners__airport p { color: var(--ink-soft); font-size: .99rem; }

/* dwie kolumny z karuzelami logotypów
   minmax(0,1fr) + min-width:0 - taśma marquee (width:max-content) nie może
   rozpychać kolumn do szerokości całej taśmy */
.partners__grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 28px;
  align-items: start; margin-top: 36px; }
.partners__grid > .partners { min-width: 0; }
.partners__label { font-size: 1.08rem; margin-bottom: 4px; }
.partners__desc { color: var(--ink-soft); font-size: .93rem; }
/* karuzela (marquee): zdublowany zestaw przesuwa się o -50% w pętli */
.partners__marquee { overflow: hidden; margin-top: 16px; padding: 6px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.partners__track { display: flex; width: max-content;
  animation: partnersScroll var(--marquee-s, 30s) linear infinite; }
.partners__marquee:hover .partners__track { animation-play-state: paused; }
@keyframes partnersScroll { to { transform: translateX(-50%); } }
.partners__chip { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  min-height: 58px; margin-right: 12px; padding: 12px 22px; border-radius: 16px; white-space: nowrap;
  background: rgba(255,255,255,.74); border: 1px solid var(--glass-brd);
  box-shadow: 0 12px 26px -18px rgba(30,44,90,.5); }
.partners__chip img { max-height: 32px; width: auto; }
/* ciemna podkładka dla białych logotypów (Parklot, NextPark, Parkos) */
.partners__chip--dark { background: #14275c; border-color: rgba(255,255,255,.12); }
.partners__chip--text { font-family: "Montserrat", sans-serif; font-weight: 700; color: #e97724; }

/* ------------------------------------------------------------- */
/* KALKULATOR CENY + CENNIK                                      */
/* ------------------------------------------------------------- */
.pricecalc { display: grid; grid-template-columns: .95fr 1.05fr; gap: 22px; align-items: start; }
.pricecalc--calc-only { grid-template-columns: 1fr; }

.pricecalc__calc { padding: 30px 28px; background: linear-gradient(150deg, #4a63f5 0%, #5f7bff 100%);
  border-color: rgba(255,255,255,.3); box-shadow: 0 24px 55px -22px rgba(var(--brand-rgb), .75); }
.pricecalc__calc h3 { color: #fff; font-size: 1.35rem; margin-bottom: 18px; }
.pricecalc__dates, .pricecalc__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 600px) { .pricecalc__dates, .pricecalc__pair { grid-template-columns: 1fr; } }
.pricecalc__calc .field { margin-bottom: 14px; }
.pricecalc__calc .field label { color: rgba(255,255,255,.85); }
.pricecalc__calc .field input, .pricecalc__calc .field select {
  width: 100%; min-width: 0; padding: .85em 1em; border-radius: 14px; border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.16); color: #fff; font: inherit; color-scheme: dark;
  transition: border .2s, box-shadow .2s; }
/* własna strzałka selecta zamiast domyślnej przeglądarkowej */
.pricecalc__calc .field select { appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 15px; padding-right: 40px; }
.pricecalc__vehicles { display: grid; gap: 12px; margin-bottom: 16px; }
.pricecalc__vehicle { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(88px, .9fr) minmax(122px, 1fr); gap: 12px; padding: 12px; border-radius: 14px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.2); }
.pricecalc__vehicle--nowide { grid-template-columns: 1.5fr 1fr; }   /* hala garażowa: bez „Extra wide" - 2 kolumny */
@media (max-width: 600px) { .pricecalc__vehicle { grid-template-columns: 1fr; } }
.pricecalc__vehicle .field { margin-bottom: 0; }
.pricecalc__vehicle .field label { font-size: .78rem; }
.pricecalc__opt--wide { margin: 2px 0 16px; }

/* --- Kontrolki w stylu strony: własny select / kalendarz / stepper --- */
.csel { position: relative; }
.csel__native { display: none; }
.csel__btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: .85em 1em; border-radius: 14px; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.16); color: #fff; font: inherit; text-align: left; cursor: pointer; transition: border-color .2s, box-shadow .2s; }
.csel__btn:hover { border-color: rgba(255,255,255,.6); }
.csel.is-open .csel__btn { border-color: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.2); }
.csel__val { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.csel__chev { display: flex; color: #fff; transition: transform .2s; }
.csel.is-open .csel__chev { transform: rotate(180deg); }
.csel__list { position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 45; max-height: 230px; overflow-y: auto; padding: 6px; border-radius: 14px; background: var(--brand-2); border: 1px solid rgba(255,255,255,.22); box-shadow: 0 22px 44px -16px rgba(0,0,0,.6); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .15s, transform .15s, visibility .15s; }
.csel.is-open .csel__list { opacity: 1; visibility: visible; transform: none; }
.csel__opt { padding: .6em .8em; border-radius: 9px; color: rgba(255,255,255,.85); font-size: .95rem; cursor: pointer; }
.csel__opt:hover { background: rgba(255,255,255,.12); color: #fff; }
.csel__opt.is-sel { background: #fff; color: var(--brand); font-weight: 700; }
/* scrollbary rozwijanych list w stylu strony */
.csel__list { scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.4) transparent; }
.csel__list::-webkit-scrollbar { width: 8px; }
.csel__list::-webkit-scrollbar-track { background: transparent; margin: 4px 0; }
.csel__list::-webkit-scrollbar-thumb { background: rgba(255,255,255,.35); border-radius: 8px; }
.csel__list::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.55); }

.cstep { display: flex; align-items: stretch; gap: 5px; }
.pricecalc__calc .cstep input { flex: 1; min-width: 0; text-align: center; padding-left: 4px; padding-right: 4px; }
.pricecalc__calc .cstep input[type="number"] { -moz-appearance: textfield; appearance: textfield; }
.pricecalc__calc .cstep input[type="number"]::-webkit-outer-spin-button, .pricecalc__calc .cstep input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.cstep__btn { flex: 0 0 auto; width: 38px; border-radius: 13px; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.16); color: #fff; font-size: 1.35rem; font-weight: 700; line-height: 1; cursor: pointer; transition: background .15s; }
.cstep__btn:hover { background: rgba(255,255,255,.3); }
.cstep__btn:disabled { opacity: .38; cursor: not-allowed; }
.cstep__btn:disabled:hover { background: rgba(255,255,255,.16); }

.cdt { position: relative; }
.cdt__field { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: .85em 1em; border-radius: 14px; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.16); color: #fff; font: inherit; text-align: left; cursor: pointer; transition: border-color .2s, box-shadow .2s; }
.cdt__field:hover { border-color: rgba(255,255,255,.6); }
.cdt.is-open .cdt__field { border-color: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.2); }
.cdt__placeholder { color: rgba(255,255,255,.7); }
.cdt__ico { display: flex; color: rgba(255,255,255,.85); }
.cdt__pop { position: absolute; top: calc(100% + 6px); left: 0; z-index: 50; width: 300px; max-width: 92vw; padding: 14px; border-radius: 16px; background: var(--brand-2); border: 1px solid rgba(255,255,255,.22); box-shadow: 0 26px 52px -16px rgba(0,0,0,.65); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .15s, transform .15s, visibility .15s; }
.cdt.is-open .cdt__pop { opacity: 1; visibility: visible; transform: none; }
.cdt__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.cdt__title { font-weight: 700; color: #fff; }
.cdt__nav { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 10px; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.1); color: #fff; cursor: pointer; }
.cdt__nav:hover { background: rgba(255,255,255,.22); }
.cdt__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cdt__dow { text-align: center; font-size: .72rem; color: rgba(255,255,255,.55); padding: 4px 0; }
.cdt__day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border: 0; border-radius: 10px; background: transparent; color: rgba(255,255,255,.92); font-size: .9rem; cursor: pointer; }
.cdt__day:hover { background: rgba(255,255,255,.16); }
.cdt__day.is-sel { background: #fff; color: var(--brand); font-weight: 800; }
.cdt__day--empty { visibility: hidden; }
.cdt__day.is-disabled { opacity: .28; cursor: not-allowed; }
.cdt__day.is-disabled:hover { background: transparent; }
.cdt__time { display: flex; align-items: center; gap: 8px; margin-top: 14px; }
.cdt__tlab { font-size: .85rem; color: rgba(255,255,255,.8); }
.cdt__time .csel { flex: 0 0 auto; }
.cdt__time .csel__btn { width: auto; justify-content: flex-start; gap: 8px; padding: .5em .85em; }
.cdt__colon { color: #fff; font-weight: 700; }
.cdt__done { width: 100%; margin-top: 12px; padding: .7em; border-radius: 12px; border: 0; background: #fff; color: var(--brand); font-weight: 700; cursor: pointer; }
.cdt__done:hover { background: rgba(255,255,255,.9); }

/* Sekcja „Last minute" (prawa kolumna hero na stronie Rezerwacja) */
.lastminute { padding: 24px 26px; border-radius: var(--radius-lg); background: linear-gradient(160deg, #fff9ef 0%, #fdf0d9 100%); border: 1px solid #f6e2bd; box-shadow: 0 20px 45px -26px rgba(230, 160, 40, .4); display: flex; flex-direction: column; align-items: flex-start; gap: 13px; align-self: end; }
.lastminute__badge { display: inline-flex; align-items: center; gap: 6px; padding: .4em .9em; border-radius: 100px; background: #fdeccf; color: #d97b1f; font-weight: 800; font-size: .76rem; letter-spacing: .05em; text-transform: uppercase; }
.lastminute h3 { font-family: "Montserrat", "Manrope", sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--ink); line-height: 1.1; letter-spacing: -.02em; }
.lastminute p { color: var(--ink-soft); font-size: 1rem; line-height: 1.55; }
.lastminute p strong { color: var(--ink); }
.lastminute__cta { margin-top: 4px; background: linear-gradient(135deg, #f9b23c, #f2941c); color: #3a2400; box-shadow: 0 12px 26px -10px rgba(242, 148, 28, .55); }
.lastminute__cta:hover { background: linear-gradient(135deg, #f7a72a, #e8890f); color: #3a2400; }
.pricecalc__dates .field { min-width: 0; }
.pricecalc__calc .field input:focus, .pricecalc__calc .field select:focus {
  outline: none; border-color: #fff; box-shadow: 0 0 0 4px rgba(255, 255, 255, .25); }
.pricecalc__calc select option { color: var(--ink); background: #fff; }
.pricecalc__result { text-align: center; padding: 18px; margin: 18px 0; border-radius: 16px;
  background: rgba(255,255,255,.12); border: 1px dashed rgba(255,255,255,.45); }
.pricecalc__price { display: block; font-family: "Montserrat"; font-weight: 800; font-size: 2.2rem;
  color: #fff; line-height: 1.1; }
.pricecalc__meta { display: block; margin-top: 6px; font-size: .85rem; color: rgba(255,255,255,.8); }
.pricecalc__note { margin-top: 12px; font-size: .8rem; color: rgba(255,255,255,.65); text-align: left; }
.pricecalc__opts { display: grid; gap: 10px; margin-bottom: 16px; }
.pricecalc__opt { display: flex; align-items: center; gap: 10px; color: #fff; font-size: .92rem; cursor: pointer; }
.pricecalc__opt input[type="checkbox"] { appearance: none; -webkit-appearance: none; width: 22px; height: 22px; flex: 0 0 auto; cursor: pointer; position: relative;
  border: 2px solid rgba(255,255,255,.7); border-radius: 7px; background: rgba(255,255,255,.14); transition: background .15s, border-color .15s; }
.pricecalc__opt input[type="checkbox"]:checked { background: #fff; border-color: #fff; }
.pricecalc__opt input[type="checkbox"]:checked::after { content: ""; position: absolute; left: 6px; top: 2px; width: 6px; height: 11px; border: solid #4a63f5; border-width: 0 2.6px 2.6px 0; transform: rotate(45deg); }
.pricecalc__opt input[type="checkbox"]:focus-visible { outline: none; box-shadow: 0 0 0 4px rgba(255,255,255,.28); }
.pricecalc__opt span { flex: 1; }
.pricecalc__opt b { font-weight: 800; white-space: nowrap; }
/* informacje pod kalkulatorem (transfer, transfer nocny, opóźnienie) */
.price-notes { max-width: 960px; margin: 22px auto 0; display: grid; gap: 10px; }
.price-notes__item { font-size: .9rem; color: var(--ink-soft); line-height: 1.5; padding-left: 18px; position: relative; }
.price-notes__item::before { content: ""; position: absolute; left: 0; top: .5em; width: 7px; height: 7px; border-radius: 50%; background: var(--brand); }
.price-notes__item strong { color: var(--ink); }

.pricecalc__list { padding: 30px 28px; }
.pricecalc__head { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 8px; }
.pricecalc__head h3 { font-size: 1.35rem; }
.season-toggle { display: inline-flex; padding: 4px; border-radius: 100px; background: rgba(var(--brand-rgb), .1); }
.season-toggle__btn { display: inline-flex; align-items: center; gap: 5px; padding: .5em 1.1em; border-radius: 100px; font-weight: 700; font-size: .88rem;
  color: var(--ink-soft); transition: background .2s, color .2s; }
.season-toggle__ico { flex: 0 0 auto; }
.season-toggle__btn.active { background: var(--brand); color: #fff; box-shadow: 0 6px 14px -6px rgba(var(--brand-rgb), .8); }
.pricecalc__valid { font-size: .85rem; color: var(--ink-faint); margin-bottom: 12px; }
.pricetable3__row { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 10px; align-items: center;
  padding: 11px 2px; border-bottom: 1px solid var(--line); font-size: .98rem; }
.pricetable3__row:last-child { border-bottom: 0; }
.pricetable3__row--head span { font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-faint); }
.pricetable3__row > span:first-child { color: var(--ink-soft); }
.pricetable3__row > *:nth-child(2), .pricetable3__row > *:nth-child(3) { text-align: right; }
.pricetable3__row b { font-weight: 800; color: var(--brand); font-size: 1.02rem; }
.pricetable3__row b.gar { color: var(--ink); }
/* zimą (bez hali garażowej) tabela ma dwie kolumny */
.pricetable3--nogar .pricetable3__row { grid-template-columns: 1.25fr 1fr; }
.pricecalc__b2b { margin-top: 16px; font-size: .9rem; color: var(--ink-faint); }
.pricecalc__b2b a { color: var(--brand); font-weight: 700; text-decoration: underline; }
/* mobilny przełącznik kalkulator ⇄ cennik */
.pricecalc__switch { display: none; margin-top: 12px; }
.btn--outline-light { color: #fff; background: transparent; border: 1.5px solid rgba(255, 255, 255, .55); }
.btn--outline-light:hover { background: rgba(255, 255, 255, .12); }
@media (max-width: 960px) {
  .pricecalc__switch { display: inline-flex; }
  .pricecalc .pricecalc__list { display: none; }
  .pricecalc--list .pricecalc__list { display: block; }
  .pricecalc--list .pricecalc__calc { display: none; }
  /* animacja obrotu karty przy przełączaniu (jak flip wizytówki) */
  .pricecalc { perspective: 1400px; }
  .pricecalc__calc, .pricecalc__list { backface-visibility: hidden; }
  .pricecalc--anim.pricecalc--list .pricecalc__list { animation: cardFlip .6s var(--ease); }
  .pricecalc--anim:not(.pricecalc--list) .pricecalc__calc { animation: cardFlip .6s var(--ease); }
}
@keyframes cardFlip { from { transform: rotateY(-90deg); } to { transform: rotateY(0); } }

/* ------------------------------------------------------------- */
/* REZERWACJA - baner last minute + widget                       */
/* ------------------------------------------------------------- */
.reserve-banner { display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap;
  max-width: 920px; margin: 0 auto 26px; padding: 26px 30px;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), .14), var(--glass-bg-2));
  border-color: rgba(var(--accent-rgb), .35); }
.reserve-banner__text { flex: 1 1 380px; }
.reserve-banner .reserve-card__tag { color: #b45309; background: rgba(var(--accent-rgb), .16); }
.reserve-banner h3 { font-size: 1.35rem; margin: 12px 0 6px; }
.reserve-banner p { color: var(--ink-soft); font-size: .97rem; }
.reserve-banner .btn { flex-shrink: 0; }

/* ------------------------------------------------------------- */
/* REZERWACJA - dwie ścieżki + widget                            */
/* ------------------------------------------------------------- */
.reserve-card__tag { display: inline-flex; align-items: center; gap: 6px; padding: .35em .8em; border-radius: 100px;
  font-size: .76rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 14px; }

.booking { padding: 14px; border-radius: var(--radius-lg); max-width: 920px; margin: 0 auto; }
.booking__head { padding: 16px 18px 14px; }
.booking__head h3 { font-size: 1.35rem; margin: 12px 0 6px; }
.booking__head p { color: var(--ink-soft); font-size: .97rem; }
.reserve-card__tag--pre { color: var(--brand); background: rgba(var(--brand-rgb), .14); }
.booking iframe { width: 100%; min-height: 720px; border-radius: 18px; background: rgba(255,255,255,.5); }
/* przełącznik rodzaju miejsca: plac ⇄ hala garażowa */
.booking__tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.booking__tab { display: inline-flex; align-items: center; gap: 8px; padding: .68em 1.3em;
  border-radius: 100px; font-weight: 600; font-size: .95rem; color: var(--ink-soft);
  background: rgba(255,255,255,.65); border: 1px solid var(--line);
  transition: color .25s, background .25s, border-color .25s, box-shadow .25s; }
.booking__tab:hover { color: var(--brand); border-color: rgba(var(--brand-rgb),.4); }
.booking__tab.active { color: #fff; background: var(--grad); border-color: transparent;
  box-shadow: 0 10px 22px -10px rgba(var(--brand-rgb),.8); }
.booking__frame[hidden] { display: none; }

/* ------------------------------------------------------------- */
/* POLA FORMULARZY (kalkulator)                                  */
/* ------------------------------------------------------------- */
.field { display: grid; gap: 6px; }
.field label { font-size: .88rem; font-weight: 600; color: var(--ink-soft); }

/* ------------------------------------------------------------- */
/* LOKALIZACJA I DOJAZD                                          */
/* ------------------------------------------------------------- */
.location { display: grid; grid-template-columns: 1.35fr 1fr; gap: 22px; }
/* min-width:0 pozwala kolumnom/elementom kurczyć się poniżej treści (bez tego długi e-mail
   lub mapa rozpychają siatkę i powodują poziome przewijanie na mobile) */
.location, .location > *, .location__side, .route, .contact__row, .contact__multi { min-width: 0; }
.route .contact__row strong { overflow-wrap: anywhere; }
.location__map { padding: 8px; overflow: hidden; min-height: 380px; display: flex; flex-direction: column; gap: 8px; }
.location__map--full { min-height: 0; }
.location__map--full iframe { flex: 0 0 auto; aspect-ratio: 16 / 10; height: auto; min-height: 0; }
.location__map iframe { width: 100%; flex: 1; min-height: 340px; border: 0; border-radius: 18px; }
.location__map-btn { margin: 0 2px 2px; }
.location__side { display: grid; gap: 22px; align-content: start; }
.route { padding: 28px; }
.route h3 { font-size: 1.3rem; margin-bottom: 16px; }
.route__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.route__chip { padding: 16px; border-radius: 16px; background: rgba(var(--brand-rgb),.07); border: 1px solid rgba(var(--brand-rgb),.12); }
.route__chip b { display: block; font-family: "Montserrat"; font-weight: 800; font-size: 1.5rem; color: var(--brand); line-height: 1; }
.route__chip span { display: block; margin-top: 6px; font-size: .85rem; color: var(--ink-soft); }
.route__addr { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 20px; color: var(--ink-soft); font-size: .95rem; }
.route__addr svg { color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.route__actions { display: grid; gap: 10px; margin-top: 12px; }

.location__photos { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 22px; }
.location__photos--3 { grid-template-columns: repeat(3, 1fr); }
.btn__flag { flex: 0 0 auto; display: block; border-radius: 3px; overflow: hidden; box-shadow: 0 0 0 1px rgba(0,0,0,.14); }
.btn .btn__flag { box-shadow: none; width: 20px; height: 14px; }
.photo { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #dcefe6, #e8f3ea); box-shadow: var(--glass-shadow); }
.photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.photo figcaption { z-index: 2; position: absolute; left: 14px; bottom: 14px; padding: .4em .9em; border-radius: 100px;
  font-size: .82rem; font-weight: 600; color: var(--ink); background: var(--glass-bg-2); border: 1px solid var(--glass-brd);
  backdrop-filter: blur(10px); }

/* ------------------------------------------------------------- */
/* PROSE (SEO text)                                              */
/* ------------------------------------------------------------- */
.prose { max-width: 780px; margin-inline: auto; }
.prose h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 18px; }
.prose h3 { font-size: 1.3rem; margin: 30px 0 10px; color: var(--brand); }
.prose p { color: var(--ink-soft); margin-bottom: 14px; }
.prose a { color: var(--brand); font-weight: 600; }
.prose strong { color: var(--ink); }
/* wersja zwijana - domyślnie widać nagłówek, pierwszy akapit i początek drugiego.
   Wygaszenie przez mask-image: treść przechodzi w przezroczystość,
   więc idealnie zlewa się z każdym tłem (aurora, blob-y). */
.prose--collapsible { position: relative; max-height: 460px; overflow: hidden;
  transition: max-height .6s var(--ease);
  -webkit-mask-image: linear-gradient(180deg, #000 calc(100% - 150px), transparent);
  mask-image: linear-gradient(180deg, #000 calc(100% - 150px), transparent); }
.prose--collapsible.open { max-height: 3200px; -webkit-mask-image: none; mask-image: none; }
.prose__fade { display: none; }
.prose__more { max-width: 780px; text-align: center; margin-top: 14px; }
/* dyskretny przełącznik - podkreślony tekst ze strzałką */
.prose__toggle { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .98rem;
  color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.prose__toggle:hover { color: var(--brand-2); }
.prose__chev { transition: transform .35s var(--ease); }
.prose__toggle[aria-expanded="true"] .prose__chev { transform: rotate(180deg); }

/* ------------------------------------------------------------- */
/* SEO + FAQ - dwie kolumny w jednej sekcji                       */
/* ------------------------------------------------------------- */
.seofaq { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .seofaq { grid-template-columns: 1fr; gap: 44px; } }
.seofaq__title { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin: 4px 0 22px; }
/* prose wypełnia lewą kolumnę (bez centrowania i limitu szerokości) */
.seofaq .prose { max-width: none; margin-inline: 0; }
.seofaq .prose h2 { margin-top: 4px; }
.seofaq .prose--collapsible { max-height: 560px; }
.seofaq .prose--collapsible.open { max-height: 3600px; }
.seofaq .prose__more { max-width: none; text-align: left; }
/* wariant zwijany po SEKCJACH - dokładny punkt cięcia (przycisk od razu pod widoczną treścią) */
.prose--collapsible.prose--sectioned,
.seofaq .prose--collapsible.prose--sectioned { max-height: none; overflow: visible;
  -webkit-mask-image: none; mask-image: none; }
.prose--sectioned .prose__extra { display: none; }
.prose--sectioned.open .prose__extra { display: block; }
.prose--sectioned.open .prose__extra > *:first-child { margin-top: 0; }

/* ------------------------------------------------------------- */
/* FAQ                                                           */
/* ------------------------------------------------------------- */
.faq { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }
.faq__col { display: grid; gap: 14px; align-content: start; }
.faq--stack { grid-template-columns: 1fr; }
@media (max-width: 860px) { .faq { grid-template-columns: 1fr; } }
.faq__item { padding: 4px 24px; border-radius: 18px; }
.faq__item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 0; font-family: "Montserrat"; font-weight: 600; font-size: 1.1rem; cursor: pointer; list-style: none; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__ico { position: relative; flex-shrink: 0; width: 22px; height: 22px; }
.faq__ico::before, .faq__ico::after { content: ""; position: absolute; background: var(--brand); border-radius: 2px; transition: transform .3s var(--ease); }
.faq__ico::before { top: 10px; left: 3px; width: 16px; height: 2px; }
.faq__ico::after { top: 3px; left: 10px; width: 2px; height: 16px; }
.faq__item[open] .faq__ico::after { transform: rotate(90deg); opacity: 0; }
.faq__a { overflow: hidden; padding-bottom: 20px; }
.faq__a p { color: var(--ink-soft); }
.faq__item[open] { background: var(--glass-bg-2); }

/* ------------------------------------------------------------- */
/* CONTACT                                                       */
/* ------------------------------------------------------------- */
.contact__row { display: flex; align-items: center; gap: 14px; padding: 14px; border-radius: 16px; }
.contact__row strong { transition: color .2s; }
a.contact__row:hover strong { color: var(--brand); }
.contact__ico { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  color: var(--brand); background: rgba(var(--brand-rgb),.12); }
.contact__row small { display: block; font-size: .78rem; color: var(--ink-faint); }
.contact__row strong { font-size: 1.05rem; }
/* wiersz z jedną ikoną i wieloma pozycjami (telefony, firma+NIP) */
.contact__row--multi { align-items: flex-start; }
.contact__row--multi .contact__ico { margin-top: 4px; }
.contact__multi { display: grid; gap: 14px; }
.contact__multi a:hover strong { color: var(--brand); }
/* mini-flagi języków obsługi przy numerach */
.flag { display: inline-block; margin-left: 5px; border-radius: 2.5px; overflow: hidden; vertical-align: -2px;
  box-shadow: 0 0 0 1px rgba(16, 26, 51, .15); }
/* ------------------------------------------------------------- */
/* FOOTER                                                        */
/* ------------------------------------------------------------- */
.site-footer { margin-top: 40px; padding: 60px 0 30px; border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.5)); }
.footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 30px; }
.footer__ident { display: flex; align-items: center; gap: 14px; }
.footer__firm { display: grid; gap: 2px; font-size: .95rem; color: var(--ink-soft); }
.footer__firm b { color: var(--ink); font-size: 1rem; line-height: 1.25; }
.footer__contact { margin-top: 16px; display: grid; gap: 2px; font-size: .95rem; color: var(--ink-soft); }
.footer__brand p { margin-top: 14px; color: var(--ink-soft); font-size: .95rem; max-width: 36ch; }
.footer__col h4 { font-size: .95rem; margin-bottom: 14px; }
.footer__col a, .footer__col span { display: block; color: var(--ink-soft); font-size: .95rem; margin-bottom: 8px; transition: color .2s; }
.footer__col .footer__contact { display: flex; align-items: center; gap: 8px; }
.footer__col .footer__flags { display: inline-flex; align-items: center; gap: 3px; flex: 0 0 auto; margin: 0; }
.footer__flags .btn__flag { display: block; }
.footer__col a:hover { color: var(--brand); }
.footer__col .btn { margin-top: 8px; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: 40px;
  padding-top: 20px; border-top: 1px solid var(--line); font-size: .88rem; color: var(--ink-faint); }
.footer__legal a:hover { color: var(--brand); }
.footer__upblue img { display: inline-block; height: 15px; width: auto; vertical-align: -3px;
  opacity: .8; transition: opacity .2s; }
.footer__upblue:hover img { opacity: 1; }

/* ------------------------------------------------------------- */
/* FAB                                                           */
/* ------------------------------------------------------------- */
.fab { position: fixed; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); z-index: 90;
  display: none; place-items: center; width: 58px; height: 58px; border-radius: 50%; color: #fff;
  background: var(--grad); box-shadow: 0 14px 30px -8px rgba(var(--brand-rgb),.8); animation: pulse 2.4s infinite; }

/* ------------------------------------------------------------- */
/* REVEAL                                                        */
/* ------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal--delay { transition-delay: .12s; }
.cards .reveal.in, .process .reveal.in, .pricecalc .reveal.in, .reviews .reveal.in { transition-delay: calc(var(--i, 0) * .08s); }

/* ------------------------------------------------------------- */
/* HERO - MINI-MAPA BLISKOŚCI (prawa strona)                     */
/* ------------------------------------------------------------- */
.promap { padding: 16px; border-radius: var(--radius-lg); }
.promap__scene { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 400 / 360;
  background: linear-gradient(160deg, #eaf0ff, #f6f8ff); }
.promap__scene svg { width: 100%; height: 100%; }
.promap__badge { position: absolute; top: 14px; right: 14px; padding: .45em .9em; border-radius: 100px;
  font-size: .82rem; font-weight: 700; color: var(--brand); background: var(--glass-bg-2);
  border: 1px solid var(--glass-brd); backdrop-filter: blur(10px); box-shadow: var(--glass-shadow);
  font-variant-numeric: tabular-nums; }
.promap__badge b { font-weight: 800; }
.promap__cap { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 16px 10px 6px; }
.promap__cap > span { display: flex; flex-direction: column; }
.promap__cap b { font-family: "Montserrat"; font-weight: 700; font-size: .98rem; }
.promap__cap small { font-size: .78rem; color: var(--ink-faint); }
.promap__cap .promap__arrow { display: flex; flex-direction: column; line-height: .8; font-size: 1.45rem;
  color: var(--brand); font-weight: 800; flex-shrink: 0; }
.promap__cap .promap__arrow i { font-style: normal; }
.promap__cap > span:last-child { text-align: left; }

/* ------------------------------------------------------------- */
/* PROCES - stepper / timeline                                   */
/* ------------------------------------------------------------- */
.process { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  text-align: left; align-items: start; }
@media (min-width: 861px) {
  /* krok 1 przy lewej, krok 2 na środku, krok 3 dosunięty do prawej krawędzi kontenera */
  .process__step:nth-child(2) { justify-self: center; }
  /* krok 3: blok dosunięty do prawej, ale ikony zaczynają się tam, gdzie tekst */
  .process__step:nth-child(3) { justify-self: end; align-items: flex-start; }
  .process__step:nth-child(3) .process__content { text-align: left; }
  /* linia od chipa z datą do węzła 3 (250px bloku − 105px do środka węzła) */
  .process::before { content: ""; position: absolute; top: 31px; left: 0; right: 145px; height: 3px; z-index: 0;
    background: repeating-linear-gradient(90deg, rgba(var(--brand-rgb), .55) 0 6px, transparent 6px 14px); }
}
.process__step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; }
/* wiersz na osi: chip/samolot + węzeł, wyrównany do lewej krawędzi kolumny */
.process__top { display: flex; align-items: center; gap: 12px; height: 62px; margin-bottom: 20px; }
.process__node { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 20px;
  font-family: "Montserrat"; font-weight: 800; font-size: 1.55rem; color: #fff; background: var(--brand);
  border: 4px solid var(--bg-2); box-shadow: 0 14px 26px -10px rgba(var(--brand-rgb), .85); flex-shrink: 0; }
.process__step--start .process__node { box-shadow: 0 0 0 4px rgba(var(--brand-rgb), .16), 0 14px 26px -10px rgba(var(--brand-rgb), .85); }
.process__content { max-width: 250px; }
.process__when { display: inline-flex; align-items: center; gap: 8px; padding: .5em .95em; text-align: left;
  border-radius: 16px; font-size: .78rem; font-weight: 700; line-height: 1.35; color: var(--ok);
  background: #ddf3e8; font-variant-numeric: tabular-nums;
  box-shadow: 0 6px 16px -8px rgba(var(--ok-rgb), .6), inset 0 1px 0 rgba(255,255,255,.6); }
.process__when::before { content: ""; flex-shrink: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--ok); }
.process__content h3 { font-size: 1.18rem; margin-bottom: 6px; }
.process__content p { color: var(--ink-soft); font-size: .95rem; }
.process__content a { color: var(--brand); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.process__content a:hover { color: var(--brand-2); }
/* boxy z samolotami (wylot przy kroku 2, przylot przy kroku 3) */
.process__plane { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 20px; color: var(--brand);
  background: rgba(255, 255, 255, .94); border: 4px solid var(--bg-2);
  box-shadow: 0 14px 26px -12px rgba(30, 44, 90, .5); }
@media (max-width: 860px) {
  /* proces jako czytelna, pionowa oś czasu: numerowany węzeł na linii, treść obok */
  .process { display: block; }
  .process__step { display: grid; grid-template-columns: 50px 1fr; column-gap: 18px;
    position: relative; align-items: start; padding: 0 0 30px; margin: 0; }
  .process__step:last-child { padding-bottom: 4px; }
  .process__top { display: contents; }
  .process__node { grid-column: 1; grid-row: 1; align-self: start; width: 50px; height: 50px;
    font-size: 1.3rem; border-radius: 15px; position: relative; z-index: 2; }
  .process__plane { display: none; }
  .process__content { grid-column: 2; grid-row: 1 / span 2; align-self: start; max-width: none; padding-top: 4px; }
  .process__content h3 { font-size: 1.1rem; margin-bottom: 4px; }
  /* pionowa linia łącząca kolejne węzły */
  .process__step:not(:last-child)::before { content: ""; position: absolute; left: 23.5px; top: 54px; bottom: 0;
    width: 3px; border-radius: 3px; background: rgba(var(--brand-rgb), .20); }
  /* badge „Dziś …" nad treścią kroku 1 */
  .process__step--start .process__when { grid-column: 2; grid-row: 1; align-self: start; justify-self: start; margin: 2px 0 10px; }
  .process__step--start .process__content { grid-row: 2; padding-top: 0; }
}

/* ------------------------------------------------------------- */
/* OPINIE                                                        */
/* ------------------------------------------------------------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.review__head { display: flex; align-items: flex-start; gap: 12px; }
.review__avatar { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  font-family: "Montserrat"; font-weight: 800; font-size: 1.15rem; }
.review__avatar--a { background: #ffe4d1; color: #c2530a; }
.review__avatar--b { background: #e5defc; color: #6d4fd1; }
.review__avatar--c { background: #d5f3e3; color: #0f8a56; }
.review__meta { flex: 1; min-width: 0; }
.review__meta b { display: block; font-size: .98rem; line-height: 1.25; }
.review__meta span { display: block; font-size: .82rem; color: var(--ink-faint); line-height: 1.2; margin-top: 1px; }
.review__glogo { flex-shrink: 0; margin-top: 2px; }
.review__stars { color: var(--amber); letter-spacing: 2px; font-weight: 700; font-size: 1.1rem; }
.review__text { color: var(--ink-soft); font-size: .95rem; max-height: 116px; overflow: hidden; }
.review__inner { display: block; }
/* dłuższe opinie przewijają się automatycznie (klasa nadawana w JS) */
.review__text--scroll .review__inner { animation: reviewScroll 11s ease-in-out infinite; }
@keyframes reviewScroll {
  0%, 18% { transform: translateY(0); }
  48%, 62% { transform: translateY(var(--scroll-dist, 0px)); }
  92%, 100% { transform: translateY(0); }
}
.reviews__foot { text-align: center; margin-top: 24px; font-size: .95rem; color: var(--ink-soft); }
.reviews__foot b { color: var(--ink); }
.reviews__foot a { color: var(--brand); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; margin-left: 6px; }
.reviews__foot a:hover { color: var(--brand-2); }

/* ------------------------------------------------------------- */
/* RESPONSIVE                                                    */
/* ------------------------------------------------------------- */
@media (max-width: 960px) {
  /* opinie jako karuzela już od 960px (3 opinie w siatce 2-kol robiłyby układ „2 + 1") */
  .reviews { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px;
    margin: 0 -20px; padding: 6px 20px 26px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .reviews::-webkit-scrollbar { display: none; }
  .reviews > .review { flex: 0 0 84%; scroll-snap-align: center; }
  .reviews .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .reviews + .cdots { display: flex; }
  .partners__grid { grid-template-columns: 1fr; gap: 30px; }
  .hero__grid { grid-template-columns: 1fr; gap: 34px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .location, .pricecalc { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  /* telefon w pasku ukryty - jego funkcję pełni pływający przycisk (FAB) */
  .nav__cta .btn--ghost { display: none; }
  .location__photos { grid-template-columns: 1fr; }
  .fab { display: grid; }
  .hero { padding-top: 24px; }

  /* przyciski hero obok siebie; krótkie etykiety (btn__ext ukryte) → większa czcionka */
  .hero__actions, .subhero__cta { display: flex; flex-wrap: nowrap; gap: 10px; }
  .hero__actions .btn, .subhero__cta .btn { flex: 1 1 0; min-width: 0; padding: .92em .5em; font-size: 1.02rem;
    justify-content: center; }
  .hero__actions .btn svg, .subhero__cta .btn svg:not(.btn__flag) { display: none; }
  .btn__ext { display: none; }

  /* nagłówki sekcji i pasek USP do lewej */
  .section__head { text-align: left; }

  /* hero: opinie w jednej linii (skrócona etykieta linku) */
  .hero__trust { flex-wrap: nowrap; }
  .hero__trust-long { display: none; }
  .spots__hint { display: none; }

  /* KARUZELA KART (scroll-snap, bleed do krawędzi ekranu).
     padding-bottom większy, by cień kart nie stykał się z kropkami paginacji */
  .cards { display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 14px; margin: 0 -20px; padding: 6px 20px 26px;
    -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .cards::-webkit-scrollbar { display: none; }
  .cards > .card { flex: 0 0 84%; scroll-snap-align: center; }
  /* karty karuzeli dostępne od razu, bez animacji wejścia */
  .cards .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .cards + .cdots { display: flex; }
  /* karta lojalnościowa pod kropkami - mały odstęp (kropki już dają światło) */
  .card--wide { margin-top: 6px; }

  /* stopka: Sekcje | Kontakt obok siebie, dane firmy na całą szerokość */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px;
    padding-right: 84px; /* miejsce na pływający przycisk telefonu */ }

  /* wordmark w wąskim pillu nawigacji */
  .brand__mark { width: 36px; height: 36px; border-radius: 11px; }
  .brand__name { font-size: 1.02rem; }

  /* partnerzy: mniejsze kafle, baner Ryanair w kolumnie, mniejsze logotypy i czcionki */
  .ryanair { flex-direction: column; align-items: flex-start; gap: 12px; padding: 22px 20px; }
  .ryanair__logo img { height: 28px; }
  .ryanair__text h3 { font-size: 1.08rem; }
  .ryanair__text p { font-size: .9rem; }
  .partners__airport { flex-direction: column; align-items: flex-start; gap: 10px; padding: 18px 20px; }
  .partners__airport img { height: 26px; }
  .partners__airport p { font-size: .9rem; }
  .partners__chip { min-height: 46px; padding: 9px 14px; border-radius: 14px; }
  .partners__chip img { max-height: 24px; }
}
/* na telefonach zostaje sam znak logo (napis „Odlotowy Parking" chowamy, by nie łamał się pod przycisk) */
@media (max-width: 600px) { .brand__name { display: none; } }

/* ------------------------------------------------------------- */
/* KROPKI PAGINACJI KARUZEL (mobile)                             */
/* ------------------------------------------------------------- */
.cdots { display: none; justify-content: center; gap: 6px; margin: 2px 0 10px; }
.cdots span { width: 7px; height: 7px; border-radius: 100px; background: rgba(var(--brand-rgb), .25);
  transition: width .25s var(--ease), background .25s; }
.cdots span.on { width: 20px; background: var(--brand); }

/* ------------------------------------------------------------- */
/* BANER CMP (Cookie-Script) - klasy używane przez cookie-banner.js */
/* ------------------------------------------------------------- */
.flex-row-center-between { display: flex; align-items: center; justify-content: space-between; }
.flex-row-center-center { display: flex; align-items: center; justify-content: center; }
.flex-row-center-end { display: flex; align-items: center; justify-content: flex-end; }

/* ------------------------------------------------------------- */
/* A11Y                                                          */
/* ------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 6px; }

/* ============================================================= */
/* WIELOSTRONOWA - dropdown nav, subhero, breadcrumbs, CTA band  */
/* ============================================================= */
.nav__drop { position: relative; }
.nav__drop-btn { display: inline-flex; align-items: center; gap: 4px; padding: .5em .6em; border-radius: 100px;
  font-weight: 500; font-size: .93rem; color: var(--ink-soft); background: none; white-space: nowrap; transition: color .2s, background .2s; }
.nav__drop-btn:hover, .nav__drop--active .nav__drop-btn { color: var(--brand); background: rgba(var(--brand-rgb),.08); }
.nav__drop-chev { transition: transform .2s; }
.nav__drop:hover .nav__drop-chev { transform: rotate(180deg); }
.nav__drop-menu { position: absolute; top: calc(100% + 10px); left: 0; min-width: 238px; display: grid; gap: 2px;
  padding: 8px; border-radius: 16px; background: #fff; border: 1px solid var(--line);
  box-shadow: 0 20px 46px -18px rgba(30,44,90,.4); opacity: 0; visibility: hidden;
  transform: translateY(6px); transition: opacity .2s, transform .2s, visibility .2s; z-index: 60; }
.nav__drop:hover .nav__drop-menu, .nav__drop:focus-within .nav__drop-menu { opacity: 1; visibility: visible; transform: none; }
.nav__drop-menu a { padding: .6em .8em; border-radius: 10px; font-size: .92rem; font-weight: 500; color: var(--ink-soft); }
.nav__drop-menu a:hover, .nav__drop-menu a[aria-current="page"] { color: var(--brand); background: rgba(var(--brand-rgb),.08); }
.nav__links a[aria-current="page"] { color: var(--brand); background: rgba(var(--brand-rgb),.08); }

/* Nawigacja mobilna: hamburger poniżej 1150px (pełne menu: logo + 6 linków + telefon + CTA
   nie mieści się w węższym pasku i nachodziłoby na logo).
   „Parkingi" pokazuje podstrony jako statyczną listę inline - bez zagnieżdżonego dropdownu. */
@media (max-width: 1150px) {
  .nav { position: relative; gap: 12px; }
  .nav__links { display: none; }
  .nav__cta { margin-left: auto; }
  .nav__burger { display: flex; margin-left: 2px; }
  .nav__links.open { display: flex; position: absolute; top: calc(100% + 8px); left: 0; right: 0;
    flex-direction: column; gap: 2px; padding: 12px; border-radius: 22px; background: #fff; border: 1px solid var(--line);
    box-shadow: 0 24px 50px -18px rgba(30,44,90,.4); z-index: 200; }
  .nav__links.open > a { padding: .8em 1em; border-radius: 12px; }
  .nav__drop { width: 100%; }
  /* „Parkingi" jako akordeon: domyślnie zwinięte, strzałka po prawej, rozwija się po kliknięciu */
  .nav__drop-btn { width: 100%; justify-content: space-between; padding: .8em 1em; font-weight: 700;
    color: var(--ink); cursor: pointer; }
  .nav__drop-chev { display: inline-flex; margin-left: auto; transition: transform .25s; }
  .nav__drop.open .nav__drop-chev { transform: rotate(180deg); }
  .nav__drop-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: none; background: none; backdrop-filter: none; padding: 0 0 0 12px; min-width: 0;
    max-height: 0; overflow: hidden; transition: max-height .28s ease; }
  .nav__drop.open .nav__drop-menu { max-height: 300px; padding-bottom: 4px; }
  .nav__drop-menu a { padding: .7em 1em; }
}

.subhero { padding: clamp(22px,3.8vw,46px) 0 clamp(20px,3vw,36px); }
.crumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .82rem; color: var(--ink-faint); margin-bottom: 22px; }
.crumbs a { color: var(--ink-faint); } .crumbs a:hover { color: var(--brand); }
.crumbs__sep { opacity: .5; }
/* większe odstępy w pionie w hero: breadcrumb → badge wolnych miejsc → h1 */
.subhero__spots { margin: 0 0 22px; }
.subhero h1 { font-size: clamp(2rem,4.6vw,3.2rem); font-weight: 800; letter-spacing: -.02em; margin: 8px 0 14px; max-width: 20ch; }
.subhero__lead { color: var(--ink-soft); font-size: 1.1rem; max-width: 62ch; margin-bottom: 22px; }
.subhero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.subhero__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.subhero__chips li { font-size: .85rem; font-weight: 600; color: var(--ink-soft); padding: .5em .95em; border-radius: 100px;
  background: var(--glass-bg-2); border: 1px solid var(--glass-brd); }

.ctaband { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding: 30px 34px; border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(var(--brand-rgb),.12), rgba(var(--accent-rgb),.12)), var(--glass-bg); }
.ctaband h2 { font-size: 1.5rem; margin-bottom: 6px; }
.ctaband p { color: var(--ink-soft); max-width: 52ch; }
.ctaband__btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* stopka 4-kolumnowa (marka + Parking + Serwis + Kontakt) */
.footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }

@media (max-width: 960px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) {
  .ctaband { padding: 24px; }
  .ctaband__btns .btn { flex: 1 1 0; }
}

/* ============================================================= */
/* PODSTRONY v2 - hero z obrazem + sekcja dwukolumnowa (split)   */
/* ============================================================= */
.subhero__grid { display: grid; gap: 40px; align-items: center; }
.subhero--media .subhero__grid { grid-template-columns: 1.05fr .95fr; }
/* zdjęcie hero w szklanym boxie z podpisem (jak mini-mapa) */
.subhero__figure { padding: 14px; border-radius: var(--radius-lg); background: var(--glass-bg);
  border: 1px solid var(--glass-brd); box-shadow: var(--glass-shadow);
  backdrop-filter: blur(var(--blur)) saturate(180%); -webkit-backdrop-filter: blur(var(--blur)) saturate(180%); }
.subhero__figure img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; display: block; border-radius: 18px; }
.subhero__map { width: 100%; aspect-ratio: 1 / 1; display: block; border: 0; border-radius: 18px; }
/* placeholder na zdjęcie, które klient dostarczy później (ta sama „ramka" co zdjęcie) */
.subhero__ph { width: 100%; aspect-ratio: 1 / 1; border-radius: 18px; display: grid; place-content: center; justify-items: center; gap: 10px;
  color: var(--ink-faint); background: linear-gradient(135deg, rgba(var(--brand-rgb),.07), rgba(var(--brand-rgb),.02));
  border: 1.5px dashed rgba(var(--brand-rgb),.30); }
.subhero__ph span { font-family: "Montserrat"; font-weight: 600; font-size: .95rem; }
.subhero__figcap { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 8px; padding: 14px 8px 4px; }
.subhero__figcap b { font-family: "Montserrat"; font-weight: 700; font-size: 1rem; color: var(--ink); }
.subhero__figcap small { font-size: .82rem; color: var(--ink-faint); }
/* pasek zaufania pod hero podstrony */
.subhero .trust-bar { margin-top: 30px; }
@media (max-width: 860px) {
  .subhero--media .subhero__grid { grid-template-columns: 1fr; }
  .subhero__figure img, .subhero__ph, .subhero__map { aspect-ratio: 4 / 3; }
}

/* sekcja dwukolumnowa: tekst SEO (główna) + karta boczna (cennik / CTA) */
.split { display: grid; grid-template-columns: 1.5fr 1fr; gap: 44px; align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 30px; } }
.split__main .prose { max-width: none; margin-inline: 0; }
.split__aside { position: sticky; top: 96px; }
@media (max-width: 900px) { .split__aside { position: static; } }

.pricecard, .ctacard { padding: 26px 24px; border-radius: var(--radius); }
.pricecard h3, .ctacard h3 { font-size: 1.2rem; margin-bottom: 14px; }
.pricecard .pricetable3 { }
.pricecard__note { color: var(--ink-faint); font-size: .82rem; margin-top: 10px; }
.pricecard .btn { margin-top: 16px; }
.ctacard { background: linear-gradient(150deg, #4a63f5 0%, #5f7bff 100%); border-color: rgba(255,255,255,.3);
  box-shadow: 0 24px 55px -22px rgba(var(--brand-rgb), .75); }
.ctacard h3 { color: #fff; }
.ctacard p { color: rgba(255,255,255,.9); margin-bottom: 18px; font-size: .97rem; }
.ctacard .btn { margin-top: 10px; }
