/* ============================================================
   Nasza Rada — site.css
   Redesign 2026 — czysty CSS bez frameworków.
   Świat: nowoczesny SaaS zagrany na poważnie; niebieski brand
   jako atrament marki, biel i warstwy błękitu jako grunt.
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scrollbar-gutter: stable; }
@supports not (scrollbar-gutter: stable) {
  html { overflow-y: scroll; }
}
html, body { overflow-x: clip; }
img, svg, video, iframe { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
ul[class], ol[class] { list-style: none; padding: 0; }

/* ---------- Tokeny ---------- */
:root {
  --ink: #0d2b4a;
  --body-c: #33506e;
  --muted: #52698a;
  --primary: #1268c3;
  --primary-deep: #0f57a4;
  --sky: #3fb9f2;
  --tint: #e9f4fd;
  --tint-2: #f5faff;
  --line: #d9e6f3;
  --white: #ffffff;
  --grad-brand: linear-gradient(115deg, #48c2f5 0%, #1668c7 100%);
  --grad-band: linear-gradient(118deg, #124a94 0%, #0c2b56 78%);
  --shadow-soft: 0 14px 40px -18px rgba(16, 78, 148, .35);
  --shadow-lift: 0 24px 60px -24px rgba(13, 60, 118, .38);
  --r-card: 18px;
  --r-pill: 999px;
  --font-display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --font-body: "Figtree", "Segoe UI", system-ui, sans-serif;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --container: 1160px;
}

/* ---------- Powierzchnie przeglądarki ---------- */
::selection { background: #bfe3fb; color: #0d2b4a; }
:focus-visible { outline: 2.5px solid var(--primary); outline-offset: 3px; border-radius: 4px; }
html { caret-color: var(--primary); }
@supports (scrollbar-color: red blue) {
  html { scrollbar-color: #9dc4e8 #eef5fc; }
}
body::-webkit-scrollbar { width: 12px; }
body::-webkit-scrollbar-track { background: #eef5fc; }
body::-webkit-scrollbar-thumb { background: #9dc4e8; border-radius: 8px; border: 3px solid #eef5fc; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--body-c);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; }
p a, li a { text-decoration: underline; text-underline-offset: .2em; text-decoration-thickness: 1px; text-decoration-color: #8fc1ec; }
p a:hover, li a:hover { text-decoration-color: var(--primary); }
strong { color: var(--ink); font-weight: 700; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-wrap: balance;
  font-weight: 700;
}

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

/* ---------- Animacje wejścia ---------- */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease-out), transform .9s var(--ease-out); }
  .js .reveal.is-in { opacity: 1; transform: none; }
  .js .reveal[data-delay="1"] { transition-delay: .08s; }
  .js .reveal[data-delay="2"] { transition-delay: .16s; }
  .js .reveal[data-delay="3"] { transition-delay: .24s; }
}

/* ---------- Przyciski ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-weight: 700; font-size: 1rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background-color .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn svg { flex: none; }
.btn-primary {
  background: linear-gradient(180deg, #1a78d6, #1161b8);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(17, 96, 184, .55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(17, 96, 184, .6); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: #fff; color: var(--primary-deep);
  border-color: #bcd8f1;
}
.btn-ghost:hover { border-color: var(--primary); background: var(--tint-2); transform: translateY(-2px); }
.btn-light {
  background: #fff; color: var(--primary-deep);
  box-shadow: 0 10px 24px -12px rgba(4, 24, 48, .5);
}
.btn-light:hover { transform: translateY(-2px); }
.btn-lg { padding: 16px 34px; font-size: 1.075rem; }

/* ---------- Nagłówek / nawigacja ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
/* Szklane tło na pseudoelemencie — backdrop-filter na samym headerze
   robiłby z niego containing block dla fixed (panel menu mobilnego). */
.site-header::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 30px -22px rgba(13, 60, 118, .4); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 76px; }
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 15px; border-radius: var(--r-pill);
  color: var(--ink); font-weight: 600; font-size: .98rem;
  transition: background-color .2s, color .2s;
}
.nav-links a:hover { background: var(--tint); color: var(--primary-deep); }
.nav-links a[aria-current="page"] { color: var(--primary-deep); background: var(--tint); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 11px 22px; font-size: .95rem; }
.nav-toggle {
  display: none;
  background: none; border: 0; padding: 10px; margin-right: -10px;
  cursor: pointer; color: var(--ink);
}

@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(340px, 88vw);
    flex-direction: column; align-items: stretch; gap: 6px;
    background: #fff; padding: 92px 26px 26px;
    box-shadow: -20px 0 60px -30px rgba(13, 43, 74, .5);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform .45s var(--ease-out), visibility 0s .45s;
    z-index: 70;
  }
  .nav-links.is-open { transform: none; visibility: visible; transition-delay: 0s; }
  .nav-links a { font-size: 1.12rem; padding: 13px 16px; }
  .nav-links .nav-login-m { margin-top: 10px; text-align: center; background: linear-gradient(180deg, #1a78d6, #1161b8); color: #fff; font-weight: 700; }
  .nav-links .nav-login-m:hover { background: var(--primary-deep); color: #fff; }
  .nav-cta .btn-login-d { display: none; }
  .nav-scrim {
    position: fixed; inset: 0; z-index: 59;
    background: rgba(9, 30, 53, .45);
    opacity: 0; pointer-events: none; transition: opacity .3s;
  }
  .nav-scrim.is-open { opacity: 1; pointer-events: auto; }
  .nav-close {
    position: absolute; top: 22px; right: 22px;
    background: var(--tint); border: 0; border-radius: 50%;
    width: 42px; height: 42px; display: grid; place-items: center;
    cursor: pointer; color: var(--ink);
  }
}
@media (min-width: 921px) { .nav-close, .nav-scrim, .nav-login-m { display: none; } }

/* ---------- Hero (ciemny granat + dryfująca poświata) ---------- */
.hero {
  position: relative;
  padding: 72px 0 104px;
  overflow: clip;
  background: var(--grad-band);
  color: #b9d6f2;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.hero::before {
  width: 58rem; height: 38rem; top: -15rem; right: -12rem;
  background: radial-gradient(closest-side, rgba(72, 194, 245, .3), transparent 70%);
}
.hero::after {
  width: 46rem; height: 32rem; bottom: -17rem; left: -11rem;
  background: radial-gradient(closest-side, rgba(26, 120, 214, .42), transparent 70%);
}
@media (prefers-reduced-motion: no-preference) {
  .hero::before { animation: aurora-drift 22s ease-in-out infinite alternate; }
  .hero::after { animation: aurora-drift 30s ease-in-out -9s infinite alternate-reverse; }
}
@keyframes aurora-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-4.5rem, 2.5rem, 0) scale(1.14); }
}
.hero h1 { color: #fff; }
.hero-lead { color: #b9d6f2; }
.hero .btn-ghost {
  background: rgba(255, 255, 255, .06);
  color: #fff;
  border-color: rgba(255, 255, 255, .38);
}
.hero .btn-ghost:hover { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .65); }
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(36px, 5vw, 72px); align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.55rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.hero-copy h1 em { font-style: normal; color: #6fd0f8; }
.hero-lead { font-size: 1.15rem; max-width: 54ch; margin-bottom: 14px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 10px; }

.hero-meta {
  margin-top: 30px; padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.store-badge { display: inline-flex; border-radius: 8px; transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out); }
.store-badge:hover { transform: translateY(-2px); box-shadow: 0 10px 22px -12px rgba(9, 30, 53, .55); }
.hero-madeby { display: grid; gap: 8px; justify-items: start; }
.hero-madeby span {
  font-size: .74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .09em;
  color: #9cc0e8;
}
.hero-madeby img {
  height: 52px; width: auto;
  background: #fff;
  padding: 8px 14px;
  border-radius: 12px;
}

.hero-shot { position: relative; }
.hero-shot::before {
  content: "";
  position: absolute; inset: -9% -8% -13% -10%;
  background: radial-gradient(68% 62% at 58% 42%, rgba(72, 194, 245, .3), transparent 72%);
  border-radius: 36px;
  z-index: 0;
}
.hero-shot .photo-card {
  position: relative; z-index: 1;
  padding: 10px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 22px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .25),
    0 34px 90px -30px rgba(1, 10, 24, .85),
    0 18px 60px -18px rgba(72, 194, 245, .28);
}
.hero-shot .photo-card img { border-radius: 13px; }
@media (prefers-reduced-motion: no-preference) {
  .hero-shot .photo-card { animation: card-float 7s ease-in-out 2s infinite alternate; }
  @keyframes card-float {
    from { transform: translateY(0); }
    to { transform: translateY(-9px); }
  }
  .js .hero-shot { opacity: 0; transform: translateY(34px) scale(.97); }
  .js .hero-shot.is-in { opacity: 1; transform: none; transition: opacity 1s var(--ease-out) .35s, transform 1.1s var(--ease-out) .35s; }
  .js .hero-copy > * { animation: hero-rise .85s var(--ease-out) both; }
  .js .hero-copy > h1 { animation-delay: .05s; }
  .js .hero-copy > .hero-lead { animation-delay: .16s; }
  .js .hero-copy > .hero-actions { animation-delay: .27s; }
  .js .hero-copy > .hero-meta { animation-delay: .38s; }
  @keyframes hero-rise {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: none; }
  }
}

