
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: #f6f4ee;
  border-bottom: 1px solid var(--hairline-ink);
  transition: padding .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease), top .4s var(--ease), left .4s var(--ease), right .4s var(--ease), border-radius .4s var(--ease);
}
.nav.is-scrolled {
  top: 14px;
  left: 20px;
  right: 20px;
  padding: 10px 0;
  border-radius: 8px;
  background: #f6f4ee;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.15);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.nav__wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.14em;
}
.nav__logo-img { height: 26px; width: auto; }
.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 16px;
  font-weight: 500;
}
.nav__menu-item.has-submenu { position: relative; }
.nav__menu-item.has-submenu > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav__sub-caret { transition: transform .2s var(--ease); }
.nav__menu-item.has-submenu:hover .nav__sub-caret { transform: rotate(180deg); }
.nav__submenu {
  position: absolute;
  top: 100%;
  left: -16px;
  margin: 0;
  padding: 8px;
  list-style: none;
  min-width: 280px;
  background: #f6f4ee;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  z-index: 50;
}
.nav__menu-item.has-submenu:hover .nav__submenu,
.nav__menu-item.has-submenu:focus-within .nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}
.nav__submenu li { margin: 0; }
.nav__menu .nav__submenu a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1.2;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.nav__submenu a::after { display: none; }
.nav__submenu a:hover { background: rgba(201,162,75,0.12); color: var(--gold); }
.nav__sub-label { flex: 1; }
.nav__sub-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--gold);
  color: #1C1608;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateX(-8px);
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease), background .2s var(--ease);
}
.nav__sub-cta svg { transition: transform .25s var(--ease); }
.nav__submenu a:hover .nav__sub-cta,
.nav__submenu a:focus-visible .nav__sub-cta {
  opacity: 1;
  transform: translateX(0);
}
.nav__submenu a:hover .nav__sub-cta svg { transform: translateX(3px); }
.nav__menu a {
  position: relative;
  padding: 8px 0;
  color: var(--ink);
  transition: color .2s var(--ease);
}
.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__menu a:hover,
.nav__menu a.is-active { color: var(--gold); }
.nav__menu a.is-active::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__cta { padding: 11px 47px; font-size: 15px; }
.nav__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s var(--ease);
  color: var(--ink);
}
.nav__social:hover { opacity: 0.7; }
.nav__social img { width: 22px; height: 22px; filter: brightness(0); }
.nav__social:hover { border-color: var(--gold); color: var(--gold); }

.nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.hero {
  position: relative;
  padding-top: 120px;
  padding-bottom: 0;
  overflow: hidden;
}
/* Hero "clean" — bez vignette/mgły, bez nagłówka w środku, sama animacja.
   Mobile: aspect-ratio 4/3 żeby nie wystawała poza ekran przy wąskich viewportach.
   padding-top dopasowany do wysokości fixed nav (~76px desktop / 68px tablet)
   żeby wideo dochodziło dokładnie pod menu bez wizualnej dziury. */
.hero.hero--clean {
  background: #0b0b0c;
  padding-top: 76px;
}
@media (max-width: 1199.98px) { .hero.hero--clean { padding-top: 68px; } }
.hero--clean .hero__bg {
  position: relative; /* zajmuje miejsce w flow, daje wysokość sekcji */
  aspect-ratio: 16 / 7;
  min-height: 380px;
  max-height: 78vh;
  inset: auto;
}
@media (max-width: 767.98px) {
  /* Mobile: aspect-ratio = video native (16/9). Bez „lewej/prawej obcinki"
     przez object-fit: cover (które aktywuje się gdy aspect kontenera ≠ video).
     Logo wewnątrz wideo widoczne w pełni. */
  .hero--clean .hero__bg { aspect-ratio: 16 / 9; min-height: 0; max-height: none; }
  /* Wyłącz 104% overflow + parallax-shift (`top:-2%; left:-2%`) na mobile —
     na małym ekranie i tak nie ma efektu parallax, a obcina logo z boków. */
  .hero--clean .hero__video,
  .hero--clean .hero__image {
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: contain;  /* pełne wideo, ewentualne 2 paski u góry/dołu OK — logo zawsze widoczne */
    background: #0b0b0c;
  }
}

/* "Hero pod hero" — sekcja z głównym claimem zaraz po animacji. Tło ciemne
   spójne z resztą strony (section-dark globalnie). Typografia jak hero__title,
   ale wycentrowana i z mniejszym top-padding (już pod animacją, nie pod nav). */
