/* ============================================
   DETEKTYW ARCANUM - Homepage Mockup
   Design: Noir-investigative + modern security
   Palette: Dark navy + teal/petrol blue + gold accents
   Fonts: Oswald (headings) + Poppins (body)
   ============================================ */

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

:root {
  /* Core palette - from Wix brand */
  --black: #001E29;
  --navy-deep: #002E3D;
  --navy: #003E52;
  --navy-light: #005B7A;
  --navy-lighter: #1A6D8A;

  /* Accents - Arcanum brand colors from Wix */
  --accent: #0089B6;
  --accent-dark: #005B7A;
  --accent-glow: #00A3D9;
  --gold: #FCB400;
  --gold-light: #FFD966;
  --teal: #2A7C6F;

  /* Text */
  --text-white: #F0F4F6;
  --text-light: #BFD6DE;
  --text-muted: #6A9AAD;
  --text-dark: #002E3D;
  --text-body: #2D4550;

  /* Surfaces */
  --surface-light: #EEF6F8;
  --surface-white: #FFFFFF;
  --surface-cream: #FFFEFC;

  /* Spacing */
  --section-pad: clamp(60px, 8vw, 120px);
  --container: min(1200px, 90vw);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  scroll-padding-top: 100px;
}

[id] {
  scroll-margin-top: 100px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--surface-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.15s ease-out;
}

/* ===== UTILITY ===== */
.container {
  width: var(--container);
  margin: 0 auto;
}

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
}

.section-label--light {
  color: var(--gold-light);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.section-title--light {
  color: var(--text-white);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 600px;
  line-height: 1.75;
}

.section-desc--light {
  color: var(--text-light);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1),
              background 0.2s ease-out,
              box-shadow 0.2s ease-out,
              border-color 0.2s ease-out;
  position: relative;
  overflow: hidden;
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 137, 182, 0.3);
}

@media (hover: hover) and (pointer: fine) {
  .btn--primary:hover {
    background: var(--accent-glow);
    box-shadow: 0 6px 30px rgba(0, 137, 182, 0.45);
    transform: translateY(-2px);
  }
}

.btn--outline {
  background: rgba(255,255,255,0.04);
  color: var(--text-white);
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(252,180,0,0.06);
}

.btn--block {
  width: 100%;
  justify-content: center;
}

.btn--dark {
  background: var(--navy);
  color: var(--text-white);
}

.btn--dark:hover {
  background: var(--navy-light);
}

.btn__arrow {
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--black);
  padding: 10px 0;
  font-size: 0.8rem;
  color: #AEC6D0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar__badge {
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 2px;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar__contact {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  transition: color 0.15s ease-out;
}

.topbar__contact:hover {
  color: var(--text-white);
}

.topbar__contact svg {
  width: 14px;
  height: 14px;
  opacity: 0.9;
}

/* ===== HEADER / NAV ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 20, 34, 0.97);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s ease;
}

.header--scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  height: 72px;
  flex-wrap: nowrap;
  gap: 16px;
}

.header__inner > nav {
  height: 100%;
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo__img {
  display: block;
  height: 40px;
  width: auto;
  max-width: none;
}

.logo__icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo__icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.logo__text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.logo__text span {
  color: var(--accent);
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 2px;
  margin: 0;
  padding: 0;
  height: 100%;
  align-items: stretch;
}

.nav__list > li {
  list-style: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.nav__list a,
.nav__link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 8px 12px;
  border-radius: 4px;
  transition: color 0.15s ease-out, background 0.15s ease-out;
  position: relative;
}

@media (hover: hover) and (pointer: fine) {
  .nav__list a:hover,
  .nav__link:hover {
    color: #fff;
    background: rgba(255,255,255,0.06);
  }
}
.nav__list .current-menu-item a,
.nav__link--active {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease-out;
  transform: translateX(-50%);
}

@media (hover: hover) and (pointer: fine) {
  .nav__link:hover::after {
    width: 60%;
  }
}

/* Dropdown submenu - desktop */
.nav__list > li {
  position: relative;
}

.nav__list > li > .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 300px;
  background: var(--navy-deep);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--accent);
  border-radius: 0 0 8px 8px;
  padding: 8px 0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  z-index: 200;
  list-style: none;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease-out, visibility 0.18s ease-out;
}

@media (hover: hover) and (pointer: fine) {
  .nav__list > li:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}

.nav__list .sub-menu li {
  width: 100%;
  position: static;
}

.nav__list .sub-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.82rem;
  color: var(--text-light);
  white-space: normal;
  line-height: 1.4;
  border-radius: 0;
  transition: background 0.15s ease-out, color 0.15s ease-out, padding-left 0.15s ease-out;
}

@media (hover: hover) and (pointer: fine) {
  .nav__list .sub-menu a:hover {
    background: rgba(0,137,182,0.12);
    color: #fff;
    padding-left: 24px;
  }
}

@media (min-width: 1281px) {
  .nav__list > li.menu-item--podsluchy-mega > .sub-menu {
    left: 0;
    transform: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2px 8px;
    width: min(820px, calc(100vw - 48px));
    padding: 12px;
  }

  .nav__list > li.menu-item--podsluchy-mega > .sub-menu > li:not(.menu-podsluchy-city):not(.menu-podsluchy-heading) {
    grid-column: 1 / -1;
  }

  .nav__list > li.menu-item--podsluchy-mega > .sub-menu > li.menu-podsluchy-city {
    min-width: 0;
  }

  .nav__list > li.menu-item--podsluchy-mega > .sub-menu > li.menu-podsluchy-heading {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 8px;
    padding: 14px 12px 2px;
  }

  .nav__list > li.menu-item--podsluchy-mega > .sub-menu > li.menu-podsluchy-heading > a {
    display: inline-block;
    padding: 0;
    font-family: 'Oswald', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    pointer-events: none;
    cursor: default;
  }

  .nav__list > li.menu-item--podsluchy-mega > .sub-menu > li.menu-podsluchy-heading > a:hover {
    background: transparent;
    color: var(--gold);
    padding-left: 0;
  }

  .nav__list > li.menu-item--podsluchy-mega > .sub-menu > li.menu-podsluchy-city > a {
    padding: 9px 12px;
    border-radius: 4px;
    font-size: 0.78rem;
  }

  .nav__list > li.menu-item--podsluchy-mega > .sub-menu > li.menu-podsluchy-city > a:hover {
    padding-left: 16px;
  }
}

@media (max-width: 1280px) {
  .nav__list > li.menu-item--podsluchy-mega > .sub-menu > li.menu-podsluchy-heading {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 8px;
    padding-top: 14px;
  }

  .nav__list > li.menu-item--podsluchy-mega > .sub-menu > li.menu-podsluchy-heading > a {
    font-family: 'Oswald', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    pointer-events: none;
    cursor: default;
  }

  .nav__list > li.menu-item--podsluchy-mega > .sub-menu > li.menu-podsluchy-heading > a:hover {
    background: transparent;
    color: var(--gold);
    padding-left: 0;
  }
}

/* Arrow indicator for items with children */
.menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 6px;
  vertical-align: middle;
  opacity: 0.6;
  transition: transform 0.2s ease-out;
}

@media (hover: hover) and (pointer: fine) {
  .menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
  }
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header__phone {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  color: var(--text-white);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.header__phone svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  margin: 5px 0;
  transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1),
              opacity 0.2s ease-out;
  transform-origin: center;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  color: var(--text-white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Gradient mesh background */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(0,137,182,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(25,35,45,0.6) 0%, transparent 60%),
    radial-gradient(ellipse 100% 100% at 50% 50%, var(--navy-deep) 0%, var(--black) 100%);
}

/* Subtle grid pattern */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 30% 60%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 30% 60%, black 0%, transparent 70%);
}

/* Animated scan line */
.hero__scanline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,137,182,0.3), transparent);
  animation: scanline 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes scanline {
  0% { top: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: var(--section-pad) 0;
  max-width: 680px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,46,61,0.45);
  border: 1px solid rgba(252,180,0,0.35);
  border-radius: 4px;
  padding: 8px 16px;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(252,180,0,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(252,180,0,0); }
}

.hero__badge-text {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  text-shadow: 0 1px 2px rgba(0,16,23,0.5);
}

.hero__title {
  font-size: clamp(1.9rem, 5.2vw, 3.8rem);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
  text-wrap: balance;
  animation: fadeInUp 0.8s ease-out 0.15s both;
}

.hero__title span {
  color: var(--accent);
}

.hero__subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: rgba(226,237,241,0.92);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  text-shadow: 0 1px 4px rgba(0,16,23,0.55);
  animation: fadeInUp 0.8s ease-out 0.25s both;
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease-out 0.35s both;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease-out 0.45s both;
}

.hero__trust {
  display: flex;
  gap: 32px;
  animation: fadeInUp 0.8s ease-out 0.55s both;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__trust-icon {
  width: 40px;
  height: 40px;
  background: rgba(252,180,0,0.14);
  border: 1px solid rgba(252,180,0,0.45);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__trust-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.7;
}

.hero__trust-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ECF3F6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 6px rgba(0,12,18,0.85);
}

/* Right side decorative element */
.hero__visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  z-index: 1;
  opacity: 0.6;
}

.hero__visual-ring {
  position: absolute;
  border: 1px solid rgba(0,137,182,0.15);
  border-radius: 50%;
  animation: rotate-ring 30s linear infinite;
}

.hero__visual-ring:nth-child(1) {
  inset: 0;
}

.hero__visual-ring:nth-child(2) {
  inset: 40px;
  border-color: rgba(163,125,61,0.1);
  animation-direction: reverse;
  animation-duration: 25s;
}

.hero__visual-ring:nth-child(3) {
  inset: 80px;
  border-color: rgba(0,137,182,0.08);
  animation-duration: 20s;
}

.hero__visual-center {
  position: absolute;
  inset: 120px;
  background: radial-gradient(circle, rgba(0,137,182,0.06) 0%, transparent 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__visual-center svg {
  width: 60px;
  height: 60px;
  stroke: rgba(0,137,182,0.3);
  fill: none;
  stroke-width: 1;
}

@keyframes rotate-ring {
  to { transform: rotate(360deg); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== STATS BAR ===== */
.stats {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats__item {
  padding: 32px 24px;
  text-align: center;
  position: relative;
}

.stats__item + .stats__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}

.stats__number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.stats__number span {
  color: var(--gold);
}

.stats__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Google rating stat */
.stats__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin: 2px 0 4px;
}

.stats__stars svg {
  width: 15px;
  height: 15px;
  fill: #FBBC04;
}

.stats__label--google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-transform: none;
  letter-spacing: 0.02em;
}

.stats__gicon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services {
  padding: var(--section-pad) 0;
  background: var(--surface-white);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, var(--surface-light), var(--surface-white));
  pointer-events: none;
}

.services__header {
  text-align: center;
  margin-bottom: 56px;
}

.services__header .section-desc {
  margin: 0 auto;
}

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

.service-card {
  background: var(--surface-white);
  border: 1px solid #E8ECF1;
  border-radius: 8px;
  padding: 36px 28px;
  transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.25s ease-out,
              border-color 0.25s ease-out;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    border-color: transparent;
    box-shadow: 0 12px 48px rgba(0,0,0,0.08), 0 2px 12px rgba(0,0,0,0.04);
    transform: translateY(-4px);
  }
  .service-card:hover::before {
    transform: scaleX(1);
  }
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(0,137,182,0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}

.service-card:hover .service-card__icon {
  background: rgba(0,137,182,0.1);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
}

.service-card__category {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.service-card__title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.service-card__list {
  list-style: none;
  margin-bottom: 24px;
}

.service-card__list li {
  font-size: 0.88rem;
  color: var(--text-body);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: var(--accent);
  opacity: 0.5;
}

.service-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.service-card__link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.service-card:hover .service-card__link svg {
  transform: translateX(4px);
}

/* ===== BOLD STATEMENT ===== */
.statement {
  background: var(--navy-deep);
  color: var(--text-white);
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
}

.statement::before {
  display: none;
}

.statement__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.statement__quote {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 500;
  color: var(--text-white);
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 12px;
}

.statement__quote em {
  color: var(--accent);
  font-style: normal;
}

.statement__sub {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 36px;
}

.statement__body {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto;
}

.statement__body p {
  margin-bottom: 14px;
}

.statement__body a {
  color: var(--accent-glow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.statement__body ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.statement__body li {
  color: var(--text-light);
  padding: 6px 0;
}

.statement__body li::before {
  content: '—';
  color: var(--accent);
  margin-right: 10px;
}

/* ===== WHY US ===== */
.why {
  padding: var(--section-pad) 0;
  background: var(--surface-light);
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.why-feat:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.why-feat {
  padding: 24px;
  background: var(--surface-white);
  border-radius: 8px;
  border: 1px solid #E8ECF1;
  transition: box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1),
              border-color 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.why-feat:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  border-color: transparent;
}

.why-feat__icon {
  width: 40px;
  height: 40px;
  background: var(--navy-deep);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.why-feat__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.8;
}

.why-feat__title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.why-feat__desc {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ===== PROCESS ===== */
.process {
  padding: var(--section-pad) 0;
  background: var(--surface-white);
}

.process__header {
  text-align: center;
  margin-bottom: 64px;
}

.process__header .section-desc {
  margin: 0 auto;
}

.process__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* Connecting line */
.process__timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--gold);
  opacity: 0.25;
}

.process__step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.process__number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--text-white);
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(13,20,34,0.3);
}

.process__step:hover .process__number {
  background: var(--accent);
  box-shadow: 0 4px 24px rgba(0,137,182,0.3);
}

.process__step-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.process__step-desc {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ===== ABOUT / EXPERT ===== */
.about {
  padding: var(--section-pad) 0;
  background: var(--surface-light);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}

.about::before {
  display: none;
}

.about__grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.about__photo {
  position: relative;
}

.about__photo-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--navy-light);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0,46,61,0.1);
  box-shadow: 0 8px 32px rgba(0,46,61,0.12);
  transition: box-shadow 0.4s ease-out;
}

.about__photo-frame img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (hover: hover) and (pointer: fine) {
  .about__photo-frame:hover {
    box-shadow: 0 16px 48px rgba(0,46,61,0.18);
  }
  .about__photo-frame:hover img {
    transform: scale(1.03);
  }
}

/* Photo frame - subtle overlay for depth */
.about__photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,46,61,0.4) 100%);
  z-index: 1;
  pointer-events: none;
}

.about__photo-badge {
  position: absolute;
  bottom: -12px;
  left: 24px;
  background: var(--navy-deep);
  border: 1px solid rgba(252,180,0,0.3);
  border-radius: 2px;
  padding: 8px 16px;
  z-index: 2;
  pointer-events: none;
}

.about__photo-badge-text {
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 400;
}

.about__content .section-title {
  color: var(--navy-deep);
}

.about__name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.about__role {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.about__text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about__credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.about__credential {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--surface-white);
  border: 1px solid rgba(0,46,61,0.08);
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,46,61,0.05);
}

.about__credential-icon {
  width: 32px;
  height: 32px;
  background: rgba(0,137,182,0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about__credential-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
}

.about__credential-text {
  font-size: 0.8rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* ===== LOCATIONS ===== */
.locations {
  padding: var(--section-pad) 0;
  background: var(--surface-white);
}

.locations__header {
  text-align: center;
  margin-bottom: 48px;
}

.locations__header .section-desc {
  margin: 0 auto;
}

.locations__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto 48px;
}

.location-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--surface-light);
  border: 1px solid #E8ECF1;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: background 0.25s cubic-bezier(0.23, 1, 0.32, 1),
              color 0.25s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}

.location-tag:hover {
  background: var(--navy-deep);
  color: var(--text-white);
  border-color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(13,20,34,0.15);
}

.location-tag svg {
  width: 12px;
  height: 12px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
}

.locations__cta {
  text-align: center;
}

/* ===== REVIEWS ===== */
.reviews {
  padding: var(--section-pad) 0;
  background: var(--navy-deep);
}

.reviews__header {
  text-align: center;
  margin-bottom: 16px;
}

.reviews .section-label {
  color: var(--gold);
}

.reviews .section-title {
  color: var(--text-white);
}

/* ===== Google reviews panel ===== */
.reviews__gpanel {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 40px);
  max-width: 760px;
  margin: 0 auto 48px;
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

.reviews__gbrand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gicon {
  display: inline-block;
  flex-shrink: 0;
}

.reviews__gbrand .gicon {
  width: 26px;
  height: 26px;
}

.reviews__gname {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-white);
  letter-spacing: 0.02em;
}

.reviews__gscore {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews__score {
  font-family: 'Oswald', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  color: #FBBC04;
}

.reviews__starsbig {
  display: flex;
  gap: 2px;
}

.reviews__starsbig svg {
  width: 20px;
  height: 20px;
  fill: #FBBC04;
}

.reviews__count {
  font-size: 0.82rem;
  color: rgba(191, 214, 222, 0.7);
}

.reviews__glink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: gap 0.25s cubic-bezier(0.23, 1, 0.32, 1), color 0.25s ease;
}

.reviews__glink svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.reviews__glink:hover {
  color: var(--gold);
  gap: 12px;
}

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

/* ===== Google-style review cards (light = embedded widget look) ===== */
.review-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
}

.review-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  flex-shrink: 0;
}

.review-card__author {
  font-size: 0.92rem;
  font-weight: 600;
  color: #202124;
  line-height: 1.3;
}

.review-card__meta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: #5f6368;
  margin-top: 2px;
}

.review-card__meta .gicon {
  width: 13px;
  height: 13px;
}

.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.review-card__stars svg {
  width: 15px;
  height: 15px;
  fill: #FBBC04;
}

.review-card__text {
  font-size: 0.9rem;
  color: #3c4043;
  line-height: 1.65;
}

/* ===== FAQ ===== */
.faq {
  padding: var(--section-pad) 0;
  background: var(--surface-light);
}

.faq .section-label { color: var(--accent); }
.faq .section-title { color: var(--text-dark); }
.faq .section-desc { color: var(--text-body); }

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  counter-reset: faq-counter;
}

.faq__item {
  background: var(--surface-white);
  border: 1px solid #E0E8EC;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.25s ease-out, box-shadow 0.25s ease-out;
}

.faq__item.active {
  border-color: rgba(0,137,182,0.3);
  box-shadow: 0 4px 20px rgba(0,46,61,0.06);
}

.faq__question {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 22px 24px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.2s ease-out;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Poppins', sans-serif;
}

.faq__question::before {
  content: counter(faq-counter, decimal-leading-zero);
  counter-increment: faq-counter;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  opacity: 0.5;
  flex-shrink: 0;
  min-width: 22px;
  transition: color 0.2s ease-out, opacity 0.2s ease-out;
}

.faq__item.active .faq__question::before {
  color: var(--accent);
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .faq__question:hover {
    color: var(--accent);
  }
}

.faq__question svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), stroke 0.2s ease-out;
  flex-shrink: 0;
  margin-left: auto;
}

.faq__item.active .faq__question {
  font-weight: 600;
  color: var(--accent-dark);
}

.faq__item.active .faq__question svg {
  transform: rotate(45deg);
  stroke: var(--accent-dark);
}

.faq__question:active {
  opacity: 0.75;
  transition-duration: 0.05s;
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq__item.active .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 24px 0 46px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.75;
  text-align: left;
}

.faq__item.active .faq__answer-inner {
  padding-bottom: 22px;
}

/* ===== CONTACT CTA ===== */
.contact-cta {
  padding: var(--section-pad) 0;
  background: var(--navy-deep);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(0,137,182,0.06) 0%, transparent 60%);
}

.contact-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-cta__content .section-title {
  color: var(--text-white);
}

.contact-cta__desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 28px;
}

.contact-cta__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-cta__detail {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-cta__detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(0,137,182,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-cta__detail-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-cta__detail-label {
  font-size: 0.72rem;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-cta__detail-value {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-white);
  letter-spacing: 0.01em;
  transition: color 0.2s ease-out;
}

a.contact-cta__detail-value:hover {
  color: var(--gold-light);
}

.contact-cta__sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.contact-cta__form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 36px;
}

.contact-cta__form-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.form__group {
  margin-bottom: 16px;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: var(--text-white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.25s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.25s cubic-bezier(0.23, 1, 0.32, 1);
  outline: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-muted);
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 3px rgba(0,137,182,0.1);
}

.form__textarea {
  min-height: 120px;
  resize: vertical;
}

.form__privacy {
  font-size: 0.75rem;
  color: var(--text-light);
  opacity: 0.7;
  margin-top: 12px;
  line-height: 1.5;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__brand-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 20px;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  color: #C3D5DC;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s cubic-bezier(0.23, 1, 0.32, 1),
              border-color 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

.footer__social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.footer__social-link svg {
  width: 19px;
  height: 19px;
  fill: #C3D5DC;
}

.footer__social-link:hover svg {
  fill: #fff;
}

.footer__heading {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--text-white);
}

.footer__bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer__legal a:hover {
  color: var(--text-white);
}

/* ===== MOBILE STICKY BAR ===== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-deep);
  z-index: 200;
  padding: 0;
}

.mobile-bar__grid {
  display: grid;
  grid-template-columns: 1fr 2.3fr;
}

.mobile-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  color: #CBDCE3;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.3s;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.mobile-bar__item:last-child {
  border-right: none;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
  flex-direction: row;
  gap: 10px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.mobile-bar__item svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  margin-bottom: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1280px) {
  /* === Mobile navigation - hamburger at 1280px for MacBook Air === */
  .nav__list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: auto;
    align-items: stretch;
    background: var(--navy-deep);
    padding: 16px 20px;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    z-index: 100;
  }

  .nav__list--open {
    display: flex;
  }

  .nav__list > li {
    width: 100%;
    display: block;
  }

  .nav__list a {
    display: block;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.95rem;
  }

  .nav__toggle {
    display: block;
  }

  .nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav__toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  body.nav-open {
    overflow: hidden;
  }

  .header__phone {
    font-size: 0.85rem;
  }

  /* Mobile submenu - nested under parent items */
  .nav__list > li > .sub-menu {
    position: static;
    display: none;
    min-width: auto;
    border: none;
    border-top: none;
    border-radius: 0;
    box-shadow: none;
    padding: 4px 0 4px 16px;
    background: rgba(255,255,255,0.03);
    border-left: 2px solid var(--accent);
    margin-left: 16px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .nav__list > li > .sub-menu.sub-menu--open {
    display: block;
  }

  .nav__list .sub-menu a {
    padding: 10px 16px;
    font-size: 0.88rem;
    color: var(--text-light);
  }

  .nav__list .sub-menu a:hover {
    padding-left: 16px;
  }

  /* Toggle arrow direction */
  .menu-item-has-children > a::after {
    transition: transform 0.2s ease-out;
  }
  .menu-item-has-children.sub-open > a::after {
    transform: rotate(180deg);
  }
}

@media (max-width: 1024px) {
  /* === Layout adjustments === */
  .hero__visual {
    display: none;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__photo {
    max-width: 300px;
  }

  .faq__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-cta__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-cta__details {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .topbar__left {
    display: none;
  }

  .hero {
    min-height: 80vh;
  }

  .hero__trust {
    flex-direction: column;
    gap: 16px;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats__item + .stats__item:nth-child(3)::before {
    display: none;
  }

  .process__timeline {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .process__timeline::before {
    display: none;
  }

  .why__features {
    grid-template-columns: 1fr;
  }

  .about__credentials {
    grid-template-columns: 1fr;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .mobile-bar {
    display: block;
  }

  body {
    padding-bottom: 64px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.7rem;
    line-height: 1.18;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .process__timeline {
    grid-template-columns: 1fr;
  }

  .locations__grid {
    gap: 6px;
  }

  .location-tag {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
}

/* ===== TOPBAR SOCIAL ===== */
.topbar__social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #AEC6D0;
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

.topbar__social-link:hover {
  opacity: 1;
}

.topbar__social-link svg {
  width: 18px;
  height: 18px;
  fill: #AEC6D0;
}

/* ===== HERO BG IMAGE ===== */
.hero__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: saturate(0.7);
}

/* ===== BLOG SECTION ===== */
.blog {
  padding: var(--section-pad) 0;
  background: var(--surface-light);
}

.blog__header {
  text-align: center;
  margin-bottom: 48px;
}

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

.blog-card {
  background: var(--surface-white);
  border: 1px solid #E8ECF1;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.35s cubic-bezier(0.23, 1, 0.32, 1),
              border-color 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.blog-card:hover {
  border-color: transparent;
  box-shadow: 0 12px 48px rgba(0,0,0,0.08), 0 2px 12px rgba(0,0,0,0.04);
  transform: translateY(-4px);
}

.blog-card__image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: 24px;
}

.blog-card__date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.blog-card__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 16px;
}

.blog-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-card__link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__link svg {
  transform: translateX(4px);
}

/* ===== YOUTUBE FEED SECTION ===== */
.video-feed {
  padding: var(--section-pad) 0;
  background: var(--surface-cream);
}

.video-feed__header {
  text-align: center;
  margin-bottom: 48px;
}

.video-feed__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.video-card {
  background: var(--surface-white);
  border: 1px solid #E8ECF1;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease-out;
}

.video-card:hover {
  border-color: transparent;
  box-shadow: 0 12px 48px rgba(0,0,0,0.08), 0 2px 12px rgba(0,0,0,0.04);
  transform: translateY(-4px);
}

.video-card__thumb,
.video-card__iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  background: none;
}

.video-card__thumb {
  position: relative;
  padding: 0;
  cursor: pointer;
}

.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-out;
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 12px 32px rgba(0,46,61,0.22), 0 6px 18px rgba(252,180,0,0.28);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease-out;
}

.video-card__play svg {
  width: 30px;
  height: 30px;
  margin-left: 4px;
}

.video-card:hover .video-card__thumb img {
  transform: scale(1.04);
}

.video-card:hover .video-card__play {
  transform: translate(-50%, -50%) scale(1.08);
}

.video-card__thumb:active .video-card__play {
  transform: translate(-50%, -50%) scale(0.96);
}

.video-card__body {
  padding: 24px;
}

.video-card__date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.video-card__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  .video-card,
  .video-card__thumb img,
  .video-card__play {
    transition: none;
  }

  .video-card:hover,
  .video-card:hover .video-card__thumb img {
    transform: none;
  }

  .video-card__play,
  .video-card:hover .video-card__play,
  .video-card__thumb:active .video-card__play {
    transform: translate(-50%, -50%);
  }
}

/* ===== BUG DETECTION HIGHLIGHT ===== */
.bug-detection {
  padding: var(--section-pad) 0;
  background: var(--navy-deep);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.bug-detection::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,137,182,0.06) 0%, transparent 60%);
}

.bug-detection__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.bug-detection__content .section-title {
  color: var(--text-white);
}

.bug-detection__text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.bug-detection__image {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.bug-detection__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== QUALITY SECTION ===== */
.quality {
  padding: var(--section-pad) 0;
  background: var(--surface-white);
}

.quality__header {
  text-align: center;
  margin-bottom: 48px;
}

.quality__header .section-desc {
  margin: 0 auto;
  max-width: 700px;
}

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

.quality__item {
  text-align: center;
  padding: 36px 28px;
  background: var(--surface-light);
  border-radius: 8px;
  border: 1px solid #E8ECF1;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1),
              border-color 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.quality__item:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  border-color: transparent;
  transform: translateY(-4px);
}

.quality__icon {
  width: 52px;
  height: 52px;
  background: var(--navy-deep);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.quality__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.8;
}

.quality__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.quality__desc {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ===== FOOTER INTERNAL LINKS ===== */
.footer__internal-links {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.8;
  text-align: center;
}

.footer__internal-links a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer__internal-links a:hover {
  color: var(--text-white);
}

/* ===== WHY IMAGE ===== */
.why__image {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E8ECF1;
  position: sticky;
  top: 100px;
}

.why__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  min-height: 480px;
  filter: grayscale(0.55) brightness(1.02) contrast(1.05);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Brandowy duotone (teal/navy multiply) - spojnosc z kartami uslug */
.why__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(0,137,182,0.30) 0%, rgba(0,46,61,0.52) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
  .why__image:hover img {
    transform: scale(1.03);
  }
}

@media (max-width: 1024px) {
  .bug-detection__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog__grid,
  .video-feed__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .quality__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ============================================
   DESIGN UPGRADE - Noir Luxury / Surveillance
   ============================================ */

/* === NOISE TEXTURE OVERLAY === */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* === GEOMETRIC ACCENTS (echo logo "A" triangle) === */
.geo-accent {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.geo-accent--triangle {
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 52px solid rgba(0,137,182,0.04);
}

.geo-accent--line {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

/* === ENHANCED HERO - Parallax + Cinematic === */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-bottom: 28px;
  background: var(--navy-deep);
  overflow: hidden;
}

.hero__bg-image img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.28;
  filter: saturate(0.7);
  will-change: transform;
}

/* Cinematic vignette */
.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, rgba(0,30,41,0.7) 100%);
  pointer-events: none;
}

/* Hero content entrance - cinematic stagger */
.hero__badge { animation: cinReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both; }
.hero__title { animation: cinReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both; }
.hero__subtitle { animation: cinReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.34s both; }
.hero__desc { animation: cinReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.42s both; }
.hero__actions { animation: cinReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.52s both; }
.hero__trust { animation: cinReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.62s both; }

@keyframes cinReveal {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* === ENHANCED BUTTONS === */
.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  box-shadow:
    0 4px 20px rgba(0, 137, 182, 0.3),
    inset 0 1px 0 rgba(255,255,255,0.15);
  position: relative;
}

.btn--primary::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent-glow), var(--gold));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  filter: blur(12px);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--accent-glow) 0%, var(--accent) 100%);
  box-shadow: 0 6px 30px rgba(0, 137, 182, 0.45);
  transform: translateY(-2px);
}

.btn--primary:hover::after {
  opacity: 0.5;
}

/* === SERVICE CARDS - Glass effect on hover === */
.service-card {
  background: var(--surface-white);
  border: 1px solid #E8ECF1;
  border-radius: 12px;
  padding: 36px 28px;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              border-color 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: rgba(0,137,182,0.15);
  box-shadow:
    0 20px 60px rgba(0,46,61,0.1),
    0 4px 16px rgba(0,137,182,0.06),
    inset 0 1px 0 rgba(255,255,255,0.8);
  transform: translateY(-6px);
}

/* Subtle diagonal light sweep on card hover */
.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(0,137,182,0.03) 45%,
    rgba(0,137,182,0.06) 50%,
    rgba(0,137,182,0.03) 55%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.service-card:hover::after {
  transform: translateX(100%);
}

