/* Audytor AI — landing page (ponad wspólnym style.css)
   Sekcje: topbar, hero z 3 panelami (formularz / postęp / wynik),
   info, zakres, jak to działa, FAQ, stopka. Mobile-first. */

/* atrybut hidden musi wygrywać z każdym display ustawionym klasą */
.audytor-body [hidden] {
  display: none !important;
}

.audytor-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.audytor-body main {
  flex: 1 1 auto;
}

/* treść używa pełnej szerokości kontenera (max 1500px, tak jak belka),
   dzięki czemu lewa krawędź treści równa się z logo */
.audytor-waski {
  width: min(100%, 1500px);
}

/* panele postępu i wyniku: pełna szerokość kontenera (1500px);
   węższe bloki (ciekawostka, oferta, opisy) są capowane indywidualnie */
#panel-postep,
#panel-wynik {
  width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- topbar ---------- */

.audytor-topbar {
  border-bottom: 1px solid var(--border-600);
  background: rgba(4, 11, 26, 0.95);
}

/* logo do lewej, napis do prawej — oba wewnątrz kontenera (max 1500px) */
.audytor-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.audytor-logo {
  height: 34px;
  width: auto;
}

.audytor-marka-blok {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.audytor-marka-pre {
  color: var(--text-100);
  font-weight: 400;
  font-size: 1rem;
}

.audytor-marka {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- hero ---------- */

.audytor-hero {
  position: relative;
  overflow: hidden;
  padding: 44px 0 40px;
  background: linear-gradient(120deg, var(--bg-900) 0%, var(--bg-700) 55%, #08162f 100%);
}

.audytor-hero .container {
  position: relative;
  z-index: 2;
}

/* hero: tekst po lewej, formularz po prawej (na szerokich ekranach) */
.hero-uklad {
  display: grid;
  gap: 22px;
}

.audytor-kicker {
  font-size: clamp(11px, 3vw, 14px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 10px;
  animation: reveal 0.6s ease-out both;
}

.audytor-h1 {
  font-size: clamp(1.75rem, 8vw, 2.35rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 12px;
  animation: reveal 0.6s ease-out both;
}

.h1-lamacz {
  display: inline;
}

.audytor-h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.audytor-podtytul {
  color: var(--text-300);
  font-size: 1.08rem;
  line-height: 1.55;
  margin-bottom: 22px;
  animation: reveal 0.6s ease-out 0.08s both;
}

.audytor-form-rzad {
  display: grid;
  gap: 10px;
  animation: reveal 0.6s ease-out 0.16s both;
}

.audytor-form-label {
  font-size: 0.95rem;
  font-weight: normal;
  color: var(--text-100);
  margin-bottom: -5px;
}

.audytor-form-rzad input {
  width: 100%;
  border: 1px solid var(--border-600);
  border-radius: 12px;
  background: rgba(4, 11, 26, 0.82);
  color: var(--text-100);
  font-family: inherit;
  font-size: 1.05rem;
  padding: 14px 16px;
  outline: none;
}

.audytor-form-rzad input:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(9, 222, 241, 0.18);
}

.audytor-form-rzad input::placeholder {
  color: var(--text-300);
  opacity: 0.75;
}

.audytor-btn-start {
  border-radius: 12px;
  font-size: 1.16rem;
  padding: 15px 24px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.audytor-btn-start:hover {
  box-shadow: 0 0 22px rgba(9, 222, 241, 0.25);
}

.audytor-btn-start:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

.audytor-zaufanie {
  margin-top: 14px;
  color: var(--text-300);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-align: center;
  animation: reveal 0.6s ease-out 0.24s both;
}

.audytor-testy-badge {
  margin-top: 8px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent-primary);
  animation: reveal 0.6s ease-out 0.3s both;
}

/* blok akcji (formularz + linia zaufania) — od tabletu jako karta CTA,
   żeby na szerokim ekranie pole nie rozciągało się na całe 1500px */
.hero-akcja {
  animation: reveal 0.6s ease-out 0.16s both;
}

@media (min-width: 600px) {
  .hero-akcja {
    max-width: 460px;
    border: 1px solid var(--border-600);
    border-radius: var(--radius);
    background: linear-gradient(165deg, rgba(11, 31, 61, 0.55) 0%, rgba(4, 11, 26, 0.85) 100%);
    box-shadow: var(--shadow-soft);
    padding: 22px;
  }
}

/* ---------- panel postępu ---------- */

.audytor-postep-tytul {
  color: var(--text-300);
  margin-bottom: 18px;
  overflow-wrap: anywhere;
  text-align: center;
}

.audytor-postep-tytul strong {
  color: var(--text-100);
}

/* pierścień — wspólny dla postępu i wyniku */
.audytor-ring {
  position: relative;
  width: 168px;
  margin: 6px auto 14px;
}

.audytor-ring svg {
  display: block;
  width: 100%;
  height: auto;
  transform: rotate(-90deg);
}

.ring-tlo {
  fill: none;
  stroke: rgba(18, 52, 93, 0.9);
  stroke-width: 10;
}

.ring-fill {
  fill: none;
  stroke: url(#grad-ring);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 339.292;
  stroke-dashoffset: 339.292;
  transition: stroke-dashoffset 0.6s ease;
}

/* animacje „życia” podczas postępu: pulsująca poświata łuku
   + kropka krążąca po obwodzie pierścienia */
#postep-ring .ring-fill {
  filter: drop-shadow(0 0 5px rgba(9, 222, 241, 0.55));
  animation: ring-puls 2.2s ease-in-out infinite;
}

@keyframes ring-puls {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.68; }
}

.ring-orbita {
  fill: #eaf6ff;
  transform-origin: 60px 60px;
  animation: ring-orbita 2.6s linear infinite;
}

@keyframes ring-orbita {
  to { transform: rotate(360deg); }
}

.ring-srodek {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#postep-procent {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text-100);
  font-variant-numeric: tabular-nums;
}

/* pasek (duży ekran) — mobile pokazuje pierścień */
.audytor-pasek-tlo {
  display: none;
  height: 14px;
  border: 1px solid var(--border-600);
  border-radius: 999px;
  background: rgba(4, 11, 26, 0.7);
  overflow: hidden;
  margin: 18px 0 12px;
}

.audytor-pasek {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  transition: width 0.6s ease;
  position: relative;
}

.audytor-pasek::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
  animation: audytor-shine 1.6s linear infinite;
}

@keyframes audytor-shine {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}

.audytor-krok {
  color: var(--text-100);
  font-size: 0.98rem;
  min-height: 1.6em;
  text-align: center;
}

/* animowane trzy kropki po tekście kroku — znak, że audyt pracuje */
.krok-kropki i {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-primary);
  margin-left: 3px;
  vertical-align: 0.08em;
  animation: krok-kropka 1.2s ease-in-out infinite;
}

.krok-kropki i:nth-child(2) { animation-delay: 0.2s; }
.krok-kropki i:nth-child(3) { animation-delay: 0.4s; }

@keyframes krok-kropka {
  0%, 60%, 100% { opacity: 0.25; }
  30% { opacity: 1; }
}

.audytor-ciekawostka {
  border: 1px solid var(--border-600);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(11, 31, 61, 0.45) 0%, rgba(4, 11, 26, 0.82) 100%);
  padding: 14px 16px;
  margin: 18px auto 4px;
  max-width: 760px;
}

