/* ==========================================================================
   Omnibusy v2 - propozycja nowego kierunku
   Redakcyjny uklad, duzo powietrza, zielen jako akcent a nie wypelniacz.
   Nacisk na gestosc linkowania wewnetrznego.
   ========================================================================== */

:root {
  /* Marka zostaje, dochodzi glebka do ciemnych pasow */
  --g:        #41bd31;
  --g-dark:   #1a860c;
  --g-deep:   #0b2410;
  --g-soft:   #eaf7e7;
  --g-line:   #cfe8c9;

  --ink:      #10171b;
  --muted:    #5b6660;
  --line:     #e4e8e5;
  --mist:     #f4f6f4;
  --white:    #ffffff;

  --display: "Space Grotesk", "Inter", sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --fs-d1: clamp(2.5rem, 1.6rem + 4vw, 4.5rem);
  --fs-d2: clamp(2rem, 1.4rem + 2.6vw, 3.25rem);
  --fs-d3: clamp(1.35rem, 1.1rem + 1.1vw, 1.75rem);
  --fs-lead: clamp(1.0625rem, 1rem + 0.4vw, 1.25rem);
  --fs-sm: 0.875rem;
  --fs-xs: 0.8125rem;

  --r: 18px;
  --r-lg: 26px;
  --r-pill: 999px;

  --wrap: 1340px;
  --gutter: clamp(1.125rem, 0.5rem + 2.2vw, 2.5rem);
  --sy: clamp(3.5rem, 2.5rem + 4vw, 7rem);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --head-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--head-h) + 24px); }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.08; letter-spacing: -.025em; font-weight: 700; }