/* === DIAGONAL SECTION BREAK === */
.section-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
}

.section-divider--dark-to-light {
  background: var(--navy-deep);
}

.section-divider--dark-to-light::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 110%;
  height: 100%;
  background: var(--surface-light);
  transform: skewY(-2deg);
  transform-origin: bottom left;
}

.section-divider--light-to-dark {
  background: var(--surface-light); /* tlo dividera = kolor sekcji WYZEJ (jasnoniebieski), nie bialy - inaczej bialy klin */
}

.section-divider--light-to-dark::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 110%;
  height: 100%;
  background: var(--navy-deep);
  transform: skewY(2deg);
  transform-origin: bottom right;
}

/* Service page divider variants (white bg instead of surface-light) */
.section-divider--white-to-dark {
  background: var(--surface-white);
}
.section-divider--white-to-dark::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 110%;
  height: 100%;
  background: var(--navy-deep);
  transform: skewY(2deg);
  transform-origin: bottom right;
}

.section-divider--dark-to-white {
  background: var(--navy-deep);
}
.section-divider--dark-to-white::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 110%;
  height: 100%;
  background: var(--surface-white);
  transform: skewY(-2deg);
  transform-origin: bottom left;
}

/* === ENHANCED STATS BAR === */
.stats {
  background: var(--navy);
  border-top: none;
  border-bottom: none;
  position: relative;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--accent) 50%, transparent 90%);
  opacity: 0.3;
}

.stats::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--gold) 50%, transparent 90%);
  opacity: 0.2;
}

/* === Google-style review cards (override kept in sync with light theme) === */
.review-card {
  position: relative;
}

@media (hover: hover) and (pointer: fine) {
  .review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
  }
}

/* === ENHANCED FAQ (removed duplicate - styles in main .faq block) === */

/* === PROCESS NUMBERS - Gold ring === */
.process__number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--text-white);
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow:
    0 4px 20px rgba(13,20,34,0.3),
    inset 0 0 0 2px rgba(252,180,0,0.15);
  transition: background 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.process__step:hover .process__number {
  background: var(--accent);
  box-shadow:
    0 4px 24px rgba(0,137,182,0.3),
    inset 0 0 0 2px rgba(255,255,255,0.2);
}

/* === SCROLL REVEAL SYSTEM === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-children.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.revealed > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.06s; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.12s; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.18s; }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.24s; }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-children.revealed > *:nth-child(n+7) { transition-delay: 0.36s; }

/* === ENHANCED CONTACT FORM === */
.contact-cta__form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* === ENHANCED WHY-FEAT CARDS === */
.why-feat {
  padding: 28px;
  background: var(--surface-white);
  border-radius: 12px;
  border: 1px solid #E8ECF1;
  transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.25s ease-out,
              border-color 0.25s ease-out;
  position: relative;
  overflow: hidden;
}

.why-feat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

@media (hover: hover) and (pointer: fine) {
  .why-feat:hover::before {
    transform: scaleX(1);
  }
  .why-feat:hover {
    box-shadow: 0 12px 40px rgba(0,46,61,0.08);
    border-color: transparent;
    transform: translateY(-4px);
  }
}

/* === QUALITY ITEMS - Enhanced === */
.quality__item {
  text-align: center;
  padding: 40px 28px;
  background: var(--surface-light);
  border-radius: 12px;
  border: 1px solid #E8ECF1;
  transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.25s ease-out,
              border-color 0.25s ease-out;
  position: relative;
  overflow: hidden;
}

.quality__item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

@media (hover: hover) and (pointer: fine) {
  .quality__item:hover::before {
    width: 60%;
  }

  .quality__item:hover {
    box-shadow: 0 12px 40px rgba(0,46,61,0.08);
    border-color: transparent;
    transform: translateY(-6px);
  }
}

/* === STATEMENT SECTION - Cinematic === */
.statement__quote {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 500;
  color: var(--text-white);
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 12px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

/* === LOCATION TAGS - Enhanced === */
.location-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--surface-light);
  border: 1px solid #E8ECF1;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1),
              background 0.2s ease-out,
              color 0.2s ease-out,
              border-color 0.2s ease-out,
              box-shadow 0.2s ease-out;
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .location-tag:hover {
    background: var(--navy-deep);
    color: var(--gold-light);
    border-color: var(--navy-deep);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,46,61,0.15);
  }
}

/* === BLOG CARDS - Enhanced === */
.blog-card {
  background: var(--surface-white);
  border: 1px solid #E8ECF1;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.25s ease-out,
              border-color 0.25s ease-out;
}

@media (hover: hover) and (pointer: fine) {
  .blog-card:hover {
    border-color: transparent;
    box-shadow:
      0 20px 60px rgba(0,46,61,0.1),
      0 4px 16px rgba(0,137,182,0.06);
    transform: translateY(-6px);
  }
}

/* === BUG DETECTION IMAGE - Subtle glow === */
.bug-detection__image {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.bug-detection__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  box-shadow: inset 0 0 60px rgba(0,137,182,0.08);
  pointer-events: none;
}

/* === FOOTER ENHANCED === */
.footer {
  background: var(--black);
  padding: 64px 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--accent) 30%, var(--gold) 70%, transparent 95%);
  opacity: 0.2;
}

/* === CUSTOM SELECTION === */
::selection {
  background: var(--accent);
  color: #fff;
}

::-moz-selection {
  background: var(--accent);
  color: #fff;
}

/* === SMOOTH SCROLL INDICATOR === */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: cinReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.2s both;
}

.scroll-indicator__mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(191,214,222,0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator__dot {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { top: 8px; opacity: 1; }
  50% { top: 20px; opacity: 0.3; }
}

.scroll-indicator__text {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.5;
}

@media (max-width: 768px) {
  .scroll-indicator { display: none; }
  .why__image { position: static; }
  .section-divider { display: none; } /* mobile: bez skosow, szkoda ekranu (decyzja Marcina) */
}

/* === REVEAL SAFETY FALLBACK === */
/* Ensure CTA and critical sections are ALWAYS visible */
.contact-cta .contact-cta__content,
.contact-cta .contact-cta__form,
.contact-cta__content,
.contact-cta__form {
  opacity: 1 !important;
  transform: none !important;
}

/* Fallback: if JS hasn't triggered reveals within 4s, show everything */
@keyframes revealFallback {
  to { opacity: 1; transform: none; }
}

.reveal:not(.revealed) {
  animation: revealFallback 0s 4s forwards;
}

.stagger-children:not(.revealed) > * {
  animation: revealFallback 0s 4.2s forwards;
}

.reveal-left:not(.revealed),
.reveal-right:not(.revealed) {
  animation: revealFallback 0s 4s forwards;
}

/* === SERVICE CARD IMAGES === */
.service-card__image {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

/* Spojny duotone brandowy - pelna desaturacja + tint Arcanum ujednolica rozne zdjecia */
.service-card__image {
  background: #012433;
}
.service-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(0,137,182,0.32) 0%, rgba(0,46,61,0.55) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.55) brightness(1.02) contrast(1.05);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
}

.service-card:hover .service-card__image::after {
  opacity: 0.85;
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
  filter: grayscale(0.3) brightness(1.05) contrast(1.05);
}

/* === ENHANCED ABOUT SECTION - Credential badges === */
.about__credential {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--surface-white);
  border: 1px solid rgba(0,46,61,0.08);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,46,61,0.05);
  transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.25s ease-out,
              border-color 0.25s ease-out;
}

@media (hover: hover) and (pointer: fine) {
  .about__credential:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,46,61,0.1);
    border-color: rgba(0,137,182,0.2);
  }
}

/* === PROCESS STEP IMAGES === */
.process__step-icon {
  width: 100%;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 16px;
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.process__step:hover .process__step-icon {
  opacity: 1;
}

/* === BLOG CARD IMAGE OVERLAY === */
.blog-card__image {
  position: relative;
  overflow: hidden;
}

.blog-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,46,61,0.6) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.blog-card:hover .blog-card__image::after {
  opacity: 1;
}

/* ============================================
   SUBPAGES - Page Hero, Blog, Single, Sidebar
   ============================================ */

/* === PAGE HERO === */
.page-hero {
  padding: 140px 0 60px;
  background: var(--surface-light);
  position: relative;
}

.page-hero--dark {
  background: var(--navy-deep);
  color: var(--text-white);
}

.page-hero--dark .page-hero__title {
  color: var(--text-white);
}

.page-hero--dark .page-hero__desc {
  color: var(--text-light);
}

.page-hero--dark .section-label {
  color: var(--gold);
}

.page-hero__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.15;
}

.page-hero__desc {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 640px;
  line-height: 1.7;
}

/* === BREADCRUMBS === */
.breadcrumbs {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.breadcrumbs a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.page-hero--dark .breadcrumbs {
  color: var(--text-muted);
}

.page-hero--dark .breadcrumbs a {
  color: var(--accent-glow);
}

/* === PAGE CONTENT === */
.page-content {
  padding: 60px 0 80px;
}

.page-content__body {
  max-width: 780px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
}

.page-content__body h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--surface-light);
}

.page-content__body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--navy-light);
  margin: 36px 0 16px;
}

.page-content__body p {
  margin-bottom: 20px;
}

.page-content__body ul,
.page-content__body ol {
  margin: 20px 0;
  padding-left: 24px;
}

.page-content__body li {
  margin-bottom: 10px;
  position: relative;
}

.page-content__body ul li::marker {
  color: var(--accent);
}

.page-content__body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-content__body a:hover {
  color: var(--accent-dark);
}

.page-content__body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 24px 0;
  box-shadow: 0 4px 20px rgba(0,46,61,0.1);
}

.page-content__body blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--surface-light);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-dark);
}

/* === SINGLE POST === */
.single-post__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.single-post__meta a {
  color: var(--gold);
  text-decoration: none;
}

.single-post__featured {
  margin-top: -30px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.single-post__image {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,46,61,0.15);
}

.single-post__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}

@media (max-width: 1024px) {
  .single-post__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* === SIDEBAR === */
.sidebar-cta {
  background: var(--navy-deep);
  border-radius: 12px;
  padding: 32px;
  color: var(--text-white);
  margin-bottom: 28px;
}

.sidebar-cta__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sidebar-cta__desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Sidebar CTA na navy - mocny zloty primary + czytelny outline */
.sidebar-cta .btn--primary {
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(252,180,0,.3);
}
.sidebar-cta .btn--primary:hover {
  background: var(--gold-light);
}
.sidebar-cta .btn--outline-dark {
  background: rgba(252,180,0,.06);
  color: var(--gold-light);
  border: 1.5px solid rgba(252,180,0,.55);
}
.sidebar-cta .btn--outline-dark:hover {
  background: rgba(252,180,0,.14);
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn--full {
  display: block;
  text-align: center;
}

.sidebar-widget {
  background: var(--surface-light);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 28px;
}

.sidebar-widget__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #E8ECF1;
}

.sidebar-widget__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-widget__list li {
  margin-bottom: 10px;
}

.sidebar-widget__list a {
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-widget__list a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.sidebar-widget__list a:hover {
  color: var(--accent);
}

/* === BLOG LISTING === */
.blog-listing {
  padding: 60px 0 80px;
}

.blog-listing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

/* Hero card - first post spans full width */
.blog-card--hero {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  border-radius: 12px;
}

.blog-card--hero .blog-card__image {
  aspect-ratio: 16/9;
  min-height: 280px;
}

.blog-card--hero .blog-card__image img {
  border-radius: 12px 0 0 12px;
}

.blog-card--hero .blog-card__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-card--hero .blog-card__title {
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 12px;
}

.blog-card--hero .blog-card__excerpt {
  font-size: 0.95rem;
  line-height: 1.7;
  -webkit-line-clamp: 4;
}

@media (max-width: 1024px) {
  .blog-listing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-card--hero {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .blog-listing__grid {
    grid-template-columns: 1fr;
  }
  .blog-card--hero {
    grid-template-columns: 1fr;
  }
  .blog-card--hero .blog-card__image img {
    border-radius: 12px 12px 0 0;
  }
  .blog-card--hero .blog-card__image {
    min-height: 200px;
  }
}

.blog-card__image--placeholder {
  background: var(--surface-light);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.blog-card__meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.blog-card__readmore {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-top: 12px;
  display: inline-block;
}

.blog-pagination {
  text-align: center;
  padding: 20px 0;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  margin: 0 4px;
  font-size: 0.9rem;
  color: var(--text-body);
  text-decoration: none;
  transition: background 0.2s cubic-bezier(0.23, 1, 0.32, 1),
              border-color 0.2s cubic-bezier(0.23, 1, 0.32, 1),
              color 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid #E8ECF1;
}

.blog-pagination .page-numbers.current {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.blog-pagination .page-numbers:hover:not(.current) {
  background: var(--surface-light);
  border-color: var(--accent);
}

.blog-listing__empty {
  text-align: center;
  padding: 80px 20px;
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* === RELATED POSTS === */
.related-posts {
  padding: 60px 0 80px;
  background: var(--surface-light);
}

/* === FIGURE / FIGCAPTION === */
.page-content__body figure {
  margin: 32px 0;
  position: relative;
}

.page-content__body figure img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0,46,61,0.12);
}

/* Widoczny podpis pod zdjeciem ukryty (to byl wyciek ALT/nazwy pliku). ALT zostaje w <img> dla SEO. */
.page-content__body figcaption,
.page-content__body .wp-caption-text {
  display: none;
}

/* === H4, H5, H6 in content === */
.page-content__body h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 28px 0 12px;
}

.page-content__body h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin: 24px 0 12px;
  text-transform: none;
  letter-spacing: 0;
}

.page-content__body h6 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin: 20px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* === STRONG in content === */
.page-content__body strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* === TABLE in content === */
.page-content__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 0.9rem;
}

.page-content__body th {
  background: var(--navy-deep);
  color: var(--text-white);
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 16px;
  text-align: left;
}

.page-content__body td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--surface-light);
}

.page-content__body tr:hover td {
  background: var(--surface-light);
}

/* === FIRST PARAGRAPH accent === */
.page-content__body > p:first-child {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-dark);
}

/* === BLOCKQUOTE enhanced === */
.page-content__body blockquote strong {
  color: var(--accent-dark);
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

/* === HORIZONTAL RULE === */
.page-content__body hr {
  border: none;
  height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
  margin: 48px 0;
}

/* === SIDEBAR sticky on desktop === */
@media (min-width: 1025px) {
  .single-post__sidebar {
    position: sticky;
    top: 100px;
  }
}

/* === META SEP === */
.meta-sep {
  margin: 0 8px;
  color: var(--text-muted);
  opacity: 0.5;
}

/* === CONTENT CTA BLOCK === */
.content-cta {
  background: var(--navy-deep);
  color: var(--text-white);
  padding: 32px;
  border-radius: 12px;
  margin: 40px 0;
  text-align: center;
}

.content-cta p,
.svc-intro__body .content-cta p,
.svc-intro__body .content-cta p:first-child {
  color: var(--text-white);
  margin: 0 0 8px;
  border-bottom: none;
  padding-bottom: 0;
}

.content-cta p:first-child,
.svc-intro__body .content-cta p:first-child {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-white);
}

.content-cta a {
  color: var(--gold);
  font-weight: 500;
}

.content-cta a:hover {
  color: #fff;
}

/* === SERVICE PAGE CONTENT POLISH === */
.page-content__body h3 + p {
  margin-top: 0;
}

/* Better spacing for H2 sections */
.page-content__body h2 + h3 {
  margin-top: 24px;
}

/* Inline CTA links in content */
.page-content__body a[href^="tel:"] {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.page-content__body a[href^="tel:"]:hover {
  text-decoration: underline;
}

/* City grid multi-column */
.page-content__body .city-grid {
  columns: 3;
  column-gap: 24px;
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.page-content__body .city-grid li {
  break-inside: avoid;
  padding: 6px 0;
}

.page-content__body .city-grid li p {
  margin: 0;
}

.page-content__body .city-grid li a {
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

@media (hover: hover) and (pointer: fine) {
  .page-content__body .city-grid li a:hover {
    color: var(--accent);
  }
}

@media (max-width: 768px) {
  .page-content__body .city-grid {
    columns: 2;
  }
}

@media (max-width: 480px) {
  .page-content__body .city-grid {
    columns: 1;
  }
}

/* FAQ in page content - numbered H3 questions */
.page-content__body h3[id*="jak-"],
.page-content__body h3[id*="czy-"],
.page-content__body h3[id*="po-czym"],
.page-content__body h3[id*="jakie-"],
.page-content__body h3[id*="ile-"],
.page-content__body h3[id*="kiedy-"],
.page-content__body h3[id*="dlaczego-"],
.page-content__body h3[id*="co-"] {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 16px 0 0;
  margin: 0;
  border-bottom: none;
}

/* Standalone paragraph CTA styling (phone/email at bottom) */
.page-content__body > p:last-child a[href^="tel:"],
.page-content__body > p:last-child a[href^="mailto:"] {
  display: inline-block;
  font-weight: 600;
}

/* === #4 PREFERS-REDUCED-MOTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__bg-image img {
    transform: none !important;
  }
  .reveal, .reveal-left, .reveal-right, .stagger-children > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* === #7 UPPERCASE OFF for content headings === */
.page-content__body h2,
.page-content__body h3,
.page-content__body h4,
.page-content__body h5,
.page-content__body h6 {
  text-transform: none;
  letter-spacing: 0;
}

.page-content__body h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--surface-light);
}

.page-content__body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 36px 0 14px;
}

/* === #8 STANDALONE PAGE MAX-WIDTH === */
.page-content > .container > .page-content__body {
  max-width: 720px;
}

/* === #9 KONTAKT - long lists get columns (8+ items) === */
.page-content__body ul.city-grid {
  columns: 2;
  column-gap: 32px;
}

@media (min-width: 768px) {
  .page-content__body ul.city-grid {
    columns: 3;
  }
}

/* === #6 BLOCKQUOTE REVIEWS ENHANCED === */
.page-content__body blockquote {
  background: var(--surface-light);
  border: 1px solid #E8ECF1;
  border-radius: 10px;
  padding: 24px 28px;
  margin: 16px 0;
  border-left: none;
  position: relative;
}

.page-content__body blockquote::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  left: 16px;
  font-size: 2.5rem;
  font-family: 'Crimson Pro', Georgia, serif;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
}

.page-content__body blockquote p {
  padding-left: 20px;
  margin-bottom: 0;
}

.page-content__body blockquote strong {
  color: var(--accent-dark);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 8px;
}

/* ============================================
   SERVICE LANDING PAGE - .svc-* components
   ============================================ */

/* === SVC HERO === */
.svc-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center 30%;
  overflow: hidden;
}

.svc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,30,41,0.65) 0%,
    rgba(0,30,41,0.78) 40%,
    rgba(0,46,61,0.95) 100%
  );
  z-index: 1;
}

.svc-hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 0 56px;
  animation: cinReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.svc-hero__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 700px;
}

.svc-hero__sub {
  max-width: 560px;
  margin: 0 0 22px;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.65;
  color: rgba(233, 240, 244, 0.9);
}
.svc-hero--b .svc-hero__sub { margin-left: 0; margin-right: 0; }

.svc-hero .breadcrumbs {
  margin-top: 0;
  margin-bottom: 28px;
}

.svc-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ============================================================
   HERO CINEMATIC - wariant miast (.svc-hero--city)
   Ken Burns (GPU transform), gradient lewo-ciemny, stagger entrance,
   pasek zaufania glass. Reduced-motion respektowane.
   ============================================================ */
.svc-hero--city { min-height: clamp(560px, 78vh, 760px); align-items: center; background: var(--navy-deep); }
.svc-hero--city .svc-hero__media {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center 35%;
  transform: scale(1.04); animation: heroKenBurns 22s ease-out forwards; will-change: transform;
}
@keyframes heroKenBurns { to { transform: scale(1.13); } }
.svc-hero--city .svc-hero__overlay {
  background:
    linear-gradient(95deg, rgba(0,20,28,.95) 0%, rgba(0,30,41,.85) 36%, rgba(0,30,41,.4) 72%, rgba(0,46,61,.25) 100%),
    linear-gradient(to top, rgba(0,20,28,.7) 0%, transparent 32%);
  z-index: 1;
}
.svc-hero--city .svc-hero__content { position: relative; z-index: 2; max-width: 700px; padding-top: clamp(76px, 11vh, 120px); padding-bottom: clamp(64px, 10vh, 104px); }
.svc-hero__eyebrow { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: .26em; font-size: .8rem; font-weight: 600; color: var(--gold); margin-bottom: 18px; }
.svc-hero--city .svc-hero__title { margin: 0 0 10px; line-height: 1.04; }
.svc-hero__title-main { display: block; font-family: 'Oswald', sans-serif; text-transform: uppercase; font-weight: 600; color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.2rem); text-shadow: 0 2px 30px rgba(0,20,28,.4); }
.svc-hero__title-sub { display: block; font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: .03em; color: var(--gold); font-weight: 500; font-size: clamp(.95rem, 1.6vw, 1.2rem); margin-top: 8px; }
.svc-hero__lead { color: rgba(240,244,246,.85); font-size: clamp(1rem, 1.3vw, 1.08rem); line-height: 1.7; max-width: 540px; margin: 22px 0 32px; }
.breadcrumbs--hero { margin: 0 0 20px; font-size: .76rem; opacity: .55; }
.breadcrumbs--hero a { color: rgba(240,244,246,.7); }
.svc-hero__trust { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; background: rgba(0,18,26,.5); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-top: 1px solid rgba(252,180,0,.16); }
.svc-hero__trust-row { display: flex; gap: clamp(20px, 4vw, 48px); flex-wrap: wrap; padding-top: 16px; padding-bottom: 16px; }
.svc-hero__trust-item { display: inline-flex; align-items: center; gap: 11px; font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: .07em; font-size: .82rem; font-weight: 500; color: rgba(240,244,246,.9); }
.svc-hero__trust-item svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.svc-hero--city .svc-hero__eyebrow, .svc-hero--city .svc-hero__title, .svc-hero--city .svc-hero__lead, .svc-hero--city .svc-hero__actions, .svc-hero--city .breadcrumbs--hero { animation: heroRise .8s cubic-bezier(.22,1,.36,1) both; }
.svc-hero--city .breadcrumbs--hero { animation-delay: 0s; }
.svc-hero--city .svc-hero__eyebrow { animation-delay: .08s; }
.svc-hero--city .svc-hero__title { animation-delay: .18s; }
.svc-hero--city .svc-hero__lead { animation-delay: .3s; }
.svc-hero--city .svc-hero__actions { animation-delay: .4s; }
.svc-hero--city .svc-hero__trust { animation: heroRise .8s cubic-bezier(.22,1,.36,1) .5s both; }
@keyframes heroRise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .svc-hero--city .svc-hero__media { animation: none; transform: scale(1.04); }
  .svc-hero--city .svc-hero__eyebrow, .svc-hero--city .svc-hero__title, .svc-hero--city .svc-hero__lead, .svc-hero--city .svc-hero__actions, .svc-hero--city .breadcrumbs--hero, .svc-hero--city .svc-hero__trust { animation: none; opacity: 1; transform: none; }
}
@media (max-width: 768px) { .svc-hero__trust-row { gap: 10px 18px; } .svc-hero__trust-item { font-size: .72rem; } }

/* === SVC INTRO === */
.svc-intro {
  padding: clamp(56px, 7vw, 100px) 0;
  background: var(--surface-light);
  position: relative;
  overflow: hidden;
}

.svc-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 85% 30%, rgba(0,137,182,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.svc-intro__grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.svc-intro__body {
  text-align: left;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-body);
}

.svc-intro__body p {
  margin-bottom: 20px;
}

.svc-intro__body p:first-child {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.6;
  padding-bottom: 20px;
  border-bottom: 1px solid #D8E4E8;
  margin-bottom: 20px;
}

.svc-intro__body p:last-of-type {
  margin-bottom: 0;
}

.svc-intro__body a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(0,137,182,0.3);
  text-underline-offset: 3px;
  transition: color 0.2s ease-out, text-decoration-color 0.2s ease-out;
}

.svc-intro__body a:hover {
  color: var(--accent-dark);
  text-decoration-color: var(--accent-dark);
}

.svc-intro__body a[href^="tel:"] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--text-white);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 12px;
  transition: background 0.25s cubic-bezier(0.23, 1, 0.32, 1), transform 0.25s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.25s ease-out;
}

.svc-intro__body a[href^="tel:"]:hover {
  background: var(--accent-dark);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* ===== SEKCJE DODATKOWE (free-form z Wixa) ===== */
.svc-extra {
  padding: clamp(48px, 6vw, 84px) 0;
  background: var(--surface-light);
  position: relative;
}
.svc-extra + .svc-extra { padding-top: 0; }
.svc-extra__head {
  max-width: 780px;
  margin-bottom: 26px;
}
.svc-extra__head .section-title {
  position: relative;
  padding-top: 20px;
}
.svc-extra__head .section-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.svc-extra__lead {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text-body);
  max-width: 72ch;
}
.svc-extra__lead p { margin-bottom: 16px; }
.svc-extra__lead p:last-child { margin-bottom: 0; }
.svc-extra__lead a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(0,137,182,0.3);
  text-underline-offset: 3px;
  transition: color 0.2s ease-out, text-decoration-color 0.2s ease-out;
}
.svc-extra__lead a:hover {
  color: var(--accent-dark);
  text-decoration-color: var(--accent-dark);
}
.svc-extra__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.svc-extra__card {
  background: var(--surface-white, #fff);
  border: 1px solid #E2ECF0;
  border-radius: 14px;
  padding: 24px 24px 22px;
  transition: border-color 0.25s ease, transform 0.25s cubic-bezier(0.23,1,0.32,1), box-shadow 0.25s ease;
}
.svc-extra__card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,46,61,0.08);
}
.svc-extra__card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.08rem;
  line-height: 1.35;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.svc-extra__card-title a {
  color: var(--text-dark);
  text-decoration: none;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 0.3s ease, color 0.25s ease;
}
.svc-extra__card:hover .svc-extra__card-title a {
  color: var(--accent);
  background-size: 100% 2px;
}
.svc-extra__card-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-body);
}

/* Uklad 2-kolumnowy gdy sekcja ma zdjecie */
.svc-extra--media .svc-extra__layout {
  display: grid;
  grid-template-columns: 1fr clamp(300px, 40%, 480px);
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
.svc-extra--media-left .svc-extra__layout {
  grid-template-columns: clamp(300px, 40%, 480px) 1fr;
}
.svc-extra--media-left .svc-extra__main { order: 2; }
.svc-extra--media-left .svc-extra__media { order: 1; }
.svc-extra--media .svc-extra__lead { max-width: none; }
.svc-extra__media {
  position: relative;
  align-self: stretch;
  min-height: 320px;
}
.svc-extra__media img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 16px;
  display: block;
  /* Brandowy filtr - stonowanie zdjecia pod spojny detektywistyczny klimat */
  filter: grayscale(0.5) contrast(1.05) brightness(0.98);
}
/* Brandowy duotone (teal/navy multiply) - ujednolica zdjecia jak na kartach uslug */
.svc-extra__media::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(0,137,182,0.22) 0%, rgba(0,46,61,0.34) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}
.svc-extra__media::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(0,46,61,0.12);
  pointer-events: none;
  z-index: 2;
}
/* Uklad editorial gdy sekcja to czysta proza (bez zdjecia, bez podpunktow):
   tytul w lewej kolumnie, wyrozniona tresc w prawej - jak wstep w magazynie */
.svc-extra--editorial .svc-extra__main {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.5fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.svc-extra--editorial .svc-extra__head {
  margin-bottom: 0;
  position: sticky;
  top: 96px;
}
.svc-extra--editorial .svc-extra__head .section-title {
  position: relative;
  padding-top: 22px;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.15;
}
.svc-extra--editorial .svc-extra__head .section-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.svc-extra--editorial .svc-extra__lead { max-width: none; }
.svc-extra--editorial .svc-extra__lead p:first-child {
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 18px;
}
@media (max-width: 820px) {
  .svc-extra--editorial .svc-extra__main { grid-template-columns: 1fr; gap: 18px; }
  .svc-extra--editorial .svc-extra__head { position: static; }
}

@media (max-width: 860px) {
  .svc-extra--media .svc-extra__layout,
  .svc-extra--media-left .svc-extra__layout { grid-template-columns: 1fr; }
  .svc-extra--media-left .svc-extra__main { order: 1; }
  .svc-extra--media-left .svc-extra__media { order: 2; }
  .svc-extra__media { min-height: 0; margin-top: 24px; }
  .svc-extra__media img { max-height: 320px; }
}
@media (max-width: 600px) {
  .svc-extra__grid { grid-template-columns: 1fr; }
}

/* Lead-in nad mapa zasiegu */
.locations__intro {
  max-width: 760px;
  margin: 0 auto clamp(24px, 3vw, 40px);
  text-align: center;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-body);
}
.locations__intro p { margin: 0; }
.locations__intro a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(0,137,182,0.3);
}

/* ===== HUB KATEGORII (strony nadrzedne) ===== */
.hub-intro { padding: clamp(40px, 5vw, 72px) 0; background: var(--surface-light); }
.hub-intro__body { max-width: 820px; font-size: 1.0625rem; line-height: 1.85; color: var(--text-body); }
.hub-intro__body p { margin-bottom: 16px; }
.hub-intro__body p:last-child { margin-bottom: 0; }
.hub-intro__body p:first-child { font-size: 1.18rem; color: var(--text-dark); font-weight: 500; line-height: 1.7; }
.hub-intro__body a { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(0,137,182,0.3); }

