/* ==========================================================================
   NJY Technology — arkusz stylów strony njytech.pl
   Kolejność: zmienne → reset → typografia → layout → komponenty → animacje → RWD
   ========================================================================== */

:root {
  --ink:        #111111;
  --paper:      #FAFAF8;
  --white:      #FFFFFF;
  --em-050:     #C9F2DE;
  --em-100:     #9BF0CB;
  --em-300:     #3FD68E;
  --em-400:     #22B573;
  --em-500:     #16915D;
  --em-600:     #14804F;
  --em-800:     #0C5636;
  --em-mint:    #74DDAC;
  --grey-400:   #9CA3AF;
  --grey-500:   #6B7280;
  --grey-600:   #4B5563;
  --grey-700:   #374151;

  --line:       rgba(17, 17, 17, 0.07);
  --line-soft:  rgba(17, 17, 17, 0.06);
  --line-input: rgba(17, 17, 17, 0.13);

  --font-display: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-body:    'Instrument Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --wrap:  1180px;
  --ease:  cubic-bezier(0.22, 1, 0.36, 1);
  --radius-card: 20px;
  --shadow-card: 0 20px 50px rgba(17, 17, 17, 0.08);
}

/* ---------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  font-family: var(--font-body);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

img, svg { max-width: 100%; }
img { height: auto; border: 0; }

a { color: var(--em-600); text-decoration: none; transition: color .2s; }
a:hover { color: var(--em-400); }

::selection { background: var(--em-050); }

:focus-visible {
  outline: 3px solid rgba(34, 181, 115, 0.55);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 20px;
  border-radius: 0 0 12px 12px;
  font-weight: 500;
  transition: top .2s;
}
.skip-link:focus { top: 0; color: var(--paper); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------------------------------------------------------------- typografia */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--em-600);   /* 4.75:1 na #FAFAF8 — WCAG AA dla tekstu 13 px */
  margin: 0 0 14px;
}
.eyebrow--on-dark { color: var(--em-300); }

.section-title {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.15;
}

.lead {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--grey-600);
  text-wrap: pretty;
}

/* ---------------------------------------------------------------- layout */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: 24px;
}

.section { padding: 90px 0; }
.section--tight { padding: 110px 0 60px; }

.section-head {
  max-width: 560px;
  margin-bottom: 56px;
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

/* ---------------------------------------------------------------- nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(250, 250, 248, 0.82);
  border-bottom: 1px solid var(--line-soft);
}

.nav {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand__word {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 4px;
  font-size: 17px;
}
.brand__word-sub {
  display: inline-block;
  font-size: 0.72em;
  font-weight: 400;
  letter-spacing: 0.04em;
  opacity: 0.78;
}


.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 500;
}
.nav__links a:not(.btn) { color: var(--ink); }
.nav__links a:not(.btn):hover { color: var(--em-600); }

.nav__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(17, 17, 17, 0.14);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
}
.nav__burger .icon-close { display: none; }
.nav__burger[aria-expanded="true"] .icon-open  { display: none; }
.nav__burger[aria-expanded="true"] .icon-close { display: block; }

.nav__mobile {
  display: none;
  border-top: 1px solid var(--line-soft);
  padding: 12px 24px 22px;
  gap: 4px;
  font-size: 16px;
  font-weight: 500;
  background: rgba(250, 250, 248, 0.97);
}
.nav__mobile.is-open { display: grid; }
.nav__mobile a:not(.btn) {
  color: var(--ink);
  padding: 12px 6px;
  border-radius: 10px;
}
.nav__mobile a:not(.btn):hover { color: var(--em-600); }
.nav__mobile .btn { text-align: center; margin-top: 8px; }

/* ---------------------------------------------------------------- przyciski */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15.5px;
  padding: 15px 30px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .25s, color .25s, transform .25s, box-shadow .25s, border-color .25s;
}

.btn--primary {
  background: var(--ink);
  color: var(--paper);
}
.btn--primary:hover {
  background: var(--em-600);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(20, 128, 79, 0.28);
}

