/* =====================================================
   SprowadzajzUSA.pl – nowoczesny arkusz stylów
   ===================================================== */

:root {
  --navy-950: #070c18;
  --navy-900: #0a1122;
  --navy-800: #101a33;
  --navy-700: #182a44;
  --red-500: #e11d2e;
  --red-400: #ff4d5a;
  --blue-800: #12235c;
  --ink: #131a26;
  --ink-soft: #4b5565;
  --paper: #ffffff;
  --paper-alt: #f4f6fb;
  --line: #e4e8f0;
  --radius: 18px;
  --shadow-sm: 0 2px 10px rgba(10, 17, 34, 0.06);
  --shadow-md: 0 14px 40px rgba(10, 17, 34, 0.12);
  --font-head: "Archivo", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --header-h: 76px;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

a, button {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* sekcje nie chowają się pod przyklejonym nagłówkiem przy nawigacji kotwicami */
section[id], div[id] { scroll-margin-top: calc(var(--header-h) + 14px); }

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

/* ---------- Typografia ---------- */

h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.9rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }

.accent { color: var(--red-500); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-500);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red-500);
  border-radius: 2px;
}

.section-head { max-width: 720px; margin-bottom: clamp(36px, 6vw, 56px); }
.section-lead { color: var(--ink-soft); font-size: 1.06rem; margin-top: 14px; }

.section-dark .section-lead { color: #a7b1c6; }

/* ---------- Przyciski ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  font-family: var(--font-head);
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: 0;
}

.btn svg { width: 19px; height: 19px; flex: 0 0 auto; }

.btn-primary {
  background: linear-gradient(135deg, var(--red-500), #b3121f);
  color: #fff;
  box-shadow: 0 10px 26px rgba(225, 29, 46, 0.35);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(225, 29, 46, 0.45); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.16); transform: translateY(-2px); }

.btn-dark {
  background: var(--navy-900);
  color: #fff;
  margin-top: 26px;
  box-shadow: var(--shadow-sm);
}

.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ---------- Nagłówek ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(7, 12, 24, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo { display: inline-flex; align-items: center; padding: 10px 0; }

.logo-text {
  font-family: var(--font-head);
  font-size: 1.22rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}

.logo-text strong { color: var(--red-400); font-weight: 900; }
.logo-text em { font-style: normal; opacity: 0.6; font-size: 0.85em; }

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.main-nav > a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.main-nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--red-400);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav > a:hover { color: #fff; }
.main-nav > a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-500);
  color: #fff !important;
  font-family: var(--font-head);
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(225, 29, 46, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta svg { width: 17px; height: 17px; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(225, 29, 46, 0.5); }
.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  min-width: 46px;
  min-height: 46px;
  padding: 8px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding: calc(var(--header-h) + 40px) 0 90px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(7, 12, 24, 0.94) 15%, rgba(7, 12, 24, 0.55) 55%, rgba(7, 12, 24, 0.35) 100%),
    url("../images/abmw.jpg") center / cover no-repeat;
  animation: heroZoom 22s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}

.hero-content { position: relative; z-index: 2; max-width: 780px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #dfe5f0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 9px 18px;
  margin-bottom: 26px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2fd36b;
  box-shadow: 0 0 0 4px rgba(47, 211, 107, 0.25);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(47, 211, 107, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(47, 211, 107, 0.1); }
}

.hero h1 { margin-bottom: 22px; text-wrap: balance; }

.hero-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: #ccd4e2;
  max-width: 620px;
  margin-bottom: 34px;
}

.hero-sub strong { color: #fff; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 54px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: clamp(20px, 4vw, 56px);
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  width: fit-content;
}

.hero-stats li { display: flex; flex-direction: column; gap: 2px; }

.hero-stats strong {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 800;
  color: #fff;
}

.hero-stats span { font-size: 0.85rem; color: #a7b1c6; }

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
  color: #fff;
  animation: bob 2.2s ease-in-out infinite;
}

.hero-scroll svg { width: 22px; height: 22px; }

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ---------- Sekcje ---------- */

.section { padding: clamp(70px, 10vw, 110px) 0; }
.section-alt { background: var(--paper-alt); }

.section-dark {
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(225, 29, 46, 0.13), transparent 60%),
    radial-gradient(800px 400px at 0% 110%, rgba(18, 35, 92, 0.5), transparent 60%),
    var(--navy-950);
  color: #fff;
}

/* ---------- Układ dwukolumnowy ---------- */

.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.col-text p { color: var(--ink-soft); margin-bottom: 16px; }
.col-text p strong { color: var(--ink); }
.col-text h2 { margin-bottom: 20px; }

.check-list { margin-top: 22px; display: grid; gap: 12px; }

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 500;
  color: var(--ink);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(225, 29, 46, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23e11d2e' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
  background-size: 13px;
  background-position: center;
  background-repeat: no-repeat;
}

.media-card {
  background: linear-gradient(150deg, var(--paper-alt), #e9edf6);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(24px, 4vw, 48px);
  box-shadow: var(--shadow-md);
}

.media-card img { transition: transform 0.4s ease; }
.media-card:hover img { transform: scale(1.04); }
.media-card-plain { background: linear-gradient(150deg, #ffffff, #eef1f8); }

.media-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}

.media-note svg { width: 30px; height: 30px; color: var(--red-500); flex: 0 0 auto; }
.media-note p { font-size: 0.94rem; color: var(--ink-soft); }
.media-note strong { color: var(--ink); }

/* ---------- Karty usług ---------- */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(225, 29, 46, 0.35);
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(225, 29, 46, 0.12), rgba(18, 35, 92, 0.1));
  margin-bottom: 20px;
}