.hub-tiles { padding: clamp(48px, 6vw, 90px) 0; background: var(--navy-deep); position: relative; }
.hub-tiles__head { text-align: center; max-width: 640px; margin: 0 auto clamp(32px, 4vw, 52px); }
.hub-tiles__head .section-label { color: var(--gold); justify-content: center; }
.hub-tiles__head .section-title { color: var(--text-white); }
.hub-tiles__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.hub-tile {
  position: relative; display: flex; flex-direction: column; gap: 7px;
  padding: 30px 28px 58px; background: rgba(0, 62, 82, 0.5);
  border: 1px solid rgba(191, 214, 222, 0.12); border-radius: 14px;
  text-decoration: none; overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.hub-tile:hover { transform: translateY(-4px); border-color: var(--accent); background: rgba(0, 62, 82, 0.85); box-shadow: 0 14px 40px rgba(0,0,0,0.22); }
.hub-tile__num { font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 700; color: var(--gold); opacity: 0.5; line-height: 1; }
.hub-tile__title { font-family: 'Oswald', sans-serif; font-size: 1.16rem; line-height: 1.25; color: var(--text-white); text-transform: uppercase; letter-spacing: 0.02em; margin: 4px 0 0; }
.hub-tile__desc { font-size: 0.92rem; line-height: 1.6; color: rgba(207, 224, 231, 0.78); margin: 0; }
.hub-tile__arrow { position: absolute; right: 24px; bottom: 22px; font-size: 1.35rem; color: var(--accent); transition: transform 0.25s ease; }
.hub-tile:hover .hub-tile__arrow { transform: translateX(6px); }
@media (max-width: 600px) { .hub-tiles__grid { grid-template-columns: 1fr; } }

/* ===== CROSS-LINK miasta (detektyw <-> podsluchy) ===== */
/* ============================================================
   USLUGI na stronie miasta (POD mapa) - JASNY INDEKS-KATALOG.
   Celowo INNY niz granatowe opisowe kafle "Dlaczego my": jasne tlo,
   plaski indeks z numeracja + linie dzialowe (zero kart), granatowy
   tekst, zlote akcenty. Wiersze klikalne -> jada w prawo, zlota linia.
   ============================================================ */
.city-svclinks { padding: clamp(58px, 7vw, 96px) 0; background: var(--surface-light); position: relative; }
.city-svclinks__header { margin: 0 0 clamp(30px, 4vw, 46px); }
.city-svclinks__header .section-label { justify-content: flex-start; }
.city-svclinks__list { display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(36px, 5vw, 72px); position: relative; counter-reset: svc; }
.city-svclinks__row {
  display: grid; grid-template-columns: auto auto 1fr auto; align-items: center; gap: 18px;
  padding: 20px 4px; text-decoration: none; position: relative;
  border-top: 1px solid rgba(0, 46, 61, 0.1);
  transition: padding-left 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.city-svclinks__row::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 0; height: 2px; background: var(--gold); transition: width 0.35s cubic-bezier(0.23, 1, 0.32, 1); }
@media (hover: hover) { .city-svclinks__row:hover { padding-left: 12px; } .city-svclinks__row:hover::after { width: 100%; } }
.city-svclinks__row::before { counter-increment: svc; content: counter(svc, decimal-leading-zero); font-family: 'Oswald', sans-serif; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; color: var(--accent); min-width: 26px; }
.city-svclinks__ico { width: 40px; height: 40px; min-width: 40px; border-radius: 11px; background: var(--navy-deep); display: flex; align-items: center; justify-content: center; }
.city-svclinks__ico svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.city-svclinks__title { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.03em; font-size: 0.98rem; font-weight: 600; color: var(--text-dark); line-height: 1.25; transition: color 0.25s ease; }
@media (hover: hover) { .city-svclinks__row:hover .city-svclinks__title { color: var(--navy-light); } }
.city-svclinks__arrow { color: var(--accent); font-size: 1.1rem; transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), color 0.25s ease; }
@media (hover: hover) { .city-svclinks__row:hover .city-svclinks__arrow { transform: translateX(5px); color: var(--gold); } }
@media (prefers-reduced-motion: reduce) { .city-svclinks__row, .city-svclinks__arrow, .city-svclinks__row::after { transition: none; } }
@media (max-width: 720px) { .city-svclinks__list { grid-template-columns: 1fr; } }

.city-crosslink { padding: clamp(28px, 4vw, 52px) 0; background: var(--surface-light); }
/* gdy idzie zaraz po indeksie uslug (to samo jasne tlo) - domkniecie bloku, bez duzej przerwy */
.city-svclinks + .city-crosslink { padding-top: 0; }
.city-crosslink__box {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  max-width: 760px; margin: 0 auto; padding: 24px 28px;
  background: var(--surface-white, #fff); border: 1px solid #E2ECF0; border-radius: 14px;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.23,1,0.32,1), box-shadow 0.25s ease, border-color 0.25s ease;
}
.city-crosslink__box:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: 0 12px 30px rgba(0,46,61,0.08); }
.city-crosslink__label { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent-dark); font-weight: 600; margin-bottom: 5px; }
.city-crosslink__title { display: block; font-family: 'Oswald', sans-serif; font-size: 1.2rem; color: var(--text-dark); text-transform: uppercase; line-height: 1.2; }
.city-crosslink__arrow { font-size: 1.5rem; color: var(--accent); transition: transform 0.25s ease; flex-shrink: 0; }
.city-crosslink__box:hover .city-crosslink__arrow { transform: translateX(6px); }
@media (max-width: 560px) { .city-crosslink__box { padding: 20px; } .city-crosslink__title { font-size: 1.05rem; } }

/* ===== STRONA SZKOLENIA (cyberbezpieczenstwo) ===== */
.szk-values { padding: clamp(56px, 7vw, 96px) 0; background: var(--surface-light); }
.szk-values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.szk-value { background: var(--surface-white, #fff); border: 1px solid #E2ECF0; border-radius: 14px; padding: 34px 30px; transition: transform 0.25s cubic-bezier(0.23,1,0.32,1), box-shadow 0.25s ease, border-color 0.25s ease; }
.szk-value:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 14px 36px rgba(0,46,61,0.08); }
.szk-value__icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: rgba(0,137,182,0.1); color: var(--accent-dark); margin-bottom: 22px; }
.szk-value__icon svg { width: 26px; height: 26px; }
.szk-value__title { font-family: 'Oswald', sans-serif; font-size: 1.16rem; line-height: 1.25; color: var(--text-dark); text-transform: uppercase; margin-bottom: 14px; }
.szk-value__text { font-size: 0.95rem; line-height: 1.72; color: var(--text-body); margin: 0; }

.szk-plan { padding: clamp(56px, 7vw, 100px) 0; background: var(--navy-deep); }
.szk-plan__head { text-align: center; max-width: 640px; margin: 0 auto clamp(34px, 4vw, 54px); }
.szk-plan__head .section-label { color: var(--gold); justify-content: center; }
.szk-plan__grid { display: grid; grid-template-columns: 1fr; gap: 14px; max-width: 920px; margin: 0 auto; }
.szk-plan__item { display: flex; gap: 22px; align-items: flex-start; padding: 24px 28px; background: rgba(191,214,222,0.06); border: 1px solid rgba(191,214,222,0.12); border-radius: 12px; transition: background 0.2s ease, border-color 0.2s ease; }
.szk-plan__item:hover { background: rgba(191,214,222,0.1); border-color: rgba(0,163,217,0.3); }
.szk-plan__num { font-family: 'Oswald', sans-serif; font-size: 1.7rem; font-weight: 700; color: var(--gold); opacity: 0.75; line-height: 1; flex-shrink: 0; min-width: 42px; }
.szk-plan__title { font-family: 'Oswald', sans-serif; font-size: 1.08rem; line-height: 1.3; color: var(--text-white); text-transform: uppercase; letter-spacing: 0.01em; margin: 2px 0 8px; }
.szk-plan__body p { margin: 0; color: rgba(207,224,231,0.8); font-size: 0.96rem; line-height: 1.68; }
@media (max-width: 860px) { .szk-values__grid { grid-template-columns: 1fr; } .szk-plan__item { padding: 20px; gap: 16px; } }

/* Listy z checkmarkami w sekcjach extra (huby: jak pomagamy / dlaczego warto) */
/* ===== SVC-SHIELD: tematyczny band "zagrozenie -> ochrona" (firmy) ===== */
.svc-shield {
  position: relative;
  padding: 92px 0;
  background: radial-gradient(125% 120% at 50% -10%, var(--navy-light) 0%, var(--navy) 42%, var(--navy-deep) 100%);
  color: var(--text-white);
  overflow: hidden;
}
.svc-shield__bg {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: radial-gradient(circle at 1px 1px, rgba(0, 163, 217, 0.16) 1px, transparent 1.7px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse 75% 55% at 50% 0%, #000 28%, transparent 78%);
  mask-image: radial-gradient(ellipse 75% 55% at 50% 0%, #000 28%, transparent 78%);
}
.svc-shield__head { position: relative; max-width: 730px; margin: 0 auto 50px; text-align: center; }
.svc-shield__head .section-label { justify-content: center; }
.svc-shield__head .section-title { margin: 0 auto; }
.svc-shield__lead { margin-top: 18px; color: var(--text-light); font-size: 1.04rem; line-height: 1.72; }
.svc-shield__lead a { color: var(--accent-glow); text-decoration: none; border-bottom: 1px solid rgba(0, 163, 217, 0.4); }
.svc-shield__grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-shield__card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(0, 163, 217, 0.16);
  border-radius: 16px;
  padding: 32px 28px 30px;
  overflow: hidden;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), border-color .35s ease, box-shadow .35s ease, background .35s ease;
}
.svc-shield__card::after {
  content: ''; position: absolute; top: 14px; right: 14px; width: 13px; height: 13px;
  border-top: 2px solid rgba(0, 163, 217, 0.5); border-right: 2px solid rgba(0, 163, 217, 0.5);
  border-radius: 0 4px 0 0; opacity: .55; transition: opacity .3s ease;
}
.svc-shield__card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 163, 217, 0.5);
  background: linear-gradient(180deg, rgba(0, 137, 182, 0.12), rgba(255,255,255,0.02));
  box-shadow: 0 18px 44px rgba(0, 12, 20, 0.45);
}
.svc-shield__card:hover::after { opacity: 1; }
.svc-shield__icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(0, 137, 182, 0.16); border: 1px solid rgba(0, 163, 217, 0.32);
  margin-bottom: 20px; transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.svc-shield__card:hover .svc-shield__icon { transform: scale(1.08) rotate(-3deg); }
.svc-shield__icon svg { width: 27px; height: 27px; fill: none; stroke: var(--accent-glow); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.svc-shield__card-title { font-family: 'Oswald', sans-serif; font-size: 1.16rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; color: #fff; margin-bottom: 10px; }
.svc-shield__card p { color: var(--text-light); font-size: 0.93rem; line-height: 1.62; }
.svc-shield__card p strong { color: #fff; font-weight: 600; }
@media (max-width: 860px) {
  .svc-shield { padding: 64px 0; }
  .svc-shield__grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .svc-shield__scan { display: none; }
  .svc-shield__card, .svc-shield__icon { transition: none; }
}

.svc-extra__lead--checks ul { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 11px; }
.svc-extra__lead--checks li { position: relative; padding-left: 32px; line-height: 1.55; color: var(--text-body); }
.svc-extra__lead--checks li::before {
  content: '✓'; position: absolute; left: 0; top: 1px;
  width: 21px; height: 21px; display: flex; align-items: center; justify-content: center;
  background: rgba(0,137,182,0.12); color: var(--accent-dark);
  border-radius: 50%; font-size: 11px; font-weight: 700;
}
.svc-extra__lead--checks p { margin-bottom: 14px; }
.svc-extra__sub { margin-top: 30px; }
.svc-extra__sub-title { font-family: 'Oswald', sans-serif; font-size: 1.12rem; line-height: 1.25; text-transform: uppercase; color: var(--text-dark); margin: 0 0 14px; position: relative; padding-top: 18px; }
.svc-extra__sub-title::before { content: ''; position: absolute; top: 0; left: 0; width: 38px; height: 2px; background: var(--accent); border-radius: 2px; }

/* ===== VIDEO HUB ===== */
.vid__head { max-width: 640px; margin: 0 auto clamp(30px, 4vw, 48px); text-align: center; }
.vid__head .section-label { justify-content: center; }
.vid-social { display: flex; align-items: center; gap: 14px 18px; flex-wrap: wrap; margin-top: 8px; }
.vid-social__label { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.78rem; font-weight: 600; color: rgba(240,244,246,.8); }
.vid-social__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.vid-social__btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 22px; border: 1px solid rgba(255,255,255,.18); border-radius: 8px; background: rgba(255,255,255,.08); color: #F0F4F6; font-size: 1rem; font-weight: 600; line-height: 1; text-decoration: none; transition: transform .18s ease-out, background-color .2s ease, border-color .2s ease; }
.vid-social__btn:hover { color: #fff; transform: translateY(-2px); }
.vid-social__btn:active { transform: translateY(0) scale(.97); }
.vid-social__icon { width: 22px; height: 22px; flex: 0 0 22px; }
.vid-social__btn--yt:hover { background: #FF0000; border-color: transparent; }
.vid-social__btn--tt:hover { background: #25272B; border-color: rgba(255,255,255,.25); }
.vid-social__btn--ig:hover { background: linear-gradient(45deg,#feda75,#d62976,#962fbf,#4f5bd5); border-color: transparent; }
.vid-social__btn--fb:hover { background: #1877F2; border-color: transparent; }
.vid-social__btn--li:hover { background: #0A66C2; border-color: transparent; }
.vid-films { padding: clamp(56px, 7vw, 96px) 0; background: var(--surface-light); }
.vid-films__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.vid-film .arc-video { border-radius: 14px; box-shadow: 0 18px 50px rgba(0,46,61,0.18), 0 0 0 1px rgba(0,46,61,0.05); }
.vid-film__title { font-family: 'Oswald', sans-serif; font-size: 1.02rem; line-height: 1.32; color: var(--text-dark); margin: 18px 0 0; }
.vid-shorts { padding: clamp(56px, 7vw, 96px) 0; background: var(--navy-deep); }
.vid-shorts .vid__head .section-label { color: var(--gold); }
.vid-shorts__carousel { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x proximity; padding: 4px 0 18px; scrollbar-width: thin; scrollbar-color: var(--accent) rgba(191,214,222,0.15); }
.vid-shorts__carousel .arc-video--vertical { flex: 0 0 auto; width: clamp(190px, 22vw, 248px); scroll-snap-align: start; }
.vid-shorts__carousel::-webkit-scrollbar { height: 8px; }
.vid-shorts__carousel::-webkit-scrollbar-track { background: rgba(191,214,222,0.12); border-radius: 4px; }
.vid-shorts__carousel::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }
.vid-shorts__more { text-align: center; margin-top: 30px; }
.vid-carousel { position: relative; }
.vid-carousel::before, .vid-carousel::after { content: ''; position: absolute; top: 0; bottom: 18px; width: 64px; z-index: 2; pointer-events: none; }
.vid-carousel::before { left: 0; background: linear-gradient(90deg, var(--navy-deep), transparent); }
.vid-carousel::after { right: 0; background: linear-gradient(270deg, var(--navy-deep), transparent); }
.vid-carousel__nav { position: absolute; top: calc(50% - 9px); transform: translateY(-50%); z-index: 4; width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(191,214,222,0.22); background: rgba(0,46,61,0.88); color: var(--text-white); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s cubic-bezier(0.2,0.8,0.2,1); }
.vid-carousel__nav:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-50%) scale(1.08); }
.vid-carousel__nav svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.vid-carousel__nav--prev { left: -10px; }
.vid-carousel__nav--next { right: -10px; }
.vid-shorts__carousel .arc-video--vertical { transition: transform 0.3s cubic-bezier(0.2,0.8,0.2,1); }
.vid-shorts__carousel .arc-video--vertical:hover { transform: translateY(-5px); }
@media (prefers-reduced-motion: reduce) { .vid-social__btn, .vid-social__btn:hover, .vid-social__btn:active { transition: background-color .2s ease, border-color .2s ease; transform: none; } }
@media (max-width: 600px) { .vid-social { align-items: flex-start; flex-direction: column; } .vid-social__btns { width: 100%; } .vid-social__btn { flex: 1 1 calc(50% - 6px); min-width: 136px; padding: 14px 16px; } }
@media (max-width: 680px) { .vid-carousel__nav { display: none; } .vid-carousel::before, .vid-carousel::after { width: 28px; } }
.arc-video.arc-video--vertical { aspect-ratio: 9 / 16; border-radius: 14px; box-shadow: 0 14px 40px rgba(0,0,0,0.35); }
.arc-video--vertical .arc-video__play, .arc-video--vertical .arc-video__play-btn, .arc-video--vertical .arc-video__play-pulse { width: 58px; height: 58px; }
.arc-video--vertical .arc-video__play-btn svg { width: 22px; height: 22px; }
@media (max-width: 980px) { .vid-films__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px) { .vid-films__grid { grid-template-columns: 1fr; } }

.hub-detection {
  padding: clamp(70px, 8vw, 120px) 0;
  background: linear-gradient(180deg, var(--surface-white) 0%, #EAF3F6 100%);
  overflow: hidden;
}
.hub-detection__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) 1.12fr;
  gap: clamp(38px, 6vw, 86px);
  align-items: center;
}
.hub-detection__media {
  position: relative;
  min-height: 520px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--navy-deep);
  box-shadow: 0 24px 70px rgba(0, 46, 61, 0.22);
}
.hub-detection__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, rgba(0, 46, 61, 0.78), rgba(0, 137, 182, 0.18) 58%, rgba(252, 180, 0, 0.16));
  pointer-events: none;
}
.hub-detection__media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08);
  transform: scale(1.03);
}
.hub-detection__media-label {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 10px 14px;
  border: 1px solid rgba(252, 180, 0, 0.35);
  border-radius: 4px;
  background: rgba(0, 46, 61, 0.82);
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}
.hub-detection__content > p {
  max-width: 660px;
  margin: 0 0 28px;
  color: var(--text-body);
  font-size: 1.04rem;
  line-height: 1.78;
}
.hub-detection__grid-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(0, 91, 122, 0.16);
  border-left: 1px solid rgba(0, 91, 122, 0.16);
}
.hub-detection__point {
  min-height: 146px;
  padding: 22px 22px 20px;
  border-right: 1px solid rgba(0, 91, 122, 0.16);
  border-bottom: 1px solid rgba(0, 91, 122, 0.16);
  background: rgba(255, 255, 255, 0.46);
}
.hub-detection__point span {
  display: block;
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}
.hub-detection__point p {
  margin: 0;
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.62;
}
.hub-detection__tools-label {
  margin: 22px 0 0;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.hub-detection__tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.hub-detection__tools li {
  padding: 9px 12px;
  border: 1px solid rgba(0, 137, 182, 0.18);
  border-radius: 999px;
  background: rgba(0, 137, 182, 0.08);
  color: var(--accent-dark);
  font-size: 0.84rem;
  font-weight: 600;
}
/* Kroki audytu - polaczony proces (linia + wezly-numery) pod blokiem 2-kol */
.hub-detection__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: clamp(44px, 5vw, 66px);
}
.hub-detection__steps::before {
  content: "";
  position: absolute; top: 36px; left: 13%; right: 13%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 7px, transparent 7px 15px);
  opacity: 0.4;
  z-index: 0;
}
.hub-detection__step {
  position: relative;
  z-index: 1;
  padding: 70px 20px 26px;
  text-align: center;
  background: var(--surface-white);
  border: 1px solid rgba(0, 91, 122, 0.12);
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(0, 46, 61, 0.05);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease, border-color 0.3s ease;
}
.hub-detection__step:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0, 46, 61, 0.12); border-color: rgba(0, 137, 182, 0.32); }
.hub-detection__step-num {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface-white); border: 2px solid var(--accent);
  font-family: 'Oswald', sans-serif; font-size: 1.18rem; font-weight: 700; line-height: 1;
  color: var(--accent);
  box-shadow: 0 0 0 5px var(--surface-white);
  transition: background 0.3s ease, color 0.3s ease, transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.hub-detection__step:hover .hub-detection__step-num { background: var(--accent); color: #fff; transform: translateX(-50%) scale(1.08); }
.hub-detection__step p { margin: 0; color: var(--text-body); font-size: 0.92rem; line-height: 1.6; }
.hub-detection__conclusion {
  position: relative;
  margin: clamp(40px, 4.5vw, 58px) auto 0;
  max-width: 840px; text-align: center;
  font-family: 'Oswald', sans-serif; font-weight: 500; font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.5; color: var(--navy-light);
}
.hub-detection__conclusion::before {
  content: ""; display: block; width: 48px; height: 3px; border-radius: 2px;
  background: var(--gold); margin: 0 auto 22px;
}
@media (max-width: 900px) {
  .hub-detection__steps { grid-template-columns: repeat(2, 1fr); }
  .hub-detection__steps::before { display: none; }
}
@media (max-width: 520px) { .hub-detection__steps { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .hub-detection__step, .hub-detection__step-num { transition: none; } }

.hub-path {
  padding: clamp(76px, 8vw, 128px) 0;
  background: var(--navy-deep);
  color: var(--text-white);
}
.hub-path__head {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-bottom: clamp(42px, 5vw, 72px);
}
.hub-path__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}
.hub-path__track::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 31px;
  height: 1px;
  background: linear-gradient(90deg, rgba(252, 180, 0, 0.85), rgba(0, 137, 182, 0.55));
}
.hub-path__step {
  position: relative;
  padding: 0 clamp(18px, 2.2vw, 34px) 0 0;
}
.hub-path__num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid rgba(252, 180, 0, 0.42);
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 0 0 10px rgba(0, 46, 61, 0.88);
}
.hub-path__step h3 {
  margin: 0 0 12px;
  color: var(--text-white);
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.2;
  text-transform: uppercase;
}
.hub-path__step p {
  margin: 0;
  max-width: 280px;
  color: rgba(207, 224, 231, 0.78);
  font-size: 0.92rem;
  line-height: 1.68;
}

.hub-trust {
  padding: clamp(70px, 8vw, 118px) 0;
  background: var(--surface-light);
}
.hub-trust__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) 1.18fr;
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}
.hub-trust__content p {
  max-width: 640px;
  margin: 0 0 26px;
  color: var(--text-body);
  font-size: 1.04rem;
  line-height: 1.78;
}
.hub-trust__panel {
  border-top: 1px solid rgba(0, 91, 122, 0.16);
}
.hub-trust__row {
  position: relative;
  padding: 21px 0 21px 38px;
  border-bottom: 1px solid rgba(0, 91, 122, 0.16);
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.5;
}
.hub-trust__row::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 28px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(252, 180, 0, 0.15);
}
.hub-map-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 auto 28px;
  text-align: center;
}
.hub-map-note span,
.hub-map-note a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
}
.hub-map-note span {
  background: rgba(0, 137, 182, 0.12);
  color: var(--accent-dark);
  border: 1px solid rgba(0, 137, 182, 0.22);
}
.hub-map-note a {
  background: var(--surface-white);
  color: var(--text-dark);
  border: 1px solid rgba(0, 91, 122, 0.12);
  text-decoration: none;
}
@media (max-width: 980px) {
  .hub-detection__grid,
  .hub-path__head,
  .hub-trust__grid {
    grid-template-columns: 1fr;
  }
  .hub-detection__media,
  .hub-detection__media img {
    min-height: 360px;
  }
  .hub-path__track {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 0;
  }
  .hub-path__track::before { display: none; }
}
@media (max-width: 640px) {
  .hub-detection__grid-list,
  .hub-path__track {
    grid-template-columns: 1fr;
  }
  .hub-detection__media,
  .hub-detection__media img {
    min-height: 300px;
  }
  .hub-path__step {
    padding-right: 0;
  }
}

/* Intro side panel - highlights */
.svc-intro__side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 100px;
}

.svc-intro__highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface-white);
  border: 1px solid #D8E4E8;
  border-radius: 10px;
  padding: 16px 18px;
  transition: border-color 0.25s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

@media (hover: hover) and (pointer: fine) {
  .svc-intro__highlight:hover {
    border-color: rgba(0,137,182,0.3);
    box-shadow: 0 2px 12px rgba(0,46,61,0.06);
  }
}

.svc-intro__highlight-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(0,137,182,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-intro__highlight-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc-intro__highlight-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  line-height: 1.3;
}

.svc-intro__highlight-desc {
  display: none;
}

/* Miasta WERSJA A: odznaki zaufania jako premium granatowy panel (navy+gold, glebia) */
.svc-intro--panel .svc-intro__grid { grid-template-columns: 1fr 0.92fr; gap: clamp(36px, 5vw, 60px); align-items: center; }
.svc-intro__panel {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 22px;
  padding: 12px clamp(24px, 3vw, 34px);
  box-shadow: 0 40px 80px -30px rgba(0, 30, 41, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.svc-intro__panel::before {
  content: ""; position: absolute; top: -30%; right: -15%;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(252, 180, 0, 0.13), transparent 65%);
  pointer-events: none;
}
.svc-intro__row { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center; padding: 26px 0; position: relative; }
.svc-intro__row + .svc-intro__row { border-top: 1px solid rgba(252, 180, 0, 0.16); }
.svc-intro__row-ico {
  width: 54px; height: 54px; min-width: 54px; border-radius: 14px;
  background: rgba(252, 180, 0, 0.1); border: 1px solid rgba(252, 180, 0, 0.25);
  display: flex; align-items: center; justify-content: center;
}
.svc-intro__row-ico svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.svc-intro__row-lab { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.04em; font-size: 1.08rem; color: #fff; font-weight: 600; line-height: 1.2; }
.svc-intro__row-sub { font-size: 0.86rem; color: rgba(240, 244, 246, 0.7); margin-top: 3px; line-height: 1.4; }
@media (max-width: 860px) {
  .svc-intro--panel .svc-intro__grid { grid-template-columns: 1fr; }
}

/* (intro image removed - photo shown in expertise section instead) */

/* === SVC EXPERTISE === */
.svc-expertise {
  padding: var(--section-pad) 0;
  background: var(--surface-white);
  border-top: 1px solid rgba(0, 46, 61, 0.06);
}

.svc-expertise__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.svc-expertise__text {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.8;
}

.svc-expertise__text p {
  margin-bottom: 18px;
}

.svc-expertise__text p:first-child {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.65;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,89,122,0.1);
  margin-bottom: 24px;
}

.svc-expertise__text strong {
  color: var(--accent-dark);
  font-weight: 600;
}

/* ============================================================
   EXPERTISE WERSJA 2 (miasta) - zdjecie LEWO + 3 atuty.
   Skille: ui-design-system (8pt grid, type scale), ui-ux-pro-max
   (line-height 1.45, kontrast >=4.5:1, stroke 1.7 spojny, brak
   side-stripe, whitespace separacja), impeccable (rozmyty cien,
   gold-na-navy), emil (sekcja nieklikalna = statyczna).
   ============================================================ */
.svc-expertise--atuty .svc-expertise__grid { grid-template-columns: 0.95fr 1.05fr; gap: clamp(36px, 5vw, 64px); align-items: stretch; }
.svc-expertise--atuty .svc-expertise__image { order: 0; align-self: stretch; }
.svc-expertise--atuty .svc-expertise__image img { height: 100%; min-height: 100%; max-height: none; object-position: center 40%; }
.svc-expertise--atuty .svc-expertise__content { order: 1; }
.svc-expertise__atuty { margin-top: clamp(26px, 3vw, 34px); padding-top: clamp(22px, 2.6vw, 28px); border-top: 1px solid rgba(0,46,61,0.1); display: grid; }
.svc-expertise__atut { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center; padding: 16px 0; }
.svc-expertise__atut + .svc-expertise__atut { border-top: 1px solid rgba(0,46,61,0.08); }
.svc-expertise__atut-ico { width: 48px; height: 48px; min-width: 48px; border-radius: 13px; background: var(--navy-deep); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px -10px rgba(0,46,61,0.5); }
.svc-expertise__atut-ico svg { width: 23px; height: 23px; stroke: var(--gold); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.svc-expertise__atut-body { display: flex; flex-direction: column; }
.svc-expertise__atut-lab { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.04em; font-size: 1rem; font-weight: 600; color: var(--text-dark); line-height: 1.2; }
.svc-expertise__atut-sub { font-size: 0.86rem; color: var(--text-body); line-height: 1.45; margin-top: 2px; }
@media (max-width: 860px) {
  .svc-expertise--atuty .svc-expertise__grid { grid-template-columns: 1fr; }
  .svc-expertise--atuty .svc-expertise__image { order: 1; }
  .svc-expertise--atuty .svc-expertise__content { order: 0; }
}

.svc-expertise__image {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,46,61,0.15), 0 4px 16px rgba(0,0,0,0.08);
}

.svc-expertise__image::before {
  content: '';
  position: absolute;
  inset: 0;
  /* brandowy duotone (teal/navy multiply) - spojny z svc-extra media */
  background: linear-gradient(150deg, rgba(0,137,182,0.20) 0%, rgba(0,46,61,0.36) 100%);
  z-index: 1;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.svc-expertise__image::after {
  content: 'Licencjonowany detektyw';
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,46,61,0.9);
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid rgba(252,180,0,0.25);
  border-radius: 4px;
  z-index: 2;
  pointer-events: none;
}

.svc-expertise__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
  /* brandowy filtr - stonowanie pod spojny detektywistyczny klimat (jak svc-extra) */
  filter: grayscale(0.5) contrast(1.05) brightness(0.98);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), filter 0.6s ease-out;
}

@media (hover: hover) and (pointer: fine) {
  .svc-expertise__image:hover img {
    transform: scale(1.03);
    filter: contrast(1.1) saturate(1);
  }
}

/* === SVC SCOPE (grid cards with numbers) === */
.svc-scope {
  padding: clamp(60px, 8vw, 120px) 0 clamp(40px, 5vw, 64px);
  background: var(--surface-white);
}

.svc-scope__header {
  text-align: center;
  margin-bottom: 56px;
}

.svc-scope__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.svc-scope__card {
  background: linear-gradient(158deg, var(--navy) 0%, var(--navy-deep) 100%);
  border: 1px solid rgba(252, 180, 0, 0.14);
  border-radius: 14px;
  padding: clamp(30px, 3vw, 40px) clamp(26px, 2.4vw, 34px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 52px -28px rgba(0, 30, 41, 0.55);
}
/* stala zlota kreska akcentu (gora-lewo) - karta nieklikalna, wiec bez reakcji na hover */
.svc-scope__card::before {
  content: "";
  position: absolute; top: 0; left: 0; height: 4px; width: 56px;
  background: var(--gold);
  border-radius: 0 0 3px 0;
}

.svc-scope__number {
  font-family: 'Oswald', sans-serif;
  font-size: 3.1rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.92;
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}

.svc-scope__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-white);
  margin-bottom: 14px;
}

.svc-scope__desc {
  font-size: 0.92rem;
  color: rgba(240, 244, 246, 0.74);
  line-height: 1.75;
}

.svc-scope__desc p {
  margin-bottom: 12px;
}

.svc-scope__desc p:last-child {
  margin-bottom: 0;
}