.hero-tagline { padding: 80px 0 60px; text-align: center; }
.hero-tagline__title {
  /* clamp() — font skalowany żeby długi napis "Dostarczamy rozwiązania i usługi IT"
     zmieścił się w jednej linii. nowrap + text-wrap: nowrap bo host body ma
     `h1-h4 { text-wrap: balance }` (styles.css), które forsuje wrap nawet gdy
     jest miejsce. */
  font-size: clamp(40px, 5.2vw, 72px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0;
  color: var(--text);
  white-space: nowrap;
  text-wrap: nowrap;
}
/* Tytuł = plain inline text + jeden <span class="hero-tagline__accent">
   na słowo "rozwiązania" (gold shimmer). Cały h1 to jeden flow tekstowy,
   browser sam dba o wrapping. */
.hero-tagline__accent {
  background: linear-gradient(100deg, var(--gold) 0%, var(--gold-2) 40%, #F3D988 55%, var(--gold-2) 70%, var(--gold) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: heroShimmer 6s linear infinite;
}
.hero-tagline__sub {
  margin: 22px auto 0;
  font-size: 26px;
  color: var(--text-dim);
  max-width: 720px;
}
/* CTA pod claimem — w tej samej sekcji co tekst, wycentrowane. */
.hero-tagline__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 32px;
}
@media (max-width: 767.98px) {
  .hero-tagline { padding: 48px 0 36px; }
  .hero-tagline__title { font-size: 40px; line-height: 1.1; white-space: normal; text-wrap: balance; }
  .hero-tagline__sub { font-size: 18px; margin-top: 14px; }
  .hero-tagline__cta { gap: 10px; margin-top: 22px; flex-direction: column; align-items: center; }
  .hero-tagline__cta .btn { width: 100%; max-width: 320px; justify-content: center; }
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0b0b0c;
}
.hero__image,
.hero__video {
  position: absolute;
  top: -2%;
  left: -2%;
  width: 104%;
  height: 104%;
  object-fit: cover;
  object-position: center;
  border: none;
  background: #0b0b0c;
  will-change: transform;
}
.hero__image { animation: heroZoom 20s ease-in-out infinite alternate; }
@keyframes heroZoom {
  from { transform: scale(1.05) translate(0, 0); }
  to { transform: scale(1.15) translate(-2%, -1%); }
}
.hero__vignette {
  animation: heroVignettePulse 8s ease-in-out infinite alternate;
}
@keyframes heroVignettePulse {
  from { opacity: 0.9; }
  to { opacity: 1; }
}
.hero__line:nth-child(2) {
  background: linear-gradient(100deg, var(--gold) 0%, var(--gold-2) 40%, #F3D988 55%, var(--gold-2) 70%, var(--gold) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: heroShimmer 6s linear infinite;
}
@keyframes heroShimmer {
  from { background-position: 200% 0; }
  to { background-position: -200% 0; }
}
.hero__sub {
  animation: heroFloatIn 1.2s .6s both cubic-bezier(.22,.61,.36,1);
}
.hero__cta {
  animation: heroFloatIn 1.2s .85s both cubic-bezier(.22,.61,.36,1);
}
@keyframes heroFloatIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

html.js-reveal-ready section.section-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
html.js-reveal-ready section.section-reveal.is-in {
  opacity: 1;
  transform: none;
}

.hero__particles { position: absolute; inset: 0; width: 100%; height: 100%; display: none; }
.hero__bg[data-hero-variant="particles"] .hero__particles { display: block; }

.hero__video-overlay { position: absolute; inset: 0; display: none; opacity: .5;
  background: repeating-linear-gradient(0deg, rgba(201,162,75,0.06) 0 1px, transparent 1px 8px); }
.hero__bg[data-hero-variant="video"] .hero__video-overlay { display: block; animation: scanlines 10s linear infinite; }
.hero__video-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px) 0 0 / 80px 80px;
}
@keyframes scanlines {
  from { background-position: 0 0; }
  to { background-position: 0 80px; }
}

.hero__vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(11,11,12,0.85) 0%, rgba(11,11,12,0.55) 45%, rgba(11,11,12,0.3) 100%),
    linear-gradient(to bottom, rgba(11,11,12,0.35) 0%, rgba(11,11,12,0.15) 40%, rgba(11,11,12,0.15) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 80px;
}

.hero__text { max-width: 720px; }
.hero__title {
  font-size: 76px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
}
/* `.hero__line { display: block }` (default ze starego layoutu) celowo usunięte —
   teraz `.hero-tagline__title .hero__line` definiuje swój własny display
   (inline desktop / block mobile). Reszta .hero__line poza .hero-tagline__title
   nie istnieje w obecnym layoucie. */
.hero__line:nth-child(2) { color: var(--gold); }
.hero__sub {
  margin-top: 28px;
  font-size: 30px;
  color: var(--text-dim);
  font-weight: 400;
  max-width: 600px;
  line-height: 31px;
}
.hero__cta {
  margin-top: 48px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  padding-top: 28px;
  margin-top: 60px;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 20px;
  border-right: 1px solid var(--hairline);
}
.hero__stat:first-child { padding-left: 0; }
.hero__stat:last-child { border-right: none; }
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: inline-block;
}
.hero__stat-plus { font-family: var(--font-display); font-size: 32px; color: var(--gold); font-weight: 700; margin-left: 2px; }
.hero__stat-label { font-size: 13px; color: var(--text-dim); margin-top: 6px; }


.campaigns { padding: 96px 0 120px; }
.campaigns__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.campaigns__title { font-size: 36px; font-weight: 700; color: var(--ink); }
.campaigns__controls { display: flex; gap: 10px; }

