/* =========================================================================
   LP „Premiera dekady" — arkusz stylów.
   Tokeny 1:1 z design systemu socialive.com.pl (src/styles/tokens.css),
   rozszerzone o warstwę „neon" wymuszoną przez estetykę ebooka.
   Bez zależności od buildu WWW2 — plik jest samowystarczalny.
   ========================================================================= */

/* --- @font-face (lokalne woff2) ------------------------------------------ */
@font-face {
  font-family: "Kanit";
  src: url("../fonts/Kanit-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kanit";
  src: url("../fonts/Kanit-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kanit";
  src: url("../fonts/Kanit-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SpecialGothicExpandedOne";
  src: url("../fonts/SpecialGothicExpandedOne-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* --- Tokeny -------------------------------------------------------------- */
:root {
  /* Kolory marki (Figma variables) */
  --color-off-black: #232323;
  --color-yellow: #f2ff3e;
  --color-green: #3eff85;
  --color-blue: #a4dfff;
  --color-purple: #687ae6;
  --color-grey: #f7f7f7;
  --color-white: #ffffff;

  /* Warstwa neon (z okładki ebooka) — tylko akcenty, nie tekst */
  --neon-magenta: #ff2fb0;
  --neon-violet: #7b2ff7;
  --ink-900: #141414; /* tło sekcji ciemnych, głębsze niż off-black */

  /* Aliasy semantyczne */
  --color-text: var(--color-off-black);
  --color-text-invert: var(--color-white);
  --color-text-muted: #5b5b5b;
  --color-text-muted-invert: rgba(255, 255, 255, 0.66);
  --color-border: rgba(35, 35, 35, 0.12);
  --color-border-invert: rgba(255, 255, 255, 0.16);
  --color-focus: #1652ff;

  /* Typografia */
  --font-base: "Kanit", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: "SpecialGothicExpandedOne", "Kanit", sans-serif;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;

  --fs-body: 1.125rem;
  --lh-body: 1.45;
  --fs-body-sm: 0.9375rem;
  --lh-body-sm: 1.4;
  --ls-label: 0.3125rem;

  --fs-display: clamp(1.875rem, 4.4vw, 3.25rem);
  --fs-h2: clamp(1.75rem, 4vw, 2.75rem);
  --fs-h3: clamp(1.125rem, 2.2vw, 1.5rem);

  /* Przestrzeń */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;
  --space-section: clamp(3rem, 6.5vw, 5.5rem);

  /* Promienie */
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* Layout */
  --container-max: 1180px;
  --container-pad: clamp(1rem, 4vw, 2.5rem);

  /* Cienie */
  --shadow-md: 0 10px 30px rgba(35, 35, 35, 0.08);
  --shadow-lift: 0 24px 60px rgba(0, 0, 0, 0.45);

  /* Ruch */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 140ms;
  --dur: 240ms;

  --z-sticky: 90;
}

/* --- Reset --------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 4.5rem;
  -webkit-tap-highlight-color: transparent;
}
body {
  font-family: var(--font-base);
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,
svg,
picture {
  display: block;
  max-width: 100%;
  height: auto;
}
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
  background: none;
  border: none;
}
ul[role="list"] {
  list-style: none;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
p,
li {
  text-wrap: pretty;
}
h1,
h2,
h3 {
  text-wrap: balance;
  line-height: 1.06;
  font-weight: var(--fw-regular);
}

/* --- A11y ---------------------------------------------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  left: var(--space-md);
  top: 0;
  z-index: 300;
  transform: translateY(-150%);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-yellow);
  color: var(--color-off-black);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: transform var(--dur) var(--ease);
}
.skip-link:focus {
  transform: translateY(0);
}
:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 2px;
  border-radius: 2px;
}
.on-dark :focus-visible {
  outline-color: var(--color-yellow);
}

/* --- Layout helpers ------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.section {
  padding-block: var(--space-section);
}
.section--dark {
  background: var(--ink-900);
  color: var(--color-white);
}
.section--grey {
  background: var(--color-grey);
}
.label {
  font-family: var(--font-base);
  font-weight: var(--fw-medium);
  font-size: 0.8125rem;
  line-height: 1.2;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
}
.label--yellow {
  color: var(--color-yellow);
}
.label--muted {
  color: var(--color-text-muted);
}
.h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  letter-spacing: -0.01em;
}
.lead {
  font-size: clamp(1rem, 1.6vw, 1.1875rem);
  max-width: 62ch;
}
.muted {
  color: var(--color-text-muted);
}
.on-dark .muted,
.section--dark .muted {
  color: var(--color-text-muted-invert);
}

/* --- Przyciski (wariant DS) ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: var(--fw-medium);
  font-size: var(--fs-body-sm);
  line-height: 1;
  letter-spacing: 0.01em;
  text-align: center;
  transition:
    transform var(--dur-fast) var(--ease),
    background-color var(--dur) var(--ease),
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn--yellow {
  background: var(--color-yellow);
  color: var(--color-off-black);
  border: 2px solid var(--color-off-black);
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 0.85rem 1.7rem;
}
.btn--yellow:hover {
  background: var(--color-off-black);
  color: var(--color-yellow);
}
.btn--green {
  background: var(--color-green);
  color: var(--color-off-black);
}
.btn--ghost {
  border: 1.5px solid currentColor;
}
.btn--block {
  width: 100%;
}

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
  background: var(--ink-900);
  color: var(--color-white);
  padding-block: var(--space-md);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.site-header__logo img {
  height: 26px;
  width: auto;
}
.site-header__meta {
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 560px) {
  .site-header__meta {
    display: none;
  }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  background: var(--ink-900);
  color: var(--color-white);
  padding-block: clamp(2rem, 5vw, 3.5rem) clamp(2.5rem, 6vw, 4.5rem);
  overflow: hidden;
  isolation: isolate;
}
/* neonowa poświata — czysta CSS, zero assetów cudzej marki */
.hero::before {
  content: "";
  position: absolute;
  inset: 30% -14% 0 -14%;
  background:
    radial-gradient(58% 72% at 42% 100%, rgba(242, 255, 62, 0.26) 0%, transparent 60%),
    radial-gradient(52% 62% at 14% 98%, rgba(123, 47, 247, 0.42) 0%, transparent 66%),
    radial-gradient(48% 56% at 76% 96%, rgba(255, 47, 176, 0.3) 0%, transparent 64%);
  filter: blur(6px);
  z-index: -1;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-purple),
    var(--neon-magenta),
    var(--color-yellow),
    var(--color-green)
  );
  z-index: -1;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 420px);
  grid-template-rows: auto auto;
  gap: clamp(1.5rem, 3vw, 2.25rem) clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.hero__intro {
  grid-column: 1;
  grid-row: 1;
}
.hero__proof {
  grid-column: 1;
  grid-row: 2;
}
.hero__grid > .lead-card {
  grid-column: 2;
  grid-row: 1 / span 2;
}

/* Na wąskim ekranie formularz wchodzi tuż pod nagłówek — dowody schodzą
   pod niego. Bez tego karta lądowałaby dwa ekrany niżej. */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: var(--space-xl);
  }
  .hero__intro,
  .hero__proof,
  .hero__grid > .lead-card {
    grid-column: 1;
    grid-row: auto;
  }
  .hero__intro {
    order: 0;
  }
  .hero__grid > .lead-card {
    order: 1;
  }
  .hero__proof {
    order: 2;
  }
}

.hero__eyebrow {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  margin-bottom: var(--space-lg);
  color: var(--color-yellow);
}
.hero__eyebrow span::after {
  content: " /";
  color: rgba(255, 255, 255, 0.3);
}
.hero__eyebrow span:last-child::after {
  content: "";
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  letter-spacing: -0.015em;
  margin-bottom: var(--space-lg);
}

.hero__sub {
  font-size: clamp(1rem, 1.45vw, 1.1875rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 52ch;
}

.hero__points {
  display: grid;
  gap: 0.7rem;
  margin-bottom: var(--space-xl);
  padding: 0;
}
.hero__points li {
  display: grid;
  grid-template-columns: 1.15rem 1fr;
  gap: 0.7rem;
  align-items: start;
  font-size: 1rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
}
.hero__points li::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.36rem;
  border-radius: 2px;
  background: var(--color-green);
  transform: rotate(45deg);
}
.hero__points li:nth-child(2)::before {
  background: var(--color-blue);
}
.hero__points li:nth-child(3)::before {
  background: var(--neon-magenta);
}

/* okładka + „co to jest" */
.hero__cover {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-invert);
}
.hero__cover img {
  width: 108px;
  border-radius: 4px;
  box-shadow: var(--shadow-lift);
}
.hero__cover-meta {
  font-size: 0.875rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.66);
}
.hero__cover-meta strong {
  display: block;
  color: var(--color-white);
  font-weight: var(--fw-medium);
}

