/**
 * Pixelcraft - premium UI: nawigacja, przyciski, sekcja expertise.
 * ?adowany po main.css / theme-light.css.
 */

:root {
  --pc-glow: rgba(99, 102, 241, 0.35);
  --pc-glow-accent: rgba(20, 184, 166, 0.25);
  --pc-nav-pill: rgba(15, 23, 42, 0.55);
  --pc-border-subtle: rgba(148, 163, 184, 0.12);
  --pc-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --pc-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Nag??wek --- */
.pc-header-shell {
  border-bottom: 1px solid var(--pc-border-subtle);
  /* Lekko bardziej przezroczysty - t?o z blur nadal czytelnie ?trzyma? tre?? */
  background: linear-gradient(180deg, rgba(3, 7, 18, 0.55) 0%, rgba(3, 7, 18, 0.34) 100%);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.08);
}

.pc-header-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.35rem;
  min-height: 2.5rem;
}

#nav-desktop {
  min-height: 2.5rem;
  align-self: center;
}

#pc-header-auth-slot-desktop:empty,
#pc-header-auth-slot:empty {
  min-width: 0;
  min-height: 2.5rem;
}

@media (min-width: 1280px) {
  .pc-header-actions {
    gap: 0.5rem;
  }
}

.pc-header-shell::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.45), rgba(20, 184, 166, 0.35), transparent);
  pointer-events: none;
  opacity: 0.85;
}

#site-header.site-header-scrolled.pc-header-shell {
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.18);
  background: linear-gradient(180deg, rgba(3, 7, 18, 0.72) 0%, rgba(3, 7, 18, 0.52) 100%);
}

/* Desktop: linki nawigacji */
.pc-nav-link {
  position: relative;
  color: rgba(226, 232, 240, 0.82);
  border: 1px solid transparent;
  box-shadow: none;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.pc-nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0.35rem;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #6366f1, #14b8a6);
  transform: translateX(-50%);
  transition: width 0.25s ease;
  opacity: 0.9;
  pointer-events: none;
}

.pc-nav-link:hover,
.pc-nav-link:focus-visible {
  color: #fff;
  background: rgba(30, 41, 59, 0.45);
  border-color: rgba(99, 102, 241, 0.25);
  box-shadow: none;
  transform: none;
}

.pc-nav-link:hover::after,
.pc-nav-link:focus-visible::after {
  width: 55%;
}

.pc-nav-link--active {
  color: #fff !important;
  background: rgba(99, 102, 241, 0.12) !important;
  border-color: rgba(99, 102, 241, 0.35) !important;
  box-shadow: 0 0 24px rgba(99, 102, 241, 0.12);
}

.pc-nav-link--active::after {
  width: 60%;
}

.pc-nav-auth {
  color: #a5b4fc !important;
  border: 1px solid rgba(99, 102, 241, 0.35);
  background: rgba(99, 102, 241, 0.06);
}

.pc-nav-auth:hover {
  color: #e0e7ff !important;
  border-color: rgba(129, 140, 248, 0.55);
  background: rgba(99, 102, 241, 0.14);
  box-shadow: 0 0 28px rgba(99, 102, 241, 0.2);
}

.pc-nav-auth::after {
  display: none;
}

/* Przyciski premium (nag??wek, cookie, formularze statyczne) */
.pc-btn-soft {
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.35);
  color: rgba(226, 232, 240, 0.9);
  transition:
    color 0.3s var(--pc-ease-out),
    border-color 0.3s,
    background 0.3s,
    box-shadow 0.4s var(--pc-ease-out),
    transform 0.35s var(--pc-ease-spring);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.pc-btn-soft:hover {
  color: #fff;
  border-color: rgba(99, 102, 241, 0.45);
  background: rgba(30, 41, 59, 0.55);
  box-shadow: 0 8px 28px rgba(99, 102, 241, 0.15);
  transform: translateY(-1px);
}

.pc-btn-ghost {
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.4), rgba(15, 23, 42, 0.25));
  color: rgba(241, 245, 249, 0.92);
  transition:
    border-color 0.35s,
    background 0.35s,
    box-shadow 0.45s var(--pc-ease-out),
    transform 0.35s var(--pc-ease-spring);
}

.pc-btn-ghost:hover {
  border-color: rgba(226, 232, 240, 0.45);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 16px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

/* Przyciski globalne: primary / secondary z main */
.btn-primary {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(129, 140, 248, 0.45) !important;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.25);
  transition:
    transform 0.3s var(--pc-ease-spring),
    box-shadow 0.4s var(--pc-ease-out),
    filter 0.3s !important;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(99, 102, 241, 0.35);
  filter: brightness(1.05);
}

.btn-secondary,
.final-cta-phone {
  transition:
    transform 0.3s var(--pc-ease-spring),
    box-shadow 0.4s var(--pc-ease-out),
    border-color 0.3s !important;
}

.btn-secondary:hover,
.final-cta-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.2);
}

/* --- Menu mobilne --- */
.pc-mobile-backdrop {
  position: fixed;
  inset: 0;
  top: 0;
  z-index: 61;
  background: rgba(2, 6, 23, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.4s var(--pc-ease-out),
    visibility 0.4s;
}

.pc-mobile-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.pc-mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 62;
  width: min(22rem, 92vw);
  height: 100dvh;
  max-height: 100dvh;
  margin: 0;
  border: none;
  border-left: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 0;
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.98) 0%, rgba(3, 7, 18, 0.99) 45%, rgba(15, 23, 42, 0.97) 100%);
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.45);
  transform: translateX(105%);
  transition: transform 0.5s var(--pc-ease-out);
  display: flex;
  flex-direction: column;
  touch-action: pan-y;
  padding-top: max(4.5rem, calc(env(safe-area-inset-top, 0px) + 3.5rem));
  padding-bottom: env(safe-area-inset-bottom, 1rem);
}

.pc-mobile-panel.is-open {
  transform: translateX(0);
}

.pc-mobile-panel .pc-mobile-panel-inner {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.pc-mobile-nav-link {
  opacity: 0;
  transform: translateX(12px);
  transition:
    opacity 0.4s var(--pc-ease-out),
    transform 0.45s var(--pc-ease-out),
    background 0.25s,
    border-color 0.25s;
}

.pc-mobile-panel.is-open .pc-mobile-nav-link {
  opacity: 1;
  transform: translateX(0);
}

.pc-mobile-panel.is-open .pc-mobile-nav-link:nth-child(1) {
  transition-delay: 0.05s;
}
.pc-mobile-panel.is-open .pc-mobile-nav-link:nth-child(2) {
  transition-delay: 0.09s;
}
.pc-mobile-panel.is-open .pc-mobile-nav-link:nth-child(3) {
  transition-delay: 0.13s;
}
.pc-mobile-panel.is-open .pc-mobile-nav-link:nth-child(4) {
  transition-delay: 0.17s;
}
.pc-mobile-panel.is-open .pc-mobile-nav-link:nth-child(5) {
  transition-delay: 0.21s;
}
.pc-mobile-panel.is-open .pc-mobile-nav-link:nth-child(6) {
  transition-delay: 0.25s;
}
.pc-mobile-panel.is-open .pc-mobile-nav-link:nth-child(7) {
  transition-delay: 0.29s;
}
.pc-mobile-panel.is-open .pc-mobile-nav-link:nth-child(8) {
  transition-delay: 0.33s;
}

.pc-mobile-nav-link:hover,
.pc-mobile-nav-link:focus-visible {
  background: rgba(99, 102, 241, 0.08);
}

/* Fallback: stare menu podstron bez panelu bocznego */
#mobile-nav:not(.pc-mobile-panel) .pc-mobile-nav-link {
  opacity: 1;
  transform: none;
}

.pc-menu-toggle {
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(15, 23, 42, 0.45);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
  transition:
    border-color 0.3s,
    background 0.3s,
    box-shadow 0.4s,
    transform 0.35s var(--pc-ease-spring);
}

.pc-menu-toggle:hover {
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow: 0 0 24px rgba(99, 102, 241, 0.2);
}

.pc-menu-toggle[aria-expanded='true'] {
  border-color: rgba(20, 184, 166, 0.45);
  background: rgba(99, 102, 241, 0.12);
}

body.mobile-nav-open {
  overflow: hidden;
}

@media (max-width: 1023px) {
  #site-header #lang-wrap {
    display: none !important;
  }

  #site-header > .container-custom > .pc-header-mobile-tools {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
    margin-left: auto;
    min-width: 0;
  }

  #site-header > .container-custom > .pc-header-mobile-tools > #pc-header-auth-slot {
    margin-left: 0;
    min-width: 0;
  }

  #site-header > .container-custom > .pc-header-mobile-tools > #mobile-menu-btn {
    margin-left: 0;
  }

  .pc-mobile-panel--compact {
    padding-top: max(3.75rem, calc(env(safe-area-inset-top, 0px) + 3rem));
  }

  .pc-mobile-panel--compact .pc-mobile-nav-link {
    padding: 0.5rem 0.85rem !important;
    font-size: 0.875rem !important;
    line-height: 1.25;
  }

  .pc-mobile-panel--compact #nav-mobile {
    gap: 0.2rem;
    padding-top: 0.15rem;
    padding-bottom: 0.15rem;
  }

  .pc-mobile-panel--compact .pc-mobile-panel-inner > .flex.items-center.justify-between {
    padding-top: 0.35rem !important;
    padding-bottom: 0.35rem !important;
  }

  .pc-mobile-panel--compact .pc-mobile-panel-inner > .mt-4 {
    margin-top: 0.5rem !important;
    padding-top: 0.5rem !important;
    gap: 0.45rem !important;
  }

  .pc-mobile-panel--compact .pc-mobile-panel-inner .lang-option {
    padding-top: 0.45rem !important;
    padding-bottom: 0.45rem !important;
    font-size: 0.75rem !important;
  }

  .pc-mobile-panel--compact .pc-mobile-panel-inner .pc-btn-ghost {
    padding-top: 0.55rem !important;
    padding-bottom: 0.55rem !important;
    font-size: 0.8125rem !important;
  }
}

/* --- Sekcja Expertise (kafelki) --- */
.pc-expertise-section {
  position: relative;
  overflow: hidden;
}

.pc-expertise-section__video-wrap {
  z-index: 0;
}

.pc-expertise-section::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: -40%;
  left: 50%;
  width: 120%;
  height: 80%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.pc-expertise-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .pc-expertise-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

.pc-expertise-card--wide {
  min-height: 260px;
}

@media (min-width: 768px) {
  .pc-expertise-card--wide {
    grid-column: 1 / -1;
    min-height: 300px;
  }
}

.pc-expertise-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(15, 23, 42, 0.55);
  min-height: 200px;
  transition:
    transform 0.45s var(--pc-ease-out),
    border-color 0.35s,
    box-shadow 0.5s var(--pc-ease-out);
}

a.pc-expertise-card {
  display: block;
  text-decoration: none;
  color: inherit;
  outline: none;
}

a.pc-expertise-card:focus-visible {
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.55), 0 24px 60px rgba(0, 0, 0, 0.25);
}

.pc-expertise-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25), 0 0 40px rgba(99, 102, 241, 0.08);
}

.pc-expertise-card__parallax {
  position: absolute;
  inset: 0;
  overflow: hidden;
  will-change: transform;
}

.pc-expertise-card__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.58;
  transform: scale(1.02);
  transition:
    opacity 0.35s ease,
    transform 0.8s var(--pc-ease-out);
}

.pc-expertise-card:hover .pc-expertise-card__media {
  opacity: 0.72;
  transform: scale(1.08);
}

.pc-expertise-card__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 12%, rgba(99, 102, 241, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.18) 0%, rgba(2, 6, 23, 0.74) 48%, rgba(2, 6, 23, 0.96) 100%);
  pointer-events: none;
}

.pc-expertise-card__body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem 1.35rem 1.35rem;
  min-height: 220px;
  text-shadow: 0 2px 18px rgba(2, 6, 23, 0.95);
}

.pc-expertise-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: #a5b4fc;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.pc-expertise-card__title {
  font-family: var(--font-space-grotesk, 'Brygada 1918', system-ui, sans-serif);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 0.35rem;
}

.pc-expertise-card__desc {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(203, 213, 225, 0.88);
}


/* Scroll top - premium */
.scroll-top-btn,
#scroll-top {
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.35s var(--pc-ease-out),
    visibility 0.35s var(--pc-ease-out),
    transform 0.35s var(--pc-ease-spring),
    box-shadow 0.4s !important;
}

.scroll-top-btn.is-visible,
#scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

#scroll-top:hover,
.scroll-top-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.35) !important;
}

#scroll-top.is-visible:hover,
.scroll-top-btn.is-visible:hover {
  transform: translateY(-3px);
}

html.pc-light #scroll-top,
html.pc-light .scroll-top-btn {
  background: rgba(255, 255, 255, 0.96) !important;
  border-color: rgba(124, 58, 237, 0.24) !important;
  color: #7c3aed !important;
  box-shadow:
    0 14px 34px rgba(79, 70, 229, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.9) inset !important;
}

html.pc-light #scroll-top:hover,
html.pc-light .scroll-top-btn:hover {
  background: #ffffff !important;
  color: #6d28d9 !important;
  box-shadow:
    0 18px 42px rgba(109, 40, 217, 0.24),
    0 1px 0 rgba(255, 255, 255, 0.95) inset !important;
}

/* KROK 2 - pulse-slow, section spacing, sticky CTA */
@keyframes pulse-slow {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.animate-pulse-slow {
  animation: pulse-slow 6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .animate-pulse-slow {
    animation: none;
  }
}

.section-padding {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.pc-sticky-cta {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  z-index: 55;
  width: min(calc(100vw - 1.5rem), 42rem);
  transform: translate(-50%, 110%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.35s var(--pc-ease-out),
    opacity 0.35s var(--pc-ease-out),
    visibility 0.35s;
}

.pc-sticky-cta.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.pc-sticky-cta__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem 0.75rem 1.15rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 18px 48px rgba(2, 6, 23, 0.45);
}

.pc-sticky-cta__text {
  flex: 1;
  min-width: 0;
  font-size: 0.8125rem;
  line-height: 1.35;
  color: rgba(226, 232, 240, 0.95);
}

.pc-sticky-cta__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.85rem;
  border-radius: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f172a;
  background: #fff;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pc-sticky-cta__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.12);
}

.pc-sticky-cta__close {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border: none;
  border-radius: 9999px;
  background: transparent;
  color: rgba(148, 163, 184, 0.9);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, background 0.2s ease;
}

.pc-sticky-cta__close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 640px) {
  .pc-sticky-cta__inner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .pc-sticky-cta__text {
    flex-basis: 100%;
  }
}

html.pc-light .pc-sticky-cta__inner {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
}

html.pc-light .pc-sticky-cta__text {
  color: #334155;
}

html.pc-light .pc-sticky-cta__btn {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff;
}

/* Marquee w dolnej cz?ci hero */
.pc-hero-marquee-anchor {
  margin-top: auto;
}

.pc-hero-marquee-strip {
  box-shadow: 0 -1px 0 rgba(51, 65, 85, 0.35);
}

/* Hero marquee - w?asne keyframes (niezale?ne od Tailwind / prefers-reduced-motion) */
@keyframes pc-marquee-scroll-left {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes pc-marquee-scroll-right {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

.pc-hero-marquee-strip .animate-marquee-left {
  animation: pc-marquee-scroll-left 32s linear infinite;
  will-change: transform;
}

.pc-hero-marquee-strip .animate-marquee-right {
  animation: pc-marquee-scroll-right 36s linear infinite;
  will-change: transform;
}

.pc-tech-toolbox-marquee {
  animation-duration: 24s !important;
}

.pc-tech-toolbox-marquee.animate-marquee-left {
  animation: marquee-left 24s linear infinite !important;
}

@media (max-width: 767px) {
  .pc-tech-toolbox-marquee,
  .pc-tech-toolbox-marquee.animate-marquee-left {
    animation-duration: 24s !important;
  }
}

html.pc-light .pc-mobile-menu-brand {
  color: #0f172a !important;
}

html.pc-light .pc-mobile-menu-brand__tail {
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
}

@media (max-height: 820px) and (min-width: 768px) {
  .pc-hero-marquee-strip {
    padding-top: 0.5rem !important;
    padding-bottom: 0.35rem !important;
  }
  .pc-hero-marquee-strip .marquee-row-dim {
    display: none;
  }
}

@media (max-width: 767px) {
  #hero.pc-hero-viewport,
  .pc-subpage-hero-viewport {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    min-height: 100svh;
  }

  #hero.pc-hero-viewport > .pc-hero-viewport__inner,
  .pc-subpage-hero-viewport__inner {
    flex: 1 1 auto;
    min-height: 0;
    overflow: visible;
  }

  .pc-hero-marquee-anchor {
    flex: 0 0 auto;
    width: 100%;
    margin-top: auto;
  }

  .pc-hero-marquee-strip {
    padding-top: 0.4rem !important;
    padding-bottom: 0.3rem !important;
  }

  .pc-hero-marquee-strip .animate-marquee-left {
    animation-duration: 26s;
  }

  .pc-hero-marquee-strip .animate-marquee-right {
    animation-duration: 30s;
  }

  .pc-subpage-hero-viewport__inner .subpage-trust {
    margin-top: 0.65rem;
  }

  .pc-subpage-hero-viewport__inner .pc-hero-bottom {
    margin-top: 0.4rem;
    padding-top: 0.2rem;
  }
}

/* --- Wej?cia w formularzach na stronie g??wnej (sekcja AI, SEO) --- */
#ai-input,
#seo-url {
  transition:
    border-color 0.3s var(--pc-ease-out),
    box-shadow 0.35s var(--pc-ease-out),
    background 0.25s;
  border-color: rgba(100, 116, 139, 0.35) !important;
}
#ai-input:hover,
#seo-url:hover {
  border-color: rgba(99, 102, 241, 0.4) !important;
}
#ai-input:focus,
#seo-url:focus {
  outline: none;
  border-color: rgba(99, 102, 241, 0.6) !important;
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.15);
  background: rgba(15, 23, 42, 0.8) !important;
}

#hero a[href^='#'] {
  transition:
    color 0.3s,
    box-shadow 0.35s,
    border-color 0.3s,
    transform 0.35s var(--pc-ease-spring);
}

/* --- Modal zam?wienia (www) --- */
.pc-order-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}
.pc-order-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(8px);
}
.pc-order-modal__panel {
  position: relative;
  width: 100%;
  max-width: 28rem;
  max-height: min(90vh, 36rem);
  overflow: auto;
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.98), rgba(3, 7, 18, 0.99));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  padding: 1.5rem 1.35rem 1.25rem;
  overflow-x: hidden;
}
.pc-order-modal__x {
  position: absolute;
  right: 0.65rem;
  top: 0.5rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 0.5rem;
  background: rgba(30, 41, 59, 0.8);
  color: #e2e8f0;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}
.pc-order-modal__x:hover {
  background: rgba(51, 65, 85, 0.95);
}
.pc-order-modal__h2 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #f8fafc;
  font-family: var(--font-space-grotesk, 'Brygada 1918', system-ui, sans-serif);
}
.pc-order-modal__lead {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.45;
}
.pc-order-modal__price {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: #a5b4fc;
  line-height: 1.5;
}
.pc-order-modal__invoice {
  margin: 0 0 1rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(99, 102, 241, 0.25);
  background: rgba(15, 23, 42, 0.65);
}
.pc-order-modal__invoice-title {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #a5b4fc;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pc-order-modal__invoice-note {
  margin: 0 0 0.65rem;
  padding: 0.55rem 0.65rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.1);
  font-size: 0.78rem;
  line-height: 1.55;
  color: #fde68a;
}
.pc-order-modal__invoice-line {
  margin: 0.25rem 0;
  font-size: 0.82rem;
  color: #cbd5e1;
}
.pc-order-modal__invoice-total {
  margin: 0.55rem 0 0;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(71, 85, 105, 0.35);
  font-size: 0.85rem;
  color: #e2e8f0;
  line-height: 1.5;
}
.pc-order-price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.25rem;
  font-size: 0.88rem;
}
.pc-order-price-table th,
.pc-order-price-table td {
  padding: 0.45rem 0.55rem;
  vertical-align: top;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  text-align: left;
}
.pc-order-price-table th {
  font-weight: 600;
  color: #94a3b8;
  width: 55%;
}
.pc-order-price-table td {
  font-weight: 700;
  color: #f1f5f9;
  text-align: right;
  white-space: nowrap;
}
.pc-order-price-table__total th,
.pc-order-price-table__total td {
  border-bottom: none;
  padding-top: 0.65rem;
  color: #a5b4fc;
  font-size: 0.95rem;
}
.pc-order-price-table__hint {
  font-weight: 500;
  color: #64748b;
  font-size: 0.78rem;
}
.pc-file-picker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}
.pc-file-picker__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.pc-file-picker__btn {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(30, 41, 59, 0.9);
  color: #e2e8f0;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}
.pc-file-picker__btn:hover {
  border-color: rgba(99, 102, 241, 0.55);
  background: rgba(99, 102, 241, 0.15);
}
.pc-file-picker__name {
  font-size: 0.82rem;
  color: #94a3b8;
}

/* Toast: niedoko�czony formularz zam�wienia */
.pc-order-draft-toast {
  position: fixed;
  z-index: 12000;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  max-width: 26rem;
  margin-left: auto;
  pointer-events: none;
}
.pc-order-draft-toast__inner {
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(99, 102, 241, 0.35);
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96));
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.45);
  color: #e2e8f0;
}
.pc-order-draft-toast__title {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 0.25rem;
}
.pc-order-draft-toast__body {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #94a3b8;
}
.pc-order-draft-toast__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pc-order-draft-toast__actions .pc-order-modal__btn {
  font-size: 0.82rem;
  padding: 0.45rem 0.8rem;
}
.pc-dropdown-link--draft {
  color: #a5b4fc !important;
  font-weight: 650;
}
.pc-order-draft-dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #818cf8;
  margin-right: 0.45rem;
  box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.25);
}
html.pc-light .pc-order-draft-toast__inner {
  background: #fff;
  border-color: rgba(99, 102, 241, 0.3);
  color: #0f172a;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.18);
}
html.pc-light .pc-order-draft-toast__title {
  color: #0f172a;
}
html.pc-light .pc-order-draft-toast__body {
  color: #64748b;
}
@media (min-width: 640px) {
  .pc-order-draft-toast {
    left: auto;
    bottom: 1.25rem;
    right: 1.25rem;
  }
}
.pc-order-modal__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pc-order-modal__phone-callout {
  margin-top: 0.35rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  border: 1px dashed rgba(99, 102, 241, 0.35);
  background: rgba(15, 23, 42, 0.45);
  text-align: center;
}
.pc-order-modal__phone-callout-lead {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #e2e8f0;
}
.pc-order-modal__phone-callout-hours {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  color: #94a3b8;
}
.pc-order-modal__phone-callout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1rem;
  border-radius: 0.65rem;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
}
.pc-order-modal__phone-callout-btn:hover {
  filter: brightness(1.08);
  color: #fff;
}
.pc-order-modal__lbl span:not(.pc-order-modal__ico) {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 0.25rem;
}
.pc-order-modal__lbl .pc-order-modal__lbl-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.3rem;
}
.pc-order-modal__lbl .pc-order-modal__lbl-t {
  display: inline;
  font-size: 0.75rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 0;
}
.pc-order-modal__lbl .pc-order-modal__ico {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: #a5b4fc;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}
.pc-order-modal__ico svg {
  display: block;
  flex-shrink: 0;
}
.pc-order-modal__lbl--field .pc-order-modal__ico {
  margin-bottom: 0;
}
.pc-order-modal__lbl--check.pc-order-modal__lbl--field {
  align-items: flex-start;
}
.pc-order-modal__lbl--check.pc-order-modal__lbl--field .pc-order-modal__ico {
  margin-top: 0.05rem;
}
.pc-order-modal__lbl--date input[type='date'] {
  color-scheme: dark;
}
.pc-order-modal__lbl--date input[type='date']::-webkit-calendar-picker-indicator {
  filter: invert(0.85) brightness(1.1);
  cursor: pointer;
  opacity: 0.9;
}
.pc-order-modal__hint {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.45;
  color: #94a3b8;
  margin: 0 0 0.35rem;
}

.pc-order-modal__save-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0.85rem 0 1rem;
  padding: 0.85rem;
  border: 1px solid rgba(34, 197, 94, 0.26);
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(99, 102, 241, 0.08));
}

.pc-order-modal__save-note strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #86efac;
  font-size: 0.9rem;
}