.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 8px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  transition: all .25s var(--ease);
}
.carousel-btn svg { width: 16px; height: 16px; }
.carousel-btn:hover { background: var(--gold); color: #1C1608; }
.carousel-btn--ink { border-color: rgba(17,16,18,0.25); color: var(--ink); }
.carousel-btn--ink:hover { background: var(--gold); color: #1C1608; border-color: var(--gold); }

.campaigns > .container { max-width: 1440px; }
.campaigns__track {
  display: flex;
  gap: 24px;
  overflow: hidden;
  scroll-behavior: smooth;
}
.campaign-banner {
  flex: 0 0 100%;
  min-width: 100%;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
}
.campaign-banner img { width: 100%; height: auto; display: block; }
.campaign-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: calc((100% - 48px) / 3);
  background: #fff;
  border: 1px solid rgba(17,16,18,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.campaign-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -20px rgba(17,16,18,0.25);
  border-color: var(--gold);
}
.campaign-card__img {
  aspect-ratio: 16/9;
  width: 100%;
}
.campaign-card__body { padding: 28px; display: flex; flex-direction: column; gap: 18px; flex: 1; }
.campaign-card__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}
.campaign-card__brands { display: flex; align-items: center; gap: 14px; color: var(--ink-dim); font-weight: 600; }
.campaign-card__brands .sep { color: var(--ink-dim); font-size: 20px; }
.brand-chip { font-size: 14px; font-weight: 700; color: var(--ink); }
.brand-chip--own { color: var(--gold); }
.campaign-card__link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
  color: var(--gold);
  border-top: 1px solid var(--hairline-ink);
  padding-top: 18px;
}
.campaign-card__link span { transition: transform .3s var(--ease); }
.campaign-card__link:hover span { transform: translateX(4px); }

.campaigns__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 32px;
}
.campaigns__dots button {
  width: 28px; height: 4px;
  border-radius: 2px;
  background: rgba(17,16,18,0.15);
  transition: background .25s var(--ease);
}
.campaigns__dots button.is-active { background: var(--gold); }


.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
}
.about__lead { color: var(--text-dim); font-size: 15.5px; margin: 28px 0 20px; max-width: 520px; }
.about__bold { color: var(--text); font-weight: 600; font-size: 15.5px; max-width: 520px; }
.about__cta { margin-top: 36px; }

.about__image-wrap { position: relative; padding: 24px 0 24px 24px; }
.about__image-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  top: 48px;
  bottom: 0;
  right: 48px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  z-index: 0;
  pointer-events: none;
}
.about__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  transform-origin: left center;
  transform: scale(calc(0.86 + 0.14 * var(--scroll-p, 0)));
  transition: transform .05s linear;
  will-change: transform;
}
.about__sticker {
  position: absolute;
  bottom: 30px;
  left: -40px;
  background: var(--bg-2);
  border: 1px solid var(--gold-line);
  padding: 22px 26px;
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 4px;
}
.about__sticker-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.about__sticker-label { font-size: 13px; color: var(--text-dim); }


.offer { padding: 60px 0 120px; }
.offer__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.offer__intro { color: var(--text-dim); font-size: 15.5px; margin: 24px 0 40px; max-width: 500px; }
.offer__image-wrap { position: relative; padding: 24px 0 24px 24px; margin-top: 32px; }
.offer__image-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  top: 48px;
  bottom: 0;
  right: 48px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  z-index: 0;
  pointer-events: none;
}
.offer__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  transform-origin: left center;
  transform: scale(calc(0.86 + 0.14 * var(--scroll-p, 0)));
  transition: transform .05s linear;
  will-change: transform;
}

.offer__accordion-head { margin-bottom: 28px; }
.offer__heading { font-size: 26px; color: var(--text); margin-top: 14px; max-width: 460px; }

