@scope (.marketing-site) {
/* ============================================================
   oweme. — landing styles
   Paleta: lotniczy błękit + biel · font: Plus Jakarta Sans
   Sterowane zmiennymi (akcent + wariant hero pod Tweaks)
   ============================================================ */

:scope {
  /* tła i tekst — chłodne, lekko niebieskawe biele/czernie */
  --ink:        #0b1f33;
  --ink-2:      #4c6177;
  --ink-3:      #8191a3;
  --white:      #ffffff;
  --cloud:      #f2f7fd;
  --cloud-2:    #eaf2fb;
  --line:       #dce7f1;
  --line-2:     #cad9e8;

  /* akcent — sky (nadpisywalny w Tweaks) */
  --accent:     #2867e8;
  --accent-deep:#1d54c8;
  --accent-tint:#eaf1ff;
  --accent-soft:#c7d9ff;
  --hero-accent:#6590eb;

  /* wsparcie: zielony „wygrana” (oszczędnie) */
  --pos:        #16a06a;
  --pos-tint:   #e7f7ef;

  /* gwiazdki / oceny */
  --star:       #f5a623;

  --radius:     18px;
  --radius-sm:  12px;
  --radius-lg:  26px;
  --shadow:     0 1px 2px rgba(12,28,44,.05), 0 12px 32px -12px rgba(12,28,44,.16);
  --shadow-sm:  0 1px 2px rgba(12,28,44,.06), 0 6px 16px -10px rgba(12,28,44,.18);
  --shadow-lg:  0 2px 4px rgba(12,28,44,.05), 0 40px 70px -28px rgba(11,79,140,.30);

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --font: var(--font-plus-jakarta), system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

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

:scope {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

h1, h2, h3, h4 { line-height: 1.08; letter-spacing: -0.03em; margin: 0; font-weight: 800; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
strong { font-weight: 700; }

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

/* sekcyjny rytm */
section { position: relative; }
.section-pad { padding-block: clamp(64px, 9vw, 124px); }
.bg-cloud { background: var(--cloud); }
.bg-ink   { background: var(--ink); color: var(--white); }

/* eyebrow / nadtytuł */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-deep);
  background: var(--accent-tint);
  padding: 7px 13px; border-radius: 100px;
}
.bg-ink .eyebrow { color: #bfe2fb; background: rgba(255,255,255,.08); }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.05rem); margin-top: 18px; }
.section-head p { margin-top: 18px; color: var(--ink-2); font-size: clamp(1rem, 1.4vw, 1.18rem); }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit; font-weight: 700; font-size: 16px; letter-spacing: -0.01em;
  padding: 15px 26px; border-radius: 100px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .16s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap; line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 8px 22px -8px color-mix(in oklab, var(--accent) 70%, transparent);
}
.btn-primary:hover { background: var(--accent-deep); box-shadow: 0 12px 28px -8px color-mix(in oklab, var(--accent) 65%, transparent); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-deep); background: var(--accent-tint); }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-lg { padding: 18px 32px; font-size: 17px; }
.btn-block { width: 100%; }

/* ---------------------------------------------------------------
   HEADER / NAV
   --------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in oklab, #fff 82%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(12,28,44,.5); }
.nav { display: flex; align-items: center; gap: 24px; height: 72px; }
.brand { font-size: 26px; font-weight: 800; letter-spacing: -0.05em; color: var(--ink); }
.brand .dot { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a {
  font-size: 15px; font-weight: 600; color: var(--ink-2); padding: 9px 13px; border-radius: 10px;
  white-space: nowrap; transition: color .15s ease, background .15s ease;
}
.nav-links a:hover { color: var(--ink); background: var(--cloud); }
.nav-links .nav-link-active { color: var(--accent-deep); background: var(--accent-tint); }

/* dropdown „Twoje prawa” */
.nav-drop { position: relative; }
.nav-drop > button {
  font-family: inherit; font-size: 15px; font-weight: 600; color: var(--ink-2);
  background: none; border: 0; cursor: pointer; padding: 9px 13px; border-radius: 10px;
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
}
.nav-drop > button:hover { color: var(--ink); background: var(--cloud); }
.nav-drop > button.nav-link-active { color: var(--accent-deep); background: var(--accent-tint); }
.nav-drop > button svg { transition: transform .2s ease; }
.nav-drop[data-open="true"] > button svg { transform: rotate(180deg); }
.drop-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 320px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .18s ease; z-index: 70;
}
.nav-drop[data-open="true"] .drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.drop-menu a { display: block; padding: 10px 12px; border-radius: 10px; font-size: 14.5px; font-weight: 600; color: var(--ink-2); }
.drop-menu a:hover { background: var(--accent-tint); color: var(--accent-deep); }