/* Scope dark variant (used when no process section) */
.svc-scope--dark {
  background: var(--navy-deep);
}
.svc-scope--dark .section-label {
  color: var(--gold);
}
.svc-scope--dark .section-title {
  color: var(--text-white);
}
.svc-scope--dark .svc-scope__card {
  background: rgba(0, 62, 82, 0.5);
  border-color: rgba(191, 214, 222, 0.1);
}
.svc-scope--dark .svc-scope__number {
  color: var(--gold);
  opacity: 0.4;
}
.svc-scope--dark .svc-scope__title {
  color: var(--text-white);
}
.svc-scope--dark .svc-scope__desc {
  color: rgba(191, 214, 222, 0.75);
}
@media (hover: hover) and (pointer: fine) {
  .svc-scope--dark .svc-scope__card:hover {
    border-color: rgba(191, 214, 222, 0.25);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
  }
  .svc-scope--dark .svc-scope__card:hover .svc-scope__number {
    color: var(--gold);
    opacity: 0.7;
  }
}

/* === SVC WHY (dark grid with icons) === */
.svc-why {
  padding: clamp(40px, 5vw, 72px) 0 clamp(40px, 5vw, 60px);
  background: var(--surface-light);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}

.svc-why::before {
  display: none;
}

.svc-why__header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.svc-why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}

.svc-why__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 28px;
  background: var(--surface-white);
  border: 1px solid rgba(0,46,61,0.08);
  border-radius: 14px;
  box-shadow: 0 16px 40px -28px rgba(0,46,61,0.28);
}

/* karta nieklikalna - bez hover-lift (zasada Marcina), statyczna */

.svc-why__icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--navy-deep);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px -10px rgba(0, 46, 61, 0.5);
}

.svc-why__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}

.svc-why__text {
  font-size: 0.98rem;
  color: var(--text-dark);
  line-height: 1.65;
  font-weight: 500;
}

.svc-why__item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 540px;
  margin: 0 auto;
}

/* === SVC RESPONSIVE === */
@media (max-width: 1024px) {
  .svc-intro__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .svc-intro__side {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    position: static;
  }


  .svc-expertise__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .svc-hero {
    min-height: 40vh;
  }

  .svc-hero__content {
    padding: 120px 0 40px;
  }

  .svc-hero__actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }

  .svc-hero__actions .btn {
    width: 100%;
    justify-content: center;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .svc-intro__body {
    font-size: 0.95rem;
  }

  .svc-intro__body p:first-child {
    font-size: 1.1rem;
  }

  .svc-scope__card {
    padding: 28px 24px;
  }

  .svc-why__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .svc-why__item:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
  }

  .svc-why__item {
    padding: 20px 18px;
  }
}

@media (max-width: 480px) {
  .svc-hero__title {
    font-size: 1.8rem;
  }

  .svc-scope__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .svc-scope__number {
    font-size: 2.2rem;
  }

  .svc-why__item {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    align-items: center;
  }

  .svc-intro__side {
    grid-template-columns: 1fr;
  }

  .contact-cta__form {
    padding: 24px 20px;
    border-radius: 12px;
  }

  .contact-cta__form-title {
    font-size: 1rem;
    margin-bottom: 18px;
  }

  .form__group {
    margin-bottom: 12px;
  }

  .form__input,
  .form__textarea {
    padding: 12px 14px;
    font-size: max(0.85rem, 16px);
  }

  .form__textarea {
    min-height: 90px;
  }

  .faq__question {
    padding: 18px 16px;
    font-size: 0.88rem;
    min-height: 56px;
  }

  .faq__question::before {
    display: none;
  }

  .faq__answer-inner {
    padding: 0 16px 0 16px;
    font-size: 0.85rem;
  }

  .faq__item.active .faq__answer-inner {
    padding-bottom: 18px;
  }

  .statement .btn {
    padding: 14px 24px;
    font-size: 0.8rem;
  }

  .topbar__right {
    flex-wrap: wrap;
    gap: 8px 16px;
    justify-content: center;
    width: 100%;
  }

  .topbar__contact {
    font-size: 0.72rem;
  }

  .topbar__contact:first-child {
    display: none;
  }
}

/* === FOCUS-VISIBLE - Accessibility (WCAG 2.4.7) === */
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(252, 180, 0, 0.15);
}

.btn--primary:focus-visible {
  outline-color: var(--gold-light);
}

.nav__list a:focus-visible,
.nav__link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.location-tag:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(0, 137, 182, 0.15);
}

.faq__question:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  border-radius: 8px;
}

a.contact-cta__detail-value:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.footer__links a:focus-visible,
.footer__legal a:focus-visible,
.footer__internal-links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.footer__social-link:focus-visible,
.topbar__social-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.header__phone:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.mobile-bar__item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

/* === :ACTIVE STATES - Tactile feedback === */
.location-tag:active {
  transform: scale(0.96);
  transition-duration: 0.06s;
}

.svc-why__item:active {
  transform: scale(0.98);
  transition-duration: 0.06s;
}

.contact-cta__detail:active {
  opacity: 0.8;
  transition-duration: 0.06s;
}

.footer__social-link:active {
  transform: scale(0.9);
  transition-duration: 0.06s;
}

/* === SCOPE CARD - transform-origin fix === */
.svc-scope__card {
  transform-origin: center top;
}

/* === DEFAULT SHADOWS on cards (resting state depth) === */
.svc-scope__card {
  box-shadow: 0 1px 3px rgba(0, 46, 61, 0.04), 0 4px 12px rgba(0, 46, 61, 0.03);
}

.faq__item {
  box-shadow: 0 1px 4px rgba(0, 46, 61, 0.03);
}

/* === MOBILE BAR - iPhone safe area === */
.mobile-bar {
  padding-bottom: env(safe-area-inset-bottom, 0);
}

@media (max-width: 768px) {
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0));
  }
}

/* ================================================================
   VARIANT B - Usługi dla firm
   Expertise image LEFT, scope horizontal, why-us on LIGHT bg, gold accent
   ================================================================ */

/* Hero B - wyrownany do lewej (spojnie z wariantem A); kontener centruje sam, nie nadpisujemy margin/max-width */
.svc-hero--b .svc-hero__content {
  text-align: left;
}

.svc-hero--b .svc-hero__actions {
  justify-content: flex-start;
}

.svc-hero--b .section-label--light {
  margin: 0;
}

/* Intro B - gold accents, corporate tone */
.svc-intro--b .svc-intro__body a[href^="tel:"] {
  background: var(--gold-dark, #D4A000);
}

.svc-intro--b .svc-intro__highlight-icon {
  background: rgba(252,180,0,0.1);
}

.svc-intro--b .svc-intro__highlight-icon svg {
  stroke: var(--gold-dark, #D4A000);
}

/* Scope B - horizontal list cards instead of 2x2 grid */
.svc-scope--b .svc-scope__grid {
  grid-template-columns: 1fr;
  gap: 0;
}

.svc-scope--b .svc-scope__card {
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-template-rows: auto auto;
  gap: 0 20px;
  padding: 28px 32px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #E0E8EC;
}

.svc-scope--b .svc-scope__card:last-child {
  border-bottom: none;
}

.svc-scope--b .svc-scope__number {
  grid-row: 1 / -1;
  align-self: center;
  font-size: 2.4rem;
  opacity: 0.3;
  margin-bottom: 0;
  text-align: center;
}

.svc-scope--b .svc-scope__title {
  margin-bottom: 4px;
}

.svc-scope--b .svc-scope__desc {
  grid-column: 2;
}

@media (hover: hover) and (pointer: fine) {
  .svc-scope--b .svc-scope__card:hover {
    background: var(--surface-light);
    transform: none;
  }
  /* Gdy sekcja jest ciemna (brak procesu) - hover NIE moze rozjasnic karty,
     bo tytul jest bialy i znikalby. Trzymamy ciemne tlo, tekst widoczny. */
  .svc-scope--dark.svc-scope--b .svc-scope__card:hover {
    background: rgba(0, 62, 82, 0.92);
  }
  .svc-scope--dark.svc-scope--b .svc-scope__card:hover .svc-scope__title {
    color: var(--text-white);
  }
  .svc-scope--dark.svc-scope--b .svc-scope__card:hover .svc-scope__desc {
    color: rgba(207, 224, 231, 0.9);
  }
}

/* Why B - LIGHT background instead of dark */
.svc-why--b {
  background: var(--surface-light);
}

.svc-why--b::before { display: none; }

.svc-why--b .svc-why__item {
  background: var(--surface-white);
  border-color: #E0E8EC;
}

.svc-why--b .svc-why__text {
  color: var(--text-body);
}

.svc-why--b .svc-why__icon {
  background: rgba(252,180,0,0.08);
}

.svc-why--b .svc-why__icon svg {
  stroke: var(--gold-dark, #D4A000);
}

/* ================================================================
   VARIANT C - TSCM / Podsłuchy
   COMPLETELY DIFFERENT HTML structure:
   Split hero, editorial intro, process timeline, checklist
   ================================================================ */

/* === SPLIT HERO === */
.svc-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.svc-hero-split__panel {
  background: var(--navy-deep);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
}

.svc-hero-split__content {
  max-width: 520px;
  animation: cinReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.svc-hero-split__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}

.svc-hero-split__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.svc-hero-split__image {
  background-size: cover;
  background-position: center;
  position: relative;
}

.svc-hero-split__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy-deep) 0%, transparent 15%);
}

/* Intro wide (variants C, D) - centered, no sidebar */
.svc-intro__body--wide {
  max-width: 780px;
  margin: 0 auto;
}

/* === EXPERTISE BANNER === */
.svc-expertise-banner {
  background: var(--surface-light);
  padding: 0 0 var(--section-pad);
}

.svc-expertise-banner__image {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  margin-bottom: 48px;
}

.svc-expertise-banner__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  filter: contrast(1.02);
}

.svc-expertise-banner__content {
  max-width: 780px;
  margin: 0 auto;
}

.svc-expertise-banner__text {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.8;
}

.svc-expertise-banner__text p {
  margin-bottom: 18px;
}

/* === PROCESS TIMELINE === */
/* ============================================
   SVC-PROCESS - dark vertical timeline
   Visually distinct from .svc-scope (cards)
   ============================================ */
.svc-process {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--navy-deep);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.svc-process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 30% 50%, rgba(0,137,182,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.svc-process__header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
  position: relative;
  z-index: 1;
}

.svc-process__header .section-label {
  color: var(--gold);
}

.svc-process__header .section-title {
  color: var(--text-white);
}

.svc-process__timeline {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Connecting vertical line */
.svc-process__timeline::before {
  content: '';
  position: absolute;
  left: 29px;
  top: 36px;
  bottom: 36px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--accent), rgba(0,137,182,0.2));
  border-radius: 1px;
}

.svc-process__step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 28px;
  padding: 28px 0;
  position: relative;
}

.svc-process__step + .svc-process__step {
  border-top: 1px solid rgba(191,214,222,0.08);
}

.svc-process__marker {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2px;
}

.svc-process__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0,137,182,0.12);
  border: 2px solid rgba(0,137,182,0.3);
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.svc-process__step:hover .svc-process__num {
  border-color: var(--gold);
  background: rgba(252,180,0,0.1);
}

.svc-process__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(240, 244, 246, 0.95);
  margin-bottom: 8px;
}

.svc-process__desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(191, 214, 222, 0.65);
}

.svc-process__desc p {
  margin-bottom: 8px;
}

.svc-process__desc p:last-child {
  margin-bottom: 0;
}

/* Desktop: 4 kroki jako karty 2x2 (single-column timeline zostawial pusta prawa polowe = "slabo wyglada").
   Mobile bez zmian - tam single column z pionowa linia wyglada dobrze. */
@media (min-width: 981px) {
  .svc-process__timeline {
    max-width: 1000px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 32px;
  }
  .svc-process__timeline::before { display: none; }
  .svc-process__step {
    padding: 26px 28px;
    border: 1px solid rgba(0, 163, 217, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
    transition: border-color 0.3s ease, background 0.3s ease;
  }
  .svc-process__step + .svc-process__step { border-top: 1px solid rgba(0, 163, 217, 0.16); }
  .svc-process__step:hover {
    border-color: rgba(252, 180, 0, 0.4);
    background: rgba(255, 255, 255, 0.04);
  }
}

/* === CHECKLIST WHY-US === */
.svc-checklist {
  padding: var(--section-pad) 0;
  background: var(--surface-light);
}

.svc-checklist__header {
  text-align: center;
  margin-bottom: 48px;
}

.svc-checklist__grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
}

.svc-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
}

.svc-checklist__check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 2px;
}

.svc-checklist__text {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-body);
}

/* === VARIANT C RESPONSIVE === */
@media (max-width: 1024px) {
  .svc-hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .svc-hero-split__panel {
    padding: 60px 40px;
    order: 1;
  }

  .svc-hero-split__image {
    height: 300px;
    order: 0;
  }

  .svc-hero-split__image::after {
    background: linear-gradient(to top, var(--navy-deep) 0%, transparent 30%);
  }
}

@media (max-width: 768px) {
  .svc-hero-split__panel {
    padding: 40px 24px;
  }

  .svc-hero-split__image {
    height: 240px;
  }

  .svc-checklist__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .svc-process__timeline::before {
    left: 22px;
  }

  .svc-process__step {
    grid-template-columns: 46px 1fr;
    gap: 16px;
  }

  .svc-process__num {
    width: 40px;
    height: 40px;
    font-size: 0.75rem;
  }

  .svc-expertise-banner__image {
    max-height: 240px;
  }

  .svc-expertise-banner__image img {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .svc-hero-split__image {
    height: 200px;
  }

  .svc-hero-split__panel {
    padding: 32px 20px;
  }

  .svc-editorial__body p:first-child {
    font-size: 1.15rem;
  }
}

/* ================================================================
   VARIANT D - Zdrada / Sprawy rodzinne
   Different structure: no highlight sidebar, wider editorial intro
   Same brand colors, different layout
   ================================================================ */

/* Hero D - more image visible, different gradient angle */
.svc-hero--d .svc-hero__overlay {
  background: linear-gradient(
    200deg,
    rgba(0,30,41,0.55) 0%,
    rgba(0,30,41,0.7) 40%,
    rgba(0,46,61,0.92) 100%
  );
}

.svc-hero--d .svc-hero__title {
  max-width: 640px;
}

/* Scope D - brand colors, same as base */

/* Why D - brand colors, same as base */

/* ================================================================
   HERO DIFFERENTIATION PER VARIANT
   Each variant hero should feel distinct beyond just the image
   ================================================================ */

/* Hero A - default left-aligned, accent underline on label */
.svc-hero--a .section-label--light {
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}

/* Hero B - centered, shorter, more professional feel */
.svc-hero--b {
  min-height: 42vh;
}

.svc-hero--b .svc-hero__overlay {
  background: linear-gradient(
    180deg,
    rgba(0,30,41,0.58) 0%,
    rgba(0,30,41,0.78) 50%,
    rgba(0,46,61,0.94) 100%
  );
}

.svc-hero--b .svc-hero__title {
  max-width: 700px;
  margin-left: 0;
  margin-right: 0;
}

.svc-hero--b .section-label--light {
  color: var(--gold-light);
}

/* Hero C - taller, tech/dramatic, already has 160deg gradient */
.svc-hero--c {
  min-height: 55vh;
}

.svc-hero--c .section-label--light {
  color: #7DD4C0;
  letter-spacing: 0.35em;
  font-size: 0.7rem;
}

/* ================================================================
   ROTATION-BASED VARIETY
   Per-page visual tweaks (0, 1, 2) to prevent cookie-cutter feel
   ================================================================ */

/* Rotation 1 - lighter hero overlay (more image visible), shifted gradient */
.svc-rot-1.svc-hero .svc-hero__overlay {
  background: linear-gradient(
    170deg,
    rgba(0,30,41,0.5) 0%,
    rgba(0,30,41,0.68) 45%,
    rgba(0,46,61,0.92) 100%
  );
}

/* Rotation 2 - darker overlay, horizontal gradient for different mood */
.svc-rot-2.svc-hero .svc-hero__overlay {
  background: linear-gradient(
    to right,
    rgba(0,46,61,0.92) 0%,
    rgba(0,30,41,0.72) 50%,
    rgba(0,30,41,0.85) 100%
  );
}

/* Rotation 1 scope - single-column horizontal cards instead of grid */
.svc-rot-1.svc-scope .svc-scope__grid {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Rotation 2 scope - 3-column compact */
.svc-rot-2.svc-scope .svc-scope__grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.svc-rot-2.svc-scope .svc-scope__card {
  padding: 28px 24px;
}

.svc-rot-2.svc-scope .svc-scope__number {
  font-size: 2.2rem;
}

/* ================================================================
   VARIANT RESPONSIVE
   ================================================================ */
@media (max-width: 768px) {
  .svc-scope--b .svc-scope__card {
    grid-template-columns: 60px 1fr;
    padding: 20px 16px;
  }

  .svc-scope--b .svc-scope__number {
    font-size: 1.8rem;
  }

  .svc-hero--b .svc-hero__content {
    text-align: left;
  }

  .svc-hero--b .svc-hero__actions {
    justify-content: flex-start;
  }

  .svc-hero--b .svc-hero__title {
    margin-left: 0;
    margin-right: 0;
  }

  /* Reset rotation grid on mobile */
  .svc-rot-1.svc-scope .svc-scope__grid,
  .svc-rot-2.svc-scope .svc-scope__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SVC-CLOSING - asymmetric editorial close
   Emotion left, action right. Flows from .svc-why.
   ============================================ */
.svc-closing {
  background: var(--navy-deep);
  color: var(--text-white);
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
}

.svc-closing::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 45%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(0,137,182,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* 2-column asymmetric grid */
.svc-closing__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* === LEFT: Emotion === */
.svc-closing__emotion {
  position: relative;
  padding-left: clamp(32px, 4vw, 56px);
}

/* Gold vertical accent line */
.svc-closing__emotion::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
  font-family: Georgia, serif;
}

.svc-closing__quote {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 600;
  font-style: italic;
  color: rgba(240, 244, 246, 0.95);
  line-height: 1.45;
  margin: 0 0 clamp(20px, 2.5vw, 32px);
  padding: 0;
  border: none;
}

.svc-closing__support {
  margin: 0;
}

.svc-closing__support p {
  color: rgba(207, 224, 231, 0.85);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 10px;
  max-width: 56ch;
}

.svc-closing__support p:last-child {
  margin-bottom: 0;
}

/* === RIGHT: Action === */
.svc-closing__action {
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-closing__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: clamp(40px, 5vw, 56px) clamp(32px, 4vw, 48px);
  border: 1px solid rgba(252, 180, 0, 0.15);
  border-radius: 16px;
  position: relative;
  background: rgba(0, 46, 61, 0.4);
  width: 100%;
  max-width: 400px;
}

/* Corner accent - top right */
.svc-closing__cta::before {
  content: '';
  position: absolute;
  top: -1px;
  right: 24px;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 0 0 2px 2px;
}

.svc-closing__label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(191, 214, 222, 0.5);
}

.svc-closing__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 600;
  color: var(--text-white);
  text-decoration: none;
  letter-spacing: 1.5px;
  padding: 18px 28px;
  border-radius: 10px;
  background: var(--accent);
  box-shadow: 0 4px 28px rgba(0, 137, 182, 0.3);
  transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.3s ease-out,
              background 0.3s ease;
}

.svc-closing__phone svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.svc-closing__phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0, 137, 182, 0.45);
  background: var(--accent-glow);
}

.svc-closing__phone:active {
  transform: scale(0.97);
  transition-duration: 0.08s;
}

.svc-closing__email a {
  color: rgba(191, 214, 222, 0.45);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  transition: color 0.25s ease;
}

.svc-closing__email a:hover {
  color: var(--gold);
}

/* 24/7 badge - top-left corner of CTA card */
.svc-closing__badge {
  position: absolute;
  top: -1px;
  left: -1px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--navy-deep);
  background: var(--gold);
  padding: 6px 14px;
  border-radius: 16px 0 10px 0;
  line-height: 1;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .svc-closing__grid {
    grid-template-columns: 1fr;
    gap: clamp(36px, 5vw, 48px);
    text-align: center;
  }

  .svc-closing__emotion {
    padding-left: 0;
  }

  .svc-closing__emotion::before {
    display: none;
  }

  /* Replace vertical line with centered gold line on mobile */
  .svc-closing__emotion::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto clamp(24px, 3vw, 32px);
    opacity: 0.5;
  }

  .svc-closing__cta {
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .svc-closing__phone {
    font-size: 1.2rem;
    padding: 16px 20px;
  }

  .svc-closing__cta {
    padding: 36px 24px;
  }
}

/* ============================================
   SVC-CONSULT - 2-column CTA with steps
   ============================================ */
.svc-consult {
  background: var(--navy-deep); /* plaski granat - zero teal/zielonego na zadnej stronie */
  color: var(--text-white);
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
}

.svc-consult::before {
  display: none;
}

.svc-consult__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Left: Pitch */
.svc-consult__pitch {
  padding-top: 8px;
}

.svc-consult__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--text-white);
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 20px;
}

.svc-consult__title em {
  color: var(--accent);
  font-style: normal;
}

.svc-consult__lead {
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  color: rgba(220, 232, 237, 0.88);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}

.svc-consult__lead p {
  margin-bottom: 12px;
}

.svc-consult__lead p:last-child {
  margin-bottom: 0;
}

.svc-consult__lead a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.svc-consult__lead a:hover {
  color: var(--accent-glow);
}

.svc-consult__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Right: Steps */
.svc-consult__steps {
  padding-left: clamp(28px, 4vw, 48px);
  border-left: 2px solid var(--accent);
  position: relative;
}

.svc-consult__steps::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 0;
  width: 1px;
  height: 40px;
  background: var(--gold);
}

.svc-consult__steps-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: 32px;
}

.svc-consult__step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 8px;
  background: rgba(191, 214, 222, 0.07);
  border: 1px solid rgba(191, 214, 222, 0.14);
  transition: background 0.25s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.25s ease-out;
}

.svc-consult__step:first-of-type {
  margin-top: 0;
}

.svc-consult__step + .svc-consult__step {
  margin-top: 12px;
}

@media (hover: hover) and (pointer: fine) {
  .svc-consult__step:hover {
    background: rgba(191, 214, 222, 0.13);
    border-color: rgba(0, 163, 217, 0.4);
  }
}

.svc-consult__step-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  width: 36px;
  line-height: 1;
  padding-top: 3px;
}

.svc-consult__step-text {
  font-size: 0.95rem;
  color: rgba(220, 232, 237, 0.9);
  line-height: 1.65;
}

.svc-consult__step-title {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 3px;
}

/* Variant D (family/relationship): gold accent on steps */
.svc-consult--d .svc-consult__step-num {
  color: var(--gold);
}

.svc-consult--d .svc-consult__steps {
  border-left-color: var(--gold);
}

/* Variant B (business): teal accent */
.svc-consult--b .svc-consult__steps {
  border-left-color: var(--teal);
}

.svc-consult--b .svc-consult__step-num {
  color: var(--accent);
}

/* ===== BLOG TEASER (3 najnowsze wpisy na koncu stron) ===== */
.blog-teaser { padding: clamp(56px, 7vw, 92px) 0; background: var(--surface-light); }
.blog-teaser__head { max-width: 760px; margin: 0 auto clamp(32px, 4vw, 48px); text-align: center; }
.blog-teaser__head .section-label { justify-content: center; }
.blog-teaser__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-teaser__card {
  display: flex; flex-direction: column; background: var(--surface-white);
  border: 1px solid rgba(0, 46, 61, 0.08); border-radius: 16px; overflow: hidden;
  text-decoration: none; box-shadow: 0 6px 22px rgba(0, 46, 61, 0.05);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease, border-color 0.3s ease;
}
.blog-teaser__card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0, 46, 61, 0.13); border-color: rgba(0, 137, 182, 0.3); }
.blog-teaser__thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--navy-deep); }
.blog-teaser__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(.2,.8,.2,1); }
.blog-teaser__card:hover .blog-teaser__thumb img { transform: scale(1.06); }
.blog-teaser__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.blog-teaser__title {
  font-family: 'Oswald', sans-serif; font-size: 1.08rem; font-weight: 600; line-height: 1.32;
  color: var(--text-dark); margin: 0; transition: color 0.25s ease;
}
.blog-teaser__card:hover .blog-teaser__title { color: var(--accent); }
.blog-teaser__meta { margin-top: auto; display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-muted); }
.blog-teaser__dot { color: var(--accent); }
.blog-teaser__more { text-align: center; margin-top: clamp(28px, 3.5vw, 44px); }
@media (max-width: 920px) { .blog-teaser__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* Punkty "Podczas rozmowy" w pitchu (lewa kolumna) */
.svc-consult__points { margin: 4px 0 30px; }
.svc-consult__points-label {
  font-family: 'Oswald', sans-serif; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 14px;
}
.svc-consult__points ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.svc-consult__points li {
  position: relative; padding-left: 30px; line-height: 1.55; color: var(--text-body); font-size: 0.95rem;
}
.svc-consult__points li::before {
  content: ''; position: absolute; left: 0; top: 1px; width: 19px; height: 19px; border-radius: 50%;
  background: rgba(0, 137, 182, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230089B6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 12px;
}

/* === SCIEZKA PROCESU (journey) - pionowa, linia rysuje sie top-down === */
.svc-consult__journey { position: relative; }
.svc-path { position: relative; padding-left: 4px; }
.svc-path__line {
  position: absolute; left: 30px; top: 14px; bottom: 32px; width: 2px;
  background: linear-gradient(180deg, var(--accent), rgba(0, 137, 182, 0.25));
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.9s cubic-bezier(0.6, 0, 0.2, 1) 0.15s;
}
.svc-consult__journey.revealed .svc-path__line { transform: scaleY(1); }
.svc-path__list { list-style: none; margin: 0; padding: 0; }
.svc-path__step { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start; }
.svc-path__step + .svc-path__step { margin-top: 22px; }
.svc-path__node {
  position: relative; z-index: 1; width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--accent);
  background: var(--surface-white); border: 2px solid rgba(0, 137, 182, 0.3);
  box-shadow: 0 4px 16px rgba(0, 46, 61, 0.08);
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}
.svc-path__step:hover .svc-path__node {
  transform: scale(1.06); border-color: var(--accent); background: var(--accent); color: #fff;
}
.svc-path__body { padding-top: 5px; }
.svc-path__title {
  font-family: 'Oswald', sans-serif; font-size: 1.02rem; font-weight: 600;
  letter-spacing: 0.03em; text-transform: uppercase; color: var(--text-dark); margin: 0 0 4px;
}
.svc-path__desc { font-size: 0.94rem; line-height: 1.6; color: var(--text-body); margin: 0; }
@media (max-width: 768px) {
  .svc-path__line { left: 27px; }
  .svc-path__step { grid-template-columns: 52px 1fr; gap: 16px; }
  .svc-path__node { width: 52px; height: 52px; font-size: 1.05rem; }
}

/* Wariant JASNY (huby) - dla naprzemiennosci jasna/ciemna miedzy sekcjami */
.svc-consult--light { background: var(--surface-light); color: var(--text-body); }
.svc-consult--light .section-label { color: var(--accent-dark); }
.svc-consult--light .svc-consult__title { color: var(--text-dark); }
.svc-consult--light .svc-consult__lead { color: var(--text-body); }
.svc-consult--light .svc-consult__lead a { color: var(--accent-dark); }
.svc-consult--light .svc-consult__steps-label { color: var(--accent-dark); }
.svc-consult--light .svc-consult__steps::before { background: var(--gold); }
.svc-consult--light .svc-consult__step {
  background: var(--surface-white);
  border-color: rgba(0, 46, 61, 0.10);
  box-shadow: 0 4px 18px rgba(0, 46, 61, 0.06);
}
.svc-consult--light .svc-consult__step:hover { background: var(--surface-white); border-color: rgba(0, 137, 182, 0.4); }
.svc-consult--light .svc-consult__step-num { color: var(--accent); }
.svc-consult--light .svc-consult__step-text { color: var(--text-body); }
.svc-consult--light .svc-consult__step-title { color: var(--text-dark); }

/* Miasta: konsultacja na GRANACIE (kontrast z jasnym intro nad nia - koniec zlewania).
   Baza .svc-consult daje navy + bialy tekst; tu poprawki dla svc-path (kroki) na ciemnym tle. */
/* zwarty blok CTA - nie rozjezdza sie na szerokim ekranie (max 1080, wysrodkowany) */
.svc-consult--city .svc-consult__grid { max-width: 1000px; margin-left: auto; margin-right: auto; gap: clamp(36px, 4vw, 56px); align-items: center; }
.svc-consult--city .section-label { color: var(--gold); }
.svc-consult--city .svc-consult__title { color: var(--text-white); }
.svc-consult--city .svc-consult__lead { color: rgba(240, 244, 246, 0.85); }
.svc-consult--city .svc-consult__steps-label { color: var(--gold); }
.svc-consult--city .svc-path__desc { color: rgba(240, 244, 246, 0.82); }
/* kroki: solidne zlote kolka z granatowym numerem (czytelne, nie puste) */
.svc-consult--city .svc-path__step { grid-template-columns: 50px 1fr; gap: 22px; }
.svc-consult--city .svc-path__node { width: 50px; height: 50px; background: var(--gold); color: var(--navy-deep); border: none; font-size: 1.18rem; box-shadow: 0 8px 20px -8px rgba(252, 180, 0, 0.55); }
.svc-consult--city .svc-path__step:hover .svc-path__node { transform: scale(1.07); }
.svc-consult--city .svc-path__line { left: 25px; background: linear-gradient(180deg, var(--gold), rgba(252, 180, 0, 0.3)); width: 2px; }

@media (max-width: 768px) {
  .svc-consult__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .svc-consult__steps {
    padding-left: 0;
    border-left: none;
    padding-top: 28px;
    border-top: 2px solid var(--accent);
  }

  .svc-consult__steps::before {
    left: 0;
    top: -2px;
    width: 40px;
    height: 2px;
  }

  .svc-consult__lead {
    max-width: none;
  }
}

/* ============================================
   CITY SERVICES - 3-column listing (dark)
   ============================================ */
/* ============================================================
   USLUGI MIASTA - "AKTA SPRAWY" (dossier) na JASNYM tle.
   Celowo jasne - kontrast z granatowa sekcja konsultacji NAD nia
   (zeby dwie granatowe nie staly obok siebie). Biale karty ze zlota
   zakladka u gory, ghost-numer, zlota nic, diamentowe markery.
   ============================================================ */
.city-services {
  padding: var(--section-pad) 0;
  background: var(--surface-light);
  color: var(--text-body);
  position: relative;
  overflow: hidden;
}

.city-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 86% 2%, rgba(252,180,0,0.05) 0%, transparent 42%);
  pointer-events: none;
}

