@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Core palette */
  --color-black:   #0d0d0d;
  --color-white:   #ffffff;
  --color-lime:    #93d95d;
  --color-lime-dark: #183800;

  /* Legacy aliases (used in inner pages, forms, etc.) */
  --color-bg:              var(--color-black);
  --color-surface:         #131313;
  --color-surface-low:     #161616;
  --color-surface-high:    #2a2a2a;
  --color-footer:          #080808;
  --color-primary:         var(--color-lime);
  --color-primary-dark:    var(--color-lime-dark);
  --color-primary-light:   #aef675;
  --color-on-surface:      #e5e2e1;
  --color-secondary:       #c6c6c7;
  --color-muted:           #8b9481;
  --color-outline:         #8b9481;
  --color-outline-variant: #414939;
  --color-white-text:      #0d0d0d;
  --color-white-muted:     #454747;

  /* Section colors */
  --section-black-bg:  #0d0d0d;
  --section-white-bg:  #ffffff;
  --section-lime-bg:   #93d95d;

  /* Typography */
  --font-display: 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  --text-hero:    clamp(3rem, 7vw, 6rem);
  --text-display: clamp(2rem, 4vw, 3.5rem);
  --text-h2:      clamp(1.75rem, 3vw, 2.5rem);
  --text-h3:      clamp(1.2rem, 2vw, 1.5rem);
  --text-body-lg: 1.125rem;
  --text-body:    1rem;
  --text-sm:      0.875rem;
  --text-label:   0.72rem;

  --weight-black:  900;
  --weight-bold:   700;
  --weight-mid:    600;
  --weight-normal: 400;

  /* Spacing */
  --radius:        0px;
  --section-gap:   7.5rem;
  --section-gap-sm:4rem;
  --margin-edge:   clamp(1.5rem, 5vw, 3rem);
  --nav-height:    80px;
  --container-max: 1280px;
  --container-pad: clamp(1rem, 4vw, 2rem);

  /* Transitions */
  --transition:      0.22s ease;
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background-color: var(--color-black);
}

body {
  background-color: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: var(--weight-normal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--weight-black);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-label);
  font-weight: var(--weight-mid);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-lime);
  margin-bottom: 1rem;
}

.section-label--dark { color: var(--color-lime-dark); }

p { line-height: 1.7; }

strong { font-weight: var(--weight-bold); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section { padding-block: var(--section-gap); }
.section--sm { padding-block: var(--section-gap-sm); }

/* Section background utilities */
.section-black {
  background-color: var(--section-black-bg);
  color: var(--color-white);
}
.section-white {
  background-color: var(--section-white-bg);
  color: var(--color-black);
}
.section-lime {
  background-color: var(--section-lime-bg);
  color: var(--color-black);
}

/* ============================================================
   MATERIAL SYMBOLS
   ============================================================ */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-mono);
  font-size: var(--text-label);
  font-weight: var(--weight-mid);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--color-lime);
  color: var(--color-black);
  border-color: var(--color-lime);
}
.btn--primary:hover {
  background: var(--color-black);
  color: var(--color-lime);
  border-color: var(--color-black);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn--outline:hover {
  background: var(--color-white);
  color: var(--color-black);
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-black);
  border-color: var(--color-black);
}
.btn--outline-dark:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.btn--lg { padding: 1.25rem 2.5rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1), background var(--transition), border-color var(--transition);
}

.site-header.scrolled {
  height: 56px;
  overflow: visible;
}

/* Transparent nav on homepage hero */
.home .site-header {
  background: transparent;
  border-bottom-color: transparent;
}

.home .site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}


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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex: 1;
}

.nav__logo img {
  height: 92px;
  width: auto;
  transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled .nav__logo img { height: 76px; }

/* Logo czarne na białym headerze po scrollu */
.home .site-header.scrolled .nav__logo img { filter: brightness(0); }

.site-header.scrolled .nav__cta .btn--primary {
  padding: 0.6rem 1.1rem;
  font-size: 0.82rem;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: var(--weight-black);
  color: var(--color-black);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
}

/* On transparent dark header: white logo */
.home .site-header:not(.scrolled) .nav__logo-name { color: var(--color-white); }
.home .site-header:not(.scrolled) .nav__logo img { filter: brightness(0) invert(1); }

#nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

#nav-menu > .menu-item > a,
#nav-menu > li > a {
  display: block;
  padding: 0.4rem 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-black);
  transition: color var(--transition);
  text-decoration: none;
}

#nav-menu > .menu-item > a:hover,
#nav-menu > .current-menu-item > a {
  color: var(--color-lime-dark);
}

.home .site-header:not(.scrolled) #nav-menu > .menu-item > a { color: rgba(255,255,255,0.65); }
.home .site-header:not(.scrolled) #nav-menu > .menu-item > a:hover { color: var(--color-lime); }

/* ── NAV DROPDOWN (sub-menu) ── */
.menu-item-has-children { position: relative; }

.menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.4rem;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform var(--transition);
}

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

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--color-white);
  border-top: 3px solid var(--color-lime);
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  border-radius: 0 0 8px 8px;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200;
}

.menu-item-has-children:hover .sub-menu,
.menu-item-has-children:focus-within .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu .menu-item > a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-black);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}

.sub-menu .menu-item > a:hover,
.sub-menu .current-menu-item > a {
  color: var(--color-lime-dark);
  background: rgba(0,0,0,0.03);
}

.sub-menu .menu-item:last-child > a { border-radius: 0 0 6px 6px; }

.nav__cta {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav__cta .btn {
  font-size: 0.85rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.1em;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-black);
  transition: transform var(--transition), opacity var(--transition);
}

.home .site-header:not(.scrolled) .nav__toggle span { background: var(--color-white); }

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

/* ============================================================
   HERO — fullscreen dark, background image
   ============================================================ */
.hero--home {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  background: var(--section-black-bg);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

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

.hero--home .hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: grayscale(60%);
  opacity: 0.45;
}

.hero--home .hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0d0d0d 20%, rgba(13,13,13,0.4) 60%, transparent 100%);
}

.hero--home .hero__inner {
  position: relative;
  z-index: 1;
  padding-bottom: 3rem;
  padding-top: 2rem;
  margin-top: -8vh;
  width: 100%;
}

.hero--home .hero__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-label);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-lime);
  margin-bottom: 1.5rem;
  display: block;
}

.hero--home .hero__headline {
  font-size: var(--text-hero);
  font-weight: var(--weight-black);
  color: var(--color-white);
  line-height: 1.0;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  max-width: 16ch;
}

.hero--home .hero__headline em {
  font-style: normal;
  color: var(--color-lime);
}

.hero__hl-line {
  display: block;
  line-height: 1.0;
}

.hero__hl-line--accent {
  color: var(--color-lime);
}

.hero__hl-line--brand {
  font-size: 0.72em;
  letter-spacing: 0.02em;
  opacity: 0.85;
}

.hero--home .hero__subline {
  font-size: var(--text-body-lg);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  max-width: 50ch;
  margin-bottom: 2.5rem;
}

.hero--home::before {
  content: '';
  position: absolute;
  left: -100px;
  top: 30%;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(147, 217, 93, 0.18) 0%, rgba(147, 217, 93, 0.06) 40%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
}

.hero--home .hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero--home .hero__actions .btn {
  min-width: 220px;
  justify-content: space-between;
}

/* ============================================================
   STATS BAR — lime
   ============================================================ */
.stats {
  background: var(--section-lime-bg);
  padding-block: 4rem;
}

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

.stats__item {
  padding: 1.5rem 2rem;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}

.stats__item:first-child { border-left: none; }

.stats__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: var(--weight-black);
  color: var(--color-black);
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
}

.stats__label {
  font-family: var(--font-mono);
  font-size: var(--text-label);
  color: rgba(0, 0, 0, 0.65);
  margin-top: 0.5rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: var(--weight-mid);
}