/* =========================================================================
   KARTA FORMULARZA
   ========================================================================= */
.lead-card {
  background: var(--color-white);
  color: var(--color-off-black);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 2.4vw, 1.9rem);
  box-shadow: var(--shadow-lift);
  position: relative;
}
.lead-card--dark {
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-white);
  border: 1px solid var(--color-border-invert);
  box-shadow: none;
  backdrop-filter: blur(6px);
}
.lead-card__badge {
  display: inline-block;
  background: var(--color-yellow);
  color: var(--color-off-black);
  font-weight: var(--fw-medium);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-md);
}
.lead-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  line-height: 1.1;
  margin-bottom: var(--space-xs);
}
.lead-card__note {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}
.lead-card--dark .lead-card__note {
  color: rgba(255, 255, 255, 0.66);
}

.field {
  margin-bottom: var(--space-md);
}
.field__label {
  display: block;
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  margin-bottom: 0.35rem;
}
.field input[type="email"],
.field input[type="text"] {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-grey);
  font-size: 1rem;
  transition:
    border-color var(--dur) var(--ease),
    background-color var(--dur) var(--ease);
}
.lead-card--dark .field input[type="email"],
.lead-card--dark .field input[type="text"] {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--color-border-invert);
  color: var(--color-white);
}
.field input::placeholder {
  color: #9a9a9a;
}
.field input:focus {
  border-color: var(--color-off-black);
  background: var(--color-white);
  outline: none;
}
.lead-card--dark .field input:focus {
  border-color: var(--color-yellow);
  background: rgba(255, 255, 255, 0.1);
}
.field input[aria-invalid="true"] {
  border-color: #d92d20;
}