.city-services__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 60px);
  position: relative;
  z-index: 1;
}

.city-services__header .section-label { justify-content: center; }

.city-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.2vw, 30px);
  position: relative;
  z-index: 1;
}

.city-services__col {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface-white);
  border: 1px solid #E2ECF0;
  border-radius: 16px;
  padding: 34px 30px 30px;
  overflow: hidden;
  box-shadow: 0 26px 50px -34px rgba(0,46,61,0.26);
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), border-color 0.4s ease, box-shadow 0.4s ease;
}

/* zlota zakladka u gory (pelna szerokosc, nie boczny pasek) */
.city-services__col::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold) 22%, var(--gold) 78%, transparent);
  opacity: 0.7;
  transition: opacity 0.4s ease;
}

@media (hover: hover) {
  .city-services__col:hover {
    transform: translateY(-6px);
    border-color: rgba(252,180,0,0.45);
    box-shadow: 0 40px 64px -34px rgba(0,46,61,0.34);
  }
  .city-services__col:hover::before { opacity: 1; }
}

/* duzy "ghost" numer dossier w tle karty */
.city-services__num {
  position: absolute;
  top: 16px; right: 22px;
  font-family: 'Oswald', sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(0,46,61,0.07);
  pointer-events: none;
  z-index: 0;
}

.city-services__icon {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  background: var(--navy-deep);
  border: none;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.city-services__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.city-services__title {
  position: relative;
  z-index: 1;
  font-family: 'Oswald', sans-serif;
  font-size: 1.16rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.25;
  margin-bottom: 14px;
  padding-bottom: 14px;
}

/* zlota nic pod tytulem */
.city-services__title::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 38px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.city-services__desc {
  position: relative;
  z-index: 1;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 20px;
}

.city-services__desc p {
  margin-bottom: 10px;
}

.city-services__list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  position: relative;
  z-index: 1;
}

.city-services__list li {
  padding: 9px 0 9px 24px;
  position: relative;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--text-body);
  border-bottom: 1px solid rgba(0,46,61,0.09);
}

.city-services__list li:last-child {
  border-bottom: none;
}

/* zloty diament zamiast kropki */
.city-services__list li::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 15px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.85;
}

.city-services__list li a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.25s ease;
}

.city-services__list li a:hover,
.city-services__list li a:focus-visible {
  color: var(--accent);
}

/* Collapse long lists - show first 5 items */
.city-services__list li:nth-child(n+6) {
  display: none;
}

.city-services__list.expanded li:nth-child(n+6) {
  display: list-item;
}

.city-services__toggle {
  display: none;
  align-self: flex-start;
  background: none;
  border: none;
  padding: 0 0 2px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--accent-dark);
  cursor: pointer;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(252,180,0,0.55);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.city-services__toggle:hover {
  color: var(--navy-deep);
  border-bottom-color: var(--gold);
}

/* Show toggle only when list has 6+ items */
.city-services__list--long ~ .city-services__toggle {
  display: inline-block;
}

/* footer CTA - link do strony kategorii (z przycisku robimy zloty link-strzalke) */
.city-services__col .btn--outline-light {
  margin-top: auto;
  align-self: flex-start;
  position: relative;
  z-index: 1;
  background: none;
  border: none;
  padding: 0;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s ease;
}

.city-services__col .btn--outline-light::after {
  content: '\2192';
  transition: transform 0.3s cubic-bezier(0.23,1,0.32,1);
}

.city-services__col .btn--outline-light:hover {
  background: none;
  color: var(--accent);
}

.city-services__col .btn--outline-light:hover::after {
  transform: translateX(5px);
}

@media (prefers-reduced-motion: reduce) {
  .city-services__col,
  .city-services__col::before,
  .city-services__col .btn--outline-light::after {
    transition: none;
  }
}

/* generyczne warianty przyciskow (uzywane tez poza ta sekcja) */
.btn--sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn--outline-light {
  border-color: rgba(255,255,255,0.25);
  color: var(--text-light);
}
.btn--outline-light:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-white);
}

@media (min-width: 640px) and (max-width: 1024px) {
  .city-services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .city-services__grid { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 480px) {
  .city-services__col { padding: 28px 22px 24px; }
  .city-services__num { font-size: 2.8rem; top: 14px; }
  .city-services__icon { width: 46px; height: 46px; }
  .city-services__icon svg { width: 21px; height: 21px; }
}

/* ============================================
   CITY EXPERTISE - enhanced 2-column
   ============================================ */
.svc-expertise--city .svc-expertise__content {
  grid-column: auto !important;
}

.svc-expertise--city .svc-expertise__accent {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.svc-expertise__stat {
  background: rgba(0,137,182,0.06);
  border: 1px solid rgba(0,137,182,0.12);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
}

.svc-expertise__stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.svc-expertise__stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .svc-expertise--city .svc-expertise__accent {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
  .svc-expertise__stat {
    flex: 1;
    min-width: 120px;
    padding: 18px 14px;
  }
  .svc-expertise__stat-number {
    font-size: 1.8rem;
  }
}

/* === ENHANCED STATEMENT QUOTE === */
.statement__quote em {
  color: var(--gold);
  font-style: normal;
  display: inline;
}

/* === ENHANCED PROCESS NUMBERS === */
.process__number {
  transition: background 0.3s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.process__step:hover .process__number {
  transform: scale(1.08);
}

/* === STATS BAR BOTTOM ACCENT === */
.stats {
  position: relative;
}

.stats::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent));
  opacity: 0.3;
}

/* === ACCESSIBILITY: REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
  }

  .stagger-children > * {
    opacity: 1;
    transform: none;
  }
}

/* === Widget Trustindex: tylko lewy panel zbiorczy (.ti-footer) na ciemnym tle === */
.reviews__trustindex .ti-footer .ti-rating-text,
.reviews__trustindex .ti-footer .ti-rating-text *,
.reviews__trustindex .ti-footer .ti-rating {
  color: #ffffff !important;
}

/* === FIX KONTRAST: elementy na jasnym/ciemnym tle (audyt 2026-06-14) === */
/* svc-why ma jasne tlo (--surface-light) - naglowek nie moze byc jasny */
.svc-why .section-label--light { color: var(--accent-dark) !important; }
.svc-why .section-title--light { color: var(--text-dark) !important; }

/* Przycisk outline dla JASNEGO tla (np. sekcja blog) - ciemny brand zamiast bialego */
.btn--outline-dark {
  background: transparent;
  color: var(--accent-dark);
  border: 1.5px solid var(--accent-dark);
}
.btn--outline-dark:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

/* Footer: pozycje listy kontaktowej bez <a> (np. "Wroclaw, Polska") dziedziczyly ciemny kolor */
.footer__links li { color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; }

/* === Sekcja wideo (facade YouTube) - kinowa === */
.video-section { position: relative; padding: clamp(56px,8vw,112px) 0; background: var(--navy-deep); overflow: hidden; }
.video-section::before { display: none; } /* bez poswiaty tla - identyczne plaskie navy ze svc-signals (film ma wlasna ramke-glow na playerze) */
.video-section .container { position: relative; z-index: 1; }
.video-section__header { text-align: center; max-width: 760px; margin: 0 auto clamp(34px,4vw,54px); }
.video-section .section-label { color: var(--gold-light); }
.video-section .section-title { color: var(--text-white); }
.video-section__player { position: relative; max-width: 940px; margin: 0 auto; }
.video-section__player::before { content: ""; position: absolute; inset: -2px; border-radius: 20px; background: linear-gradient(135deg, rgba(0,163,217,.65), rgba(42,124,111,.25) 45%, rgba(0,137,182,.55)); opacity: .8; filter: blur(3px); z-index: 0; }
.arc-video { position: relative; aspect-ratio: 16/9; border-radius: 18px; overflow: hidden; cursor: pointer; background: var(--black); box-shadow: 0 36px 90px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.05); z-index: 1; }
.arc-video__thumb { width: 100%; height: 100%; object-fit: cover; filter: brightness(.78) saturate(1.05); transition: filter .5s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.arc-video:hover .arc-video__thumb { filter: brightness(.6); transform: scale(1.05); }
.arc-video::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(0,137,182,.10), rgba(0,30,41,.55)); pointer-events: none; }
.arc-video__play { position: absolute; inset: 0; margin: auto; width: 96px; height: 96px; padding: 0; border: 0; background: transparent; cursor: pointer; z-index: 3; }
.arc-video__play-btn { position: absolute; inset: 0; margin: auto; width: 84px; height: 84px; border-radius: 50%; background: linear-gradient(145deg, var(--accent-glow), var(--accent)); display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 40px rgba(0,137,182,.55); transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.arc-video__play-btn svg { width: 34px; height: 34px; color: #fff; margin-left: 5px; }
.arc-video__play-pulse { position: absolute; inset: 0; margin: auto; width: 84px; height: 84px; border-radius: 50%; background: var(--accent); opacity: .4; animation: arcPulse 2.6s ease-out infinite; }
.arc-video:hover .arc-video__play-btn { transform: scale(1.1); }
@keyframes arcPulse { 0% { transform: scale(1); opacity: .4; } 70% { transform: scale(2); opacity: 0; } 100% { opacity: 0; } }
.arc-video__caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 54px 26px 20px; font-family: 'Poppins',sans-serif; font-size: .95rem; font-weight: 500; color: #fff; text-align: center; background: linear-gradient(transparent, rgba(0,18,26,.88)); z-index: 2; pointer-events: none; }
.arc-video__iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (prefers-reduced-motion: reduce) { .arc-video__thumb, .arc-video__play-btn { transition: none; } .arc-video__play-pulse { animation: none; } }
@media (max-width: 600px) { .arc-video__play, .arc-video__play-btn, .arc-video__play-pulse { width: 66px; height: 66px; } .arc-video__play-btn svg { width: 26px; height: 26px; } .arc-video__caption { font-size: .82rem; padding: 40px 16px 14px; } }

/* === Fix: animacje wjazdu (translateX) nie moga powodowac poziomego scrolla na mobile === */
html { overflow-x: hidden; }
body { overflow-x: clip; }

/* === Film w sekcji podsluchow (2-kolumna: tekst + film) === */
.bug-detection__media { position: relative; align-self: center; }
.bug-detection__media-label { display: inline-flex; align-items: center; gap: 8px; font-family: 'Oswald', sans-serif; font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; }
.bug-detection__media-label svg { width: 20px; height: 20px; fill: none; stroke: var(--gold-light); stroke-width: 1.5; }
.bug-detection__media .arc-video { border-radius: 16px; box-shadow: 0 26px 70px rgba(0,0,0,.5); }
.bug-detection__media::before { content: ""; position: absolute; inset: 34px -2px -2px -2px; border-radius: 18px; background: linear-gradient(135deg, rgba(0,163,217,.55), rgba(42,124,111,.2) 50%, rgba(0,137,182,.5)); opacity: .7; filter: blur(3px); z-index: 0; }
.bug-detection__media .arc-video { position: relative; z-index: 1; }

/* === Single wpis - ulepszenia (CTA, share, autor) === */
.post-cta { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; justify-content: space-between; margin: 44px 0; padding: 30px 34px; background: linear-gradient(135deg, var(--navy), var(--navy-deep)); border-radius: 16px; box-shadow: 0 18px 50px rgba(0,46,61,.25); }
.post-cta__content { flex: 1 1 280px; }
.post-cta__title { color: #fff; font-family: 'Oswald',sans-serif; font-size: 1.3rem; margin: 0 0 8px; }
.post-cta__desc { color: var(--text-light); font-size: .94rem; margin: 0; line-height: 1.6; }
.post-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }
/* CTA pod wpisem na ciemnym navy - mocny zloty primary + czytelny outline */
.post-cta .btn--primary {
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 600;
  box-shadow: 0 8px 26px rgba(252,180,0,.32);
}
@media (hover: hover) and (pointer: fine) {
  .post-cta .btn--primary:hover {
    background: var(--gold-light);
    box-shadow: 0 10px 32px rgba(252,180,0,.45);
    transform: translateY(-2px);
  }
}
.post-cta .btn--outline-dark {
  background: rgba(252,180,0,.06);
  color: var(--gold-light);
  border: 1.5px solid rgba(252,180,0,.55);
}
.post-cta .btn--outline-dark:hover {
  background: rgba(252,180,0,.14);
  border-color: var(--gold);
  color: var(--gold-light);
}
.post-share { display: flex; align-items: center; gap: 12px; margin: 36px 0 8px; padding-top: 26px; border-top: 1px solid rgba(0,46,61,.1); }
.post-share__label { font-weight: 600; font-size: .9rem; color: var(--text-dark); }
.post-share__btn { width: 44px; height: 44px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--surface-light); border: 0; cursor: pointer; padding: 0; transition: background .25s ease, transform .25s cubic-bezier(.2,.8,.2,1); position: relative; }
.post-share__btn svg { width: 20px; height: 20px; fill: var(--navy); stroke: none; }
.post-share__copy svg { fill: none; stroke: var(--navy); stroke-width: 2; }
.post-share__btn:hover { background: var(--accent); transform: translateY(-3px); }
.post-share__btn:hover svg { fill: #fff; stroke: #fff; }
.post-share__copy.copied::after { content: "Skopiowano!"; position: absolute; bottom: 130%; left: 50%; transform: translateX(-50%); background: var(--navy); color: #fff; font-size: .72rem; padding: 4px 10px; border-radius: 6px; white-space: nowrap; }
.post-author { display: flex; gap: 18px; margin: 40px 0 8px; padding: 26px; background: var(--surface-light); border-radius: 16px; }
.post-author__avatar { flex-shrink: 0; width: 72px; height: 72px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; overflow: hidden; box-shadow: 0 0 0 2px rgba(252,180,0,.55), 0 6px 18px rgba(0,46,61,.22); }
.post-author__avatar svg { width: 26px; height: 26px; fill: none; stroke: var(--gold-light); stroke-width: 1.5; }
.post-author__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; }
.post-author__name { font-weight: 700; font-family: 'Oswald',sans-serif; font-size: 1.1rem; margin-bottom: 6px; color: var(--text-dark); }
.post-author__bio { font-size: .9rem; color: var(--text-body); line-height: 1.65; margin: 0; }
@media (max-width: 600px) { .post-cta, .post-author { flex-direction: column; align-items: flex-start; padding: 22px; } .post-cta__actions { width: 100%; } }

/* === Sekcja sygnalow / objawow (np. podsluchu) === */
.svc-signals { position: relative; padding: clamp(56px,8vw,100px) 0; background: var(--navy-deep); overflow: hidden; }
.svc-signals::before { display: none; } /* bez poswiaty - plaskie navy identyczne z video-section */
.svc-signals .container { position: relative; z-index: 1; }
.svc-signals__header { text-align: center; max-width: 740px; margin: 0 auto clamp(36px,5vw,56px); }
.svc-signals__intro { color: var(--text-light); font-size: 1rem; line-height: 1.7; margin-top: 16px; }
.svc-signals__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px,1fr)); gap: 18px; max-width: 980px; margin: 0 auto; }
.svc-signals__item { display: flex; gap: 18px; align-items: flex-start; padding: 22px 26px; background: rgba(255,255,255,.04); border: 1px solid rgba(0,163,217,.18); border-radius: 12px; transition: border-color .3s ease, background .3s ease, transform .3s cubic-bezier(.2,.8,.2,1); }
.svc-signals__item:hover { border-color: rgba(0,163,217,.5); background: rgba(0,137,182,.08); transform: translateY(-3px); }
.svc-signals__num { font-family: 'Oswald',sans-serif; font-size: 1.7rem; font-weight: 700; color: var(--gold-light); line-height: 1; flex-shrink: 0; opacity: .9; }
.svc-signals__text { color: var(--text-white); font-size: .96rem; line-height: 1.5; margin: 0; }
.svc-signals__cta { text-align: center; margin-top: clamp(34px,4vw,50px); }

/* === Strona 404 === */
.error-404 { background: var(--navy-deep); padding: clamp(80px,12vw,150px) 0; text-align: center; min-height: 68vh; display: flex; align-items: center; }
.error-404__inner { max-width: 640px; margin: 0 auto; }
.error-404__code { font-family: 'Oswald',sans-serif; font-size: clamp(5rem,15vw,9rem); font-weight: 700; color: var(--accent); line-height: 1; }
.error-404__title { color: var(--text-white); font-size: clamp(1.6rem,4vw,2.4rem); margin: 14px 0 16px; }
.error-404__desc { color: var(--text-light); font-size: 1.05rem; line-height: 1.6; margin-bottom: 34px; }
.error-404__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.error-404__links { font-size: .9rem; color: var(--text-muted); display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; align-items: center; }
.error-404__links a { color: var(--accent-glow); }

/* === Fix header mobile: hamburger po prawej, topbar bez redundancji === */
@media (max-width: 1280px) {
  .header__cta { display: flex; align-items: center; gap: 14px; }
  .nav__toggle { display: block; position: relative; flex-shrink: 0; }
}
@media (max-width: 768px) {
  /* topbar: telefon i email dubluja sie z naglowkiem - ukrywamy, zostaje badge + social */
  .topbar__right .topbar__contact { display: none; }
  .topbar__inner { justify-content: space-between; }
}
@media (max-width: 440px) {
  /* na bardzo malym ekranie telefon w naglowku jako sama ikona (numer jest w pasku/kontakcie) */
  .header__phone-num { display: none; }
  .header__phone { padding: 8px; }
}

/* === Fix sekcja kontakt mobile: details pionowo jako rowne kafelki (nie dziwny wrap 2+1) === */
@media (max-width: 640px) {
  .contact-cta__details { flex-direction: column; gap: 12px; }
  .contact-cta__detail {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(0,163,217,0.15);
    border-radius: 12px;
    padding: 14px 16px;
  }
}

/* === Sekcja "Dlaczego my": zdjecie pelna wysokosc kolumny (bez sticky/plywania).
   Walizka sprzetu wypelnia wysoki kadr bez ucinania obiektu (gęsta scena). === */
.why__grid { align-items: stretch; }
.why__image { position: relative; top: auto; align-self: stretch; }
.why__image img { min-height: 100%; }

/* Strona miasta: mapa bez wlasnego naglowka (pusty h2) - strona ma juz naglowek sekcji */
.dhpl-mapa h2:empty{display:none;}

/* Strona miasta: chowamy naglowek+subtitle mapy (strona ma juz naglowek "Obsługiwane obszary") */
.locations--city .dhpl-mapa > .dhpl-container > h2,
.locations--city .dhpl-mapa .dhpl-subtitle{display:none;}

/* ===== Strona miasta: polish sekcji (2026-06) ===== */
/* (kolor linkow w liscie uslug ustawiony przy .city-services__list li a wyzej) */

/* Profesjonalne / "Dlaczego" jako proza editorial: wezsza miara + inicjal (drop-cap) */
.svc-extra--editorial .svc-extra__lead { max-width: 64ch; }
/* drop-cap usuniety (Marcin nie chce wielkiej inicjalnej litery) */

/* ============================================================
   CTA callout - koncowy ogon editorial ("Masz problem? Skorzystaj
   z konsultacji [link]") jako czysty box zamiast surowych <p>.
   Reuzywalny na wszystkich stronach (peeling w arcanum_split_extra_content).
   Granat + zloto = wysoki kontrast, gold link z animowana strzalka.
   ============================================================ */
.svc-extra__cta {
  margin-top: clamp(36px, 4.5vw, 56px);
  padding: clamp(38px, 4.8vw, 64px) clamp(28px, 4vw, 56px);
  background: var(--navy-deep);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  max-width: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 26px 64px -24px rgba(0, 30, 41, 0.5);
}
/* subtelna brandowa poswiata w rogu - glebia, nie gimmick */
.svc-extra__cta::before {
  content: '';
  position: absolute;
  top: -45%; right: -8%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(252,180,0,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.svc-extra__cta-label {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  position: relative;
}
.svc-extra__cta-q {
  margin: 0;
  max-width: 28ch;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.18;
  color: var(--text-white);
  text-wrap: balance;
  position: relative;
}
.svc-extra__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  line-height: 1.4;
  text-decoration: none;
  position: relative;
  transition: gap 220ms cubic-bezier(0.23, 1, 0.32, 1);
}
.svc-extra__cta-link > span:first-child {
  text-decoration: underline;
  text-decoration-color: rgba(252, 180, 0, 0.45);
  text-underline-offset: 4px;
  transition: text-decoration-color 160ms ease;
}
.svc-extra__cta-arrow { font-size: 1.1em; line-height: 1; }
.svc-extra__cta-link:hover { gap: 16px; }
.svc-extra__cta-link:hover > span:first-child { text-decoration-color: var(--gold); }
@media (prefers-reduced-motion: reduce) {
  .svc-extra__cta-link { transition: none; }
}

/* Sekcja "Profesjonalne uslugi" - premium split (reuse .svc-expertise) z pojedynczym akapitem.
   Pojedynczy akapit ma sie czytac jak proza (nie caly pogrubiony/obramowany jak lead wielu akapitow),
   z eleganckim inicjalem. Tekst pozostaje 1:1 z Wixa. */
.svc-expertise--profile .svc-expertise__text {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-body);
}
.svc-expertise--profile .svc-expertise__text p:first-child {
  font-size: 1.02rem;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.85;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
/* drop-cap usuniety (Marcin: nigdy wielkiej inicjalnej litery) */
.svc-expertise--profile .svc-expertise__content .section-label { color: var(--accent); }
.svc-expertise--profile .svc-expertise__content .section-title { color: var(--navy-deep); }
/* Akcent pod tytulem dla rytmu */
.svc-expertise--profile .svc-expertise__content .section-title {
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 22px;
}
.svc-expertise--profile .svc-expertise__content .section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  border-radius: 2px;
  background: var(--gold);
}

/* ===== Fix sekcji "Zakres usług" (svc-scope) - tekst wypadal poza kafelek ===== */
/* Grid items maja domyslnie min-width:auto, przez co dlugie slowo (np. PRZEDSIEBIORSTWA)
   rozpychalo kolumne i wypadalo poza karte w ukladzie wielokolumnowym. */
.svc-scope__card { min-width: 0; }
.svc-scope__title,
.svc-scope__desc { min-width: 0; overflow-wrap: break-word; }
/* Wezsza kolumna numeru w ukladzie wielokolumnowym (rot-2) = wiecej miejsca na tekst */
.svc-rot-2.svc-scope.svc-scope--b .svc-scope__card { grid-template-columns: 52px 1fr; }
/* Ciemny wariant: realne kafelki (obramowanie + zaokraglenie), nie gole kolumny */
.svc-scope--dark.svc-scope--b .svc-scope__card {
  border: 1px solid rgba(191,214,222,0.16);
  border-radius: 12px;
}

/* ===== ochrona-tajemnic-przedsiebiorstwa (ID 20): scoped, tylko ta strona ===== */
/* Hero: obraz z pola ACF svc_hero_img (edytowalny). Tu tylko dostrojenie kadru. */
body.page-id-20 .svc-hero {
  background-position: center 45% !important;
}
/* Konsultacja: czysty granat (bez teala w gradiencie) - przelamanie, nie zielen */
body.page-id-20 .svc-consult,
body.page-id-20 .svc-consult--b {
  background: var(--navy-deep) !important;
}
/* Zakres na JASNO (zeby nie bylo 2 granatowych z rzedu po konsultacji) */
body.page-id-20 .svc-scope--dark { background: var(--surface-white); }
body.page-id-20 .svc-scope--dark .section-label { color: var(--accent); }
body.page-id-20 .svc-scope--dark .section-title { color: var(--navy-deep); }
body.page-id-20 .svc-scope--dark .svc-scope__card { background: var(--surface-light); border-color: #E8ECF1; }
body.page-id-20 .svc-scope--dark .svc-scope__number { color: var(--accent); opacity: 0.35; }
body.page-id-20 .svc-scope--dark .svc-scope__title { color: var(--navy-deep); }
body.page-id-20 .svc-scope--dark .svc-scope__desc { color: var(--text-body); }
/* Obraz expertise: brandowy duotone (desaturacja + tint navy), zeby nie byl surowym stockiem */
body.page-id-20 .svc-expertise__image img { filter: grayscale(0.55) contrast(1.06) brightness(0.92) saturate(0.85); }
body.page-id-20 .svc-expertise__image::before {
  background: linear-gradient(135deg, rgba(0,46,61,0.5) 0%, rgba(0,89,122,0.22) 55%, rgba(0,46,61,0.15) 100%);
  mix-blend-mode: multiply;
}

/* ===== sprawy-niestandardowe (ID 21): redesign 2 sekcji svc-extra (scoped, bez zdjec) ===== */
/* --- MANIFEST (svc-extra z lead): jasny editorial z teksturą kropek + akcent --- */
body.page-id-21 .svc-extra:has(.svc-extra__lead):not(:has(.svc-extra__grid)) {
  background:
    radial-gradient(rgba(0,46,61,0.055) 1px, transparent 1.4px) 0 0 / 22px 22px,
    linear-gradient(180deg, #ffffff 0%, #eef6f8 100%);
  position: relative; overflow: hidden;
}
/* UKLAD: naglowek wysrodkowany na gorze, tekst w wyroznionym panelu (NIE naglowek-lewo/tekst-prawo) */
body.page-id-21 .svc-extra:has(.svc-extra__lead):not(:has(.svc-extra__grid)) .svc-extra__main {
  display: block; position: relative; z-index: 1; max-width: 940px; margin: 0 auto;
}
body.page-id-21 .svc-extra:has(.svc-extra__lead):not(:has(.svc-extra__grid)) .svc-extra__head { text-align: center; max-width: none; margin: 0 auto 42px; position: static; top: auto; }
body.page-id-21 .svc-extra:has(.svc-extra__lead):not(:has(.svc-extra__grid)) .svc-extra__head .section-title {
  position: relative; display: inline-block; padding-top: 0; padding-bottom: 22px;
}
body.page-id-21 .svc-extra:has(.svc-extra__lead):not(:has(.svc-extra__grid)) .svc-extra__head .section-title::before { display: none; }
body.page-id-21 .svc-extra:has(.svc-extra__lead):not(:has(.svc-extra__grid)) .svc-extra__head .section-title::after {
  content: ''; position: absolute; left: 50%; transform: translateX(-50%); bottom: 0; width: 64px; height: 4px; border-radius: 2px;
  background: var(--gold);
}
/* Tekst jako JEDEN blok prozy w panelu/divie + cudzyslow + celownik w rogu */
body.page-id-21 .svc-extra:has(.svc-extra__lead):not(:has(.svc-extra__grid)) .svc-extra__lead {
  max-width: none; margin: 0 auto; position: relative;
  background: #ffffff; border: 1px solid #E6EDF0; border-radius: 18px;
  padding: 50px 56px 44px; box-shadow: 0 24px 60px rgba(0,46,61,.08);
}
body.page-id-21 .svc-extra:has(.svc-extra__lead):not(:has(.svc-extra__grid)) .svc-extra__lead::before {
  content: '\201C'; position: absolute; top: 4px; left: 30px;
  font-family: Georgia, 'Times New Roman', serif; font-size: 6rem; line-height: 1; color: rgba(0,137,182,.16);
}
body.page-id-21 .svc-extra:has(.svc-extra__lead):not(:has(.svc-extra__grid)) .svc-extra__lead::after {
  content: ''; position: absolute; right: 30px; bottom: 26px; width: 62px; height: 62px; opacity: .8;
  background-repeat: no-repeat; background-position: center; background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%230089B6' stroke-width='1.4'%3E%3Ccircle cx='50' cy='50' r='38'/%3E%3Ccircle cx='50' cy='50' r='24'/%3E%3Ccircle cx='50' cy='50' r='10' stroke='%23FCB400'/%3E%3Cpath d='M50 5v15M50 80v15M5 50h15M80 50h15'/%3E%3Ccircle cx='50' cy='50' r='2.6' fill='%23FCB400' stroke='none'/%3E%3C/svg%3E");
}
body.page-id-21 .svc-extra:has(.svc-extra__lead):not(:has(.svc-extra__grid)) .svc-extra__lead p { margin-bottom: 16px; line-height: 1.8; }
body.page-id-21 .svc-extra:has(.svc-extra__lead):not(:has(.svc-extra__grid)) .svc-extra__lead p:last-child { margin-bottom: 0; }
body.page-id-21 .svc-extra:has(.svc-extra__lead):not(:has(.svc-extra__grid)) .svc-extra__lead > p:first-of-type {
  font-size: 1.16rem; color: var(--navy-deep); font-weight: 600;
}

/* Akta: siatka kart wysrodkowana na ekranie (NIE tekst w kartach) */
body.page-id-21 .svc-extra:has(.svc-extra__grid) .svc-extra__grid { justify-content: center; }

/* --- RYTM KOLOROW (po wstawieniu granatowych akt) --- */
/* konsultacja: solidny granat (bez teala) */
body.page-id-21 .svc-consult, body.page-id-21 .svc-consult--b { background: var(--navy-deep) !important; }
/* zakres na jasno (zeby NIE bylo 2 granatow z rzedu: akta(granat) -> zakres) */
body.page-id-21 .svc-scope--dark { background: var(--surface-white); }
body.page-id-21 .svc-scope--dark .section-label { color: var(--accent); }
body.page-id-21 .svc-scope--dark .section-title { color: var(--navy-deep); }
body.page-id-21 .svc-scope--dark .svc-scope__card { background: var(--surface-light); border-color: #E8ECF1; }
body.page-id-21 .svc-scope--dark .svc-scope__number { color: var(--accent); opacity: 0.35; }
body.page-id-21 .svc-scope--dark .svc-scope__title { color: var(--navy-deep); }
body.page-id-21 .svc-scope--dark .svc-scope__desc { color: var(--text-body); }
/* hover tez jasny (bazowy hover robil ciemne tlo z ciemnym tekstem = nieczytelne) */
body.page-id-21 .svc-scope--dark .svc-scope__card:hover { background: #fff; border-color: rgba(0,137,182,.3); box-shadow: 0 16px 40px rgba(0,46,61,.10); }
body.page-id-21 .svc-scope--dark .svc-scope__card:hover .svc-scope__title { color: var(--navy-deep); }
body.page-id-21 .svc-scope--dark .svc-scope__card:hover .svc-scope__desc { color: var(--text-body); }
body.page-id-21 .svc-scope--dark .svc-scope__card:hover .svc-scope__number { color: var(--accent); }

/* --- PRZYKLADY = "AKTA SPRAW" (dossier / poufne teczki, scoped) --- */
body.page-id-21 .svc-extra:has(.svc-extra__grid) { background: var(--navy-deep); position: relative; overflow: hidden; }
body.page-id-21 .svc-extra:has(.svc-extra__grid)::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .6;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.022) 0 1px, transparent 1px 4px),
    radial-gradient(ellipse 55% 60% at 82% 6%, rgba(0,137,182,.18), transparent 60%);
}
body.page-id-21 .svc-extra:has(.svc-extra__grid) .svc-extra__head .section-title { color: var(--text-white); }
body.page-id-21 .svc-extra:has(.svc-extra__grid) .svc-extra__grid { position: relative; z-index: 1; counter-reset: akta; }
/* karta = teczka sprawy */
body.page-id-21 .svc-extra:has(.svc-extra__grid) .svc-extra__card {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.022));
  border: 1px solid rgba(255,255,255,0.10);
  border-top: 2px solid rgba(252,180,0,.5);
  border-radius: 3px 3px 14px 14px;
  padding: 28px 30px 30px;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease, border-color .4s ease;
}
body.page-id-21 .svc-extra:has(.svc-extra__grid) .svc-extra__card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 60px rgba(0,0,0,.38);
  border-color: rgba(0,137,182,.4); border-top-color: var(--gold);
}
/* zloty narozny tag teczki */
body.page-id-21 .svc-extra:has(.svc-extra__grid) .svc-extra__card::after {
  content: ''; position: absolute; top: 0; right: 0;
  border-style: solid; border-width: 0 24px 24px 0;
  border-color: transparent rgba(252,180,0,.4) transparent transparent;
  transition: border-color .4s ease;
}
body.page-id-21 .svc-extra:has(.svc-extra__grid) .svc-extra__card:hover::after { border-color: transparent var(--gold) transparent transparent; }
/* ikona kategorii w badge */
body.page-id-21 .svc-extra:has(.svc-extra__grid) .svc-extra__card::before {
  content: ''; display: block; width: 50px; height: 50px; margin-bottom: 16px; border-radius: 11px;
  background-color: rgba(252,180,0,.10); background-repeat: no-repeat; background-position: center; background-size: 25px 25px;
}
/* naglowek akt: AKTA Nr 0X . POUFNE */
body.page-id-21 .svc-extra:has(.svc-extra__grid) .svc-extra__card-title::before {
  counter-increment: akta;
  content: "AKTA Nr " counter(akta, decimal-leading-zero) "  \00B7  POUFNE";
  display: block; margin-bottom: 9px;
  font-family: 'Oswald', sans-serif; font-size: 0.64rem; font-weight: 600; letter-spacing: 0.22em;
  color: var(--gold);
}
body.page-id-21 .svc-extra:has(.svc-extra__grid) .svc-extra__card:nth-child(1)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFD966' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 12s4-7 11-7 11 7 11 7-4 7-11 7-11-7-11-7z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E"); }
body.page-id-21 .svc-extra:has(.svc-extra__grid) .svc-extra__card:nth-child(2)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFD966' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='5' cy='6' r='2'/%3E%3Ccircle cx='19' cy='6' r='2'/%3E%3Ccircle cx='12' cy='19' r='2'/%3E%3Cpath d='M6.7 7.4l4 9.4M17.3 7.4l-4 9.4M7 6h10'/%3E%3C/svg%3E"); }
body.page-id-21 .svc-extra:has(.svc-extra__grid) .svc-extra__card:nth-child(3)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFD966' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='2.2'/%3E%3Cpath d='M12 3v3M12 18v3M3 12h3M18 12h3M6 6l2 2M16 16l2 2M18 6l-2 2M8 16l-2 2'/%3E%3C/svg%3E"); }
body.page-id-21 .svc-extra:has(.svc-extra__grid) .svc-extra__card:nth-child(4)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFD966' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 3H7a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V8z'/%3E%3Cpath d='M14 3v5h5M8 13h8M8 17h5'/%3E%3C/svg%3E"); }
body.page-id-21 .svc-extra:has(.svc-extra__grid) .svc-extra__card-title,
body.page-id-21 .svc-extra:has(.svc-extra__grid) .svc-extra__card-title a { color: var(--text-white); }
body.page-id-21 .svc-extra:has(.svc-extra__grid) .svc-extra__card:hover .svc-extra__card-title a { color: var(--gold-light); }
body.page-id-21 .svc-extra:has(.svc-extra__grid) .svc-extra__card-desc { color: var(--text-light); }