/* ============================================================
   SERVICES GRID — photo cards with overlay
   ============================================================ */
.sg {
  background: var(--section-white-bg);
  padding-block: var(--section-gap);
}

.sg__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.sg__heading {
  font-size: var(--text-h2);
  color: var(--color-black);
  text-transform: uppercase;
  line-height: 1.1;
  margin-top: 0.5rem;
}

.sg__link-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: var(--text-label);
  font-weight: var(--weight-mid);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--transition);
}
.sg__link-all .material-symbols-outlined { font-size: 16px; transition: translate var(--transition); }
.sg__link-all:hover { color: var(--color-black); }
.sg__link-all:hover .material-symbols-outlined { translate: 4px 0; }

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

.sg__card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 300px;
  text-decoration: none;
  background: #1a1a1a;
}

.sg__card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
  filter: brightness(0.75) saturate(0.85);
}

.sg__card:hover .sg__card-img {
  transform: scale(1.04);
  filter: brightness(0.5) saturate(0.75);
}

.sg__card-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a2a0d 0%, #0d1a06 100%);
}

.sg__card-fallback .material-symbols-outlined {
  font-size: 4rem;
  color: var(--color-lime);
  opacity: 0.25;
}

.sg__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.08) 100%
  );
  transition: opacity 0.4s ease;
}

.sg__card:hover .sg__card-overlay { opacity: 1.15; }

.sg__card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: inherit;
  padding: 1.5rem;
  justify-content: flex-end;
}

.sg__card-num {
  font-family: var(--font-mono);
  font-size: var(--text-label);
  font-weight: var(--weight-mid);
  letter-spacing: 0.14em;
  color: var(--color-lime);
  margin-bottom: 0.6rem;
}

.sg__card-title {
  font-size: 1.05rem;
  font-weight: var(--weight-bold);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.25;
  margin: 0 0 0.6rem;
}

.sg__card-excerpt {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  margin: 0 0 0.9rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease;
  opacity: 0;
}

.sg__card:hover .sg__card-excerpt {
  max-height: 6em;
  opacity: 1;
}

.sg__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-sm);
  font-weight: var(--weight-mid);
  color: var(--color-lime);
  letter-spacing: 0.04em;
}

.sg__card-cta .material-symbols-outlined {
  font-size: 16px;
  transition: translate var(--transition);
}

.sg__card:hover .sg__card-cta .material-symbols-outlined { translate: 4px 0; }

@media (max-width: 1024px) {
  .sg__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .sg__grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .sg__card { min-height: 240px; }
  .sg__header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .sg__card-excerpt { max-height: 6em; opacity: 1; }
}

/* ============================================================
   WHY US — dark split with image
   ============================================================ */
.why-us {
  background: var(--section-black-bg);
  color: var(--color-white);
  padding-block: var(--section-gap);
  position: relative;
  overflow: hidden;
}

.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.why-us__image-col {
  position: relative;
}

.why-us__image {
  position: relative;
  overflow: hidden;
}

.why-us__image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  filter: grayscale(50%) brightness(0.7);
}

.why-us__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--color-lime);
  color: var(--color-black);
  padding: 1.5rem 2rem;
  text-align: center;
  line-height: 1.2;
  z-index: 2;
  min-width: 140px;
}

.why-us__badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: var(--weight-black);
  letter-spacing: -0.04em;
}

.why-us__badge-text {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.25rem;
}

.why-us__content { position: relative; z-index: 1; }

.why-us__headline {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: var(--weight-black);
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.why-us__lead {
  font-size: var(--text-body-lg);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 45ch;
}

.why-us__grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-us__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.why-us__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.12);
}

.why-us__icon .material-symbols-outlined {
  font-size: 22px;
  color: var(--color-lime);
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.why-us__title {
  font-size: 1rem;
  font-weight: var(--weight-bold);
  color: var(--color-white);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.why-us__desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

/* ============================================================
   PROCESS — white, ghost numbers
   ============================================================ */
.process {
  background: var(--section-white-bg);
  padding-block: var(--section-gap);
}

.process__header {
  text-align: center;
  margin-bottom: 5rem;
}

.process__headline {
  font-size: var(--text-display);
  color: var(--color-black);
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.process__step {
  padding: 3rem 2rem 2rem;
  border-right: 1px solid rgba(0,0,0,0.1);
  position: relative;
}

.process__step:last-child { border-right: none; }

.process__num {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: var(--weight-black);
  color: rgba(0, 0, 0, 0.05);
  line-height: 1;
  letter-spacing: -0.05em;
  position: absolute;
  top: -1.5rem;
  left: 1rem;
  pointer-events: none;
  user-select: none;
}

.process__step-title {
  font-size: 1.25rem;
  font-weight: var(--weight-black);
  color: var(--color-black);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.process__step-desc {
  font-size: var(--text-sm);
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ============================================================
   ABOUT SNIPPET (rebranded as "O nas" snippet)
   ============================================================ */
.about-snippet {
  background: var(--section-black-bg);
  color: var(--color-white);
  padding-block: var(--section-gap);
}

.about-snippet__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-snippet__image-col { position: relative; }

.about-snippet__image {
  overflow: hidden;
  position: relative;
}

.about-snippet__image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  filter: grayscale(50%) brightness(0.8);
}

.about-snippet__credential {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--color-lime);
  color: var(--color-black);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 240px;
}

.about-snippet__credential .material-symbols-outlined {
  font-size: 28px;
  flex-shrink: 0;
}

.about-snippet__credential-text {
  font-size: var(--text-sm);
  line-height: 1.4;
}

.about-snippet__credential-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: var(--weight-bold);
}

.about-snippet__content h2 {
  font-size: var(--text-h2);
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.about-snippet__content .section-label { color: var(--color-lime); }

.about-snippet__text { margin-bottom: 1.5rem; }
.about-snippet__text p {
  font-size: var(--text-body-lg);
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.25rem;
}

.about-snippet__features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.about-snippet__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-snippet__feature .material-symbols-outlined {
  font-size: 18px;
  color: var(--color-lime);
  flex-shrink: 0;
  margin-top: 0.1em;
}

.about-snippet__feature span {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
}

/* ============================================================
   REVIEWS (Trustindex Google opinions)
   ============================================================ */
.reviews-section {
  background: var(--color-white);
  padding-block: 5rem;
}

.reviews-section__top {
  text-align: center;
  margin-bottom: 3rem;
}

.reviews-section__heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: var(--weight-black);
  letter-spacing: -0.03em;
  color: var(--color-white-text);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.reviews-section__sub {
  font-size: var(--text-sm);
  color: var(--color-white-muted);
  max-width: 52ch;
  margin: 0 auto;
}

.reviews-section__widget {
  max-width: 1000px;
  margin: 0 auto;
}

/* ============================================================
   REALIZATIONS & TESTIMONIALS
   ============================================================ */
.realizations {
  background: var(--section-white-bg);
  padding-block: var(--section-gap);
}

.realizations__header { margin-bottom: 3rem; }
.realizations__heading { font-size: var(--text-h2); color: var(--color-black); text-transform: uppercase; }
.realizations .section-label { color: var(--color-lime-dark); }

.testimonials {
  background: var(--section-black-bg);
  color: var(--color-white);
  padding-block: var(--section-gap);
}

.testimonials__heading { font-size: var(--text-h2); color: var(--color-white); text-transform: uppercase; margin-bottom: 3rem; }
.testimonials .section-label { color: var(--color-lime); }

/* ============================================================
   CONTACT CTA — dark box on white
   ============================================================ */
.contact-cta {
  background: var(--section-white-bg);
  padding-block: var(--section-gap-sm);
}

.contact-cta__box {
  background: var(--section-black-bg);
  padding: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.contact-cta__label {
  font-family: var(--font-mono);
  font-size: var(--text-label);
  font-weight: var(--weight-mid);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-lime);
  margin-bottom: 1rem;
  display: block;
}

.contact-cta__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--weight-black);
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.contact-cta__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.contact-cta__phone {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: var(--weight-black);
  color: var(--color-lime);
  letter-spacing: -0.03em;
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}
.contact-cta__phone:hover { color: var(--color-white); }

.contact-cta__sub {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  margin-bottom: 0;
}

/* ============================================================
   FAQ — dark accordion
   ============================================================ */
.faq--home {
  background: var(--color-black);
  padding-block: var(--section-gap);
}

.faq-home__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.faq-home__heading {
  font-size: var(--text-h2);
  font-weight: var(--weight-black);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: var(--color-white);
  margin-bottom: 2rem;
  margin-top: 0.5rem;
}

.faq-home__phone {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  margin-bottom: 1.5rem;
}
.faq-home__phone .material-symbols-outlined {
  color: var(--color-lime);
  font-size: 1.4rem;
}
.faq-home__phone:hover { color: var(--color-lime); }

.faq--home .faq-item__question { color: var(--color-white); }
.faq--home .faq-item__answer-inner { color: rgba(255,255,255,0.6); }
.faq--home .faq-item { border-color: rgba(255,255,255,0.1); }
.faq--home .section-label { color: var(--color-lime); }

.faq--home .service-contact-form__field label { color: rgba(255,255,255,0.7); }
.faq--home .service-contact-form__consent { color: rgba(255,255,255,0.35); }

@media (max-width: 860px) {
  .faq-home__inner { grid-template-columns: 1fr; gap: 3rem; }
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-top: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
}

.faq__item:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 0;
  font-size: 1.1rem;
  font-weight: var(--weight-bold);
  color: var(--color-white);
  letter-spacing: -0.01em;
  list-style: none;
  text-transform: uppercase;
  gap: 2rem;
  transition: color var(--transition);
}

.faq__question:hover { color: var(--color-lime); }

.faq__question::-webkit-details-marker { display: none; }

.faq__question::after {
  content: 'add';
  font-family: 'Material Symbols Outlined';
  font-size: 24px;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  color: var(--color-lime);
  flex-shrink: 0;
  transition: rotate var(--transition);
}

.faq__item[open] .faq__question::after {
  content: 'remove';
}

.faq__answer {
  padding-bottom: 2rem;
  font-size: var(--text-body-lg);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 70ch;
}

.faq__answer p { color: rgba(255, 255, 255, 0.6); margin-bottom: 0.75rem; }
.faq__answer p:last-child { margin-bottom: 0; }

/* ============================================================
   FOOTER
   ============================================================ */

/* ============================================================
   REALIZACJE ARCHIVE — premium portfolio
   ============================================================ */
.realizacje-hero {
  background: var(--color-black);
  padding: calc(var(--nav-height) + 5rem) 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.realizacje-hero::before {
  content: 'PORTFOLIO';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: var(--weight-black);
  letter-spacing: -0.06em;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.realizacje-hero__kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-lime);
  display: block;
  margin-bottom: 1.25rem;
}

.realizacje-hero__headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: var(--weight-black);
  text-transform: uppercase;
  letter-spacing: -0.05em;
  color: var(--color-white);
  line-height: 0.95;
  margin: 0 0 1.5rem;
}