.pc-order-modal__save-note span {
  display: block;
  color: #cbd5e1;
  font-size: 0.78rem;
  line-height: 1.45;
}
.pc-order-modal__lbl input,
.pc-order-modal__lbl textarea {
  width: 100%;
  box-sizing: border-box;
  border-radius: 0.65rem;
  border: 1px solid rgba(71, 85, 105, 0.55);
  background: rgba(15, 23, 42, 0.65);
  color: #f1f5f9;
  padding: 0.55rem 0.65rem;
  font-size: 0.9rem;
}
.pc-order-modal__lbl--phone .pc-order-modal__phone-row {
  display: flex;
  gap: 0.45rem;
  align-items: stretch;
  width: 100%;
}
.pc-order-modal__phone-prefix {
  flex: 0 0 6.25rem;
  width: 6.25rem;
  box-sizing: border-box;
  border-radius: 0.65rem;
  border: 1px solid rgba(71, 85, 105, 0.55);
  background: rgba(15, 23, 42, 0.65);
  color: #f1f5f9;
  padding: 0.55rem 0.45rem;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
}
.pc-order-modal__phone-local {
  flex: 1 1 auto;
  min-width: 0;
}
.pc-order-modal__lbl textarea {
  resize: vertical;
  min-height: 5rem;
}
.pc-order-modal__lbl textarea::placeholder {
  color: #64748b;
  opacity: 1;
}
.pc-order-modal__lbl--check {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.55rem;
}
.pc-order-modal__lbl--check input[type='checkbox'] {
  width: auto;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.pc-order-modal__lbl--check span {
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.45;
}
.pc-order-modal__addons {
  margin-top: 0.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(71, 85, 105, 0.35);
}
.pc-order-modal__addon-h {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #a5b4fc;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.pc-order-modal__addon--hosting {
  padding: 0.65rem 0.75rem;
  margin: 0.15rem -0.35rem 0.35rem;
  border-radius: 0.65rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.38);
  animation: pc-hosting-pulse 2.8s ease-in-out infinite;
}
.pc-order-modal__addon--hosting span {
  display: block;
}
.pc-order-modal__addon--domain {
  padding: 0.65rem 0.75rem;
  margin: 0.15rem -0.35rem 0.35rem;
  border-radius: 0.65rem;
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.38);
}
.pc-order-modal__addon--domain span {
  display: block;
}
.pc-order-modal__addon-hint {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.4;
  color: #c4b5fd;
}
.pc-order-modal__addon--domain .pc-order-modal__addon-hint {
  color: #99f6e4;
}
@keyframes pc-hosting-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.15);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.08);
  }
}
.pc-order-modal__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.pc-order-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-top: 0.5rem;
}
.pc-order-modal__btn {
  border-radius: 0.65rem;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
}
.pc-order-modal__btn--ghost {
  background: transparent;
  border-color: rgba(100, 116, 139, 0.45);
  color: #cbd5e1;
}
.pc-order-modal__btn--primary {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff;
  border-color: rgba(99, 102, 241, 0.5);
}
.pc-order-modal__btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.pc-order-modal__summary {
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.55;
  margin-bottom: 1rem;
}
.pc-order-modal__summary p {
  margin: 0 0 0.65rem;
}
.pc-order-modal__err {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: #fca5a5;
}
.pc-order-modal__file-name {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: #94a3b8;
}
.pc-order-modal__lbl input[type='file'] {
  width: 100%;
  padding: 0.45rem 0;
  font-size: 0.82rem;
  color: #e2e8f0;
}
.pc-order-confetti {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 30;
}
.pc-order-confetti__p {
  position: absolute;
  top: -8px;
  left: var(--x, 50%);
  width: 8px;
  height: 12px;
  border-radius: 2px;
  opacity: 0.95;
  animation: pcOrderConfettiFall var(--dur, 2.4s) ease-in var(--delay, 0s) forwards;
  transform: rotate(var(--rot, 0deg));
}
@keyframes pcOrderConfettiFall {
  0% {
    transform: translateY(0) rotate(var(--rot, 0deg));
    opacity: 1;
  }
  100% {
    transform: translateY(420px) rotate(calc(var(--rot, 0deg) + 540deg));
    opacity: 0;
  }
}

/* Sukces zam?wienia - kroki ?V?r prosess? (animacja) */
.pc-order-success__lead {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #e2e8f0;
}
.pc-order-success__sub {
  margin: 0.5rem 0 0.75rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #94a3b8;
}
.pc-order-success__proc {
  margin: 1rem 0 0.75rem;
  padding: 1rem 1rem 1rem 1.15rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(99, 102, 241, 0.22);
  background: rgba(15, 23, 42, 0.65);
}
.pc-order-success__proc-badge {
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(129, 140, 248, 0.95);
}
.pc-order-success__proc-head {
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #e2e8f0;
}
.pc-order-success__steps {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pc-order-success__step {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(51, 65, 85, 0.45);
  opacity: 0;
  animation: pcOrderSuccessStep 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.pc-order-success__step:last-child {
  border-bottom: none;
}
@keyframes pcOrderSuccessStep {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pc-order-success__n {
  flex-shrink: 0;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(99, 102, 241, 0.85);
}
.pc-order-success__txt {
  font-size: 0.78rem;
  line-height: 1.45;
  color: #cbd5e1;
}
.pc-order-success__foot {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #64748b;
}
.pc-order-success__step--done .pc-order-success__txt {
  color: #e2e8f0;
}
.pc-order-success__check {
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.35), rgba(16, 185, 129, 0.2));
  border: 1px solid rgba(52, 211, 153, 0.55);
  color: #4ade80;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.35) inset;
}

/* Pasek post?pu formularza (kroki 1?5) ? kolory strony (indigo/teal), bez poziomego scrolla */
.pc-order-progress {
  margin: 0 0 1.1rem;
  padding: 0.7rem 0.65rem 0.8rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(99, 102, 241, 0.32);
  background:
    linear-gradient(135deg, rgba(99, 102, 241, 0.14), rgba(20, 184, 166, 0.08)),
    linear-gradient(145deg, rgba(15, 23, 42, 0.78), rgba(30, 41, 59, 0.48));
  box-shadow: 0 0 0 1px rgba(20, 184, 166, 0.06) inset;
  overflow: hidden;
  max-width: 100%;
}
.pc-order-progress__title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a5b4fc;
  margin-bottom: 0.55rem;
}
.pc-order-progress__count {
  letter-spacing: 0.04em;
  color: #94a3b8;
  font-weight: 600;
}
.pc-order-progress__track {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  flex-wrap: nowrap;
}
.pc-order-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  flex: 1 1 0;
  min-width: 0;
  color: #64748b;
}
.pc-order-progress__num,
.pc-order-progress__mark {
  width: 1.55rem;
  height: 1.55rem;
  flex-shrink: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  border: 1px solid rgba(100, 116, 139, 0.55);
  background: rgba(15, 23, 42, 0.85);
}
.pc-order-progress__label {
  font-size: clamp(0.52rem, 2.4vw, 0.62rem);
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 0.1rem;
}
.pc-order-progress__line {
  flex: 0 0 clamp(0.35rem, 2vw, 0.7rem);
  width: clamp(0.35rem, 2vw, 0.7rem);
  height: 2px;
  margin: 0.72rem 0 0;
  align-self: flex-start;
  background: rgba(71, 85, 105, 0.7);
  border-radius: 99px;
}
.pc-order-progress__line.is-done {
  background: linear-gradient(90deg, #14b8a6, #6366f1);
}
.pc-order-progress__step.is-done {
  color: #5eead4;
}
.pc-order-progress__step.is-done .pc-order-progress__mark {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.5), rgba(99, 102, 241, 0.35));
  border-color: rgba(45, 212, 191, 0.65);
  color: #99f6e4;
}
.pc-order-progress__step.is-current {
  color: #e0e7ff;
}
.pc-order-progress__step.is-current .pc-order-progress__num {
  background: linear-gradient(135deg, #6366f1, #14b8a6);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.28);
}
@media (max-width: 420px) {
  .pc-order-progress {
    padding: 0.55rem 0.4rem 0.65rem;
  }
  .pc-order-progress__num,
  .pc-order-progress__mark {
    width: 1.35rem;
    height: 1.35rem;
    font-size: 0.62rem;
  }
  .pc-order-progress__line {
    margin-top: 0.62rem;
  }
}

/* Podpowiedzi Google Places pod polem firmy */
.pc-order-modal__lbl--field {
  position: relative;
}
.pc-order-company-suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.35rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(99, 102, 241, 0.35);
  background: #0f172a;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  max-height: 12rem;
  overflow: auto;
}
.pc-order-company-suggest__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  text-align: left;
  width: 100%;
  padding: 0.55rem 0.65rem;
  border: 0;
  border-radius: 0.45rem;
  background: transparent;
  color: #e2e8f0;
  cursor: pointer;
  font: inherit;
}
.pc-order-company-suggest__item:hover,
.pc-order-company-suggest__item:focus {
  background: rgba(99, 102, 241, 0.18);
  outline: none;
}
.pc-order-company-suggest__addr {
  font-size: 0.72rem;
  color: #94a3b8;
}
.pc-order-company-suggest__rating {
  font-size: 0.7rem;
  color: #fbbf24;
  font-weight: 700;
}

/* Animowany checkmark sukcesu */
.pc-order-success__hero {
  display: flex;
  justify-content: center;
  margin: 0.35rem 0 0.85rem;
}
.pc-order-success__hero-svg {
  color: #34d399;
  filter: drop-shadow(0 8px 24px rgba(52, 211, 153, 0.35));
}
.pc-order-success__hero-ring {
  stroke-dasharray: 264;
  stroke-dashoffset: 264;
  animation: pcOrderSuccessRing 0.7s ease forwards;
}
.pc-order-success__hero-check {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: pcOrderSuccessCheck 0.55s 0.35s ease forwards;
}
@keyframes pcOrderSuccessRing {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes pcOrderSuccessCheck {
  to {
    stroke-dashoffset: 0;
  }
}

/* Karty potwierdzenia ? g?stsze, z animacj? i chipami cen */
.pc-order-confirm__card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
}
.pc-order-confirm__row {
  padding: 0.5rem 0.65rem;
  border-radius: 0.65rem;
  border: 1px solid #e2e8f0;
  background: #ffffff !important;
}

/* Pasek procesu w modalu (potwierdzenie + sp?jny styl) */
.pc-order-track__wrap {
  margin: 0 0 1rem;
  padding: 0.85rem 0.9rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(99, 102, 241, 0.22);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.55), rgba(30, 41, 59, 0.35));
  animation: pcOrderTrackIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes pcOrderTrackIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pc-order-track__head {
  margin-bottom: 0.55rem;
}
.pc-order-track__badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(165, 180, 252, 0.95);
}
.pc-order-track__sub {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #e2e8f0;
}
.pc-order-track {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.pc-order-track__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: flex-start;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(51, 65, 85, 0.4);
  transition: background 0.25s ease, transform 0.25s ease;
}
.pc-order-track__step:last-child {
  border-bottom: none;
}
.pc-order-track__step.is-done {
  background: rgba(34, 197, 94, 0.06);
}
.pc-order-track__ico {
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(71, 85, 105, 0.45);
  font-size: 0.95rem;
  line-height: 1;
}
.pc-order-track__step.is-done .pc-order-track__ico {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.35), rgba(16, 185, 129, 0.15));
  border-color: rgba(52, 211, 153, 0.55);
  color: #4ade80;
}
.pc-order-track__tick {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc-order-track__title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c7d2fe;
}
.pc-order-track__desc {
  margin-top: 0.15rem;
  font-size: 0.72rem;
  line-height: 1.35;
  color: #94a3b8;
}
.pc-order-track__step.is-done .pc-order-track__title {
  color: #bbf7d0;
}
.pc-order-track__step.is-current {
  background: rgba(99, 102, 241, 0.08);
  border-radius: 0.55rem;
  padding-left: 0.35rem;
  padding-right: 0.35rem;
  animation: pcOrderTrackPulse 2.2s ease-in-out infinite;
}
.pc-order-track__step.is-current .pc-order-track__ico {
  border-color: rgba(129, 140, 248, 0.65);
  box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.2), 0 0 18px rgba(99, 102, 241, 0.25);
}
@keyframes pcOrderTrackPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
  }
  50% {
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
  }
}

/* Karta podsumowania zam?wienia */
.pc-order-confirm {
  margin: 0 0 1rem;
}
.pc-order-confirm__card {
  border-radius: 0.9rem;
  border: 1px solid #e2e8f0;
  background: #ffffff !important;
  padding: 0.65rem 0.7rem;
  animation: pcOrderTrackIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}
.pc-order-confirm__row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
  padding: 0.45rem 0.55rem;
  margin: 0;
  border-radius: 0.55rem;
  border: 1px solid #e2e8f0;
  background: #ffffff !important;
}
.pc-order-confirm__row--anim {
  animation: pcConfirmRowIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(0.05s + var(--pc-confirm-i, 0) * 0.06s);
}
@keyframes pcConfirmRowIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pc-order-confirm__ico {
  display: flex;
  align-items: flex-start;
  padding-top: 0.05rem;
}
.pc-order-confirm__ico .pc-order-modal__ico {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(99, 102, 241, 0.18), rgba(16, 185, 129, 0.12));
  border: 1px solid rgba(99, 102, 241, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pc-order-confirm__k {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #4f46e5;
  margin-bottom: 0.1rem;
}
.pc-order-confirm__v {
  font-size: 0.82rem;
  color: #0f172a;
  line-height: 1.4;
}
.pc-order-confirm__price-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.15rem;
}
.pc-order-confirm__chip {
  display: inline-flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 5.2rem;
  padding: 0.35rem 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}
.pc-order-confirm__chip em {
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}
.pc-order-confirm__chip strong {
  font-size: 0.8rem;
  font-weight: 750;
  color: #0f172a;
}
.pc-order-confirm__chip--total {
  border-color: rgba(99, 102, 241, 0.35);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(16, 185, 129, 0.08));
}
.pc-order-confirm__chip--total strong {
  color: #3730a3;
}
.pc-order-confirm__block {
  margin-top: 0.15rem;
  padding: 0.55rem 0.55rem 0.45rem;
  border: 1px solid #e2e8f0;
  background: #ffffff !important;
  border-radius: 0.55rem;
}
.pc-order-confirm__block--expect {
  margin-top: 0.25rem;
}
.pc-order-confirm__k--expect {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.4rem !important;
}
.pc-order-confirm__expect-wrap {
  border-radius: 0.55rem;
  border: 1px solid rgba(99, 102, 241, 0.18);
  background: #f8fafc;
  padding: 0.55rem 0.65rem;
  position: relative;
  max-height: 12rem;
  overflow: auto;
}
.pc-order-confirm__expect-wrap::before {
  content: '\201C';
  position: absolute;
  top: 0.1rem;
  left: 0.4rem;
  font-size: 1.4rem;
  line-height: 1;
  color: rgba(129, 140, 248, 0.3);
  font-family: Georgia, serif;
}
.pc-order-confirm__expect {
  white-space: pre-wrap;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #0f172a;
  padding-left: 0.75rem;
}
.pc-order-confirm__expect-sections {
  display: grid;
  gap: 0.35rem;
  max-height: 14rem;
  overflow: auto;
  padding-right: 0.15rem;
}
.pc-order-confirm__expect-acc {
  border-radius: 0.5rem;
  border: 1px solid rgba(99, 102, 241, 0.16);
  background: #f8fafc;
  overflow: hidden;
}
.pc-order-confirm__expect-sum {
  list-style: none;
  cursor: pointer;
  padding: 0.4rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 750;
  color: #312e81;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  user-select: none;
}
.pc-order-confirm__expect-sum::-webkit-details-marker {
  display: none;
}
.pc-order-confirm__expect-sum::after {
  content: '';
  margin-left: auto;
  width: 0.35rem;
  height: 0.35rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.5;
  transition: transform 0.18s ease;
}
.pc-order-confirm__expect-acc[open] > .pc-order-confirm__expect-sum::after {
  transform: rotate(-135deg);
}
.pc-order-confirm__expect-acc-body {
  padding: 0 0.55rem 0.5rem;
}
.pc-order-confirm__expect-acc-body .pc-order-confirm__expect {
  padding-left: 0;
  max-height: none;
}
.pc-order-success__link {
  color: #a5b4fc;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pc-order-success__link:hover {
  color: #c7d2fe;
}

/* Go?? - zach?ta do konta przed / po wys?aniu zam?wienia */
.pc-order-guest {
  margin: 1rem 0 0.25rem;
  padding: 1rem 1.05rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(99, 102, 241, 0.28);
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.75), rgba(15, 23, 42, 0.85));
}
.pc-order-guest--success {
  margin-top: 1.15rem;
  border-color: rgba(52, 211, 153, 0.25);
  background: linear-gradient(145deg, rgba(6, 78, 59, 0.22), rgba(15, 23, 42, 0.88));
}
.pc-order-guest__title {
  margin: 0 0 0.4rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #e2e8f0;
}
.pc-order-guest__lead {
  margin: 0 0 0.55rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #94a3b8;
}
.pc-order-guest__list {
  margin: 0 0 0.65rem 1.1rem;
  padding: 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: #cbd5e1;
}
.pc-order-guest__list li {
  margin: 0.15rem 0;
}
.pc-order-guest__skip {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  line-height: 1.45;
  color: #64748b;
}
.pc-order-guest__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pc-order-guest__btn {
  flex: 1 1 8rem;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ===== Referencje (#section-testimonials) - kompaktowy slajder .pc-ts-* ===== */
#section-testimonials .pc-home-section-head,
.pc-top-services-section .pc-home-section-head,
#section-pricing .pricing-section-title,
#section-pricing .pricing-section-sub {
  position: relative;
  z-index: 1;
}

.pc-home-section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.42rem 0.9rem;
  margin-bottom: 0.25rem;
  border: 1px solid rgba(99, 102, 241, 0.24);
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.1);
  color: #93c5fd;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pc-hub-panel__card {
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
}

.pc-hub-panel__cta {
  min-width: 12rem;
  padding: 0.9rem 1.35rem;
  border-radius: 0.85rem;
}

.pc-hub-panel__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.35);
  color: #cbd5e1;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

html.pc-light .pc-hub-panel__pill {
  background: #f8fafc;
  border-color: #e2e8f0;
  color: #475569;
}

html.pc-light .pc-hub-panel__card {
  background: #ffffff !important;
  border-color: #e2e8f0 !important;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

html.pc-light .pc-hub-panel__card h3,
html.pc-light .pc-hub-panel__card strong {
  color: #0f172a !important;
}

html.pc-light .pc-hub-panel__card p {
  color: #475569 !important;
}

#section-testimonials .pc-ts-section {
  position: relative;
}

#section-testimonials .pc-promo-pack-banner--feature {
  margin: 0 auto;
}

#section-testimonials .pc-ts-shell {
  max-width: 46rem;
}

#section-testimonials .pc-ts-card {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  height: 33rem;
  background: rgba(15, 23, 42, 0.45) !important;
  overflow: hidden;
}

#section-testimonials .pc-ts-body {
  display: grid;
  grid-template-rows: 9.5rem 7.4rem 1.55rem 7.25rem;
  gap: 0.875rem;
  height: 100%;
}

#section-testimonials .pc-ts-body--fade {
  opacity: 0;
}

#section-testimonials .pc-ts-quote-wrap {
  position: relative;
  min-height: 9.5rem;
  padding-left: 2.75rem;
  text-align: left;
}

@media (max-width: 767px) {
  #section-testimonials .pc-ts-card {
    height: var(--pc-ts-mobile-h, 31.5rem);
    min-height: var(--pc-ts-mobile-h, 31.5rem);
    overflow: hidden;
    touch-action: pan-y;
  }

  #section-testimonials .pc-ts-body {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto auto;
    gap: 0.65rem;
    height: 100%;
  }

  #section-testimonials .pc-ts-quote-wrap {
    min-height: 0;
    padding-left: 2rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  #section-testimonials .pc-ts-quote {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
    text-overflow: unset;
  }

  #section-testimonials .pc-ts-pills-wrap {
    min-height: 0;
    margin-top: 0.15rem;
  }

  #section-testimonials .pc-ts-author-row {
    align-self: end;
    min-height: 0;
    margin-top: 0;
    padding-top: 1rem;
  }

  #section-testimonials .pc-ts-dots {
    display: none !important;
  }

  #section-testimonials .pc-ts-card.pc-ts-measure {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
    height: auto !important;
    min-height: 0 !important;
    visibility: hidden;
    pointer-events: none;
  }

  #section-testimonials .pc-ts-shell .pc-promo-pack-banner__inner {
    position: relative;
    min-height: var(--pc-ts-mobile-h, 31.5rem);
  }

  #section-testimonials .pc-ts-card.pc-ts-measure .pc-ts-body {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 0.65rem;
  }

  #section-testimonials .pc-ts-card.pc-ts-measure .pc-ts-quote-wrap {
    overflow: visible;
  }
}

@media (min-width: 768px) {
  #section-testimonials .pc-ts-quote-wrap {
    min-height: 7.75rem;
  }

  #section-testimonials .pc-ts-card {
    height: 26.25rem;
  }

  #section-testimonials .pc-ts-body {
    grid-template-rows: 7.75rem 4rem 1.4rem 6.25rem;
  }

  #section-testimonials .pc-ts-author-row {
    min-height: 6.25rem;
  }
}

#section-testimonials .pc-ts-quote-mark {
  position: absolute;
  left: 0;
  top: 0.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(129, 140, 248, 0.35);
  background: rgba(30, 41, 59, 0.85);
  color: #a5b4fc;
}

#section-testimonials .pc-ts-pills-wrap {
  text-align: center;
}

@media (min-width: 768px) {
  #section-testimonials .pc-ts-pills-wrap {
    min-height: 3.25rem;
  }
}

#section-testimonials .pc-ts-pills {
  align-content: flex-start;
  justify-content: center;
  row-gap: 0.45rem;
}

@media (min-width: 768px) {
  #section-testimonials .pc-ts-pills {
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  #section-testimonials .pc-ts-pill {
    white-space: nowrap;
  }
}

#section-testimonials .pc-ts-dots {
  min-height: 1.55rem;
  align-items: center;
}

#section-testimonials .pc-ts-author-row {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 1.25rem;
}

@media (min-width: 768px) {
  #section-testimonials .pc-ts-author-row {
    min-height: 7rem;
  }
}

#section-testimonials .pc-ts-role {
  max-width: min(100%, 28rem);
  margin-left: auto;
  margin-right: auto;
}

#section-testimonials .pc-ts-author-row .pc-ts-avatar {
  margin: 0 auto;
}

#section-testimonials .pc-ts-kicker {
  letter-spacing: 0.18em;
}

#section-testimonials .pc-ts-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.65rem 0.28rem 0.45rem;
  border-radius: 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.25;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.55);
  color: #e2e8f0;
}

#section-testimonials .pc-ts-pill__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.85rem;
  flex-shrink: 0;
  border: 1px solid rgba(51, 65, 85, 0.55);
  background: rgba(15, 23, 42, 0.72);
  color: #a5b4fc;
}

#section-testimonials .pc-ts-pill__ico svg {
  width: 1.1rem;
  height: 1.1rem;
}

#section-testimonials .pc-ts-ico {
  display: block;
}

#section-testimonials .pc-ts-dot {
  width: 0.5rem;
  height: 0.5rem;
  min-width: 0.5rem;
  border-radius: 999px;
  border: none;
  padding: 0;
  cursor: pointer;
  background: #475569;
  transition:
    width 0.35s ease,
    background 0.25s ease;
}

#section-testimonials .pc-ts-dot:hover {
  background: #64748b;
}

#section-testimonials .pc-ts-dot--on {
  width: 1.5rem;
  background: #6366f1;
}

#section-testimonials .pc-ts-dot:focus-visible {
  outline: 2px solid rgba(99, 102, 241, 0.65);
  outline-offset: 2px;
}

/* Mobile: sta?a wysoko?? karty (JS mierzy max ze slajd?w); kropki ukryte - swipe + auto-rotacja */
/* Pakiet promocyjny ?Komplet na start? - baner promocyjny */
.pc-promo-pack-section {
  border-bottom: 1px solid rgba(51, 65, 85, 0.35);
}

.pc-promo-pack-section--after-pricing {
  padding-top: 1.25rem;
  margin-top: 0.75rem;
}

.pc-promo-pack-banner {
  padding: 1.35rem 1rem 1.1rem;
}

@media (min-width: 768px) {
  .pc-promo-pack-banner {
    padding: 1.65rem 1.35rem 1.25rem;
  }
}

.pc-promo-pack-banner__title {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.pc-promo-pack-banner__subtitle {
  font-size: 0.875rem;
  max-width: 36rem;
  margin-inline: auto;
}

.pc-promo-pack-banner__tag {
  font-size: 0.75rem;
}

.pc-promo-pack-grid {
  gap: 1rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .pc-promo-pack-grid {
    gap: 1.15rem;
    margin-bottom: 1.5rem;
  }
}

.pc-promo-item__cta {
  margin-top: auto;
  min-height: 2.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pc-promo-item--featured .pc-promo-item__preview--full,
.pc-promo-item--compact .pc-promo-item__preview--full {
  min-height: clamp(9rem, 22vw, 16rem);
}

.pc-promo-item--featured .pc-promo-item__preview--full {
  min-height: clamp(11rem, 26vw, 18rem);
}

.pc-promo-item__zoom {
  border: 0;
  padding: 0;
  cursor: zoom-in;
  display: block;
  width: 100%;
  background: transparent;
  position: relative;
}

.pc-promo-item__zoom-hint {
  position: absolute;
  bottom: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  font-size: 0.75rem;
  padding: 0.2rem 0.45rem;
  border-radius: 0.4rem;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(51, 65, 85, 0.55);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.pc-promo-item__zoom:hover .pc-promo-item__zoom-hint,
.pc-promo-item__zoom:focus-visible .pc-promo-item__zoom-hint {
  opacity: 1;
}

.pc-promo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(2, 6, 23, 0.88);
  backdrop-filter: blur(8px);
}

.pc-promo-lightbox[hidden] {
  display: none !important;
}

.pc-promo-lightbox__img {
  max-width: min(96vw, 72rem);
  max-height: 88vh;
  border-radius: 0.75rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  object-fit: contain;
}

.pc-promo-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.85);
  color: #f8fafc;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

#section-pricing .pricing-section--with-promo {
  padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
  #section-pricing .pricing-section--with-promo {
    padding-bottom: 3rem;
  }
}

.pc-promo-pack-section--after-pricing {
  padding-top: 1.25rem;
  margin-top: 0.75rem;
}

#section-pricing + #section-promo-pack .pc-promo-pack-section--after-pricing {
  padding-bottom: var(--section-padding, 4rem);
}

.pc-promo-pack-banner--feature {
  animation: pcPromoBannerIn 0.85s cubic-bezier(0.33, 0, 0.2, 1) both;
}

.pc-promo-pack-banner--feature .pc-promo-pack-banner__head {
  margin-bottom: 1.25rem;
}

.pc-promo-pack-banner--cta .pc-promo-pack-banner__inner {
  padding: 0.5rem 0 1rem;
}

.pc-promo-pack-banner--cta .pc-promo-pack-banner__title {
  margin-top: 0.75rem;
}

#section-ai-demo .pc-promo-pack-banner--feature {
  margin: 0 auto;
}

#section-ai-demo .aidemo-benefits {
  max-width: none;
}

#section-final-cta .pc-promo-pack-banner--cta {
  max-width: none;
  margin: 0;
}

/* Ko?cowe CTA - pe?na szeroko?? strony (kolory + animacje banera, uk?ad jak wcze?niej) */
.pc-final-cta-section {
  position: relative;
  border-top: 1px solid rgba(129, 140, 248, 0.28);
  border-bottom: 1px solid rgba(51, 65, 85, 0.45);
  background:
    linear-gradient(135deg, rgba(99, 102, 241, 0.16) 0%, rgba(15, 23, 42, 0.94) 48%, rgba(245, 158, 11, 0.1) 100%);
  animation: pcPromoBannerIn 0.85s cubic-bezier(0.33, 0, 0.2, 1) both;
}

.pc-final-cta-video,
.pc-final-cta-video-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.pc-final-cta-video {
  display: none;
  object-fit: cover;
  opacity: 0;
}

