@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

/* Motyw: jeden, ciemny, na całą stronę. Promień: 16px kafle, 10px elementy małe. */
:root {
  --bg: #061426;
  --bg-2: #08192f;
  --surface: #0b2140;
  --line: rgba(255, 255, 255, .09);
  --line-2: rgba(255, 255, 255, .16);
  --text: #e9eff8;
  --muted: #95a9c2;
  --orange: #ff6b0b;
  --orange-2: #ff8127;
  --ok: #4ecfa4;
  --warn: #ffb020;
  --r: 16px;
  --r-s: 10px;
  --container: 1180px;
}

* { box-sizing: border-box }
html { scroll-behavior: smooth }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 16px/1.65 Manrope, Arial, sans-serif;
  overflow-x: hidden;
}

img { display: block; max-width: 100% }
a { color: inherit }
h1, h2, h3 { font-family: "Space Grotesk", Manrope, sans-serif; letter-spacing: -.03em }
em { font-style: normal; color: var(--orange) }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto }
.section { padding: 104px 0 }

.skip-link {
  position: fixed; z-index: 100; left: 16px; top: 8px;
  padding: 10px 16px; border-radius: var(--r-s);
  background: #fff; color: #000; transform: translateY(-160%);
}
.skip-link:focus { transform: none }
a:focus-visible, .btn:focus-visible { outline: 3px solid #7cb8ff; outline-offset: 3px }

/* --- nagłówek strony: pływający, przyklejony do góry --- */
/* Stan domyślny ma tło. Klasę `na-gorze` zdejmującą tło dokłada skrypt, więc gdy
   skrypt nie zadziała, nagłówek zostaje czytelny nad treścią, a nie przezroczysty.
   Odwrotna kolejność (domyślnie przezroczysty, tło po przewinięciu) przy niedziałającym
   obserwatorze daje nawigację wtopioną w treść, czyli błąd nie do zauważenia w kodzie. */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 20;
  background: rgba(6, 20, 38, .82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
/* Nad hero, gdzie tło strony i tak jest ciemne, nagłówek zlewa się ze sceną. */
.site-header.na-gorze {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}
/* Gdy przeglądarka ogranicza przezroczystość, dajemy pełne tło zamiast rozmycia. */
@media (prefers-reduced-transparency: reduce) {
  .site-header { background: var(--bg); backdrop-filter: none; -webkit-backdrop-filter: none }
}

/* Czujnik na górze strony, bez wpływu na układ. */
#czujnik-gory { position: absolute; top: 0; left: 0; width: 1px; height: 24px; pointer-events: none }

/* Nagłówek jest przyklejony, więc kotwice muszą zostawić na niego miejsce. */
:where(section, main)[id] { scroll-margin-top: 92px }

.nav {
  height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: height .3s ease;
}
.site-header.na-gorze .nav { height: 80px }
.brand { display: grid; place-items: center }
.brand img { width: auto; height: 46px; transition: height .3s ease }
.site-header.na-gorze .brand img { height: 60px }
.nav nav { display: flex; gap: 24px }
.nav nav a { color: #c2d1e6; font-size: 14px; font-weight: 600; text-decoration: none; transition: color .2s }
.nav nav a:hover { color: #fff }

/* --- przyciski --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 24px; border-radius: var(--r-s);
  background: var(--orange); color: #08182e;
  font-size: 14px; font-weight: 800; text-decoration: none;
  transition: background .2s, transform .2s;
}
.btn:hover { background: var(--orange-2) }
.btn:active { transform: translateY(1px) }
.btn-sm { min-height: 42px; padding: 0 18px }

/* Przycisk wysylki: uniesiony, z podswietleniem u gory i cieniem w kolorze akcentu.
   Strzalka drgnie na hover, zeby bylo widac, ze to koniec formularza. */
.btn-send {
  gap: 12px; min-height: 54px; padding: 0 30px; border: 0; font-family: inherit; cursor: pointer;
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  box-shadow: 0 12px 26px rgba(255, 107, 11, .22), inset 0 1px 0 rgba(255, 255, 255, .38);
}
.btn-send:hover {
  background: linear-gradient(180deg, #ff9243, var(--orange-2));
  box-shadow: 0 16px 32px rgba(255, 107, 11, .3), inset 0 1px 0 rgba(255, 255, 255, .5);
}
.btn-send:active { transform: translateY(1px); box-shadow: 0 6px 16px rgba(255, 107, 11, .22), inset 0 1px 0 rgba(255, 255, 255, .3) }
.btn-send span { font-size: 17px; line-height: 1; transition: transform .25s }
.btn-send:hover span { transform: translateX(4px) }

.link {
  display: inline-flex; align-items: center; gap: 10px; min-height: 48px;
  color: var(--text); font-size: 14px; font-weight: 700; text-decoration: none;
}
.link span { color: var(--orange) }
.link:hover { color: #fff }

.eyebrow {
  margin: 0 0 20px; color: var(--orange);
  font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
}

.head { max-width: 720px; margin-bottom: 56px }
.head h2 { margin: 0; font-size: clamp(34px, 4.2vw, 54px); font-weight: 600; line-height: 1.06 }
.head p { margin: 22px 0 0; color: var(--muted); max-width: 60ch }

/* --- hero --- */
.hero {
  position: relative; padding: 168px 0 96px;
  background:
    radial-gradient(60% 55% at 78% 18%, rgba(23, 74, 140, .5) 0, transparent 70%),
    linear-gradient(160deg, #071729 0%, #061426 60%);
}
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: linear-gradient(90deg, transparent, #2b558a, transparent) }
.hero-copy { max-width: 56ch }
.hero h1 { margin: 0; font-size: clamp(36px, 3.9vw, 54px); font-weight: 600; line-height: 1.06 }
.lead { max-width: 46ch; margin: 26px 0 0; color: #b8c8dd; font-size: 18px }
.actions { display: flex; align-items: center; gap: 26px; margin-top: 36px }

/* --- zrzuty ekranu aplikacji --- */
.app-shot { margin: 0 }
.app-shot img {
  width: 100%; height: auto; border: 1px solid var(--line-2); border-radius: var(--r);
  box-shadow: 0 40px 90px rgba(0, 0, 0, .45);
}
.app-shot figcaption { margin-top: 18px; max-width: 66ch; color: var(--muted); font-size: 14px }
/* W hero zrzut zaczyna sie nad zagieciem i schodzi nizej, wiec zaprasza do przewijania. */
.hero-shot { margin-top: 56px }

/* --- etykiety pol i kropki stanu --- */
.micro { color: #8299b6; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase }
.dot { width: 8px; height: 8px; flex: none; border-radius: 50% }
.dot-warn { background: var(--warn) }
.dot-alert { background: var(--orange) }
.dot-mute { background: #7d93ad }

/* --- luka w danych --- */
.gap-section { background: var(--bg-2); border-block: 1px solid var(--line) }
.gap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; padding: 0; margin: 0; list-style: none }
.gap-grid li { padding: 28px 26px; border-left: 1px solid var(--line) }
.gap-grid li:last-child { border-right: 1px solid var(--line) }
.gap-grid h3 { margin: 0 0 10px; font-size: 17px }
.gap-grid p { margin: 0; color: var(--muted); font-size: 14px }
.gap-grid .accent { background: linear-gradient(180deg, rgba(255, 107, 11, .14), rgba(255, 107, 11, .03)) }
.gap-grid .accent h3 { color: var(--orange) }
.gap-grid .accent p { color: #d6e1ef }

/* --- pasmo zdjeciowe --- */
/* Uwaga: .container zostaje na wlasnym div-ie. Regula sekcji z `margin: 0`
   na tym samym elemencie zbila wczesniej `margin-inline: auto` i zdjecie
   uciekalo do lewej krawedzi okna. */
.photo-band { padding-top: 104px }
.photo-band figure { margin: 0 }
.photo-band img {
  width: 100%; aspect-ratio: 21 / 9; max-height: 460px; object-fit: cover;
  border: 1px solid var(--line); border-radius: var(--r);
}
.photo-band figcaption { margin-top: 18px; max-width: 62ch; color: var(--muted); font-size: 14px }

/* --- dostawa: zdjecie obok tresci --- */
.split-section { background: var(--bg-2); border-block: 1px solid var(--line) }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center }
.split figure { margin: 0 }
.split img { width: 100%; height: clamp(280px, 32vw, 440px); object-fit: cover; border: 1px solid var(--line); border-radius: var(--r) }
.split-copy h2 { margin: 0; font-size: clamp(32px, 3.6vw, 46px); font-weight: 600; line-height: 1.08 }
.split-copy > p { margin: 20px 0 0; color: var(--muted) }
.split-list { display: grid; margin: 28px 0 0; border-top: 1px solid var(--line) }
.split-list div { padding: 18px 0; border-bottom: 1px solid var(--line) }
.split-list dt { font-family: "Space Grotesk", Manrope, sans-serif; font-size: 15px }
.split-list dd { margin: 6px 0 0; color: var(--muted); font-size: 13px }

/* --- kroki --- */
.steps-section { background: var(--bg-2); border-block: 1px solid var(--line) }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding: 0; margin: 0; list-style: none }
.steps li { padding-top: 26px; border-top: 2px solid var(--orange) }
.steps li + li { border-top-color: var(--line-2) }
.steps h3 { margin: 0 0 12px; font-size: 20px }
.steps p { margin: 0; color: var(--muted); font-size: 14px }

/* --- integracje: wiersz = system + protokol + co czytamy --- */
.integr { display: grid; padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--line) }
.integr li {
  display: grid; grid-template-columns: 350px 1fr; gap: 24px 40px; align-items: start;
  padding: 26px 0; border-bottom: 1px solid var(--line);
}
.integr-name { display: flex; flex-wrap: wrap; align-items: center; gap: 12px }
.integr-name strong { font-family: "Space Grotesk", Manrope, sans-serif; font-size: 17px; letter-spacing: -.02em }
.integr p { margin: 0; color: var(--muted); font-size: 14px; max-width: 62ch }
.tag {
  padding: 4px 10px; border: 1px solid var(--line-2); border-radius: 999px;
  color: #9db2cc; font-size: 11px; font-weight: 700; letter-spacing: .04em; white-space: nowrap;
}
.tag-accent { border-color: rgba(255, 107, 11, .45); background: rgba(255, 107, 11, .12); color: var(--orange-2) }
.integr .accent strong { color: var(--orange) }
.integr .accent p { color: #d6e1ef }
.integr-note { margin: 26px 0 0; max-width: 62ch; color: #7f94ae; font-size: 13px }

/* --- pytania: native details, bez javascriptu --- */
.faq-section { background: var(--bg-2); border-block: 1px solid var(--line) }
.faq-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 72px; align-items: start }
.faq-grid .head { margin-bottom: 0 }
.faq { display: grid; border-top: 1px solid var(--line) }
.faq details { border-bottom: 1px solid var(--line) }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 20px 0; cursor: pointer; list-style: none;
  font-family: "Space Grotesk", Manrope, sans-serif; font-size: 16px; letter-spacing: -.02em;
  transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none }
.faq summary::after {
  content: ""; flex: none; width: 11px; height: 11px; margin-right: 4px;
  border-right: 2px solid var(--orange); border-bottom: 2px solid var(--orange);
  transform: rotate(45deg) translateY(-2px); transition: transform .25s;
}
.faq summary:hover { color: var(--orange-2) }
.faq details[open] summary::after { transform: rotate(225deg) translateY(-2px) }
.faq summary:focus-visible { outline: 3px solid #7cb8ff; outline-offset: 3px }
.faq details p { margin: 0 0 22px; max-width: 66ch; color: var(--muted); font-size: 14px }

/* --- alerty --- */
.alerts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center }
.alerts-grid .head { margin-bottom: 32px }
.alerts-photo { width: 100%; height: 220px; object-fit: cover; object-position: 50% 60%; border: 1px solid var(--line); border-radius: var(--r) }
.alerts { display: grid; gap: 12px; padding: 0; margin: 0; list-style: none }
.alerts li {
  display: flex; align-items: center; gap: 16px; padding: 20px 22px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
}
.alerts li span:last-child { display: grid; gap: 4px; color: var(--muted); font-size: 13px }
.alerts strong { color: var(--text); font-size: 15px }

/* --- kontrola --- */
.control { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px }
.control .head { margin-bottom: 0 }
/* Zrzut pod obiema kolumnami, na całą szerokość siatki. */
.control-shot { grid-column: 1 / -1 }
.control-list { display: grid; margin: 0; border-top: 1px solid var(--line) }
.control-list div { padding: 24px 0; border-bottom: 1px solid var(--line) }
.control-list dt { font-family: "Space Grotesk"; font-size: 17px }
.control-list dd { margin: 8px 0 0; color: var(--muted); font-size: 14px }

/* --- serwis: pionowa szyna zdarzen, jedyna os czasu na stronie --- */
.serwis-section { background: var(--bg-2); border-block: 1px solid var(--line) }
.serwis-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 72px; align-items: start }
.serwis-grid .head { margin-bottom: 0 }
.tl { display: grid; gap: 30px; padding: 4px 0 4px 32px; margin: 0; list-style: none; border-left: 1px solid var(--line-2) }
.tl li { position: relative }
/* Kropka siedzi na szynie: polowa szerokosci elementu na lewo od krawedzi. */
.tl li::before {
  content: ""; position: absolute; left: -39px; top: 6px; width: 11px; height: 11px;
  border: 2px solid var(--line-2); border-radius: 50%; background: var(--bg-2);
}
.tl li:first-child::before { background: var(--orange); border-color: var(--orange) }
.tl h3 { margin: 0 0 8px; font-size: 17px }
.tl p { margin: 0; max-width: 58ch; color: var(--muted); font-size: 14px }

/* --- portal klienta: tresc obok pionowego zrzutu z telefonu --- */
.portal-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 64px; align-items: start }
.portal-copy h2 { margin: 0; font-size: clamp(32px, 3.6vw, 46px); font-weight: 600; line-height: 1.08 }
.portal-copy > p { margin: 22px 0 0; max-width: 54ch; color: var(--muted) }
.portal-list { display: grid; padding: 0; margin: 34px 0 0; list-style: none; border-top: 1px solid var(--line) }
.portal-list li {
  display: grid; grid-template-columns: auto 1fr; gap: 20px;
  padding: 22px 0; border-bottom: 1px solid var(--line);
}
.portal-num {
  padding-top: 4px; color: var(--orange);
  font-family: "Space Grotesk", Manrope, sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .08em;
}
.portal-list h3 { margin: 0 0 6px; font-size: 18px }
.portal-list p { margin: 0; max-width: 52ch; color: var(--muted); font-size: 14px }
/* Odznaki sklepow: na razie bez odnosnikow, wiec to `li`, a nie `a`. */
.sklepy { display: flex; flex-wrap: wrap; gap: 12px; padding: 0; margin: 30px 0 0; list-style: none }
.sklepy li {
  display: flex; align-items: center; gap: 12px; padding: 10px 18px 10px 14px;
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-s);
}
.sklep-znak { flex: none }
.sklepy span { display: grid; font-family: "Space Grotesk", Manrope, sans-serif; font-size: 15px; line-height: 1.2 }
.sklepy small { color: #8299b6; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase }
.portal-note { margin: 20px 0 0; max-width: 58ch; color: #7f94ae; font-size: 13px }
.portal-shot { margin: 0 }
.portal-shot img {
  width: 100%; height: auto; border: 1px solid var(--line-2); border-radius: var(--r);
  box-shadow: 0 40px 90px rgba(0, 0, 0, .45);
}
.portal-shot figcaption { margin-top: 18px; color: var(--muted); font-size: 13px }

/* --- CTA i stopka --- */
.cta-section {
  padding: 112px 0;
  background: radial-gradient(60% 80% at 50% 0, rgba(23, 74, 140, .45) 0, transparent 70%), var(--bg-2);
  border-top: 1px solid var(--line);
}
.cta { display: grid; justify-items: center; text-align: center }
.cta-logo { width: auto; height: 150px; margin-bottom: 34px }
.cta h2 { margin: 0; font-size: clamp(36px, 4.6vw, 58px); font-weight: 600; line-height: 1.06 }
.cta p { margin: 20px 0 30px; color: var(--muted) }

/* --- kontakt --- */
.contact-lines {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  padding: 30px 0 0; margin: 44px 0 0; list-style: none;
  border-top: 1px solid var(--line); text-align: left;
}
.contact-lines li { display: grid; gap: 6px; align-content: start }
.contact-lines a {
  font-family: "Space Grotesk", Manrope, sans-serif; font-size: 18px; font-weight: 700;
  color: var(--text); text-decoration: none; overflow-wrap: anywhere;
}
.contact-lines a:hover { color: var(--orange-2) }
.contact-lines address { font-style: normal; color: #c3d2e5; font-size: 14px; line-height: 1.5 }
.contact-lines small { color: #7f94ae; font-size: 12px }

.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; margin-top: 44px; text-align: left }
.contact-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 32px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
}
.field { display: grid; gap: 8px }
.field-wide { grid-column: 1 / -1 }
.field label { font-size: 13px; font-weight: 700 }
.field input, .field textarea {
  width: 100%; min-height: 48px; padding: 12px 14px; font: inherit; font-size: 15px;
  color: var(--text); background: var(--bg); border: 1px solid var(--line-2); border-radius: var(--r-s);
}
.field textarea { resize: vertical }
.field input:focus-visible, .field textarea:focus-visible { outline: 3px solid #7cb8ff; outline-offset: 2px }
.field small { color: var(--muted); font-size: 12px }
.field.invalid input, .field.invalid textarea { border-color: #ff8a8a }
/* Pulapka na boty. Nie `display: none`, bo czesc botow takie pola pomija. */
.pulapka { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden }

/* --- zgody --- */
.zgody { display: grid; gap: 12px; margin: 0; padding: 20px 0 0; border: 0; border-top: 1px solid var(--line) }
.zgody legend {
  padding: 0; color: #7f94ae;
  font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.zgoda { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; cursor: pointer }
.zgoda input {
  width: 16px; height: 16px; margin: 1px 0 0; flex: none;
  accent-color: var(--orange); cursor: pointer;
}
.zgoda input:focus-visible { outline: 3px solid #7cb8ff; outline-offset: 2px }
.zgoda span { color: #c3d2e5; font-size: 11.5px; line-height: 1.5 }
.zgoda:hover span { color: var(--text) }
.zgody-info { margin: 4px 0 0; color: #7f94ae; font-size: 10.5px; line-height: 1.55 }
.zgody-info a { color: var(--orange); text-decoration: none }
.zgody-info a:hover { text-decoration: underline }

.form-foot { display: flex; align-items: center; gap: 22px; flex-wrap: wrap }
.btn-send[aria-busy="true"] { opacity: .7; pointer-events: none }
.btn-send[aria-busy="true"] span { animation: sending .9s ease-in-out infinite }
@keyframes sending { 50% { transform: translateX(5px) } }
.form-note { margin: 0; max-width: 44ch; color: var(--muted); font-size: 12px }
.form-status { margin: 0; color: var(--ok); font-size: 14px; font-weight: 700 }
.form-status:empty { display: none }
.form-status.error { color: #ff9d9d }

.contact-side { display: grid; gap: 20px; align-content: start }
.contact-side > img {
  width: 100%; height: 260px; object-fit: cover;
  border: 1px solid var(--line); border-radius: var(--r);
}
.producer {
  display: grid; gap: 18px; padding: 26px;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r);
}
.producer h3 { margin: 0; color: #7f94ae; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase }
.producer-logo { display: block; width: fit-content; opacity: .92; transition: opacity .2s }
.producer-logo:hover { opacity: 1 }
.producer-logo img { width: auto; height: 34px }
.producer p { margin: 0; color: var(--muted); font-size: 13px }
.producer-meta { color: #7f94ae !important; font-size: 12px !important; font-variant-numeric: tabular-nums }

footer { padding: 28px 0; background: #04101f; border-top: 1px solid var(--line); color: #7f94ae; font-size: 12px }
footer a { color: var(--orange); text-decoration: none }
footer a:hover { text-decoration: underline }
footer .container { display: flex; align-items: center; justify-content: space-between; gap: 28px }

.foot-lines { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 22px }
.foot-logo { display: inline-flex; align-items: center; gap: 12px; flex: none; opacity: .82; transition: opacity .2s }
.foot-logo:hover { opacity: 1; text-decoration: none }
.foot-logo img { width: auto; height: 34px }
.foot-producer span { color: #7f94ae; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase }
.foot-producer img { height: 22px }

/* --- wejście przy przewijaniu (uzasadnienie: hierarchia czytania sekcji) --- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease-out, transform .6s ease-out }
.reveal.visible { opacity: 1; transform: none }

@media (max-width: 980px) {
  .nav nav { display: none }
  .hero { padding: 132px 0 80px }
  .alerts-grid, .control, .faq-grid, .serwis-grid { grid-template-columns: 1fr; gap: 56px }
  .portal-grid { grid-template-columns: 1fr; gap: 48px }
  /* Zrzut z telefonu jest wysoki: na waskim ekranie zajalby caly ekran, wiec go zwezamy. */
  .portal-shot { max-width: 440px; margin-inline: auto }
  .integr li { grid-template-columns: 1fr; gap: 12px }
  .contact-lines { grid-template-columns: 1fr 1fr; gap: 24px }
  .gap-grid { grid-template-columns: 1fr 1fr }
  .gap-grid li:nth-child(2n) { border-right: 1px solid var(--line) }
  .gap-grid li:nth-child(n+3) { border-top: 1px solid var(--line) }
  .split { grid-template-columns: 1fr; gap: 40px }
  .contact-grid { grid-template-columns: 1fr; gap: 32px }
  .steps { grid-template-columns: 1fr; gap: 28px }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)) }
  .section { padding: 72px 0 }
  /* Menu jest przyklejone, więc CTA zostaje: to jedyna droga do kontaktu,
     gdy linki nawigacji są schowane, a miejsca obok logo jest dość. */
  .nav { height: 60px }
  .site-header.na-gorze .nav { height: 68px }
  .brand img { height: 38px }
  .site-header.na-gorze .brand img { height: 44px }
  :where(section, main)[id] { scroll-margin-top: 70px }
  .cta-logo { height: 104px; margin-bottom: 26px }
  .hero { padding: 112px 0 64px }
  .actions { flex-direction: column; align-items: stretch; gap: 12px }
  .link { justify-content: center }
  .gap-grid { grid-template-columns: 1fr }
  .gap-grid li { border-right: 1px solid var(--line) }
  .gap-grid li + li { border-top: 1px solid var(--line) }
  .photo-band { padding-top: 72px }
  .contact-form { grid-template-columns: 1fr; padding: 22px }
  .contact-lines { grid-template-columns: 1fr; gap: 20px }
  .producer { gap: 14px }
  .faq summary { font-size: 15px }
  .hero-shot { margin-top: 40px }
  .cta-section { padding: 84px 0 }
  footer .container { flex-direction: column; justify-content: center; text-align: center; gap: 20px }
  .foot-lines { justify-content: center; gap: 6px 18px }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important }
  .reveal { opacity: 1; transform: none }
}