.card-icon svg { width: 26px; height: 26px; color: var(--red-500); }

.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Kroki ---------- */

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
  counter-reset: step;
}

.step {
  display: flex;
  gap: 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  padding: 26px 26px;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.step:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 77, 90, 0.4);
}

.step-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.05rem;
  color: #fff;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red-500), #8f0f1a);
  box-shadow: 0 8px 20px rgba(225, 29, 46, 0.35);
}

.step h3 { margin-bottom: 8px; color: #fff; }
.step p { color: #a7b1c6; font-size: 0.94rem; }
.step p strong { color: #e6eaf2; }

.steps-cta {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.steps-cta p { font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; }

/* ---------- Koszty ---------- */

.costs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.cost-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.cost-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.cost-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.cost-card h3 span {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--red-500), #8f0f1a);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
}

.cost-desc { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 10px; }

.cost-card ul { display: grid; gap: 8px; }

.cost-card li {
  font-size: 0.9rem;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
}

.cost-card li b { color: var(--ink); font-weight: 700; }

.info-box {
  margin-top: 40px;
  display: flex;
  gap: 18px;
  background: linear-gradient(135deg, rgba(18, 35, 92, 0.05), rgba(225, 29, 46, 0.05));
  border: 1px solid var(--line);
  border-left: 4px solid var(--red-500);
  border-radius: var(--radius);
  padding: 26px 28px;
}

.info-box svg { width: 30px; height: 30px; color: var(--red-500); flex: 0 0 auto; margin-top: 2px; }
.info-box p { color: var(--ink-soft); font-size: 0.95rem; }
.info-box p + p { margin-top: 10px; }
.info-box strong { color: var(--ink); }

/* ---------- Galeria ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 12, 24, 0.55), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(4, 7, 14, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 86vh;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.lb-close,
.lb-prev,
.lb-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}

.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(225, 29, 46, 0.8); }

.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------- Kontakt ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

a.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(225, 29, 46, 0.35);
}

.contact-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(225, 29, 46, 0.12), rgba(18, 35, 92, 0.1));
}

.contact-icon svg { width: 22px; height: 22px; color: var(--red-500); }

.contact-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.contact-card strong { font-family: var(--font-head); font-size: 0.98rem; word-break: break-word; }

.contact-maps { display: grid; gap: 18px; }

.map-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.map-card iframe { width: 100%; height: 220px; border: 0; display: block; }

.map-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--navy-900);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

/* ---------- Stopka ---------- */

.site-footer {
  background: var(--navy-950);
  color: #a7b1c6;
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}

.footer-brand p { font-size: 0.92rem; margin-top: 16px; max-width: 340px; }

.footer-nav { display: grid; gap: 2px; align-content: start; }

.footer-nav a, .footer-contact a {
  font-size: 0.94rem;
  padding: 10px 0;
  transition: color 0.2s ease;
}

.footer-nav a:hover, .footer-contact a:hover { color: #fff; }

.footer-contact { display: grid; gap: 2px; align-content: start; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ---------- Pływający telefon ---------- */

.floating-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-500), #b3121f);
  display: none;
  place-items: center;
  color: #fff;
  box-shadow: 0 12px 30px rgba(225, 29, 46, 0.45);
  animation: ring 3.2s ease-in-out infinite;
}

.floating-call svg { width: 26px; height: 26px; }

@keyframes ring {
  0%, 88%, 100% { transform: rotate(0); }
  90% { transform: rotate(-12deg); }
  92% { transform: rotate(10deg); }
  94% { transform: rotate(-8deg); }
  96% { transform: rotate(6deg); }
  98% { transform: rotate(-4deg); }
}

/* ---------- Animacje reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg, .floating-call, .hero-scroll, .badge-dot { animation: none; }
}

/* =====================================================
   RESPONSYWNOŚĆ
   ===================================================== */

@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .costs-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  :root { --header-h: 64px; }

  .logo-text { font-size: 1.1rem; }

  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    width: min(320px, 84vw);
    height: calc(100dvh - var(--header-h));
    background: rgba(7, 12, 24, 0.98);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 28px 26px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    overflow-y: auto;
  }

  .main-nav.open { transform: translateX(0); }

  .main-nav > a {
    font-size: 1.08rem;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .nav-cta {
    margin-top: 18px;
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  .site-header {
    background: rgba(7, 12, 24, 0.92);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }

  /* Ken Burns bywa ciezki na slabszych telefonach */
  .hero-bg { animation: none; }

  .two-col { grid-template-columns: 1fr; }
  .two-col-reverse .col-media { order: 2; }
  .two-col-reverse .col-text { order: 1; }

  .steps { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); width: 100%; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .floating-call { display: grid; }
}

@media (max-width: 560px) {
  .cards-grid, .costs-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .contact-cards { grid-template-columns: 1fr; }

  .hero { min-height: auto; padding: calc(var(--header-h) + 44px) 0 56px; }
  .hero-badge { font-size: 0.72rem; padding: 8px 14px; margin-bottom: 20px; }
  .hero-sub { margin-bottom: 28px; }
  .hero-actions { margin-bottom: 40px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 18px 14px; padding-top: 24px; }
  .hero-scroll { display: none; }

  .section { padding: 60px 0; }
  .step { padding: 22px 18px; }
  .info-box { flex-direction: column; padding: 22px 20px; }
  .steps-cta { flex-direction: column; }
  .steps-cta .btn { width: 100%; justify-content: center; }
  .footer-bottom { justify-content: center; text-align: center; }

  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-prev, .lb-next { width: 44px; height: 44px; }
}