.pc-final-cta-video-shade {
  display: none;
  z-index: 1;
}

.pc-final-cta-title {
  letter-spacing: -0.055em;
}

.pc-final-cta-subtitle {
  color: rgba(203, 213, 225, 0.9) !important;
}

.pc-final-cta-section .pc-promo-pack-banner__glow,
.pc-final-cta-section .pc-promo-pack-banner__shine {
  position: absolute;
  pointer-events: none;
}

.pc-final-cta-section .pc-promo-pack-banner__glow {
  inset: -40% -20%;
  background:
    radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.28) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.22) 0%, transparent 42%);
  animation: pcPromoGlowDrift 12s ease-in-out infinite alternate;
}

.pc-final-cta-section .pc-promo-pack-banner__shine {
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.06) 45%, transparent 70%);
  animation: pcPromoShine 8s ease-in-out infinite;
}

.pc-final-cta-section .pc-promo-pack-banner__badge {
  margin-top: 0.25rem;
}

.pc-promo-pack-banner {
  position: relative;
  border-radius: 1.75rem;
  padding: 1.25rem;
  background:
    linear-gradient(135deg, rgba(99, 102, 241, 0.14) 0%, rgba(15, 23, 42, 0.92) 42%, rgba(245, 158, 11, 0.1) 100%);
  border: 1px solid rgba(129, 140, 248, 0.35);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 28px 60px -28px rgba(0, 0, 0, 0.65),
    0 0 48px -12px rgba(99, 102, 241, 0.35);
  overflow: hidden;
  animation: pcPromoBannerIn 0.85s cubic-bezier(0.33, 0, 0.2, 1) both;
}

@media (min-width: 768px) {
  .pc-promo-pack-banner {
    padding: 2rem 2.25rem 2.5rem;
  }
}

.pc-promo-pack-banner__glow {
  position: absolute;
  inset: -40% -20%;
  background:
    radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.28) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.22) 0%, transparent 42%);
  pointer-events: none;
  animation: pcPromoGlowDrift 12s ease-in-out infinite alternate;
}

.pc-promo-pack-banner__shine {
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.07) 48%, transparent 100%);
  pointer-events: none;
  animation: pcPromoShine 7s ease-in-out infinite;
}

.pc-promo-pack-banner__inner {
  position: relative;
  z-index: 1;
}

.pc-promo-pack-banner__head {
  margin-bottom: 1.75rem;
}

@media (min-width: 768px) {
  .pc-promo-pack-banner__head {
    margin-bottom: 2.25rem;
  }
}

.pc-promo-pack-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.38);
  color: rgb(251, 191, 36);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pc-promo-pack-banner__badge-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: rgb(251, 191, 36);
  box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.55);
  animation: pcPromoPulseDot 2s ease-out infinite;
}

.pc-promo-pack-banner__ribbon {
  display: inline-block;
  margin: 0.75rem 0 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 0.5rem;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.25), rgba(52, 211, 153, 0.15));
  border: 1px solid rgba(52, 211, 153, 0.45);
  color: rgb(110, 231, 183);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  animation: pcPromoRibbonPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.35s both;
}

.pc-promo-pack-banner__title {
  margin: 0.65rem 0 0.75rem;
  font-size: clamp(1.85rem, 4.5vw, 3.15rem);
  font-weight: 700;
  line-height: 1.1;
  font-family: var(--font-space-grotesk, 'Brygada 1918', system-ui, sans-serif);
}

.pc-promo-pack-banner__subtitle {
  margin: 0 auto;
  max-width: 40rem;
  font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
  line-height: 1.65;
  color: rgba(203, 213, 225, 0.92);
}

.pc-promo-pack-banner__tag {
  margin: 0.85rem auto 0;
  max-width: 36rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.95);
}

.pc-promo-pack__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin: 1.15rem auto 0;
  padding: 0.65rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(129, 140, 248, 0.45);
  background: rgba(99, 102, 241, 0.12);
  color: rgb(199, 210, 254);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pc-promo-pack__toggle:hover {
  transform: translateY(-1px);
  background: rgba(99, 102, 241, 0.22);
  border-color: rgba(165, 180, 252, 0.55);
  box-shadow: 0 10px 28px -14px rgba(99, 102, 241, 0.65);
}

.pc-promo-pack__toggle-chevron {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.28s ease;
}

.pc-promo-pack__toggle.is-open .pc-promo-pack__toggle-chevron {
  transform: rotate(-135deg) translateY(1px);
}

@keyframes pc-toggle-bounce {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.35);
  }
  50% {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px -10px rgba(99, 102, 241, 0.55);
  }
}

.pc-promo-pack__toggle:not(.is-open) {
  animation: pc-toggle-bounce 2.2s ease-in-out infinite;
}

.pc-promo-pack__toggle:not(.is-open):hover {
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  .pc-promo-pack__toggle:not(.is-open) {
    animation: none;
  }
  .pc-problem-cta {
    animation: none !important;
  }
}

/* CTA sekcji ?V?re resultater? - ten sam bounce co ?Se detaljer? */
.pc-problem-cta {
  animation: pc-toggle-bounce 2.2s ease-in-out infinite;
  will-change: transform;
}
.pc-problem-cta:hover,
.pc-problem-cta:focus-visible {
  animation: none;
}

.problem-stat-val.is-counting {
  display: inline-block;
  transform-origin: center bottom;
  transition: transform 0.15s ease;
}

.pc-promo-pack__details {
  overflow: hidden;
}

.pc-promo-pack__details:not([hidden]) {
  animation: pc-promo-details-in 0.42s ease;
}

@keyframes pc-promo-details-in {
  from {
    opacity: 0;
    transform: translateY(-0.65rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Specjalna oferta - Od?wie? stron? 2026 (styl jak pakiet promocyjny) */
.pc-spec-offer-banner {
  position: relative;
  overflow: hidden;
}

.pc-spec-offer-banner__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

.pc-spec-offer-banner__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: brightness(0.26) saturate(1.05) contrast(1.06);
  z-index: 0;
}

.pc-spec-offer-banner__video-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(155deg, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.72) 48%, rgba(49, 46, 129, 0.62) 100%),
    radial-gradient(circle at 82% 18%, rgba(99, 102, 241, 0.24), transparent 44%);
}

.pc-spec-offer-banner .pc-promo-pack-banner__glow,
.pc-spec-offer-banner .pc-promo-pack-banner__shine {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.pc-spec-offer-banner__inner {
  position: relative;
  z-index: 2;
}

.pc-spec-offer-banner .pc-spec-offer-grid,
.pc-spec-offer-banner .pc-spec-offer-copy,
.pc-spec-offer-banner .pc-spec-offer-price,
.pc-spec-offer-banner .pc-spec-offer-price-box {
  position: relative;
  z-index: 2;
}

.pc-spec-offer-section {
  position: relative;
}

.pc-spec-offer-banner {
  border-color: rgba(251, 146, 60, 0.28);
}

.pc-spec-offer-banner .pc-promo-pack-banner__glow {
  background: radial-gradient(ellipse at 30% 20%, rgba(251, 146, 60, 0.14), transparent 55%);
}

.pc-spec-offer-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .pc-spec-offer-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
  }
}

.pc-spec-offer-head__ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pc-spec-offer-badge {
  border-color: rgba(251, 146, 60, 0.35);
  background: rgba(251, 146, 60, 0.1);
  color: rgb(253, 186, 116);
}

.pc-spec-offer-title {
  text-align: left;
}

.pc-spec-offer-copy .pc-promo-pack-banner__subtitle {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.pc-spec-offer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.pc-spec-offer-list--bad {
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
}

.pc-spec-offer-list--good {
  margin-bottom: 0;
}

.pc-spec-offer__li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  line-height: 1.45;
}

.pc-spec-offer__li--bad {
  color: rgba(248, 113, 113, 0.9);
}

.pc-spec-offer__li--good {
  color: rgba(74, 222, 128, 0.9);
}

.pc-spec-offer__ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.pc-spec-offer__ic--bad {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: rgb(252, 165, 165);
}

.pc-spec-offer__ic--good {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: rgb(134, 239, 172);
}

.pc-spec-offer-price-box {
  text-align: center;
  padding: 1.75rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(251, 146, 60, 0.25);
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
}

.pc-spec-offer-promo {
  font-size: 0.75rem;
  color: rgb(251, 146, 60);
  margin: 0;
  line-height: 1.4;
}

.pc-spec-offer-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.pc-spec-offer-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.pc-spec-offer-popup__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(99, 102, 241, 0.22), transparent 40%),
    rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(16px);
}

.pc-spec-offer-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 64rem);
  max-height: min(88vh, 54rem);
  overflow: auto;
  transform: translateY(0.75rem) scale(0.985);
  transition: transform 0.24s ease;
}

.pc-spec-offer-popup.is-visible .pc-spec-offer-popup__dialog {
  transform: none;
}

.pc-spec-offer-popup__close {
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(15, 23, 42, 0.74);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.28);
}

.pc-spec-offer-banner--popup {
  max-width: none;
  margin: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.pc-spec-offer-banner--popup .pc-spec-offer-banner__video {
  filter: brightness(0.22) saturate(1.08) contrast(1.08);
}

.pc-spec-offer-banner--popup .pc-spec-offer-banner__video-scrim {
  background:
    linear-gradient(165deg, rgba(2, 6, 23, 0.94) 0%, rgba(2, 6, 23, 0.8) 50%, rgba(30, 27, 75, 0.76) 100%),
    radial-gradient(ellipse at 78% 12%, rgba(99, 102, 241, 0.2), transparent 52%);
}

.pc-modal-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .pc-spec-offer-popup {
    padding: 0.75rem;
  }

  .pc-spec-offer-popup__dialog {
    max-height: 86vh;
  }

  .pc-spec-offer-banner--popup {
    border-radius: 1.35rem;
    padding: 1rem;
  }
}

html.pc-light .pc-spec-offer-banner--popup .pc-spec-offer-title,
html.pc-light .pc-spec-offer-banner--popup .pc-spec-offer__li {
  color: #f8fafc !important;
}

html.pc-light .pc-spec-offer-banner--popup .pc-promo-pack-banner__subtitle {
  color: #f1f5f9 !important;
  opacity: 0.98;
}

html.pc-light .pc-spec-offer-banner--popup .pc-spec-offer__li--bad {
  color: #fdba74;
}

html.pc-light .pc-spec-offer-banner--popup .pc-spec-offer__li--good {
  color: #6ee7b7;
}

html.pc-light .pc-spec-offer-banner--popup .pc-spec-offer-banner__video {
  filter: brightness(0.22) saturate(1.08) contrast(1.08);
}

html.pc-light .pc-spec-offer-banner--popup .pc-spec-offer-banner__video-scrim {
  background:
    linear-gradient(165deg, rgba(2, 6, 23, 0.94) 0%, rgba(2, 6, 23, 0.8) 50%, rgba(30, 27, 75, 0.76) 100%),
    radial-gradient(ellipse at 78% 12%, rgba(99, 102, 241, 0.2), transparent 52%);
}

html.pc-light .pc-spec-offer-popup__close {
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  border-color: rgba(148, 163, 184, 0.35);
}

html.pc-light .pc-spec-offer-price-box .gradient-text {
  background-image: linear-gradient(135deg, #4f46e5, #7c3aed);
}

html.pc-light .pc-spec-offer-banner__video {
  filter: brightness(0.72) saturate(0.95) contrast(1.02);
}

html.pc-light .pc-spec-offer-banner__video-scrim {
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 252, 0.82) 45%, rgba(224, 231, 255, 0.78) 100%),
    radial-gradient(circle at 85% 18%, rgba(99, 102, 241, 0.16), transparent 45%);
}

/* Brand icons - sp?jne z kafelkami na stronie g??wnej */
.pc-brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 0.85rem;
  border: 1px solid rgba(99, 102, 241, 0.22);
  background: rgba(99, 102, 241, 0.1);
  color: #a5b4fc;
}

.pc-brand-icon--sm {
  width: 2.5rem;
  height: 2.5rem;
}

.pc-brand-icon--lg {
  width: 4rem;
  height: 4rem;
  border-radius: 1.1rem;
}

.pc-brand-icon--lg svg {
  width: 1.75rem;
  height: 1.75rem;
}

.pc-brand-icon--violet {
  border-color: rgba(139, 92, 246, 0.35);
  background: rgba(139, 92, 246, 0.12);
  color: #c4b5fd;
}

.pc-brand-icon--emerald {
  border-color: rgba(16, 185, 129, 0.32);
  background: rgba(16, 185, 129, 0.1);
  color: #6ee7b7;
}

.pc-brand-icon--cyan {
  border-color: rgba(34, 211, 238, 0.32);
  background: rgba(34, 211, 238, 0.1);
  color: #67e8f9;
}

.pc-brand-icon--orange {
  border-color: rgba(251, 146, 60, 0.35);
  background: rgba(251, 146, 60, 0.12);
  color: #fdba74;
}

.pc-legal-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pc-legal-list__ic {
  margin-top: 0.1rem;
}

.pc-legal-card .pc-legal-section + .pc-legal-section {
  padding-top: 0.25rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

html.pc-light .pc-brand-icon {
  border-color: rgba(99, 102, 241, 0.2);
  background: rgba(238, 242, 255, 0.95);
  color: #4f46e5;
}

html.pc-light .pc-brand-icon--violet {
  color: #7c3aed;
  background: rgba(237, 233, 254, 0.95);
}

html.pc-light .pc-brand-icon--emerald {
  color: #059669;
  background: rgba(209, 250, 229, 0.9);
}

html.pc-light .pc-brand-icon--cyan {
  color: #0891b2;
  background: rgba(207, 250, 254, 0.9);
}

html.pc-light .pc-brand-icon--orange {
  color: #ea580c;
  background: rgba(255, 237, 213, 0.95);
}

.site-footer-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(30, 41, 59, 0.85);
  border: 1px solid rgba(51, 65, 85, 0.75);
  color: #cbd5e1;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.site-footer-social__link:hover,
.site-footer-social__link:focus-visible {
  border-color: rgba(99, 102, 241, 0.5);
  background: rgba(99, 102, 241, 0.12);
  color: #f8fafc;
  transform: translateY(-1px);
}

.site-footer-social__link .subpage-social__ico {
  width: 1rem;
  height: 1rem;
}

a.subpage-social__link--live {
  cursor: pointer;
  user-select: auto;
}

.subpage-social__link--yt:hover,
.subpage-social__link--yt:focus-visible {
  border-color: rgba(239, 68, 68, 0.45);
  background: rgba(239, 68, 68, 0.12);
}

.subpage-social__link--tk:hover,
.subpage-social__link--tk:focus-visible {
  border-color: rgba(236, 72, 153, 0.45);
  background: rgba(236, 72, 153, 0.12);
}

.pc-promo-pack__details:not([hidden]) .pc-promo-pack-grid {
  margin-top: 1.75rem;
}

.pc-promo-item__quote {
  margin: 1rem 0 0;
  padding: 0.875rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(52, 211, 153, 0.28);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.06));
}

.pc-promo-item__quote-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.55rem;
}

.pc-promo-item__quote-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  object-fit: cover;
  border: 2px solid rgba(52, 211, 153, 0.45);
  flex-shrink: 0;
}

.pc-promo-item__quote-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.pc-promo-item__quote-author {
  font-style: normal;
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgb(226, 232, 240);
}

.pc-promo-item__quote-role {
  font-size: 0.6875rem;
  color: rgb(148, 163, 184);
}

.pc-promo-item__quote-text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgb(203, 213, 225);
  font-style: italic;
}

.pc-promo-item__growth {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(51, 65, 85, 0.45);
}

.pc-promo-item__growth-title {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(129, 140, 248);
}

.pc-promo-item__growth-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

@media (min-width: 640px) {
  .pc-promo-item__growth-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }
}

.pc-promo-item__growth-card {
  padding: 0.65rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(59, 130, 246, 0.22);
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.1), rgba(15, 23, 42, 0.35));
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.pc-promo-item--featured:hover .pc-promo-item__growth-card {
  border-color: rgba(96, 165, 250, 0.35);
}

.pc-promo-item__growth-ic {
  display: block;
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.pc-promo-item__growth-card-title {
  margin: 0 0 0.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.35;
  color: rgb(226, 232, 240);
}

.pc-promo-item__growth-card-desc {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgb(148, 163, 184);
}

.pc-promo-item__impact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(51, 65, 85, 0.55);
}

.pc-promo-item__impact-stat {
  flex: 1 1 calc(33.333% - 0.5rem);
  min-width: 5.5rem;
  padding: 0.45rem 0.55rem;
  border-radius: 0.55rem;
  text-align: center;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.22);
}

.pc-promo-item__impact-val {
  display: block;
  font-size: 0.875rem;
  font-weight: 800;
  color: rgb(110, 231, 183);
  line-height: 1.2;
}

.pc-promo-item__impact-lbl {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgb(148, 163, 184);
}

.pc-promo-item--featured .pc-promo-item__growth {
  flex: 1;
  min-height: 0;
}

.pc-promo-pack-grid {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
  margin-bottom: 1.75rem;
}

@media (min-width: 768px) {
  .pc-promo-pack-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 1.5rem;
    min-height: 0;
    margin-bottom: 2rem;
  }

  .pc-promo-pack-grid__main,
  .pc-promo-pack-grid__side {
    min-height: 0;
    min-width: 0;
  }

  .pc-promo-pack-grid__main {
    display: flex;
  }

  .pc-promo-pack-grid__main > .pc-promo-item {
    flex: 1;
  }

  .pc-promo-pack-grid__side {
    display: grid;
    grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.5rem;
  }
}

.pc-promo-item__price-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.65rem;
  border-radius: 0.5rem;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(51, 65, 85, 0.65);
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgb(226, 232, 240);
}

.pc-promo-item__pkg-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgb(96, 165, 250);
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.28);
  white-space: nowrap;
}

.pc-promo-item__features {
  list-style: none;
  margin: 0.875rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.pc-promo-item__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgb(203, 213, 225);
}

.pc-promo-item__feature > span:first-child {
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: rgb(74, 222, 128);
  font-size: 0.75rem;
}

.pc-promo-item__cta {
  margin-top: 1rem;
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(129, 140, 248, 0.45);
  background: rgba(99, 102, 241, 0.14);
  color: rgb(199, 210, 254);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  line-height: 1.25;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pc-promo-item__cta-sep {
  opacity: 0.48;
  font-size: 0.72rem;
}

.pc-promo-item__cta:hover {
  transform: translateY(-1px);
  background: rgba(99, 102, 241, 0.28);
  border-color: rgba(165, 180, 252, 0.55);
  box-shadow: 0 8px 24px -12px rgba(99, 102, 241, 0.55);
}

.pc-promo-item--featured .pc-promo-item__preview--full {
  min-height: clamp(14rem, 34vw, 22rem);
}

.pc-promo-item--compact .pc-promo-item__preview--full {
  min-height: clamp(10rem, 20vw, 14rem);
}

.pc-promo-item--compact .pc-promo-item__desc {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pc-promo-item--compact .pc-promo-item__desc--compact-copy {
  flex: 0 0 auto;
  margin-bottom: 0.55rem;
}

.pc-promo-item--compact .pc-promo-item__features {
  gap: 0.25rem;
  margin-top: 0;
  margin-bottom: 0.65rem;
}

.pc-promo-item--compact .pc-promo-item__feature {
  font-size: 0.735rem;
  line-height: 1.25;
}

.pc-promo-item--featured .pc-promo-item__desc,
.pc-promo-item--compact .pc-promo-item__desc {
  flex-shrink: 0;
}

.pc-promo-item__media {
  isolation: isolate;
}

.pc-promo-item__preview {
  flex-shrink: 0;
  margin-bottom: 0;
  border-radius: 0;
  overflow: hidden;
  border: none;
  background: rgba(8, 12, 24, 0.55);
}

.pc-promo-item__preview--full {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid rgba(51, 65, 85, 0.45);
}

.pc-promo-item__preview-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.55s ease;
}

.pc-promo-item--inline-preview:hover .pc-promo-item__preview-img {
  transform: scale(1.02);
}

.pc-promo-item__preview--video {
  cursor: default;
  pointer-events: none;
  background: #0f172a;
}

.pc-promo-item__preview-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

.pc-promo-item__desc--reveal {
  opacity: 0;
  transform: translateY(10px);
  animation: pcPromoDescIn 0.58s cubic-bezier(0.33, 0, 0.2, 1) forwards;
}

@keyframes pcPromoDescIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pcPromoBannerIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pcPromoGlowDrift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(2%, -3%) scale(1.05);
  }
}

@keyframes pcPromoShine {
  0%,
  72% {
    left: -120%;
  }
  100% {
    left: 140%;
  }
}

@keyframes pcPromoPulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.55);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(251, 191, 36, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0);
  }
}

@keyframes pcPromoRibbonPop {
  from {
    opacity: 0;
    transform: scale(0.88) translateY(6px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes pcPromoCtaPulse {
  0%,
  100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 0 0 0 rgba(99, 102, 241, 0.45);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 0 0 6px rgba(99, 102, 241, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pc-promo-pack-banner,
  .pc-promo-pack-banner__glow,
  .pc-promo-pack-banner__shine,
  .pc-promo-pack-banner__badge-dot,
  .pc-promo-pack-banner__ribbon,
  .pc-promo-pack__price--pulse,
  .pc-promo-item__desc--reveal {
    animation: none !important;
  }

  .pc-promo-item__desc--reveal {
    opacity: 1;
    transform: none;
  }

  .pc-promo-item--inline-preview:hover .pc-promo-item__preview-img {
    transform: none;
  }
}

.pc-promo-pack__offer--banner {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(129, 140, 248, 0.35);
  background: linear-gradient(120deg, rgba(79, 70, 229, 0.18) 0%, rgba(15, 23, 42, 0.88) 55%, rgba(245, 158, 11, 0.12) 100%);
  padding: 1.5rem 1.25rem;
}

@media (min-width: 768px) {
  .pc-promo-pack__offer--banner {
    padding: 2rem 2.5rem;
  }
}

.pc-promo-pack__offer-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(99, 102, 241, 0.22) 0%, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(16, 185, 129, 0.15) 0%, transparent 38%);
  pointer-events: none;
}

.pc-promo-pack__save-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(52, 211, 153, 0.38);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgb(110, 231, 183);
}

.pc-promo-pack__saving-line {
  margin: 0 0 0.65rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 0.8rem;
  background: rgba(34, 197, 94, 0.08);
  color: rgb(203, 213, 225);
  font-size: 0.86rem;
  line-height: 1.45;
}

.pc-promo-pack__saving-line strong {
  color: rgb(74, 222, 128);
}

.pc-promo-pack__price--pulse {
  border-radius: 1rem;
  border: 1px solid rgba(51, 65, 85, 0.55);
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(8px);
  padding: 1.75rem 1.5rem;
  width: 100%;
  max-width: 320px;
  text-align: center;
  animation: pcPromoCtaPulse 2.8s ease-in-out infinite;
}

.pc-promo-pack__cta-main {
  position: relative;
  overflow: hidden;
}

.pc-promo-pack__cta-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.12) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: pcPromoBtnShimmer 3.5s ease-in-out infinite;
}

@keyframes pcPromoBtnShimmer {
  0%,
  65% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

.pc-promo-pack__offer {
  box-shadow:
    0 0 0 1px rgba(99, 102, 241, 0.08),
    0 24px 48px -24px rgba(0, 0, 0, 0.55);
}

.pc-promo-pack__offer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.pc-promo-pack__benefits {
  width: 100%;
  max-width: 34rem;
  margin-inline: auto;
}

.pc-promo-pack__perks {
  list-style: none;
  margin: 0 auto 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.pc-promo-pack__perk {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.45;
  color: rgba(203, 213, 225, 0.92);
  max-width: 28rem;
}

.pc-promo-pack__perk-ico {
  color: #34d399;
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-weight: 700;
}

.pc-promo-pack__meta {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(100, 116, 139, 0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.pc-promo-pack__meta--note {
  margin-top: 0.5rem;
  display: block;
}

.pc-promo-pack__price-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.pc-promo-pack__price {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .pc-promo-item__img {
    transition: none !important;
  }
}

/* Pakiet promocyjny - kafelki boczne (film + druk): mobile + tablet only (desktop ?1024px bez zmian) */
@media (max-width: 1023px) {
  #promo-pack .pc-promo-pack-grid {
    align-items: start;
  }

  #promo-pack .pc-promo-pack-grid__side {
    display: flex !important;
    flex-direction: column;
    gap: 1.25rem;
    height: auto !important;
    min-height: 0 !important;
    grid-template-rows: unset !important;
  }

  #promo-pack .pc-promo-item--compact {
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
  }

  #promo-pack .pc-promo-item--compact > .flex.flex-col {
    flex: 0 0 auto !important;
    min-height: 0 !important;
    width: 100%;
    position: relative;
    z-index: 1;
  }

  #promo-pack .pc-promo-item--compact .pc-promo-item__cta {
    margin-top: 1rem !important;
  }

  #promo-pack .pc-promo-item--compact .pc-promo-item__preview {
    flex: 0 0 auto !important;
    position: relative;
    z-index: 0;
  }

  #promo-pack .pc-promo-item--compact .pc-promo-item__preview--full {
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    aspect-ratio: 16 / 10;
    padding: 0 !important;
    overflow: hidden;
    display: block !important;
  }

  #promo-pack .pc-promo-item--compact .pc-promo-item__preview--video {
    aspect-ratio: 16 / 10;
  }

  #promo-pack .pc-promo-item--compact .pc-promo-item__preview-video {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
  }

  #promo-pack .pc-promo-item--compact .pc-promo-item__zoom {
    display: block !important;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    overflow: hidden;
  }

  #promo-pack .pc-promo-item--compact .pc-promo-item__preview-img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover;
    object-position: center center;
    display: block;
  }

  #promo-pack .pc-promo-item--compact h3 {
    position: relative;
    z-index: 2;
  }

  #promo-pack .pc-promo-item--compact .pc-promo-item__desc--reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===== Hero podstron (Om oss + Tjenester, Portfolio, Blog, Kontakt) ===== */
.om-oss-hero-section {
  overflow: hidden;
  min-height: 100dvh;
  min-height: 100svh;
}

.om-oss-hero-section .om-oss-hero-inner {
  padding-top: max(0.75rem, calc(3.25rem + env(safe-area-inset-top, 0px)));
  padding-bottom: clamp(1.25rem, 3dvh, 2.5rem);
}