/* honeypot */
.hp {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent {
  display: grid;
  grid-template-columns: 1.15rem 1fr;
  gap: 0.6rem;
  align-items: start;
  font-size: 0.8125rem;
  line-height: 1.35;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}
.lead-card--dark .consent {
  color: rgba(255, 255, 255, 0.7);
}
.consent input[type="checkbox"] {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0.12rem 0 0;
  accent-color: var(--color-off-black);
  flex: none;
}
.lead-card--dark .consent input[type="checkbox"] {
  accent-color: var(--color-yellow);
}
.consent a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal {
  font-size: 0.75rem;
  line-height: 1.4;
  color: #8a8a8a;
  margin-top: var(--space-sm);
}
.lead-card--dark .legal {
  color: rgba(255, 255, 255, 0.5);
}
.legal details {
  margin-top: 0.4rem;
}
.legal summary {
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal details p {
  margin-top: 0.4rem;
}

.form-status {
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius-sm);
}
.form-status--err {
  background: #fdecec;
  color: #a12018;
}
.lead-card--dark .form-status--err {
  background: rgba(255, 90, 80, 0.14);
  color: #ffb4ae;
}

/* stan „dziękujemy" */
.thanks {
  text-align: left;
}
.thanks__mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-green);
  color: var(--color-off-black);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: var(--space-md);
}
.thanks__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  margin-bottom: var(--space-xs);
}
.thanks__text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}
.lead-card--dark .thanks__text {
  color: rgba(255, 255, 255, 0.7);
}

/* =========================================================================
   PASEK LICZB
   ========================================================================= */
.ticker {
  background: var(--color-yellow);
  color: var(--color-off-black);
  padding-block: var(--space-lg);
}
.ticker__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}
@media (max-width: 760px) {
  .ticker__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.ticker__num {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 3vw, 2rem);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.ticker__desc {
  font-size: 0.8125rem;
  line-height: 1.3;
  opacity: 0.78;
}

/* =========================================================================
   ROZDZIAŁY
   ========================================================================= */
.chapters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
@media (max-width: 900px) {
  .chapters {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .chapters {
    grid-template-columns: 1fr;
  }
}
.chapter {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-lg);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.chapter:hover {
  transform: translateY(-2px);
  border-color: var(--color-off-black);
}
.chapter__no {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--color-purple);
  margin-bottom: 0.5rem;
}
.chapter__title {
  font-size: 1.0625rem;
  font-weight: var(--fw-medium);
  line-height: 1.25;
  margin-bottom: 0.35rem;
}
.chapter__desc {
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--color-text-muted);
}