.acc { display: flex; flex-direction: column; border-top: 1px solid var(--hairline); }
.acc__item {
  position: relative;
  width: 100%;
  text-align: left;
  padding: 26px 0 26px;
  border-bottom: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 56px 1fr 24px;
  align-items: flex-start;
  gap: 16px;
  color: var(--text);
  transition: color .2s var(--ease);
}
.acc__item:hover .acc__title { color: var(--gold); }
.acc__num {
  font-family: ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace;
  font-size: 12px;
  color: var(--gold);
  padding-top: 4px;
  letter-spacing: 0.08em;
}
.acc__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  transition: color .2s var(--ease);
}
.acc__icon {
  width: 24px; height: 24px;
  position: relative;
  margin-top: 2px;
}
.acc__icon::before, .acc__icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 1px;
  transition: transform .3s var(--ease);
}
.acc__icon::before { top: 11px; left: 2px; right: 2px; height: 2px; }
.acc__icon::after { top: 2px; bottom: 2px; left: 11px; width: 2px; }
.acc__item[aria-expanded="true"] .acc__icon::after { transform: scaleY(0); }
.acc__body {
  grid-column: 2;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .45s var(--ease), opacity .3s var(--ease), padding .3s var(--ease);
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.6;
  padding-top: 0;
}
.acc__item[aria-expanded="true"] .acc__body {
  max-height: 240px;
  opacity: 1;
  padding-top: 12px;
}
.acc__tags {
  list-style: none;
  padding: 0;
  margin: 14px 0 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.acc__tags li {
  font-size: 12px;
  padding: 5px 11px;
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  color: var(--gold);
  background: var(--gold-soft);
  font-family: ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace;
  letter-spacing: 0.02em;
}


.features { padding: 60px 0 120px; }
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 70px;
}
.feature-card {
  position: relative;
  background: #262627;
  border-radius: var(--radius);
  padding: 90px 28px 40px;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.12);
  transform-origin: center bottom;
  transform: scale(calc(0.82 + 0.18 * var(--scroll-p, 0)));
  transition: transform .08s linear, box-shadow .5s var(--ease);
  will-change: transform;
}
.feature-card:hover { transition: transform .5s cubic-bezier(.22,.61,.36,1), box-shadow .5s var(--ease); }
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1.5px solid var(--gold);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  pointer-events: none;
}
.feature-card:hover {
  transform: scale(1.1);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
  z-index: 2;
}
.feature-card:hover::after {
  opacity: 1;
  transform: scale(1);
}
.feature-card__icon {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px; height: 140px;
  display: grid; place-items: center;
  filter: drop-shadow(0 18px 30px rgba(201,162,75,0.28));
  pointer-events: none;
  z-index: 3;
}
.feature-card__icon svg,
.feature-card__icon img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform .4s var(--ease);
}
.feature-card:first-child .feature-card__icon {
  height: 110px;
  top: -47px;
}
.feature-card:hover .feature-card__icon img { transform: scale(1.08); }
.feature-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}
.feature-card__desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
}

.features__cert { display: flex; justify-content: center; margin-top: 64px; }
.iso-badge { height: 110px; width: auto; filter: invert(1) brightness(1.1); opacity: 0.9; }
.cert {
  display: flex; align-items: center; gap: 18px;
  padding: 16px 24px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--bg-2);
}
.cert__ring {
  width: 72px; height: 72px;
  border-radius: 8px;
  border: 2px solid var(--gold);
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  line-height: 1.2;
  position: relative;
}
.cert__ring::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px dashed rgba(201,162,75,0.4);
  border-radius: 8px;
  animation: rotate 30s linear infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }
.cert__text { display: flex; flex-direction: column; gap: 2px; }
.cert__text strong { font-size: 13px; color: var(--text); font-weight: 700; }
.cert__text span { font-size: 12px; color: var(--text-dim); }


.partners { padding: 96px 0; }
.partners__head { text-align: center; margin-bottom: 60px; }
.partners__head .section-title { color: var(--ink); }
.partners__sub { color: var(--ink-dim); font-size: 15px; margin-top: 14px; }