/* === sprawy-niestandardowe (ID21) - poprawki: akta wysrodkowane, panel bez drop-capa + brand === */
/* Akta: cala tresc wysrodkowana na ekranie (byla dosunieta do lewej) */
body.page-id-21 .svc-extra:has(.svc-extra__grid) .svc-extra__layout,
body.page-id-21 .svc-extra:has(.svc-extra__grid) .svc-extra__main { display: block; max-width: none; width: 100%; margin: 0 auto; }
body.page-id-21 .svc-extra:has(.svc-extra__grid) .svc-extra__head { max-width: 900px; margin: 0 auto; }
body.page-id-21 .svc-extra:has(.svc-extra__grid) .svc-extra__grid { grid-template-columns: repeat(2, minmax(0,1fr)); max-width: 900px; margin: 28px auto 0; }
/* Wyzwania: bez drop-capa (duze "N" jak w ksiazce) */
body.page-id-21 .svc-extra:has(.svc-extra__lead):not(:has(.svc-extra__grid)) .svc-extra__lead > p:first-of-type::first-letter {
  font-size: inherit; float: none; margin: 0; color: inherit; font-family: inherit; line-height: inherit;
}
/* Panel bardziej brandowy: zlota gorna listwa + zloty cudzyslow */
body.page-id-21 .svc-extra:has(.svc-extra__lead):not(:has(.svc-extra__grid)) .svc-extra__lead { border-top: 3px solid var(--gold); }
body.page-id-21 .svc-extra:has(.svc-extra__lead):not(:has(.svc-extra__grid)) .svc-extra__lead::before { color: rgba(252,180,0,.30); }

/* === CLASH FIX per-strona (KOMPLETNE 24 ID stron uslug, bez miast): konsultacja granat + zakres jasny === */
body.page-id-10 .svc-consult, body.page-id-11 .svc-consult, body.page-id-12 .svc-consult, body.page-id-13 .svc-consult, body.page-id-14 .svc-consult, body.page-id-15 .svc-consult, body.page-id-16 .svc-consult, body.page-id-17 .svc-consult, body.page-id-18 .svc-consult, body.page-id-19 .svc-consult, body.page-id-20 .svc-consult, body.page-id-21 .svc-consult, body.page-id-22 .svc-consult, body.page-id-23 .svc-consult, body.page-id-24 .svc-consult, body.page-id-25 .svc-consult, body.page-id-26 .svc-consult, body.page-id-27 .svc-consult, body.page-id-28 .svc-consult, body.page-id-29 .svc-consult, body.page-id-30 .svc-consult, body.page-id-31 .svc-consult, body.page-id-32 .svc-consult, body.page-id-818 .svc-consult, body.page-id-10 .svc-consult--b, body.page-id-11 .svc-consult--b, body.page-id-12 .svc-consult--b, body.page-id-13 .svc-consult--b, body.page-id-14 .svc-consult--b, body.page-id-15 .svc-consult--b, body.page-id-16 .svc-consult--b, body.page-id-17 .svc-consult--b, body.page-id-18 .svc-consult--b, body.page-id-19 .svc-consult--b, body.page-id-20 .svc-consult--b, body.page-id-21 .svc-consult--b, body.page-id-22 .svc-consult--b, body.page-id-23 .svc-consult--b, body.page-id-24 .svc-consult--b, body.page-id-25 .svc-consult--b, body.page-id-26 .svc-consult--b, body.page-id-27 .svc-consult--b, body.page-id-28 .svc-consult--b, body.page-id-29 .svc-consult--b, body.page-id-30 .svc-consult--b, body.page-id-31 .svc-consult--b, body.page-id-32 .svc-consult--b, body.page-id-818 .svc-consult--b { background: var(--navy-deep) !important; }
body.page-id-10 .svc-scope--dark, body.page-id-11 .svc-scope--dark, body.page-id-12 .svc-scope--dark, body.page-id-13 .svc-scope--dark, body.page-id-14 .svc-scope--dark, body.page-id-15 .svc-scope--dark, body.page-id-16 .svc-scope--dark, body.page-id-17 .svc-scope--dark, body.page-id-18 .svc-scope--dark, body.page-id-19 .svc-scope--dark, body.page-id-20 .svc-scope--dark, body.page-id-21 .svc-scope--dark, body.page-id-22 .svc-scope--dark, body.page-id-23 .svc-scope--dark, body.page-id-24 .svc-scope--dark, body.page-id-25 .svc-scope--dark, body.page-id-26 .svc-scope--dark, body.page-id-27 .svc-scope--dark, body.page-id-28 .svc-scope--dark, body.page-id-29 .svc-scope--dark, body.page-id-30 .svc-scope--dark, body.page-id-31 .svc-scope--dark, body.page-id-32 .svc-scope--dark, body.page-id-818 .svc-scope--dark { background: var(--surface-white); }
body.page-id-10 .svc-scope--dark .section-label, body.page-id-11 .svc-scope--dark .section-label, body.page-id-12 .svc-scope--dark .section-label, body.page-id-13 .svc-scope--dark .section-label, body.page-id-14 .svc-scope--dark .section-label, body.page-id-15 .svc-scope--dark .section-label, body.page-id-16 .svc-scope--dark .section-label, body.page-id-17 .svc-scope--dark .section-label, body.page-id-18 .svc-scope--dark .section-label, body.page-id-19 .svc-scope--dark .section-label, body.page-id-20 .svc-scope--dark .section-label, body.page-id-21 .svc-scope--dark .section-label, body.page-id-22 .svc-scope--dark .section-label, body.page-id-23 .svc-scope--dark .section-label, body.page-id-24 .svc-scope--dark .section-label, body.page-id-25 .svc-scope--dark .section-label, body.page-id-26 .svc-scope--dark .section-label, body.page-id-27 .svc-scope--dark .section-label, body.page-id-28 .svc-scope--dark .section-label, body.page-id-29 .svc-scope--dark .section-label, body.page-id-30 .svc-scope--dark .section-label, body.page-id-31 .svc-scope--dark .section-label, body.page-id-32 .svc-scope--dark .section-label, body.page-id-818 .svc-scope--dark .section-label { color: var(--accent); }
body.page-id-10 .svc-scope--dark .section-title, body.page-id-11 .svc-scope--dark .section-title, body.page-id-12 .svc-scope--dark .section-title, body.page-id-13 .svc-scope--dark .section-title, body.page-id-14 .svc-scope--dark .section-title, body.page-id-15 .svc-scope--dark .section-title, body.page-id-16 .svc-scope--dark .section-title, body.page-id-17 .svc-scope--dark .section-title, body.page-id-18 .svc-scope--dark .section-title, body.page-id-19 .svc-scope--dark .section-title, body.page-id-20 .svc-scope--dark .section-title, body.page-id-21 .svc-scope--dark .section-title, body.page-id-22 .svc-scope--dark .section-title, body.page-id-23 .svc-scope--dark .section-title, body.page-id-24 .svc-scope--dark .section-title, body.page-id-25 .svc-scope--dark .section-title, body.page-id-26 .svc-scope--dark .section-title, body.page-id-27 .svc-scope--dark .section-title, body.page-id-28 .svc-scope--dark .section-title, body.page-id-29 .svc-scope--dark .section-title, body.page-id-30 .svc-scope--dark .section-title, body.page-id-31 .svc-scope--dark .section-title, body.page-id-32 .svc-scope--dark .section-title, body.page-id-818 .svc-scope--dark .section-title { color: var(--navy-deep); }
body.page-id-10 .svc-scope--dark .svc-scope__card, body.page-id-11 .svc-scope--dark .svc-scope__card, body.page-id-12 .svc-scope--dark .svc-scope__card, body.page-id-13 .svc-scope--dark .svc-scope__card, body.page-id-14 .svc-scope--dark .svc-scope__card, body.page-id-15 .svc-scope--dark .svc-scope__card, body.page-id-16 .svc-scope--dark .svc-scope__card, body.page-id-17 .svc-scope--dark .svc-scope__card, body.page-id-18 .svc-scope--dark .svc-scope__card, body.page-id-19 .svc-scope--dark .svc-scope__card, body.page-id-20 .svc-scope--dark .svc-scope__card, body.page-id-21 .svc-scope--dark .svc-scope__card, body.page-id-22 .svc-scope--dark .svc-scope__card, body.page-id-23 .svc-scope--dark .svc-scope__card, body.page-id-24 .svc-scope--dark .svc-scope__card, body.page-id-25 .svc-scope--dark .svc-scope__card, body.page-id-26 .svc-scope--dark .svc-scope__card, body.page-id-27 .svc-scope--dark .svc-scope__card, body.page-id-28 .svc-scope--dark .svc-scope__card, body.page-id-29 .svc-scope--dark .svc-scope__card, body.page-id-30 .svc-scope--dark .svc-scope__card, body.page-id-31 .svc-scope--dark .svc-scope__card, body.page-id-32 .svc-scope--dark .svc-scope__card, body.page-id-818 .svc-scope--dark .svc-scope__card { background: linear-gradient(158deg, var(--navy) 0%, var(--navy-deep) 100%); border-color: rgba(252,180,0,0.14); }body.page-id-10 .svc-scope--dark .svc-scope__number, body.page-id-11 .svc-scope--dark .svc-scope__number, body.page-id-12 .svc-scope--dark .svc-scope__number, body.page-id-13 .svc-scope--dark .svc-scope__number, body.page-id-14 .svc-scope--dark .svc-scope__number, body.page-id-15 .svc-scope--dark .svc-scope__number, body.page-id-16 .svc-scope--dark .svc-scope__number, body.page-id-17 .svc-scope--dark .svc-scope__number, body.page-id-18 .svc-scope--dark .svc-scope__number, body.page-id-19 .svc-scope--dark .svc-scope__number, body.page-id-20 .svc-scope--dark .svc-scope__number, body.page-id-21 .svc-scope--dark .svc-scope__number, body.page-id-22 .svc-scope--dark .svc-scope__number, body.page-id-23 .svc-scope--dark .svc-scope__number, body.page-id-24 .svc-scope--dark .svc-scope__number, body.page-id-25 .svc-scope--dark .svc-scope__number, body.page-id-26 .svc-scope--dark .svc-scope__number, body.page-id-27 .svc-scope--dark .svc-scope__number, body.page-id-28 .svc-scope--dark .svc-scope__number, body.page-id-29 .svc-scope--dark .svc-scope__number, body.page-id-30 .svc-scope--dark .svc-scope__number, body.page-id-31 .svc-scope--dark .svc-scope__number, body.page-id-32 .svc-scope--dark .svc-scope__number, body.page-id-818 .svc-scope--dark .svc-scope__number { color: var(--gold); opacity: 0.92; }body.page-id-10 .svc-scope--dark .svc-scope__title, body.page-id-11 .svc-scope--dark .svc-scope__title, body.page-id-12 .svc-scope--dark .svc-scope__title, body.page-id-13 .svc-scope--dark .svc-scope__title, body.page-id-14 .svc-scope--dark .svc-scope__title, body.page-id-15 .svc-scope--dark .svc-scope__title, body.page-id-16 .svc-scope--dark .svc-scope__title, body.page-id-17 .svc-scope--dark .svc-scope__title, body.page-id-18 .svc-scope--dark .svc-scope__title, body.page-id-19 .svc-scope--dark .svc-scope__title, body.page-id-20 .svc-scope--dark .svc-scope__title, body.page-id-21 .svc-scope--dark .svc-scope__title, body.page-id-22 .svc-scope--dark .svc-scope__title, body.page-id-23 .svc-scope--dark .svc-scope__title, body.page-id-24 .svc-scope--dark .svc-scope__title, body.page-id-25 .svc-scope--dark .svc-scope__title, body.page-id-26 .svc-scope--dark .svc-scope__title, body.page-id-27 .svc-scope--dark .svc-scope__title, body.page-id-28 .svc-scope--dark .svc-scope__title, body.page-id-29 .svc-scope--dark .svc-scope__title, body.page-id-30 .svc-scope--dark .svc-scope__title, body.page-id-31 .svc-scope--dark .svc-scope__title, body.page-id-32 .svc-scope--dark .svc-scope__title, body.page-id-818 .svc-scope--dark .svc-scope__title { color: var(--text-white); }body.page-id-10 .svc-scope--dark .svc-scope__desc, body.page-id-11 .svc-scope--dark .svc-scope__desc, body.page-id-12 .svc-scope--dark .svc-scope__desc, body.page-id-13 .svc-scope--dark .svc-scope__desc, body.page-id-14 .svc-scope--dark .svc-scope__desc, body.page-id-15 .svc-scope--dark .svc-scope__desc, body.page-id-16 .svc-scope--dark .svc-scope__desc, body.page-id-17 .svc-scope--dark .svc-scope__desc, body.page-id-18 .svc-scope--dark .svc-scope__desc, body.page-id-19 .svc-scope--dark .svc-scope__desc, body.page-id-20 .svc-scope--dark .svc-scope__desc, body.page-id-21 .svc-scope--dark .svc-scope__desc, body.page-id-22 .svc-scope--dark .svc-scope__desc, body.page-id-23 .svc-scope--dark .svc-scope__desc, body.page-id-24 .svc-scope--dark .svc-scope__desc, body.page-id-25 .svc-scope--dark .svc-scope__desc, body.page-id-26 .svc-scope--dark .svc-scope__desc, body.page-id-27 .svc-scope--dark .svc-scope__desc, body.page-id-28 .svc-scope--dark .svc-scope__desc, body.page-id-29 .svc-scope--dark .svc-scope__desc, body.page-id-30 .svc-scope--dark .svc-scope__desc, body.page-id-31 .svc-scope--dark .svc-scope__desc, body.page-id-32 .svc-scope--dark .svc-scope__desc, body.page-id-818 .svc-scope--dark .svc-scope__desc { color: rgba(240,244,246,0.74); }body.page-id-10 .svc-scope--dark .svc-scope__card:hover, body.page-id-11 .svc-scope--dark .svc-scope__card:hover, body.page-id-12 .svc-scope--dark .svc-scope__card:hover, body.page-id-13 .svc-scope--dark .svc-scope__card:hover, body.page-id-14 .svc-scope--dark .svc-scope__card:hover, body.page-id-15 .svc-scope--dark .svc-scope__card:hover, body.page-id-16 .svc-scope--dark .svc-scope__card:hover, body.page-id-17 .svc-scope--dark .svc-scope__card:hover, body.page-id-18 .svc-scope--dark .svc-scope__card:hover, body.page-id-19 .svc-scope--dark .svc-scope__card:hover, body.page-id-20 .svc-scope--dark .svc-scope__card:hover, body.page-id-21 .svc-scope--dark .svc-scope__card:hover, body.page-id-22 .svc-scope--dark .svc-scope__card:hover, body.page-id-23 .svc-scope--dark .svc-scope__card:hover, body.page-id-24 .svc-scope--dark .svc-scope__card:hover, body.page-id-25 .svc-scope--dark .svc-scope__card:hover, body.page-id-26 .svc-scope--dark .svc-scope__card:hover, body.page-id-27 .svc-scope--dark .svc-scope__card:hover, body.page-id-28 .svc-scope--dark .svc-scope__card:hover, body.page-id-29 .svc-scope--dark .svc-scope__card:hover, body.page-id-30 .svc-scope--dark .svc-scope__card:hover, body.page-id-31 .svc-scope--dark .svc-scope__card:hover, body.page-id-32 .svc-scope--dark .svc-scope__card:hover, body.page-id-818 .svc-scope--dark .svc-scope__card:hover { background: linear-gradient(158deg, var(--navy) 0%, var(--navy-deep) 100%); border-color: rgba(252,180,0,0.28); box-shadow: 0 24px 52px -28px rgba(0,30,41,0.55); }body.page-id-10 .svc-scope--dark .svc-scope__card:hover .svc-scope__title, body.page-id-11 .svc-scope--dark .svc-scope__card:hover .svc-scope__title, body.page-id-12 .svc-scope--dark .svc-scope__card:hover .svc-scope__title, body.page-id-13 .svc-scope--dark .svc-scope__card:hover .svc-scope__title, body.page-id-14 .svc-scope--dark .svc-scope__card:hover .svc-scope__title, body.page-id-15 .svc-scope--dark .svc-scope__card:hover .svc-scope__title, body.page-id-16 .svc-scope--dark .svc-scope__card:hover .svc-scope__title, body.page-id-17 .svc-scope--dark .svc-scope__card:hover .svc-scope__title, body.page-id-18 .svc-scope--dark .svc-scope__card:hover .svc-scope__title, body.page-id-19 .svc-scope--dark .svc-scope__card:hover .svc-scope__title, body.page-id-20 .svc-scope--dark .svc-scope__card:hover .svc-scope__title, body.page-id-21 .svc-scope--dark .svc-scope__card:hover .svc-scope__title, body.page-id-22 .svc-scope--dark .svc-scope__card:hover .svc-scope__title, body.page-id-23 .svc-scope--dark .svc-scope__card:hover .svc-scope__title, body.page-id-24 .svc-scope--dark .svc-scope__card:hover .svc-scope__title, body.page-id-25 .svc-scope--dark .svc-scope__card:hover .svc-scope__title, body.page-id-26 .svc-scope--dark .svc-scope__card:hover .svc-scope__title, body.page-id-27 .svc-scope--dark .svc-scope__card:hover .svc-scope__title, body.page-id-28 .svc-scope--dark .svc-scope__card:hover .svc-scope__title, body.page-id-29 .svc-scope--dark .svc-scope__card:hover .svc-scope__title, body.page-id-30 .svc-scope--dark .svc-scope__card:hover .svc-scope__title, body.page-id-31 .svc-scope--dark .svc-scope__card:hover .svc-scope__title, body.page-id-32 .svc-scope--dark .svc-scope__card:hover .svc-scope__title, body.page-id-818 .svc-scope--dark .svc-scope__card:hover .svc-scope__title { color: var(--text-white); }body.page-id-10 .svc-scope--dark .svc-scope__card:hover .svc-scope__desc, body.page-id-11 .svc-scope--dark .svc-scope__card:hover .svc-scope__desc, body.page-id-12 .svc-scope--dark .svc-scope__card:hover .svc-scope__desc, body.page-id-13 .svc-scope--dark .svc-scope__card:hover .svc-scope__desc, body.page-id-14 .svc-scope--dark .svc-scope__card:hover .svc-scope__desc, body.page-id-15 .svc-scope--dark .svc-scope__card:hover .svc-scope__desc, body.page-id-16 .svc-scope--dark .svc-scope__card:hover .svc-scope__desc, body.page-id-17 .svc-scope--dark .svc-scope__card:hover .svc-scope__desc, body.page-id-18 .svc-scope--dark .svc-scope__card:hover .svc-scope__desc, body.page-id-19 .svc-scope--dark .svc-scope__card:hover .svc-scope__desc, body.page-id-20 .svc-scope--dark .svc-scope__card:hover .svc-scope__desc, body.page-id-21 .svc-scope--dark .svc-scope__card:hover .svc-scope__desc, body.page-id-22 .svc-scope--dark .svc-scope__card:hover .svc-scope__desc, body.page-id-23 .svc-scope--dark .svc-scope__card:hover .svc-scope__desc, body.page-id-24 .svc-scope--dark .svc-scope__card:hover .svc-scope__desc, body.page-id-25 .svc-scope--dark .svc-scope__card:hover .svc-scope__desc, body.page-id-26 .svc-scope--dark .svc-scope__card:hover .svc-scope__desc, body.page-id-27 .svc-scope--dark .svc-scope__card:hover .svc-scope__desc, body.page-id-28 .svc-scope--dark .svc-scope__card:hover .svc-scope__desc, body.page-id-29 .svc-scope--dark .svc-scope__card:hover .svc-scope__desc, body.page-id-30 .svc-scope--dark .svc-scope__card:hover .svc-scope__desc, body.page-id-31 .svc-scope--dark .svc-scope__card:hover .svc-scope__desc, body.page-id-32 .svc-scope--dark .svc-scope__card:hover .svc-scope__desc, body.page-id-818 .svc-scope--dark .svc-scope__card:hover .svc-scope__desc { color: rgba(240,244,246,0.74); }body.page-id-10 .svc-scope--dark .svc-scope__card:hover .svc-scope__number, body.page-id-11 .svc-scope--dark .svc-scope__card:hover .svc-scope__number, body.page-id-12 .svc-scope--dark .svc-scope__card:hover .svc-scope__number, body.page-id-13 .svc-scope--dark .svc-scope__card:hover .svc-scope__number, body.page-id-14 .svc-scope--dark .svc-scope__card:hover .svc-scope__number, body.page-id-15 .svc-scope--dark .svc-scope__card:hover .svc-scope__number, body.page-id-16 .svc-scope--dark .svc-scope__card:hover .svc-scope__number, body.page-id-17 .svc-scope--dark .svc-scope__card:hover .svc-scope__number, body.page-id-18 .svc-scope--dark .svc-scope__card:hover .svc-scope__number, body.page-id-19 .svc-scope--dark .svc-scope__card:hover .svc-scope__number, body.page-id-20 .svc-scope--dark .svc-scope__card:hover .svc-scope__number, body.page-id-21 .svc-scope--dark .svc-scope__card:hover .svc-scope__number, body.page-id-22 .svc-scope--dark .svc-scope__card:hover .svc-scope__number, body.page-id-23 .svc-scope--dark .svc-scope__card:hover .svc-scope__number, body.page-id-24 .svc-scope--dark .svc-scope__card:hover .svc-scope__number, body.page-id-25 .svc-scope--dark .svc-scope__card:hover .svc-scope__number, body.page-id-26 .svc-scope--dark .svc-scope__card:hover .svc-scope__number, body.page-id-27 .svc-scope--dark .svc-scope__card:hover .svc-scope__number, body.page-id-28 .svc-scope--dark .svc-scope__card:hover .svc-scope__number, body.page-id-29 .svc-scope--dark .svc-scope__card:hover .svc-scope__number, body.page-id-30 .svc-scope--dark .svc-scope__card:hover .svc-scope__number, body.page-id-31 .svc-scope--dark .svc-scope__card:hover .svc-scope__number, body.page-id-32 .svc-scope--dark .svc-scope__card:hover .svc-scope__number, body.page-id-818 .svc-scope--dark .svc-scope__card:hover .svc-scope__number { color: var(--gold); }
/* Hero z kapeluszem (ustalenie-majatku 15, windykacja 16, zbieranie-dowodow 25): kadr na postac, nie czubek czapki */
body.page-id-15 .svc-hero, body.page-id-16 .svc-hero, body.page-id-25 .svc-hero { background-position: center 35% !important; }

/* Hero windykacja (16): obraz z Wixa zamiast kapelusza */
body.page-id-16 .svc-hero { background-position: center 40% !important; }

/* Hero majatek (15) + dowody (25): obrazy z Wixa zamiast kapelusza */
body.page-id-15 .svc-hero { background-position: center 38% !important; }
body.page-id-25 .svc-hero { background-position: center 45% !important; }

/* zdrada (10): jednolity kierunek skosu dla wszystkich dividerow - granatowe
   sekcje czytaja sie jako rownolegle ukosniki (parallelogram), nie trapezy.
   Scoped: nie rusza miast (tam warianty maja swoj wlasny kierunek). */
.section-divider::after {
  transform: skewY(-2deg);
  transform-origin: bottom left;
}

/* ============================================================
   svc-process jako
   "DZIENNIK OPERACJI" - klimat detektyw/dossier, spojny z Aktami.
   Kwadratowe znaczniki HUD z naroznym celownikiem, solidna zlota
   nic (bez gradientu), faktura skanlinii, mono etykiety. Scoped.
   ============================================================ */
.svc-process::before {
  background:
    repeating-linear-gradient(0deg, rgba(191,214,222,0.04) 0 1px, transparent 1px 30px),
    radial-gradient(ellipse 50% 60% at 28% 38%, rgba(0,137,182,0.08) 0%, transparent 60%);
}
.svc-process__header .section-label {
  font-family: ui-monospace, 'JetBrains Mono', 'SFMono-Regular', Menlo, monospace;
  letter-spacing: 0.22em;
  color: var(--gold);
}
/* solidna zlota nic zamiast gradientu */
.svc-process__timeline::before {
  background: var(--gold);
  opacity: 0.46;
  width: 1px;
  left: 27px;
}
/* kwadratowy znacznik HUD */
.svc-process__num {
  width: 56px; height: 56px;
  border-radius: 3px;
  background: #001E29;
  border: 1px solid rgba(252,180,0,0.34);
  color: var(--gold);
  font-family: ui-monospace, 'JetBrains Mono', 'SFMono-Regular', Menlo, monospace;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  position: relative;
  transition: transform .28s cubic-bezier(0.23,1,0.32,1), border-color .28s ease, background .28s ease;
}
/* narozny celownik (HUD brackets) */
.svc-process__num::before,
.svc-process__num::after {
  content: '';
  position: absolute;
  width: 9px; height: 9px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.svc-process__num::before { top: -3px; left: -3px; border-right: 0; border-bottom: 0; }
.svc-process__num::after { bottom: -3px; right: -3px; border-left: 0; border-top: 0; }
.svc-process__step:hover .svc-process__num {
  transform: scale(1.06);
  border-color: var(--gold);
  background: #06222d;
}
/* tytul kroku: cienka zlota nic z lewej (znacznik wpisu dziennika) */
.svc-process__title {
  position: relative;
  padding-left: 14px;
}
.svc-process__title::before {
  content: '';
  position: absolute;
  left: 0; top: 2px; bottom: 2px;
  width: 2px;
  background: var(--gold);
  opacity: 0.7;
}



/* ============================================================
   page-30 (raport-do-sadu): "Co zawiera raport?" (svc-extra) jako
   AKTA / RAPORT DETEKTYWISTYCZNY - ciemny dossier (granat, skanlinie,
   zloty zagiety naroznik, klauzula POUFNE, mono numeracja). Spojne z
   "Akta spraw" i dziennikiem operacji. Scoped page-id-30.
   ============================================================ */
body.page-id-30 .svc-extra { background: var(--surface-light); }
body.page-id-30 .svc-extra__main {
  max-width: 820px;
  margin: 0 auto;
  background: var(--navy-deep);
  color: var(--text-white);
  border-radius: 6px;
  padding: clamp(30px,4vw,54px) clamp(26px,4vw,54px) clamp(22px,3vw,40px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,46,61,0.24);
}
/* faktura skanlinii (niejawny dokument) */
body.page-id-30 .svc-extra__main::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 4px);
  pointer-events: none;
}
/* zloty zagiety naroznik (zakladka akt) */
body.page-id-30 .svc-extra__main::after {
  content: '';
  position: absolute; top: 0; right: 0;
  border-width: 0 40px 40px 0;
  border-style: solid;
  border-color: transparent var(--gold) transparent transparent;
}
body.page-id-30 .svc-extra__head {
  position: relative; z-index: 1;
  border-bottom: 1px solid rgba(252,180,0,0.28);
  padding-bottom: 18px;
  margin-bottom: 6px;
}
body.page-id-30 .svc-extra__head::before {
  content: 'RAPORT DETEKTYWISTYCZNY · KLAUZULA: POUFNE';
  display: block;
  font-family: ui-monospace, 'JetBrains Mono', Menlo, monospace;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 12px;
}
body.page-id-30 .svc-extra__head .section-title {
  color: var(--text-white);
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
}
body.page-id-30 .svc-extra__grid {
  display: block;
  counter-reset: doc;
  position: relative;
  z-index: 1;
}
body.page-id-30 .svc-extra__card {
  position: relative;
  display: block;
  background: transparent;
  border: 0;
  border-radius: 0;
  border-bottom: 1px dashed rgba(252,180,0,0.18);
  padding: 18px 8px 18px 58px;
  counter-increment: doc;
  transition: background .2s ease;
}
body.page-id-30 .svc-extra__card:last-child { border-bottom: 0; }
body.page-id-30 .svc-extra__card:hover { background: rgba(252,180,0,0.04); }
body.page-id-30 .svc-extra__card::before {
  content: counter(doc, decimal-leading-zero);
  position: absolute;
  left: 0; top: 19px;
  width: 42px;
  font-family: ui-monospace, 'JetBrains Mono', Menlo, monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
}
body.page-id-30 .svc-extra__card-title {
  color: var(--text-white);
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.02rem;
  margin-bottom: 5px;
}
body.page-id-30 .svc-extra__card-desc { color: rgba(191,214,222,0.72); }
/* GOTCHA: tytul karty 02 to link <a> z color:text-dark -> na granacie niewidoczny. Nadpisujemy. */
body.page-id-30 .svc-extra__card-title a { color: var(--text-white); text-decoration: none; }
body.page-id-30 .svc-extra__card-title a:hover { color: var(--gold); }