/* ---------- Sekcje ---------- */
.section { padding: 96px 0; }
.section-tint { background: linear-gradient(180deg, var(--tint-2), var(--tint) 120%); }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.85rem, 3.2vw, 2.5rem); margin-bottom: 14px; }
.section-head p { font-size: 1.1rem; }
.section-head.align-left { margin-inline: 0; text-align: left; }

/* ---------- O aplikacji (split) ---------- */
.about-grid {
  display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.about-copy h2 { font-size: clamp(1.85rem, 3.2vw, 2.5rem); margin-bottom: 18px; }
.about-copy > p { margin-bottom: 16px; }
.about-perks { margin-top: 26px; display: grid; gap: 13px; }
.about-perks li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; color: var(--ink); }
.about-perks svg { flex: none; margin-top: 3px; color: var(--primary); }
.about-cta { margin-top: 30px; }
.feature-list { display: grid; }
.feature-row {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 4px;
}
.feature-row + .feature-row { border-top: 1px solid var(--line); }
.feature-row .f-icon {
  flex: none; width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--tint); color: var(--primary);
}
.feature-row h3 { font-size: 1.12rem; margin-bottom: 4px; }
.feature-row p { font-size: .98rem; }

/* ---------- Zrzutki ---------- */
.split-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 90px); align-items: center;
}
.split-copy h2 { font-size: clamp(1.85rem, 3.2vw, 2.4rem); margin-bottom: 18px; }
.split-copy p { margin-bottom: 16px; }
.split-copy .btn { margin-top: 10px; }
.photo-card {
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 1px solid var(--line);
}
.photo-card img { width: 100%; height: auto; }