.om-oss-hero-section .om-oss-hero-headline .pc-hero-line {
  font-size: clamp(1.65rem, 4vw + 0.45rem, 3.75rem);
  line-height: 1.06;
}

.om-oss-hero-section .om-oss-hero-sub {
  font-size: clamp(1rem, 1.2vw + 0.75rem, 1.2rem);
  line-height: 1.55;
}

.om-oss-hero-section .om-oss-hero-sub2 {
  max-width: 36rem;
}

.om-oss-hero-section .pc-hero-cta a {
  white-space: nowrap;
}

.om-oss-hero-section .om-oss-hero-stats {
  width: 100%;
}

.om-oss-hero-video,
.om-oss-hero-video-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.om-oss-hero-video {
  object-fit: cover;
  opacity: 0.28;
  filter: saturate(1.05) contrast(1.08) brightness(0.58);
}

.om-oss-hero-video-shade {
  background:
    linear-gradient(135deg, rgba(2, 6, 23, 0.88), rgba(15, 23, 42, 0.72)),
    radial-gradient(circle at 18% 18%, rgba(99, 102, 241, 0.16), transparent 38%);
}

.om-oss-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.om-oss-hero-logo {
  position: relative;
  aspect-ratio: 1;
  width: min(24rem, 88vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border-radius: 2rem;
  border: 1px solid rgba(129, 140, 248, 0.28);
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.62), rgba(30, 41, 59, 0.32)),
    radial-gradient(circle at 50% 40%, rgba(99, 102, 241, 0.14), transparent 62%);
  box-shadow:
    0 28px 64px rgba(15, 23, 42, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  backdrop-filter: blur(12px);
}

.om-oss-hero-logo__ring {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(129, 140, 248, 0.45), rgba(56, 189, 248, 0.15), rgba(168, 85, 247, 0.35));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.75;
}

.om-oss-hero-logo__video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.32s ease;
  filter: drop-shadow(0 10px 28px rgba(99, 102, 241, 0.22));
}

.om-oss-hero-logo__video.is-fading {
  opacity: 0;
}

.om-oss-hero-logo__dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transform: translateX(-50%);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(129, 140, 248, 0.22);
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(8px);
}

.om-oss-hero-logo__dot {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, width 0.2s ease;
}

.om-oss-hero-logo__dot.is-active {
  width: 1.15rem;
  background: linear-gradient(90deg, #818cf8, #a78bfa);
}

.om-oss-hero-logo__dot:hover {
  transform: scale(1.15);
}

@media (max-width: 1023px) {
  .om-oss-hero-section .om-oss-hero-visual {
    order: -1;
    margin-bottom: 0.5rem;
  }

  .om-oss-hero-section .om-oss-hero-logo {
    width: min(14rem, 58vw);
    padding: 1.1rem;
  }

  .om-oss-hero-section .om-oss-hero-stats {
    gap: 1rem 1.75rem;
  }
}

@media (max-width: 767px) {
  #om-oss-hero.pc-subpage-hero-viewport {
    max-height: 100dvh;
    max-height: 100svh;
    overflow: hidden;
  }

  #om-oss-hero .om-oss-hero-inner {
    padding-top: max(4.15rem, calc(3.35rem + env(safe-area-inset-top, 0px))) !important;
    padding-bottom: 0.35rem !important;
    justify-content: flex-start !important;
    min-height: 0;
    overflow: hidden;
  }

  #om-oss-hero .om-oss-hero-inner > .grid {
    gap: 0.55rem !important;
  }

  .om-oss-hero-section .om-oss-hero-visual {
    order: -1;
    margin-bottom: 0.15rem;
  }

  .om-oss-hero-section .om-oss-hero-logo {
    width: min(9.25rem, 40vw);
    padding: 0.65rem;
    border-radius: 1.15rem;
  }

  .om-oss-hero-section .om-oss-hero-logo__video {
    max-height: 5.75rem;
  }

  .om-oss-hero-section .om-oss-hero-logo__dots {
    bottom: 0.45rem;
    padding: 0.2rem 0.45rem;
  }

  .om-oss-hero-section .om-oss-hero-eyebrow {
    margin-bottom: 0.35rem !important;
  }

  .om-oss-hero-section .om-oss-hero-headline {
    margin-bottom: 0.4rem !important;
  }

  .om-oss-hero-section .om-oss-hero-headline .pc-hero-line {
    font-size: clamp(1.28rem, 5.2vw + 0.3rem, 1.72rem) !important;
    line-height: 1.08;
  }

  .om-oss-hero-section .om-oss-hero-sub {
    font-size: 0.84rem !important;
    line-height: 1.42;
    margin-bottom: 0.35rem !important;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
  }

  .om-oss-hero-section .om-oss-hero-sub2 {
    display: none;
  }

  .om-oss-hero-section .pc-hero-cta {
    gap: 0.45rem !important;
  }

  .om-oss-hero-section .pc-hero-cta a {
    padding: 0.6rem 1rem !important;
    font-size: 0.72rem !important;
  }

  .om-oss-hero-section .om-oss-hero-stats {
    margin-top: 0.45rem !important;
    padding-top: 0.35rem !important;
    gap: 0.35rem 0.85rem !important;
  }

  .om-oss-hero-section .om-oss-hero-stats .text-2xl {
    font-size: 1.15rem !important;
  }

  .om-oss-hero-section .om-oss-hero-stats .text-xs {
    font-size: 0.62rem !important;
    letter-spacing: 0.1em;
  }

  .om-oss-hero-section .om-oss-hero-scroll {
    margin-top: 0.25rem !important;
    padding-top: 0.3rem !important;
  }

  .om-oss-hero-section .om-oss-hero-scroll a {
    font-size: 0.72rem;
  }
}

@media (max-height: 820px) and (min-width: 1024px) {
  .om-oss-hero-section .om-oss-hero-headline .pc-hero-line {
    font-size: clamp(1.45rem, 3.2vw + 0.35rem, 3rem);
  }

  .om-oss-hero-section .om-oss-hero-logo {
    width: min(20rem, 36vw);
    padding: 1.5rem;
  }
}

.om-oss-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(129, 140, 248, 0.95);
}

.om-oss-eyebrow--light {
  color: rgba(199, 210, 254, 0.95);
}

.om-oss-stat {
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.om-oss-stat:hover {
  border-color: rgba(99, 102, 241, 0.35);
  transform: translateY(-2px);
}

.om-oss-history-grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .om-oss-history-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
  }
}

.om-oss-history-story {
  padding: 1.75rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(51, 65, 85, 0.55);
  background: rgba(15, 23, 42, 0.55);
  color: #cbd5e1;
  line-height: 1.65;
}

@media (min-width: 768px) {
  .om-oss-history-story {
    padding: 2rem 2.25rem;
  }
}

.om-oss-lead {
  margin: 0 0 1rem;
  font-size: 1.0625rem;
  color: #e2e8f0;
  font-weight: 500;
}

.om-oss-history-story p {
  margin: 0 0 1.25rem;
}

.om-oss-history-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.om-oss-history-points li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

.om-oss-history-badge {
  display: inline-flex;
  min-width: 3rem;
  justify-content: center;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #c7d2fe;
  border: 1px solid rgba(99, 102, 241, 0.35);
  background: rgba(99, 102, 241, 0.12);
}

.om-oss-history-aside {
  display: flex;
}

.om-oss-stat-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 1.75rem 1.5rem;
  border-radius: 1.25rem;
  text-align: center;
  border: 1px solid rgba(99, 102, 241, 0.28);
  background: linear-gradient(145deg, rgba(99, 102, 241, 0.16), rgba(15, 23, 42, 0.75));
  box-shadow: 0 18px 40px -24px rgba(99, 102, 241, 0.45);
}

.om-oss-stat-card__num {
  margin: 0;
  font-family: var(--font-space-grotesk, "Brygada 1918", system-ui, sans-serif);
  font-size: clamp(2.5rem, 6vw, 3.25rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #a5b4fc, #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.om-oss-stat-card__lbl {
  margin: 0.65rem 0 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #e2e8f0;
}

.om-oss-stat-card__hint {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #94a3b8;
}

.om-oss-value {
  border-color: rgba(51, 65, 85, 0.45);
}

.om-oss-mission-wrap {
  position: relative;
}

.om-oss-mission-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 48rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(129, 140, 248, 0.3), transparent);
  pointer-events: none;
}

.om-oss-mission {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.35rem;
  border-radius: 1.75rem;
  border: 1px solid rgba(99, 102, 241, 0.28);
  background:
    linear-gradient(135deg, rgba(79, 70, 229, 0.16), rgba(15, 23, 42, 0.88) 52%, rgba(6, 182, 212, 0.1)),
    radial-gradient(circle at 12% 18%, rgba(99, 102, 241, 0.12), transparent 42%);
  box-shadow:
    0 0 0 1px rgba(99, 102, 241, 0.06),
    0 28px 56px -24px rgba(99, 102, 241, 0.5);
}

@media (min-width: 768px) {
  .om-oss-mission {
    padding: 2.5rem 2.25rem;
  }
}

.om-oss-mission__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .om-oss-mission__grid {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2.5rem;
  }
}

.om-oss-mission__copy {
  text-align: center;
}

@media (min-width: 768px) {
  .om-oss-mission__copy {
    text-align: left;
  }
}

.om-oss-mission__glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(48px);
}

.om-oss-mission__glow--tr {
  top: -3rem;
  right: -2rem;
  width: 14rem;
  height: 14rem;
  background: rgba(99, 102, 241, 0.16);
}

.om-oss-mission__glow--bl {
  bottom: -2.5rem;
  left: -1.5rem;
  width: 11rem;
  height: 11rem;
  background: rgba(6, 182, 212, 0.1);
}

.om-oss-mission__blockquote {
  position: relative;
  margin: 0.85rem 0 0;
  padding: 0;
  border: none;
}

.om-oss-mission__mark {
  display: block;
  margin-bottom: 0.15rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.75rem, 5vw, 3.75rem);
  line-height: 1;
  font-weight: 700;
  background: linear-gradient(135deg, #a5b4fc, #818cf8 45%, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  user-select: none;
}

.om-oss-mission__text {
  margin: 0;
  max-width: 38rem;
  font-size: clamp(1.125rem, 2.2vw, 1.45rem);
  line-height: 1.62;
  color: #f1f5f9;
  font-weight: 500;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .om-oss-mission__text {
    margin-inline: 0;
  }
}

@media (max-width: 767px) {
  .om-oss-mission__text {
    margin-inline: auto;
  }
}

.om-oss-mission__lead {
  margin: 1.15rem 0 0;
  max-width: 34rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #94a3b8;
}

@media (min-width: 768px) {
  .om-oss-mission__lead {
    margin-inline: 0;
  }
}

@media (max-width: 767px) {
  .om-oss-mission__lead {
    margin-inline: auto;
  }
}

.om-oss-mission__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.om-oss-mission__photo-ring {
  position: relative;
  width: 7.5rem;
  height: 7.5rem;
  padding: 3px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(129, 140, 248, 0.85), rgba(56, 189, 248, 0.45), rgba(168, 85, 247, 0.65));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 16px 40px rgba(99, 102, 241, 0.28);
}

.om-oss-mission__photo {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(15, 23, 42, 0.85);
  background: rgba(15, 23, 42, 0.6);
}

.om-oss-mission__caption {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a5b4fc;
}

.om-oss-hero-section .om-oss-hero-scroll {
  position: relative;
  z-index: 2;
}

html.pc-light .om-oss-history-story,
html.pc-light .om-oss-founder-story {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(148, 163, 184, 0.45);
  color: #475569;
}

html.pc-light .om-oss-hero-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(99, 102, 241, 0.12), transparent 34%),
    linear-gradient(135deg, #f8fafc 0%, #eef2ff 48%, #eff6ff 100%) !important;
}

html.pc-light .om-oss-hero-section .om-oss-hero-video {
  opacity: 0.52;
  filter: saturate(1.02) contrast(1.04) brightness(0.88);
}

html.pc-light .om-oss-hero-section .om-oss-hero-video-shade {
  background:
    linear-gradient(135deg, rgba(226, 232, 240, 0.34), rgba(241, 245, 249, 0.56)),
    radial-gradient(circle at 18% 18%, rgba(99, 102, 241, 0.1), transparent 38%);
}

html.pc-light .om-oss-hero-section .om-oss-hero-headline .text-white {
  color: #0f172a !important;
}

html.pc-light .om-oss-hero-section .om-oss-hero-sub {
  color: #334155 !important;
}

html.pc-light .om-oss-hero-section .om-oss-hero-sub2 {
  color: #64748b !important;
}

html.pc-light .om-oss-hero-section .pc-hero-cta a.border-dark-600 {
  color: #475569;
  border-color: rgba(100, 116, 139, 0.45);
  background: rgba(255, 255, 255, 0.55);
}

html.pc-light .om-oss-hero-section .pc-hero-cta a.border-dark-600:hover {
  color: #0f172a;
  border-color: rgba(79, 70, 229, 0.35);
}

html.pc-light .om-oss-hero-section .om-oss-hero-stats {
  border-color: rgba(148, 163, 184, 0.35);
}

html.pc-light .om-oss-hero-section .om-oss-hero-logo {
  border-color: rgba(124, 58, 237, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.78)),
    radial-gradient(circle at 50% 42%, rgba(99, 102, 241, 0.08), transparent 58%);
  box-shadow: 0 20px 48px rgba(79, 70, 229, 0.12);
}

html.pc-light .om-oss-hero-section .om-oss-hero-logo__dots {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(124, 58, 237, 0.16);
}

html.pc-light .om-oss-stat {
  background: rgba(255, 255, 255, 0.78) !important;
  border-color: rgba(148, 163, 184, 0.4) !important;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

html.pc-light .om-oss-lead {
  color: #1e293b;
}

html.pc-light .om-oss-stat-card {
  background: linear-gradient(145deg, rgba(99, 102, 241, 0.08), rgba(255, 255, 255, 0.95));
}

html.pc-light .om-oss-mission {
  background:
    linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(255, 255, 255, 0.96) 52%, rgba(6, 182, 212, 0.06)),
    radial-gradient(circle at 12% 18%, rgba(99, 102, 241, 0.08), transparent 42%);
  border-color: rgba(124, 58, 237, 0.18);
  box-shadow: 0 24px 48px rgba(79, 70, 229, 0.1);
}

html.pc-light .om-oss-mission__text {
  color: #1e293b;
}

html.pc-light .om-oss-mission__lead {
  color: #64748b;
}

html.pc-light .om-oss-mission__caption {
  color: #6d28d9;
}

html.pc-light .om-oss-mission__photo {
  border-color: rgba(255, 255, 255, 0.95);
}

html.pc-light .om-oss-hero-section .om-oss-hero-scroll {
  border-color: rgba(148, 163, 184, 0.35);
}

html.pc-light .om-oss-hero-section .om-oss-hero-scroll a {
  color: #64748b;
}

html.pc-light .om-oss-hero-section .om-oss-hero-scroll a:hover {
  color: #0f172a;
}

.om-oss-founder-grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .om-oss-founder-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
  }
}

.om-oss-founder-story {
  padding: 1.75rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(51, 65, 85, 0.55);
  background: rgba(15, 23, 42, 0.55);
}

@media (min-width: 768px) {
  .om-oss-founder-story {
    padding: 2rem 2.25rem;
  }
}

.om-oss-founder-quote__mark {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 2.75rem;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
  color: rgba(129, 140, 248, 0.55);
}

.om-oss-founder-quote__text {
  margin: 0 0 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  font-style: italic;
  color: #e2e8f0;
}

.om-oss-founder-quote__foot {
  padding-top: 1rem;
  border-top: 1px solid rgba(51, 65, 85, 0.45);
}

.om-oss-founder-aside {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.om-oss-founder-highlight {
  flex: 1;
  padding: 1.1rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(99, 102, 241, 0.22);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(15, 23, 42, 0.65));
}

.om-oss-founder-highlight__n {
  margin: 0 0 0.35rem;
  font-family: var(--font-space-grotesk, "Brygada 1918", system-ui, sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: #c7d2fe;
}

.om-oss-founder-highlight__l {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #94a3b8;
}

.om-oss-comp-card {
  border-color: rgba(51, 65, 85, 0.45);
}

.om-oss-team {
  position: relative;
  overflow: hidden;
}

.om-oss-team::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 12% 20%, rgba(99, 102, 241, 0.14), transparent 55%),
    radial-gradient(ellipse 45% 40% at 88% 75%, rgba(168, 85, 247, 0.1), transparent 50%);
  pointer-events: none;
}

.om-oss-team > .container-custom {
  position: relative;
  z-index: 1;
}

.om-oss-team-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.om-oss-team-divider {
  height: 1px;
  margin: 2.5rem auto;
  width: min(88%, 36rem);
  background: linear-gradient(90deg, transparent, rgba(129, 140, 248, 0.35), transparent);
}

@media (min-width: 768px) {
  .om-oss-team-divider {
    margin: 3rem auto;
  }
}

.om-oss-team-card__grid {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .om-oss-team-card__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 2.75rem;
  }

  .om-oss-team-card--reverse .om-oss-team-card__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }

  .om-oss-team-card--reverse .om-oss-team-card__photo {
    order: 2;
  }

  .om-oss-team-card--reverse .om-oss-team-card__body {
    order: 1;
  }
}

.om-oss-team-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 22rem;
  margin-inline: auto;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(129, 140, 248, 0.28);
  box-shadow:
    0 24px 56px rgba(15, 23, 42, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.om-oss-team-photo__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.om-oss-team-photo__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.55) 0%, transparent 42%);
  pointer-events: none;
}

.om-oss-team-card__body {
  padding: 1.35rem 1.25rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(51, 65, 85, 0.45);
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
  .om-oss-team-card__body {
    padding: 1.75rem 1.65rem;
  }
}

.om-oss-team-card__name {
  margin: 0.35rem 0 0;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  font-family: var(--font-heading, inherit);
  color: #f1f5f9;
  letter-spacing: -0.02em;
}

.om-oss-team-card__role {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #a5b4fc;
}

.om-oss-team-card__lead {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #cbd5e1;
}

.om-oss-team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

.om-oss-team-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #c7d2fe;
  border: 1px solid rgba(129, 140, 248, 0.32);
  background: rgba(99, 102, 241, 0.1);
}

.om-oss-team-stats {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

@media (min-width: 640px) {
  .om-oss-team-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.om-oss-team-stat {
  padding: 0.85rem 0.9rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(51, 65, 85, 0.5);
  background: rgba(30, 41, 59, 0.45);
}

.om-oss-team-stat__n {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #a5b4fc;
}

.om-oss-team-stat__l {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #94a3b8;
}

.om-oss-team-link {
  margin: 1.15rem 0 0;
}

.om-oss-team-link__a {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #a5b4fc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.om-oss-team-link__a:hover {
  color: #c4b5fd;
  text-decoration: underline;
}

html.pc-light .om-oss-team-card__body {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(148, 163, 184, 0.45);
}

html.pc-light .om-oss-team-card__name {
  color: #0f172a;
}

html.pc-light .om-oss-team-card__role {
  color: #6d28d9;
}

html.pc-light .om-oss-team-card__lead {
  color: #475569;
}

html.pc-light .om-oss-team-tag {
  color: #5b21b6;
  border-color: rgba(124, 58, 237, 0.22);
  background: rgba(124, 58, 237, 0.08);
}

html.pc-light .om-oss-team-stat {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.06), rgba(255, 255, 255, 0.95));
  border-color: rgba(148, 163, 184, 0.4);
}

html.pc-light .om-oss-team-stat__n {
  color: #6d28d9;
}

html.pc-light .om-oss-team-stat__l {
  color: #64748b;
}

html.pc-light .om-oss-team-link__a {
  color: #6d28d9;
}

html.pc-light .om-oss-team-link__a:hover {
  color: #5b21b6;
}

html.pc-light .om-oss-team-photo {
  border-color: rgba(124, 58, 237, 0.2);
  box-shadow: 0 20px 48px rgba(79, 70, 229, 0.14);
}

.om-oss-values-section {
  position: relative;
}

.om-oss-values-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 48rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(129, 140, 248, 0.35), transparent);
  pointer-events: none;
}

html.pc-light .om-oss-founder-story {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(148, 163, 184, 0.45);
}

html.pc-light .om-oss-founder-quote__text {
  color: #334155;
}

html.pc-light .om-oss-founder-highlight {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.07), rgba(255, 255, 255, 0.92));
}

/* ===== Subpages (Kontakt, Portfolio, Blog, Us?ugi) ===== */
.subpage-eyebrow {
  margin: 0 auto 0.75rem;
  max-width: fit-content;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(165, 180, 252, 0.95);
  border: 1px solid rgba(99, 102, 241, 0.28);
  background: rgba(99, 102, 241, 0.08);
}

.subpage-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 42rem;
  margin: 2rem auto 0;
}

@media (max-width: 767px) {
  .subpage-trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
    gap: 0.35rem;
    margin-top: 1rem;
  }

  .subpage-trust__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.28rem;
    padding: 0.48rem 0.35rem;
    text-align: center;
    min-height: 4.35rem;
  }

  .subpage-trust__ico-wrap {
    margin: 0;
    width: 1.7rem;
    height: 1.7rem;
    flex-shrink: 0;
  }

  .subpage-trust__svg {
    width: 0.95rem;
    height: 0.95rem;
  }

  .subpage-trust__val {
    font-size: 0.75rem;
    line-height: 1.15;
  }

  .subpage-trust__lbl {
    margin: 0;
    font-size: 0.6rem;
    line-height: 1.15;
  }

  .pc-subpage-hero-viewport .pc-subpage-hero-viewport__inner {
    padding-top: max(0.5rem, calc(4rem + env(safe-area-inset-top, 0px)));
  }

  #pf-hero .pc-subpage-hero-viewport__inner,
  #tj-hero .pc-subpage-hero-viewport__inner,
  #blog-hero .pc-subpage-hero-viewport__inner,
  #kontakt-hero .pc-subpage-hero-viewport__inner {
    padding-top: max(0.35rem, calc(3.75rem + env(safe-area-inset-top, 0px)));
  }

  .pc-subpage-hero-viewport .subpage-eyebrow {
    font-size: 0.6875rem;
    margin-bottom: 0.35rem;
  }

  .pc-subpage-hero-viewport .section-title,
  .pc-subpage-hero-viewport h1 {
    font-size: clamp(1.35rem, 5.5vw, 1.75rem) !important;
    line-height: 1.15;
  }

  .pc-subpage-hero-viewport .text-lg,
  .pc-subpage-hero-viewport .text-xl {
    font-size: 0.8125rem !important;
    line-height: 1.35;
  }
}

.subpage-trust__item {
  padding: 0.85rem 0.75rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(51, 65, 85, 0.45);
  background: rgba(15, 23, 42, 0.45);
  text-align: center;
}

.subpage-trust__ico-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin: 0 auto 0.45rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(99, 102, 241, 0.28);
  background: rgba(99, 102, 241, 0.1);
  color: #a5b4fc;
}

.subpage-trust__svg {
  width: 1.15rem;
  height: 1.15rem;
}

.subpage-trust__emoji {
  display: block;
  font-size: 1.1rem;
  line-height: 1;
}

.subpage-trust__val {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #e2e8f0;
  line-height: 1.25;
}

.subpage-trust__lbl {
  margin: 0.2rem 0 0;
  font-size: 0.6875rem;
  color: #94a3b8;
}

.subpage-social {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(51, 65, 85, 0.45);
}

.subpage-social__heading {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: var(--font-space-grotesk, "Brygada 1918", system-ui, sans-serif);
  color: #f1f5f9;
}

.subpage-social__hint {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  color: #64748b;
}

.subpage-social__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  align-items: start;
}

.subpage-social__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.65rem;
  border-radius: 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #e2e8f0;
  border: 1px solid rgba(51, 65, 85, 0.55);
  background-color: rgba(15, 23, 42, 0.55);
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
  position: relative;
  width: 100%;
  box-shadow: none !important;
  transform: none;
  -webkit-tap-highlight-color: transparent;
  cursor: default;
  user-select: none;
}

button.subpage-social__link {
  cursor: default;
  font-family: inherit;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
}

button.subpage-social__link:disabled {
  opacity: 1;
}

.subpage-social__link::before,
.subpage-social__link::after {
  display: none !important;
  content: none !important;
}

.subpage-social__link:hover,
.subpage-social__link:focus,
.subpage-social__link:focus-visible {
  border-color: rgba(99, 102, 241, 0.45);
  color: #f8fafc;
  background-color: rgba(99, 102, 241, 0.12);
  box-shadow: none !important;
  transform: none;
  outline: none;
  --tw-ring-shadow: 0 0 #0000 !important;
  --tw-ring-offset-shadow: 0 0 #0000 !important;
}

.subpage-social__link:focus-visible {
  outline: 2px solid rgba(99, 102, 241, 0.55);
  outline-offset: 0;
}

.subpage-social__ico {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.subpage-social--compact .subpage-social__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.subpage-social--compact .subpage-social__link {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  justify-content: center;
}

.subpage-cta-band {
  padding: 0 0 4rem;
}

.subpage-cta {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 1.5rem;
  border-radius: 1.25rem;
  text-align: center;
  border: 1px solid rgba(99, 102, 241, 0.25);
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.14), rgba(15, 23, 42, 0.85));
}

.subpage-cta--promo {
  border-color: rgba(245, 158, 11, 0.22);
  background: linear-gradient(145deg, rgba(79, 70, 229, 0.16), rgba(15, 23, 42, 0.92));
}

.subpage-cta__inner {
  position: relative;
  z-index: 1;
}

.subpage-cta__glow {
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 12rem;
  height: 12rem;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.12);
  filter: blur(40px);
  pointer-events: none;
}

.subpage-cta__title {
  position: relative;
  z-index: 1;
  margin: 0 0 0.5rem;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  font-family: var(--font-space-grotesk, "Brygada 1918", system-ui, sans-serif);
  color: #f8fafc;
}

.subpage-cta__sub {
  position: relative;
  z-index: 1;
  margin: 0 auto 1.25rem;
  max-width: 32rem;
  font-size: 0.9375rem;
  color: #94a3b8;
}

.subpage-process-wrap {
  padding-top: 0;
}

.subpage-process-wrap--spaced {
  padding-top: 2.5rem;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .subpage-process-wrap--spaced {
    padding-top: 3.25rem;
  }
}