.nav-spacer { margin-left: 0; }
.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle { display: none; margin-left: auto; background: none; border: 0; cursor: pointer; padding: 8px; color: var(--ink); }
.mobile-menu { display: none; }

.site-header-content {
  background: color-mix(in oklab, #fff 94%, transparent);
  border-bottom-color: color-mix(in oklab, var(--line) 82%, transparent);
}
.site-header-content .nav { height: 76px; }
.site-header-content .nav-cta .btn {
  min-height: 46px; border-radius: 10px; padding: 14px 20px; font-size: 14px;
}
.site-header-content .nav-cta .btn-primary {
  box-shadow: 0 10px 24px -12px color-mix(in oklab, var(--accent) 70%, transparent);
}
.site-header-content .nav-cta .btn-ghost { background: #fff; }
.site-header-content .nav-toggle {
  width: 44px; height: 44px; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 10px; background: #fff;
}
.site-header-content .mobile-menu {
  background: color-mix(in oklab, #fff 97%, transparent);
  border-bottom: 1px solid var(--line);
}
.site-header-content .mobile-menu .btn { min-height: 46px; border-radius: 10px; }
.site-header-content.scrolled {
  background: color-mix(in oklab, #fff 97%, transparent);
  box-shadow: 0 12px 30px -24px rgba(12,28,44,.72);
}

/* ---------------------------------------------------------------
   HERO  (warianty: data-hero="A" | "B" na <:scope>)
   --------------------------------------------------------------- */
.hero { position: relative; overflow: clip; isolation: isolate; }
.hero-sky {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(100deg, rgba(7,20,34,.93) 0%, rgba(7,20,34,.74) 36%, rgba(7,20,34,.46) 68%, rgba(7,20,34,.32) 100%),
    url("/marketing/hero-airport.jpg") center 30% / cover no-repeat;
}
.hero-clouds { display: none; }

.hero-inner { position: relative; z-index: 2; padding-block: clamp(20px, 3vw, 40px); display: flex; align-items: center; }

/* — wariant A: split (tekst + karta checkera) — */
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 64px); align-items: center; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 700;
  color: #fff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.24);
  padding: 7px 8px 7px 14px; border-radius: 100px; backdrop-filter: blur(8px);
}
.hero-badge .pill { background: var(--pos); color: #fff; font-weight: 800; padding: 4px 10px; border-radius: 100px; font-size: 12.5px; }
.hero h1 { font-size: clamp(2.3rem, 4.6vw, 3.7rem); margin-top: 0; color: #fff; }
.hero h1 .accent { color: var(--hero-accent) !important; }
.hero-sub { margin-top: 16px; font-size: clamp(1.02rem, 1.4vw, 1.2rem); color: rgba(255,255,255,.84); max-width: 34ch; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 22px; }
.hero-trust .t { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 600; color: rgba(255,255,255,.9); }
.hero-trust .t svg { color: #5fd39a; flex: none; }
.hero-stats { display: flex; gap: 30px; margin-top: 38px; flex-wrap: wrap; }
.hero-stats .n { font-size: clamp(1.9rem, 3vw, 2.5rem); font-weight: 800; letter-spacing: -0.04em; color: #fff; }
.hero-stats .n span { color: #7cc5fb; }
.hero-stats .l { font-size: 13.5px; color: rgba(255,255,255,.62); font-weight: 600; margin-top: 2px; }

/* wyśrodkowana lewa kolumna hero */
.hero-copy { text-align: center; }
.hero-copy .hero-sub { margin-inline: auto; }
.hero-copy .hero-trust { justify-content: center; }
.hero-copy .hero-stats { justify-content: center; }

/* — wariant B: centered — */
:scope[data-hero="B"] .hero-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
:scope[data-hero="B"] .hero-sub { max-width: 52ch; }
:scope[data-hero="B"] .hero-trust { justify-content: center; }
:scope[data-hero="B"] .hero-stats { justify-content: center; }
:scope[data-hero="B"] .hero-checker-wrap { width: 100%; max-width: 860px; margin-top: 24px; }
:scope[data-hero="B"] .checker-card { text-align: left; }
/* układ checkera w B: poziomy pasek */
:scope[data-hero="B"] .checker-fields { grid-template-columns: 1fr 1fr auto; align-items: end; }
:scope[data-hero="B"] .checker-fields .field-cta { grid-column: auto; }
:scope[data-hero="A"] .checker-fields .field-cta { grid-column: 1 / -1; }

/* ---------------------------------------------------------------
   CHECKER CARD
   --------------------------------------------------------------- */
.checker-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: clamp(22px, 3vw, 32px);
}
.checker-card h3 { font-size: 1.32rem; }
.checker-card .ck-lead { margin-top: 8px; color: var(--ink-2); font-size: 15px; }
.checker-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; }
.field { position: relative; }
.field label { display: block; font-size: 12.5px; font-weight: 700; color: var(--ink-3); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 7px; }
.field .ipt-wrap { position: relative; }
.field .ipt-ico { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--accent); pointer-events: none; }
.field input {
  width: 100%; font-family: inherit; font-size: 15.5px; font-weight: 600; color: var(--ink);
  padding: 14px 14px 14px 42px; border: 1.5px solid var(--line-2); border-radius: 13px; background: var(--cloud);
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.field input::placeholder { color: var(--ink-3); font-weight: 500; }
.field input:focus { outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 4px var(--accent-tint); }

/* autocomplete */
.ac-list {
  position: absolute; z-index: 40; top: calc(100% + 6px); left: 0; right: 0; max-height: 260px; overflow-y: auto;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg); padding: 6px;
  display: none;
}
.ac-list.show { display: block; }
.ac-item { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 10px; cursor: pointer; }
.ac-item:hover, .ac-item.active { background: var(--accent-tint); }
.ac-code { font-size: 12px; font-weight: 800; color: var(--accent-deep); background: var(--accent-tint); border: 1px solid var(--accent-soft); border-radius: 7px; padding: 4px 7px; min-width: 44px; text-align: center; }
.ac-item.active .ac-code, .ac-item:hover .ac-code { background: #fff; }
.ac-name { font-size: 14.5px; font-weight: 700; }
.ac-country { font-size: 12.5px; color: var(--ink-3); font-weight: 600; }

.checker-divider { display: flex; align-items: center; gap: 14px; margin: 20px 0; color: var(--ink-3); font-size: 13px; font-weight: 600; }
.checker-divider::before, .checker-divider::after { content: ""; height: 1px; background: var(--line); flex: 1; }
.boarding-drop {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1.5px dashed var(--line-2);
  border-radius: 13px; color: var(--ink-2); font-size: 14px; font-weight: 600; cursor: pointer; transition: all .15s;
}
.boarding-drop:hover { border-color: var(--accent); background: var(--accent-tint); color: var(--accent-deep); }

.ck-points { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 10px; }
.ck-points li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--ink-2); }
.ck-points svg { color: var(--pos); flex: none; }

/* wynik checkera */
.ck-result {
  margin-top: 18px; border-radius: 16px; border: 1px solid var(--accent-soft);
  background: linear-gradient(180deg, var(--accent-tint), #fff);
  padding: 18px 20px; display: none;
}
.ck-result.show { display: block; animation: ckpop .35s ease; }
@keyframes ckpop { from { opacity: 0; transform: translateY(8px) scale(.98); } to { opacity: 1; transform: none; } }
.ck-result .ck-route { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 700; color: var(--ink-2); }
.ck-result .ck-amount { font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -0.04em; margin-top: 8px; }
.ck-result .ck-amount span { color: var(--accent); }
.ck-result .ck-meta { font-size: 13.5px; color: var(--ink-2); margin-top: 4px; }

/* ---------------------------------------------------------------
   LOGOS / TRUST STRIP
   --------------------------------------------------------------- */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust-strip .inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-block: 22px; flex-wrap: wrap; }
.trust-strip .label { font-size: 13px; font-weight: 700; color: var(--ink-3); text-transform: uppercase; letter-spacing: .1em; }
.airline-row { display: flex; align-items: center; gap: clamp(20px, 4vw, 44px); flex-wrap: wrap; }
.airline-row span { font-size: clamp(15px, 2vw, 19px); font-weight: 800; color: var(--ink-3); letter-spacing: -0.02em; opacity: .8; }

/* ---------------------------------------------------------------
   STEPS — Jak działa
   --------------------------------------------------------------- */
.steps-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(34px, 5vw, 64px); align-items: start; }
.steps-list { display: grid; gap: 18px; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 20px; padding: 24px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: all .2s;
}
.step:hover { border-color: var(--accent-soft); box-shadow: var(--shadow); transform: translateY(-2px); }
.step-num {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  font-size: 18px; font-weight: 800; color: var(--accent-deep); background: var(--accent-tint); border: 1px solid var(--accent-soft);
}
.step h3 { font-size: 1.2rem; }
.step p { margin-top: 8px; color: var(--ink-2); font-size: 15px; }
.step-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tag { font-size: 12.5px; font-weight: 700; color: var(--ink-2); background: var(--cloud-2); padding: 5px 11px; border-radius: 100px; }

/* prawa kolumna — wizualizacja roszczenia */
.steps-aside { position: sticky; top: 96px; display: grid; gap: 16px; }
.viz-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px; }
.viz-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.viz-head .ttl { font-size: 13px; font-weight: 700; color: var(--ink-3); text-transform: uppercase; letter-spacing: .08em; }
.route-line { display: flex; align-items: center; gap: 14px; margin-top: 16px; }
.route-port { text-align: center; }
.route-port .code { font-size: 1.7rem; font-weight: 800; letter-spacing: -0.04em; }
.route-port .city { font-size: 12.5px; color: var(--ink-3); font-weight: 600; }
.route-mid { flex: 1; position: relative; height: 2px; background: var(--line-2); }
.route-mid::after { content: "✈"; position: absolute; right: -4px; top: 50%; transform: translateY(-50%); color: var(--accent); font-size: 16px; background: #fff; padding: 0 4px; }
.route-mid::before { content: ""; position: absolute; left: 0; top: 50%; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); transform: translate(-2px,-50%); }
.viz-meta { margin-top: 16px; font-size: 14px; color: var(--ink-2); }
.viz-meta strong { color: var(--ink); }
.thresholds { display: grid; gap: 8px; margin-top: 16px; }
.thr { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; border-radius: 12px; background: var(--cloud); font-size: 14px; font-weight: 600; }
.thr.active { background: var(--accent-tint); border: 1px solid var(--accent-soft); }
.thr .amt { font-weight: 800; }
.thr.active .amt { color: var(--accent-deep); }
.success-meter { margin-top: 8px; }
.meter-top { display: flex; align-items: center; justify-content: space-between; font-size: 13px; font-weight: 700; color: var(--ink-2); }
.meter-bar { height: 9px; border-radius: 100px; background: var(--cloud-2); margin-top: 8px; overflow: hidden; }
.meter-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--accent), var(--pos)); }
.invoice { display: grid; gap: 10px; }
.invoice-row { display: flex; align-items: center; justify-content: space-between; font-size: 14px; }
.invoice-row.total { border-top: 1px dashed var(--line-2); padding-top: 12px; font-weight: 800; font-size: 15px; }
.invoice-row .pos { color: var(--pos); font-weight: 800; }
.chip-stage { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 700; color: var(--accent-deep); background: var(--accent-tint); padding: 6px 12px; border-radius: 100px; }