.realizacje-hero__lead {
  font-size: var(--text-body-lg);
  color: var(--color-secondary);
  max-width: 48ch;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── GRID ── */
.rp-section {
  padding-block: var(--section-gap);
  background: var(--color-white);
}

.rp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ── CARD ── */
.rp-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.rp-card:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,0.13);
  transform: translateY(-4px);
}

/* ── IMAGE ── */
.rp-card__img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.rp-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rp-card:hover .rp-card__img { transform: scale(1.06); }

.rp-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8e8e8 0%, #d4d4d4 100%);
}

.rp-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.12) 0%, transparent 50%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* ── BODY ── */
.rp-card__body {
  padding: 1.25rem 1.5rem;
  position: relative;
  height: 140px;
  overflow: hidden;
}

.rp-card__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-lime-dark);
  background: rgba(101,163,13,0.08);
  border: 1px solid rgba(101,163,13,0.25);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.65rem;
}

.rp-card__title {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  font-weight: var(--weight-bold);
  color: var(--color-white-text);
  margin: 0 0 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.rp-card:hover .rp-card__title { color: var(--color-lime-dark); }

/* ── REVEAL (slides up from bottom, card stays fixed height) ── */
.rp-card__reveal {
  position: absolute;
  inset: 0;
  padding: 1.25rem 1.5rem 1.5rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.rp-card:hover .rp-card__reveal {
  transform: translateY(0);
}

.rp-card__desc {
  font-size: 0.85rem;
  color: var(--color-white-muted);
  line-height: 1.65;
  margin: 0.75rem 0 0.65rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rp-card__meta {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.rp-card__meta-item {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white-muted);
}

.rp-card__meta-item + .rp-card__meta-item::before {
  content: '/';
  margin: 0 0.5rem;
  color: var(--color-secondary);
}

.rp-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-lime-dark);
  border-bottom: 1px solid rgba(101,163,13,0.4);
  padding-bottom: 2px;
  transition: gap 0.2s ease, border-color 0.2s ease;
}

.rp-card:hover .rp-card__btn { gap: 0.65rem; border-color: var(--color-lime-dark); }

.rp-card__btn .material-symbols-outlined { font-size: 0.95rem; }

/* ── EMPTY STATE ── */
.rp-empty {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--color-white-muted);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── PAGINATION ── */
.rp-pagination { padding: 3rem 0; display: flex; justify-content: center; gap: 0.5rem; }
.rp-pagination .page-numbers { font-family: var(--font-mono); font-size: 0.8rem; padding: 0.5rem 0.9rem; border: 1px solid rgba(0,0,0,0.15); color: var(--color-white-muted); text-decoration: none; transition: all 0.2s; border-radius: 3px; }
.rp-pagination .page-numbers.current,
.rp-pagination .page-numbers:hover { background: var(--color-lime); border-color: var(--color-lime); color: var(--color-black); }

/* ── SINGLE REALIZACJA ── */
.single-realizacja-hero {
  background: var(--color-black);
  padding: calc(var(--nav-height) + 4rem) 0 4rem;
}

.single-realizacja-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.single-realizacja-hero__content { min-width: 0; }

.single-realizacja-hero__meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
  align-items: center;
}

.single-realizacja-hero__headline {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: var(--weight-black);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: var(--color-white);
  margin: 0 0 1rem;
  line-height: 1.05;
}

.single-realizacja-hero__summary {
  font-size: var(--text-body-lg);
  color: var(--color-secondary);
  line-height: 1.7;
  margin: 0;
}

.single-realizacja-hero__img-wrap {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.single-realizacja-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.single-realizacja-body {
  padding-block: var(--section-gap);
  background: var(--color-white);
}

.single-realizacja-body .container {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}

.single-realizacja-content { color: var(--color-white-muted); line-height: 1.75; }
.single-realizacja-content h2 { color: var(--color-white-text); font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 700; text-transform: uppercase; letter-spacing: -0.02em; margin: 2rem 0 0.75rem; }
.single-realizacja-content h2:first-child { margin-top: 0; }
.single-realizacja-content p { margin-bottom: 1.25rem; color: var(--color-white-muted); }

.single-realizacja-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
  background: #f5f5f3;
  border-radius: 4px;
  padding: 2rem;
  border-left: 3px solid var(--color-lime);
}

.single-realizacja-sidebar__title {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-white-muted);
  margin-bottom: 1.5rem;
}

.single-realizacja-meta-list { list-style: none; padding: 0; margin: 0 0 2rem; display: flex; flex-direction: column; gap: 1rem; }
.single-realizacja-meta-list li { display: flex; flex-direction: column; gap: 0.15rem; }
.single-realizacja-meta-list .meta-label { font-size: 0.68rem; font-family: var(--font-mono); font-weight: var(--weight-bold); letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-white-muted); }
.single-realizacja-meta-list .meta-value { font-size: 1rem; font-weight: 700; color: var(--color-white-text); }