.subpage-process {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .subpage-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .subpage-process--3col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.subpage-process__step {
  display: flex;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(51, 65, 85, 0.45);
  background: rgba(15, 23, 42, 0.45);
}

.subpage-process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #c7d2fe;
  border: 1px solid rgba(99, 102, 241, 0.35);
  background: rgba(99, 102, 241, 0.12);
}

.subpage-process__title {
  margin: 0 0 0.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #f1f5f9;
}

.subpage-process__desc {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #94a3b8;
}

.subpage-filter-btn {
  padding: 0.45rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border: 1px solid rgba(51, 65, 85, 0.55);
  background: rgba(15, 23, 42, 0.45);
  color: #94a3b8;
  transition: all 0.2s ease;
  cursor: pointer;
}

.subpage-filter-btn:hover {
  border-color: rgba(99, 102, 241, 0.35);
  color: #e2e8f0;
}

.subpage-filter-btn--on {
  background: rgba(99, 102, 241, 0.9);
  border-color: rgba(99, 102, 241, 0.9);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(99, 102, 241, 0.55);
}

.subpage-guarantee {
  display: grid;
  gap: 0.65rem;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(34, 197, 94, 0.2);
  background: rgba(34, 197, 94, 0.05);
}

@media (min-width: 768px) {
  .subpage-guarantee {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.subpage-guarantee__item {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.8125rem;
  color: #cbd5e1;
}

.subpage-guarantee__item span {
  color: #4ade80;
  font-weight: 700;
  flex-shrink: 0;
}

.subpage-newsletter__inner {
  padding: 2rem 1.5rem;
  border-radius: 1.25rem;
  text-align: center;
  border: 1px dashed rgba(99, 102, 241, 0.35);
  background: rgba(15, 23, 42, 0.4);
}

.subpage-newsletter__title {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-space-grotesk, "Brygada 1918", system-ui, sans-serif);
}

.subpage-newsletter__sub {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

.subpage-newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 24rem;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .subpage-newsletter__form {
    flex-direction: row;
  }
}

.subpage-newsletter__input {
  flex: 1;
  padding: 0.65rem 0.85rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(51, 65, 85, 0.55);
  background: rgba(15, 23, 42, 0.65);
  color: #e2e8f0;
  font-size: 0.875rem;
}

.subpage-newsletter__msg {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  min-height: 1.25rem;
}

.subpage-blog-featured__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e0e7ff;
  border: 1px solid rgba(99, 102, 241, 0.4);
  background: rgba(99, 102, 241, 0.25);
  backdrop-filter: blur(6px);
}

.subpage-blog-featured__card img,
.subpage-blog-card img {
  display: block;
}

@media (max-width: 767px) {
  .subpage-blog-featured__media {
    min-height: 15.5rem !important;
  }
}

.subpage-info-card {
  border-color: rgba(51, 65, 85, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.subpage-info-card .subpage-checklist {
  width: 100%;
  max-width: 20rem;
  margin-inline: auto;
}

.subpage-checklist li {
  justify-content: center;
}

.subpage-info-card h3 {
  width: 100%;
}

/* Kontakt - mniejszy odst?p po sekcji procesu */
.kontakt-process-tight.subpage-process-wrap--spaced {
  padding-bottom: 0.5rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .kontakt-process-tight.subpage-process-wrap--spaced {
    padding-top: 2rem;
    padding-bottom: 0.75rem;
  }
}

.kontakt-process-tight .subpage-process__step {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.kontakt-process-tight .subpage-process__step > div {
  width: 100%;
}

.kontakt-body-section {
  padding-top: clamp(1rem, 2.5vw, 1.75rem);
}

.kontakt-quick-quote {
  padding: clamp(0.75rem, 2vw, 1.25rem) 0 clamp(0.5rem, 1.5vw, 1rem);
  position: relative;
  z-index: 5;
}

.kontakt-quick-quote__card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1rem, 2.5vw, 2rem);
}

.kontakt-quick-quote__head {
  margin-bottom: 1.25rem;
  text-align: center;
}

.kontakt-quick-quote__eyebrow {
  color: rgb(196 181 253 / 0.92);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.kontakt-quick-quote__title {
  color: #fff;
  font-family: var(--font-space-grotesk, "Brygada 1918", system-ui, sans-serif);
  font-size: clamp(1.125rem, 2.2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.25;
}

.kontakt-quick-quote__grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kontakt-quick-quote__btn {
  align-items: center;
  background: rgb(15 23 42 / 0.55);
  border: 1px solid rgb(51 65 85 / 0.65);
  border-radius: 0.875rem;
  color: #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  justify-content: center;
  min-height: 6.5rem;
  padding: 1rem 0.75rem;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.kontakt-quick-quote__btn:hover,
.kontakt-quick-quote__btn:focus-visible {
  background: rgb(30 41 59 / 0.75);
  border-color: rgb(139 92 246 / 0.55);
  color: #fff;
  transform: translateY(-2px);
}

.kontakt-quick-quote__ico-wrap {
  color: rgb(167 139 250 / 0.95);
}

.kontakt-quick-quote__ico-wrap svg {
  width: 1.5rem;
  height: 1.5rem;
}

.kontakt-quick-quote__btn-label {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25;
  font-family: var(--font-space-grotesk, "Brygada 1918", system-ui, sans-serif);
}

@media (max-width: 1023px) {
  .kontakt-quick-quote__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 479px) {
  .kontakt-quick-quote__grid {
    grid-template-columns: 1fr;
  }

  .kontakt-quick-quote__btn {
    flex-direction: row;
    justify-content: flex-start;
    min-height: 0;
    padding: 0.875rem 1rem;
    text-align: left;
  }
}

html.pc-light .kontakt-quick-quote__card {
  border-color: rgb(226 232 240 / 0.95);
}

html.pc-light .kontakt-quick-quote__title {
  color: rgb(15 23 42);
}

html.pc-light .kontakt-quick-quote__btn {
  background: rgb(248 250 252);
  border-color: rgb(226 232 240);
  color: rgb(30 41 59);
}

html.pc-light .kontakt-quick-quote__btn:hover,
html.pc-light .kontakt-quick-quote__btn:focus-visible {
  background: rgb(241 245 249);
  border-color: rgb(139 92 246 / 0.45);
  color: rgb(15 23 42);
}

/* Estymator cen na Kontakt � style niezale?ne od JS */
.kontakt-estimator {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.kontakt-estimator #est-type {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.kontakt-estimator .est-btn {
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
  text-align: center;
}

.kontakt-estimator .est-btn:hover,
.kontakt-estimator .est-btn:focus {
  border-color: #6366f1;
  background: rgba(99, 102, 241, 0.08);
  outline: none;
}

html.pc-light .kontakt-estimator {
  border-color: rgb(226 232 240 / 0.95);
}

html.pc-light .kontakt-estimator .est-btn {
  background: rgb(248 250 252);
  border-color: rgb(226 232 240);
  color: rgb(30 41 59);
}

html.pc-light .kontakt-estimator .est-btn:hover,
html.pc-light .kontakt-estimator .est-btn:focus {
  border-color: rgb(99 102 241 / 0.55);
  background: rgb(238 242 255);
}

.kontakt-process-before-footer {
  padding-top: clamp(1.5rem, 3vw, 2.5rem) !important;
  padding-bottom: clamp(1.5rem, 3vw, 2.75rem) !important;
}

.kontakt-process-after-form {
  padding-top: clamp(1.25rem, 3vw, 2.5rem) !important;
}

.kontakt-layout {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.kontakt-layout__form-row1,
.kontakt-layout__aside-top {
  min-height: 0;
}

#kontakt-success {
  scroll-margin-top: calc(var(--pc-header-offset, 5.75rem) + 1rem);
}

.kontakt-form-card {
  display: flex;
  flex-direction: column;
  border-color: rgba(99, 102, 241, 0.22);
  flex: 0 0 auto;
}

.kontakt-form-card__fields--compact .pc-float-field--area .pc-float-field__input--area {
  min-height: 5.5rem;
}

/* Checkbox - pro?ba o telefon */
.kontakt-call-back {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-top: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(15, 23, 42, 0.32);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.kontakt-call-back:hover {
  border-color: rgba(129, 140, 248, 0.38);
  background: rgba(99, 102, 241, 0.07);
}

.kontakt-call-back:focus-within {
  border-color: rgba(129, 140, 248, 0.45);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

.kontakt-call-back__control {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.1rem;
}

.kontakt-call-back__input {
  width: 1.125rem;
  height: 1.125rem;
  margin: 0;
  accent-color: #6366f1;
  cursor: pointer;
}

.kontakt-call-back__text {
  flex: 1;
  min-width: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(203, 213, 225, 0.95);
}

html.pc-light .kontakt-call-back {
  background: rgba(248, 250, 252, 0.95);
  border-color: rgba(148, 163, 184, 0.38);
}

html.pc-light .kontakt-call-back:hover {
  border-color: rgba(99, 102, 241, 0.35);
  background: rgba(99, 102, 241, 0.06);
}

html.pc-light .kontakt-call-back__text {
  color: #334155;
}

.kontakt-contact-icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  color: rgba(129, 140, 248, 0.9);
}

.kontakt-details-card--merged {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.15rem 1.25rem 1.1rem;
  height: 100%;
  min-height: 0;
}

.kontakt-details-card__content {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 0;
}

.kontakt-details-card__heading {
  margin: 0;
  font-family: var(--font-space-grotesk, 'Brygada 1918', system-ui, sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  color: #f8fafc;
}

.kontakt-details-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.8125rem;
  color: #e2e8f0;
}

.kontakt-details-list__row {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}

.kontakt-details-list__row:nth-child(2),
.kontakt-details-list__row:nth-child(3) {
  align-items: center;
}

.kontakt-details-list__main {
  margin: 0;
  line-height: 1.35;
}

.kontakt-details-list__sub {
  margin: 0.1rem 0 0;
  font-size: 0.75rem;
  color: #94a3b8;
}

.kontakt-details-list__link {
  color: inherit;
  text-decoration: none;
}

.kontakt-details-card--merged .subpage-social {
  margin-top: 0.15rem;
}

.kontakt-details-card--merged .subpage-social__title {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

.kontakt-details-card__split {
  height: 1px;
  margin: 0.15rem 0 0.05rem;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.35), transparent);
}

.kontakt-details-card__extras {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem 1rem;
}

.kontakt-details-mini__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-space-grotesk, 'Brygada 1918', system-ui, sans-serif);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
  color: #f1f5f9;
}

.kontakt-details-mini__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  font-size: 0.72rem;
  line-height: 1.35;
  color: #cbd5e1;
}

.kontakt-details-mini__list li {
  display: flex;
  gap: 0.35rem;
  align-items: flex-start;
}

.kontakt-details-mini__check {
  flex-shrink: 0;
  color: #4ade80;
  font-size: 0.68rem;
  line-height: 1.35;
}

.kontakt-details-mini__call {
  margin-top: 0.45rem;
  width: 100%;
}

.kontakt-details-card__map-wrap {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  margin-top: 0.35rem;
}

.kontakt-map-card {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 11.5rem;
  overflow: hidden;
  border-radius: 0.65rem;
  border: 1px solid rgba(99, 102, 241, 0.2);
  background:
    linear-gradient(135deg, rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 0.88)),
    url('https://staticmap.openstreetmap.de/staticmap.php?center=59.225,10.300&zoom=12&size=640x400&markers=59.225,10.300,red') center / cover no-repeat;
}

.kontakt-map-card__iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  border-radius: inherit;
  background: transparent;
}

.kontakt-map-card__link {
  line-height: 1.2;
  white-space: nowrap;
  max-width: calc(100% - 0.75rem);
}

@media (max-width: 1023px) {
  .kontakt-map-card {
    aspect-ratio: 16 / 11;
    min-height: 14.5rem;
  }
}

@media (min-width: 640px) {
  .kontakt-details-card__extras {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .kontakt-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    grid-template-rows: auto;
    gap: 0 2.5rem;
    align-items: stretch;
  }

  .kontakt-layout__form-row1 {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }

  .kontakt-layout__aside-top {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .kontakt-details-card--merged {
    flex: 1 1 auto;
  }

  .kontakt-details-card__map-wrap {
    min-height: 6.75rem;
  }

  .kontakt-map-card {
    min-height: 6.75rem;
  }

  .kontakt-form-card {
    flex: 1 1 auto;
    min-height: 0;
  }
}

html.pc-light .subpage-trust__item,
html.pc-light .subpage-process__step,
html.pc-light .subpage-newsletter__inner {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(148, 163, 184, 0.45);
}

html.pc-light .subpage-social__link {
  background-color: rgba(248, 250, 252, 0.95);
  border-color: rgba(148, 163, 184, 0.45);
  color: #334155;
}

html.pc-light .subpage-social__link:hover,
html.pc-light .subpage-social__link:focus,
html.pc-light .subpage-social__link:focus-visible {
  background-color: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.35);
  color: #1e293b;
}

html.pc-light .kontakt-details-card__heading,
html.pc-light .kontakt-details-mini__title {
  color: #0f172a;
}

html.pc-light .kontakt-details-list,
html.pc-light .kontakt-details-mini__list {
  color: #334155;
}

html.pc-light .kontakt-details-list__sub {
  color: #64748b;
}

html.pc-light .subpage-trust__val,
html.pc-light .subpage-process__title,
html.pc-light .subpage-cta__title {
  color: #1e293b;
}

html.pc-light .subpage-cta {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(255, 255, 255, 0.95));
}

/* Us?ugi - nawigacja kategorii w hero (szeroko?? jak 3 kafelki trust strip) */
.tj-cat-nav-wrap {
  width: 100%;
  max-width: 42rem;
  margin: 2rem auto 0;
}

@media (max-width: 640px) {
  .tj-cat-nav-wrap {
    max-width: 16rem;
  }
}

.tj-cat-nav__toggle-label {
  gap: 1rem;
  min-width: 0;
}

.tj-cat-nav__toggle-text {
  line-height: 1.35;
}

/* Us?ugi - quick links hero */
.tj-quick-link {
  gap: 1rem;
}

.tj-quick-link__icon {
  margin-right: 0.15rem;
}

.tj-quick-link__label {
  padding-right: 0.15rem;
}

.tj-quick-links-bar {
  max-width: 52rem;
  margin-inline: auto;
}

.tj-cat-nav__panel {
  margin-top: 0.5rem;
  padding: 0.45rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(51, 65, 85, 0.45);
  background: rgba(15, 23, 42, 0.55);
}

.tj-cat-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.tj-cat-nav__item {
  justify-content: flex-start;
}

@keyframes tj-service-highlight {
  0%,
  100% {
    box-shadow: none;
    border-color: rgba(51, 65, 85, 0.45);
  }
  18%,
  55% {
    box-shadow:
      0 0 0 2px rgba(99, 102, 241, 0.55),
      0 0 36px rgba(99, 102, 241, 0.28);
    border-color: rgba(99, 102, 241, 0.55);
  }
}

.tj-service-block--highlight {
  animation: tj-service-highlight 1.6s ease-out 3;
}

.sov-card__desc {
  min-height: 4.75rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .sov-card__desc {
    min-height: 5.25rem;
  }
}

.sov-card__price {
  margin-top: 1.5rem;
}

.sov-card__list {
  flex: 1;
}

.sov-card__list--tight {
  margin-top: -0.85rem;
}

.sov-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  align-self: flex-start;
  padding: 0.62rem 1.15rem;
  border-radius: 9999px;
  border: 1px solid rgba(99, 102, 241, 0.35);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.18), rgba(139, 92, 246, 0.1));
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 18px rgba(99, 102, 241, 0.12);
}

.sov-card__cta:hover {
  transform: translateY(-1px);
  border-color: rgba(129, 140, 248, 0.55);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.28), rgba(139, 92, 246, 0.16));
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
  color: #fff;
}

.sov-card__cta span[aria-hidden="true"] {
  transition: transform 0.2s ease;
}

.sov-card__cta:hover span[aria-hidden="true"] {
  transform: translateX(3px);
}

.pc-aivis-logos {
  max-width: 58rem;
  margin-inline: auto;
}

.pc-aivis-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 10.5rem;
  height: 3.5rem;
  opacity: 0.88;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.pc-aivis-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.pc-aivis-logo img {
  display: block;
  height: 3.15rem;
  width: auto;
  max-width: 10.5rem;
  object-fit: contain;
}

/* Logotypy AI - jasna pastylka na ciemnym motywie (PNG/JPG z ciemnym t?em) */
html:not(.pc-light) #section-aivis .pc-aivis-logo {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 0.35rem 0.85rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.24);
}

html:not(.pc-light) #section-aivis .pc-aivis-logo img {
  filter: none;
  opacity: 1;
}

html.pc-light #section-aivis {
  background: var(--pc-bg, #fafafa);
  border-color: rgba(15, 23, 42, 0.08);
}

/* Jasny motyw ? bia?e pastylki z obw?dk? jak w ciemnym (wszystkie logotypy) */
html.pc-light #section-aivis .pc-aivis-logo {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 0.75rem;
  padding: 0.35rem 0.85rem;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.1);
}

html.pc-light #section-aivis .pc-aivis-logo img {
  filter: none;
  opacity: 1;
}

.tj-service-block {
  scroll-margin-top: calc(var(--pc-header-offset, 5.75rem) + 1.5rem);
}

.tj-hero-with-marquee {
  display: flex;
  flex-direction: column;
  padding-bottom: 0 !important;
}

.pf-hero-with-search {
  display: flex;
  flex-direction: column;
  padding-bottom: 0 !important;
}

.kontakt-hero-video {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  padding-bottom: 0 !important;
}

.tj-hero-with-marquee .pc-hero-viewport__inner,
.tj-hero-with-marquee .pc-subpage-hero-viewport__inner {
  padding-bottom: 1.75rem;
}

.pf-hero-with-search .pc-hero-viewport__inner,
.pf-hero-with-search .pc-subpage-hero-viewport__inner {
  padding-bottom: 1.75rem;
}

.kontakt-hero-video .pc-hero-viewport__inner,
.kontakt-hero-video .pc-subpage-hero-viewport__inner {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 1.75rem;
}

@media (min-width: 768px) {
  .tj-hero-with-marquee .pc-hero-viewport__inner,
  .tj-hero-with-marquee .pc-subpage-hero-viewport__inner {
    padding-bottom: 2.25rem;
  }

  .pf-hero-with-search .pc-hero-viewport__inner,
  .pf-hero-with-search .pc-subpage-hero-viewport__inner {
    padding-bottom: 2.25rem;
  }

  .kontakt-hero-video .pc-hero-viewport__inner,
  .kontakt-hero-video .pc-subpage-hero-viewport__inner {
    padding-bottom: 2.25rem;
  }
}

@keyframes tj-service-row-highlight {
  0%,
  100% {
    box-shadow: none;
    border-color: rgba(51, 65, 85, 0.45);
  }
  20%,
  55% {
    box-shadow:
      0 0 0 2px rgba(99, 102, 241, 0.5),
      0 0 28px rgba(99, 102, 241, 0.22);
    border-color: rgba(99, 102, 241, 0.5);
  }
}

.tj-service-row--highlight {
  animation: tj-service-row-highlight 1.6s ease-out 3;
}

@keyframes tj-order-pulse {
  0%,
  100% {
    transform: none;
    box-shadow: none;
  }
  25%,
  60% {
    transform: scale(1.04);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.45);
  }
}

.tj-order--highlight {
  animation: tj-order-pulse 1.6s ease-out 3;
}

.tj-roi-badge__svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

/* Portfolio - siatka projekt?w (naprawa bia?ego paska przy hover na 2. rz?dzie) */
#pf-grid {
  position: relative;
  isolation: isolate;
}

.pf-card-wrap {
  position: relative;
  z-index: 0;
  overflow: visible;
}

.pf-card-wrap:hover,
.pf-card-wrap:focus-within {
  z-index: 12;
}

.pf-portfolio-card {
  position: relative;
  background-color: rgba(15, 23, 42, 0.72);
}

html.pc-light .pf-portfolio-card {
  background-color: rgba(255, 255, 255, 0.96) !important;
}

.pf-portfolio-card .tj-web-lb,
.pf-portfolio-card .tj-web-lb:focus-visible {
  outline: none;
  box-shadow: none;
}

.pf-result-stats.subpage-trust {
  margin: 0;
  max-width: none;
  gap: 0.4rem;
}

.pf-result-stats.subpage-trust--card .subpage-trust__item {
  padding: 0.5rem 0.35rem;
}

.pf-result-stats.subpage-trust--card .subpage-trust__ico-wrap {
  width: 1.85rem;
  height: 1.85rem;
  margin-bottom: 0.35rem;
}

.pf-result-stats.subpage-trust--card .subpage-trust__svg {
  width: 0.95rem;
  height: 0.95rem;
}

.pf-result-stats.subpage-trust--card .subpage-trust__val {
  font-size: 0.6875rem;
  line-height: 1.2;
}

.pf-result-stats.subpage-trust--case {
  margin-top: 0;
  max-width: 48rem;
}

.pf-result-stats.subpage-trust--case .subpage-trust__item {
  padding: 1rem 0.75rem;
}

.pf-result-stats.subpage-trust--case .subpage-trust__lbl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.pf-result-tip {
  position: relative;
  cursor: help;
  outline: none;
}

.pf-result-tip:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(99, 102, 241, 0.45);
  border-radius: 0.65rem;
}

.pf-result-tip__bubble {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.45rem);
  transform: translateX(-50%) translateY(4px);
  z-index: 30;
  min-width: 9.5rem;
  max-width: 13.5rem;
  padding: 0.45rem 0.6rem;
  border-radius: 0.55rem;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(99, 102, 241, 0.35);
  color: #e2e8f0;
  font-size: 0.625rem;
  line-height: 1.35;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.pf-result-tip__bubble::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(99, 102, 241, 0.35);
}

