/* ============================================================
   ElectroHome — demo "POD NAPIĘCIEM" (one-off #5, nocny granat + cyan)
   Animacje: prąd płynący (dashoffset), dom zapalający się okno po oknie,
   neon-flicker w H1, liczniki count-up (JS), puls awaryjny, orbita systemu.
   Wszystko compositor-friendly (opacity/transform/stroke-dashoffset),
   prefers-reduced-motion wyłącza całość. Kontrasty WCAG >=4.5:1.
   ============================================================ */
:root {
  --bg:        #0A0D19;   /* nocny granat — NIE petrol, NIE grafit */
  --bg-2:      #0D1122;
  --raise:     #0F1428;
  --surface:   #121834;
  --surface-2: #161D3E;
  --line:      #232C52;
  --line-soft: #1B2344;
  --text:      #EDF0FB;
  --muted:     #9AA4C6;   /* ~7.7:1 na tle */
  --volt:      #3FD4FF;   /* elektryczny cyan — kolor iskry */
  --volt-d:    #22B9E8;
  --violet:    #7B5CFF;   /* tylko w poświatach tła, nigdy jako tekst */
  --warm:      #FFD98E;   /* światło okien — tylko w ilustracji */
  --ink-on-volt: #0A0D19;
  --wire:      #45507A;
  --wrap: 1160px;
  --radius: 14px;
  --ease: cubic-bezier(.22,.68,.36,1);
  --shadow-card: 0 20px 44px -24px rgba(0,0,0,.7);
  --glow-volt: 0 0 0 1px rgba(63,212,255,.28), 0 14px 36px -14px rgba(63,212,255,.4);
  --font-display: 'Unbounded', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Work Sans', 'Segoe UI', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
h1, h2, h3 {
  margin: 0; font-family: var(--font-display); font-weight: 600;
  line-height: 1.12; letter-spacing: -.01em;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: rgba(63,212,255,.3); }
:focus-visible { outline: 2px solid var(--volt); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }
.wrap--narrow { max-width: 780px; }
/* anti grid-blowout (lekcja JBM) */
.hero__grid > *, .system > *, .contact > *, .card, .quote, .step, .scores__cell { min-width: 0; }

.skip {
  position: absolute; left: -999px; top: 8px; z-index: 200;
  background: var(--volt); color: var(--ink-on-volt); padding: 10px 18px; border-radius: 8px; font-weight: 700;
}
.skip:focus { left: 8px; }

/* --- typografia pomocnicza --- */
.kicker {
  font-family: var(--font-body);
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--volt); margin-bottom: 16px;
}
.lede { font-size: 1.12rem; line-height: 1.75; color: var(--muted); max-width: 60ch; }
.stars { color: var(--volt); letter-spacing: .12em; font-size: .95rem; }
.stars--sm { font-size: .8rem; }

.tel-inline { color: var(--volt); font-weight: 700; text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1.5px; }
.tel-inline:hover { color: #fff; }
.ext { color: var(--volt); font-weight: 600; }
.ext:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }

/* --- przyciski --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: .98rem;
  padding: 13px 22px; border-radius: 10px; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: background .25s, color .25s, border-color .25s, box-shadow .3s var(--ease), transform .2s var(--ease);
}
.btn--lg { padding: 16px 28px; font-size: 1.02rem; }
.btn .ic { width: 18px; height: 18px; fill: currentColor; flex: none; }
.btn--volt { background: var(--volt); color: var(--ink-on-volt); box-shadow: var(--glow-volt); }
.btn--volt:hover { background: var(--volt-d); transform: translateY(-1px); box-shadow: 0 0 0 1px rgba(63,212,255,.4), 0 18px 42px -14px rgba(63,212,255,.55); }
.btn--volt:active { transform: translateY(1px); box-shadow: 0 4px 14px -10px rgba(63,212,255,.4); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--volt); color: var(--volt); }

/* ============ TOPBAR ============ */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,13,25,.88);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar__in { display: flex; align-items: center; gap: 28px; min-height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 10px; margin-right: auto; }
.brand__bolt { width: 22px; height: 22px; fill: var(--volt); flex: none; filter: drop-shadow(0 0 6px rgba(63,212,255,.6)); }
.brand__mark { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; letter-spacing: -.01em; color: var(--text); line-height: 1; }
.brand__home { color: var(--volt); }
.nav { display: flex; gap: 26px; }
.nav a { font-weight: 600; font-size: .95rem; color: var(--muted); transition: color .25s; }
.nav a:hover { color: var(--text); }
.nav-toggle { display: none; }