.realizacja-gallery { padding-block: var(--section-gap); background: var(--color-black); }
.realizacja-gallery__headline { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: var(--weight-black); text-transform: uppercase; letter-spacing: -0.04em; color: var(--color-white); margin-bottom: 2rem; }
.realizacja-gallery__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 3px; }
.realizacja-gallery__grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: opacity 0.3s ease; }
.realizacja-gallery__grid img:hover { opacity: 0.85; }

/* ── ABOUT CONTENT BLOCKS (trzy sekcje split) ── */
.about-blocks { background: var(--color-white); }

.about-block {
  padding-block: var(--section-gap);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.about-block:first-child { border-top: none; }

.about-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-block--reverse .about-block__inner {
  direction: rtl;
}

.about-block--reverse .about-block__inner > * {
  direction: ltr;
}

.about-block__content { min-width: 0; }

.about-block__title {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: var(--weight-black);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: var(--color-white-text);
  margin: 0.6rem 0 1.25rem;
  line-height: 1.05;
}

.about-block__body {
  color: var(--color-white-muted);
  line-height: 1.75;
  font-size: var(--text-body);
}

.about-block__body p { margin-bottom: 1rem; }
.about-block__body p:last-child { margin-bottom: 0; }

.about-block__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.about-block__stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.about-block__stat-val {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: var(--weight-black);
  color: var(--color-lime-dark);
  letter-spacing: -0.04em;
  line-height: 1;
}

.about-block__stat-lbl {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white-muted);
}

/* Media */
.about-block__media {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.about-block__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-block__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(132,204,22,0.15);
  border-radius: 8px;
}

.about-block__placeholder .material-symbols-outlined {
  font-size: 6rem;
  color: rgba(132,204,22,0.25);
}

@media (max-width: 900px) {
  .about-block__inner { grid-template-columns: 1fr; gap: 2.5rem; direction: ltr; }
  .about-block--reverse .about-block__inner { direction: ltr; }
  .about-block__media { aspect-ratio: 16 / 9; }
}

/* ── KARUZELA REALIZACJE (home) ── */
.rlz-car {
  padding-block: var(--section-gap);
  background: var(--color-white);
  overflow: hidden;
}

.rlz-car__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.rlz-car__heading {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: var(--weight-black);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: var(--color-white-text);
  margin: 0.5rem 0 0;
}

.rlz-car__controls {
  display: flex;
  gap: 0.5rem;
}

.rlz-car__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.15);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  color: var(--color-white-text);
}

.rlz-car__btn:hover:not(:disabled) {
  background: var(--color-lime);
  border-color: var(--color-lime);
  color: var(--color-black);
}

.rlz-car__btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.rlz-car__btn .material-symbols-outlined { font-size: 1.2rem; }

/* Track */
.rlz-car__viewport {
  padding-left: calc((100vw - min(100vw - 2rem, 1280px)) / 2);
  overflow-x: hidden;
  padding-bottom: 2rem;
  margin-bottom: -2rem;
}

.rlz-car__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  padding-right: 2rem;
}

/* Slide card */
.rlz-car__slide {
  flex: 0 0 calc(33.333% - 1rem);
  text-decoration: none;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.rlz-car__slide:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

.rlz-car__img-wrap {
  height: 220px;
  overflow: hidden;
}

.rlz-car__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.rlz-car__slide:hover .rlz-car__img { transform: scale(1.05); }

.rlz-car__img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #e8e8e8, #d4d4d4);
}

.rlz-car__body { padding: 1.25rem 1.5rem 1.5rem; }

.rlz-car__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.63rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-lime-dark);
  background: rgba(101,163,13,0.08);
  border: 1px solid rgba(101,163,13,0.25);
  padding: 0.18rem 0.55rem;
  border-radius: 3px;
  margin-bottom: 0.6rem;
}

.rlz-car__title {
  font-size: 1rem;
  font-weight: var(--weight-bold);
  color: var(--color-white-text);
  margin: 0 0 0.5rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.rlz-car__meta {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white-muted);
  margin: 0;
}

.rlz-car__footer {
  margin-top: 2.5rem;
}

@media (max-width: 1024px) {
  .rlz-car__slide { flex: 0 0 calc(50% - 0.75rem); }
}

@media (max-width: 640px) {
  .rlz-car__slide { flex: 0 0 calc(85vw); }
  .rlz-car__header { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ── FAQ + FORM na stronie realizacje ── */
.rlz-faq-form {
  padding-block: var(--section-gap);
  background: var(--color-white);
  border-top: 1px solid rgba(0,0,0,0.07);
}

.rlz-faq-form__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.rlz-faq-form__heading {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: var(--weight-black);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: var(--color-white-text);
  margin: 0.75rem 0 0.5rem;
}

.rlz-faq-form__lead {
  font-size: 0.92rem;
  color: var(--color-white-muted);
  margin-bottom: 2rem;
  line-height: 1.65;
}

.rlz-faq-form__form .contact-form-section {
  background: transparent;
  padding: 0 0 0 1.75rem;
  border-left: 3px solid var(--color-lime);
}

.rlz-faq-form__form .contact-form-section h2 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: var(--weight-black);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--color-white-text);
  margin: 0 0 0.4rem;
}

.rlz-faq-form__form .contact-form-section > p {
  font-size: 0.88rem;
  color: var(--color-white-muted);
  margin-bottom: 1.75rem;
}

/* RESPONSIVE realizacje */
@media (max-width: 1100px) {
  .rp-grid { grid-template-columns: repeat(2, 1fr); }
  .single-realizacja-hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .single-realizacja-hero__img-wrap { aspect-ratio: 16 / 9; }
  .single-realizacja-body .container { grid-template-columns: 1fr; }
  .single-realizacja-sidebar { position: static; }
  .rlz-faq-form__inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 640px) {
  .rp-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   NAV SIDEBAR (mobile slide-in)
   ============================================================ */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 88vw);
  background: var(--color-black);
  z-index: 1999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
  box-shadow: -8px 0 48px rgba(0,0,0,0.45);
}
.nav-sidebar.open {
  transform: translateX(0);
}

.nav-sidebar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 2px solid var(--color-lime);
  flex-shrink: 0;
  min-height: 70px;
}

.nav-sidebar__logo-img {
  height: 48px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.nav-sidebar__logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: var(--weight-black);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.nav-sidebar__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  cursor: pointer;
  color: var(--color-white);
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.nav-sidebar__close:hover {
  background: rgba(147,217,93,0.12);
  border-color: var(--color-lime);
}
.nav-sidebar__close .material-symbols-outlined { font-size: 20px; }

.nav-sidebar__nav {
  flex: 1;
  padding: 0.5rem 0;
  overflow-y: auto;
}

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

.nav-sidebar__nav .menu-item > a {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
}
.nav-sidebar__nav .menu-item > a:hover,
.nav-sidebar__nav .current-menu-item > a,
.nav-sidebar__nav .current-menu-ancestor > a {
  color: var(--color-lime);
  background: rgba(147,217,93,0.05);
  padding-left: 1.6rem;
}

.nav-sidebar__nav .sub-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  border-radius: 0;
  list-style: none;
  margin: 0;
  padding: 0.25rem 0 0.75rem 1.5rem;
  background: rgba(255,255,255,0.02);
  border-left: 2px solid var(--color-lime);
  min-width: unset;
  width: 100%;
}
.nav-sidebar__nav .sub-menu .menu-item > a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  padding: 0.55rem 1rem;
  border-bottom: none;
  letter-spacing: 0.02em;
  position: static;
  white-space: normal;
  overflow-wrap: break-word;
  line-height: 1.4;
}
.nav-sidebar__nav .sub-menu .menu-item > a:hover { color: var(--color-lime); background: transparent; padding-left: 1.25rem; }