/* ---------------------------------------------------------------
   HOW IT WORKS — trzy kafelki
   --------------------------------------------------------------- */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 26px); counter-reset: how; }
.how-tile {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px); box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
}
.how-tile::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--accent-deep)); opacity: 0; transition: opacity .2s ease;
}
.how-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent-soft); }
.how-tile:hover::after { opacity: 1; }
.how-num {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  font-size: 1.5rem; font-weight: 800; color: var(--accent-deep); background: var(--accent-tint);
  border: 1px solid var(--accent-soft); margin-bottom: 22px;
}
.how-tile h3 { font-size: clamp(1.2rem, 1.8vw, 1.4rem); }
.how-tile p { margin-top: 12px; color: var(--ink-2); font-size: 15.5px; }

@media (max-width: 860px) {
  .how-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}
.calc-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 52px); align-items: stretch; }
.calc-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: clamp(24px, 3vw, 36px); }
.calc-display { text-align: center; padding: 26px 0 8px; }
.calc-display .range-lbl { font-size: 13px; font-weight: 700; color: var(--ink-3); text-transform: uppercase; letter-spacing: .08em; }
.calc-display .big { font-size: clamp(3.4rem, 8vw, 5.2rem); font-weight: 800; letter-spacing: -0.05em; color: var(--accent); line-height: 1; margin-top: 6px; }
.calc-display .dist { font-size: 14.5px; color: var(--ink-2); margin-top: 10px; font-weight: 600; }
.slider-wrap { margin-top: 26px; }
.slider {
  -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 100px;
  background: linear-gradient(90deg, var(--accent) var(--fill,33%), var(--cloud-2) var(--fill,33%));
  cursor: pointer; outline: none;
}
.slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 28px; height: 28px; border-radius: 50%; background: #fff; border: 5px solid var(--accent); box-shadow: var(--shadow-sm); cursor: grab; }
.slider::-moz-range-thumb { width: 28px; height: 28px; border-radius: 50%; background: #fff; border: 5px solid var(--accent); box-shadow: var(--shadow-sm); cursor: grab; }
.slider-ticks { display: flex; justify-content: space-between; margin-top: 12px; font-size: 12px; font-weight: 700; color: var(--ink-3); }
.calc-note { margin-top: 20px; font-size: 13.5px; color: var(--ink-3); padding: 14px 16px; background: var(--cloud); border-radius: 12px; }
.calc-fields { display: grid; gap: 12px; margin-top: 4px; }

/* problem cards */
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 14px; }
.problem-card {
  text-align: left; background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 20px;
  cursor: pointer; transition: all .18s; font-family: inherit;
}
.problem-card:hover { border-color: var(--accent-soft); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.problem-card.active { border-color: var(--accent); background: var(--accent-tint); }
.problem-card .cap { font-size: 12.5px; font-weight: 800; color: var(--accent-deep); }
.problem-card h4 { font-size: 1.05rem; margin-top: 10px; }
.problem-card p { font-size: 13px; color: var(--ink-2); margin-top: 6px; }

/* ---------------------------------------------------------------
   RIGHTS — Twoje prawa (rozbudowana sekcja)
   --------------------------------------------------------------- */
.rights { display: grid; gap: clamp(40px, 6vw, 72px); }

/* zwijanie poradnika */
.rights.collapsed { position: relative; max-height: 360px; overflow: hidden; gap: clamp(28px, 4vw, 44px); }
.rights.collapsed::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 200px; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0), #fff 88%);
}
.bg-cloud .rights.collapsed::after { background: linear-gradient(180deg, rgba(243,248,253,0), var(--cloud) 88%); }
.rights-toggle { display: flex; justify-content: center; margin-top: 28px; }
.rights-toggle .btn svg { transition: transform .25s ease; }
.rights-toggle .btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.rights-block { display: grid; gap: 18px; max-width: 860px; }
.rights-block h3 { font-size: clamp(1.5rem, 2.6vw, 2.05rem); }
.rights-block p { color: var(--ink-2); font-size: clamp(1rem, 1.3vw, 1.1rem); }
.rights-block p strong { color: var(--ink); }