/* ---------- Funkcje (bento) ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.bento-item {
  grid-column: span 2;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 30px 28px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .3s;
}
.bento-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: #bcd8f1; }
.bento-item.wide { grid-column: span 3; }
.bento-item .f-icon {
  width: 54px; height: 54px; border-radius: 15px;
  display: grid; place-items: center;
  background: var(--tint); color: var(--primary);
  margin-bottom: 20px;
}
.bento-item.wide .f-icon { background: var(--grad-brand); color: #fff; }
.bento-item h3 { font-size: 1.22rem; margin-bottom: 8px; }
.bento-item p { font-size: .99rem; }

/* ---------- Pasek logotypów Grupy LOCA ---------- */
.logo-strip {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 48px 0;
}
.logo-strip-title {
  text-align: center;
  font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 28px;
}
.logo-strip-row {
  display: flex; flex-wrap: nowrap;
  justify-content: center; align-items: center;
  gap: clamp(14px, 1.6vw, 24px);
}
.logo-strip-row li { flex: none; }
.logo-strip-row img {
  height: clamp(17px, 1.8vw, 26px); width: auto;
  opacity: .8;
  filter: grayscale(40%);
  transition: opacity .25s, filter .25s, transform .25s var(--ease-out);
}
.logo-strip-row li:hover img { opacity: 1; filter: none; transform: translateY(-2px); }
@media (max-width: 860px) {
  ul.logo-strip-row {
    justify-content: flex-start;
    overflow-x: auto;
    margin-inline: -24px;
    padding: 6px 24px 14px;
    gap: 34px;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    mask-image: linear-gradient(to right, transparent, #000 20px, #000 calc(100% - 20px), transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 20px, #000 calc(100% - 20px), transparent);
  }
  .logo-strip-row::-webkit-scrollbar { display: none; }
  .logo-strip-row li { scroll-snap-align: start; }
  .logo-strip-row img { height: 34px; }
}

/* ---------- Cennik ---------- */
.pricing-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px; max-width: 920px; margin-inline: auto;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 38px 34px;
  display: flex; flex-direction: column;
  position: relative;
}
.price-card.is-featured {
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--grad-brand) border-box;
  box-shadow: var(--shadow-lift);
}
.price-flag {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--grad-brand); color: #fff;
  font-size: .8rem; font-weight: 700; letter-spacing: .05em;
  padding: 6px 18px; border-radius: var(--r-pill);
  white-space: nowrap;
}
.price-card h3 { font-size: 1.35rem; margin-bottom: 6px; }
.price-card .price-sub { font-size: .97rem; color: var(--muted); margin-bottom: 20px; }
.price-value {
  font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 800; color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 4px;
}
.price-value small { font-size: 1.05rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.price-note { font-size: .92rem; color: var(--muted); margin-bottom: 26px; }
.price-feats { display: grid; gap: 12px; margin-bottom: 30px; }
.price-feats li { display: flex; gap: 11px; align-items: flex-start; font-size: .98rem; }
.price-feats svg { flex: none; margin-top: 4px; color: var(--primary); }
.price-feats li.is-extra { font-weight: 700; color: var(--ink); }
.price-feats li.is-extra svg { color: #0ca063; }
.price-card .btn { margin-top: auto; }
.price-parent {
  max-width: 920px; margin: 0 auto 28px;
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--grad-brand) border-box;
  border-radius: 22px;
  box-shadow: var(--shadow-lift);
  padding: 38px 34px;
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 24px 48px; align-items: center;
}
.price-parent h3 { font-size: 1.35rem; margin-bottom: 6px; }
.price-parent .price-value { margin-bottom: 4px; }
.price-parent .price-note { margin-bottom: 0; }
.price-parent .price-feats { margin-bottom: 0; }
@media (max-width: 760px) { .price-parent { grid-template-columns: 1fr; gap: 20px; } }
.price-flag.is-soon {
  background: #fff; color: var(--primary-deep);
  border: 1.5px solid #bcd8f1;
}
.pricing-fine {
  max-width: 820px; margin: 46px auto 0;
  background: var(--tint-2); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 28px 32px;
}
.pricing-fine h3 { font-size: 1.08rem; margin-bottom: 12px; }
.pricing-fine p { font-size: .97rem; margin-bottom: 10px; }
.pricing-fine p:last-child { margin-bottom: 0; }

/* ---------- Pasmo CTA ---------- */
.cta-band {
  background: var(--grad-band);
  color: #cfe4fa;
  position: relative; overflow: clip;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 48rem; height: 30rem; top: -14rem; right: -8rem;
  background: radial-gradient(closest-side, rgba(72, 194, 245, .3), transparent 70%);
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .cta-band::before { animation: aurora-drift 26s ease-in-out infinite alternate; }
}
.cta-inner {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: 40px; align-items: center;
}
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 14px; }
.cta-band h2 em { font-style: normal; color: #6fd0f8; }
.cta-band p { color: #b9d6f2; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }
@media (max-width: 760px) { .cta-actions { justify-content: flex-start; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq-item[open] { border-color: #bcd8f1; box-shadow: var(--shadow-soft); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 24px;
  font-weight: 700; color: var(--ink); font-size: 1.04rem;
  font-family: var(--font-display); letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-x {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--tint); color: var(--primary-deep);
  transition: transform .35s var(--ease-out), background-color .25s, color .25s;
}
.faq-item[open] summary .faq-x { transform: rotate(45deg); background: var(--primary); color: #fff; }
.faq-body { padding: 0 24px 24px; }
.faq-body p { margin-bottom: 12px; }
.faq-body p:last-child { margin-bottom: 0; }
.faq-body ol { padding-left: 22px; display: grid; gap: 8px; }

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  max-width: 980px; margin-inline: auto;
}
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 36px;
}
.contact-card h3 { font-size: 1.25rem; margin-bottom: 20px; }
.contact-rows { display: grid; gap: 18px; }
.contact-rows li { display: flex; gap: 15px; align-items: flex-start; }
.contact-rows .c-ico {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--tint); color: var(--primary);
}
.contact-rows h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: 2px; font-family: var(--font-body); font-weight: 700; }
.contact-rows p, .contact-rows a { color: var(--ink); font-weight: 600; }
.contact-card .contact-note { margin-bottom: 24px; }
.contact-actions { display: grid; gap: 12px; }
.contact-actions .btn { width: 100%; }

/* ---------- Stopka ---------- */
.site-footer {
  background: var(--tint-2);
  border-top: 1px solid var(--line);
  padding: 72px 0 0;
  font-size: .97rem;
}
.footer-grid {
  display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 3fr) minmax(0, 3fr);
  gap: 44px;
  padding-bottom: 52px;
}
.footer-brand img { height: 46px; width: auto; margin-bottom: 18px; }
.footer-brand p { margin-bottom: 12px; max-width: 34ch; }
.footer-madeby { display: grid; gap: 7px; justify-items: start; margin: 6px 0 18px; }
.footer-madeby span {
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .09em;
  color: var(--muted);
}
.footer-madeby img { height: 34px; width: auto; margin: 0; }
.footer-stores { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-stores img { height: 40px; width: auto; margin: 0; }
.site-footer h4 { font-size: .88rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 18px; font-family: var(--font-body); font-weight: 700; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: var(--body-c); font-weight: 600; }
.footer-links a:hover { color: var(--primary-deep); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: center; justify-content: space-between;
  color: var(--muted); font-size: .92rem;
}
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-bottom a { color: var(--muted); font-weight: 600; }
.footer-bottom a:hover { color: var(--primary-deep); }

/* ---------- Podstrony: nagłówek strony (ciemny granat) ---------- */
.page-hero {
  position: relative;
  padding: 84px 0 64px;
  overflow: clip;
  background: var(--grad-band);
}
.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.page-hero::before {
  width: 50rem; height: 30rem; top: -16rem; right: -10rem;
  background: radial-gradient(closest-side, rgba(72, 194, 245, .28), transparent 70%);
}
.page-hero::after {
  width: 38rem; height: 24rem; bottom: -14rem; left: -9rem;
  background: radial-gradient(closest-side, rgba(26, 120, 214, .38), transparent 70%);
}
@media (prefers-reduced-motion: no-preference) {
  .page-hero::before { animation: aurora-drift 24s ease-in-out infinite alternate; }
  .page-hero::after { animation: aurora-drift 32s ease-in-out -11s infinite alternate-reverse; }
}
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(2.1rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; max-width: 20ch; color: #fff; }
.page-hero h1 em { font-style: normal; color: #6fd0f8; }
.page-hero .lead { font-size: 1.14rem; max-width: 62ch; color: #b9d6f2; }

/* ---------- Funkcje (podstrona wideo) ---------- */
.howto { display: grid; gap: 84px; }
.howto-item {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px); align-items: center;
}
.howto-item:nth-child(even) .howto-media { order: -1; }
.howto-copy h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 14px; }
.howto-copy > p { margin-bottom: 18px; }
.howto-steps { display: grid; gap: 12px; }
.howto-steps li { display: flex; gap: 12px; align-items: flex-start; font-size: .99rem; }
.howto-steps svg { flex: none; margin-top: 4px; color: var(--primary); }
.howto-steps ol { padding-left: 20px; margin-top: 8px; display: grid; gap: 6px; list-style: decimal; }
.media-placeholder {
  aspect-ratio: 3 / 2;
  border: 1.5px dashed #a9cdec;
  border-radius: var(--r-card);
  background: var(--tint-2);
  display: grid; place-items: center; align-content: center; gap: 10px;
  color: var(--muted); font-weight: 600; font-size: .95rem;
}
.media-placeholder svg { color: #7fb4e2; }

/* ---------- Poradnik ---------- */
.article { max-width: 74ch; margin-inline: auto; }
.article h2 { font-size: clamp(1.5rem, 2.6vw, 1.95rem); margin: 52px 0 16px; }
.article h2:first-child { margin-top: 0; }
.article p { margin-bottom: 16px; }
.guide-points { display: grid; gap: 18px; margin: 26px 0; }
.guide-points li {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 24px 26px;
  display: flex; gap: 16px; align-items: flex-start;
}
.guide-points .g-ico {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--tint); color: var(--primary);
}
.guide-points h3 { font-size: 1.1rem; margin-bottom: 6px; }
.guide-points p { font-size: .98rem; margin: 0; }
.check-list { display: grid; gap: 12px; margin: 20px 0; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list svg { flex: none; margin-top: 4px; color: var(--primary); }

/* ---------- Strony prawne ---------- */
.legal { max-width: 76ch; margin-inline: auto; padding: 24px 0 40px; }
.legal h1 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin-bottom: 34px; }
.legal h2 { font-size: 1.28rem; margin: 44px 0 14px; }
.legal p { margin-bottom: 13px; }
.legal a { word-break: break-word; }
.legal-top { margin-bottom: 8px; }

/* ---------- 404 ---------- */
.notfound {
  min-height: 62vh;
  display: grid; place-items: center; text-align: center;
  padding: 80px 0;
}
.notfound .code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 9rem); font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--primary);
  line-height: 1;
}
.notfound h1 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 14px 0 12px; }
.notfound p { max-width: 46ch; margin-inline: auto; margin-bottom: 28px; }
.notfound .actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Responsywność ---------- */
@media (max-width: 1020px) {
  .bento-item { grid-column: span 3; }
  .bento-item.wide { grid-column: span 6; }
}
@media (max-width: 860px) {
  .section { padding: 72px 0; }
  .hero { padding: 40px 0 72px; }
  .hero-grid, .about-grid, .split-grid, .howto-item, .cta-inner, .contact-grid { grid-template-columns: 1fr; }
  .howto-item:nth-child(even) .howto-media { order: 0; }
  .split-grid .photo-card { order: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-copy h1 { max-width: 16ch; }
}
@media (max-width: 620px) {
  body { font-size: 1rem; }
  .bento-item, .bento-item.wide { grid-column: span 6; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .cta-actions .btn { width: 100%; }
  .contact-card { padding: 28px 22px; }
  .nav-wrap { height: 68px; }
  .brand img { height: 38px; }
}

/* ---------- Druk ---------- */
@media print {
  .site-header, .site-footer, .cta-band, .nav-toggle { display: none; }
  body { color: #000; }
}