.nav-sidebar__foot {
  padding: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0b0d0a;
  border-top: 2px solid var(--color-lime);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(147,217,93,0.09) 0%, transparent 62%);
  top: -280px;
  right: -120px;
  pointer-events: none;
  z-index: 0;
}

.site-footer::after {
  content: '';
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(147,217,93,0.05) 0%, transparent 62%);
  bottom: -80px;
  left: -40px;
  pointer-events: none;
  z-index: 0;
}

.footer__main {
  padding-block: 5rem 3rem;
  position: relative;
  z-index: 1;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer__brand-logo-link {
  display: inline-block;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer__brand-img {
  height: 100px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer__brand-text {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: var(--weight-black);
  color: var(--color-white);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  display: block;
  line-height: 1;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: var(--weight-black);
  color: var(--color-white);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.footer__brand-tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 30ch;
  margin-bottom: 1.5rem;
}

.footer__col-heading {
  font-family: var(--font-mono);
  font-size: var(--text-label);
  font-weight: var(--weight-mid);
  color: var(--color-lime);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(147,217,93,0.22);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--color-lime); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.6rem;
}

.footer__contact-item .material-symbols-outlined {
  font-size: 18px;
  color: var(--color-lime);
  flex-shrink: 0;
  margin-top: 0.05em;
}

.footer__contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}
.footer__contact-item a:hover { color: var(--color-lime); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-block: 1.25rem;
}

.footer__copy {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.3);
}

.footer__bottom-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer__legal-links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color var(--transition);
}
.footer__legal-links a:hover { color: var(--color-lime); }

.footer__contact-value {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: var(--text-sm);
  text-decoration: none;
  transition: color var(--transition);
}
.footer__contact-value:hover { color: var(--color-lime); }

.footer__contact-plain {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer__contact-plain-item {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--transition);
  display: block;
}
a.footer__contact-plain-item:hover { color: var(--color-lime); }

.footer__made-by {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  opacity: 0.4;
  transition: opacity var(--transition);
}
.footer__made-by:hover { opacity: 0.75; }

.footer__made-by-text {
  font-size: 0.68rem;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}

.footer__made-by-logo {
  height: 18px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  padding-block: 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: var(--color-black);
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  list-style: none;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
}

.breadcrumbs__list li { display: flex; align-items: center; gap: 0.25rem; }
.breadcrumbs__list a { color: inherit; text-decoration: none; transition: color var(--transition); }
.breadcrumbs__list a:hover { color: var(--color-lime); }
.breadcrumbs__list li:last-child { color: rgba(255,255,255,0.8); }
.breadcrumbs__sep { color: rgba(255,255,255,0.2); font-size: 10px; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 4rem;
  background: var(--color-black);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-lime);
}

.page-hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
}

.page-hero__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-white);
  text-transform: uppercase;
}

.page-hero__desc {
  max-width: 60ch;
  color: rgba(255,255,255,0.6);
  font-size: var(--text-body-lg);
  margin-top: 1rem;
}

/* ============================================================
   SINGLE SERVICE PAGE
   ============================================================ */
.service-page { background: var(--color-black); }

.service-page__hero {
  padding-top: calc(var(--nav-height) + 2rem);
  padding-bottom: 4rem;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--color-black);
  position: relative;
  overflow: hidden;
  color: var(--color-white);
}

.service-page__hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-lime);
}

.service-page__hero-inner {
  display: grid;
  grid-template-columns: 1fr 40%;
  gap: 4rem;
  align-items: center;
}

.service-page__hero-content h1 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.service-page__hero-content p {
  font-size: var(--text-body-lg);
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
}

.service-page__hero-image { overflow: hidden; }
.service-page__hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: grayscale(40%);
}

.service-page__body {
  padding-block: var(--section-gap);
  background: var(--color-white);
  color: var(--color-white-text);
}

.service-hero__badges {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.service-hero__badge {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.6rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
}

.service-hero__badge-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.service-hero__badge-val {
  font-size: 1rem;
  font-weight: var(--weight-black);
  color: var(--color-lime);
  letter-spacing: -0.02em;
}

.service-page__hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.service-page__content {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}

.service-page__text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--color-white-text);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  margin-top: 2.5rem;
}
.service-page__text h2:first-child { margin-top: 0; }

.service-page__text p {
  margin-bottom: 1.25rem;
  font-size: var(--text-body-lg);
  color: var(--color-white-muted);
}

.service-page__text ul {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-page__text ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--text-body);
  color: var(--color-white-muted);
}

.service-page__text ul li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--color-lime);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45em;
}

/* Service sidebar */
.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.service-sidebar__card {
  background: #f4f4f2;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 2rem;
}