.callout {
  display: grid; gap: 8px; padding: 22px 24px; border-radius: var(--radius);
  background: var(--accent-tint); border: 1px solid var(--accent-soft);
}
.callout .cap { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--accent-deep); }
.callout p { font-size: 15px; color: var(--ink-2); }
.callout.warn { background: #fff5ec; border-color: #ffd9b0; }
.callout.warn .cap { color: #c2691a; }
.callout.pos { background: var(--pos-tint); border-color: #bce7d2; }
.callout.pos .cap { color: var(--pos); }

.amount-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.amount-card { padding: 22px; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); }
.amount-card .km { font-size: 13px; font-weight: 700; color: var(--ink-3); }
.amount-card .eur { font-size: 2.2rem; font-weight: 800; color: var(--accent); letter-spacing: -0.04em; margin: 6px 0; }
.amount-card .ex { font-size: 13px; color: var(--ink-3); font-style: italic; }

/* care grid (na lotnisku) */
.care-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.care-card { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.care-badge { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; font-size: 14px; font-weight: 800; color: var(--accent-deep); background: var(--accent-tint); border: 1px solid var(--accent-soft); text-transform: lowercase; }
.care-card h5 { font-size: 1.06rem; }
.care-card p { font-size: 14px; color: var(--ink-2); margin-top: 6px; }

/* numbered checklist */
.checklist { display: grid; gap: 14px; }
.check-item { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 20px 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.check-item .idx { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #fff; background: var(--accent); font-size: 15px; }
.check-item h5 { font-size: 1.05rem; }
.check-item p { font-size: 14px; color: var(--ink-2); margin-top: 5px; }

/* exceptions */
.exc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.exc-card { padding: 22px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--cloud); }
.exc-card h5 { font-size: 1.05rem; }
.exc-card p { font-size: 14px; color: var(--ink-2); margin-top: 8px; }

/* ---------------------------------------------------------------
   PRICING / COMPARISON
   --------------------------------------------------------------- */
.compare-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.compare-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.compare-card.featured { border: 2px solid var(--accent); box-shadow: var(--shadow-lg); transform: scale(1.02); z-index: 2; }
.compare-flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 12.5px; font-weight: 800; padding: 6px 16px; border-radius: 100px; white-space: nowrap; }
.compare-card .who { font-size: 12.5px; font-weight: 700; color: var(--ink-3); text-transform: uppercase; letter-spacing: .08em; }
.compare-card .name { font-size: 1.5rem; margin: 8px 0 6px; }
.compare-card .name.brand-name .dot { color: var(--accent); }
.compare-card .desc { font-size: 14px; color: var(--ink-2); min-height: 42px; }
.rate-row { display: flex; gap: 10px; margin: 18px 0; }
.rate { flex: 1; padding: 14px; border-radius: 13px; background: var(--cloud); text-align: center; }
.featured .rate { background: var(--accent-tint); }
.rate .rl { font-size: 11.5px; font-weight: 700; color: var(--ink-3); text-transform: uppercase; letter-spacing: .05em; }
.rate .rv { font-size: 1.7rem; font-weight: 800; letter-spacing: -0.03em; margin-top: 4px; }
.featured .rate .rv { color: var(--accent-deep); }
.rate .rn { font-size: 11px; color: var(--ink-3); margin-top: 4px; line-height: 1.35; }
.payout { text-align: center; padding: 18px; border-radius: 14px; background: var(--cloud); margin-bottom: 18px; }
.featured .payout { background: var(--pos-tint); }
.payout .pv { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.04em; }
.featured .payout .pv { color: var(--pos); }
.payout .pl { font-size: 13px; color: var(--ink-3); font-weight: 600; }
.compare-list { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 11px; }
.compare-list li { display: grid; grid-template-columns: auto 1fr; gap: 10px; font-size: 13.5px; color: var(--ink-2); }
.compare-list .ico { flex: none; margin-top: 1px; }
.compare-list .ico.no { color: var(--ink-3); }
.compare-list .ico.yes { color: var(--pos); }
.compare-card .foot { margin-top: auto; }

/* ---------------------------------------------------------------
   TESTIMONIALS
   --------------------------------------------------------------- */
.rating-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.rating-pill { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 16px 22px; box-shadow: var(--shadow-sm); }
.rating-pill .src { font-size: 14px; font-weight: 800; }
.rating-pill .score { font-size: 1.5rem; font-weight: 800; }
.stars { color: var(--star); letter-spacing: 2px; font-size: 14px; }
.rating-pill .cnt { font-size: 12.5px; color: var(--ink-3); font-weight: 600; }
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tst-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.tst-card .amt { display: inline-flex; align-self: flex-start; font-size: 15px; font-weight: 800; color: var(--pos); background: var(--pos-tint); padding: 6px 13px; border-radius: 100px; }
.tst-card .stars { margin: 14px 0 12px; }
.tst-card .quote { font-size: 15.5px; color: var(--ink); line-height: 1.55; flex: 1; }
.tst-card .quote strong { color: var(--accent-deep); }
.tst-author { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.tst-avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #fff; background: var(--accent); font-size: 15px; }
.tst-author .an { font-size: 14.5px; font-weight: 700; }
.tst-author .ad { font-size: 12.5px; color: var(--ink-3); font-weight: 600; }

/* ---------------------------------------------------------------
   FAQ
   --------------------------------------------------------------- */
.faq-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-q { width: 100%; text-align: left; font-family: inherit; background: none; border: 0; cursor: pointer; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 1.08rem; font-weight: 700; color: var(--ink); }
.faq-q .ico { flex: none; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--accent-tint); color: var(--accent-deep); transition: transform .25s ease, background .2s; font-size: 18px; }
.faq-item[data-open="true"] .faq-q .ico { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 24px 24px; color: var(--ink-2); font-size: 15px; line-height: 1.65; }

/* ---------------------------------------------------------------
   FINAL CTA
   --------------------------------------------------------------- */
.final-cta { position: relative; overflow: hidden; }
.final-cta .container { position: relative; z-index: 2; text-align: center; }
.final-cta .glow { position: absolute; inset: 0; z-index: 0; background: radial-gradient(800px 400px at 50% 0%, rgba(19,145,236,.45), transparent 65%); }
.final-cta h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); color: #fff; max-width: 16ch; margin-inline: auto; }
.final-cta h2 .accent { color: #6dc1f7; }
.final-cta p { color: rgba(255,255,255,.72); font-size: clamp(1.05rem, 1.6vw, 1.25rem); margin: 20px auto 0; max-width: 50ch; }
.final-cta .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.final-cta .micro { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.final-cta .micro .m { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,.7); }
.final-cta .micro .m svg { color: #6dc1f7; }

/* jasny wariant CTA */
.final-cta-light { background: var(--cloud); }
.final-cta-light .glow { background: radial-gradient(800px 400px at 50% 0%, rgba(19,145,236,.14), transparent 65%); }
.final-cta-light h2 { color: var(--ink); }
.final-cta-light h2 .accent { color: var(--accent); }
.final-cta-light p { color: var(--ink-2); }
.final-cta-light .micro .m { color: var(--ink-2); }
.final-cta-light .micro .m svg { color: var(--pos); }

/* ---------------------------------------------------------------
   FOOTER
   --------------------------------------------------------------- */
.site-footer { background: var(--cloud); color: var(--ink-2); padding-block: clamp(50px, 7vw, 80px) 36px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .brand { color: var(--ink); font-size: 28px; }
.footer-brand p { margin-top: 16px; font-size: 14.5px; max-width: 34ch; line-height: 1.6; }
.footer-brand a.mail { display: inline-block; margin-top: 16px; color: var(--accent-deep); font-weight: 700; font-size: 14.5px; }
.footer-col h6 { color: var(--ink); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-col a { font-size: 14px; color: var(--ink-2); transition: color .15s; }
.footer-col a:hover { color: var(--accent-deep); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--line); font-size: 13px; }
.footer-bottom .disclaimer { max-width: 60ch; color: var(--ink-3); }

/* ---------------------------------------------------------------
   REVEAL ANIMATION
   --------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------- */
@media (max-width: 1080px) {
  .steps-layout { grid-template-columns: 1fr; }
  .steps-aside { position: static; grid-template-columns: 1fr 1fr; display: grid; }
  .faq-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 1040px) {
  .nav-links, .nav-drop { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-spacer { margin-left: auto; }
}
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  :scope[data-hero="A"] .hero-stats { display: flex; }
  .calc-layout { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .compare-card.featured { transform: none; order: -1; }
  .tst-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .exc-grid { grid-template-columns: 1fr; }
  :scope[data-hero="B"] .checker-fields { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :scope { font-size: 16px; }
  .checker-fields { grid-template-columns: 1fr; }
  .amount-3 { grid-template-columns: 1fr; }
  .care-grid { grid-template-columns: 1fr; }
  .steps-aside { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .rating-row { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; }
  .step-num { width: 44px; height: 44px; }
  .hero-trust { gap: 14px; }
  .nav-cta .btn-ghost { display: none; }

  .compare-grid {
    width: auto;
    max-width: none;
    display: flex;
    align-items: stretch;
    gap: 14px;
    margin-inline: calc(var(--gutter) * -1);
    padding: 18px var(--gutter) 24px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: var(--gutter);
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .compare-grid::-webkit-scrollbar { display: none; }
  .compare-card {
    flex: 0 0 min(84vw, 390px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .compare-card.featured { order: -1; }
}

/* ── telefony (≤480px) ── */
@media (max-width: 480px) {
  :scope { --gutter: 16px; }
  /* nagłówek: ukryj przycisk CTA — jest w menu hamburger, by nic się nie tłoczyło */
  .nav-cta { display: none; }
  .nav { height: 62px; }
  .brand { font-size: 23px; }
  /* mniej pionowego przewijania */
  .section-pad { padding-block: clamp(40px, 11vw, 60px); }
  .section-head { margin-bottom: 28px; }
  /* hero */
  .hero h1 { font-size: clamp(2rem, 8.5vw, 2.6rem); }
  .hero-sub { font-size: 1.02rem; }
  .hero-trust { gap: 10px; }
  .hero-trust .t { font-size: 13.5px; }
  .checker-card { padding: 20px 18px; border-radius: 20px; }
  .checker-card h3 { font-size: 1.18rem; }
  /* przyciski CTA pełnej szerokości, duży cel dotyku */
  .final-cta .cta-btns { flex-direction: column; }
  .final-cta .cta-btns .btn { width: 100%; }
  .btn-lg { padding: 16px 24px; }
  /* karty porównania — wyłącz skalowanie wyróżnionej */
  .compare-card.featured { transform: none; }
  .compare-card { padding: 24px; }
  /* sekcja „jak działa” kafelki */
  .how-tile { padding: 26px 22px; }
  /* listy/odstępy praw */
  .rights { gap: 32px; }
}

/* utilities */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.mt-tags { margin-top: 14px; }

/* ---------------------------------------------------------------
   TWEAKS PANEL
   --------------------------------------------------------------- */
.tweaks-panel {
  position: fixed; right: 18px; bottom: 18px; z-index: 9999; width: 280px;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 20px 60px -16px rgba(12,28,44,.4); overflow: hidden;
  opacity: 0; transform: translateY(10px) scale(.98); transition: opacity .2s ease, transform .2s ease;
  font-family: var(--font);
}
.tweaks-panel.show { opacity: 1; transform: none; }
.tweaks-panel .tp-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.tweaks-panel .tp-title { font-size: 14px; font-weight: 800; letter-spacing: -0.01em; }
.tweaks-panel .tp-close { background: var(--cloud); border: 0; width: 28px; height: 28px; border-radius: 8px; cursor: pointer; color: var(--ink-2); font-size: 13px; }
.tweaks-panel .tp-close:hover { background: var(--cloud-2); color: var(--ink); }
.tweaks-panel .tp-:scope { padding: 16px; }
.tweaks-panel .tp-sect { font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); margin: 4px 0 10px; }
.tweaks-panel .tp-sect:not(:first-child) { margin-top: 20px; }
.tweaks-panel .tp-seg { display: flex; gap: 6px; background: var(--cloud); padding: 4px; border-radius: 12px; }
.tweaks-panel .tp-segbtn { flex: 1; min-width: 0; font-family: inherit; font-size: 12.5px; font-weight: 700; border: 0; background: transparent; color: var(--ink-2); padding: 9px 4px; border-radius: 9px; cursor: pointer; transition: all .15s; white-space: nowrap; }
.tweaks-panel .tp-segbtn.on { background: #fff; color: var(--accent-deep); box-shadow: var(--shadow-sm); }
.tweaks-panel .tp-swatches { display: flex; gap: 10px; }
.tweaks-panel .tp-sw { width: 38px; height: 38px; border-radius: 10px; border: 2px solid transparent; cursor: pointer; box-shadow: inset 0 0 0 2px #fff; transition: transform .12s; }
.tweaks-panel .tp-sw:hover { transform: scale(1.06); }
.tweaks-panel .tp-sw.on { border-color: var(--ink); }
.tweaks-panel .tp-hint { font-size: 12px; color: var(--ink-3); margin-top: 10px; line-height: 1.5; }
@media (max-width: 460px) {
  .tweaks-panel { left: 12px; right: 12px; bottom: 12px; width: auto; max-height: 80vh; overflow-y: auto; }
}

}