.ciekawostka-etykieta {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 6px;
}

.audytor-ciekawostka p {
  color: var(--text-300);
  font-size: 1.08rem;
  line-height: 1.55;
  min-height: 3.1em;
  transition: opacity 0.3s ease;
}

.audytor-ciekawostka p.ciekawostka-znika {
  opacity: 0;
}

.audytor-drobne {
  margin-top: 14px;
  color: var(--text-300);
  font-size: 0.84rem;
  line-height: 1.55;
}

#panel-postep .audytor-drobne {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

/* ---------- panel wyniku ---------- */

/* kolory pasm — nadawane na #panel-wynik przez JS */
#panel-wynik {
  --pasmo: var(--accent-primary);
}

#panel-wynik.pasmo-czerwone { --pasmo: #ef4444; }
#panel-wynik.pasmo-pomaranczowe { --pasmo: #f59e0b; }
#panel-wynik.pasmo-zielone { --pasmo: #22c55e; }

.wynik-plakietka {
  display: inline-block;
  border: 1px solid rgba(239, 68, 68, 0.65);
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.14);
  color: #ffc9c9;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  margin-bottom: 12px;
  animation: plakietka-puls 1.6s ease-in-out infinite;
}

@keyframes plakietka-puls {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.35); }
  50% { box-shadow: 0 0 0 7px rgba(239, 68, 68, 0); }
}