.partners__rows {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.partners__rows .partners-swiper[data-reverse] .swiper-wrapper.is-marquee {
  animation-direction: reverse;
}
.partners-swiper {
  flex: 1;
  overflow: hidden;
  padding: 20px 0;
  min-height: 80px;
}
.partners-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
  gap: 25px;
  width: max-content;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.partners-swiper .swiper-wrapper.is-dragging { cursor: grabbing; }
.partners-swiper .swiper-wrapper img { pointer-events: none; -webkit-user-drag: none; }
.partners-swiper .swiper-wrapper.is-marquee {
  animation: partMarquee var(--loop-duration, 40s) linear infinite;
  will-change: transform;
}
.partners-swiper:hover .swiper-wrapper.is-marquee { animation-play-state: paused; }
/* JS duplicates the slide list exactly once, so the wrapper is now 2x its
   original width. Translating by -50% lands the second copy in the same
   visual position the first one started from — seamless loop, no pixel
   maths required and no dependency on images being loaded first. */
@keyframes partMarquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
.partners-swiper .swiper-slide {
  width: auto;
  height: 50px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  filter: brightness(0) contrast(1);
  opacity: 1;
  transition: filter .3s var(--ease);
}
/* Hover: usuwa brightness(0) — pokazuje logo w oryginalnym kolorze (klient
   poprosił z powrotem o ten efekt). */
.partners-swiper .swiper-slide:hover { filter: none; }
.partner {
  display: grid;
  place-items: center;
  height: 100%;
}
.partner img,
.partners-swiper .swiper-slide > img {
  height: 50px;
  width: auto;
  max-width: none;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.partner {
  background: transparent;
  isolation: auto;
}
/* .partner:hover usunięte celowo — logo bez zmiany koloru na hover. */
.partners__track.is-autoscroll {
  justify-content: flex-start;
  scroll-behavior: auto;
}
.partner__mark {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  font-size: 18px;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.1;
  white-space: nowrap;
}
.partner__mark--amd { display: flex; align-items: center; gap: 4px; font-size: 22px; }
.partner__mark--amd .amd-arrow { color: var(--gold); }
.partner__mark--cisco { font-size: 10px; font-weight: 500; }
.partner__mark--cisco strong { font-size: 15px; letter-spacing: 0.15em; }
.partner__mark--dell strong { font-size: 22px; color: #0076CE; letter-spacing: 0; }
.partner__mark--hpe { font-size: 9px; font-weight: 400; line-height: 1.4; }
.partner__mark--hpe em { color: var(--gold); font-style: normal; font-size: 16px; }
.partner__mark--hpe strong { font-size: 12px; font-weight: 700; }
.partner__mark--poly { font-size: 22px; display: flex; align-items: center; gap: 4px; }
.partner__mark--poly strong { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; }
.partner__mark--samsung strong { font-size: 18px; letter-spacing: 0.12em; font-weight: 800; }
.partner__mark--ms strong { font-size: 16px; letter-spacing: -0.01em; font-weight: 600; }
.partner__mark--lenovo strong { font-size: 16px; letter-spacing: 0.02em; }
.partner__mark--hp strong { color: #0096D6; font-size: 28px; letter-spacing: -0.05em; }
.partner__mark--fortinet strong { font-size: 14px; letter-spacing: 0.1em; color: #EE3124; }


.team { padding: 120px 0; }
.team__head { text-align: center; margin-bottom: 64px; }
.team__head .section-title { color: var(--text); }
.team__sub { color: var(--text-dim); font-size: 15px; margin: 14px auto 0; max-width: 600px; }

.team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 64px;
}
.team-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: start;
}
.team-card__photo {
  position: relative;
  aspect-ratio: 1/1.25;
  border-radius: var(--radius);
  overflow: hidden;
  background: #a7a7a7;
}
.team-card__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1.5px solid var(--gold);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  pointer-events: none;
  z-index: 2;
}
.team-card:hover .team-card__photo::after { opacity: 1; transform: scale(1); }
.team-card__photo-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .5s var(--ease);
  transform-origin: center center;
}
.team-card:hover .team-card__photo-img { transform: scale(1.06); }

/* On mobile / touch keep the gold border hover effect (it's a nice cue),
   but DON'T scale the photo. Portrait shots are cut-outs (transparent
   PNG) and zooming them visually crops silhouettes at the card edges.
   Belt and braces: match by both hover capability AND viewport width
   so touchscreen-laptop sticky-hover quirks can't sneak past. */
@media (hover: none), (max-width: 768px) {
  .team-card .team-card__photo-img,
  .team-card:hover .team-card__photo-img,
  .team-card:active .team-card__photo-img { transform: none !important; }
}
/* Social moved BELOW telefon — out of foto overlay, większe ikony.
   Wcześniej był overlay nad zdjęciem (right:10px bottom:10px), teraz
   jest częścią .team-card__info pod telefonem. */
.team-card__social {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.team-card__social a {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--gold);
  display: grid; place-items: center;
  color: #1C1608;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.team-card__social a:hover { background: var(--gold-2); transform: translateY(-1px); }
.team-card__social svg,
.team-card__social img { width: 20px; height: 20px; filter: brightness(0); }

.team-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 14px;
}
.team-card__name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}
.team-card__role {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
}
/* Telefon — główna informacja kontaktowa zastępująca bio + "Czytaj więcej". */
.team-card__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
  transition: color .2s var(--ease);
  align-self: flex-start;
}
.team-card__phone:hover { color: var(--gold); }
.team-card__phone svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }


.cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: #0B0B0C;
}
.cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  border: none;
  will-change: transform;
}
.cta__vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(11,11,12,0.55), rgba(11,11,12,0.7)),
    radial-gradient(ellipse at center, rgba(11,11,12,0.2) 0%, rgba(11,11,12,0.5) 100%);
}
.cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta__title { font-size: 44px; color: var(--text); }
.cta__sub { color: var(--text-dim); font-size: 17px; margin-top: 14px; }
.cta__btn { margin-top: 36px; }


.contact { padding: 120px 0; position: relative; }
.contact__inner { max-width: 1100px; margin: 0 auto; position: relative; }
.contact__head { text-align: center; margin-bottom: 56px; }
.contact__head .section-title { color: var(--text); }
.contact__sub { color: var(--text-dim); font-size: 15px; margin: 14px auto 0; max-width: 520px; }

.contact__form { position: relative; }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
  margin-bottom: 28px;
}
.field-group { display: flex; flex-direction: column; gap: 24px; }
.field { display: flex; flex-direction: column; gap: 8px; position: relative; }
.field--textarea { height: 100%; }
.field label {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
}
.field input, .field textarea, .phone-input {
  background: #262627;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 16px 22px;
  color: var(--text);
  font-size: 14.5px;
  font-family: inherit;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-muted); }