/* =========================================================================
   DZIEWIĘĆ LICZB
   ========================================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border-invert);
  border: 1px solid var(--color-border-invert);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: var(--space-xl);
}
@media (max-width: 760px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 440px) {
  .stats {
    grid-template-columns: 1fr;
  }
}
.stat {
  background: var(--ink-900);
  padding: var(--space-lg);
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  line-height: 1;
  color: var(--color-yellow);
  margin-bottom: 0.4rem;
}
.stat:nth-child(3n + 2) .stat__num {
  color: var(--color-green);
}
.stat:nth-child(3n) .stat__num {
  color: var(--color-blue);
}
.stat__desc {
  font-size: 0.875rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.72);
}
.stat__src {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  border: 1px solid var(--color-border-invert);
  border-radius: var(--radius-pill);
  padding: 0.15rem 0.5rem;
}

/* =========================================================================
   DWIE KOLUMNY (dla kogo / czego nie ma)
   ========================================================================= */
.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}
@media (max-width: 760px) {
  .split {
    grid-template-columns: 1fr;
  }
}
.split__col h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
}
.tick {
  display: grid;
  gap: 0.6rem;
  padding: 0;
}
.tick li {
  display: grid;
  grid-template-columns: 1.2rem 1fr;
  gap: 0.6rem;
  font-size: 0.9375rem;
  line-height: 1.4;
}
.tick li::before {
  content: "+";
  font-weight: var(--fw-semibold);
  color: var(--color-off-black);
  line-height: 1.4;
}
.tick--no li::before {
  content: "−";
  color: #b0b0b0;
}
.tick--no li {
  color: var(--color-text-muted);
}

/* =========================================================================
   CYTAT
   ========================================================================= */
.pullquote {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
@media (max-width: 860px) {
  .pullquote {
    grid-template-columns: 1fr;
  }
}
.pullquote__text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.6vw, 1.875rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.pullquote__text span {
  color: var(--color-yellow);
}
.pullquote__cite {
  margin-top: var(--space-md);
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.pullquote__img {
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-invert);
  overflow: hidden;
  max-width: 460px;
  margin-inline: auto;
}
.pullquote__img img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: top center;
}

/* =========================================================================
   CTA KOŃCOWE
   ========================================================================= */
.cta {
  background: var(--ink-900);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0 -14%;
  background:
    radial-gradient(44% 78% at 12% 46%, rgba(104, 122, 230, 0.3) 0%, transparent 62%),
    radial-gradient(40% 72% at 88% 60%, rgba(242, 255, 62, 0.13) 0%, transparent 60%);
  z-index: -1;
}
.cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
@media (max-width: 900px) {
  .cta__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================================
   LOGOTYPY
   ========================================================================= */
.logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: var(--space-lg);
}
.logos img {
  height: 22px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(1);
}

/* =========================================================================
   STICKY CTA (mobile)
   ========================================================================= */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-sticky);
  background: var(--ink-900);
  border-top: 2px solid var(--color-yellow);
  padding: 0.7rem var(--container-pad);
  display: none;
  align-items: center;
  gap: var(--space-md);
  transform: translateY(110%);
  transition: transform var(--dur) var(--ease);
}
.sticky-cta[data-visible="true"] {
  transform: translateY(0);
}
.sticky-cta__text {
  flex: 1;
  min-width: 0;
  font-size: 0.8125rem;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.8);
}
.sticky-cta__text strong {
  display: block;
  color: var(--color-white);
  font-weight: var(--fw-medium);
  font-size: 0.9375rem;
}
@media (max-width: 900px) {
  .sticky-cta {
    display: flex;
  }
  body {
    padding-bottom: 4.5rem;
  }
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
  background: var(--color-off-black);
  color: rgba(255, 255, 255, 0.6);
  padding-block: var(--space-xl);
  font-size: 0.8125rem;
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-xl);
  align-items: center;
  justify-content: space-between;
}
.site-footer a:hover {
  color: var(--color-yellow);
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* --- Ruch ---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