/* nagłówek wyniku: wszystko wyśrodkowane (tytuł pasma, napis SRS, okrąg) */
.wynik-naglowek {
  text-align: center;
}

.wynik-tytul {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--pasmo);
  margin-bottom: 6px;
}

.wynik-srs {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-300);
  margin-bottom: 8px;
}

.wynik-ring .ring-fill {
  stroke: var(--pasmo);
  transition: stroke-dashoffset 1s ease 0.2s;
}

.ring-srodek-wynik {
  flex-direction: column;
  gap: 0;
}

.wynik-score {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--pasmo);
  font-variant-numeric: tabular-nums;
}

.wynik-skala {
  color: var(--text-300);
  font-size: 1rem;
  font-weight: 700;
}

.wynik-opis {
  color: var(--text-100);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 640px;
  margin-inline: auto;
}

.wynik-potencjal {
  margin-top: 10px;
  color: #b7f7cb;
  font-size: 0.95rem;
}

/* liczniki znalezisk: pod raportem, przed kartą oferty */
.wynik-liczniki {
  margin-top: 26px;
  text-align: center;
}

.wynik-liczniki-etykieta {
  color: var(--text-300);
  font-size: 0.92rem;
  margin-bottom: 8px;
}

.liczniki-chipy {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.licznik-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.9rem;
  font-weight: 700;
}

.licznik-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.chip-krytyczne {
  border: 1px solid rgba(239, 68, 68, 0.55);
  background: rgba(239, 68, 68, 0.12);
  color: #ffc9c9;
}

.chip-bledy {
  border: 1px solid rgba(245, 158, 11, 0.55);
  background: rgba(245, 158, 11, 0.12);
  color: #ffe1a8;
}

.chip-ostrzezenia {
  border: 1px solid rgba(234, 179, 8, 0.45);
  background: rgba(234, 179, 8, 0.09);
  color: #f6eeb4;
}

/* mini-raport wstrzykiwany w stronę wyników (kapsuła Shadow DOM);
   biała karta obejmuje też tytuł „Twój raport wstępny" —
   raport zaprojektowany pod ~900px treści, nie rozciągamy go na 1500px */
.wynik-raport-osadzony {
  margin: 28px auto 0;
  max-width: 948px;
  border: 1px solid var(--border-600);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.raport-linia-tytul {
  display: block;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #16294d; /* granat nagłówków raportu */
  padding: 20px 24px 0;
}

#wynik-raport {
  min-height: 220px;
}

/* telefon: karta raportu na pełną szerokość ekranu (bez marginesów tła) */
@media (max-width: 767px) {
  .wynik-raport-osadzony {
    margin-inline: calc(-1 * var(--container-pad));
    border-radius: 0;
    border-inline: 0;
  }
}

/* oferta 399 zł */
.audytor-oferta {
  margin: 28px auto 0;
  max-width: 760px;
  border: 1px solid rgba(9, 222, 241, 0.45);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(9, 222, 241, 0.08) 0%, rgba(4, 11, 26, 0.85) 60%);
  box-shadow: 0 0 34px rgba(9, 222, 241, 0.08);
  padding: 20px 18px;
}

.oferta-naglowek {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 6px;
}

.oferta-cena {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
}

.oferta-cena span {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-300);
}

.oferta-punkty {
  list-style: none;
  margin: 0 0 16px;
  display: grid;
  gap: 7px;
}

.oferta-punkty li {
  position: relative;
  padding-left: 24px;
  color: var(--text-100);
  font-size: 1.08rem;
  line-height: 1.5;
}

