/* Inter (zmienna grubość) z własnego serwera, przycięty do znaków strony. Licencja: fonty/LICENCJA-Inter-OFL.txt */
@font-face {
  font-family: Inter; font-style: normal; font-weight: 100 900; font-display: swap;
  src: url("fonty/inter-lacina.woff2") format("woff2");
  unicode-range: U+0020-007E, U+00A0-00FF, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2030, U+20AC, U+2122, U+2190-2193, U+2212;
}
@font-face {
  font-family: Inter; font-style: normal; font-weight: 100 900; font-display: swap;
  src: url("fonty/inter-polskie.woff2") format("woff2");
  unicode-range: U+0104-0107, U+0118-0119, U+0141-0144, U+015A-015B, U+0179-017C;
}
/* Zanim Inter się wczyta: Arial przeskalowany do wymiarów Intera */
@font-face {
  font-family: "Inter zastępczy"; src: local("Arial"), local("Helvetica Neue"), local("Helvetica");
  ascent-override: 90.2%; descent-override: 22.48%; line-gap-override: 0%; size-adjust: 107.4%;
}

:root {
  --navy-950: #0F2036;
  --navy-900: #142840;
  --navy: #1E3A5F;
  --navy-600: #2A4E7C;
  --yellow: #F5B53D;
  --yellow-600: #E3A12A;
  --yellow-soft: rgba(245, 181, 61, .14);
  --cream: #FAF6EE;
  --white: #FFFFFF;
  --ink: #1E2733;
  --muted: #5B6573;
  --line: #E7E1D5;
  --shadow-sm: 0 1px 2px rgba(20, 40, 64, .06);
  --shadow-md: 0 6px 16px -4px rgba(20, 40, 64, .12), 0 2px 4px -2px rgba(20, 40, 64, .06);
  --shadow-lg: 0 20px 40px -12px rgba(20, 40, 64, .22);
  --radius: 16px;
  --header-h: 76px;
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  font-family: Inter, "Inter zastępczy", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { margin: 0; line-height: 1.2; color: var(--navy-900); }
p { margin: 0; }
:focus-visible { outline: 3px solid var(--navy-900); outline-offset: 3px; border-radius: 6px; }
:is(.hero, .section--dark, .travel, .zdalnie, .footer) :focus-visible { outline-color: var(--yellow); }
.footer .call-fab:focus-visible { outline-color: var(--navy-900); }

.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 24px; }

/* Przyciski */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 14px 28px; border-radius: 10px; border: 2px solid transparent;
  font: inherit; font-weight: 600; font-size: 1rem; text-decoration: none; cursor: pointer; background: none;
  transition: background-color .2s, border-color .2s, box-shadow .2s, transform .2s;
}
.btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.btn--primary { background: var(--yellow); color: var(--navy-950); box-shadow: 0 6px 18px -6px rgba(245, 181, 61, .6); }
.btn--primary:hover { background: var(--yellow-600); transform: translateY(-1px); }
.btn--ghost { color: var(--white); border-color: rgba(255, 255, 255, .55); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, .08); }
.btn--sm { min-height: 44px; padding: 10px 20px; font-size: .95rem; }
.btn--sm svg { width: 18px; height: 18px; }
.btn--block { width: 100%; }