.btn--ghost {
  color: var(--ink);
  border-color: rgba(17, 17, 17, 0.16);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--em-400);
  background: rgba(34, 181, 115, 0.06);
  color: var(--ink);
}

.btn--sm { padding: 10px 22px; font-size: 14.5px; }

/* ---------------------------------------------------------------- hero */
.hero {
  position: relative;
  padding: 96px 0 110px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__blob-a,
.hero__blob-b {
  position: absolute;
  border-radius: 50%;
}
.hero__blob-a {
  top: -140px; right: -120px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(34, 181, 115, 0.13), transparent 65%);
  animation: njy-float 14s ease-in-out infinite;
}
.hero__blob-b {
  bottom: -180px; left: -140px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(63, 214, 142, 0.10), transparent 65%);
  animation: njy-float2 18s ease-in-out infinite;
}
.hero__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(17, 17, 17, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 35%, black, transparent);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 35%, black, transparent);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 1.15fr) minmax(260px, 0.85fr);
  gap: 48px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(34, 181, 115, 0.35);
  background: rgba(34, 181, 115, 0.07);
  color: #11764A;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 100px;
}
.badge__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--em-400);
  display: inline-block;
}

.hero h1 {
  font-size: clamp(38px, 5.4vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 26px 0 22px;
}
.hero h1 em { font-style: normal; color: var(--em-500); }

.hero__lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--grey-600);
  max-width: 480px;
  margin: 0 0 36px;
  text-wrap: pretty;
}

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__art {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}
.hero__medallion {
  position: relative;
  width: min(340px, 80vw);
  aspect-ratio: 1;
}
.hero__orbit {
  position: absolute;
  inset: 0;
  animation: njy-orbit 40s linear infinite;
}
.hero__disc {
  position: absolute;
  inset: 34px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.09), 0 0 0 1px rgba(17, 17, 17, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: njy-fade 1s .2s both;
}

/* wejście hero */
.hero .badge      { animation: njy-rise .8s var(--ease) both; }
.hero h1          { animation: njy-rise .9s var(--ease) .12s both; }
.hero__lead       { animation: njy-rise .9s var(--ease) .24s both; }
.hero__cta        { animation: njy-rise .9s var(--ease) .36s both; }

/* ---------------------------------------------------------------- marquee */
.marquee {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--white);
  overflow: hidden;
  padding: 18px 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: njy-marquee 26s linear infinite;
}
.marquee__row {
  display: flex;
  gap: 56px;
  padding-right: 56px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: var(--grey-500);
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__row i { font-style: normal; color: var(--em-400); }

/* ---------------------------------------------------------------- karty usług */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 34px 30px;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(34, 181, 115, 0.4);
}
.card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(34, 181, 115, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.card h3 { font-size: 20px; margin: 0 0 12px; }
.card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--grey-600);
  margin: 0;
  text-wrap: pretty;
}

/* ---------------------------------------------------------------- proces */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.step {
  padding: 28px 26px;
  border-radius: var(--radius-card);
  background: var(--white);
  border: 1px solid var(--line);
}
.step__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  background: var(--ink);
  width: 34px; height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.step h3 { font-size: 18px; margin: 18px 0 10px; }
.step p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--grey-600);
  margin: 0;
}
.step--dark { background: var(--ink); border-color: var(--ink); }
.step--dark .step__num { background: var(--em-300); color: var(--ink); }
.step--dark h3 { color: var(--paper); }
.step--dark p  { color: var(--grey-400); }

/* ---------------------------------------------------------------- efekty */
.stats-panel {
  background: var(--ink);
  border-radius: 28px;
  padding: clamp(40px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}
.stats-panel__glow {
  position: absolute;
  top: -120px; right: -100px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 181, 115, 0.22), transparent 65%);
  animation: njy-float 16s ease-in-out infinite;
}
.stats-panel .section-head { position: relative; max-width: 520px; margin-bottom: 48px; }
.stats-panel .section-title { color: var(--paper); }

.stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
}
.stat__value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 4.5vw, 56px);
  line-height: 1.05;
  color: var(--paper);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.stat__value--accent { color: var(--em-300); }
.stat p {
  font-size: 15px;
  color: var(--grey-400);
  margin: 8px 0 0;
}
.stats-note {
  position: relative;
  font-size: 12.5px;
  color: var(--grey-400);
  margin: 40px 0 0;
}

/* ---------------------------------------------------------------- lista „dla kogo” */
.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.checklist li {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 22px;
  font-size: 15.5px;
  font-weight: 500;
}
.checklist svg { flex-shrink: 0; }

/* ---------------------------------------------------------------- kontakt */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 1.1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  font-size: 15.5px;
}
.contact-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 500;
}
.contact-list a:hover { color: var(--em-600); }

.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(26px, 4vw, 40px);
  display: grid;
  gap: 18px;
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.05);
}
.form__fields { display: grid; gap: 18px; }
.form label {
  display: grid;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--grey-700);
}
.form input[type="text"],
.form input[type="email"],
.form textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 16px;
  border: 1.5px solid var(--line-input);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  outline: none;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.form textarea { resize: vertical; min-height: 110px; }
.form input:focus,
.form textarea:focus {
  border-color: var(--em-400);
  box-shadow: 0 0 0 3px rgba(34, 181, 115, 0.15);
}
.form input[aria-invalid="true"],
.form textarea[aria-invalid="true"] { border-color: #DC2626; }

.form__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12.5px;
  color: var(--grey-500);
  line-height: 1.5;
  font-weight: 400;
}
.form__consent input {
  margin-top: 2px;
  accent-color: var(--em-400);
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.form__consent a { text-decoration: underline; }

.form__honey {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  opacity: 0;
}

.form button[type="submit"] { font-family: var(--font-display); width: 100%; }
.form button[disabled] { opacity: .6; cursor: progress; }

.form__error {
  font-size: 13.5px;
  color: #B91C1C;
  background: rgba(220, 38, 38, 0.07);
  border: 1px solid rgba(220, 38, 38, 0.25);
  border-radius: 12px;
  padding: 12px 14px;
  margin: 0;
}

.form__success {
  text-align: center;
  padding: 40px 10px;
}
.form__success h3 { font-size: 21px; margin: 0 0 10px; }
.form__success p { font-size: 15px; color: var(--grey-600); margin: 0; }
.form__success svg { margin-bottom: 18px; }

[hidden] { display: none !important; }

/* ---------------------------------------------------------------- footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 44px 0;
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-footer__brand span {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 3px;
  font-size: 14px;
}
.site-footer__links {
  display: flex;
  gap: 24px;
  font-size: 13.5px;
  color: var(--grey-500);
  flex-wrap: wrap;
}
.site-footer__links a { color: var(--grey-500); }
.site-footer__links a:hover { color: var(--em-600); }
.site-footer__legal {
  font-size: 13px;
  color: var(--grey-500);
  margin: 0;
}

/* ---------------------------------------------------------------- baner cookies */
.cookie-bar {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 90;
  max-width: 720px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--paper);
  border-radius: 18px;
  padding: 20px 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 60px rgba(17, 17, 17, 0.3);
  animation: njy-rise .5s var(--ease) both;
}
.cookie-bar p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--grey-400);
  flex: 1 1 320px;
}
.cookie-bar a { color: var(--em-300); text-decoration: underline; }
.cookie-bar__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-bar .btn--primary { background: var(--em-400); color: var(--ink); }
.cookie-bar .btn--primary:hover { background: var(--em-300); color: var(--ink); }
.cookie-bar .btn--ghost { color: var(--paper); border-color: rgba(250, 250, 248, 0.3); }
.cookie-bar .btn--ghost:hover { border-color: var(--paper); background: rgba(250, 250, 248, 0.08); color: var(--paper); }