:focus-visible { outline: 3px solid var(--g); outline-offset: 3px; border-radius: 6px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.sec { padding-block: var(--sy); }
.sec--mist { background: var(--mist); }
.sec--tight { padding-block: clamp(2.25rem, 1.5rem + 2vw, 3.5rem); }
.vh { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* --- Naglowek sekcji: tytul + kreska + link obok (wzor z MAGMED) --------- */
.shead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  flex-wrap: wrap;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(2rem, 1.5rem + 1.5vw, 3rem);
}
.shead h2 { font-size: var(--fs-d2); }
.shead__lead { max-width: 52ch; margin-top: .75rem; color: var(--muted); }
.sec--dark .shead { border-color: rgba(255,255,255,.16); }

.morelink {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
  font-size: .9375rem;
  color: var(--g-dark);
  white-space: nowrap;
}
.morelink::after { content: "→"; transition: transform .25s var(--ease); }
.morelink:hover::after { transform: translateX(4px); }
.sec--dark .morelink { color: #8ee07f; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--g-dark);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--g); }
.sec--dark .eyebrow { color: #8ee07f; }

/* --- Przyciski ---------------------------------------------------------- */
.b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.6rem;
  border: 1.5px solid transparent;
  border-radius: var(--r-pill);
  font-weight: 600;
  line-height: 1.1;
  cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .25s var(--ease);
}
.b:hover { transform: translateY(-2px); }
.b--fill { background: var(--g); color: #fff; }
.b--fill:hover { background: var(--g-dark); }
.b--line { border-color: var(--line); color: var(--ink); }
.b--line:hover { border-color: var(--g); color: var(--g-dark); }
.b--ghost { border-color: rgba(255,255,255,.35); color: #fff; }
.b--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.b--sm { padding: .6rem 1.1rem; font-size: var(--fs-sm); }

/* --- Pasek nad naglowkiem ----------------------------------------------- */
.topbar {
  background: var(--g-deep);
  color: rgba(255,255,255,.82);
  font-size: var(--fs-xs);
}
.topbar__in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; }
.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: #8ee07f; }
.topbar__note { display: inline-flex; align-items: center; gap: .5rem; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--g); }
@media (max-width: 720px) { .topbar__hide { display: none; } }

/* --- Naglowek + mega menu ----------------------------------------------- */
.hd { position: sticky; top: 0; z-index: 90; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.hd__in { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: var(--head-h); }
.hd__logo img { width: 138px; }

.mnav { display: flex; align-items: center; gap: .35rem; }
.mnav > ul { display: flex; align-items: center; gap: .15rem; list-style: none; padding: 0; }
.mnav__a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .6rem .85rem;
  border-radius: var(--r-pill);
  font-size: .9375rem;
  font-weight: 500;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.mnav__a:hover, .mnav li[data-open="true"] > .mnav__a { background: var(--g-soft); color: var(--g-dark); }
.mnav__a[aria-current="page"] { color: var(--g-dark); font-weight: 600; }
.has-mega > .mnav__a::after {
  content: "";
  width: .38em; height: .38em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .25s var(--ease);
}
.has-mega[data-open="true"] > .mnav__a::after { transform: translateY(1px) rotate(225deg); }

.mega {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  top: calc(var(--head-h) - 6px);
  width: min(1240px, calc(100vw - 3rem));
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 60px rgba(16,23,27,.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.has-mega { position: static; }
.hd__in { position: relative; }
li[data-open="true"] > .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega__grid { display: grid; grid-template-columns: repeat(3, 1fr) .9fr; gap: 1.75rem; }
.mega__col h3 { font-size: var(--fs-xs); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-family: var(--sans); font-weight: 700; margin-bottom: .85rem; }
.mega__col ul { list-style: none; padding: 0; display: grid; gap: .15rem; }
.mega__link { display: block; padding: .55rem .65rem; margin-inline: -.65rem; border-radius: 12px; transition: background-color .18s var(--ease); }
.mega__link:hover { background: var(--mist); }
.mega__link b { display: block; font-size: .9375rem; font-weight: 600; }
.mega__link span { display: block; font-size: var(--fs-xs); color: var(--muted); line-height: 1.45; }
.mega__promo { padding: 1.25rem; background: var(--g-soft); border-radius: var(--r); align-self: start; }
.mega__promo p { font-size: var(--fs-sm); color: #2c4a26; margin: .5rem 0 1rem; }

.burger { display: none; width: 44px; height: 44px; background: none; border: 0; cursor: pointer; }
.burger span { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--ink); transition: transform .25s var(--ease), opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1080px) {
  .burger { display: block; }
  .mnav {
    position: fixed;
    inset: calc(var(--head-h) + 40px) 0 0 auto;
    width: min(420px, 100%);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem var(--gutter) 3rem;
    overflow-y: auto;
    background: #fff;
    transform: translateX(101%);
    transition: transform .3s var(--ease);
  }
  .mnav[data-open="true"] { transform: none; }
  .mnav > ul { flex-direction: column; align-items: stretch; width: 100%; }
  .mnav__a { justify-content: space-between; padding: .85rem 0; border-bottom: 1px solid var(--line); border-radius: 0; }
  .mega {
    position: static; translate: none; width: auto; padding: .5rem 0 1rem;
    border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none;
    display: none;
  }
  li[data-open="true"] > .mega { display: block; }
  .mega__grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .mnav .b { margin-top: 1.25rem; }
}

/* --- Hero --------------------------------------------------------------- */
.hero { padding-block: clamp(2.5rem, 1.5rem + 4vw, 5rem) 0; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: center; }
.hero h1 { font-size: var(--fs-d1); margin: 1.25rem 0 0; }
.hero h1 em { font-style: normal; color: var(--g-dark); }
.hero__lead { margin-top: 1.5rem; font-size: var(--fs-lead); color: var(--muted); max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.hero__media { position: relative; }
.hero__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--r-lg); }
.hero__badge {
  position: absolute;
  left: -1.5rem;
  bottom: 2rem;
  max-width: 280px;
  padding: 1.25rem 1.4rem;
  background: #fff;
  border-radius: var(--r);
  box-shadow: 0 20px 50px rgba(16,23,27,.16);
}
.hero__badge strong { display: block; font-family: var(--display); font-size: 2rem; color: var(--g-dark); line-height: 1; }
.hero__badge span { display: block; margin-top: .4rem; font-size: var(--fs-sm); color: var(--muted); }
.hero__badge a { display: inline-block; margin-top: .75rem; font-size: var(--fs-sm); font-weight: 600; color: var(--ink); border-bottom: 2px solid var(--g); }

.stats { display: grid; grid-template-columns: repeat(3, auto); gap: clamp(1.5rem, 1rem + 2vw, 3rem); margin-top: 2.5rem; justify-content: start; }
.stats div strong { display: block; font-family: var(--display); font-size: clamp(1.5rem, 1.2rem + 1vw, 2.125rem); }
.stats div span { font-size: var(--fs-sm); color: var(--muted); }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .hero__media img { aspect-ratio: 16 / 11; }
  .hero__badge { left: auto; right: 1rem; bottom: -1.5rem; }
}

/* --- Pasek szybkich linkow ---------------------------------------------- */
.quick { display: flex; flex-wrap: wrap; gap: .6rem; }
.quick a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  font-weight: 500;
  transition: border-color .2s var(--ease), background-color .2s var(--ease), color .2s var(--ease);
}
.quick a:hover { border-color: var(--g); background: var(--g-soft); color: var(--g-dark); }
.quick img { width: 20px; height: 20px; }

/* --- Bento oferty ------------------------------------------------------- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.75rem, .5rem + .8vw, 1.25rem); }
.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 230px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--white);
  overflow: hidden;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.tile:hover { transform: translateY(-3px); border-color: var(--g); box-shadow: 0 18px 40px rgba(16,23,27,.09); }
.tile h3 { font-size: 1.25rem; }
.tile p { margin-top: .5rem; font-size: var(--fs-sm); color: var(--muted); }
.tile__go { margin-top: 1rem; font-size: var(--fs-sm); font-weight: 600; color: var(--g-dark); }
.tile__go::after { content: " →"; }
.tile--photo { color: #fff; border-color: transparent; min-height: 320px; }
.tile--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.tile--photo::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(11,36,16,.15), rgba(11,36,16,.88)); }
.tile--photo { isolation: isolate; }
.tile--photo h3 { color: #fff; font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); }
.tile--photo p { color: rgba(255,255,255,.82); max-width: 34ch; }
.tile--photo .tile__go { color: #8ee07f; }
.tile--w2 { grid-column: span 2; }
.tile--h2 { grid-row: span 2; }
.tile__icon { position: absolute; top: 1.25rem; left: 1.5rem; width: 34px; height: 34px; opacity: .9; }
.tag {
  position: absolute; top: 1.15rem; right: 1.25rem;
  padding: .2rem .6rem;
  border-radius: var(--r-pill);
  background: var(--g-soft);
  color: var(--g-dark);
  font-size: var(--fs-xs);
  font-weight: 700;
}
@media (max-width: 980px) { .bento { grid-template-columns: repeat(2, 1fr); } .tile--h2 { grid-row: auto; } }
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } .tile--w2 { grid-column: auto; } }

/* --- Konfigurator ------------------------------------------------------- */
.cfg { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(1.5rem, 1rem + 2vw, 3rem); align-items: start; }
.cfg__opts { display: grid; gap: .6rem; }
.cfg__opt {
  display: flex;
  align-items: center;
  gap: .9rem;
  width: 100%;
  padding: 1rem 1.15rem;
  text-align: left;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  cursor: pointer;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.cfg__opt:hover { border-color: var(--g-line); }
.cfg__opt[aria-selected="true"] { border-color: var(--g); background: var(--g-soft); }
.cfg__opt b { font-family: var(--display); font-size: 1.0625rem; }
.cfg__opt span { display: block; font-size: var(--fs-xs); color: var(--muted); }
.cfg__num {
  flex: none;
  align-self: flex-start;
  padding-top: .15rem;
  font-family: var(--display);
  font-size: var(--fs-sm);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .06em;
  color: #9aa6a0;
}
.cfg__opt[aria-selected="true"] .cfg__num { color: var(--g-dark); }

.cfg__panel { padding: clamp(1.5rem, 1rem + 1.5vw, 2.25rem); background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); }
.cfg__panel[hidden] { display: none; }
.cfg__panel h3 { font-size: var(--fs-d3); }
.cfg__panel > p { margin-top: .65rem; color: var(--muted); }
.reco { display: grid; gap: .6rem; margin-top: 1.5rem; }
.reco a {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.reco a:hover { border-color: var(--g); background: var(--g-soft); }
.reco img { width: 30px; height: 30px; flex: none; }
.reco b { display: block; font-size: .9375rem; }
.reco span { display: block; font-size: var(--fs-xs); color: var(--muted); }
.reco em { margin-left: auto; font-style: normal; color: var(--g-dark); font-weight: 700; }
@media (max-width: 900px) { .cfg { grid-template-columns: 1fr; } }

/* --- Tabela dotacji ----------------------------------------------------- */
.tablewrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); }
table.grants { width: 100%; border-collapse: collapse; min-width: 720px; background: #fff; }
.grants th, .grants td { padding: 1.05rem 1.25rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.grants thead th { font-size: var(--fs-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; background: var(--mist); }
.grants tbody tr:last-child td { border-bottom: 0; }
.grants tbody tr:hover { background: #fafcf9; }
.grants a.gname { font-family: var(--display); font-weight: 700; font-size: 1.0625rem; border-bottom: 2px solid var(--g-line); }
.grants a.gname:hover { border-color: var(--g); }
.grants .amount { font-family: var(--display); font-weight: 700; color: var(--g-dark); white-space: nowrap; }
.grants td small { display: block; color: var(--muted); font-size: var(--fs-xs); margin-top: .2rem; }

/* --- Proces ------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); gap: clamp(1rem, .75rem + 1vw, 2rem); }
.step { padding-top: 1.25rem; border-top: 2px solid var(--g); }
.step__n { font-family: var(--display); font-size: var(--fs-xs); font-weight: 700; letter-spacing: .1em; color: var(--g-dark); }
.step h3 { margin-top: .5rem; font-size: 1.1875rem; }
.step p { margin-top: .5rem; font-size: var(--fs-sm); color: var(--muted); }
.step a { font-weight: 600; color: var(--g-dark); border-bottom: 1px solid var(--g-line); }
.sec--dark .step { border-color: rgba(255,255,255,.3); }
.sec--dark .step__n { color: #8ee07f; }
.sec--dark .step h3 { color: #fff; }
.sec--dark .step p { color: rgba(255,255,255,.72); }
.sec--dark .step a { color: #8ee07f; border-color: rgba(142,224,127,.5); }

/* --- Pasy ciemne / zdjeciowe -------------------------------------------- */
.sec--dark { background: var(--g-deep); color: #fff; }
.sec--dark h2, .sec--dark h3 { color: #fff; }
.band { position: relative; min-height: clamp(280px, 34vw, 440px); display: grid; align-items: end; isolation: isolate; color: #fff; }
.band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(11,36,16,.1), rgba(11,36,16,.8)); }
.band__in { padding-block: clamp(2rem, 1.5rem + 2vw, 3.5rem); }
.band h2 { font-size: var(--fs-d2); max-width: 20ch; }
.band p { margin-top: .75rem; max-width: 52ch; color: rgba(255,255,255,.85); }
.band .b { margin-top: 1.5rem; }

/* --- Galeria realizacji ------------------------------------------------- */
.shots { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); gap: .75rem; }
.shots a { position: relative; display: block; overflow: hidden; border-radius: var(--r); }
.shots img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .5s var(--ease); }
.shots a:hover img { transform: scale(1.05); }
.shots figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.5rem .95rem .85rem;
  font-size: var(--fs-sm); font-weight: 600; color: #fff;
  background: linear-gradient(180deg, transparent, rgba(11,36,16,.85));
}

/* --- Strefa wiedzy ------------------------------------------------------ */
.know { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: clamp(1rem, .75rem + 1vw, 1.75rem); }
.know article { display: flex; flex-direction: column; height: 100%; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--r); transition: border-color .25s var(--ease), transform .25s var(--ease); }
.know article:hover { border-color: var(--g); transform: translateY(-3px); }
.know__kind { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.know h3 { margin: .6rem 0 .5rem; font-size: 1.1875rem; }
.know p { font-size: var(--fs-sm); color: var(--muted); }
.know__links { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.15rem; padding-top: 1.15rem; border-top: 1px solid var(--line); }
.know__links a { font-size: var(--fs-xs); font-weight: 600; padding: .3rem .7rem; border-radius: var(--r-pill); background: #fff; border: 1px solid var(--line); transition: background-color .2s var(--ease), color .2s var(--ease); }
.know__links a:hover { background: var(--g-soft); color: var(--g-dark); }

/* --- FAQ ---------------------------------------------------------------- */
.faq { max-width: 860px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.35rem 0;
  font-family: var(--display); font-size: 1.0625rem; font-weight: 700;
  cursor: pointer; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--g-dark); transition: transform .25s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq__a { padding-bottom: 1.35rem; color: var(--muted); max-width: 72ch; }
.faq__a a { color: var(--g-dark); font-weight: 600; border-bottom: 1px solid var(--g-line); }
.faq__a p + p { margin-top: .75rem; }

/* --- Kontakt ------------------------------------------------------------ */
.contact { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 1rem + 3vw, 4rem); align-items: center; }
.contact h2 { font-size: var(--fs-d2); }
.contact p { margin-top: 1rem; color: rgba(255,255,255,.8); max-width: 46ch; }
.contact__links { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.callcard { padding: clamp(1.5rem, 1rem + 1.5vw, 2.25rem); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-lg); }
.callcard dt { font-size: var(--fs-xs); letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.callcard dd { margin: .25rem 0 1.25rem; font-family: var(--display); font-size: 1.5rem; font-weight: 700; }
.callcard dd:last-child { margin-bottom: 0; }
.callcard a:hover { color: #8ee07f; }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }

/* --- Stopka ------------------------------------------------------------- */
.ft { padding-block: clamp(3rem, 2rem + 3vw, 5rem) 0; background: var(--mist); }
.ft__top { display: grid; grid-template-columns: 1.3fr repeat(4, 1fr); gap: 2rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line); }
.ft__brand img { width: 170px; }
.ft__brand p { margin-top: 1rem; font-size: var(--fs-sm); color: var(--muted); max-width: 34ch; }
.ft h3 { font-size: var(--fs-xs); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-family: var(--sans); font-weight: 700; margin-bottom: .9rem; }
.ft ul { list-style: none; padding: 0; display: grid; gap: .5rem; }
.ft ul a { font-size: .9375rem; color: var(--ink); }
.ft ul a:hover { color: var(--g-dark); }
.ft__topics { display: flex; flex-wrap: wrap; gap: .5rem; padding-block: 2rem; }
.ft__topics a { font-size: var(--fs-xs); padding: .35rem .8rem; border: 1px solid var(--line); border-radius: var(--r-pill); color: var(--muted); }
.ft__topics a:hover { border-color: var(--g); color: var(--g-dark); }
.ft__bar { padding-block: 1.25rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: var(--fs-xs); color: var(--muted); }
.ft__bar a { color: var(--ink); }
@media (max-width: 900px) { .ft__top { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .ft__top { grid-template-columns: 1fr; } }

@media (min-width: 1100px) { .steps { grid-template-columns: repeat(5, 1fr); } }