/* Nagłówek */
.header { position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, .96); backdrop-filter: saturate(1.4) blur(8px); transition: box-shadow .2s; }
.header.is-scrolled { box-shadow: 0 4px 20px rgba(20, 40, 64, .08); }
.header__inner { display: flex; align-items: center; gap: 24px; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand img { display: block; }
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__text strong { font-size: 1.2rem; font-weight: 800; color: var(--navy-900); letter-spacing: -.01em; }
.brand__text span { font-size: .8rem; color: var(--muted); }
.nav { display: flex; align-items: center; gap: 6px; }
.nav a:not(.btn) { padding: 10px 14px; border-radius: 8px; white-space: nowrap; text-decoration: none; font-weight: 500; color: var(--navy-900); transition: background-color .2s; }
.nav a:not(.btn):hover { background: var(--cream); }
.nav__cta { margin-left: 10px; }
.burger { display: none; width: 46px; height: 46px; border: 0; border-radius: 10px; background: transparent; cursor: pointer; padding: 12px; }
.burger span { display: block; height: 2px; background: var(--navy-900); border-radius: 2px; transition: transform .25s, opacity .25s; }
.burger span + span { margin-top: 6px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative; overflow: hidden; color: var(--white);
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy) 55%, var(--navy-600) 100%);
  padding-block: 88px 104px;
}
.hero__rings span { position: absolute; border-radius: 50%; border: 1px solid rgba(245, 181, 61, .16); pointer-events: none; }
.hero__rings span:nth-child(1) { width: 620px; height: 620px; right: -160px; top: -140px; }
.hero__rings span:nth-child(2) { width: 420px; height: 420px; right: -60px; top: -40px; border-width: 2px; border-color: rgba(245, 181, 61, .08); }
.hero__rings span:nth-child(3) { width: 300px; height: 300px; left: -120px; bottom: -160px; border-color: rgba(255, 255, 255, .06); }
.hero__inner { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; border-radius: 999px;
  background: var(--yellow-soft); border: 1px solid rgba(245, 181, 61, .3); color: #F8C872; font-size: .9rem; font-weight: 500;
}
.bez-lamania { white-space: nowrap; }
.pill svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.hero h1 { color: var(--white); font-size: clamp(2.3rem, 4.6vw, 3.4rem); font-weight: 800; letter-spacing: -.025em; margin-top: 24px; text-wrap: balance; }
.accent--linia { display: block; }
.accent { color: var(--yellow); }
.hero__lead { margin-top: 20px; font-size: 1.2rem; line-height: 1.7; color: #D5DDE8; max-width: 32em; }
.hero__buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.stats { display: flex; flex-wrap: wrap; gap: 16px 44px; margin: 48px 0 0; padding-top: 32px; border-top: 1px solid rgba(255, 255, 255, .12); }
.stats dt { font-size: 1.7rem; font-weight: 700; color: var(--yellow); line-height: 1.2; }
.stats dd { margin: 4px 0 0; font-size: .9rem; color: #B9C5D4; }
.hero__visual { position: relative; padding-block: 8px 20px; }
.hero__visual svg { display: block; width: 100%; height: auto; overflow: visible; }
.zasieg circle { vector-effect: non-scaling-stroke; stroke-width: 1px; }
.chip {
  position: absolute; display: inline-flex; align-items: center; gap: 10px; padding: 11px 18px 11px 12px; border-radius: 14px;
  background: var(--white); color: var(--navy-900); font-weight: 600; font-size: .92rem; line-height: 1.2; white-space: nowrap;
  box-shadow: 0 18px 36px -14px rgba(5, 14, 26, .55), 0 2px 6px rgba(5, 14, 26, .12);
}
.chip i { position: relative; flex: none; width: 22px; height: 22px; border-radius: 50%; background: #2E9E6B url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 14px no-repeat; }
/* Plakietki w pustych miejscach: nad lewą połową dachu i pod prawym rogiem — nie nachodzą na rysunek */
.chip--one { left: 0; top: 2%; }
.chip--two { right: 0; bottom: 0; }
.chip i::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #2E9E6B; opacity: 0; animation: puls 3.2s ease-out infinite; }
.chip--two i::after { animation-delay: 1.6s; }
/* Sygnał WiFi mruga: łuki zapalają się po kolei od najmniejszego, chwilę świecą i gasną razem.
   Animujemy kolor, nie przezroczystość — łuk jest zawsze pełny, więc krawędzie zostają ostre. */
.fala { animation: fala 3.2s ease-in-out infinite; }
.fala--2 { animation-delay: .25s; }
.fala--3 { animation-delay: .5s; }
@keyframes fala { 0%, 12% { stroke: #3B5270; } 32%, 78% { stroke: #F5B53D; } 100% { stroke: #3B5270; } }
@keyframes puls { 0% { transform: scale(1); opacity: .7; } 60%, 100% { transform: scale(2); opacity: 0; } }

/* Sekcje */
.section { padding-block: 96px; }
.section--light { background: var(--cream); }
.section--dark { background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy) 100%); color: var(--white); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section__head h2 { font-size: clamp(1.9rem, 3.6vw, 2.5rem); font-weight: 700; letter-spacing: -.02em; }
.section__head h2::after { content: ""; display: block; width: 56px; height: 4px; border-radius: 4px; background: var(--yellow); margin: 18px auto 0; }
.section__head p { margin-top: 18px; font-size: 1.1rem; color: var(--muted); }
.section__head--light h2 { color: var(--white); }
.section__head--light p { color: #C9D3E0; }

/* Usługi */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card { display: flex; flex-direction: column; background: var(--white); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-md); transition: transform .25s, box-shadow .25s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__icon { width: 64px; height: 64px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, var(--navy-900), var(--navy-600)); margin-bottom: 24px; }
.card__icon svg { width: 30px; height: 30px; fill: none; stroke: var(--yellow); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1.2rem; font-weight: 600; }
.card p { margin-top: 10px; color: var(--muted); font-size: .98rem; }
.card .card__cena { margin-top: auto; padding-top: 16px; color: var(--navy); font-weight: 700; font-size: .95rem; }
.card__cena a { color: var(--navy-600); font-weight: 600; }
#uslugi .fineprint { margin-top: 28px; }
#uslugi .fineprint a, .fineprint a { color: var(--navy); }
.card__cena a { font-weight: 600; }
/* Pomoc na odległość: 3 kroki + pobranie RustDesk */
.zdalnie { margin-top: 40px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px 48px; align-items: center; padding: 32px 36px; border-radius: var(--radius); background: var(--navy-900); color: var(--white); box-shadow: var(--shadow-md); scroll-margin-top: calc(var(--header-h) + 24px); }
.zdalnie h3 { color: var(--white); font-size: 1.3rem; font-weight: 700; }
.zdalnie__kroki { list-style: none; counter-reset: krok; margin: 18px 0 0; padding: 0; display: grid; gap: 12px; }
.zdalnie__kroki li { counter-increment: krok; position: relative; padding-left: 44px; color: #D5DDE8; line-height: 1.5; }
.zdalnie__kroki li::before { content: counter(krok); position: absolute; left: 0; top: -2px; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--yellow); color: var(--navy-950); font-weight: 800; font-size: .9rem; }
.zdalnie__akcja p { margin-top: 10px; font-size: .9rem; color: #B9C5D4; }
.zdalnie__akcja p + p { margin-top: 4px; }
.zdalnie__akcja b { color: var(--white); font-weight: 600; }
.zdalnie__instrukcja { display: inline-block; padding-block: 6px; color: var(--yellow); font-weight: 600; font-size: .95rem; text-decoration: underline; text-underline-offset: 4px; }
.obszar { max-width: 900px; margin: 22px auto 0; text-align: center; line-height: 1.9; color: var(--ink); }
.obszar b { color: var(--navy-900); }
.kanaly { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.contact__list a.kanal { display: inline-flex; padding: 5px 14px; border-radius: 99px; border: 1px solid rgba(245, 181, 61, .55); font-size: .92rem; }
.contact__list a.kanal:hover { background: rgba(245, 181, 61, .12); text-decoration: none; }
/* Przejdź do treści — widoczne dopiero po Tab */
.skip { position: absolute; left: 12px; top: -80px; z-index: 300; padding: 10px 18px; border-radius: 10px; background: var(--yellow); color: var(--navy-950); font-weight: 700; text-decoration: none; transition: top .15s; }
.skip:focus { top: 12px; }

/* Jak działamy */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; counter-reset: none; position: relative; }
.steps::before { content: ""; position: absolute; top: 30px; left: 16%; right: 16%; height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 10px, transparent 10px 18px); }
.step { position: relative; text-align: center; padding-inline: 12px; }
.step__num { position: relative; display: grid; place-items: center; width: 60px; height: 60px; margin: 0 auto 22px; border-radius: 50%; background: var(--yellow); color: var(--navy-950); font-weight: 800; font-size: 1.35rem; box-shadow: 0 0 0 8px var(--white); }
.step h3 { font-size: 1.2rem; font-weight: 600; }
.step p { margin: 10px auto 0; color: var(--muted); max-width: 22em; }
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 80px; padding-top: 64px; border-top: 1px solid var(--line); }
.feature { text-align: center; }
.feature__icon { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; background: var(--yellow-soft); }
.feature__icon svg { width: 28px; height: 28px; fill: none; stroke: var(--yellow-600); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { font-size: 1.08rem; font-weight: 600; }
.feature p { margin-top: 6px; color: var(--muted); font-size: .95rem; }

/* Cennik */
.prices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.price { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-md); border-top: 4px solid var(--navy); }
.price--featured { border-top-color: var(--yellow); }
.price h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 14px; }
.price ul { list-style: none; margin: 0; padding: 0; }
.price li { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 13px 0; border-top: 1px solid var(--line); }
.price li span { color: var(--ink); }
.price li b { color: var(--navy); font-weight: 700; white-space: nowrap; }
.travel { margin-top: 24px; background: var(--navy-900); color: var(--white); border-radius: var(--radius); padding: 28px 32px; display: grid; grid-template-columns: auto 1fr; gap: 24px 48px; align-items: center; box-shadow: var(--shadow-md); }
.travel__head h3 { color: var(--white); font-size: 1.3rem; font-weight: 700; }
.travel__head p { margin-top: 4px; color: #B9C5D4; font-size: .92rem; }
.travel__zones { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.travel__zones li { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1); border-radius: 12px; padding: 14px 16px; text-align: center; }
.travel__zones span { display: block; font-size: .88rem; color: #B9C5D4; }
.travel__zones b { display: block; margin-top: 2px; font-size: 1.35rem; color: var(--yellow); }
.fineprint { margin-top: 20px; text-align: center; font-size: .9rem; color: var(--muted); }

/* Kontakt */
.contact { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
.contact > * { min-width: 0; }
/* Lewa kolumna ma wysokość formularza; klucz i śrubokręt stoją na jej dole (w pustym miejscu),
   nigdy bliżej niż 24 px od danych kontaktowych */
.contact__lewa { align-self: stretch; display: flex; flex-direction: column; gap: 24px; }
.tlo-narzedzia { position: relative; flex: none; width: 280px; height: 280px; margin: auto 0 -30px -8px; opacity: .2; pointer-events: none; }
.tlo-narzedzia svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; will-change: transform; }
/* Śrubokręt płynnie wysuwa się i wraca wzdłuż swojej osi, potem klucz „dokręca” (obrót wokół skrzyżowania).
   Bez zatrzymań w skrajnym położeniu — ruch jak wahadło. */
.nt-srub { animation: nt-srub 8s cubic-bezier(.45, 0, .55, 1) infinite; }
.nt-klucz { transform-origin: 50% 50%; animation: nt-klucz 8s cubic-bezier(.45, 0, .55, 1) infinite; }
@keyframes nt-srub { 0%, 6% { transform: translate(0, 0); } 21% { transform: translate(6px, 6px); } 36%, 100% { transform: translate(0, 0); } }
@keyframes nt-klucz { 0%, 44% { transform: rotate(0deg); } 61% { transform: rotate(-10deg); } 80%, 100% { transform: rotate(0deg); } }
.contact__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 28px; }
.contact__list li { display: flex; gap: 18px; }
.contact__icon { flex: none; width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center; background: rgba(245, 181, 61, .16); }
.contact__icon svg { width: 24px; height: 24px; fill: none; stroke: var(--yellow); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact__list h3 { color: var(--white); font-size: 1.05rem; font-weight: 600; margin-bottom: 4px; }
.contact__list a { display: block; color: var(--yellow); text-decoration: none; font-weight: 500; font-size: 1.05rem; }
.contact__list a:hover { text-decoration: underline; }
.contact__list p { color: #C9D3E0; }
.contact__list .contact__uwaga { margin-top: 4px; font-size: .95rem; }

.form { background: var(--white); color: var(--ink); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-lg); display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: grid; gap: 6px; font-size: .92rem; font-weight: 500; color: var(--navy-900); }
.req { color: #C2413A; font-style: normal; }
.form input:not([type="checkbox"]), .form select, .form textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink); padding: 12px 14px; min-height: 50px;
  border: 1.5px solid #858F9E; border-radius: 10px; background: #FBFCFD; transition: border-color .2s, box-shadow .2s;
}
.form ::placeholder, .pole-akcja ::placeholder, .mail ::placeholder { color: #67707C; opacity: 1; }
.form textarea { resize: vertical; min-height: 110px; }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(30, 58, 95, .3); background: var(--white); }
.form .check { grid-template-columns: auto 1fr; align-items: start; gap: 10px; font-weight: 400; color: var(--muted); }
.form .check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--navy); }
.form .check a { color: var(--navy); }
.form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__msg { font-weight: 500; font-size: .95rem; min-height: 1.5em; }
.form__msg.ok { color: #1F7A50; }
.form__msg.err { color: #B42318; }

/* Stopka */
.footer { background: var(--navy-950); color: #B9C5D4; padding-top: 64px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.brand--light .brand__text strong { color: var(--white); }
.brand--light .brand__text span { color: #8FA0B5; }
.footer__brand p { margin-top: 16px; max-width: 26em; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h3 { color: var(--white); font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.footer a { text-decoration: none; }
.footer__col a:hover, .footer__bottom a:hover { color: var(--yellow); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 4px 16px; padding-block: 14px; border-top: 1px solid rgba(255, 255, 255, .08); font-size: .9rem; }
.footer__prawne { display: flex; flex-wrap: wrap; column-gap: 24px; }
.footer__prawne a { display: inline-block; padding-block: 10px; }

.call-fab { display: none; }

/* Animacja przy przewijaniu */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* Podstrony */
.doc { padding-block: 64px 96px; background: var(--cream); }
.doc .container { max-width: 820px; }
.doc h1 { font-size: clamp(1.9rem, 4vw, 2.5rem); font-weight: 800; }
.doc__wstep { margin-top: 12px; font-size: 1.1rem; color: var(--muted); }
.doc a { color: var(--navy); }
.doc h2 { font-size: 1.25rem; margin-top: 2em; margin-bottom: .6em; }
.doc p, .doc li { color: var(--ink); }
.doc p + p { margin-top: .8em; }
.doc ul { padding-left: 1.2em; }
.doc li { margin-bottom: .4em; }
.doc .muted { color: var(--muted); margin-top: 2em; }

/* ───────── Bezpieczeństwo ───────── */
.nav a[aria-current="page"] { background: var(--cream); }
.hero--maly { padding-block: 64px 72px; }
.hero__inner--jeden { grid-template-columns: 1fr; }
.hero--maly .hero__lead { max-width: 36em; }
.skroty { list-style: none; margin: 32px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.skroty a { display: inline-block; padding: 10px 18px; border-radius: 999px; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .18); color: var(--white); text-decoration: none; font-weight: 500; font-size: .95rem; }
.skroty a:hover { border-color: var(--yellow); color: var(--yellow); }

.narzedzia { max-width: 860px; margin-inline: auto; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-md); overflow: hidden; }
.zakladki { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); background: #FDFBF7; }
.zakladki button {
  display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 16px 8px 14px; border: 0; background: none; cursor: pointer;
  font: inherit; font-size: .92rem; font-weight: 600; color: var(--muted); border-bottom: 3px solid transparent; margin-bottom: -1px;
}
.zakladki svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.zakladki button:hover { color: var(--navy); }
.zakladki button[aria-selected="true"] { color: var(--navy-900); border-bottom-color: var(--yellow); background: var(--white); }
.panel { padding: 32px 36px 36px; }
.panel h2 { font-size: 1.4rem; font-weight: 700; }
.panel__opis { margin-top: 8px; color: var(--muted); }
.panel__naglowek { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }

.pole-akcja { display: flex; gap: 10px; margin-top: 20px; }
.pole-akcja input, .mail input, .mail textarea {
  flex: 1; min-width: 0; font: inherit; font-size: 1.05rem; color: var(--ink); padding: 12px 14px; min-height: 52px;
  border: 1.5px solid #858F9E; border-radius: 10px; background: #FBFCFD;
}
.pole-akcja input:focus, .mail input:focus, .mail textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(30, 58, 95, .3); background: var(--white); }
.pole-akcja--wynik input { font-family: ui-monospace, "Cascadia Mono", Consolas, monospace; font-size: 1.1rem; letter-spacing: .02em; background: var(--cream); }
.pole-akcja .btn--sm { min-height: 52px; }
.btn-maly {
  flex: none; min-height: 52px; padding: 0 16px; border-radius: 10px; border: 1.5px solid #DDE2E9; background: var(--white);
  font: inherit; font-weight: 600; font-size: .95rem; color: var(--navy); cursor: pointer;
}
.btn-maly:hover { border-color: var(--navy); }

.ocena { margin-top: 20px; }
.ocena__gora { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.ocena__etykieta { font-weight: 700; font-size: 1.15rem; }
.ocena__etykieta--zle { color: #B42318; }
.ocena__etykieta--uwaga { color: #B26B00; }
.ocena__etykieta--dobrze { color: #1F7A50; }
.ocena__dlugosc { color: var(--muted); font-size: .92rem; }
.miernik { height: 10px; border-radius: 99px; background: #EDE8DE; margin-top: 8px; overflow: hidden; }
.miernik__pasek { height: 100%; border-radius: inherit; transition: width .25s, background-color .25s; }
.miernik__pasek--zle { background: #D9534F; }
.miernik__pasek--uwaga { background: var(--yellow); }
.miernik__pasek--dobrze { background: #2E9E6B; }
.ocena__czas { margin-top: 10px; color: var(--ink); }

.uwagi { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 8px; }
.uwagi li { position: relative; padding: 10px 14px 10px 40px; border-radius: 10px; font-size: .96rem; line-height: 1.45; background: #F6F4EF; }
.uwagi li::before { content: ""; position: absolute; left: 14px; top: 13px; width: 16px; height: 16px; border-radius: 50%; background: center / 10px no-repeat; }
.uwagi .uwagi__zle { background: #FDF0EF; }
.uwagi .uwagi__zle::before { background-color: #D9534F; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' stroke='white' stroke-width='4' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6 6 18'/%3E%3C/svg%3E"); }
.uwagi .uwagi__uwaga { background: #FFF6E3; }
.uwagi .uwagi__uwaga::before { background-color: var(--yellow-600); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' stroke='white' stroke-width='4' stroke-linecap='round'%3E%3Cpath d='M12 5v9M12 19h.01'/%3E%3C/svg%3E"); }
.uwagi .uwagi__dobrze { background: #EDF7F1; }
.uwagi .uwagi__dobrze::before { background-color: #2E9E6B; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); }
.uwagi .uwagi__info { background: #EEF3F8; }
.uwagi .uwagi__info::before { background-color: var(--navy-600); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' stroke='white' stroke-width='4' stroke-linecap='round'%3E%3Cpath d='M12 11v7M12 6h.01'/%3E%3C/svg%3E"); }

.wyciek { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); display: grid; gap: 12px; justify-items: start; }
.wyciek .btn:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
.komunikat { padding: 12px 16px; border-radius: 10px; font-weight: 500; line-height: 1.5; margin-top: 16px; }
.wyciek .komunikat { margin-top: 0; }
.komunikat--zle { background: #FDF0EF; color: #9B1C14; }
.komunikat--uwaga { background: #FFF6E3; color: #7A4A00; }
.komunikat--dobrze { background: #EDF7F1; color: #17603E; }
.komunikat--info { background: #EEF3F8; color: var(--navy); }
.drobny { margin-top: 14px; font-size: .86rem; color: var(--muted); line-height: 1.5; }
.drobny a, .panel a, .email-wyciek a, .oszustwo a { color: var(--navy); }

.tryby { display: inline-flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; padding: 5px; border-radius: 12px; background: #F3EFE6; }
.tryby button { border: 0; background: none; padding: 10px 18px; border-radius: 9px; font: inherit; font-weight: 600; font-size: .95rem; color: var(--muted); cursor: pointer; }
.tryby button[aria-pressed="true"] { background: var(--white); color: var(--navy-900); box-shadow: var(--shadow-sm); }
.gen__sila { margin-top: 10px; font-weight: 600; font-size: .95rem; }
.gen__sila--zle { color: #B42318; }
.gen__sila--uwaga { color: #B26B00; }
.gen__sila--dobrze { color: #1F7A50; }
.gen__opcje { margin-top: 20px; display: grid; gap: 16px; }
.suwak { display: grid; gap: 8px; font-weight: 500; color: var(--navy-900); }
.suwak input { width: 100%; accent-color: var(--navy); }
.znaczniki { display: flex; flex-wrap: wrap; gap: 8px 10px; }
#gen-opcje-slowa { display: grid; gap: 16px; }
#gen-opcje-slowa[hidden] { display: none; }
.znaczniki label { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border: 1.5px solid #E3DED3; border-radius: 99px; font-size: .93rem; cursor: pointer; background: var(--white); }
.znaczniki input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--navy); margin: 0; }
.znaczniki select { font: inherit; padding: 2px 6px; border: 1px solid #DDE2E9; border-radius: 6px; background: var(--white); }

.werdykt { margin-top: 18px; padding: 18px 20px; border-radius: 12px; border-left: 5px solid; }
.werdykt strong { display: block; font-size: 1.12rem; }
.werdykt p { margin-top: 4px; }
.werdykt__domena { font-size: .9rem; color: var(--muted); word-break: break-all; }
.werdykt--zle { background: #FDF0EF; border-color: #D9534F; }
.werdykt--zle strong { color: #9B1C14; }
.werdykt--uwaga { background: #FFF6E3; border-color: var(--yellow-600); }
.werdykt--uwaga strong { color: #7A4A00; }
.werdykt--dobrze { background: #EDF7F1; border-color: #2E9E6B; }
.werdykt--dobrze strong { color: #17603E; }
.werdykt--info { background: #EEF3F8; border-color: var(--navy-600); }
.werdykt--info strong { color: var(--navy); }

.licznik { flex: none; padding: 6px 12px; border-radius: 99px; background: var(--cream); font-weight: 700; color: var(--navy); font-size: .92rem; }
.test { margin: 22px 0 0; padding: 0; list-style: none; counter-reset: pytanie; display: grid; gap: 10px; }
.test__pytanie { counter-increment: pytanie; display: grid; grid-template-columns: 1fr auto; gap: 8px 16px; align-items: center; padding: 14px 16px 14px 52px; border: 1.5px solid var(--line); border-radius: 12px; position: relative; }
.test__pytanie::before { content: counter(pytanie); position: absolute; left: 14px; top: 14px; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--cream); color: var(--navy); font-weight: 700; font-size: .85rem; }
.test__pytanie[data-odp="tak"] { border-color: #BFE3CF; background: #F7FBF8; }
.test__pytanie[data-odp="nie"] { border-color: #F3D9A6; background: #FFFBF2; }
.test__odp { display: flex; gap: 6px; }
.test__odp button { min-width: 64px; min-height: 42px; border-radius: 9px; border: 1.5px solid #DDE2E9; background: var(--white); font: inherit; font-weight: 600; color: var(--navy); cursor: pointer; }
.test__odp button[data-odp="tak"][aria-pressed="true"] { background: #2E9E6B; border-color: #2E9E6B; color: var(--white); }
.test__odp button[data-odp="nie"][aria-pressed="true"] { background: var(--yellow); border-color: var(--yellow); color: var(--navy-950); }
.test__wskazowka { grid-column: 1 / -1; font-size: .93rem; color: #7A4A00; }
#test-od-nowa { margin-top: 16px; min-height: 44px; }

.email-wyciek { max-width: 860px; margin: 20px auto 0; display: flex; gap: 14px; align-items: flex-start; padding: 18px 22px; border-radius: var(--radius); background: var(--white); border: 1px dashed #D9D1C1; }
.email-wyciek svg { flex: none; width: 26px; height: 26px; margin-top: 2px; fill: none; stroke: var(--yellow-600); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.email-wyciek p { color: var(--ink); font-size: .98rem; }

.features--zasady { margin-top: 0; padding-top: 0; border-top: 0; }
.oszustwa, .pytania { max-width: 860px; margin-inline: auto; display: grid; gap: 12px; }
.oszustwo, .pytanie { background: var(--white); border-radius: 14px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.oszustwo summary, .pytanie summary { list-style: none; cursor: pointer; padding: 18px 56px 18px 22px; font-weight: 600; color: var(--navy-900); position: relative; }
.oszustwo summary::-webkit-details-marker, .pytanie summary::-webkit-details-marker { display: none; }
.oszustwo summary::after, .pytanie summary::after { content: ""; position: absolute; right: 22px; top: 50%; width: 10px; height: 10px; border-right: 2.5px solid var(--navy); border-bottom: 2.5px solid var(--navy); transform: translateY(-70%) rotate(45deg); transition: transform .2s; }
.oszustwo[open] summary::after, .pytanie[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.oszustwo > p, .oszustwo > ol, .pytanie > p, .pytanie > ol { margin: 0 22px; color: var(--ink); }
.pytanie > p + p, .pytanie > p + ol, .pytanie > ol + p { margin-top: 12px; }
.pytanie > ol { padding-left: 1.3em; display: grid; gap: 8px; }
.pytanie a { color: var(--navy); font-weight: 600; }
/* Instrukcja RustDesk: osobne, wyraźne bloki dla Windows i Maca */
.pytanie > .pytanie__podpowiedz { padding: 12px 16px; border-radius: 10px; background: #EEF3F8; color: var(--navy-900); }
.pytanie > .system { margin: 14px 22px 0; padding: 16px 20px 18px; border-radius: 12px; background: var(--cream); border: 1px solid var(--line); }
.system h3 { font-size: 1.08rem; font-weight: 700; color: var(--navy-900); }
.system ol { margin: 10px 0 0; padding-left: 1.3em; display: grid; gap: 8px; color: var(--ink); }
.pytanie > .system + p { margin-top: 16px; }
.pytanie { scroll-margin-top: calc(var(--header-h) + 16px); }
.oszustwo > :last-child, .pytanie > :last-child { margin-bottom: 20px; }
.oszustwo > p + p { margin-top: 10px; }
.oszustwo__rada { padding: 10px 14px; border-radius: 10px; background: var(--cream); }
.oszustwo--pilne { border-color: #F3D9A6; }
.oszustwo--pilne summary { color: #9B1C14; }
.oszustwo ol { padding-left: 1.2em; display: grid; gap: 6px; }

.cta { padding-block: 72px; }
.cta__inner { display: flex; justify-content: space-between; align-items: center; gap: 24px 48px; flex-wrap: wrap; }
.cta h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 700; }
.cta p { margin-top: 10px; color: #C9D3E0; max-width: 34em; }
.cta__przyciski { display: flex; flex-wrap: wrap; gap: 12px; }

/* ───────── Mail z szablonem ───────── */
.link-btn { display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; padding: 0; border: 0; background: none; font: inherit; font-weight: 600; color: var(--white); text-decoration: underline; text-decoration-color: rgba(245, 181, 61, .7); text-underline-offset: 4px; cursor: pointer; }
.link-btn:hover { color: var(--yellow); }
.mail { width: min(640px, calc(100% - 32px)); max-height: calc(100dvh - 32px); padding: 0; border: 0; border-radius: var(--radius); box-shadow: var(--shadow-lg); color: var(--ink); }
.mail::backdrop { background: rgba(15, 32, 54, .55); }
.mail__forma { display: grid; gap: 14px; padding: 26px 28px 24px; }
.mail__gora { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.mail h2 { font-size: 1.35rem; font-weight: 700; }
.mail__opis { margin-top: 4px; color: var(--muted); font-size: .95rem; }
.mail__zamknij { flex: none; width: 42px; height: 42px; border: 0; border-radius: 10px; background: var(--cream); font-size: 1.5rem; line-height: 1; color: var(--navy); cursor: pointer; }
.mail__tematy { display: flex; flex-wrap: wrap; gap: 8px; }
.mail__tematy button { padding: 8px 14px; border-radius: 99px; border: 1.5px solid #E3DED3; background: var(--white); font: inherit; font-size: .9rem; font-weight: 500; color: var(--navy-900); cursor: pointer; }
.mail__tematy button[aria-pressed="true"] { background: var(--navy); border-color: var(--navy); color: var(--white); }
.mail__pole { display: grid; gap: 6px; }
.mail__etykieta { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-size: .92rem; font-weight: 600; color: var(--navy-900); }
.mail__etykieta button { padding: 4px 10px; border-radius: 8px; border: 1px solid #DDE2E9; background: var(--white); font: inherit; font-size: .85rem; font-weight: 600; color: var(--navy); cursor: pointer; }
.mail input, .mail textarea { font-size: 1rem; min-height: 46px; }
.mail textarea { min-height: 230px; resize: vertical; line-height: 1.5; }
.mail__adres { background: var(--cream) !important; font-weight: 600; }
.mail__uwaga { font-size: .88rem; color: #7A4A00; min-height: 1.3em; }
.mail__akcje { display: flex; flex-wrap: wrap; gap: 10px; }
.mail__akcje .btn { min-height: 48px; }
.mail__akcje .btn--jasny { background: var(--white); color: var(--navy); border-color: #DDE2E9; }
.mail__akcje .btn--jasny:hover { border-color: var(--navy); }

/* Responsywność */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { max-width: 440px; margin-inline: auto; width: 100%; }
  .cards, .prices { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .travel, .zdalnie { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; gap: 48px; }
  .tlo-narzedzia { display: none; }
}

/* Menu chowa się pod przyciskiem, zanim linki (z „Bezpieczeństwem”) przestaną mieścić się w jednej linii */
@media (max-width: 1000px) {
  .burger { display: block; }
  .nav {
    position: absolute; top: var(--header-h); left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 4px;
    padding: 16px 24px 24px; background: var(--white); box-shadow: 0 16px 24px rgba(20, 40, 64, .1);
    opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .2s, transform .2s, visibility .2s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav a:not(.btn) { padding: 14px 16px; }
  .nav__cta { margin: 8px 0 0; }
}

@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps::before { display: none; }
}

@media (max-width: 640px) {
  :root { --header-h: 68px; }
  body { font-size: 1rem; }
  .container { padding-inline: 20px; }
  .brand__text span { display: none; }
  .hero { padding-block: 56px 72px; }
  .hero__buttons .btn { flex: 1 1 100%; }
  .stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 40px; padding-top: 28px; }
  .stats dt { font-size: 1.15rem; }
  .stats dd { font-size: .78rem; line-height: 1.35; }
  .pill { font-size: .8rem; padding: 7px 14px; border-radius: 18px; line-height: 1.35; }
  .pill__kropka { display: none; }
  .pill .bez-lamania { display: block; }
  /* Grafika na telefonie: delikatny znak w tle nagłówka, nie spycha przycisków w dół */
  .hero__visual { position: absolute; right: -64px; top: 18px; width: 240px; padding: 0; opacity: .15; pointer-events: none; }
  .hero__visual .chip { display: none; }
  .hero__content { position: relative; z-index: 1; }
  .section { padding-block: 72px; }
  .section__head { margin-bottom: 40px; }
  .cards, .prices, .features { grid-template-columns: 1fr; }
  .card, .price { padding: 28px 24px; }
  .travel, .zdalnie { padding: 24px 20px; }
  .zdalnie__akcja .btn { width: 100%; }
  .travel__zones { grid-template-columns: repeat(2, 1fr); }
  .form { padding: 24px 20px; }
  .form__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero--maly { padding-block: 44px 52px; }
  .zakladki button { font-size: .78rem; padding: 12px 4px 10px; gap: 4px; }
  .zakladki svg { width: 22px; height: 22px; }
  .panel { padding: 24px 18px 28px; }
  .panel h2 { font-size: 1.2rem; }
  .pole-akcja { flex-wrap: wrap; }
  .pole-akcja input { flex: 1 1 100%; }
  .pole-akcja .btn, .pole-akcja .btn-maly { flex: 1 1 auto; }
  .test__pytanie { grid-template-columns: 1fr; padding: 12px 14px 14px 48px; }
  .test__odp button { flex: 1; }
  .email-wyciek { padding: 16px 18px; }
  .cta__przyciski .btn { flex: 1 1 100%; }
  .mail { width: 100%; max-width: 100%; max-height: 100dvh; margin: auto 0 0; border-radius: var(--radius) var(--radius) 0 0; }
  .mail__forma { padding: 20px 18px; }
  .mail textarea { min-height: 200px; }
  .mail__akcje .btn { flex: 1 1 100%; }
  .call-fab {
    display: grid; place-items: center; position: fixed; right: 18px; bottom: 18px; z-index: 90;
    width: 60px; height: 60px; border-radius: 50%; background: var(--yellow); box-shadow: 0 10px 24px -6px rgba(20, 40, 64, .45);
  }
  .call-fab svg { width: 26px; height: 26px; fill: none; stroke: var(--navy-950); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
}

@media (max-width: 480px) {
  /* Wybór rodzaju hasła zawsze w jednym rzędzie, trzy równe przyciski */
  .tryby { display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; }
  .tryby button { padding: 10px 6px; font-size: .9rem; }
}

@media (max-width: 360px) {
  .container { padding-inline: 16px; }
  .panel { padding: 20px 14px 24px; }
  .panel__naglowek { flex-direction: column-reverse; gap: 8px; }
  .test__pytanie { padding: 12px 12px 12px 42px; }
  .test__pytanie::before { left: 10px; }
  .call-fab { width: 52px; height: 52px; right: 14px; bottom: 14px; }
  .form { padding: 20px 14px; }
  .cf-turnstile { transform: scale(.84); transform-origin: left top; margin-bottom: -10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .fala, .chip i::after, .nt-srub, .nt-klucz { animation: none; }
  .card, .btn { transition: none; }
}