.oferta-punkty li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-primary);
  font-weight: 700;
}

.oferta-btn {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  font-size: 1.02rem;
  padding: 13px 22px;
}

.audytor-oferta .audytor-drobne {
  margin-top: 10px;
  text-align: center;
}

/* ---------- sekcje pod hero ---------- */

.audytor-info-tytul {
  font-size: 1.3rem;
}

/* wyśrodkowane bloki treści (820px) w kontenerze 1500px */
.jak-kroki,
.audytor-faq .faq-pozycja,
.section-header.centrowany,
.bezpieczenstwo-blok,
.pelny-karta {
  max-width: 820px;
  margin-inline: auto;
}

/* wstępy i stopki sekcji */
.audytor-sekcja-wstep,
.audytor-sekcja-stopka {
  color: var(--text-300);
  font-size: 1.08rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.audytor-sekcja-stopka {
  margin: 16px 0 0;
}

.audytor-wyroznione {
  margin-top: 22px;
  color: var(--text-100);
  font-weight: 700;
  font-size: 1.08rem;
  line-height: 1.6;
}

/* rządek z przyciskiem CTA w sekcjach */
.audytor-cta-wiersz {
  margin-top: 24px;
  text-align: center;
}

.audytor-cta-link {
  display: inline-block;
  text-decoration: none;
  border-radius: 12px;
  font-size: 1.05rem;
  padding: 13px 28px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.audytor-cta-link:hover {
  box-shadow: 0 0 22px rgba(9, 222, 241, 0.25);
}

.audytor-info-tekst p {
  color: var(--text-300);
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.audytor-info-tekst p:last-child {
  margin-bottom: 0;
}

.zakres-siatka,
.gratis-siatka {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.zakres-karta {
  border: 1px solid var(--border-600);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(11, 31, 61, 0.45) 0%, rgba(4, 11, 26, 0.82) 100%);
  padding: 16px 16px 14px;
}

.zakres-karta h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.zakres-karta p {
  color: var(--text-300);
  font-size: 1.08rem;
  line-height: 1.55;
}

.karta-lista {
  margin: 8px 0 0 20px;
  color: var(--text-300);
  font-size: 1.08rem;
  line-height: 1.55;
}

.karta-lista li {
  margin-bottom: 4px;
}

/* sekcja bezpieczeństwa */
.bezpieczenstwo-blok p {
  color: var(--text-300);
  font-size: 1.08rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.bezpieczenstwo-etykieta {
  color: var(--text-100) !important;
  font-weight: 700;
}

.bezpieczenstwo-lista {
  list-style: none;
  margin: 0 0 14px;
  display: grid;
  gap: 8px;
}

.bezpieczenstwo-lista li {
  position: relative;
  padding-left: 26px;
  color: var(--text-300);
  font-size: 1.08rem;
  line-height: 1.55;
}

.bezpieczenstwo-lista li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-primary);
  font-weight: 700;
}

/* sekcja pełnego raportu */
.pelny-karta {
  border: 1px solid rgba(9, 222, 241, 0.45);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(9, 222, 241, 0.08) 0%, rgba(4, 11, 26, 0.85) 60%);
  box-shadow: 0 0 34px rgba(9, 222, 241, 0.08);
  padding: 20px 18px;
}

.pelny-karta p {
  color: var(--text-300);
  font-size: 1.08rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.pelny-karta p:last-child {
  margin-bottom: 0;
}

.pelny-karta strong {
  color: var(--text-100);
  font-size: 1.2em;
}

.pelny-etykieta {
  color: var(--text-100) !important;
  font-weight: 700;
}

/* sekcja końcowa z drugim formularzem */
.audytor-final {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--bg-900) 0%, var(--bg-700) 55%, #08162f 100%);
  padding: 48px 0 52px;
}

.final-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.final-tytul {
  font-size: 1.45rem;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 12px;
}

.final-inner .audytor-podtytul {
  max-width: 640px;
  margin-inline: auto;
}

.final-form {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}

.jak-kroki {
  list-style: none;
  counter-reset: jak;
  display: grid;
  gap: 16px;
  margin: 0 auto; /* wyśrodkowany blok (max-width 820px), spójny z nagłówkiem */
}

.jak-kroki li {
  counter-increment: jak;
  position: relative;
  padding-left: 52px;
}

.jak-kroki li::before {
  content: counter(jak);
  position: absolute;
  left: 0;
  top: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(9, 222, 241, 0.5);
  border-radius: 50%;
  color: var(--accent-primary);
  font-weight: 700;
  font-size: 1.05rem;
  background: rgba(9, 222, 241, 0.08);
}

.jak-kroki h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.jak-kroki p {
  color: var(--text-300);
  font-size: 1.08rem;
  line-height: 1.55;
}

.faq-pozycja {
  border: 1px solid var(--border-600);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(11, 31, 61, 0.35) 0%, rgba(4, 11, 26, 0.75) 100%);
  margin-bottom: 10px;
}