/* ---------------------------------------------------------------- strony treściowe */
.doc {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}
.doc h1 {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.15;
  margin-bottom: 10px;
}
.doc__meta {
  font-size: 13.5px;
  color: var(--grey-500);
  margin: 0 0 44px;
}
.doc h2 {
  font-size: 21px;
  margin: 44px 0 14px;
}
.doc h3 {
  font-size: 17px;
  margin: 28px 0 10px;
}
.doc p, .doc li {
  font-size: 15.5px;
  line-height: 1.72;
  color: var(--grey-600);
}
.doc ul, .doc ol { padding-left: 22px; }
.doc li { margin-bottom: 8px; }
.doc strong { color: var(--ink); }
.doc table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  margin: 18px 0;
}
.doc th, .doc td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  color: var(--grey-600);
}
.doc th { color: var(--ink); font-weight: 600; background: var(--white); }
.doc__todo {
  background: rgba(34, 181, 115, 0.07);
  border: 1px dashed rgba(34, 181, 115, 0.45);
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 14px;
  color: var(--em-800);
}

/* ---------------------------------------------------------------- animacje */
@keyframes njy-rise   { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes njy-fade   { from { opacity: 0; } to { opacity: 1; } }
@keyframes njy-draw   { to { stroke-dashoffset: 0; } }
@keyframes njy-leaf   { 0% { opacity: 0; transform: scale(.6) rotate(-8deg); } 60% { opacity: 1; transform: scale(1.04) rotate(1.5deg); } 100% { opacity: 1; transform: scale(1) rotate(0); } }
@keyframes njy-float  { 0%, 100% { transform: translate(0, 0); } 33% { transform: translate(24px, -30px); } 66% { transform: translate(-18px, 22px); } }
@keyframes njy-float2 { 0%, 100% { transform: translate(0, 0); } 40% { transform: translate(-28px, 26px); } 75% { transform: translate(20px, -18px); } }
@keyframes njy-orbit  { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes njy-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.js-draw {
  stroke-dasharray: 270;
  stroke-dashoffset: 270;
  animation: njy-draw 1.6s cubic-bezier(.6, 0, .2, 1) .5s forwards;
}
.js-leaf {
  transform-origin: 60px 60px;
  animation: njy-leaf 1.1s cubic-bezier(.34, 1.4, .5, 1) 1.5s both;
}

/* Stan startowy nakładamy TYLKO gdy JavaScript działa — bez niego treść
   musi być widoczna od razu (klasa `js` dodawana inline w <head>). */
.js .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

.js .stagger > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.stagger.is-in > * { opacity: 1; transform: translateY(0); }
.stagger.is-in > *:nth-child(1) { transition-delay: .05s; }
.stagger.is-in > *:nth-child(2) { transition-delay: .17s; }
.stagger.is-in > *:nth-child(3) { transition-delay: .29s; }
.stagger.is-in > *:nth-child(4) { transition-delay: .41s; }

/* ---------------------------------------------------------------- RWD */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; min-height: 0; }
  .hero__medallion { width: min(260px, 62vw); }
  .hero { padding: 56px 0 80px; }
}

@media (max-width: 840px) {
  .nav__links   { display: none; }
  .nav__burger  { display: inline-flex; }
  .grid-2,
  .contact-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .section--tight { padding: 76px 0 44px; }
  .section-head { margin-bottom: 36px; }
  .stats { gap: 28px; }
}

@media (max-width: 520px) {
  .wrap { padding-inline: 20px; }
  .card { padding: 28px 24px; }
  .site-footer__inner { flex-direction: column; align-items: flex-start; gap: 18px; }
  .cookie-bar { padding: 18px; }
  .cookie-bar__actions .btn { flex: 1 1 auto; }
}

/* ---------------------------------------------------------------- a11y: mniej ruchu */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .stagger > *,
  .js .reveal, .js .stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ---------------------------------------------------------------- druk */
@media print {
  .site-header, .cookie-bar, .hero__bg, .marquee, .form { display: none !important; }
  body { background: #fff; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 11px; color: #666; }
}