@media (hover: hover) and (pointer: fine) {
  .pf-result-tip:hover .pf-result-tip__bubble,
  .pf-result-tip:focus-visible .pf-result-tip__bubble {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .pf-result-tip.pf-result-tip--open .pf-result-tip__bubble {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}

@media (hover: none), (pointer: coarse) {
  .pf-result-tip__bubble {
    display: none !important;
  }

  .pf-result-tip {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .pf-result-tip.pf-result-tip--open {
    box-shadow: inset 0 0 0 2px rgba(99, 102, 241, 0.5);
    border-radius: 0.65rem;
    background: rgba(99, 102, 241, 0.1);
  }
}

.pf-result-tip-popover {
  position: fixed;
  z-index: 280;
  max-width: min(17rem, calc(100vw - 1.5rem));
  padding: 0.55rem 0.7rem;
  border-radius: 0.65rem;
  background: rgba(15, 23, 42, 0.97);
  border: 1px solid rgba(99, 102, 241, 0.4);
  color: #e2e8f0;
  font-size: 0.6875rem;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
  box-shadow:
    0 10px 28px rgba(2, 6, 23, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  pointer-events: auto;
  opacity: 0;
  transform: translate(-50%, -100%) scale(0.96);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  will-change: transform, opacity;
}

.pf-result-tip-popover[data-placement='bottom'] {
  transform: translate(-50%, 0) scale(0.96);
}

.pf-result-tip-popover.is-visible {
  opacity: 1;
  transform: translate(-50%, -100%) scale(1);
}

.pf-result-tip-popover[data-placement='bottom'].is-visible {
  transform: translate(-50%, 0) scale(1);
}

.pf-result-tip-popover__text {
  margin: 0;
}

.pf-portfolio-card .pf-result-stats {
  overflow: visible;
}

.pf-portfolio-card .subpage-trust__item {
  overflow: visible;
}

.pf-graphic-hub-card__ico {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0;
  border-radius: 0.85rem;
  border: 1px solid rgba(99, 102, 241, 0.45);
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(8px);
  box-shadow:
    0 10px 28px rgba(2, 6, 23, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.pf-graphic-hub-card__ico .subpage-trust__svg {
  width: 1.45rem;
  height: 1.45rem;
}

.pf-graphic-hub-card .aspect-video img {
  border: 1px solid rgba(15, 23, 42, 0.55);
}

.pf-graphic-hub-card .aspect-video img:nth-child(1) {
  border-right-width: 0.5px;
  border-bottom-width: 0.5px;
}

.pf-graphic-hub-card .aspect-video img:nth-child(2) {
  border-left-width: 0.5px;
  border-bottom-width: 0.5px;
}

.pf-graphic-hub-card .aspect-video img:nth-child(3) {
  border-right-width: 0.5px;
  border-top-width: 0.5px;
}

.pf-graphic-hub-card .aspect-video img:nth-child(4) {
  border-left-width: 0.5px;
  border-top-width: 0.5px;
}

/* Portfolio - wyszukiwarka */
.pf-filter-panel {
  position: relative;
  z-index: 15;
  margin-top: -2.35rem;
  margin-bottom: 1.25rem;
}

.pc-lightbox-open {
  overflow: hidden;
}

.pc-lightbox-open .pf-filter-panel,
.pc-lightbox-open .pc-subpage-hero-viewport {
  z-index: auto;
}

.pc-image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(2, 6, 23, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pc-image-lightbox.is-open {
  display: flex;
}

.pc-image-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(71, 85, 105, 0.8);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.92);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.pc-image-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-top: -1.375rem;
  border: 1px solid rgba(71, 85, 105, 0.8);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.92);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.pc-image-lightbox__nav:hover {
  background: rgba(30, 41, 59, 0.98);
  border-color: rgba(99, 102, 241, 0.55);
}

.pc-image-lightbox__nav:focus-visible {
  outline: 2px solid rgba(99, 102, 241, 0.75);
  outline-offset: 2px;
}

.pc-image-lightbox__prev {
  left: max(0.75rem, env(safe-area-inset-left, 0px));
}

.pc-image-lightbox__next {
  right: max(0.75rem, env(safe-area-inset-right, 0px));
}

.pc-image-lightbox__counter {
  position: absolute;
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  margin: 0;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(71, 85, 105, 0.75);
  background: rgba(15, 23, 42, 0.88);
  color: #cbd5e1;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.pc-image-lightbox__panel {
  width: min(100%, 64rem);
  max-height: min(88vh, 860px);
  overflow: hidden;
  border: 1px solid rgba(51, 65, 85, 0.75);
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.98);
  box-shadow: 0 28px 90px rgba(2, 6, 23, 0.55);
}

.pc-image-lightbox__img {
  display: block;
  width: 100%;
  max-height: min(78vh, 780px);
  object-fit: contain;
  background: #020617;
}

.pc-image-lightbox__cap {
  margin: 0;
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(51, 65, 85, 0.75);
  color: #cbd5e1;
  font-size: 0.875rem;
  text-align: center;
}

.pc-img-lightbox-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  text-align: left;
}

.pc-img-lightbox-trigger:focus-visible {
  outline: 2px solid rgba(99, 102, 241, 0.65);
  outline-offset: 2px;
}

.pc-case-gallery {
  align-items: stretch;
}

.pc-case-gallery__item {
  height: 100%;
  min-height: 11rem;
}

.pc-case-gallery__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 11rem;
  max-height: 22rem;
  padding: 0.65rem;
  background: #020617;
}

.pc-case-gallery__img {
  display: block;
  max-width: 100%;
  max-height: 20rem;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

@media (min-width: 768px) {
  .pc-case-gallery__frame {
    min-height: 12.5rem;
    max-height: 24rem;
  }

  .pc-case-gallery__img {
    max-height: 22rem;
  }
}

@media (max-width: 639px) {
  .pc-image-lightbox__nav {
    width: 2.35rem;
    height: 2.35rem;
    margin-top: -1.175rem;
    font-size: 1.45rem;
  }
}

/* -- Case study: mockupy urz?dze? (galeria 3? + podgl?d GIF) -- */
.pc-device-mock {
  width: 100%;
  margin-inline: auto;
}

.pc-device-mock__shell {
  position: relative;
  border-radius: 0.85rem;
  padding: 0.45rem;
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 55%, #020617 100%);
  border: 1px solid rgba(71, 85, 105, 0.75);
  box-shadow:
    0 12px 32px rgba(2, 6, 23, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pc-device-mock__screen {
  position: relative;
  overflow: hidden;
  border-radius: 0.45rem;
  background: #020617;
  border: 1px solid rgba(15, 23, 42, 0.95);
}

.pc-device-mock__img,
.pc-device-mock__media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.pc-device-mock__media {
  position: absolute;
  inset: 0;
}

.pc-device-mock__media--gif {
  z-index: 1;
}

.pc-device-mock__base {
  height: 0.45rem;
  margin-top: 0.35rem;
  border-radius: 0 0 0.55rem 0.55rem;
  background: linear-gradient(180deg, #334155, #1e293b);
  border: 1px solid rgba(71, 85, 105, 0.65);
  border-top: none;
}

.pc-device-mock__stand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0.35rem;
}

.pc-device-mock__neck {
  display: block;
  width: 0.55rem;
  height: 1.35rem;
  background: linear-gradient(180deg, #475569, #334155);
  border-radius: 0 0 0.15rem 0.15rem;
}

.pc-device-mock__foot {
  display: block;
  width: 4.5rem;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #475569, #1e293b);
  border: 1px solid rgba(71, 85, 105, 0.65);
}

.pc-device-mock__home {
  width: 2rem;
  height: 0.22rem;
  margin: 0.35rem auto 0;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.45);
}

.pc-device-mock--laptop .pc-device-mock__screen {
  aspect-ratio: 16 / 10;
}

.pc-device-mock--monitor .pc-device-mock__shell {
  padding: 0.5rem 0.5rem 0.35rem;
  border-radius: 0.65rem;
}

.pc-device-mock--monitor .pc-device-mock__screen {
  aspect-ratio: 16 / 9;
}

.pc-device-mock--monitor.pc-case-preview-mock {
  max-width: 42rem;
}

.pc-device-mock--phone {
  max-width: 7.5rem;
  margin-inline: auto;
}

.pc-device-mock--phone .pc-device-mock__shell {
  padding: 0.4rem 0.35rem 0.45rem;
  border-radius: 1.15rem;
}

.pc-device-mock--phone .pc-device-mock__screen {
  aspect-ratio: 9 / 19;
  border-radius: 0.85rem;
}

.pc-device-mock--phone .pc-device-mock__screen::before {
  content: '';
  position: absolute;
  top: 0.28rem;
  left: 50%;
  z-index: 2;
  width: 28%;
  height: 0.22rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
}

.pc-device-mock--tablet {
  max-width: 10.5rem;
  margin-inline: auto;
}

.pc-device-mock--tablet .pc-device-mock__shell {
  padding: 0.45rem;
  border-radius: 0.95rem;
}

.pc-device-mock--tablet .pc-device-mock__screen {
  aspect-ratio: 3 / 4;
  border-radius: 0.55rem;
}

.pc-case-gallery--devices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: end;
}

@media (min-width: 640px) {
  .pc-case-gallery--devices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: end;
  }
}

@media (min-width: 1024px) {
  .pc-case-gallery--devices {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pc-case-gallery--devices .pc-device-mock__img {
  object-fit: contain;
  object-position: top center;
  background: #020617;
}

/* Wideo / reklama w mockupie TV - pe?ne wype?nienie ekranu */
.pc-case-gallery--devices .pc-device-mock--monitor .pc-device-mock__screen {
  position: relative;
}

.pc-case-gallery--devices .pc-device-mock--monitor .pc-device-mock__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #000;
}

.pc-case-gallery--devices .pc-case-gallery__item {
  min-height: 0;
  padding: 0.35rem;
  background: rgba(15, 23, 42, 0.35);
}

.pc-case-gallery--devices .pc-case-gallery__item:hover {
  background: rgba(15, 23, 42, 0.55);
}

.pf-hero-filterbar {
  display: grid;
  grid-template-columns: auto minmax(12rem, 1fr) minmax(12rem, 1fr) minmax(14rem, 1.15fr);
  gap: 0;
  align-items: center;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.86);
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.42);
  backdrop-filter: blur(18px);
}

.pf-portfolio-filterbar {
  margin-top: 0;
}

.pf-hero-filterbar__intro,
.pf-hero-filterbar__field {
  display: flex;
  align-items: center;
  min-height: 3rem;
}

.pf-hero-filterbar__intro {
  gap: 0.75rem;
  padding: 0 1.15rem 0 1rem;
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

.pf-hero-filterbar__icon {
  color: #c4f86e;
  font-size: 1.2rem;
  line-height: 1;
}

.pf-hero-filterbar__field {
  gap: 0.85rem;
  padding: 0 0.8rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.pf-hero-filterbar__field > span {
  color: #f8fafc;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

.pf-hero-filterbar__select {
  width: 100%;
  min-width: 0;
  height: 2.7rem;
  padding: 0 2.4rem 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(45deg, transparent 50%, #94a3b8 50%) right 1.05rem center / 0.42rem 0.42rem no-repeat,
    linear-gradient(135deg, #94a3b8 50%, transparent 50%) right 0.77rem center / 0.42rem 0.42rem no-repeat,
    rgba(2, 6, 23, 0.7);
  color: #f8fafc;
  font-size: 0.9rem;
  font-weight: 700;
  outline: none;
  appearance: none;
}

.pf-hero-filterbar__select:focus {
  border-color: rgba(196, 248, 110, 0.58);
  box-shadow: 0 0 0 3px rgba(196, 248, 110, 0.14);
}

.pf-hero-filterbar__select option {
  color: #020617;
}

.pf-hero-filterbar__search {
  padding-left: 0.8rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.pf-hero-filterbar__search .subpage-search-wrap {
  min-width: 100%;
}

.pf-hero-filterbar__search .subpage-search {
  height: 2.7rem;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.7);
}

.pf-search-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(5rem, 14vh, 9rem);
  padding: 1.25rem 0;
}

.subpage-hero + .pf-search-bridge {
  margin-top: -0.5rem;
}

.subpage-search-wrap {
  position: relative;
}

.subpage-search__submit {
  position: absolute;
  left: 0.35rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  color: #64748b;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.subpage-search__submit:hover,
.subpage-search__submit:focus-visible {
  color: #a5b4fc;
  background: rgba(99, 102, 241, 0.12);
  outline: none;
}

.subpage-search__ico {
  display: inline-flex;
  color: inherit;
  pointer-events: none;
}

.subpage-search__svg {
  width: 1.125rem;
  height: 1.125rem;
}

.subpage-search {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(51, 65, 85, 0.55);
  background: rgba(15, 23, 42, 0.55);
  color: #e2e8f0;
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.subpage-search:focus {
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

html.pc-light .subpage-search {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(148, 163, 184, 0.45);
  color: #1e293b;
}

html.pc-light .pf-hero-filterbar {
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: rgba(2, 6, 23, 0.94) !important;
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.34) !important;
}

html.pc-light .pf-hero-filterbar__intro {
  color: rgba(226, 232, 240, 0.82) !important;
}

html.pc-light .pf-hero-filterbar__icon {
  color: #c4f86e !important;
}

html.pc-light .pf-hero-filterbar__field {
  border-left-color: rgba(255, 255, 255, 0.14) !important;
}

html.pc-light .pf-hero-filterbar__field > span {
  color: #ffffff !important;
}

html.pc-light .pf-hero-filterbar__select {
  border-color: rgba(255, 255, 255, 0.2) !important;
  background:
    linear-gradient(45deg, transparent 50%, #e2e8f0 50%) right 1.05rem center / 0.42rem 0.42rem no-repeat,
    linear-gradient(135deg, #e2e8f0 50%, transparent 50%) right 0.77rem center / 0.42rem 0.42rem no-repeat,
    rgba(15, 23, 42, 0.88) !important;
  color: #ffffff !important;
}

html.pc-light .pf-hero-filterbar__select:focus {
  border-color: rgba(196, 248, 110, 0.65) !important;
  box-shadow: 0 0 0 3px rgba(196, 248, 110, 0.16) !important;
}

html.pc-light .pf-hero-filterbar__select option {
  background: #020617 !important;
  color: #ffffff !important;
}

html.pc-light .pf-hero-filterbar__search {
  border-left-color: rgba(255, 255, 255, 0.14) !important;
}

html.pc-light .pf-hero-filterbar__search .subpage-search {
  background: rgba(15, 23, 42, 0.88) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
}

html.pc-light .pf-hero-filterbar__search .subpage-search::placeholder {
  color: rgba(226, 232, 240, 0.68) !important;
}

html.pc-light .pf-hero-filterbar__search .subpage-search__submit {
  color: rgba(226, 232, 240, 0.8) !important;
}

html.pc-light .pf-hero-filterbar__search .subpage-search__submit:hover,
html.pc-light .pf-hero-filterbar__search .subpage-search__submit:focus-visible {
  color: #ffffff !important;
  background: rgba(196, 248, 110, 0.14) !important;
}

@media (max-width: 980px) {
  .pf-hero-filterbar {
    grid-template-columns: 1fr 1fr;
    border-radius: 1.4rem;
  }

  .pf-hero-filterbar__intro {
    grid-column: 1 / -1;
    justify-content: center;
    padding-bottom: 0.45rem;
  }

  .pf-hero-filterbar__field:nth-of-type(1) {
    border-left: 0;
  }

  .pf-hero-filterbar__search {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .pf-hero-filterbar {
    grid-template-columns: 1fr;
    border-radius: 1.25rem;
    padding: 0.75rem;
  }

  .pf-hero-filterbar__field {
    border-left: 0;
    padding: 0.35rem 0;
  }

  .pf-hero-filterbar__field > span {
    min-width: 6.5rem;
  }
}

/* Kontakt - floating labels + proces */
.pc-float-field {
  position: relative;
}

.pc-float-field__input {
  width: 100%;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(51, 65, 85, 0.65);
  border-radius: 0.85rem;
  padding: 1.15rem 1rem 0.55rem;
  color: #f8fafc;
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pc-float-field__input:focus,
.pc-float-field__input.pc-float-field__input--filled,
.pc-float-field__input:not(:placeholder-shown) {
  border-color: rgba(99, 102, 241, 0.55);
}

.pc-float-field__label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9375rem;
  color: #64748b;
  pointer-events: none;
  transition: transform 0.18s ease, font-size 0.18s ease, color 0.18s ease, top 0.18s ease;
}

.kontakt-auth-banner {
  overflow: hidden;
  border: 1px solid rgba(99, 102, 241, 0.28);
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 12% 10%, rgba(99, 102, 241, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.78), rgba(30, 41, 59, 0.54));
  color: #e2e8f0;
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.18);
  backdrop-filter: blur(14px);
}

.kontakt-auth-banner__inner {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem;
  min-width: 0;
}

.kontakt-auth-banner__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, #38bdf8, #6366f1 58%, #8b5cf6);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(99, 102, 241, 0.22);
}

.kontakt-auth-banner__body {
  min-width: 0;
  flex: 1 1 auto;
}

.kontakt-auth-banner__text {
  margin: 0;
  color: inherit;
  font-size: 0.88rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.kontakt-auth-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.kontakt-auth-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  border-radius: 0.8rem;
  padding: 0.58rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.kontakt-auth-banner__btn:hover {
  transform: translateY(-1px);
}

.kontakt-auth-banner__btn--primary {
  background: linear-gradient(135deg, #38bdf8, #6366f1 58%, #8b5cf6);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(99, 102, 241, 0.22);
}

.kontakt-auth-banner__btn--ghost {
  border: 1px solid rgba(129, 140, 248, 0.32);
  background: rgba(255, 255, 255, 0.05);
  color: #dbeafe;
}

@media (max-width: 420px) {
  .kontakt-auth-banner__inner {
    padding: 0.85rem;
  }

  .kontakt-auth-banner__actions,
  .kontakt-auth-banner__btn {
    width: 100%;
  }
}

.pc-float-field__input:focus + .pc-float-field__label,
.pc-float-field__input.pc-float-field__input--filled + .pc-float-field__label,
.pc-float-field__input:not(:placeholder-shown) + .pc-float-field__label,
.pc-float-field--select .pc-float-field__input:valid + .pc-float-field__label {
  top: 0.55rem;
  transform: translateY(0);
  font-size: 0.6875rem;
  color: #a5b4fc;
}

.pc-float-field--area .pc-float-field__input {
  min-height: 7.5rem;
  padding-top: 1.35rem;
  resize: vertical;
}

.pc-float-field--area .pc-float-field__label {
  top: 1rem;
  transform: none;
}

.pc-float-field--area .pc-float-field__input:focus + .pc-float-field__label,
.pc-float-field--area .pc-float-field__input.pc-float-field__input--filled + .pc-float-field__label,
.pc-float-field--area .pc-float-field__input:not(:placeholder-shown) + .pc-float-field__label {
  top: 0.45rem;
}

.pc-float-field__input--select {
  appearance: none;
  padding-right: 2.25rem;
  background-image: linear-gradient(45deg, transparent 50%, #94a3b8 50%), linear-gradient(135deg, #94a3b8 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

/* Sekcja audytu strony - offset pod fixed header przy kotwicy #website-audit */
#website-audit {
  scroll-margin-top: calc(var(--pc-header-offset, 5.75rem) + 1rem);
}

/* Pole telefonu z wyborem numeru kierunkowego (Europa) */
.pc-float-field--phone .pc-phone-prefix {
  position: absolute;
  left: 1px;
  top: 1px;
  bottom: 1px;
  width: 5.9rem;
  border: none;
  border-right: 1px solid rgba(51, 65, 85, 0.65);
  border-radius: 0.85rem 0 0 0.85rem;
  background: rgba(15, 23, 42, 0.55);
  color: #f8fafc;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0 0.5rem 0 0.75rem;
  outline: none;
  cursor: pointer;
  z-index: 2;
}

.pc-float-field--phone .pc-phone-prefix:focus {
  border-right-color: rgba(99, 102, 241, 0.55);
}

.pc-float-field__input--phone {
  padding-left: 6.6rem;
}

.pc-float-field__label--phone {
  left: 6.6rem;
}

html.pc-light .pc-float-field--phone .pc-phone-prefix {
  background: rgba(241, 245, 249, 0.95);
  color: #0f172a;
  border-right-color: rgba(148, 163, 184, 0.45);
}

.kontakt-process {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .kontakt-process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

.kontakt-process__step {
  padding: 1rem 1.1rem;
}

html.pc-light .pc-float-field__input {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(148, 163, 184, 0.45);
  color: #0f172a;
}

html.pc-light .pc-float-field__input--select {
  background-image:
    linear-gradient(45deg, transparent 50%, #0f172a 50%),
    linear-gradient(135deg, #0f172a 50%, transparent 50%) !important;
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px) !important;
  background-size:
    6px 6px,
    6px 6px !important;
  background-repeat: no-repeat !important;
}

html.pc-light .pc-float-field__label {
  color: #64748b;
}

/* Podstrony z hero viewport - bez dodatkowego paddingu pod fixed header */
#subpage-root.pc-subpage-has-hero-vp {
  padding-top: 0;
}

/* Podstrony - hero na pe?n? wysoko?? viewportu (jak strona g??wna) */
.pc-subpage-hero-viewport {
  box-sizing: border-box;
  min-height: 100dvh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.pc-subpage-hero-viewport .pc-subpage-hero-viewport__inner {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding-top: max(0.4rem, calc(3.25rem + env(safe-area-inset-top, 0px)));
  padding-bottom: clamp(0.5rem, 1.5dvh, 1.25rem);
}

.tj-hero-with-marquee.pc-subpage-hero-viewport,
.pf-hero-with-search.pc-subpage-hero-viewport,
.kontakt-hero-video.pc-subpage-hero-viewport,
.pc-blog-hero.pc-subpage-hero-viewport {
  padding-bottom: 0 !important;
}

.pc-subpage-hero-viewport > .pc-hero-marquee-anchor {
  margin-top: auto;
  flex-shrink: 0;
  position: relative;
  z-index: 20;
}

.pc-subpage-hero-viewport .pc-subpage-hero-viewport__inner {
  min-height: 0;
}

#tj-hero.pc-subpage-hero-viewport,
#pf-hero.pc-subpage-hero-viewport,
#kontakt-hero.pc-subpage-hero-viewport,
#blog-hero.pc-subpage-hero-viewport {
  min-height: 100dvh;
  min-height: 100svh;
}

#tj-hero .pc-subpage-hero-viewport__inner,
#pf-hero .pc-subpage-hero-viewport__inner,
#kontakt-hero .pc-subpage-hero-viewport__inner,
#blog-hero .pc-subpage-hero-viewport__inner {
  justify-content: center;
  padding-top: max(0.4rem, calc(3.25rem + env(safe-area-inset-top, 0px)));
  padding-bottom: clamp(0.5rem, 1.5dvh, 1.25rem);
}

#kontakt-hero .pc-subpage-hero-viewport__inner,
#blog-hero .pc-subpage-hero-viewport__inner,
#pf-hero .pc-subpage-hero-viewport__inner,
#tj-hero .pc-subpage-hero-viewport__inner {
  padding-bottom: clamp(0.25rem, 0.9dvh, 0.75rem);
}

#kontakt-hero .pc-subpage-hero-viewport__inner {
  padding-top: max(0.15rem, calc(2.45rem + env(safe-area-inset-top, 0px)));
}

#kontakt-hero-marquee-root {
  display: block !important;
  min-height: 5.25rem;
}

#kontakt-company-marquee {
  display: block !important;
}

.pc-blog-marquee-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  margin: 0 0.28rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: rgba(226, 232, 240, 0.88);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.pc-blog-marquee-tag:hover,
.pc-blog-marquee-tag.is-active {
  border-color: rgba(129, 140, 248, 0.62);
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.24), rgba(99, 102, 241, 0.3));
  color: #ffffff;
  transform: translateY(-1px);
}

.pc-blog-marquee-tag--dim {
  color: rgba(148, 163, 184, 0.88);
}

html.pc-light #blog-tags-marquee {
  background-color: #e8ecf5 !important;
  border-color: #cbd5e1 !important;
}

html.pc-light #blog-tags-marquee .pc-blog-marquee-tag {
  color: #0f172a;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

html.pc-light #blog-tags-marquee .pc-blog-marquee-tag:hover,
html.pc-light #blog-tags-marquee .pc-blog-marquee-tag.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border-color: rgba(79, 70, 229, 0.5);
}

html.pc-light #blog-tags-marquee .marquee-edge-fade.bg-gradient-to-r {
  background: linear-gradient(to right, #e8ecf5, transparent) !important;
}

html.pc-light #blog-tags-marquee .marquee-edge-fade.bg-gradient-to-l {
  background: linear-gradient(to left, #e8ecf5, transparent) !important;
}

html.pc-light .kontakt-auth-banner {
  border-color: rgba(99, 102, 241, 0.18);
  background:
    radial-gradient(circle at 12% 10%, rgba(99, 102, 241, 0.12), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.82));
  color: #334155;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.09);
}

html.pc-light .kontakt-auth-banner__btn--ghost {
  color: #3730a3;
  background: rgba(99, 102, 241, 0.07);
  border-color: rgba(99, 102, 241, 0.24);
}

@media (max-width: 767px) {
  #tj-hero.pc-subpage-hero-viewport,
  #pf-hero.pc-subpage-hero-viewport,
  #kontakt-hero.pc-subpage-hero-viewport,
  #blog-hero.pc-subpage-hero-viewport,
  #om-oss-hero.pc-subpage-hero-viewport {
    min-height: min(100dvh, 100svh);
  }

  #kontakt-hero-marquee-root {
    min-height: 4.35rem;
  }

  #tj-hero .pc-subpage-hero-viewport__inner {
    /* Jak Portfolio (#pf-hero) ? wcze?niej 5rem ucina?o ?Przewi? w d?? */
    padding-top: max(0.35rem, calc(3.75rem + env(safe-area-inset-top, 0px))) !important;
    padding-bottom: clamp(0.25rem, 0.9dvh, 0.75rem) !important;
  }

  #blog-hero .pc-subpage-hero-viewport__inner,
  #om-oss-hero .om-oss-hero-inner {
    padding-top: max(5rem, calc(4.65rem + env(safe-area-inset-top, 0px))) !important;
  }

  #tj-hero .pc-hero-headline .pc-hero-line,
  #pf-hero .pc-hero-headline .pc-hero-line {
    font-size: clamp(1.35rem, 5.5vw, 1.75rem) !important;
    line-height: 1.12;
  }

  #tj-hero .pc-hero-headline,
  #pf-hero .pc-hero-headline {
    margin-bottom: 0.65rem !important;
  }

  #tj-hero .pc-subpage-hero-lead2,
  #pf-hero .pc-subpage-hero-lead2 {
    font-size: 0.75rem;
    margin-top: 0.5rem !important;
  }

  #tj-hero .pc-hero-bottom,
  #pf-hero .pc-hero-bottom {
    flex-shrink: 0;
    margin-top: 0.35rem !important;
    padding-top: 0.25rem !important;
  }

  #tj-hero .pc-hero-bottom a,
  #pf-hero .pc-hero-bottom a {
    margin-top: 0.5rem;
    flex-shrink: 0;
  }

  .om-oss-hero-section {
    min-height: min(100dvh, 100svh);
  }
}

.pf-search-panel .subpage-search-wrap {
  margin-top: 0.15rem;
}

.pf-nda-note {
  max-width: 40rem;
  margin-inline: auto;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

#video-bg-global,
#video-bg-global video {
  pointer-events: none !important;
}

/*
 * Menu glowne - linki dokladnie na srodku okna, niezaleznie od stanu logowania.
 * Kolumny 1fr auto 1fr: boczne sa rowne (wiec srodkowa wypada w osi strony)
 * i nie moga zwezic sie ponizej swojej tresci, wiec przyciski po prawej
 * nigdy nie wchodza pod linki menu.
 */
@media (min-width: 1024px) {
  #site-header > .container-custom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 0.75rem;
  }

  #site-header > .container-custom > a[href='/'],
  #site-header > .container-custom > a[href='/index.html'] {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  #site-header #nav-desktop {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    justify-content: center;
    width: auto;
    max-width: 100%;
  }

  #site-header > .container-custom > .pc-header-actions,
  #site-header > .container-custom > div.hidden.lg\:flex.items-center.gap-2 {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }
}

/*
 * Od 1280px menu stoi dokladnie w osi okna (tak jak wczesniej na stronie glownej).
 * Nizej zostaje uklad kolumnowy, bo na osi okna menu dotykaloby przyciskow po prawej.
 */
@media (min-width: 1280px) {
  #site-header > .container-custom {
    position: relative;
  }

  #site-header #nav-desktop {
    position: absolute;
    /* Rozpietosc na wszystkie kolumny - inaczej "left: 50%" liczy sie wzgledem
       komorki siatki, a nie calego naglowka, i menu ucieka w bok. */
    grid-column: 1 / -1;
    grid-row: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-width: none;
  }
}

/*
 * Do 1599px chowamy „Send brief” (kontakt jest obok jako ikona koperty) - inaczej
 * wysrodkowane menu wchodzi pod przyciski po prawej i linki przestaja byc klikalne.
 */
@media (min-width: 1024px) and (max-width: 1599px) {
  #site-header .pc-header-actions > a.pc-btn-ghost[href*="kontakt"] {
    display: none;
  }

  /* Dlugi e-mail nie moze rozpychac prawej strony w strone menu */
  #site-header .pc-www-crm-scope .pc-user-chip {
    max-width: 13.75rem;
  }
}

/* 1280-1439: lekko ciasniejsze linki, zeby wysrodkowane menu nie dotknelo przyciskow */
@media (min-width: 1280px) and (max-width: 1439px) {
  #site-header #nav-desktop {
    gap: 0;
  }

  #site-header #nav-desktop > .pc-nav-link {
    padding-left: 0.45rem;
    padding-right: 0.45rem;
  }
}

/* Waski desktop: ciasniejsze linki, zeby menu zmiescilo sie miedzy logo a przyciskami */
@media (min-width: 1024px) and (max-width: 1279px) {
  #site-header #nav-desktop {
    gap: 0;
  }

  #site-header #nav-desktop > .pc-nav-link {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    font-size: 0.8rem;
  }
}
/* ===== Jasny motyw - kontrast (na ko?cu pliku, nadpisuje ciemne style powy?ej) ===== */

html.pc-light .pc-promo-pack-banner {
  background: linear-gradient(135deg, rgba(238, 242, 255, 0.98) 0%, rgba(255, 255, 255, 0.99) 42%, rgba(254, 243, 199, 0.4) 100%) !important;
  border-color: rgba(99, 102, 241, 0.32) !important;
  box-shadow: 0 18px 48px -20px rgba(79, 70, 229, 0.16) !important;
}

html.pc-light #pricing.pricing-section--with-promo {
  background:
    radial-gradient(circle at 15% 20%, rgba(99, 102, 241, 0.16), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(6, 182, 212, 0.13), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #eef2ff 46%, #f8fafc 100%) !important;
}