.field textarea {
  border-radius: 8px;
  resize: vertical;
  min-height: 200px;
  height: 100%;
  font-family: inherit;
  line-height: 1.5;
}
.field--textarea textarea { min-height: 300px; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #2E2E2F;
}
.field.has-error input, .field.has-error textarea {
  border-color: #D6583C;
  padding-right: 52px;
}
.field__error { display: none; }
.field.has-error::after {
  content: '';
  position: absolute;
  bottom: 14px;
  right: 18px;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: #D6583C url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round'><path d='M7 7l10 10M17 7L7 17'/></svg>") center/12px no-repeat;
  pointer-events: none;
}
.field--textarea.has-error::after { bottom: auto; top: 46px; }
.field__error--consent { position: static; margin-top: 8px; margin-left: 36px; display: block; font-size: 12px; color: #D6583C; }
.field__error--consent:not(.is-shown) { display: none; }

.phone-input { display: flex; align-items: stretch; gap: 0; padding: 0; padding-left: 0; overflow: visible; position: relative; }
.phone-input__prefix {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 16px 14px 16px 18px;
  border-right: 1px solid rgba(255,255,255,0.12);
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  background: transparent;
  border-radius: 0;
  cursor: pointer;
  transition: background .2s var(--ease);
}
.phone-input__prefix:hover { background: rgba(255,255,255,0.04); }
.phone-input__prefix[aria-expanded="true"] { background: rgba(255,255,255,0.06); }
.phone-input__prefix[aria-expanded="true"] svg { transform: rotate(180deg); }
.phone-input__prefix svg { transition: transform .2s var(--ease); }
.phone-input__prefix .flag {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12);
}
.phone-input__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 20;
  background: #1d1d1e;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 6px;
  margin: 0;
  list-style: none;
  width: 280px;
  max-height: 320px;
  overflow-y: auto;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.7);
}
.phone-input__menu[hidden] { display: none; }
.phone-input__menu li {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13.5px;
  color: var(--text);
  cursor: pointer;
  transition: background .15s var(--ease);
}
.phone-input__menu li:hover,
.phone-input__menu li[aria-selected="true"] { background: rgba(201,162,75,0.12); }
.phone-input__menu li > img {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  object-fit: cover;
  display: block;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12);
}
.phone-input__menu li .phone-input__country { color: var(--text); font-weight: 500; }
.phone-input__menu li .phone-input__dial { color: var(--text-dim); font-variant-numeric: tabular-nums; font-size: 12.5px; }
.phone-input input {
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 16px 22px 16px 14px;
  flex: 1;
  min-width: 0;
}
.phone-input input:focus { background: transparent; }
.field--phone:focus-within .phone-input { border-color: var(--gold); background: #2E2E2F; }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  padding: 0 6px;
}
.consent input { position: absolute; opacity: 0; pointer-events: none; }
.consent__box {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  margin-top: 2px;
  display: grid; place-items: center;
  transition: all .2s var(--ease);
}
.consent__box::after {
  content: '';
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 2px;
  transform: scale(0);
  transition: transform .2s var(--ease);
}
.consent input:checked + .consent__box { border-color: var(--gold); }
.consent input:checked + .consent__box::after { transform: scale(1); }
.consent__text { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

.contact__submit {
  margin-top: 32px;
}

.contact__success {
  position: absolute;
  inset: 0;
  background: rgba(11,11,12,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .4s var(--ease);
  z-index: 10;
}
.contact__success.is-shown {
  display: flex;
  opacity: 1;
}
.contact__success-inner { text-align: center; max-width: 820px; padding: 40px; }
.contact__success-check {
  width: 80px; height: 80px;
  margin: 0 auto 28px;
}
.contact__success-check svg { width: 100%; height: 100%; }
.contact__success-check .check-path {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: drawCheck .6s .2s var(--ease) forwards;
}
@keyframes drawCheck { to { stroke-dashoffset: 0; } }
.contact__success h3 { font-size: 28px; color: var(--text); margin-bottom: 10px; }
.contact__success p { color: var(--text-dim); margin-bottom: 28px; }
.contact__success strong { color: var(--gold); }

.contact__loading-spinner {
  width: 64px; height: 64px;
  margin: 0 auto 28px;
  border: 4px solid rgba(201,162,75,0.2);
  border-top-color: #C9A24B;
  border-radius: 50%;
  animation: contactSpin 0.9s linear infinite;
}
@keyframes contactSpin { to { transform: rotate(360deg); } }


.footer {
  color: var(--ink);
  position: relative;
  background-color: var(--surface-light);
}
.footer__top { position: relative; }
.footer__top {
  padding: 80px 32px 60px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  align-items: start;
}
.footer__logo {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.14em;
}
.footer__logo img { height: 32px; width: auto; }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer__col { display: flex; flex-direction: column; }
.footer__col h4, .footer__col .footer__col-title { font-size: 16px; font-weight: 700; margin-bottom: 12px; margin-top: 0; color: var(--ink); font-family: var(--font-display); min-height: 24px; }
.footer__col p { font-size: 15px; color: var(--ink); line-height: 1.7; font-family: var(--font-body); font-weight: 400; }
.footer__legal {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.7;
}
.footer__mail {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 14px 32px;
  border-radius: 8px;
  border: 1.5px solid var(--gold);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  transition: all .25s var(--ease);
}
.footer__mail:hover { color: var(--gold); background: rgba(201,162,75,0.06); }

.footer__band {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  color: var(--text);
  background: #0B0B0C;
}
.footer__band-bg { position: absolute; inset: 0; width: 100%; height: 120%; object-fit: cover; border: none; will-change: transform; }
.footer__band-vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(11,11,12,0.55), rgba(11,11,12,0.75)),
    radial-gradient(ellipse at center, rgba(11,11,12,0.2) 0%, rgba(11,11,12,0.5) 100%);
}
.footer__band-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.footer__band-content h3 {
  font-size: 38px;
  font-weight: 700;
  color: var(--text);
  max-width: 760px;
  margin: 0 auto 28px;
  line-height: 1.2;
}
.footer__band-content h3 span { color: var(--text-dim); font-weight: 400; }