.service-sidebar__phone-card {
  background: var(--color-lime);
  border-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-sidebar__phone-big {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.5rem;
  font-weight: var(--weight-black);
  color: var(--color-black);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: opacity var(--transition);
}
.service-sidebar__phone-big:hover { opacity: 0.8; }
.service-sidebar__phone-big .material-symbols-outlined { font-size: 22px; }

.service-sidebar__label {
  font-family: var(--font-mono);
  font-size: var(--text-label);
  color: var(--color-lime);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  display: block;
}

.service-sidebar__value {
  font-size: 1.5rem;
  font-weight: var(--weight-black);
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.service-sidebar__cta {
  background: var(--color-lime);
  padding: 2rem;
  text-align: center;
}

.service-sidebar__cta h4 {
  font-size: 1.1rem;
  color: var(--color-black);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* ============================================================
   SERVICE SECTION PARTS (single service page)
   ============================================================ */
.service-for-whom,
.service-includes,
.service-process,
.service-pricing,
.service-faq,
.service-related {
  padding-block: var(--section-gap-sm);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.service-section__title {
  font-size: var(--text-h2);
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.service-for-whom__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.service-for-whom__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,0.06);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
}

.service-for-whom__item .material-symbols-outlined { font-size: 18px; color: var(--color-lime); flex-shrink: 0; }

.service-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-left: 1px solid rgba(255,255,255,0.08);
}

.service-process__step {
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 2rem 1.5rem;
  position: relative;
}

.service-process__num {
  font-family: var(--font-mono);
  font-size: var(--text-label);
  color: var(--color-lime);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: block;
}

.service-process__step h4 {
  font-size: 1rem;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.service-process__step p { font-size: var(--text-sm); color: rgba(255,255,255,0.55); }

/* Pricing table */
.service-pricing__table { width: 100%; border-collapse: collapse; }
.service-pricing__table th {
  text-align: left;
  padding: 1rem;
  background: rgba(255,255,255,0.04);
  font-family: var(--font-mono);
  font-size: var(--text-label);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.service-pricing__table td {
  padding: 1rem;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  vertical-align: top;
}

.service-pricing__table tr:last-child td { border-bottom: none; }
.service-pricing__table td:last-child { color: var(--color-lime); font-weight: var(--weight-bold); }

/* Service includes */
.service-includes__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.service-includes__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--text-sm);
  color: var(--color-white-muted);
}

.service-includes__item .material-symbols-outlined { font-size: 18px; color: var(--color-lime); flex-shrink: 0; }

/* Service FAQ */
.service-faq .faq__list { display: flex; flex-direction: column; gap: 0; }
.service-faq .faq__item { border-color: rgba(255,255,255,0.08); }
.service-faq .faq__question { color: var(--color-white); font-size: 1rem; }
.service-faq .faq__answer { color: rgba(255,255,255,0.55); font-size: var(--text-body); }

/* Service related */
.service-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.service-related__item {
  background: var(--color-black);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: background var(--transition);
}

.service-related__item:hover { background: #131313; }

.service-related__item h4 {
  font-size: 1rem;
  color: var(--color-white);
  text-transform: uppercase;
}

.service-related__item p { font-size: var(--text-sm); color: rgba(255,255,255,0.5); }

.service-related__arrow {
  margin-top: auto;
  color: var(--color-lime);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
}

/* ============================================================
   SERVICE PAGE — dopasowane do PHP parts (klasy 1:1 z PHP)
   ============================================================ */

/* Lead */
.service-page__lead {
  font-size: var(--text-body-lg);
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Sidebar extras */
.service-sidebar__card-title {
  font-size: 0.9rem;
  font-weight: var(--weight-bold);
  color: var(--color-white-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.service-sidebar__contact-name {
  font-size: var(--text-sm);
  color: var(--color-white-muted);
  margin-bottom: 0.35rem;
}

.service-sidebar__phone {
  display: block;
  font-size: 1.5rem;
  font-weight: var(--weight-black);
  color: var(--color-lime);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  text-decoration: none;
  transition: opacity var(--transition);
}
.service-sidebar__phone:hover { opacity: 0.8; }

.service-sidebar__other-title {
  font-size: var(--text-label);
  font-weight: var(--weight-bold);
  color: var(--color-white-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.service-sidebar__other-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.service-sidebar__other-links a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0;
  font-size: var(--text-sm);
  color: var(--color-white-muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: color var(--transition);
}
.service-sidebar__other-links a:hover { color: var(--color-lime-dark); }
.service-sidebar__other-links a .material-symbols-outlined { font-size: 15px; flex-shrink: 0; }

/* For whom — clean checklist */
.for-whom {
  padding-block: var(--section-gap-sm);
  border-top: 1px solid rgba(0,0,0,0.08);
}

.for-whom__headline {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--color-white-text);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.for-whom__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: transparent;
}

.for-whom__item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 1.1rem 2rem 1.1rem 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.9rem;
}

.for-whom__item::before {
  content: '';
  display: block;
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 2px;
  background: var(--color-lime);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.for-whom__icon { display: none; }

.for-whom__title {
  font-size: 0.95rem;
  font-weight: var(--weight-bold);
  color: var(--color-white-text);
  text-transform: none;
  line-height: 1.45;
}

.for-whom__description {
  font-size: var(--text-sm);
  color: var(--color-white-muted);
  line-height: 1.6;
  margin-top: 0.25rem;
}

/* Process steps — full-width timeline */
.service-page .process {
  padding-block: var(--section-gap);
  border-top: none;
  background: var(--color-black);
}

.service-page .process__headline {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 4rem;
  text-align: center;
}

.service-page .process__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  list-style: none;
  position: relative;
}

/* Connecting line behind circles */
.service-page .process__list::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.12) 8%, rgba(255,255,255,0.12) 92%, transparent 100%);
  z-index: 0;
}

.service-page .process__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.25rem 0;
  position: relative;
  z-index: 1;
}

.service-page .process__number {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--color-lime);
  color: var(--color-black);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.service-page .process__body { width: 100%; }

.service-page .process__title {
  font-size: 0.85rem;
  font-weight: var(--weight-black);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.service-page .process__description {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

/* Service includes extras */
.service-includes {
  padding-block: var(--section-gap-sm);
  border-top: 1px solid rgba(0,0,0,0.08);
}

.service-includes .container { max-width: var(--container-max); margin-inline: auto; padding-inline: var(--container-pad); }

.service-includes__headline {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--color-white-text);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.service-includes__check {
  color: var(--color-lime-dark);
  font-weight: var(--weight-bold);
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1.4;
}

.service-includes__content { display: flex; flex-direction: column; gap: 0.15rem; }
.service-includes__name { color: var(--color-white-text); font-size: var(--text-sm); font-weight: var(--weight-mid); }
.service-includes__detail { color: var(--color-white-muted); font-size: 0.72rem; }

/* Pricing */
.pricing--service {
  padding-block: var(--section-gap-sm);
  border-top: 1px solid rgba(0,0,0,0.08);
}

.pricing--service .container { max-width: var(--container-max); margin-inline: auto; padding-inline: var(--container-pad); }

.pricing__headline {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--color-white-text);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.pricing__table { width: 100%; border-collapse: collapse; margin-bottom: 1rem; }

.pricing__table th {
  text-align: left;
  padding: 0.9rem 1rem;
  background: rgba(0,0,0,0.04);
  font-family: var(--font-mono);
  font-size: var(--text-label);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.45);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.pricing__table td {
  padding: 1rem;
  font-size: var(--text-sm);
  color: var(--color-white-muted);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  vertical-align: top;
}

.pricing__table tr:last-child td { border-bottom: none; }
.pricing__table td:nth-child(2) { color: var(--color-lime-dark); font-weight: var(--weight-bold); }

.pricing__disclaimer {
  font-size: 0.72rem;
  color: rgba(0,0,0,0.35);
  margin-top: 0.75rem;
  font-style: italic;
}

/* Service FAQ — white bg, 2-col */
.service-faq {
  padding-block: var(--section-gap);
  background: var(--color-white);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.service-faq__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: flex-start;
}

.service-faq__heading {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--color-white-text);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  margin-top: 0.5rem;
}

/* FAQ accordion - white bg colors */
.faq-list { display: flex; flex-direction: column; }

.faq-item { border-top: 1px solid rgba(0,0,0,0.08); }
.faq-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.08); }

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: var(--weight-bold);
  color: var(--color-white-text);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-item__question:hover { color: var(--color-lime-dark); }

.faq-item__question .material-symbols-outlined {
  flex-shrink: 0;
  font-size: 20px;
  color: var(--color-lime-dark);
  transition: transform 0.25s ease;
}

.faq-item.open .faq-item__question { color: var(--color-lime-dark); }
.faq-item.open .faq-item__question .material-symbols-outlined { transform: rotate(180deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-item__answer { max-height: 800px; }

.faq-item__answer-inner {
  padding-bottom: 1.5rem;
  font-size: var(--text-body);
  color: var(--color-white-muted);
  line-height: 1.75;
}

/* Right column — contact form */
.service-faq__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.6rem;
  font-weight: var(--weight-black);
  color: var(--color-white-text);
  text-decoration: none;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.service-faq__phone .material-symbols-outlined { color: var(--color-lime-dark); font-size: 1.4rem; }
.service-faq__phone:hover { color: var(--color-lime-dark); }

.service-contact-form { display: flex; flex-direction: column; gap: 1rem; }

.service-contact-form__honey { display: none !important; }

.service-contact-form__field { display: flex; flex-direction: column; gap: 0.35rem; }

.service-contact-form__field label {
  font-size: 0.8rem;
  font-weight: var(--weight-bold);
  color: var(--color-white-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.service-contact-form__field input,
.service-contact-form__field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--color-white-text);
  background: #f7f7f5;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 0;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}

.service-contact-form__field input:focus,
.service-contact-form__field textarea:focus {
  border-color: var(--color-lime-dark);
}

.service-contact-form__field textarea { resize: vertical; min-height: 110px; }

.btn--full { width: 100%; justify-content: center; margin-top: 0.5rem; }

.service-contact-form__consent {
  font-size: 0.75rem;
  color: rgba(0,0,0,0.35);
  line-height: 1.5;
  margin-top: 0.25rem;
}

.service-contact-form__status {
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  font-weight: var(--weight-bold);
  border-radius: 2px;
  margin-top: 0.5rem;
}
.service-contact-form__status.success { background: #e8f5e9; color: #2e7d32; }
.service-contact-form__status.error { background: #fdecea; color: #c62828; }

.service-faq__right {
  position: sticky;
  top: 5rem;
}

@media (max-width: 860px) {
  .service-faq__inner { grid-template-columns: 1fr; gap: 3rem; }
  .service-faq__right { position: static; }
}

/* ── SERVICE CONTENT 2 (second wysiwyg block) ── */
.service-content-2 {
  padding-block: var(--section-gap);
  border-top: 1px solid rgba(0,0,0,0.08);
}

.service-content-2__headline {
  font-size: var(--text-h2);
  font-weight: var(--weight-black);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: var(--color-white-text);
  margin-bottom: 1.5rem;
}

.service-content-2__body {
  color: var(--color-white-muted);
  max-width: 75ch;
  line-height: 1.7;
}

.service-content-2__body h2,
.service-content-2__body h3 {
  color: var(--color-white-text);
  font-weight: 700;
  font-size: var(--text-h3);
  margin: 1.5rem 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.service-content-2__body p { margin-bottom: 1rem; }

.service-content-2__body ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.3rem 2rem;
}

.service-content-2__body ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: var(--color-black);
}

.service-content-2__body ul li::before {
  content: '';
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 4px;
  background: var(--color-lime);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

/* ── SERVICE STICKY (sticky image + SEO text, bottom of page) ── */
.service-sticky {
  background: var(--color-black);
  padding-block: 6rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.home-seo-sticky {
  background: var(--color-white);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.home-seo-sticky .service-sticky__heading {
  color: var(--color-white-text);
}

.home-seo-sticky .service-sticky__content {
  color: var(--color-white-muted);
}

.home-seo-sticky .service-sticky__content h3 {
  color: var(--color-lime-dark);
}

.service-sticky__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.service-sticky__heading {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: var(--weight-black);
  color: var(--color-white);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.service-sticky__content {
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  font-size: var(--text-body);
}

.service-sticky__content p { margin-bottom: 1.4rem; }
.service-sticky__content p:last-child { margin-bottom: 0; }

.service-sticky__content h3 {
  font-size: 1.05rem;
  font-weight: var(--weight-bold);
  color: var(--color-lime);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 2rem 0 0.6rem;
}

.service-sticky__content ul {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-sticky__content ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.service-sticky__content ul li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 0.55em;
  background: var(--color-lime);
  border-radius: 50%;
}

.service-sticky__image-wrap {
  position: sticky;
  top: 7rem;
}

.service-sticky__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .service-sticky__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .service-sticky__media { order: -1; }
  .service-sticky__image-wrap {
    position: relative;
    top: auto;
  }
}

/* Related services */
.related-services {
  padding-block: var(--section-gap-sm);
  background: var(--color-black);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.related-services__heading {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.related-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.related-service-link {
  background: var(--color-black);
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background var(--transition), color var(--transition);
}
.related-service-link:hover { background: #181818; color: var(--color-lime); }
.related-service-link .material-symbols-outlined { font-size: 18px; color: var(--color-lime); flex-shrink: 0; }

/* ── Responsive — service page ── */
@media (max-width: 1024px) {
  .service-page__content { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .related-services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .service-page__hero-inner { grid-template-columns: 1fr; }
  .service-page__hero-image { display: none; }
  .for-whom__grid { grid-template-columns: 1fr; }
  .service-page .process__list { grid-template-columns: repeat(3, 1fr); gap: 2rem 0; }
  .service-page .process__list::before { display: none; }
  .service-includes__list { grid-template-columns: 1fr; }
  .related-services__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .service-page .process__list { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   LOCATION PAGES
   ============================================================ */
.location-hero { background: var(--color-black); color: var(--color-white); }
.location-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); text-transform: uppercase; }

.location-services { background: var(--color-white); padding-block: var(--section-gap); }
.location-services h2 { color: var(--color-black); text-transform: uppercase; margin-bottom: 2rem; }

.location-why { background: var(--color-black); color: var(--color-white); padding-block: var(--section-gap); }
.location-coverage { background: var(--color-white); padding-block: var(--section-gap); }
.location-cta { background: var(--color-black); color: var(--color-white); }

/* ============================================================
   CONTACT PAGE FORM
   ============================================================ */
.contact-form-section {
  background: var(--section-white-bg);
  padding-block: var(--section-gap);
}

.contact-form-section h2 {
  font-size: var(--text-h2);
  color: var(--color-black);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.contact-form-section > p {
  color: rgba(0,0,0,0.55);
  margin-bottom: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 620px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-family: var(--font-mono);
  font-size: var(--text-label);
  font-weight: var(--weight-mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
}

.form-field input,
.form-field textarea,
.form-field select {
  background: var(--color-white);
  border: 1.5px solid rgba(0,0,0,0.2);
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--color-black);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-black);
}

.form-field textarea { min-height: 140px; resize: vertical; }

/* GDPR checkbox */
.form-field--checkbox { flex-direction: row; align-items: flex-start; gap: 0; }

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--text-sm);
  color: rgba(0,0,0,0.6);
  cursor: pointer;
  line-height: 1.5;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
}

.form-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid rgba(0,0,0,0.3);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  position: relative;
  margin-top: 0.1rem;
  padding: 0;
  flex-shrink: 0;
}

.form-checkbox-label input[type="checkbox"]:checked {
  background: var(--color-black);
  border-color: var(--color-black);
}

.form-checkbox-label input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  color: var(--color-lime);
  font-size: 12px;
  font-weight: var(--weight-bold);
}

.form-checkbox-label a {
  color: var(--color-black);
  text-decoration: underline;
  transition: color var(--transition);
}
.form-checkbox-label a:hover { color: var(--color-lime-dark); }

.form-success {
  display: none;
  padding: 1rem;
  background: var(--color-lime);
  color: var(--color-black);
  font-weight: var(--weight-bold);
  font-size: var(--text-sm);
}

.form-error {
  display: none;
  padding: 1rem;
  background: #ffdad6;
  color: #93000a;
  font-size: var(--text-sm);
}

/* ============================================================
   CONTACT PAGE — sidebar info cards
   ============================================================ */
.contact-page__body {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  padding-block: var(--section-gap);
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-sidebar__card {
  background: var(--color-black);
  border: 1px solid rgba(147,217,93,0.15);
  border-radius: 4px;
  padding: 2rem;
}

.contact-sidebar__card-title {
  font-family: var(--font-mono);
  font-size: var(--text-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-lime);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(147,217,93,0.2);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(147,217,93,0.04);
  border: 1px solid rgba(147,217,93,0.1);
  border-radius: 3px;
  text-decoration: none;
  color: var(--color-white);
  transition: background var(--transition), border-color var(--transition), transform 0.2s;
}

.contact-info-card:hover {
  background: rgba(147,217,93,0.1);
  border-color: rgba(147,217,93,0.35);
  transform: translateX(4px);
}

.contact-info-card--addr {
  cursor: default;
}
.contact-info-card--addr:hover {
  transform: none;
}

.contact-info-card__icon {
  font-size: 1.5rem;
  color: var(--color-lime);
  flex-shrink: 0;
  background: rgba(147,217,93,0.12);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-card__value {
  font-size: var(--text-body);
  font-weight: 500;
  line-height: 1.45;
  color: var(--color-white);
  overflow-wrap: anywhere;
  word-break: break-word;
  min-width: 0;
}

.contact-info-card__value a {
  color: inherit;
  text-decoration: none;
}

.contact-extra {
  margin-top: 1rem;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
}

.contact-hours-table {
  width: 100%;
  border-collapse: collapse;
}

.contact-hours-table tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s;
}

.contact-hours-table tr:last-child { border-bottom: none; }

.contact-hours-table tr.today {
  background: rgba(147,217,93,0.07);
  border-bottom-color: rgba(147,217,93,0.15);
}

.contact-hours-table td {
  padding: 0.6rem 0.25rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  vertical-align: middle;
}

.hours-day {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
}

.contact-hours-table tr.today .hours-day {
  color: var(--color-lime) !important;
  font-weight: 700;
}

.contact-hours-table tr.today .hours-val {
  color: var(--color-lime) !important;
  font-weight: 700;
}

.hours-val { text-align: right; }

.hours-val--closed { color: rgba(255,255,255,0.25) !important; }

@media (max-width: 860px) {
  .contact-page__body {
    grid-template-columns: 1fr;
  }
  .contact-sidebar__card {
    text-align: center;
  }
  .contact-info-card {
    flex-direction: column;
    text-align: center;
    gap: 0.6rem;
    padding: 1.25rem 1rem;
  }
  .contact-info-card:hover { transform: none; }
  .contact-info-card__icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.6rem;
  }
}

/* ── Contact form col — sticky on desktop ── */
.contact-form-col {
  position: sticky;
  top: 5rem;
  align-self: start;
}

@media (max-width: 860px) {
  .contact-form-col {
    position: static;
    align-self: auto;
  }
}

/* ── Contact map ── */
.contact-map {
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.contact-map__iframe-wrap {
  width: 100%;
  height: 100%;
}

.contact-map__iframe-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* ============================================================
   ARCHIVE USLUGI — card grid
   ============================================================ */
.sa-grid-section {
  background: var(--color-black);
  padding-block: var(--section-gap);
}

.sa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sa-card {
  display: flex;
  flex-direction: column;
  background: #111;
  border: 1px solid rgba(147,217,93,0.1);
  border-radius: 4px;
  text-decoration: none;
  color: var(--color-white);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.sa-card:hover {
  border-color: rgba(147,217,93,0.45);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(147,217,93,0.15);
}

.sa-card__icon-wrap {
  background: linear-gradient(135deg, #0f1a0a 0%, #1a2d0e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  position: relative;
  overflow: hidden;
}

.sa-card__icon-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(147,217,93,0.12) 0%, transparent 70%);
}

.sa-card__icon {
  font-size: 4rem;
  color: var(--color-lime);
  position: relative;
  z-index: 1;
  opacity: 0.9;
}

.sa-card:hover .sa-card__icon {
  opacity: 1;
  transform: scale(1.1);
  transition: transform 0.3s, opacity 0.3s;
}

.sa-card__img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.sa-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.sa-card:hover .sa-card__img img { transform: scale(1.05); }

.sa-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.85) 0%, transparent 60%);
}

.sa-card__body {
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.75rem;
}

.sa-card__title {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: var(--weight-black);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin: 0;
}

.sa-card__excerpt {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.sa-card__cta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-lime);
  margin-top: 0.5rem;
  transition: gap 0.2s;
}

.sa-card:hover .sa-card__cta { gap: 0.7rem; }
.sa-card__cta .material-symbols-outlined { font-size: 1rem; }

@media (max-width: 1024px) {
  .sa-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .sa-grid { grid-template-columns: 1fr; gap: 1rem; }
  .sa-card__icon-wrap { height: 120px; }
  .sa-card__icon { font-size: 3rem; }
}

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-page { background: var(--color-black); color: var(--color-white); }
.faq-page .faq__headline { font-size: var(--text-display); color: var(--color-white); text-transform: uppercase; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-page { background: var(--color-black); color: var(--color-white); }
.about-page h1, .about-page h2 { color: var(--color-white); text-transform: uppercase; }
.about-page p { color: rgba(255,255,255,0.65); }

/* ── ABOUT STORY ── */
.about-story {
  background: var(--color-black);
  padding-block: var(--section-gap);
}

.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.about-story__headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--weight-black);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--color-white);
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.about-story__headline::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 3px;
  background: var(--color-lime);
  margin-top: 1rem;
}

.about-story__content {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
}

.about-story__content p {
  margin-bottom: 1.25rem;
}

.about-story__content p:last-child {
  margin-bottom: 0;
}

.about-story__content strong {
  color: var(--color-white);
  font-weight: var(--weight-bold);
}

@media (max-width: 900px) {
  .about-story__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-story__headline {
    position: static;
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }
}

/* ── ABOUT CONTACT (dane + formularz na stronie O nas) ── */
.about-contact {
  padding-block: var(--section-gap);
  background: var(--color-white);
}

.about-contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-contact__headline {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: var(--weight-black);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: var(--color-white-text);
  margin: 0.5rem 0 1rem;
  line-height: 1.05;
}

.about-contact__sub {
  font-size: var(--text-body);
  color: rgba(0,0,0,0.55);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.about-contact__data {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 2rem;
}

.about-contact__form .contact-form-section {
  background: transparent;
}

.about-contact__map {
  margin-top: 1.5rem;
  height: 220px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1);
}

.about-contact__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.about-contact .contact-info-card {
  color: var(--color-black);
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.1);
}
.about-contact .contact-info-card:hover {
  background: rgba(147,217,93,0.1);
  border-color: rgba(147,217,93,0.4);
}
.about-contact .contact-info-card__value {
  color: var(--color-black);
}
.about-contact .contact-info-card__value a {
  color: var(--color-black);
}

@media (max-width: 900px) {
  .about-contact__inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page { background: var(--color-white); color: var(--color-black); }
.legal-content {
  padding-block: var(--section-gap);
  max-width: 72ch;
}
.legal-content h2 { font-size: var(--text-h2); color: var(--color-black); margin-bottom: 1rem; margin-top: 2rem; }
.legal-content p { color: rgba(0,0,0,0.65); margin-bottom: 1rem; }
.legal-content ul { display: flex; flex-direction: column; gap: 0.5rem; }
.legal-content ul li { font-size: var(--text-body); color: rgba(0,0,0,0.65); padding-left: 1.25rem; position: relative; }
.legal-content ul li::before { content: '-'; position: absolute; left: 0; color: var(--color-lime-dark); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-black);
  border-top: 2px solid var(--color-lime);
  z-index: 9000;
  padding: 1.25rem var(--container-pad);
}

.cookie-banner__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  max-width: 60ch;
}

.cookie-banner__text a { color: var(--color-lime); }

.cookie-banner__actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-gap: 5rem; }

  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .why-us__inner { grid-template-columns: 1fr; gap: 3rem; }
  .why-us__image img { height: 340px; }
  .why-us__badge { bottom: 1rem; right: 1rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .service-page__content { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}

@media (max-width: 768px) {
  :root { --section-gap: 4rem; --nav-height: 64px; }

  #nav-menu, .nav__menu, .nav__cta { display: none !important; }
  .nav__toggle { display: flex; }

  .hero--home { align-items: flex-start; }
  .hero--home .hero__inner { padding-top: calc(var(--nav-height) + 4rem); }
  .hero--home .hero__headline { font-size: clamp(2.5rem, 10vw, 4rem); }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item { border-left: none; border-bottom: 1px solid rgba(0,0,0,0.1); }

  .services__grid { grid-template-columns: 1fr; }
  .services__top { flex-direction: column; align-items: flex-start; }

  .process__grid { grid-template-columns: 1fr; }
  .process__step { border-right: none; }

  .contact-cta__box { flex-direction: column; align-items: flex-start; padding: 2.5rem 2rem; }

  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .footer__col { align-items: center; }
  .footer__col-heading { text-align: center; }
  .footer__links { text-align: center; }
  .footer__contact-item { justify-content: center; }
  .footer__bottom-inner { flex-direction: column; align-items: center; gap: 0.75rem; }
  .footer__bottom-right { flex-direction: column; align-items: center; gap: 0.75rem; }
  .footer__legal-links { justify-content: center; }
  .footer__copy { text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .service-page__hero-inner { grid-template-columns: 1fr; }
  .service-process__steps { grid-template-columns: 1fr 1fr; }
  .service-for-whom__grid { grid-template-columns: 1fr; }
  .service-includes__list { grid-template-columns: 1fr; }
  .service-related__grid { grid-template-columns: 1fr; }
  .about-snippet__inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero--home .hero__headline { font-size: clamp(2rem, 12vw, 3rem); }
  .hero--home .hero__actions { flex-direction: column; }
  .hero--home .hero__actions .btn { width: 100%; min-width: unset; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .service-process__steps { grid-template-columns: 1fr; }
}