html.pc-light #pricing > .absolute.inset-0 {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(238, 242, 255, 0.44)),
    radial-gradient(circle at 50% 100%, rgba(16, 185, 129, 0.11), transparent 34%) !important;
}

html.pc-light #pricing .pricing-card {
  background: rgba(255, 255, 255, 0.86) !important;
  border-color: rgba(99, 102, 241, 0.18) !important;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08) !important;
}

html.pc-light #pricing .pricing-card h3 {
  color: #0f172a !important;
}

html.pc-light #pricing .pricing-section-title {
  color: #0f172a !important;
  text-shadow: none !important;
}

html.pc-light #pricing .pricing-section-title span {
  background: linear-gradient(92deg, #1d4ed8, #6366f1 42%, #0ea5e9) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}

html.pc-light #pricing .pricing-section-sub {
  color: #475569 !important;
}

html.pc-light .pc-home-section-badge {
  color: #4338ca !important;
  border-color: rgba(99, 102, 241, 0.32) !important;
  background: rgba(99, 102, 241, 0.1) !important;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.12) !important;
}

html.pc-light .pc-top-services-title,
html.pc-light #section-testimonials .pc-ts-title {
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
}

html.pc-light .pc-top-services-title .gradient-text,
html.pc-light #section-testimonials .pc-ts-title .gradient-text,
html.pc-light #pricing .pricing-section-title span {
  background: linear-gradient(92deg, #1d4ed8, #6366f1 42%, #0ea5e9) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}

html.pc-light .pc-top-services-sub,
html.pc-light #section-testimonials .pc-ts-sub {
  color: #475569 !important;
}

html.pc-light #pricing .pricing-card li span:last-child,
html.pc-light #pricing .pricing-card .text-dark-300,
html.pc-light #pricing .pricing-card .text-dark-400 {
  color: #334155 !important;
}

html.pc-light #pricing .pricing-card .gradient-text {
  background: none !important;
  background-image: linear-gradient(135deg, #5551e8, #7c3aed 50%, #0891b2) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  font-weight: 600 !important;
}

html.pc-light .pc-promo-pack-banner__title,
html.pc-light .pc-promo-pack-banner--cta .pc-promo-pack-banner__title,
html.pc-light #section-testimonials .pc-ts-title,
html.pc-light #section-promo-pack .pc-promo-pack-banner__title {
  color: #0f172a !important;
}

html.pc-light .pc-promo-pack-banner__subtitle,
html.pc-light .pc-promo-pack-banner__tag,
html.pc-light #section-testimonials .pc-ts-sub,
html.pc-light #section-ai-demo .aidemo-benefits,
html.pc-light #section-ai-demo .aidemo-benefits li {
  color: #334155 !important;
}

html.pc-light .pc-promo-pack__saving-line {
  background: rgba(22, 163, 74, 0.09) !important;
  border-color: rgba(22, 163, 74, 0.22) !important;
  color: #334155 !important;
}

html.pc-light .pc-promo-pack__saving-line strong {
  color: #15803d !important;
}

html.pc-light .pc-spec-offer-banner {
  background:
    radial-gradient(circle at 18% 20%, rgba(251, 146, 60, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 247, 237, 0.98), rgba(255, 255, 255, 0.98) 46%, rgba(254, 243, 199, 0.78)) !important;
  border-color: rgba(234, 88, 12, 0.34) !important;
  box-shadow: 0 22px 60px rgba(124, 45, 18, 0.14) !important;
}

html.pc-light .pc-spec-offer-badge {
  color: #9a3412 !important;
  background: rgba(255, 237, 213, 0.96) !important;
  border-color: rgba(234, 88, 12, 0.34) !important;
}

html.pc-light .pc-spec-offer-price-box {
  background: linear-gradient(180deg, #ffffff, #fff7ed) !important;
  border-color: rgba(234, 88, 12, 0.28) !important;
  box-shadow: 0 18px 44px rgba(124, 45, 18, 0.12) !important;
}

html.pc-light .pc-spec-offer-price-box .text-dark-400,
html.pc-light .pc-spec-offer-promo {
  color: #7c2d12 !important;
}

html.pc-light .pc-spec-offer-price-box .text-orange-400 {
  color: #ea580c !important;
}

html.pc-light .pc-spec-offer-price-box .gradient-text {
  background: linear-gradient(135deg, #c2410c, #ea580c, #f59e0b) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
}

html.pc-light .pc-final-cta-section {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.84) 0%, rgba(239, 246, 255, 0.88) 48%, rgba(238, 242, 255, 0.82) 100%) !important;
  border-color: rgba(148, 163, 184, 0.45) !important;
}

html.pc-light .pc-final-cta-video {
  display: block;
  opacity: 0.52;
  filter: saturate(1.04) contrast(1.04) brightness(1.06);
}

html.pc-light .pc-final-cta-video-shade {
  display: block;
  background:
    radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(248, 250, 252, 0.9) 46%, rgba(239, 246, 255, 0.8));
}

html.pc-light #section-final-cta .animated-gradient-bg {
  opacity: 0.12 !important;
}

html.pc-light #section-final-cta .pc-promo-pack-banner__badge {
  color: #3730a3 !important;
  background: rgba(255, 255, 255, 0.82) !important;
  border-color: rgba(99, 102, 241, 0.26) !important;
  box-shadow: 0 12px 28px rgba(79, 70, 229, 0.12);
}

html.pc-light #section-final-cta .pc-final-cta-title .gradient-text {
  background: linear-gradient(135deg, #0f172a 0%, #2563eb 52%, #7c3aed 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}

html.pc-light #section-final-cta .pc-final-cta-subtitle {
  color: #334155 !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
}

html.pc-light #section-testimonials .pc-ts-card {
  background: #ffffff !important;
  border-color: #e2e8f0 !important;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.07) !important;
}

html.pc-light #section-testimonials .pc-ts-quote {
  color: #1e293b !important;
}

html.pc-light #section-testimonials .pc-ts-author {
  color: #0f172a !important;
}

html.pc-light #section-testimonials .pc-ts-role {
  color: #64748b !important;
}

html.pc-light #section-testimonials .pc-ts-pill {
  color: #312e81 !important;
  background: rgba(99, 102, 241, 0.1) !important;
  border-color: rgba(79, 70, 229, 0.28) !important;
}

html.pc-light #section-testimonials .pc-ts-pill__ico {
  color: #4f46e5 !important;
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(99, 102, 241, 0.35) !important;
}

html.pc-light #section-testimonials .pc-ts-quote-mark {
  background: rgba(238, 242, 255, 0.95) !important;
  border-color: rgba(99, 102, 241, 0.35) !important;
  color: #4338ca !important;
}

html.pc-light .pc-promo-pack__toggle {
  color: #4338ca !important;
  background: rgba(99, 102, 241, 0.1) !important;
  border-color: rgba(99, 102, 241, 0.35) !important;
}

html.pc-light #section-final-cta .pc-promo-pack-banner__title {
  color: #0f172a !important;
}

html.pc-light #section-final-cta .pc-promo-pack-banner__subtitle,
html.pc-light #section-final-cta .text-dark-300,
html.pc-light #section-final-cta .text-dark-500 {
  color: #475569 !important;
}

html.pc-light .subpage-eyebrow {
  color: #4338ca !important;
  border-color: rgba(99, 102, 241, 0.35) !important;
  background: rgba(99, 102, 241, 0.1) !important;
}

html.pc-light .subpage-filter-btn {
  background: rgba(255, 255, 255, 0.94) !important;
  border-color: rgba(148, 163, 184, 0.55) !important;
  color: #475569 !important;
}

html.pc-light .subpage-filter-btn:hover {
  color: #1e293b !important;
  border-color: rgba(99, 102, 241, 0.4) !important;
}

html.pc-light .subpage-filter-btn--on {
  color: #ffffff !important;
}

html.pc-light .subpage-blog-tag {
  background: rgba(255, 255, 255, 0.94) !important;
  border-color: rgba(99, 102, 241, 0.28) !important;
  color: #4338ca !important;
}

html.pc-light .subpage-blog-featured__badge {
  color: #312e81 !important;
  background: rgba(255, 255, 255, 0.94) !important;
  border-color: rgba(99, 102, 241, 0.35) !important;
}

html.pc-light .subpage-newsletter__title {
  color: #0f172a !important;
}

html.pc-light .subpage-newsletter__sub,
html.pc-light .subpage-newsletter__msg {
  color: #64748b !important;
}

html.pc-light .subpage-newsletter__msg--ok {
  color: #15803d !important;
}

html.pc-light .subpage-newsletter__msg--err {
  color: #b91c1c !important;
}

html.pc-light .subpage-newsletter__input {
  background: #ffffff !important;
  border-color: #cbd5e1 !important;
  color: #0f172a !important;
}

html.pc-light #subpage-root .text-primary-400,
html.pc-light #subpage-root .tj-read-link {
  color: #4338ca !important;
}

html.pc-light .subpage-trust__val {
  color: #1e293b !important;
}

html.pc-light .subpage-trust__lbl {
  color: #64748b !important;
}

html.pc-light .om-oss-stat-card__lbl {
  color: #1e293b !important;
}

html.pc-light .om-oss-stat-card__hint {
  color: #64748b !important;
}

html.pc-light .om-oss-history-points li {
  color: #475569 !important;
}

html.pc-light .om-oss-history-badge {
  color: #4338ca !important;
  background: rgba(99, 102, 241, 0.1) !important;
  border-color: rgba(99, 102, 241, 0.32) !important;
}

html.pc-light .om-oss-founder-highlight__n {
  color: #4338ca !important;
}

html.pc-light .om-oss-founder-highlight__l {
  color: #475569 !important;
}

html.pc-light .om-oss-founder-quote__foot .text-white {
  color: #0f172a !important;
}

html.pc-light .om-oss-eyebrow {
  color: #4338ca !important;
}

html.pc-light .om-oss-eyebrow--light {
  color: #4f46e5 !important;
}

html.pc-light #section-problem .problem-stat-card .text-dark-300,
html.pc-light #section-problem .problem-stat-card .text-dark-400 {
  color: #475569 !important;
}

.problem-stat-card__metric {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-space-grotesk, "Brygada 1918", system-ui, sans-serif);
  font-size: clamp(2.35rem, 4.6vw, 3.45rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

.problem-stat-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(51, 65, 85, 0.55);
  border-radius: 0.85rem;
  background: rgba(15, 23, 42, 0.72);
  flex-shrink: 0;
}

.problem-stat-card__icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

html.pc-light #section-problem .problem-stat-card__icon {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(148, 163, 184, 0.46);
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

html.pc-light #section-problem .problem-stat-card__icon svg {
  opacity: 1;
  filter: drop-shadow(0 1px 4px rgba(15, 23, 42, 0.16));
}

.pc-ai-visibility-card {
  position: relative;
  isolation: isolate;
  max-width: 58rem;
  margin: -2.5rem auto 4rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 2rem;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(15, 23, 42, 0.78) 48%, rgba(2, 6, 23, 0.36) 100%),
    radial-gradient(circle at 15% 12%, rgba(99, 102, 241, 0.24), transparent 42%),
    url("../assets/images/Gify/22.gif") right -2rem center / auto 108% no-repeat,
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.86));
  box-shadow: 0 28px 90px rgba(2, 6, 23, 0.35);
}

.pc-ai-visibility-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0.68)),
    radial-gradient(circle at 78% 42%, rgba(14, 165, 233, 0.24), transparent 34%);
  pointer-events: none;
}

.pc-ai-visibility-card__grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 38px 38px;
  animation: pc-ai-grid-drift 16s linear infinite;
}

.pc-ai-visibility-card__glow {
  position: absolute;
  z-index: -1;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.42;
  animation: pc-ai-glow-pulse 6s ease-in-out infinite;
}

.pc-ai-visibility-card__glow--one {
  top: -6rem;
  right: -4rem;
  background: rgba(99, 102, 241, 0.44);
}

.pc-ai-visibility-card__glow--two {
  bottom: -8rem;
  left: -5rem;
  background: rgba(14, 165, 233, 0.34);
  animation-delay: 1.8s;
}

.pc-ai-visibility-card__content {
  position: relative;
  z-index: 1;
  padding: clamp(1.6rem, 4vw, 3.5rem);
  max-width: 43rem;
  text-shadow: 0 2px 24px rgba(2, 6, 23, 0.95);
}

.pc-ai-visibility-card__eyebrow {
  margin: 0 0 1rem;
  color: #93c5fd;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.pc-ai-visibility-card__headline {
  margin: 0;
  font-family: var(--font-space-grotesk, "Brygada 1918", system-ui, sans-serif);
  font-size: clamp(2.15rem, 7vw, 5.65rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.pc-ai-visibility-card__line {
  display: block;
  opacity: 0;
  transform: translate3d(0, 1.35rem, 0);
  animation: pc-ai-line-in 0.72s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.pc-ai-visibility-card__line--strong {
  --pc-ai-line-opacity: 0.48;
  color: #fff;
}

.pc-ai-visibility-card__line--muted {
  --pc-ai-line-opacity: 1;
  color: #fff;
  animation-delay: 0.18s;
}

.pc-ai-visibility-card__line:nth-child(2) {
  animation-delay: 0.08s;
}

.pc-ai-visibility-card__sub {
  display: grid;
  gap: 0.18rem;
  margin: 1.8rem 0 1.5rem;
  color: rgba(226, 232, 240, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  line-height: 1.25;
}

.pc-ai-visibility-card__sub strong {
  color: #fff;
}

.pc-ai-visibility-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 3rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid rgba(147, 197, 253, 0.34);
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.16);
  color: #dbeafe;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.pc-ai-visibility-card__cta:hover {
  transform: translateY(-2px);
  border-color: rgba(147, 197, 253, 0.62);
  background: rgba(59, 130, 246, 0.24);
}

@media (min-width: 768px) {
  .pc-ai-visibility-card__eyebrow {
    font-weight: 600;
    letter-spacing: 0.16em;
    font-size: 0.68rem;
  }

  .pc-ai-visibility-card__cta {
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.01em;
  }
}

/* Mobile: GIF w tle nie mo?e wychodzi? poza kafelek (szczeg?lnie od lewej) */
@media (max-width: 767px) {
  .pc-ai-visibility-card {
    margin: -0.5rem auto 2.5rem;
    overflow: hidden;
    border-radius: 1.35rem;
    background:
      linear-gradient(90deg, rgba(2, 6, 23, 0.98) 0%, rgba(2, 6, 23, 0.94) 44%, rgba(15, 23, 42, 0.72) 70%, rgba(2, 6, 23, 0.28) 100%),
      radial-gradient(circle at 14% 18%, rgba(99, 102, 241, 0.2), transparent 38%),
      url("../assets/images/Gify/22.gif") right 0 center / auto 58% no-repeat,
      linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.86));
  }

  html.pc-light .pc-ai-visibility-card {
    background:
      linear-gradient(90deg, rgba(15, 23, 42, 0.94) 0%, rgba(15, 23, 42, 0.88) 44%, rgba(30, 41, 59, 0.58) 70%, rgba(255, 255, 255, 0.1) 100%),
      radial-gradient(circle at 14% 18%, rgba(99, 102, 241, 0.18), transparent 38%),
      url("../assets/images/Gify/22.gif") right 0 center / auto 58% no-repeat,
      linear-gradient(135deg, rgba(15, 23, 42, 0.82), rgba(219, 234, 254, 0.36));
  }

  .pc-ai-visibility-card__glow--one {
    right: -7rem;
    opacity: 0.28;
  }

  .pc-ai-visibility-card__glow--two {
    left: auto;
    right: -5rem;
    bottom: -6rem;
    opacity: 0.22;
  }

  .pc-ai-visibility-card__content {
    max-width: 100%;
  }
}

.pc-case-studies-section {
  overflow: hidden;
}

.pc-case-studies-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #93c5fd;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(99, 102, 241, 0.45);
}

.pc-case-studies-section .section-title,
.pc-why-studies-section .section-title {
  font-family: var(--font-space-grotesk, "Brygada 1918", system-ui, sans-serif);
  color: #fff;
  letter-spacing: -0.02em;
}

.pc-case-studies {
  display: grid;
  grid-template-columns: minmax(11.5rem, 0.25fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 1.6rem);
  align-items: stretch;
}

.pc-case-tabs {
  display: grid;
  gap: 0.72rem;
  align-content: start;
}

.pc-case-tab {
  width: 100%;
  min-height: 4.25rem;
  padding: 0.86rem 0.92rem;
  border: 1px solid rgba(99, 102, 241, 0.22);
  border-radius: 0.9rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.76), rgba(30, 41, 59, 0.52));
  color: #cbd5e1;
  text-align: left;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    color 0.24s ease,
    box-shadow 0.24s ease;
}

.pc-case-tab:hover,
.pc-case-tab.is-active {
  transform: translateX(4px);
  border-color: rgba(129, 140, 248, 0.62);
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  box-shadow: 0 16px 38px -24px rgba(99, 102, 241, 0.95);
}

.pc-case-tab__title,
.pc-case-tab__sub {
  display: block;
}

.pc-case-tab__title {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
  font-family: var(--font-space-grotesk, "Brygada 1918", system-ui, sans-serif);
  letter-spacing: -0.015em;
}

.pc-case-tab__sub {
  margin-top: 0.25rem;
  color: currentColor;
  font-size: 0.72rem;
  opacity: 0.72;
  line-height: 1.25;
}

.pc-case-stage {
  display: grid;
  min-width: 0;
}

.pc-case-panel {
  display: none;
  grid-template-columns: minmax(0, 0.74fr) minmax(18rem, 1.08fr);
  gap: clamp(1.1rem, 3vw, 2.3rem);
  align-items: center;
  height: 100%;
  min-height: 0;
  padding: clamp(1.2rem, 3vw, 1.65rem);
  border-radius: 1.8rem;
  border: 1px solid rgba(219, 234, 254, 0.9);
  background:
    radial-gradient(circle at 8% 12%, rgba(99, 102, 241, 0.11), transparent 34%),
    linear-gradient(135deg, #fff, #f8fbff 58%, #eef4ff);
  color: #111827;
  box-shadow: 0 28px 90px rgba(2, 6, 23, 0.3);
}

.pc-case-panel.is-active {
  display: grid;
  animation: pc-case-panel-in 0.45s ease both;
}

.pc-case-panel__copy {
  display: grid;
  grid-template-rows: 1.1rem minmax(3.1rem, auto) 3.3rem auto auto;
  align-content: center;
  min-height: 20rem;
}

.pc-case-panel__brand {
  margin: 0 0 1rem;
  color: #4f46e5;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pc-case-panel__copy h3 {
  margin: 0 0 1rem;
  color: #111827;
  font-family: var(--font-space-grotesk, "Brygada 1918", system-ui, sans-serif);
  font-size: clamp(1.22rem, 2.1vw, 1.82rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.03em;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.pc-case-panel__desc {
  max-width: 33rem;
  color: #374151;
  font-size: clamp(0.82rem, 1.2vw, 0.96rem);
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.pc-case-panel__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  margin: 1.15rem 0;
  max-width: 18rem;
}

.pc-case-panel__metrics strong,
.pc-case-panel__metrics span {
  display: block;
}

.pc-case-panel__metrics strong {
  color: #1e1b4b;
  font-size: clamp(1.35rem, 2.5vw, 2.15rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

@media (min-width: 901px) {
  .pc-case-studies-section:not(.pc-why-studies-section) .pc-case-panel__metrics strong {
    font-size: clamp(1.05rem, 1.45vw, 1.35rem);
    font-weight: 600;
    letter-spacing: -0.02em;
  }

  .pc-case-studies-section:not(.pc-why-studies-section) .pc-case-panel__metrics span {
    font-size: 0.78rem;
    font-weight: 500;
  }
}

.pc-case-panel__metrics span {
  margin-top: 0.35rem;
  color: #4b5563;
  font-size: 0.72rem;
  line-height: 1.35;
}

.pc-case-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  align-self: start;
}

.pc-case-panel__cta,
.pc-case-panel__ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  border-radius: 0.55rem;
  padding: 0.65rem 0.9rem;
  font-size: 0.84rem;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.pc-case-panel__cta {
  gap: 0.7rem;
  background: linear-gradient(135deg, #38bdf8, #6366f1 52%, #8b5cf6);
  color: #fff;
  box-shadow: 0 18px 34px -22px rgba(99, 102, 241, 0.9);
}

.pc-case-panel__ghost {
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: #312e81;
  background: rgba(255, 255, 255, 0.7);
}

.pc-case-panel__media {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 18rem;
  height: auto;
  overflow: hidden;
  border: 0;
  border-radius: 1.15rem;
  background: linear-gradient(135deg, #e2e8f0, #f8fafc);
  cursor: zoom-in;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.pc-case-panel__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s ease;
}

.pc-case-panel__media:hover img {
  transform: scale(1.045);
}

.pc-case-panel__tags {
  position: absolute;
  left: 1rem;
  top: 1rem;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.pc-case-panel__tags .feat-pill {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.74);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0;
  backdrop-filter: blur(10px);
}

@keyframes pc-case-panel-in {
  from {
    opacity: 0;
    transform: translate3d(1rem, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .pc-case-studies {
    grid-template-columns: 1fr;
  }

  .pc-case-tabs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }

  .pc-case-tabs::-webkit-scrollbar {
    display: none;
  }

  .pc-case-tab {
    min-width: 12rem;
    scroll-snap-align: start;
  }

  .pc-case-panel,
  .pc-case-panel.is-active {
    grid-template-columns: 1fr;
  }

  .pc-case-studies-section:not(.pc-why-studies-section) .pc-case-stage {
    min-height: 43rem;
  }

  .pc-case-studies-section:not(.pc-why-studies-section) .pc-case-panel {
    min-height: 43rem;
    align-content: stretch;
  }

  .pc-case-panel__copy {
    grid-template-rows: auto auto auto auto auto;
    min-height: 0;
  }

  .pc-case-panel__media {
    min-height: 14rem;
    max-width: 100%;
    overflow: hidden;
  }

  .pc-case-panel__media img {
    object-fit: cover;
    object-position: center;
    max-width: 100%;
  }

  .pc-why-panel__media {
    max-width: 100%;
    overflow: hidden;
  }

  .pc-why-panel__media-img {
    object-fit: cover;
    object-position: center;
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  .pc-case-studies-section:not(.pc-why-studies-section) .pc-case-stage,
  .pc-case-studies-section:not(.pc-why-studies-section) .pc-case-panel {
    min-height: 38rem;
  }

  .pc-case-studies-section:not(.pc-why-studies-section) .pc-case-panel__copy {
    min-height: 0;
    grid-template-rows: auto auto auto auto auto;
    align-content: start;
  }

  .pc-case-studies-section:not(.pc-why-studies-section) .pc-case-panel__metrics {
    align-self: start;
    margin: 0.85rem 0;
  }

  .pc-case-studies-section:not(.pc-why-studies-section) .pc-case-panel__actions {
    align-self: start;
    margin-bottom: 0;
  }
}

html.pc-light .pc-case-tab {
  border-color: rgba(99, 102, 241, 0.16);
  background: rgba(255, 255, 255, 0.74);
  color: #334155;
}

html.pc-light .pc-case-tab:hover,
html.pc-light .pc-case-tab.is-active {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
}

html.pc-light .pc-case-panel {
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
}

.pc-why-studies-section {
  overflow: hidden;
}

.pc-why-studies {
  align-items: stretch;
}

.pc-why-stage {
  align-self: stretch;
}

.pc-why-panel {
  min-height: 100%;
}

.pc-why-panel__copy {
  grid-template-rows: auto;
  gap: 0.75rem;
  align-content: start;
  min-height: 0;
}

.pc-why-panel__copy .pc-case-panel__brand,
.pc-why-panel__copy h3,
.pc-why-panel__copy .pc-case-panel__desc {
  margin-bottom: 0;
}

.pc-why-panel__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.45rem;
  margin: 0.15rem 0 0;
  align-self: start;
  width: 100%;
}

.pc-why-panel__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.9rem;
  padding: 0.38rem 0.78rem;
  text-align: center;
  border: 1px solid rgba(99, 102, 241, 0.16);
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.08);
  color: #312e81;
  font-size: 0.74rem;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0;
  line-height: 1.25;
  flex: 0 1 auto;
  max-width: 100%;
}

.pc-why-panel__copy .pc-case-panel__actions {
  align-self: start;
  margin-top: 0.15rem;
  min-height: 0;
}

.pc-why-panel__media {
  position: relative;
  display: grid;
  place-items: end center;
  align-content: end;
  gap: 0.45rem;
  aspect-ratio: 4 / 3;
  min-height: 18rem;
  padding: 1.1rem;
  overflow: hidden;
  border-radius: 1.15rem;
  background:
    radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.28), transparent 35%),
    radial-gradient(circle at 72% 76%, rgba(14, 165, 233, 0.18), transparent 36%),
    linear-gradient(135deg, #0f172a, #1e1b4b 52%, #312e81);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.pc-why-panel__media-img,
.pc-why-panel__media-overlay {
  position: absolute;
  inset: 0;
}

.pc-why-panel__media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.58;
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.03);
}

.pc-why-panel__media-overlay {
  background:
    radial-gradient(circle at 25% 20%, rgba(99, 102, 241, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.82));
}

.pc-why-panel__media-grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 34px 34px;
}

.pc-why-panel__media-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(3rem, 6vw, 4.1rem);
  height: clamp(3rem, 6vw, 4.1rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.34);
  color: currentColor;
  backdrop-filter: blur(12px);
}

.pc-why-panel__media-icon svg {
  width: 1.55rem;
  height: 1.55rem;
}

.pc-why-panel__media p {
  position: relative;
  z-index: 1;
  max-width: 90%;
  margin: 0;
  color: #fff;
  font-family: var(--font-space-grotesk, "Brygada 1918", system-ui, sans-serif);
  font-size: clamp(0.95rem, 1.8vw, 1.28rem);
  font-weight: 850;
  line-height: 1.12;
  text-align: center;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

@media (max-width: 900px) {
  .pc-why-panel__copy {
    grid-template-rows: auto;
    min-height: 0;
    gap: 0.65rem;
  }

  .pc-why-panel__chips {
    justify-content: flex-start;
  }

  .pc-why-panel__media {
    min-height: 16rem;
    padding: 1rem;
  }
}

html.pc-light .pc-why-panel__chip {
  border-color: rgba(99, 102, 241, 0.2);
  background: rgba(99, 102, 241, 0.09);
  color: #312e81;
}

html.pc-light .pc-why-panel__media-img {
  opacity: 0.62;
  filter: saturate(1.08) contrast(1.02) brightness(1.04);
}

html.pc-light .pc-why-panel__media-overlay {
  background:
    radial-gradient(circle at 25% 20%, rgba(99, 102, 241, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.74));
}

@keyframes pc-ai-line-in {
  to {
    opacity: var(--pc-ai-line-opacity, 1);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes pc-ai-grid-drift {
  to {
    background-position: 38px 38px;
  }
}

@keyframes pc-ai-glow-pulse {
  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.34;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.5;
  }
}

/* Desktop light - mobile ma w?asne t?o w @media (max-width: 767px) powy?ej */
@media (min-width: 768px) {
  html.pc-light .pc-ai-visibility-card {
    border-color: rgba(99, 102, 241, 0.18);
    background:
      linear-gradient(90deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.56) 47%, rgba(255, 255, 255, 0.16) 100%),
      radial-gradient(circle at 15% 12%, rgba(99, 102, 241, 0.22), transparent 42%),
      url("../assets/images/Gify/22.gif") right -2rem center / auto 108% no-repeat,
      linear-gradient(135deg, rgba(15, 23, 42, 0.82), rgba(219, 234, 254, 0.36));
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
  }
}

html.pc-light .pc-ai-visibility-card::before {
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.42)),
    radial-gradient(circle at 78% 42%, rgba(79, 70, 229, 0.18), transparent 34%);
}