.footer__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 32px;
  font-size: 12px;
  color: var(--ink-dim);
  background: var(--surface-light);
}
.footer__meta-links { display: flex; gap: 20px; align-items: center; }
.footer__meta-links a:hover { color: var(--gold); }
.footer__cookie-btn { background: none; border: 0; padding: 0; color: inherit; font: inherit; cursor: pointer; }
.footer__cookie-btn:hover { color: var(--gold); }


.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-24px);
  transition: opacity .4s var(--ease), transform .45s cubic-bezier(.22,.61,.36,1);
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
}
.mobile-menu__nav a {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--ink);
  transition: color .2s var(--ease);
}
.mobile-menu__nav a:hover { color: var(--gold); }
.mobile-menu__cta {
  margin-top: 18px;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--gold) !important;
  color: #1C1608 !important;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 18px !important;
  font-weight: 700;
  transition: background .25s var(--ease);
}
.mobile-menu__cta:hover { background: var(--gold-2) !important; color: #1C1608 !important; }
.mobile-menu__group { display: flex; flex-direction: column; align-items: center; }
.mobile-menu__toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--ink);
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s var(--ease);
}
.mobile-menu__toggle:hover { color: var(--gold); }
.mobile-menu__toggle svg { transition: transform .25s var(--ease); }
.mobile-menu__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.mobile-menu__sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 4px 0 6px;
}
.mobile-menu__sub[hidden] { display: none; }
.mobile-menu__sub a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color .2s var(--ease);
}
.mobile-menu__sub a:hover { color: var(--gold); }
.mobile-menu__sub-all {
  margin-top: 4px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold) !important;
}