.faq-pozycja summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 42px 14px 16px;
  font-weight: 700;
  font-size: 1.08rem;
  position: relative;
}

.faq-pozycja summary::-webkit-details-marker {
  display: none;
}

.faq-pozycja summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-primary);
  font-size: 1.3rem;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq-pozycja[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-pozycja p {
  padding: 0 16px 14px;
  color: var(--text-300);
  font-size: 1.08rem;
  line-height: 1.6;
}

/* ---------- stopka ---------- */

.audytor-stopka p {
  margin-bottom: 4px;
}

.audytor-stopka p:last-child {
  margin-bottom: 0;
}

.stopka-firma a {
  color: var(--text-100);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.stopka-firma a:hover {
  color: var(--accent-primary);
}

/* ---------- większe ekrany ---------- */

@media (min-width: 768px) {
  .audytor-hero {
    padding: 64px 0 56px;
  }

  .audytor-h1 {
    font-size: 2.7rem;
  }

  .h1-lamacz {
    display: none;
  }

  .audytor-kicker {
    letter-spacing: 0.14em;
  }

  .audytor-podtytul {
    font-size: 1.18rem;
  }

  .audytor-info-tekst p,
  .zakres-karta p,
  .karta-lista,
  .jak-kroki p,
  .faq-pozycja summary,
  .faq-pozycja p,
  .audytor-sekcja-wstep,
  .audytor-sekcja-stopka,
  .audytor-wyroznione,
  .bezpieczenstwo-blok p,
  .bezpieczenstwo-lista li,
  .pelny-karta p,
  .oferta-punkty li,
  .audytor-ciekawostka p {
    font-size: 1.18rem;
  }

  .zakres-karta h3,
  .jak-kroki h3 {
    font-size: 1.22rem;
  }

  .final-tytul {
    font-size: 1.9rem;
  }

  .pelny-karta {
    padding: 26px 28px;
  }

  .audytor-info-tytul {
    font-size: 1.5rem;
  }

  .audytor-logo {
    height: 40px;
  }

  .audytor-marka {
    font-size: 1.5rem;
  }

  .audytor-btn-start {
    white-space: nowrap;
  }

  /* desktop: pasek zamiast pierścienia postępu */
  #postep-ring {
    display: none;
  }

  .audytor-pasek-tlo {
    display: block;
  }

  .oferta-btn {
    display: inline-block;
    width: auto;
    min-width: 260px;
  }

  .audytor-oferta .audytor-drobne {
    text-align: left;
  }

  .zakres-siatka,
  .gratis-siatka {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

/* od ~960px: hero dwukolumnowy (tekst | formularz), pełne wykorzystanie 1500px */
@media (min-width: 960px) {
  .hero-uklad {
    grid-template-columns: 1fr minmax(380px, 440px);
    gap: 48px;
    align-items: center;
  }

  .hero-akcja {
    max-width: none;
    justify-self: end;
    width: 100%;
  }
}

/* od 1024px: szerokie siatki na pełne 1500px */
@media (min-width: 1024px) {
  .zakres-siatka {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .gratis-siatka {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  /* sekcja „Szukanie produktów…”: 4 akapity w 2 kolumnach na całej szerokości */
  .audytor-info-tekst {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 48px;
  }

  .audytor-info-tekst p {
    margin-bottom: 0;
  }
}