/* ============================================================
   page-30 WZMOCNIENIE: z "akt" w "RAPORT" - letterhead + pieczec
   POUFNE + stopka prawna. Bazowy blok akt POWYZEJ zostaje nietkniety.
   REWERT do obecnej wersji = usun TYLKO ten blok.
   ============================================================ */
body.page-id-30 .svc-extra__head::before {
  content: 'BIURO DETEKTYWISTYCZNE ARCANUM  ·  RAPORT Z CZYNNOŚCI';
}
body.page-id-30 .svc-extra__head { position: relative; }
body.page-id-30 .svc-extra__head::after {
  content: 'POUFNE';
  position: absolute;
  right: 2px; top: 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  color: rgba(252,180,0,0.9);
  border: 2px solid rgba(252,180,0,0.65);
  padding: 5px 13px;
  border-radius: 3px;
  transform: rotate(-9deg);
  pointer-events: none;
}
body.page-id-30 .svc-extra__grid::after {
  content: 'Dokument przygotowany zgodnie z ustawą o usługach detektywistycznych · do użytku w postępowaniu';
  display: block;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(252,180,0,0.22);
  font-family: ui-monospace, 'JetBrains Mono', Menlo, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: rgba(191,214,222,0.55);
}

/* ============================================================
   .statement (fallback konsultacji bez krokow): z golego tekstu
   na porzadne CTA w stylu strony - eyebrow BEZPLATNA KONSULTACJA,
   faktura skanlinii + poswiata, pierwszy akapit jako naglowek
   (gdy brak cta_title, przez :has). Globalne (wszystkie fallbacki).
   ============================================================ */
.statement { background: var(--navy-deep); }
.statement::before {
  display: block;
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(191,214,222,0.022) 0 1px, transparent 1px 30px),
    radial-gradient(ellipse 60% 70% at 50% 24%, rgba(0,137,182,0.10) 0%, transparent 60%);
}
.statement__inner::before {
  content: 'BEZPŁATNA KONSULTACJA';
  display: inline-block;
  font-family: ui-monospace, 'JetBrains Mono', Menlo, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(252,180,0,0.30);
}
.statement__inner:not(:has(.statement__quote)) .statement__body > p:first-child {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  line-height: 1.18;
  margin-bottom: 20px;
}
.statement__body { font-size: 1.05rem; line-height: 1.75; max-width: 660px; }
.statement__body > p:not(:first-child) { color: rgba(191,214,222,0.82); }
.statement .btn--primary { margin-top: 30px; }




/* ============================================================
   page-11 svc-scope "Zakres uslug obserwacji" -> arcydzielo, spojne
   z dziennikiem operacji. Lewa: lista z HUD-kwadratami (numer +
   narozny celownik), zlota nic, micro-hover. Prawa: zdjecie kinowe
   (duotone + winieta + zlota ramka). Bez auto-animacji. Scoped.
   ============================================================ */