@media (max-width: 960px) {
  .container, .container-wide { padding: 0 20px; }
  .section-dark { padding: 80px 0; }
  .section-light { padding: 64px 0; }
  .section-title { font-size: 34px; }

  .nav__menu, .nav__cta, .nav__social { display: none; }
  .nav__burger { display: inline-flex; }

  .hero {
    padding-top: 0;
    padding-bottom: 0;
  }
  .hero__content {
    min-height: auto !important;
    justify-content: center !important;
    padding: 120px 20px 60px !important;
    width: 100%;
  }
  .hero__text {
    max-width: none;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero__text::before {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 22px;
    border-radius: 2px;
    animation: heroFloatIn 1s .1s both cubic-bezier(.22,.61,.36,1);
  }
  .hero__title {
    font-size: 52px !important;
    line-height: 1.04;
    letter-spacing: -0.02em;
    word-break: break-word;
    hyphens: auto;
  }
  .hero__vignette {
    background:
      linear-gradient(to bottom, rgba(11,11,12,0.35) 0%, rgba(11,11,12,0.55) 45%, rgba(11,11,12,0.85) 100%) !important;
  }
  .hero__sub { font-size: 17px; margin-top: 22px; max-width: 440px; text-align: center; }
  .hero__cta { flex-direction: column; align-items: center; margin-top: 36px; gap: 12px; width: 100%; }
  .hero__cta .btn { justify-content: center; padding: 16px 24px; font-size: 15px; width: 100%; max-width: 360px; }
  
  .hero::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 22px;
    width: 2px;
    height: 36px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    transform: translateX(-50%);
    opacity: .7;
    animation: heroScrollHint 1.8s ease-in-out infinite;
    z-index: 3;
  }
  @keyframes heroScrollHint {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: .15; }
    50% { transform: translateX(-50%) translateY(10px); opacity: .9; }
  }

  .about__grid, .offer__grid { grid-template-columns: 1fr !important; gap: 40px; }
  .features__grid { grid-template-columns: 1fr !important; gap: 90px; }
  /* Team mobile: 2-column grid (po 2 karty na rząd), kompaktowe kartki ze
     zdjęciem U GÓRY (zamiast obok) — wykorzystuje całą szerokość ekranu,
     zero pustego miejsca. Wszyscy 4 członkowie widoczni w 2 rzędach
     bez długiego scrollowania. */
  .team__grid { grid-template-columns: repeat(2, 1fr) !important; gap: 20px 14px !important; }
  .team-card {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .team-card__photo {
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
    margin-bottom: 0 !important;
  }
  .team-card__photo-img { border-radius: inherit; width: 100%; height: 100%; object-fit: cover; }
  .team-card__info { padding-top: 4px !important; gap: 2px !important; }
  .team-card__name { font-size: 15px !important; font-weight: 700 !important; }
  .team-card__role { font-size: 12px !important; margin-bottom: 6px !important; }
  .team-card__phone { font-size: 13px !important; gap: 6px !important; }
  .team-card__phone svg { width: 13px !important; height: 13px !important; }
  .team-card__social { gap: 6px !important; margin-top: 8px !important; }
  .team-card__social a { width: 36px !important; height: 36px !important; border-radius: 8px !important; }
  .team-card__social svg,
  .team-card__social img { width: 16px !important; height: 16px !important; }
  .partners__track { gap: 24px !important; }
  .partner { min-width: 140px !important; }

  html.js-reveal-ready .slide-left { transform: translateY(24px) !important; }
  html.js-reveal-ready .slide-right { transform: translateY(24px) !important; }
  html.js-reveal-ready .slide-left.is-in,
  html.js-reveal-ready .slide-right.is-in { transform: none !important; }

  .campaigns__head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .campaigns__title { font-size: 28px !important; }

  .cta__title, .footer__band-content h3 { font-size: 28px !important; }

  .footer__top { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px 48px; }
  .footer__cols { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer__col { align-items: center; }
  .footer__col h4 { min-height: 0; }
  .footer__col p { min-height: 0; }
  .footer__mail { margin-top: 16px; align-self: center; }
  .footer__meta { flex-direction: column-reverse; gap: 18px; text-align: center; padding: 24px 20px; }
  .footer__meta-links { flex-wrap: wrap; justify-content: center; gap: 14px 20px; }
  .footer__logo { justify-content: center; }

  .contact__grid { grid-template-columns: 1fr !important; }
  .field-group { grid-template-columns: 1fr !important; }

  .chat-widget {
    bottom: 20px; right: 20px;
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 8px;
    display: grid;
    place-items: center;
    gap: 0;
  }
  .chat-widget span { display: none; }
  .chat-widget svg { width: 24px; height: 24px; }

  .team-modal__dialog { width: 92vw !important; max-height: 88vh; }
  .team-modal__body { grid-template-columns: 1fr !important; }
  .team-modal__photo { height: 280px !important; }
}
@media (max-width: 520px) {
  .features__grid { grid-template-columns: 1fr !important; }
  .hero__title { font-size: 40px !important; }
  .features__grid { gap: 80px !important; }
  .section-title { font-size: 28px; }
}


.chat-widget {
  position: fixed;
  bottom: 55px; right: 30px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 18px;
  background: var(--gold);
  color: #1C1608;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 14px 40px -10px rgba(201,162,75,0.5);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), background .25s var(--ease);
}
.chat-widget.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.chat-widget svg { width: 20px; height: 20px; }
.chat-widget:hover { background: var(--gold-2); transform: translateY(-2px); }


.tweaks {
  position: fixed;
  bottom: 30px; left: 30px;
  z-index: 95;
  background: rgba(17,18,20,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 16px 18px;
  min-width: 260px;
  display: none;
  color: var(--text);
  font-size: 13px;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6);
}
.tweaks.is-shown { display: block; }
.tweaks__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tweaks__row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.tweaks__row label {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  font-weight: 600;
}
.tweaks__opts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
.tweak-btn {
  padding: 8px 10px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  font-size: 12px;
  color: var(--text-dim);
  transition: all .2s var(--ease);
  background: transparent;
  text-align: left;
}
.tweak-btn:hover { border-color: var(--gold-line); color: var(--text); }
.tweak-btn.is-active { border-color: var(--gold); background: var(--gold-soft); color: var(--gold); }


.wave-top { top: -1px; left: 0; width: 100%; height: 60px; }


.team-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.team-modal.is-open { opacity: 1; pointer-events: auto; }
.team-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11,11,12,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.team-modal__dialog {
  position: relative;
  max-width: 860px;
  width: 100%;
  max-height: calc(100vh - 80px);
  background: var(--bg-2);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
  overflow: hidden;
  transform: translateY(20px) scale(0.98);
  transition: transform .4s var(--ease);
}
.team-modal.is-open .team-modal__dialog { transform: none; }
.team-modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: var(--text);
  display: grid;
  place-items: center;
  z-index: 3;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.team-modal__close:hover { background: var(--gold); color: #1C1608; }
.team-modal__close svg { width: 20px; height: 20px; }
.team-modal__body {
  display: block;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
.team-modal__photo {
  background: #2A2724;
  overflow: hidden;
}
.team-modal__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-modal__info {
  padding: 40px 44px 40px 40px;
  overflow-y: auto;
  color: var(--text);
}
.team-modal__name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.team-modal__role {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  margin-top: 4px;
  margin-bottom: 20px;
}
.team-modal__bio { color: var(--text-dim); font-size: 15px; line-height: 1.65; }
.team-modal__bio p { margin: 0 0 14px; }
.team-modal__bio p:last-child { margin-bottom: 0; }
.team-modal__social { display: flex; gap: 2px; margin-top: 24px; }
.team-modal__social a {
  width: 36px; height: 36px;
  background: var(--gold);
  display: grid; place-items: center;
  transition: background .2s var(--ease);
}
.team-modal__social a:hover { background: var(--gold-2); }
.team-modal__social a:first-child { border-radius: 8px 0 0 8px; }
.team-modal__social a:last-child { border-radius: 0 8px 8px 0; }
.team-modal__social img { width: 18px; height: 18px; filter: brightness(0); }