html.pc-light .pc-ai-visibility-card__content {
  border-radius: 1.5rem;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.28), rgba(2, 6, 23, 0.06) 72%, transparent);
  text-shadow: 0 2px 24px rgba(2, 6, 23, 0.86);
}

html.pc-light .pc-ai-visibility-card__grid {
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.07) 1px, transparent 1px);
}

html.pc-light .pc-ai-visibility-card__eyebrow {
  color: #bfdbfe;
}

html.pc-light .pc-ai-visibility-card__headline {
  text-shadow: 0 2px 26px rgba(2, 6, 23, 0.92);
}

html.pc-light .pc-ai-visibility-card__line--strong,
html.pc-light .pc-ai-visibility-card__line--muted {
  color: #fff;
}

html.pc-light .pc-ai-visibility-card__sub strong {
  color: #fff;
}

html.pc-light .pc-ai-visibility-card__line--muted {
  --pc-ai-line-opacity: 1;
}

html.pc-light .pc-ai-visibility-card__sub {
  color: rgba(226, 232, 240, 0.9);
}

html.pc-light .pc-ai-visibility-card__cta {
  border-color: rgba(147, 197, 253, 0.42);
  background: rgba(59, 130, 246, 0.2);
  color: #eff6ff;
}

html.pc-light .pc-ai-visibility-card__cta:hover {
  border-color: rgba(79, 70, 229, 0.46);
  background: rgba(79, 70, 229, 0.16);
}

html.pc-light #hero #hero-bg-video {
  opacity: 0.58 !important;
}

html.pc-light #hero > .absolute.inset-0.bg-dark-950 {
  background-color: rgba(248, 250, 252, 0.28) !important;
}

html.pc-light #video-bg-global > div:last-child {
  background-color: rgba(248, 250, 252, 0.65) !important;
}

/* Ja?niejszy motyw: wideo hero na Us?ugach/Portfolio/Kontakcie ma mocniejszy kontrast pod tekstem. */
html.pc-light #tj-hero video,
html.pc-light #pf-hero video,
html.pc-light .kontakt-hero-video__media {
  opacity: 0.82 !important;
  filter: saturate(1.28) contrast(1.34) brightness(0.64) !important;
}
html.pc-light #tj-hero > .absolute.inset-0.bg-dark-950,
html.pc-light #pf-hero > .absolute.inset-0.bg-dark-950,
html.pc-light .kontakt-hero-video__shade {
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.34), rgba(2, 6, 23, 0.58)),
    radial-gradient(circle at 50% 20%, rgba(37, 99, 235, 0.22), transparent 52%) !important;
}

html.pc-light #tj-hero .subpage-eyebrow,
html.pc-light #pf-hero .subpage-eyebrow,
html.pc-light #kontakt-hero .subpage-eyebrow {
  color: #c4b5fd !important;
  text-shadow: 0 2px 16px rgba(2, 6, 23, 0.78);
}

html.pc-light #tj-hero .section-title,
html.pc-light #tj-hero .section-subtitle,
html.pc-light #pf-hero .section-title,
html.pc-light #pf-hero .section-subtitle,
html.pc-light #kontakt-hero .section-title,
html.pc-light #kontakt-hero .section-subtitle {
  color: #ffffff !important;
  text-shadow: 0 3px 22px rgba(2, 6, 23, 0.82);
}

html.pc-light #tj-hero .text-primary-400,
html.pc-light #pf-hero .text-primary-400,
html.pc-light #kontakt-hero .text-primary-400 {
  color: #93c5fd !important;
}

html.pc-light #hero #hero-bg-video {
  opacity: 0.86 !important;
  filter: saturate(1.05) contrast(1.04) brightness(1.04) !important;
}

html.pc-light #tj-hero video,
html.pc-light #pf-hero video,
html.pc-light #kontakt-hero video,
html.pc-light .kontakt-hero-video__media {
  opacity: 0.94 !important;
  filter: saturate(1.03) contrast(1.03) brightness(1.04) !important;
}

html.pc-light #tj-hero > .absolute.inset-0.bg-dark-950,
html.pc-light #pf-hero > .absolute.inset-0.bg-dark-950,
html.pc-light #kontakt-hero > .absolute.inset-0.bg-dark-950,
html.pc-light .kontakt-hero-video__shade {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at 18% 18%, rgba(99, 102, 241, 0.12), transparent 34%) !important;
}

html.pc-light #tj-hero .section-title,
html.pc-light #tj-hero .section-subtitle,
html.pc-light #pf-hero .section-title,
html.pc-light #pf-hero .section-subtitle,
html.pc-light #kontakt-hero .section-title,
html.pc-light #kontakt-hero .section-subtitle {
  color: #0f172a !important;
  text-shadow: none !important;
}

html.pc-light #tj-hero .subpage-eyebrow,
html.pc-light #pf-hero .subpage-eyebrow,
html.pc-light #kontakt-hero .subpage-eyebrow {
  color: #312e81 !important;
  background: rgba(255, 255, 255, 0.72) !important;
  border-color: rgba(99, 102, 241, 0.26) !important;
  text-shadow: none !important;
}

html.pc-light #tj-hero .pc-hero-bottom,
html.pc-light #pf-hero .pc-hero-bottom,
html.pc-light #kontakt-hero .pc-hero-bottom,
html.pc-light #blog-hero .pc-hero-bottom {
  border-top-color: rgba(15, 23, 42, 0.16) !important;
}

html.pc-light #tj-hero .pc-hero-bottom a,
html.pc-light #pf-hero .pc-hero-bottom a,
html.pc-light #kontakt-hero .pc-hero-bottom a,
html.pc-light #blog-hero .pc-hero-bottom a,
html.pc-light #tj-hero .pc-hero-bottom .scroll-indicator,
html.pc-light #pf-hero .pc-hero-bottom .scroll-indicator,
html.pc-light #kontakt-hero .pc-hero-bottom .scroll-indicator,
html.pc-light #blog-hero .pc-hero-bottom .scroll-indicator {
  color: #0f172a !important;
  text-shadow: none !important;
}

html.pc-light #tj-hero .subpage-trust__item,
html.pc-light #pf-hero .subpage-trust__item,
html.pc-light #kontakt-hero .subpage-trust__item {
  background: rgba(255, 255, 255, 0.78) !important;
  border-color: rgba(99, 102, 241, 0.22) !important;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08) !important;
}

html.pc-light #tj-hero .subpage-trust__ico-wrap,
html.pc-light #pf-hero .subpage-trust__ico-wrap,
html.pc-light #kontakt-hero .subpage-trust__ico-wrap {
  color: #4338ca !important;
  background: rgba(99, 102, 241, 0.12) !important;
  border-color: rgba(99, 102, 241, 0.28) !important;
}

html.pc-light .subpage-blog-card,
html.pc-light .subpage-blog-featured__card {
  background: #ffffff !important;
  border-color: rgba(203, 213, 225, 0.92) !important;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08) !important;
}

html.pc-light .subpage-blog-card h2,
html.pc-light .subpage-blog-featured__card h2 {
  color: #0f172a !important;
}

html.pc-light .subpage-blog-card p,
html.pc-light .subpage-blog-featured__card p,
html.pc-light .subpage-blog-card .text-dark-500,
html.pc-light .subpage-blog-featured__card .text-dark-500 {
  color: #475569 !important;
}

html.pc-light #subpage-root .pc-case-tech-tag {
  color: #ffffff !important;
  background: rgba(71, 85, 105, 0.94) !important;
  border-color: rgba(100, 116, 139, 0.9) !important;
}
.kontakt-hero-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(1.05) contrast(1.08) brightness(0.65);
}
.kontakt-hero-video__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.68), rgba(2, 6, 23, 0.88)),
    radial-gradient(circle at 50% 18%, rgba(99, 102, 241, 0.16), transparent 50%);
}

/* ??? Modal zam?wienia - motyw jasny (www: html.pc-light, CRM: data-pc-crm-theme) ??? */
html.pc-light .pc-order-modal__backdrop,
html[data-pc-crm-theme='light'] .pc-order-modal__backdrop {
  background: rgba(15, 23, 42, 0.42);
}

html.pc-light .pc-order-modal__panel,
html[data-pc-crm-theme='light'] .pc-order-modal__panel {
  border-color: #e2e8f0;
  background: linear-gradient(165deg, #ffffff, #f8fafc);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.18);
  color: #0f172a;
}

html.pc-light .pc-order-modal__x,
html[data-pc-crm-theme='light'] .pc-order-modal__x {
  background: #f1f5f9;
  color: #334155;
}

html.pc-light .pc-order-modal__x:hover,
html[data-pc-crm-theme='light'] .pc-order-modal__x:hover {
  background: #e2e8f0;
  color: #0f172a;
}

html.pc-light .pc-order-modal__h2,
html[data-pc-crm-theme='light'] .pc-order-modal__h2 {
  color: #0f172a;
}

html.pc-light .pc-order-modal__lead,
html.pc-light .pc-order-modal__summary,
html.pc-light .pc-order-modal__summary p,
html[data-pc-crm-theme='light'] .pc-order-modal__lead,
html[data-pc-crm-theme='light'] .pc-order-modal__summary,
html[data-pc-crm-theme='light'] .pc-order-modal__summary p {
  color: #475569;
}

html.pc-light .pc-order-modal__price,
html[data-pc-crm-theme='light'] .pc-order-modal__price {
  color: #4338ca;
}

html.pc-light .pc-order-modal__invoice,
html[data-pc-crm-theme='light'] .pc-order-modal__invoice {
  border-color: rgba(99, 102, 241, 0.28);
  background: #f8fafc;
}

html.pc-light .pc-order-modal__invoice-title,
html.pc-light .pc-order-modal__addon-h,
html[data-pc-crm-theme='light'] .pc-order-modal__invoice-title,
html[data-pc-crm-theme='light'] .pc-order-modal__addon-h {
  color: #4338ca;
}

html.pc-light .pc-order-modal__invoice-note,
html[data-pc-crm-theme='light'] .pc-order-modal__invoice-note {
  border-color: rgba(245, 158, 11, 0.45);
  background: #fffbeb;
  color: #92400e;
}

html.pc-light .pc-order-modal__invoice-line,
html[data-pc-crm-theme='light'] .pc-order-modal__invoice-line {
  color: #334155;
}

html.pc-light .pc-order-modal__invoice-total,
html[data-pc-crm-theme='light'] .pc-order-modal__invoice-total {
  border-top-color: #e2e8f0;
  color: #0f172a;
}
html.pc-light .pc-order-price-table th,
html[data-pc-crm-theme='light'] .pc-order-price-table th {
  color: #64748b;
  border-bottom-color: #e2e8f0;
}
html.pc-light .pc-order-price-table td,
html[data-pc-crm-theme='light'] .pc-order-price-table td {
  color: #0f172a;
  border-bottom-color: #e2e8f0;
}
html.pc-light .pc-order-price-table__total th,
html.pc-light .pc-order-price-table__total td,
html[data-pc-crm-theme='light'] .pc-order-price-table__total th,
html[data-pc-crm-theme='light'] .pc-order-price-table__total td {
  color: #3730a3;
}

html.pc-light .pc-order-modal__phone-callout,
html[data-pc-crm-theme='light'] .pc-order-modal__phone-callout {
  border-color: rgba(99, 102, 241, 0.35);
  background: #f8fafc;
}

html.pc-light .pc-order-modal__phone-callout-lead,
html[data-pc-crm-theme='light'] .pc-order-modal__phone-callout-lead {
  color: #0f172a;
}

html.pc-light .pc-order-modal__phone-callout-hours,
html.pc-light .pc-order-modal__hint,
html.pc-light .pc-order-modal__file-name,
html[data-pc-crm-theme='light'] .pc-order-modal__phone-callout-hours,
html[data-pc-crm-theme='light'] .pc-order-modal__hint,
html[data-pc-crm-theme='light'] .pc-order-modal__file-name {
  color: #64748b;
}

html.pc-light .pc-order-modal__lbl span,
html.pc-light .pc-order-modal__lbl .pc-order-modal__lbl-t,
html.pc-light .pc-order-modal__lbl--check span,
html[data-pc-crm-theme='light'] .pc-order-modal__lbl span,
html[data-pc-crm-theme='light'] .pc-order-modal__lbl .pc-order-modal__lbl-t,
html[data-pc-crm-theme='light'] .pc-order-modal__lbl--check span {
  color: #334155;
}

html.pc-light .pc-order-modal__ico,
html[data-pc-crm-theme='light'] .pc-order-modal__ico {
  background: #eef2ff;
  border-color: rgba(99, 102, 241, 0.28);
  color: #4f46e5;
  box-shadow: none;
}

html.pc-light .pc-order-modal__lbl input,
html.pc-light .pc-order-modal__lbl textarea,
html[data-pc-crm-theme='light'] .pc-order-modal__lbl input,
html[data-pc-crm-theme='light'] .pc-order-modal__lbl textarea {
  border-color: #cbd5e1;
  background: #ffffff;
  color: #0f172a;
}
html.pc-light .pc-order-modal__phone-prefix,
html[data-pc-crm-theme='light'] .pc-order-modal__phone-prefix {
  background: rgba(241, 245, 249, 0.95);
  color: #0f172a;
  border-color: rgba(148, 163, 184, 0.55);
}

html.pc-light .pc-order-modal__lbl textarea::placeholder,
html[data-pc-crm-theme='light'] .pc-order-modal__lbl textarea::placeholder {
  color: #94a3b8;
}

html.pc-light .pc-order-modal__lbl--date input[type='date'],
html[data-pc-crm-theme='light'] .pc-order-modal__lbl--date input[type='date'] {
  color-scheme: light;
}

html.pc-light .pc-order-modal__lbl--date input[type='date']::-webkit-calendar-picker-indicator,
html[data-pc-crm-theme='light'] .pc-order-modal__lbl--date input[type='date']::-webkit-calendar-picker-indicator {
  filter: none;
  opacity: 0.72;
}

html.pc-light .pc-order-modal__lbl input[type='file'],
html[data-pc-crm-theme='light'] .pc-order-modal__lbl input[type='file'] {
  color: #334155;
}

html.pc-light .pc-order-modal__save-note,
html[data-pc-crm-theme='light'] .pc-order-modal__save-note {
  border-color: rgba(34, 197, 94, 0.35);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(99, 102, 241, 0.06));
}

html.pc-light .pc-order-modal__save-note strong,
html[data-pc-crm-theme='light'] .pc-order-modal__save-note strong {
  color: #047857;
}

html.pc-light .pc-order-modal__save-note span,
html[data-pc-crm-theme='light'] .pc-order-modal__save-note span {
  color: #475569;
}

html.pc-light .pc-order-modal__addons,
html[data-pc-crm-theme='light'] .pc-order-modal__addons {
  border-top-color: #e2e8f0;
}

html.pc-light .pc-order-modal__btn--ghost,
html[data-pc-crm-theme='light'] .pc-order-modal__btn--ghost {
  border-color: #cbd5e1;
  color: #334155;
  background: #ffffff;
}

html.pc-light .pc-order-modal__btn--ghost:hover,
html[data-pc-crm-theme='light'] .pc-order-modal__btn--ghost:hover {
  background: #f1f5f9;
  color: #0f172a;
}

html.pc-light .pc-order-modal__err,
html[data-pc-crm-theme='light'] .pc-order-modal__err {
  color: #dc2626;
}

html.pc-light .pc-order-confirm__card,
html[data-pc-crm-theme='light'] .pc-order-confirm__card {
  border-color: #e2e8f0 !important;
  background: #ffffff !important;
}

html.pc-light .pc-order-confirm__row,
html.pc-light .pc-order-confirm__block,
html[data-pc-crm-theme='light'] .pc-order-confirm__row,
html[data-pc-crm-theme='light'] .pc-order-confirm__block {
  border-color: #e2e8f0;
  background: #ffffff !important;
}

html.pc-light .pc-order-confirm__k,
html[data-pc-crm-theme='light'] .pc-order-confirm__k {
  color: #4f46e5;
}

html.pc-light .pc-order-confirm__v,
html.pc-light .pc-order-confirm__expect,
html[data-pc-crm-theme='light'] .pc-order-confirm__v,
html[data-pc-crm-theme='light'] .pc-order-confirm__expect {
  color: #1e293b;
}

html.pc-light .pc-order-confirm__expect-wrap,
html[data-pc-crm-theme='light'] .pc-order-confirm__expect-wrap {
  border-color: rgba(99, 102, 241, 0.22);
  background: #f8fafc;
}

html.pc-light .pc-order-confirm__expect-wrap::before,
html[data-pc-crm-theme='light'] .pc-order-confirm__expect-wrap::before {
  color: rgba(99, 102, 241, 0.35);
}

html.pc-light .pc-order-confirm__chip,
html[data-pc-crm-theme='light'] .pc-order-confirm__chip {
  border-color: #e2e8f0;
  background: #f8fafc;
}

html.pc-light .pc-order-confirm__expect-acc,
html[data-pc-crm-theme='light'] .pc-order-confirm__expect-acc {
  border-color: rgba(99, 102, 241, 0.16);
  background: #f8fafc;
}

html.pc-light .pc-order-track__wrap,
html.pc-light .pc-order-success__proc,
html[data-pc-crm-theme='light'] .pc-order-track__wrap,
html[data-pc-crm-theme='light'] .pc-order-success__proc {
  border-color: rgba(99, 102, 241, 0.22);
  background: #f8fafc;
}

html.pc-light .pc-order-track__badge,
html.pc-light .pc-order-success__proc-badge,
html[data-pc-crm-theme='light'] .pc-order-track__badge,
html[data-pc-crm-theme='light'] .pc-order-success__proc-badge {
  color: #4f46e5;
}

html.pc-light .pc-order-track__sub,
html.pc-light .pc-order-success__proc-head,
html.pc-light .pc-order-success__lead,
html.pc-light .pc-order-success__step--done .pc-order-success__txt,
html[data-pc-crm-theme='light'] .pc-order-track__sub,
html[data-pc-crm-theme='light'] .pc-order-success__proc-head,
html[data-pc-crm-theme='light'] .pc-order-success__lead,
html[data-pc-crm-theme='light'] .pc-order-success__step--done .pc-order-success__txt {
  color: #0f172a;
}

html.pc-light .pc-order-track__title,
html.pc-light .pc-order-track__desc,
html.pc-light .pc-order-success__txt,
html.pc-light .pc-order-success__sub,
html.pc-light .pc-order-success__foot,
html[data-pc-crm-theme='light'] .pc-order-track__title,
html[data-pc-crm-theme='light'] .pc-order-track__desc,
html[data-pc-crm-theme='light'] .pc-order-success__txt,
html[data-pc-crm-theme='light'] .pc-order-success__sub,
html[data-pc-crm-theme='light'] .pc-order-success__foot {
  color: #475569;
}

html.pc-light .pc-order-track__step,
html.pc-light .pc-order-success__step,
html[data-pc-crm-theme='light'] .pc-order-track__step,
html[data-pc-crm-theme='light'] .pc-order-success__step {
  border-bottom-color: #e2e8f0;
}

html.pc-light .pc-order-track__n,
html.pc-light .pc-order-success__n,
html[data-pc-crm-theme='light'] .pc-order-track__n,
html[data-pc-crm-theme='light'] .pc-order-success__n {
  color: #4f46e5;
}

html.pc-light .pc-order-success__link,
html[data-pc-crm-theme='light'] .pc-order-success__link {
  color: #4338ca;
}

html.pc-light .pc-order-success__link:hover,
html[data-pc-crm-theme='light'] .pc-order-success__link:hover {
  color: #312e81;
}

html.pc-light .pc-order-guest,
html[data-pc-crm-theme='light'] .pc-order-guest {
  border-color: rgba(99, 102, 241, 0.28);
  background: linear-gradient(145deg, #f8fafc, #ffffff);
}

html.pc-light .pc-order-guest--success,
html[data-pc-crm-theme='light'] .pc-order-guest--success {
  border-color: rgba(52, 211, 153, 0.35);
  background: linear-gradient(145deg, #ecfdf5, #f8fafc);
}

html.pc-light .pc-order-guest__title,
html[data-pc-crm-theme='light'] .pc-order-guest__title {
  color: #0f172a;
}

html.pc-light .pc-order-guest__lead,
html.pc-light .pc-order-guest__list,
html[data-pc-crm-theme='light'] .pc-order-guest__lead,
html[data-pc-crm-theme='light'] .pc-order-guest__list {
  color: #475569;
}

html.pc-light .pc-order-guest__skip,
html[data-pc-crm-theme='light'] .pc-order-guest__skip {
  color: #64748b;
}

html.pc-light .pc-order-track__step.is-done,
html[data-pc-crm-theme='light'] .pc-order-track__step.is-done {
  background: rgba(34, 197, 94, 0.08);
}

html.pc-light .pc-order-track__ico,
html[data-pc-crm-theme='light'] .pc-order-track__ico {
  background: #eef2ff;
  border-color: #cbd5e1;
  color: #4f46e5;
}

html.pc-light .pc-order-track__step.is-done .pc-order-track__ico,
html[data-pc-crm-theme='light'] .pc-order-track__step.is-done .pc-order-track__ico {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.12));
  border-color: rgba(5, 150, 105, 0.35);
  color: #047857;
}

html.pc-light .pc-order-track__title,
html.pc-light .pc-order-track__step.is-current .pc-order-track__title,
html[data-pc-crm-theme='light'] .pc-order-track__title,
html[data-pc-crm-theme='light'] .pc-order-track__step.is-current .pc-order-track__title {
  color: #4338ca;
}

html.pc-light .pc-order-track__step.is-done .pc-order-track__title,
html[data-pc-crm-theme='light'] .pc-order-track__step.is-done .pc-order-track__title {
  color: #047857;
}

html.pc-light .pc-order-success__check,
html[data-pc-crm-theme='light'] .pc-order-success__check {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.22), rgba(16, 185, 129, 0.12));
  border-color: rgba(5, 150, 105, 0.4);
  color: #047857;
  box-shadow: none;
}

html.pc-light .pc-order-modal__lbl--check a,
html[data-pc-crm-theme='light'] .pc-order-modal__lbl--check a {
  color: #4338ca;
}


/* Home professions list (alfabetyczna) ? mirror of price-calculator.css for cache safety */
.pc-home-prof__shell { max-width: 52rem; margin: 0 auto; }
.pc-home-prof__toggle {
  display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 0.75rem;
  padding: 0.95rem 1.15rem; border-radius: 0.9rem; border: 1px solid rgba(148,163,184,0.28);
  background: rgba(15,23,42,0.72); color: #f8fafc; font-weight: 600; font-size: 0.95rem; cursor: pointer;
}
.pc-home-prof__toggle[aria-expanded='true'] .pc-home-prof__toggle-ico { transform: rotate(180deg); }
.pc-home-prof__toggle-ico { transition: transform 0.2s ease; flex-shrink: 0; }
.pc-home-prof__desktop-hint { display: none; margin: 0 0 0.85rem; color: #94a3b8; font-size: 0.875rem; text-align: center; }
.pc-home-prof__panel { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.35s ease, opacity 0.25s ease, margin 0.25s ease; }
.pc-home-prof__panel.is-open { max-height: 48rem; opacity: 1; margin-top: 0.75rem; overflow: auto; }
.pc-home-prof__list {
  display: flex; flex-direction: column; gap: 0.4rem; padding: 0.35rem; border-radius: 1rem;
  border: 1px solid rgba(148,163,184,0.2); background: rgba(15,23,42,0.55);
}
.pc-home-prof__row {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.7rem 0.85rem; border-radius: 0.75rem;
  color: inherit; text-decoration: none; border: 1px solid transparent;
}
.pc-home-prof__row:hover, .pc-home-prof__row:focus-visible {
  background: rgba(99,102,241,0.12); border-color: rgba(99,102,241,0.35); outline: none;
}
.pc-home-prof__icon {
  display: inline-flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem;
  border-radius: 0.65rem; border: 1px solid rgba(99,102,241,0.35); background: rgba(99,102,241,0.14); color: #a5b4fc; flex-shrink: 0;
}
.pc-home-prof__label { flex: 1; min-width: 0; font-weight: 600; font-size: 0.92rem; color: #e2e8f0; }
.pc-home-prof__chev { color: #64748b; font-size: 0.85rem; }
@media (min-width: 768px) {
  .pc-home-prof__toggle { display: none; }
  .pc-home-prof__desktop-hint { display: block; }
  .pc-home-prof__panel { max-height: none !important; opacity: 1 !important; overflow: visible; margin-top: 0; }
  .pc-home-prof__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.5rem; padding: 0.75rem; }
}
@media (min-width: 1100px) {
  .pc-home-prof__shell { max-width: 64rem; }
  .pc-home-prof__list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
html.pc-light .pc-home-prof__toggle, html.pc-light .pc-home-prof__list { background: #fff; border-color: rgba(15,23,42,0.12); color: #0f172a; }
html.pc-light .pc-home-prof__label { color: #0f172a; }