body.page-id-11 .svc-scope { position: relative; overflow: hidden; }
body.page-id-11 .svc-scope__header { max-width: 600px; }
body.page-id-11 .svc-scope .svc-scope__grid {
  display: block;
  width: min(56%, 600px);
  position: relative;
}
/* zlota nic */
body.page-id-11 .svc-scope .svc-scope__grid::before {
  content: ''; position: absolute;
  left: 21px; top: 38px; bottom: 38px; width: 1px;
  background: rgba(252,180,0,0.35);
}
body.page-id-11 .svc-scope .svc-scope__card {
  position: relative; display: block;
  background: transparent; border: 0; border-radius: 0; box-shadow: none;
  padding: 18px 0 18px 66px;
}
/* kreskowana linia ----- ; na hover OZYWA: kreski plyna w prawo + zlote */
body.page-id-11 .svc-scope .svc-scope__card:not(:last-child)::after {
  content: ''; position: absolute; left: 66px; right: 4px; bottom: 0; height: 2px;
  background-image: repeating-linear-gradient(90deg, rgba(0,46,61,0.28) 0 6px, transparent 6px 12px);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  transition: background-image .35s ease;
}
/* HUD-kwadrat z numerem (jezyk dziennika) */
body.page-id-11 .svc-scope .svc-scope__number {
  position: absolute; left: 0; top: 16px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-white);
  border: 1px solid rgba(252,180,0,0.55);
  border-radius: 3px;
  font-family: ui-monospace, 'JetBrains Mono', Menlo, monospace;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--accent-dark); opacity: 1;
  transition: background .45s cubic-bezier(0.22,1,0.36,1), color .45s ease, border-color .45s ease;
}
body.page-id-11 .svc-scope .svc-scope__number::before,
body.page-id-11 .svc-scope .svc-scope__number::after {
  content: ''; position: absolute; width: 8px; height: 8px; border: 1px solid var(--gold);
}
body.page-id-11 .svc-scope .svc-scope__number::before { top: -3px; left: -3px; border-right: 0; border-bottom: 0; }
body.page-id-11 .svc-scope .svc-scope__number::after { bottom: -3px; right: -3px; border-left: 0; border-top: 0; }
body.page-id-11 .svc-scope .svc-scope__title {
  color: var(--text-dark); font-family: 'Oswald', sans-serif;
  text-transform: uppercase; font-size: 1.05rem; letter-spacing: 0.02em;
  margin-bottom: 6px; transition: color .45s ease;
}
body.page-id-11 .svc-scope .svc-scope__desc { color: var(--text-body); font-size: 0.9rem; line-height: 1.65; }
/* zdjecie kinowe po prawej */
body.page-id-11 .svc-scope::after {
  content: ''; position: absolute;
  top: clamp(108px, 15vw, 188px); bottom: clamp(40px, 6vw, 80px);
  right: max(24px, calc((100vw - 1200px) / 2));
  width: min(40%, 480px);
  background:
    linear-gradient(180deg, rgba(0,46,61,0.12) 0%, rgba(0,46,61,0.48) 100%),
    url('/wp-content/uploads/2026/06/detektyw-obserwacja-aparat.jpg') 70% 52% / cover no-repeat;
  border: 1px solid rgba(252,180,0,0.45);
  border-radius: 8px;
  box-shadow: 0 34px 80px rgba(0,46,61,0.28), inset 0 0 90px rgba(0,30,41,0.45);
}
@media (max-width: 900px) {
  body.page-id-11 .svc-scope::after { display: none; }
  body.page-id-11 .svc-scope .svc-scope__grid { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  body.page-id-11 .svc-scope .svc-scope__card,
  body.page-id-11 .svc-scope .svc-scope__number { transition: none; }
}
/* wylacz bazowy hover-underline karty (kolidowal z odklejana linia) */
body.page-id-11 .svc-scope .svc-scope__card::before { content: none; display: none; }
/* page-11 scope: ZERO reakcji na hover - neutralizuj bazowy/clash-fix hover (podnoszenie + biale tlo) */
body.page-id-11 .svc-scope .svc-scope__card:hover,
body.page-id-11 .svc-scope--dark .svc-scope__card:hover {
  background: transparent;
  box-shadow: none;
  transform: none;
  border-color: transparent;
}
body.page-id-11 .svc-scope .svc-scope__card:hover .svc-scope__number,
body.page-id-11 .svc-scope--dark .svc-scope__card:hover .svc-scope__number {
  background: var(--surface-white); color: var(--accent-dark); border-color: rgba(252,180,0,0.55);
}
body.page-id-11 .svc-scope .svc-scope__card:hover .svc-scope__title,
body.page-id-11 .svc-scope--dark .svc-scope__card:hover .svc-scope__title { color: var(--text-dark); }
body.page-id-11 .svc-scope .svc-scope__card:hover .svc-scope__desc,
body.page-id-11 .svc-scope--dark .svc-scope__card:hover .svc-scope__desc { color: var(--text-body); }
body.page-id-11 .svc-scope .svc-scope__card:hover::after { animation: none; background-image: repeating-linear-gradient(90deg, rgba(0,46,61,0.28) 0 6px, transparent 6px 12px); }

/* ============================================================
   page-11 svc-why "Dlaczego nasze biuro" -> spojnie z dziennikiem/scope.
   Ikony jako gold HUD-kwadraty z naroznym celownikiem, wiersze
   edytorialne (bez kafelkow, bez cienia, bez hovera), kreskowane kreski.
   ============================================================ */
body.page-id-11 .svc-why__grid { gap: 6px 44px; max-width: 980px; }
body.page-id-11 .svc-why__item {
  background: transparent; border: 0; border-radius: 0; box-shadow: none;
  padding: 19px 4px;
  border-bottom: 1px dashed rgba(0,46,61,0.16);
  align-items: center;
}
body.page-id-11 .svc-why__item:hover { transform: none; box-shadow: none; }
body.page-id-11 .svc-why__icon {
  width: 46px; height: 46px; min-width: 46px;
  background: var(--navy-deep);
  border: 1px solid rgba(252,180,0,0.5);
  border-radius: 3px;
  position: relative;
}
body.page-id-11 .svc-why__icon::before,
body.page-id-11 .svc-why__icon::after {
  content: ''; position: absolute; width: 7px; height: 7px; border: 1px solid var(--gold);
}
body.page-id-11 .svc-why__icon::before { top: -3px; left: -3px; border-right: 0; border-bottom: 0; }
body.page-id-11 .svc-why__icon::after { bottom: -3px; right: -3px; border-left: 0; border-top: 0; }
body.page-id-11 .svc-why__icon svg { stroke: var(--gold); }
body.page-id-11 .svc-why__text { color: var(--text-dark); font-weight: 500; }
body.page-id-11 .svc-why__item:last-child { border-bottom: 0; }

/* ===== PODSLUCHY REDESIGN (per-miasto: self-check, detektor, timeline, sprzet) - blok pods-v17 ===== */
.sy .pc,.scan .pc,.prc .pc,.eq .pc{max-width:1200px;margin:0 auto;padding:0 48px}
.sy .pl,.scan .pl,.prc .pl,.eq .pl{font-family:'Oswald',sans-serif;text-transform:uppercase;letter-spacing:.24em;font-size:.76rem;font-weight:600;color:var(--gold)}
/* OBJAWY (self-check) */
.sy{background:#EEF6F8;padding:clamp(70px,8vw,118px) 0}
.sy__grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:clamp(40px,5vw,76px);align-items:start}
.sy__head .pl{display:block;margin-bottom:16px}
.sy__head h2{font-family:'Oswald',sans-serif;text-transform:uppercase;font-weight:600;line-height:1.08;font-size:clamp(1.9rem,3.4vw,2.7rem);color:#002E3D;margin-bottom:18px}
.sy__head h2 b{color:var(--gold)}
.sy__head p{color:#46606b}
.sy__warn{margin-top:28px;display:flex;gap:14px;align-items:flex-start;background:rgba(252,180,0,.09);border:1px solid rgba(252,180,0,.32);border-radius:14px;padding:18px 20px}
.sy__warn svg{width:24px;height:24px;stroke:var(--gold);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}
.sy__warn p{font-size:.92rem;line-height:1.6;color:#002E3D}.sy__warn b{color:#002E3D}
.sy__panel{background:#fff;border:1px solid rgba(0,46,61,.1);border-radius:18px;box-shadow:0 34px 80px -54px rgba(0,46,61,.45);overflow:hidden}
.sy__phead{font-family:'Oswald',sans-serif;text-transform:uppercase;letter-spacing:.04em;font-size:.78rem;color:#46606b;padding:18px 24px;border-bottom:1px solid rgba(0,46,61,.08)}
.chk{display:flex;align-items:center;gap:16px;padding:17px 24px;border-bottom:1px solid rgba(0,46,61,.07);cursor:pointer;transition:background-color .15s;user-select:none;margin:0}
.chk:last-child{border-bottom:none}
.chk:hover{background:rgba(252,180,0,.05)}
.chk__box{width:24px;height:24px;border-radius:7px;border:2px solid rgba(0,46,61,.25);flex-shrink:0;display:flex;align-items:center;justify-content:center;transition:.18s}
.chk__box svg{width:14px;height:14px;stroke:#fff;stroke-width:3;fill:none;stroke-linecap:round;stroke-linejoin:round;opacity:0;transform:scale(.5);transition:.18s}
.chk.on .chk__box{background:var(--gold);border-color:var(--gold)}
.chk.on .chk__box svg{opacity:1;transform:scale(1)}
.chk>span:last-child{font-weight:500;font-size:.96rem;color:#002E3D}
.sy__res{margin-top:22px;display:flex;align-items:center;gap:22px;flex-wrap:wrap;background:#002E3D;border-radius:16px;padding:22px 26px}
.sy__count{font-family:'Oswald',sans-serif;font-weight:700;font-size:2.6rem;line-height:1;color:var(--gold)}
.sy__count small{font-size:1.1rem;color:rgba(255,255,255,.5)}
.sy__msg{color:#fff;font-size:.95rem;line-height:1.4;flex:1;min-width:200px}
/* DETEKTOR (scan) */
.scan{padding:clamp(64px,8vw,116px) 0;background:radial-gradient(120% 90% at 50% -10%,#063248,#002E3D 45%,#001017 88%)}
.scan__head{text-align:center;max-width:760px;margin:0 auto clamp(34px,4vw,52px)}
.scan__head .pl{display:block;margin-bottom:16px}
.scan__head h2{font-family:'Oswald',sans-serif;text-transform:uppercase;font-weight:600;line-height:1.08;font-size:clamp(1.9rem,3.6vw,3rem);color:#fff;margin-bottom:16px}.scan__head h2 b{color:var(--gold)}
.scan__head p{color:#9fb6c0;font-size:1.04rem;line-height:1.7}
.stage{position:relative;border-radius:22px;overflow:hidden;aspect-ratio:16/9;border:1px solid rgba(252,180,0,.22);box-shadow:0 50px 100px -50px rgba(0,0,0,.8);cursor:crosshair;--mx:60%;--my:45%}
.stage__img{position:absolute;inset:0;background-image:url(../../images/pods-ukryty-biuro.jpg);background-size:cover;background-position:center;filter:grayscale(.45) brightness(.5) contrast(1.05)}
.stage__img::after{content:"";position:absolute;inset:0;background:linear-gradient(160deg,rgba(0,46,61,.5),rgba(0,16,23,.7))}
.stage__grid{position:absolute;inset:0;opacity:.14;background-image:linear-gradient(rgba(252,180,0,.4) 1px,transparent 1px),linear-gradient(90deg,rgba(252,180,0,.4) 1px,transparent 1px);background-size:46px 46px}
.stage__reveal{position:absolute;inset:0;-webkit-mask:radial-gradient(circle 140px at var(--mx) var(--my),#000 0,#000 52%,transparent 70%);mask:radial-gradient(circle 140px at var(--mx) var(--my),#000 0,#000 52%,transparent 70%)}
.stage__reveal::before{content:"";position:absolute;inset:0;background:radial-gradient(circle 140px at var(--mx) var(--my),rgba(252,180,0,.15),transparent 70%)}
.dev{position:absolute;transform:translate(-50%,-50%);display:flex;flex-direction:column;align-items:center;gap:8px;pointer-events:none}
.dev__dot{width:15px;height:15px;border-radius:50%;background:var(--gold);box-shadow:0 0 0 6px rgba(252,180,0,.22),0 0 18px 3px rgba(252,180,0,.6);animation:ppDot 1.4s ease-in-out infinite}
@keyframes ppDot{0%,100%{box-shadow:0 0 0 5px rgba(252,180,0,.26),0 0 16px 2px rgba(252,180,0,.5)}50%{box-shadow:0 0 0 11px rgba(252,180,0,.07),0 0 22px 5px rgba(252,180,0,.7)}}
.dev__lab{font-family:'Oswald',sans-serif;text-transform:uppercase;letter-spacing:.07em;font-size:.66rem;font-weight:600;color:#002E3D;background:var(--gold);padding:4px 9px;border-radius:5px;white-space:nowrap;box-shadow:0 6px 16px -6px rgba(0,0,0,.6)}
.lens{position:absolute;left:var(--mx);top:var(--my);width:280px;height:280px;transform:translate(-50%,-50%);border-radius:50%;border:2px solid rgba(252,180,0,.85);box-shadow:0 0 34px rgba(252,180,0,.22),0 0 0 1px rgba(0,16,23,.4) inset;pointer-events:none;animation:lensglow 2.6s ease-in-out infinite}
@keyframes lensglow{0%,100%{box-shadow:0 0 30px rgba(252,180,0,.18),0 0 0 1px rgba(0,16,23,.4) inset}50%{box-shadow:0 0 48px rgba(252,180,0,.36),0 0 0 1px rgba(0,16,23,.4) inset}}
.lens::before,.lens::after{content:"";position:absolute;background:rgba(252,180,0,.55)}
.lens::before{left:50%;top:15%;bottom:15%;width:1px;transform:translateX(-50%)}.lens::after{top:50%;left:15%;right:15%;height:1px;transform:translateY(-50%)}
.lens__tag{position:absolute;left:50%;bottom:-25px;transform:translateX(-50%);font-family:'Oswald',sans-serif;letter-spacing:.18em;font-size:.58rem;color:var(--gold);text-transform:uppercase}
.hint{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);z-index:5;font-family:'Oswald',sans-serif;text-transform:uppercase;letter-spacing:.16em;font-size:.8rem;color:#fff;background:rgba(0,16,23,.6);border:1px solid rgba(252,180,0,.3);padding:12px 22px;border-radius:100px;display:flex;align-items:center;gap:10px;transition:opacity .3s;pointer-events:none}
.hint i{width:8px;height:8px;border-radius:50%;background:var(--gold);animation:ppDot 1.4s ease-in-out infinite}
.stage.touched .hint{opacity:0}
.scan__leg{display:flex;justify-content:center;flex-wrap:wrap;gap:12px 22px;margin-top:24px}
.scan__leg span{font-family:'Oswald',sans-serif;text-transform:uppercase;letter-spacing:.06em;font-size:.72rem;color:#9fb6c0;display:flex;align-items:center;gap:8px}
.scan__leg span::before{content:"";width:8px;height:8px;border-radius:50%;background:var(--gold)}
/* PROCES timeline */
.prc{background:#fff;padding:clamp(72px,9vw,120px) 0}
.prc__head{text-align:center;max-width:720px;margin:0 auto clamp(40px,5vw,60px)}
.prc__head .pl{display:block;margin-bottom:12px}.prc__head h2{font-family:'Oswald',sans-serif;text-transform:uppercase;font-weight:600;line-height:1.08;font-size:clamp(1.9rem,3.4vw,2.7rem);color:#002E3D}.prc__head h2 b{color:var(--gold)}
.tl{position:relative;max-width:920px;margin:0 auto;padding:8px 0 4px}
.tl::before{content:"";position:absolute;left:25px;top:18px;bottom:20px;width:2px;background:linear-gradient(180deg,rgba(252,180,0,.15),var(--gold) 16%,var(--gold) 82%,rgba(252,180,0,.08));border-radius:2px}
.tl__step{position:relative;display:grid;grid-template-columns:52px 1fr;gap:28px;align-items:start;padding:0 0 clamp(28px,4vw,46px)}
.tl__step:last-child{padding-bottom:0}
.tl__node{position:relative;z-index:1;width:52px;height:52px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#002E3D;border:2px solid var(--gold);font-family:'Oswald',sans-serif;font-weight:700;font-size:1rem;line-height:1;color:var(--gold);box-shadow:0 0 0 8px #fff,0 18px 36px -24px rgba(0,46,61,.8);transition:transform .2s ease-out,background-color .2s ease-out,color .2s ease-out}
.tl__step--final .tl__node{background:var(--gold);color:#002E3D;box-shadow:0 0 0 8px #fff,0 0 26px rgba(252,180,0,.55),0 18px 36px -22px rgba(0,46,61,.8)}
.tl__body{padding:20px 24px 22px;background:#fff;border:1px solid rgba(0,46,61,.1);border-radius:16px;box-shadow:0 24px 58px -44px rgba(0,46,61,.48);transition:transform .2s ease-out,border-color .2s ease-out,box-shadow .2s ease-out}
.tl__step:hover .tl__body{transform:translateY(-2px);border-color:rgba(252,180,0,.55);box-shadow:0 30px 64px -42px rgba(0,46,61,.58)}
.tl__step:hover .tl__node{transform:scale(1.05)}
.tl__body h3{font-family:'Oswald',sans-serif;text-transform:uppercase;letter-spacing:.02em;color:#002E3D;font-size:1.14rem;margin-bottom:8px}
.tl__body p{color:#46606b;font-size:.95rem;line-height:1.62;max-width:52ch}
.tl__time{display:inline-block;margin-top:12px;font-family:'Oswald',sans-serif;text-transform:uppercase;letter-spacing:.08em;font-size:.64rem;color:#003E52;background:rgba(0,46,61,.06);border:1px solid rgba(0,46,61,.12);border-radius:999px;padding:6px 10px}
/* SPRZET */
.eq{position:relative;padding:clamp(76px,9vw,128px) 0;overflow:hidden;background:#002E3D}
.eq__bg{position:absolute;inset:0;background-image:url(../../images/pods-sprzet-2.jpg);background-size:cover;background-position:center;opacity:.16;filter:grayscale(.5)}
.eq::after{content:"";position:absolute;inset:0;background:linear-gradient(120deg,#002E3D 30%,rgba(0,46,61,.7) 70%,rgba(0,16,23,.5))}
.eq .pc{position:relative;z-index:1}
.eq__grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(36px,5vw,72px);align-items:center}
.eq__media{position:relative;border-radius:20px;overflow:hidden;aspect-ratio:4/3.2;box-shadow:0 44px 80px -40px rgba(0,0,0,.7);border:1px solid rgba(252,180,0,.2)}
.eq__media img{width:100%;height:100%;object-fit:cover;display:block;filter:grayscale(.2) contrast(1.06)}
.eq__media .cap{position:absolute;left:18px;bottom:18px;background:rgba(0,16,23,.85);border:1px solid rgba(252,180,0,.3);border-radius:9px;padding:8px 14px;font-family:'Oswald',sans-serif;text-transform:uppercase;letter-spacing:.05em;font-size:.7rem;color:var(--gold)}
.eq__head{margin-bottom:18px}.eq__head .pl{display:block;margin-bottom:12px}
.eq__head h2{font-family:'Oswald',sans-serif;text-transform:uppercase;font-weight:600;line-height:1.08;font-size:clamp(1.8rem,3.2vw,2.6rem);color:#fff}.eq__head h2 b{color:var(--gold)}
.eq__row{display:grid;grid-template-columns:auto 1fr;gap:18px;padding:18px 0;border-bottom:1px solid rgba(255,255,255,.12)}
.eq__ic{width:44px;height:44px;border-radius:11px;background:rgba(252,180,0,.12);border:1px solid rgba(252,180,0,.28);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.eq__ic svg{width:22px;height:22px;stroke:var(--gold);fill:none;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}
.eq__row h3{font-family:'Oswald',sans-serif;text-transform:uppercase;letter-spacing:.02em;color:#fff;font-size:1rem;margin-bottom:4px}
.eq__row p{color:#bcd2da;font-size:.88rem;line-height:1.5}
.sy .reveal,.scan .reveal,.prc .reveal,.eq .reveal{opacity:0;transform:translateY(26px);transition:opacity .75s cubic-bezier(.23,1,.32,1),transform .75s cubic-bezier(.23,1,.32,1)}
.sy .reveal.in,.scan .reveal.in,.prc .reveal.in,.eq .reveal.in{opacity:1;transform:none}
@media (max-width:900px){.sy .pc,.scan .pc,.prc .pc,.eq .pc{padding:0 24px}.sy__grid,.eq__grid{grid-template-columns:1fr;gap:30px}.tl{padding-top:0}.tl::before{left:21px}.tl__step{grid-template-columns:44px 1fr;gap:18px}.tl__node{width:44px;height:44px;font-size:.9rem;box-shadow:0 0 0 7px #fff,0 16px 32px -24px rgba(0,46,61,.8)}.tl__body{padding:18px 18px 20px}}
@media (prefers-reduced-motion:reduce){.dev__dot,.hint i,.lens{animation:none}.sy .reveal,.scan .reveal,.prc .reveal,.eq .reveal{opacity:1;transform:none;transition:none}.tl__node,.tl__body{transition:none}.tl__step:hover .tl__body,.tl__step:hover .tl__node{transform:none}.chk__box,.chk__box svg{transition:none}}

/* post-cta: kontrast na ciemnym tle - nadpisanie regul tresci artykulu (klient: CTA pod artykulami slabo widoczne) */
.page-content__body .post-cta__title { color: #fff; }
.page-content__body .post-cta .btn--primary { color: var(--navy-deep); text-decoration: none; }
.page-content__body .post-cta .btn--outline-dark { text-decoration: none; }

/* O nas - linia roli pod nazwiskiem eksperta */
.svc-expertise__role { font-family:'Oswald',sans-serif; text-transform:uppercase; letter-spacing:.08em; font-size:.82rem; font-weight:500; color:var(--accent); margin:-6px 0 18px; }

/* ===== O NAS - sekcje dodatkowe (intro, kompetencje, jakosc) ===== */
/* INTRO - editorial z atmosferycznym zdjeciem */
.onas-intro { background:#fff; padding:clamp(56px,7vw,100px) 0; }
.onas-intro__grid { display:grid; grid-template-columns:0.92fr 1.08fr; gap:clamp(40px,5vw,72px); align-items:center; }
.onas-intro__media { position:relative; }
.onas-intro__media-frame { position:relative; border-radius:22px; overflow:hidden; aspect-ratio:4/3.4; box-shadow:0 50px 90px -50px rgba(0,46,61,.6); border:1px solid rgba(0,46,61,.08); }
.onas-intro__media-frame img { width:100%; height:100%; object-fit:cover; display:block; filter:grayscale(.35) contrast(1.06) brightness(.96); }
.onas-intro__media-frame::after { content:""; position:absolute; inset:0; background:linear-gradient(160deg, transparent 45%, rgba(0,46,61,.45)); }
.onas-intro__badge { position:absolute; left:-18px; bottom:26px; display:flex; align-items:center; gap:13px; background:#fff; border:1px solid rgba(0,46,61,.08); border-radius:14px; padding:14px 20px 14px 16px; box-shadow:0 26px 50px -24px rgba(0,46,61,.42); }
.onas-intro__badge-ico { display:inline-flex; align-items:center; justify-content:center; width:42px; height:42px; border-radius:11px; background:rgba(252,180,0,.14); flex-shrink:0; }
.onas-intro__badge-ico svg { width:22px; height:22px; stroke:var(--gold); fill:none; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.onas-intro__badge-txt { display:flex; flex-direction:column; font-size:.78rem; color:#7a929c; line-height:1.35; }
.onas-intro__badge-txt strong { font-family:'Oswald',sans-serif; text-transform:uppercase; letter-spacing:.02em; font-size:.92rem; color:#002E3D; font-weight:600; }
.onas-intro__eyebrow { display:inline-block; font-family:'Oswald',sans-serif; text-transform:uppercase; letter-spacing:.22em; font-size:.74rem; font-weight:600; color:var(--accent); margin-bottom:18px; }
.onas-intro__title { font-family:'Oswald',sans-serif; font-weight:600; line-height:1.22; font-size:clamp(1.5rem,2.6vw,2.05rem); color:#002E3D; margin:0 0 22px; }
.onas-intro__sub { color:#46606b; font-size:1rem; line-height:1.8; margin:0 0 16px; }
.onas-intro__sub:last-of-type { margin-bottom:0; }
.onas-intro__sub strong { color:var(--accent); font-weight:600; }
.onas-intro__stats { display:flex; gap:14px; margin-top:32px; padding-top:28px; border-top:1px solid rgba(0,46,61,.1); }
.onas-intro__stat { flex:1; }
.onas-intro__stat-num { display:block; font-family:'Oswald',sans-serif; font-weight:700; font-size:1.4rem; line-height:1.05; color:#002E3D; }
.onas-intro__stat-lab { display:block; font-size:.78rem; color:#7a929c; margin-top:6px; }

/* KOMPETENCJE - premium cards z hover */
.onas-comp { background:#EEF6F8; padding:clamp(60px,8vw,100px) 0; }
.onas-comp__grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; margin-top:clamp(32px,4vw,48px); }
.onas-comp__card { position:relative; background:#fff; border:1px solid rgba(0,46,61,.1); border-radius:18px; padding:30px 32px; box-shadow:0 24px 58px -46px rgba(0,46,61,.4); transition:transform .3s cubic-bezier(.23,1,.32,1), border-color .3s, box-shadow .3s; }
@media (hover:hover){ .onas-comp__card:hover { transform:translateY(-5px); border-color:rgba(252,180,0,.5); box-shadow:0 34px 70px -44px rgba(0,46,61,.5); } }
.onas-comp__ico { display:inline-flex; align-items:center; justify-content:center; width:50px; height:50px; border-radius:13px; background:rgba(252,180,0,.12); border:1px solid rgba(252,180,0,.3); margin-bottom:18px; }
.onas-comp__ico svg { width:25px; height:25px; stroke:var(--gold); fill:none; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.onas-comp__title { font-family:'Oswald',sans-serif; text-transform:uppercase; letter-spacing:.02em; color:#002E3D; font-size:1.18rem; margin:0 0 16px; padding-bottom:14px; border-bottom:1px solid rgba(0,46,61,.1); }
.onas-comp__list { list-style:none; margin:0; padding:0; display:grid; gap:11px; }
.onas-comp__list li { position:relative; padding-left:28px; color:#46606b; font-size:.95rem; line-height:1.5; }
.onas-comp__list li::before { content:""; position:absolute; left:0; top:2px; width:17px; height:17px; border-radius:50%; background:rgba(252,180,0,.14); }
.onas-comp__list li::after { content:""; position:absolute; left:6px; top:5px; width:4px; height:8px; border-right:2px solid var(--gold); border-bottom:2px solid var(--gold); transform:rotate(40deg); }

/* PO PIERWSZE JAKOSC - numbered, hover, dark panel (przelamanie rytmu) */
.onas-quality { background:radial-gradient(120% 100% at 50% 0%, #063248, #002E3D 60%, #001017); padding:clamp(64px,8vw,104px) 0; }
.onas-quality .section-label { color:var(--gold); }
.onas-quality .section-title { color:#fff; }
.onas-quality .section-desc { color:#9fb6c0; }
.onas-quality__grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:clamp(32px,4vw,48px); }
.onas-quality__item { position:relative; background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.1); border-radius:18px; padding:32px 28px 30px; overflow:hidden; transition:transform .3s cubic-bezier(.23,1,.32,1), border-color .3s, background-color .3s; }
@media (hover:hover){ .onas-quality__item:hover { transform:translateY(-5px); border-color:rgba(252,180,0,.45); background:rgba(252,180,0,.05); } }
.onas-quality__num { position:absolute; top:14px; right:20px; font-family:'Oswald',sans-serif; font-weight:700; font-size:3rem; line-height:1; color:rgba(252,180,0,.14); }
.onas-quality__ic { display:inline-flex; align-items:center; justify-content:center; width:54px; height:54px; border-radius:14px; background:rgba(252,180,0,.12); border:1px solid rgba(252,180,0,.3); margin-bottom:18px; position:relative; }
.onas-quality__ic svg { width:26px; height:26px; stroke:var(--gold); fill:none; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.onas-quality__title { font-family:'Oswald',sans-serif; text-transform:uppercase; color:#fff; font-size:1.12rem; margin:0 0 10px; position:relative; }
.onas-quality__desc { color:#bcd2da; font-size:.95rem; line-height:1.6; margin:0; position:relative; }

@media (max-width:860px){ .onas-intro__grid { grid-template-columns:1fr; gap:34px; } }
@media (max-width:760px){ .onas-comp__grid, .onas-quality__grid { grid-template-columns:1fr; } .onas-intro__stats { flex-wrap:wrap; } }

/* O nas - Dlaczego warto nam zaufac (6 punktow z Wixa) */
.onas-trust { background:radial-gradient(120% 100% at 50% -10%, #00485f, #002E3D 55%, #001017); padding:clamp(60px,8vw,100px) 0; }
.onas-trust .section-label--light { color:var(--gold); }
.onas-trust .section-title--light { color:#fff; }
.onas-trust__grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:clamp(32px,4vw,48px); }
.onas-trust__item { display:flex; align-items:center; gap:16px; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.1); border-radius:14px; padding:20px 22px; transition:transform .3s cubic-bezier(.23,1,.32,1), border-color .3s, background-color .3s; }
@media (hover:hover){ .onas-trust__item:hover { transform:translateY(-4px); border-color:rgba(252,180,0,.45); background:rgba(252,180,0,.05); } }
.onas-trust__ico { display:inline-flex; align-items:center; justify-content:center; width:48px; height:48px; border-radius:12px; background:rgba(252,180,0,.12); border:1px solid rgba(252,180,0,.3); flex-shrink:0; }
.onas-trust__ico svg { width:24px; height:24px; stroke:var(--gold); fill:none; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.onas-trust__lab { font-family:'Oswald',sans-serif; text-transform:uppercase; letter-spacing:.02em; font-size:1rem; font-weight:500; color:#fff; line-height:1.25; }
@media (max-width:860px){ .onas-trust__grid { grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .onas-trust__grid { grid-template-columns:1fr; } }

/* Strona prawna (ochrona prywatnosci) - czytelny layout */
.svc-hero--compact { min-height:42vh; }
.legal-page { background:#fff; padding:clamp(48px,6vw,84px) 0; }
.legal-page__inner { max-width:820px; }
.legal-page__inner h2 { font-family:'Oswald',sans-serif; text-transform:uppercase; letter-spacing:.01em; font-size:clamp(1.3rem,2vw,1.6rem); color:#002E3D; margin:38px 0 16px; }
.legal-page__inner h3 { font-family:'Oswald',sans-serif; color:#002E3D; font-size:1.15rem; margin:28px 0 12px; }
.legal-page__inner p { color:#46606b; font-size:1rem; line-height:1.8; margin:0 0 16px; }
.legal-page__inner ul, .legal-page__inner ol { color:#46606b; font-size:1rem; line-height:1.8; margin:0 0 18px; padding-left:24px; }
.legal-page__inner li { margin-bottom:8px; }
.legal-page__inner a { color:var(--accent); text-decoration:underline; text-underline-offset:3px; }
.legal-page__inner strong { color:#002E3D; }

/* ===== WIDEO - wzmocnienie przyciskow social + filmy (UX/UI) ===== */
.vid-social__btn { min-height: 56px; gap: 12px; padding: 16px 28px; border-radius: 12px; font-size: 1.06rem; box-shadow: 0 10px 30px -18px rgba(0,0,0,.6); }
.vid-social__btn:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -20px rgba(0,0,0,.7); }
.vid-social__icon { width: 25px; height: 25px; flex: 0 0 25px; }
.vid-social__btn--yt .vid-social__icon { color: #FF3D3D; }
.vid-social__btn--tt .vid-social__icon { color: #25F4EE; }
.vid-social__btn--ig .vid-social__icon { color: #E1306C; }
.vid-social__btn--fb .vid-social__icon { color: #4C8BF5; }
.vid-social__btn--li .vid-social__icon { color: #4F9BE6; }
.vid-social__btn:hover .vid-social__icon { color: currentColor; }
.vid-films__more { text-align: center; margin-top: clamp(34px, 4vw, 50px); }
.vid-film__date { display: inline-block; font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: .08em; font-size: .68rem; color: var(--accent); margin: 16px 0 -4px; }

/* ===== WIDEO - sekcja platform social (branded karty) ===== */
.vid-platforms { padding: clamp(56px,7vw,96px) 0; background: #EEF6F8; }
.vid-platforms__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: clamp(32px,4vw,48px); }
.plat-card { position: relative; display: flex; flex-direction: column; align-items: flex-start; padding: 30px 28px 26px; border-radius: 20px; color: #fff; text-decoration: none; overflow: hidden; min-height: 300px; box-shadow: 0 24px 50px -28px rgba(0,46,61,.5); transition: transform .3s cubic-bezier(.23,1,.32,1), box-shadow .3s; }
.plat-card::after { content:""; position:absolute; inset:0; background: linear-gradient(160deg, rgba(255,255,255,.14), transparent 55%); pointer-events:none; }
.plat-card > * { position: relative; z-index: 1; }
.plat-card:hover { transform: translateY(-6px); box-shadow: 0 38px 72px -30px rgba(0,46,61,.62); }
.plat-card__ico { display:inline-flex; align-items:center; justify-content:center; width:54px; height:54px; border-radius:14px; background: rgba(255,255,255,.2); }
.plat-card__ico svg { width:30px; height:30px; }
.plat-card__name { font-family:'Oswald',sans-serif; text-transform:uppercase; font-size:1.42rem; font-weight:600; margin-top:22px; line-height:1; }
.plat-card__handle { font-size:.82rem; opacity:.85; margin-top:7px; }
.plat-card__desc { font-size:.9rem; line-height:1.55; opacity:.94; margin-top:14px; flex:1; }
.plat-card__cta { font-family:'Oswald',sans-serif; text-transform:uppercase; letter-spacing:.05em; font-size:.82rem; font-weight:600; margin-top:18px; display:inline-flex; align-items:center; gap:8px; }
.plat-card__cta .btn__arrow { transition: transform .25s ease-out; }
.plat-card:hover .plat-card__cta .btn__arrow { transform: translateX(5px); }
.plat-card--yt { background: linear-gradient(150deg, #FF4b4b, #CC0000 78%); }
.plat-card--tt { background: linear-gradient(150deg, #2c2c2e, #050505 80%); }
.plat-card--tt .plat-card__ico { background: rgba(37,244,238,.16); color:#25F4EE; }
.plat-card--ig { background: linear-gradient(150deg, #feda75, #fa7e1e 22%, #d62976 58%, #6a3ab2); }
.plat-card--fb { background: linear-gradient(150deg, #3b88f5, #0a5dc2 82%); }
@media (max-width:980px){ .vid-platforms__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width:560px){ .vid-platforms__grid { grid-template-columns: 1fr; } .plat-card { min-height: auto; } }

/* ===== Nota autorska (rozbudowana) ===== */
.post-author { gap: 22px; padding: 30px; align-items: flex-start; }
.post-author__avatar { width: 74px; height: 74px; align-self: flex-start; }
.post-author__avatar--ph { background: linear-gradient(150deg, #003e52, #002E3D); border: 1px solid rgba(252,180,0,.32); }
.post-author__avatar svg { width: 34px; height: 34px; }
.post-author__eyebrow { display: inline-block; font-family: 'Oswald',sans-serif; text-transform: uppercase; letter-spacing: .18em; font-size: .68rem; font-weight: 600; color: var(--accent); margin-bottom: 8px; }
.post-author__name { font-size: 1.22rem; margin-bottom: 2px; }
.post-author__role { font-family: 'Oswald',sans-serif; text-transform: uppercase; letter-spacing: .03em; font-size: .8rem; color: var(--accent); margin: 0 0 12px; }
.post-author__contact { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 16px; }
.post-author__contact a { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: #002E3D; text-decoration: none; }
.post-author__contact a:hover { color: var(--accent); }
.post-author__contact svg { width: 17px; height: 17px; fill: none; stroke: var(--gold); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ===== MAPA STRONY ===== */
.sm-hero { background: var(--navy-deep); padding: 84px 0 52px; }
.sm-hero__eyebrow { display: inline-block; font-family: 'Oswald',sans-serif; text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; color: var(--gold); margin-bottom: 14px; }
.sm-hero__title { font-family: 'Oswald',sans-serif; text-transform: uppercase; letter-spacing: .03em; font-weight: 600; font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1; color: #fff; margin: 0; }
.sm-hero__title::after { content: ''; display: block; width: 64px; height: 3px; background: var(--gold); margin-top: 20px; }
.sm-hero__lead { color: var(--text-light); font-size: 1.06rem; line-height: 1.6; margin: 22px 0 0; max-width: 62ch; }

/* Uslugi - jasna sekcja, grupy bez pudelek */
.sm-services { background: var(--surface-light); padding: 64px 0 72px; }
.sm-groups { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 8px 48px; }
.sm-group { padding: 8px 0 4px; }
.sm-group__head { display: flex; align-items: center; gap: 12px; margin: 0 0 16px; padding-bottom: 14px; border-bottom: 1px solid rgba(0,46,61,0.13); }
.sm-group__icon { flex-shrink: 0; width: 34px; height: 34px; display: grid; place-items: center; color: var(--accent); }
.sm-group__icon svg { width: 24px; height: 24px; }
.sm-group__title { font-family: 'Oswald',sans-serif; text-transform: uppercase; letter-spacing: .03em; font-size: 1rem; font-weight: 600; color: var(--text-dark); margin: 0; }
.sitemap-links { list-style: none; margin: 0; padding: 0; }
.sitemap-links a { display: inline-flex; align-items: center; gap: 9px; padding: 6px 0; color: var(--text-body); text-decoration: none; font-size: .95rem; line-height: 1.45; transition: color .15s ease; }
.sitemap-links a::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; transition: background .15s ease, transform .15s ease; }
.sitemap-links a:hover { color: var(--navy-light); }
.sitemap-links a:hover::before { background: var(--gold); transform: scale(1.4); }

/* Lokalizacje - ciemna sekcja, katalog miast */
.sm-locations { background: var(--navy-deep); padding: 64px 0 80px; }
.sm-locations__eyebrow { display: block; font-family: 'Oswald',sans-serif; text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; color: var(--gold); margin-bottom: 30px; }
.sm-loc-block + .sm-loc-block { margin-top: 52px; }
.sm-loc-title { font-family: 'Oswald',sans-serif; text-transform: uppercase; letter-spacing: .03em; font-size: 1.25rem; font-weight: 600; color: #fff; margin: 0 0 22px; display: flex; align-items: center; gap: 14px; }
.sm-loc-title em { font-style: normal; font-size: .78rem; font-weight: 500; color: var(--navy-deep); background: var(--gold); border-radius: 20px; padding: 3px 11px; }
.sitemap-cities { list-style: none; margin: 0; padding: 0; columns: 4 210px; column-gap: 44px; }
.sitemap-cities li { break-inside: avoid; }
.sitemap-cities a { display: flex; align-items: center; gap: 10px; padding: 8px 0; color: var(--text-light); text-decoration: none; font-size: .95rem; border-bottom: 1px solid rgba(255,255,255,0.06); transition: color .15s ease, padding-left .15s ease; }
.sitemap-cities a::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; transition: background .15s ease; }
.sitemap-cities a:hover { color: #fff; padding-left: 6px; }
.sitemap-cities a:hover::before { background: var(--gold); }

@media (max-width: 760px) {
  .sm-hero { padding: 60px 0 40px; }
  .sm-services, .sm-locations { padding: 48px 0 56px; }
  .sm-groups { grid-template-columns: 1fr; gap: 8px; }
  .sm-group { padding-top: 18px; }
  .sitemap-cities { columns: 2 130px; column-gap: 24px; }
}

/* Klikalne elementy na home (trust badge / credentiale) */
a.hero__trust-item--link, a.about__credential--link { text-decoration: none; color: inherit; cursor: pointer; transition: color .15s ease; }
a.hero__trust-item--link .hero__trust-icon, a.about__credential--link .about__credential-icon { transition: color .15s ease, border-color .15s ease; }
a.hero__trust-item--link:hover .hero__trust-label, a.about__credential--link:hover .about__credential-text { color: var(--gold); }
a.hero__trust-item--link:hover .hero__trust-icon, a.about__credential--link:hover .about__credential-icon { color: var(--gold); border-color: var(--gold); }

/* Klikalne atuty + badge na stronach miast */
a.svc-expertise__atut--link { text-decoration: none; color: inherit; cursor: pointer; }
a.svc-expertise__atut--link .svc-expertise__atut-lab { transition: color .15s ease; }
a.svc-expertise__atut--link .svc-expertise__atut-ico { transition: color .15s ease; }
a.svc-expertise__atut--link:hover .svc-expertise__atut-lab { color: var(--accent); }
a.svc-expertise__atut--link:hover .svc-expertise__atut-ico { color: var(--gold); }
.svc-expertise__image--badged::after { content: none; }
.svc-expertise__badge-link { position: absolute; bottom: 20px; left: 20px; background: rgba(0,46,61,0.9); color: var(--gold); font-family: 'Oswald', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; padding: 8px 16px; border: 1px solid rgba(252,180,0,0.25); border-radius: 4px; z-index: 2; text-decoration: none; transition: background .15s ease, border-color .15s ease; }
.svc-expertise__badge-link:hover { background: rgba(0,46,61,1); border-color: var(--gold); }

/* Klikalne highlighty na stronach uslug */
a.svc-intro__highlight--link { text-decoration: none; color: inherit; cursor: pointer; }
a.svc-intro__highlight--link .svc-intro__highlight-label { transition: color .15s ease; }
a.svc-intro__highlight--link .svc-intro__highlight-icon { transition: color .15s ease; }
a.svc-intro__highlight--link:hover .svc-intro__highlight-label { color: var(--accent); }
a.svc-intro__highlight--link:hover .svc-intro__highlight-icon { color: var(--gold); }

/* Fix: sekcja 'Doswiadczenie' na stronach uslug (warianty a/b/c/d).
   Zdjecie dopasowuje wysokosc do tekstu (stretch) - pionowe zdjecie nie rozdyma
   kolumny ani nie zostawia bialej pustki przy krotkim tekscie. Cap bezpieczenstwa.
   NIE dotyczy miast (--atuty) ani profilu. */
.svc-expertise--a .svc-expertise__grid,
.svc-expertise--b .svc-expertise__grid,
.svc-expertise--c .svc-expertise__grid,
.svc-expertise--d .svc-expertise__grid { align-items: stretch; }
.svc-expertise--a .svc-expertise__image,
.svc-expertise--b .svc-expertise__image,
.svc-expertise--c .svc-expertise__image,
.svc-expertise--d .svc-expertise__image { align-self: stretch; max-height: 560px; }
.svc-expertise--a .svc-expertise__image img,
.svc-expertise--b .svc-expertise__image img,
.svc-expertise--c .svc-expertise__image img,
.svc-expertise--d .svc-expertise__image img { height: 100%; min-height: 100%; max-height: none; object-position: center 35%; }

/* ===== Poprawki layoutu TYLKO dla strony Zbieranie dowodow (page-id-25) ===== */
/* Pusty pas opinii (widget niewgrany) - ukryj tylko tutaj */
body.page-id-25 .reviews { display: none; }
/* Zbedny/urwany box-CTA 'Podejrzewasz...Podczas rozmowy:' w Doswiadczeniu - ukryj tylko tutaj (tresc konsultacji jest nizej) */
body.page-id-25 .svc-expertise__cta { display: none; }
/* Redukcja przesytu CTA: closing 'Zabezpiecz dowody' duplikuje sekcje Kontakt (telefon+konsultacja). Ukryj TYLKO tutaj; sekcja Kontakt z formularzem zostaje */
body.page-id-25 .svc-closing { display: none; }
/* Po ukryciu closing usun osierocone skosne dividery ktore go okalaly (zostawal ciemny klin) */
body.page-id-25 .section-divider:has(+ .svc-closing),
body.page-id-25 .svc-closing + .section-divider { display: none; }
/* Zdjecie w Doswiadczeniu: wyzsze i niekadrowane (cap je przycinal). Tylko tutaj */
body.page-id-25 .svc-expertise__grid { align-items: center; }
body.page-id-25 .svc-expertise__image { max-height: none; align-self: center; }
body.page-id-25 .svc-expertise__image img { height: auto; min-height: 0; max-height: none; }

/* ===== NEWSLETTER ===== */
.nl { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 56px; align-items: center; }
.nl__title { font-family: 'Oswald',sans-serif; text-transform: uppercase; letter-spacing: .04em; font-size: 1.4rem; font-weight: 600; margin: 0 0 8px; }
.nl__title::after { content: ''; display: block; width: 48px; height: 3px; background: var(--gold); margin-top: 12px; }
.nl__desc { font-size: .92rem; line-height: 1.6; margin: 14px 0 0; }
.nl__form { margin: 0; }
.nl__row { display: flex; gap: 10px; }
.nl__field { flex: 1; margin: 0; }
.nl__input { width: 100%; height: 50px; padding: 0 16px; border-radius: 7px; font-size: .95rem; font-family: inherit; outline: none; transition: border-color .15s ease, box-shadow .15s ease; }
.nl__btn { flex-shrink: 0; height: 50px; padding: 0 22px; border: none; border-radius: 7px; background: var(--gold); color: var(--navy-deep); font-family: 'Oswald',sans-serif; text-transform: uppercase; letter-spacing: .05em; font-size: .82rem; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: background .15s ease, transform .12s ease, opacity .15s ease; }
.nl__btn:hover { background: var(--gold-light, #ffc62e); }
.nl__btn:active { transform: scale(.98); }
.nl__btn.is-loading { opacity: .6; pointer-events: none; }
.nl__btn-arrow { transition: transform .15s ease; }
.nl__btn:hover .nl__btn-arrow { transform: translateX(3px); }
.nl__consent { display: flex; align-items: flex-start; gap: 9px; margin-top: 12px; font-size: .78rem; line-height: 1.45; }
.nl__consent input { margin-top: 2px; flex-shrink: 0; accent-color: var(--accent); }
.nl__consent a { text-decoration: underline; }
.nl__hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.nl__msg { margin: 10px 0 0; font-size: .85rem; min-height: 1.1em; }
.nl__msg--ok { color: #2ec58a; }
.nl__msg--err { color: #ff8a8a; }

/* Wariant stopka (ciemne tlo) */
.nl--footer { padding: 8px 0 40px; margin-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.nl--footer .nl__title { color: #fff; }
.nl--footer .nl__desc { color: var(--text-light); }
.nl--footer .nl__input { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); color: #fff; }
.nl--footer .nl__input::placeholder { color: rgba(255,255,255,0.5); }
.nl--footer .nl__input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(252,180,0,0.15); }
.nl--footer .nl__consent { color: var(--text-light); }
.nl--footer .nl__consent a { color: var(--text-light); }

/* Wariant blog (jasne tlo) */
.nl--blog { margin: 40px 0 8px; padding: 32px clamp(20px, 4vw, 40px); background: var(--surface-light); border: 1px solid rgba(0,46,61,0.08); border-radius: 14px; }
.nl--blog .nl__title { color: var(--text-dark); }
.nl--blog .nl__desc { color: var(--text-body); }
.nl--blog .nl__input { background: #fff; border: 1px solid rgba(0,46,61,0.18); color: var(--text-dark); }
.nl--blog .nl__input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,137,182,0.12); }
.nl--blog .nl__consent { color: var(--text-body); }
.nl--blog .nl__consent a { color: var(--navy-light); }
.nl--blog .nl__msg--err { color: #c0392b; }
.nl--blog .nl__msg--ok { color: #1d9d6b; }

@media (max-width: 720px) {
  .nl { grid-template-columns: 1fr; gap: 20px; }
  .nl__row { flex-direction: column; }
  .nl__btn { height: 48px; justify-content: center; }
}
/* "Dlaczego my": 5 kafelkow = 2+2+1 - wysrodkuj osierocony 5. kafelek */
body.page-id-25 .svc-why__grid > *:last-child:nth-child(odd) { grid-column: 1 / -1; justify-self: center; width: calc(50% - 12px); }
@media (max-width: 760px) {
  body.page-id-25 .svc-why__grid > *:last-child:nth-child(odd) { width: 100%; }
}

/* Strona 32 (telefon/komputer) expertise: kadr na ekran z analiza Wireshark (detekcja), nie na puste tlo */
body.page-id-32 .svc-expertise__image img { object-position: 50% 32%; }

/* Strona 31 (GPS) hero: kadr nizej, pokazac podwozie + rampy (miejsce szukania GPS), nie tylko nadwozie */
body.page-id-31 .svc-hero__media { background-position: center 68% !important; }

/* ===== GALERIA SPRZETU (svc-gallery) - siatka autentycznych zdjec sprzetu ===== */
.svc-gallery { padding: clamp(56px, 7vw, 92px) 0; background: var(--surface-light); }
.svc-gallery__header { text-align: center; margin-bottom: 44px; }
.svc-gallery__header .section-label { justify-content: center; }
.svc-gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.svc-gallery__item { position: relative; margin: 0; border-radius: 12px; overflow: hidden; aspect-ratio: 4 / 3; box-shadow: 0 12px 34px rgba(0,46,61,0.14); }
.svc-gallery__item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(150deg, rgba(0,137,182,0.16) 0%, rgba(0,46,61,0.34) 100%); mix-blend-mode: multiply; pointer-events: none; z-index: 1; }
.svc-gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(0.4) contrast(1.05); transition: transform 0.6s cubic-bezier(0.2,0.8,0.2,1); }
.svc-gallery__item:hover img { transform: scale(1.06); }
/* Pierwszy kafel (walizka/bagaznik) - cala szerokosc, naturalne proporcje zdjecia 3:2.
   Kontener = aspekt zdjecia => object-fit:cover NIE ucina (perfekcyjne dopasowanie). Duzy, caly arsenal widoczny, mniej przyciemniony. */
.svc-gallery__item:first-child { grid-column: 1 / -1; aspect-ratio: 3 / 2; }
.svc-gallery__item:first-child img { filter: grayscale(0.28) contrast(1.04); }
.svc-gallery__item:first-child::after { background: linear-gradient(150deg, rgba(0,137,182,0.08) 0%, rgba(0,46,61,0.16) 100%); }
@media (max-width: 780px) { .svc-gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 460px) { .svc-gallery__grid { grid-template-columns: 1fr; } }

/* Dropdown z wieloma pozycjami (np. Oddzialy, 36 miast): 2 kolumny, zeby nie wychodzil poza ekran */
.nav__list > li:has(> .sub-menu > li:nth-child(12)) > .sub-menu {
  columns: 2;
  column-gap: 6px;
  min-width: 480px;
  padding: 10px 8px;
}
.nav__list > li:has(> .sub-menu > li:nth-child(12)) > .sub-menu li { break-inside: avoid; }

/* ===== Sekcje social feed (Instagram / TikTok) na /wideo/ ===== */
.vid-feed { padding: clamp(56px, 7vw, 96px) 0; }
.vid-feed--ig { background: var(--surface-light); }
.vid-feed--tt { background: var(--navy-deep); }
.vid-feed--tt .section-title { color: var(--text-white); }
.vid-feed--tt .section-label { color: var(--gold); }
.vid-feed__handle {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  font-family: 'Oswald', sans-serif; font-weight: 500; letter-spacing: .04em; font-size: 1.05rem;
  color: var(--accent); text-decoration: none;
  transition: color .35s cubic-bezier(.22,1,.36,1);
}
.vid-feed__handle:hover { color: var(--gold); }
.vid-feed--tt .vid-feed__handle { color: var(--text-light); }
.vid-feed--tt .vid-feed__handle:hover { color: var(--gold); }
.vid-feed__embed { margin-top: clamp(24px, 3vw, 40px); }

/* wspolna siatka pionowych kart 9:16 */
.vid-feed .sbtt-tiktok-feed .sb-feed-posts { display: block !important; }
.vid-feed #sb_instagram #sbi_images,
.vid-feed .sbtt-tiktok-feed .sb-grid-wrapper {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 16px !important;
  float: none !important;
}
@media (max-width: 900px) {
  .vid-feed #sb_instagram #sbi_images,
  .vid-feed .sbtt-tiktok-feed .sb-grid-wrapper { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 560px) {
  .vid-feed #sb_instagram #sbi_images,
  .vid-feed .sbtt-tiktok-feed .sb-grid-wrapper { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
}

/* Instagram: karty pionowe 3:4 (spojne z TikTokiem) */
.vid-feed--ig #sb_instagram .sbi_item { width: auto !important; margin: 0 !important; padding: 0 !important; }
.vid-feed--ig .sbi_photo {
  padding-bottom: 0 !important; height: auto !important; aspect-ratio: 3 / 4;
  border-radius: 14px; overflow: hidden; position: relative;
  box-shadow: 0 10px 30px rgba(0,46,61,.12);
  transition: transform .5s cubic-bezier(.22,1,.36,1), box-shadow .5s cubic-bezier(.22,1,.36,1);
}
.vid-feed--ig .sbi_photo:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(0,46,61,.22); }
.vid-feed--ig .sbi_photo img,
.vid-feed--ig .sbi_photo .sbi_imgLiquid_bgSize,
.vid-feed--ig .sbi_photo > div {
  position: absolute !important; inset: 0 !important;
  width: 100% !important; height: 100% !important; object-fit: cover !important;
}

/* TikTok: karty pionowe (miniatury sa 3:4, wiec kontener 3:4 - nic sie nie tnie) */
.vid-feed--tt .sb-grid-wrapper > * {
  border-radius: 14px; overflow: hidden; aspect-ratio: 3 / 4; position: relative;
  box-shadow: 0 12px 34px rgba(0,0,0,.35);
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.vid-feed--tt .sb-grid-wrapper > *:hover { transform: translateY(-6px); }
.vid-feed--tt .sb-grid-wrapper img,
.vid-feed--tt .sb-grid-wrapper video {
  width: 100% !important; height: 100% !important; object-fit: cover !important; border-radius: 14px;
}

/* przyciski brandowe (obserwuj / wczytaj wiecej) */
.vid-feed .sbi_follow_btn .sbi_btn_text,
.vid-feed #sbi_load .sbi_load_btn,
.vid-feed .sbtt-tiktok-feed a[class*="load"],
.vid-feed .sbtt-tiktok-feed button[class*="load"] {
  background: var(--gold) !important; color: var(--navy-deep) !important;
  font-family: 'Oswald', sans-serif !important; font-weight: 600 !important;
  text-transform: uppercase; letter-spacing: .05em;
  border-radius: 999px !important; border: 0 !important;
  padding: 12px 28px !important; box-shadow: none !important;
  transition: background .3s, transform .3s !important;
}
.vid-feed .sbi_follow_btn .sbi_btn_text:hover,
.vid-feed #sbi_load .sbi_load_btn:hover { background: var(--gold-light) !important; transform: translateY(-2px); }

/* wlasny naglowek zamiast domyslnego z wtyczki */
.vid-feed .sbi_header_outer,
.vid-feed .sbtt-tiktok-feed .sb-header,
.vid-feed .sbtt-tiktok-feed [class*="feed-header"] { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  .vid-feed--ig .sbi_photo,
  .vid-feed--tt .sb-grid-wrapper > *,
  .vid-feed__handle { transition: none !important; }
  .vid-feed--ig .sbi_photo:hover,
  .vid-feed--tt .sb-grid-wrapper > *:hover { transform: none !important; }
}