/* ============ HERO ============ */
.hero {
  position: relative;
  background:
    radial-gradient(900px 520px at 86% -10%, rgba(123,92,255,.13), transparent 60%),
    radial-gradient(700px 420px at -8% 110%, rgba(63,212,255,.08), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero__glow {
  position: absolute; left: 0; top: 0; width: 620px; height: 620px;
  border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(63,212,255,.09), rgba(123,92,255,.05) 42%, transparent 66%);
  transform: translate3d(40vw, -10%, 0);
  transition: transform .5s var(--ease);
  will-change: transform;
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  gap: clamp(32px, 5vw, 64px); align-items: center;
  padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(56px, 8vw, 96px);
}
.hero h1 { font-size: clamp(1.9rem, 4.2vw, 3.2rem); margin-bottom: 24px; }
.hero .lede { margin-bottom: 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__proof { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; color: var(--muted); font-size: .95rem; }
.hero__proof strong { color: var(--text); }
.proof { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 4px 8px; }
a.proof:hover span:last-child { text-decoration: underline; text-underline-offset: 4px; }

/* neon w H1 */
.neon {
  color: var(--volt);
  text-shadow: 0 0 10px rgba(63,212,255,.55), 0 0 34px rgba(63,212,255,.3);
  animation: neonBoot 2.2s ease-out 1 both, neonHum 6s ease-in-out 2.2s infinite;
}
@keyframes neonBoot {
  0% { opacity: .15; text-shadow: none; }
  8% { opacity: .9; } 12% { opacity: .2; text-shadow: none; }
  18% { opacity: 1; } 24% { opacity: .35; }
  32%, 100% { opacity: 1; text-shadow: 0 0 10px rgba(63,212,255,.55), 0 0 34px rgba(63,212,255,.3); }
}
@keyframes neonHum {
  0%, 100% { text-shadow: 0 0 10px rgba(63,212,255,.55), 0 0 34px rgba(63,212,255,.3); }
  50% { text-shadow: 0 0 14px rgba(63,212,255,.75), 0 0 48px rgba(63,212,255,.42); }
}

/* panel: dom pod napięciem */
.hero__art {
  position: relative; margin: 0; padding: clamp(20px, 2.6vw, 30px);
  background:
    radial-gradient(420px 300px at 82% 10%, rgba(123,92,255,.12), transparent 60%),
    linear-gradient(180deg, var(--surface), var(--raise));
  border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow-card);
}
.hero__art svg { width: 100%; height: auto; }
.hero__artnote {
  margin-top: 14px; text-align: center;
  font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
/* — elementy statyczne rysunku — */
.hero__art .ground { stroke: #2A3358; stroke-width: 2; stroke-linecap: round; }
.hero__art .pole { stroke: var(--wire); stroke-width: 2.4; stroke-linecap: round; }
.hero__art .insul { fill: var(--wire); }
.hero__art .house { stroke: #8FA0CC; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.hero__art .house-thin { stroke: #45507A; stroke-width: 1.6; fill: none; }
.hero__art .box { stroke: #8FA0CC; stroke-width: 1.7; fill: #10152C; }
.hero__art .digits { font-family: var(--font-body); font-size: 13px; font-weight: 700; fill: var(--volt); letter-spacing: .05em; }
.hero__art .win-frame rect { stroke: #45507A; stroke-width: 1.5; fill: #0E1226; }
.hero__art .cam__lens { fill: var(--volt); }
.hero__art .lbl text { font-family: var(--font-body); font-size: 9.5px; font-weight: 700; letter-spacing: .12em; fill: var(--muted); }
/* — prąd płynie — */
.hero__art .wire-base { stroke: #2A3358; stroke-width: 2.2; fill: none; }
.hero__art .wire-live {
  stroke: var(--volt); stroke-width: 2.2; fill: none; stroke-linecap: round;
  stroke-dasharray: 10 16;
  filter: drop-shadow(0 0 4px rgba(63,212,255,.7));
  animation: dashflow 1.6s linear infinite;
}
.hero__art .wire-live--d2 { animation-delay: .35s; }
@keyframes dashflow { to { stroke-dashoffset: -52; } }
/* — okna zapalają się kolejno — */
.hero__art .win {
  fill: var(--warm); stroke: none; opacity: 0;
  animation: lightsOn 13s linear infinite;
  filter: drop-shadow(0 0 8px rgba(255,217,142,.45));
}
.hero__art .win-1 { animation-delay: 1.2s; }
.hero__art .win-2 { animation-delay: 2.1s; }
.hero__art .win-3 { animation-delay: 3s; }
.hero__art .win-4 { animation-delay: 3.9s; }
.hero__art .win-5 { animation-delay: 4.8s; }
@keyframes lightsOn {
  0% { opacity: 0; }
  3% { opacity: .8; } 4.2% { opacity: .15; } 6% { opacity: .92; }
  62% { opacity: .92; }
  70% { opacity: .08; }
  100% { opacity: .08; }
}
/* — iskra i wifi — */
.hero__art .zap { fill: var(--volt); opacity: 0; animation: zapFlick 7s linear infinite 2.4s; filter: drop-shadow(0 0 6px rgba(63,212,255,.8)); }
@keyframes zapFlick {
  0%, 88% { opacity: 0; }
  89% { opacity: 1; } 90.5% { opacity: 0; }
  92% { opacity: .9; } 94% { opacity: 0; }
  100% { opacity: 0; }
}
.hero__art .wifi__arc { stroke: var(--volt); stroke-width: 2; fill: none; stroke-linecap: round; opacity: .25; }
.hero__art .wifi__dot { fill: var(--volt); }
.hero__art .wifi__arc--1 { animation: wifiPulse 3.4s ease-in-out infinite; }
.hero__art .wifi__arc--2 { animation: wifiPulse 3.4s ease-in-out infinite .5s; }
@keyframes wifiPulse { 0%, 100% { opacity: .2; } 50% { opacity: .85; } }

/* linia prądu między sekcjami */
.pulseline {
  height: 2px; opacity: .5;
  background: repeating-linear-gradient(90deg, rgba(63,212,255,.9) 0 10px, transparent 10px 26px);
  background-size: 26px 2px;
  animation: slideDash 1.4s linear infinite;
}
@keyframes slideDash { to { background-position: 26px 0; } }

/* ============ LICZNIKI ============ */
.scores { background: var(--bg); border-bottom: 1px solid var(--line); }
.scores__grid { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; }
.scores__cell { padding: 26px; border-left: 1px solid var(--line); }
.scores__cell:first-child { border-left: 0; padding-left: 0; }
.scores__cell dt {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.scores__cell dd {
  margin: 0; font-family: var(--font-display); font-weight: 700;
  font-size: 1.5rem; color: var(--text); font-variant-numeric: tabular-nums;
}
.scores__sub { display: block; font-family: var(--font-body); font-size: .85rem; font-weight: 500; color: var(--muted); margin-top: 2px; }

/* ============ SEKCJE ============ */
.section { padding: clamp(64px, 9vw, 116px) 0; }
.section--raise { background: var(--raise); border-block: 1px solid var(--line); }
.section__head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 56px); }
.section__head h2 { font-size: clamp(1.5rem, 2.9vw, 2.15rem); }
.section__head .lede { margin-top: 16px; }
.section__cta { margin-top: clamp(32px, 4vw, 44px); color: var(--muted); font-size: 1.05rem; }
section[id] { scroll-margin-top: 86px; }

/* ============ USŁUGI ============ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px 28px;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: rgba(63,212,255,.5); box-shadow: 0 0 0 1px rgba(63,212,255,.15), var(--shadow-card); }
.card__ic {
  width: 52px; height: 52px; border-radius: 13px;
  background: rgba(63,212,255,.1); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card__ic svg { width: 28px; height: 28px; fill: none; stroke: var(--volt); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .96rem; line-height: 1.68; }
.card--accent { background: linear-gradient(160deg, #114A94, #15629B); border-color: transparent; }
.card--accent h3 { color: #fff; }
.card--accent p { color: #E3F4FF; }
.card--accent .card__ic { background: rgba(255,255,255,.16); }
.card--accent .card__ic svg { stroke: #fff; }
.card--accent:hover { box-shadow: 0 22px 46px -20px rgba(27,135,196,.55); }
.card__link {
  display: inline-block; margin-top: 14px; color: #fff; font-weight: 600; font-size: .95rem;
  text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1.5px;
}
.card__link:hover { color: #CDEBFF; }

/* ============ AWARIE ============ */
.alert { background: #080A13; border-block: 1px solid var(--line); }
.alert__in {
  display: flex; align-items: center; gap: clamp(20px, 3vw, 36px);
  padding-top: clamp(40px, 6vw, 60px); padding-bottom: clamp(40px, 6vw, 60px);
  flex-wrap: wrap;
}
.alert__beacon {
  width: 16px; height: 16px; border-radius: 50%; flex: none;
  background: var(--volt);
  animation: beacon 2.2s ease-out infinite;
}
@keyframes beacon {
  0% { box-shadow: 0 0 0 0 rgba(63,212,255,.55); }
  70% { box-shadow: 0 0 0 22px rgba(63,212,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(63,212,255,0); }
}
.alert__txt { flex: 1 1 320px; }
.alert h2 { font-size: clamp(1.35rem, 2.6vw, 1.9rem); margin-bottom: 10px; }
.alert p { color: var(--muted); max-width: 58ch; }
.alert .btn { flex: none; }

/* ============ JEDEN SYSTEM ============ */
.system { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(36px, 6vw, 72px); align-items: center; }
.system__copy h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin-bottom: 20px; }
.system__points { display: grid; gap: 20px; margin-top: 32px; }
.spoint { padding-left: 20px; border-left: 2px solid rgba(63,212,255,.5); }
.spoint h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 4px; }
.spoint p { color: var(--muted); font-size: .96rem; line-height: 1.65; max-width: 56ch; }

/* orbita: rdzeń + satelity */
.system__badge { display: flex; justify-content: center; }
.orbit { position: relative; width: min(300px, 70vw); aspect-ratio: 1; }
.orbit__core {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 84px; height: 84px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #1B87C4, #124F9E);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 1px rgba(63,212,255,.35), 0 0 40px rgba(63,212,255,.3);
}
.orbit__core svg { width: 38px; height: 38px; fill: #fff; }
.orbit__ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px dashed rgba(63,212,255,.4);
  animation: orbitSpin 26s linear infinite;
}
@keyframes orbitSpin { to { transform: rotate(360deg); } }
.orbit__sat {
  position: absolute; width: 56px; height: 56px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card);
  animation: satBob 4.5s ease-in-out infinite;
}
.orbit__sat svg { width: 26px; height: 26px; fill: none; stroke: var(--volt); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.orbit__sat--1 { left: 50%; top: -8px; transform: translateX(-50%); }
.orbit__sat--2 { left: -8px; bottom: 14%; animation-delay: 1.4s; }
.orbit__sat--3 { right: -8px; bottom: 14%; animation-delay: 2.8s; }
@keyframes satBob { 0%, 100% { translate: 0 0; } 50% { translate: 0 -6px; } }

/* ============ OPINIE ============ */
.repbar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 24px; margin-bottom: 26px;
}
.repbar__score { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; display: inline-flex; align-items: center; gap: 12px; }
.repbar__count { color: var(--muted); }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote {
  margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 14px;
}
.quote p { color: var(--text); font-size: .97rem; line-height: 1.7; }
.quote footer { margin-top: auto; color: var(--muted); font-size: .87rem; }
.quote cite { font-style: normal; font-weight: 700; color: var(--text); }
.quote__src { color: var(--muted); }

/* ============ PROCES ============ */
.steps {
  position: relative;
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.steps::before {
  content: ""; position: absolute; left: 4%; right: 4%; top: 46px; height: 2px; z-index: 0;
  background: repeating-linear-gradient(90deg, rgba(63,212,255,.55) 0 10px, transparent 10px 26px);
  background-size: 26px 2px;
  animation: slideDash 1.4s linear infinite;
  opacity: .35;
}
.step {
  position: relative; z-index: 1;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px 28px;
}
.step__no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  color: var(--volt); border: 1.5px solid rgba(63,212,255,.5);
  background: var(--bg-2);
  margin-bottom: 14px;
}
.step h3 { font-size: 1.02rem; font-weight: 600; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .95rem; line-height: 1.65; }

/* ============ OBSZAR ============ */
.area { background: var(--bg); border-bottom: 1px solid var(--line); }
.area__in { display: flex; gap: 16px; align-items: flex-start; padding-top: 30px; padding-bottom: 30px; }
.area__pin { width: 26px; height: 26px; flex: none; fill: none; stroke: var(--volt); stroke-width: 1.7; margin-top: 2px; }
.area p { color: var(--muted); max-width: 75ch; }
.area strong { color: var(--text); }

/* ============ FAQ ============ */
.faq { display: grid; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px; font-family: var(--font-body); font-weight: 700;
  font-size: 1.08rem; transition: color .25s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--volt); }
.faq__x { position: relative; width: 22px; height: 22px; flex: none; }
.faq__x::before, .faq__x::after {
  content: ""; position: absolute; inset: 0; margin: auto; background: var(--volt); border-radius: 2px;
  transition: transform .3s var(--ease);
}
.faq__x::before { width: 14px; height: 2px; }
.faq__x::after { width: 2px; height: 14px; }
.faq details[open] .faq__x::after { transform: rotate(90deg); }
.faq details p { padding: 0 4px 24px; color: var(--muted); max-width: 66ch; }

/* ============ KONTAKT ============ */
.section--contact { background: var(--raise); border-top: 1px solid var(--line); }
.contact { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: clamp(36px, 6vw, 80px); align-items: start; }
.contact__main h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 16px; }
.contact__phone {
  display: inline-block; margin: 30px 0 10px;
  font-family: var(--font-display); font-weight: 700; letter-spacing: -.01em;
  font-size: clamp(1.7rem, 4vw, 2.6rem); color: var(--volt);
  font-variant-numeric: tabular-nums; transition: color .25s;
  text-shadow: 0 0 24px rgba(63,212,255,.25);
}
.contact__phone:hover { color: #fff; }
.contact__hint { color: var(--muted); font-size: .95rem; }
.contact__meta { display: grid; gap: 26px; }
.hours { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.hours th, .hours td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line); font-size: .96rem; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours th { font-weight: 600; color: var(--muted); }
.hours td { font-weight: 700; text-align: right; color: var(--text); }
.addr { font-style: normal; color: var(--muted); line-height: 1.8; }

/* ============ STOPKA ============ */
.footer { background: #080A13; color: var(--muted); padding: 54px 0 90px; border-top: 1px solid var(--line); }
.footer__in { display: grid; gap: 22px; }
.footer__brand { display: flex; gap: 14px; align-items: flex-start; color: var(--text); }
.footer__brand strong { font-family: var(--font-display); font-size: 1rem; font-weight: 600; }
.footer__brand span { font-size: .9rem; color: var(--muted); }
.footer__nap { font-size: .82rem; color: #7D87AC; line-height: 1.7; border-top: 1px solid var(--line); padding-top: 20px; }
.footer__nap a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.footer__nap a:hover { color: var(--text); }
.footer__note { font-size: .82rem; color: #7D87AC; }

/* ============ MOBILNY PASEK ============ */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
  background: rgba(8,10,19,.96);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line); box-shadow: 0 -12px 30px -18px rgba(0,0,0,.85);
  transition: transform .35s var(--ease);
}
.callbar.hide { transform: translateY(110%); }
.callbar__txt { font-size: .9rem; font-weight: 600; color: var(--muted); }
.callbar__btn { flex: none; }

/* ============ ANIMACJE WEJŚCIA ============ */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

/* ============ REDUCED MOTION — wyłącz CAŁĄ choreografię ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card { transition: none; }
  .neon, .hero__art .wire-live, .hero__art .win, .hero__art .zap,
  .hero__art .wifi__arc--1, .hero__art .wifi__arc--2,
  .pulseline, .steps::before, .alert__beacon, .orbit__ring, .orbit__sat { animation: none; }
  .hero__art .win { opacity: .9; }
  .hero__art .wire-live { stroke-dasharray: none; }
  .hero__art .wifi__arc { opacity: .6; }
  .hero__glow { display: none; }
}

/* ============ RESPONSYWNOŚĆ ============ */
@media (max-width: 1060px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .scores__grid { grid-template-columns: repeat(2, 1fr); row-gap: 8px; }
  .scores__cell { padding: 18px 22px; }
  .scores__cell:nth-child(odd) { border-left: 0; padding-left: 0; }
}

@media (max-width: 920px) {
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; padding: 8px 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px clamp(20px, 4vw, 40px); border-top: 1px solid var(--line-soft); }
  .nav-toggle {
    display: inline-flex; flex-direction: column; gap: 6px; justify-content: center;
    width: 44px; height: 44px; padding: 10px;
    background: none; border: 1px solid var(--line); border-radius: 10px; cursor: pointer;
  }
  .nav-toggle span { display: block; height: 2px; width: 100%; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { max-width: 560px; }
  .hero__glow { display: none; }
  .system { grid-template-columns: 1fr; }
  .system__badge { order: 2; margin-top: 10px; }
  .contact { grid-template-columns: 1fr; }
  .alert__in { align-items: flex-start; }
}

@media (max-width: 760px) {
  body { padding-bottom: 74px; }
  .topbar__tel { display: none; }
  .callbar { display: flex; }
  .cards { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .scores__grid { grid-template-columns: 1fr; }
  .scores__cell { border-left: 0; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
  .scores__cell:last-child { border-bottom: 0; }
  .hero__cta .btn { width: 100%; }
  .alert .btn { width: 100%; }
  .contact__phone { font-size: clamp(1.45rem, 7.2vw, 2.1rem); }
}

@media (max-width: 430px) {
  .btn__num { display: none; } /* numer i tak jest w tel: */
}

@media (max-width: 400px) {
  .callbar__txt { display: none; }
  .callbar { justify-content: stretch; }
  .callbar__btn { flex: 1; }
}
