/* BODZIO SERWIS - dark automotive one-page */

:root {
  --bg: #070709;
  --bg-elevated: #0e0e12;
  --surface: #12121a;
  --surface-2: #1a1a24;
  --text: #f4f4f5;
  --text-muted: #a1a1aa;
  --accent: #e30613;
  --accent-hover: #ff1a28;
  --accent-soft: rgba(227, 6, 19, 0.15);
  --border: rgba(255, 255, 255, 0.08);
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --header-h: 72px;
  --font: "Montserrat", system-ui, -apple-system, sans-serif;
  --transition: 0.22s ease;
  --texture: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM27 41.34l-11.98 6.86V49h2v-8.16L27 35.18v-2.3zm0-18.5L15.02 8.84V0h2v6.35L27 12.69v2.3zm0 12.69l-11.98 7.5V28h2v6.85L27 35.81v-2.3z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  background-image: var(--texture);
  min-height: 100vh;
}

body.menu-open {
  overflow: hidden;
}

body.has-cookie-banner {
  padding-bottom: 120px;
}

@media (min-width: 640px) {
  body.has-cookie-banner {
    padding-bottom: 88px;
  }
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: 12px;
}

.text-accent {
  color: var(--accent);
}

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(7, 7, 9, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.55);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.65rem 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  text-decoration: none;
}

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

.brand--logo {
  gap: 0;
  flex-shrink: 0;
}

.brand__img {
  display: block;
  width: auto;
  height: auto;
  max-height: 44px;
  max-width: min(220px, 46vw);
  object-fit: contain;
}

@media (min-width: 480px) {
  .brand__img {
    max-height: 48px;
    max-width: min(260px, 40vw);
  }
}

.brand__img--footer {
  max-height: 52px;
  max-width: min(280px, 100%);
}

@media (min-width: 640px) {
  .brand__img--footer {
    max-height: 56px;
  }
}

.brand__mark {
  display: flex;
  color: var(--text);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand__name {
  font-size: 1.05rem;
}

.brand__tag {
  font-size: 0.78rem;
  color: var(--accent);
}

.brand--footer .brand__name {
  font-size: 1.25rem;
}

.nav--desktop {
  display: none;
  align-items: center;
  gap: 0.35rem;
}

@media (min-width: 1024px) {
  .nav--desktop {
    display: flex;
  }
}

.nav__link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav__link--active {
  color: var(--accent);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  color: var(--text);
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition),
    transform 0.12s ease;
}

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

.btn--accent {
  background: linear-gradient(180deg, var(--accent-hover), var(--accent));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(227, 6, 19, 0.35);
}

.btn--accent:hover {
  filter: brightness(1.06);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: #fff;
}

.btn--header-tel {
  padding: 0.5rem 0.85rem;
  font-size: 0.8rem;
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}

.btn--header-tel:hover {
  color: #fff;
  border-color: var(--accent);
}

.btn__label-tablet {
  display: none;
}

.btn__label-desktop {
  display: none;
}

@media (min-width: 768px) {
  .btn__label-tablet {
    display: inline;
  }
}


.btn--lg {
  padding: 0.85rem 1.35rem;
  font-size: 0.95rem;
}

.btn--xl {
  padding: 1rem 1.5rem;
  font-size: 1.15rem;
}

.btn--block {
  width: 100%;
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 850;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer .nav--mobile {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  margin: 0;
  padding: calc(var(--header-h) + 1rem) 1.25rem 1.5rem;
  background: var(--bg-elevated);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  box-shadow: var(--shadow);
}

.mobile-drawer.is-open .nav--mobile {
  transform: translateX(0);
}

.nav--mobile .nav__link {
  padding: 0.75rem 0.5rem;
  font-size: 0.95rem;
}

.nav--mobile .btn {
  margin-top: 0.75rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: grid;
  align-items: end;
  padding-bottom: 3rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.05);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 9, 0.55) 0%, rgba(7, 7, 9, 0.88) 55%, #070709 100%);
}

/* Serwis klimatyzacji: ten sam obraz co wcześniej po prawej - kadrowanie pod układ poziomy */
.hero--ac-service .hero__bg-img {
  object-position: 72% center;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 4rem;
}

.hero__eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.hero__title {
  font-size: clamp(1.85rem, 5vw, 3.1rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero__lead {
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  color: var(--text-muted);
  max-width: none;
  margin: 0 0 1.75rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero__badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--surface);
  border-block: 1px solid var(--border);
  padding: 1.75rem 0;
}

.trust-bar__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .trust-bar__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-bar__item {
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: grid;
  gap: 0.25rem;
}

.trust-bar__item strong {
  font-size: 0.95rem;
}

.trust-bar__item span:last-child {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.trust-bar__icon {
  font-size: 1.25rem;
}

/* ---------- Sections ---------- */
.section {
  padding: 4rem 0;
}

.section--surface {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.section__head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section__title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin: 0 0 0.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section__subtitle {
  margin: 0 auto;
  max-width: none;
  width: 100%;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.section__lead {
  font-size: 1.05rem;
  color: var(--text-muted);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Cards / services ---------- */
.cards--services {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cards--services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards--services {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card--service {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition:
    border-color 0.32s var(--transition),
    box-shadow 0.32s var(--transition),
    transform 0.32s var(--transition),
    background 0.32s var(--transition);
}

.card--service:hover {
  border-color: rgba(227, 6, 19, 0.42);
  background: linear-gradient(158deg, rgba(26, 26, 36, 1), rgba(22, 22, 30, 1));
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(227, 6, 19, 0.28),
    0 0 32px rgba(227, 6, 19, 0.14);
  transform: translateY(-5px);
}

.card--service:hover .card__icon {
  background: rgba(227, 6, 19, 0.22);
}

@media (prefers-reduced-motion: reduce) {
  .card--service {
    transition: border-color 0.28s var(--transition), box-shadow 0.28s var(--transition),
      background 0.28s var(--transition);
  }

  .card--service:hover {
    transform: none;
  }
}

.card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 0.85rem;
  transition: background 0.32s var(--transition);
}

.card__icon-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.card__title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
}

.card__text {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ---------- AC section ---------- */
.section--ac {
  position: relative;
  padding: 0;
}

.section--ac__bg {
  position: absolute;
  inset: 0;
  background-image: url("/img/ac-service.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

@media (prefers-reduced-motion: reduce) {
  .section--ac__bg {
    background-attachment: scroll;
  }
}

.section--ac__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(7, 7, 9, 0.94) 35%, rgba(7, 7, 9, 0.55) 100%);
}

.section--ac__grid {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
  display: grid;
  align-items: center;
}

@media (min-width: 900px) {
  .section--ac__grid {
    min-height: 520px;
  }
}

.section--ac__copy {
  max-width: 640px;
}

.section--ac .section__title {
  text-transform: none;
  letter-spacing: -0.02em;
}

.checklist {
  margin: 1rem 0 1.25rem;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.checklist li {
  margin-bottom: 0.35rem;
}

.ac-note {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ---------- Serwis klimatyzacji - blok 3 kart ---------- */
.ac-service-block {
  position: relative;
  padding: clamp(3rem, 7vw, 4.5rem) 0 clamp(3.25rem, 6vw, 4.5rem);
  border-block: 1px solid var(--border);
  background: linear-gradient(165deg, var(--bg) 0%, #060608 40%, var(--bg) 100%);
  overflow: hidden;
}

.ac-service-block__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% 35%, rgba(227, 6, 19, 0.07) 0%, transparent 55%),
    var(--texture);
  opacity: 0.9;
}

.ac-service-block__container {
  position: relative;
  z-index: 1;
}

.ac-service-block__head {
  max-width: 52rem;
  margin-bottom: 0.25rem;
}

.ac-service-block__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.ac-service-block__title {
  margin: 0 0 1.1rem;
  font-size: clamp(1.65rem, 3.6vw, 2.2rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text);
}

.ac-service-block__lead {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.ac-service-block__grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (min-width: 900px) {
  .ac-service-block__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
  }
}

.ac-detail-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.5rem 1.35rem 1.65rem;
  border-radius: 22px;
  background: rgba(14, 14, 20, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.ac-detail-card:hover {
  transform: translateY(-6px);
  border-color: rgba(227, 6, 19, 0.45);
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(227, 6, 19, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/*
 * Środkowa karta: ciemnoburgundowe tło (jak referencyjne tło „ikony” ze screenu),
 * czarne napisy, białe fajki; sama ikona - tło jak duże karty boczne (ciemny panel).
 */
.ac-detail-card--featured {
  background: linear-gradient(165deg, #361418 0%, #2b0507 42%, #1c0305 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: none;
}

.ac-detail-card--featured:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.ac-detail-card--featured .ac-detail-card__title {
  color: #fff;
}

.ac-detail-card--featured .ac-detail-card__list li {
  color: rgba(255, 255, 255, 0.88);
}

.ac-detail-card--featured .ac-detail-card__list li::before {
  border-right-color: #fff;
  border-bottom-color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .ac-detail-card,
  .ac-detail-card:hover,
  .ac-detail-card--featured:hover {
    transition: none;
    transform: none;
  }
}

.ac-detail-card__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  margin-bottom: 1.05rem;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
}

.ac-detail-card--featured .ac-detail-card__icon {
  background: rgba(14, 14, 20, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--accent);
}

.ac-detail-card__title {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.ac-detail-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ac-detail-card__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.55rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.ac-detail-card__list li:last-child {
  margin-bottom: 0;
}

.ac-detail-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.42rem;
  height: 0.65rem;
  border-right: 2.5px solid var(--accent);
  border-bottom: 2.5px solid var(--accent);
  transform: rotate(45deg);
  border-radius: 0 0 1px 0;
}

.ac-service-block__note {
  margin: 2rem 0 0;
  padding: 1.15rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(227, 6, 19, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: center;
}

.ac-service-block__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2rem;
}

@media (max-width: 599px) {
  .ac-service-block__cta {
    flex-direction: column;
  }

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

/* ---------- Vehicles ---------- */
.vehicle-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .vehicle-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vehicle-tile {
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  text-align: center;
}

.vehicle-tile--wide {
  grid-column: 1 / -1;
}

@media (min-width: 900px) {
  .vehicle-tile--wide {
    grid-column: span 3;
  }
}

.vehicle-tile__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.vehicle-tile h3 {
  margin: 0;
  font-size: 1rem;
}

/* ---------- Obszar działania (strona główna) ---------- */
.section--area-home .area-showcase {
  max-width: 52rem;
  margin-inline: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, var(--surface-2) 0%, var(--surface) 55%, var(--bg-elevated) 100%);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.area-showcase__visual {
  position: relative;
  height: clamp(140px, 22vw, 200px);
  background:
    radial-gradient(ellipse 85% 120% at 50% 115%, rgba(227, 6, 19, 0.09), transparent 55%),
    var(--surface);
  border-bottom: 1px solid var(--border);
}

.area-showcase__grid {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.35) 100%);
}

.area-showcase__pulse {
  position: absolute;
  top: 46%;
  left: 51%;
  width: 120px;
  height: 120px;
  margin: -60px 0 0 -60px;
  border-radius: 50%;
  border: 1px solid rgba(227, 6, 19, 0.15);
  background: radial-gradient(circle, rgba(227, 6, 19, 0.12) 0%, transparent 68%);
  pointer-events: none;
}

.area-showcase__pin {
  position: absolute;
  top: 46%;
  left: 51%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow:
    0 0 0 10px rgba(227, 6, 19, 0.22),
    0 10px 28px rgba(0, 0, 0, 0.45);
}

.area-showcase__towns.pill-list {
  justify-content: center;
  margin: 0;
  padding: 1.35rem 1.35rem 0.85rem;
  gap: 0.5rem;
}

.area-showcase__towns.pill-list li {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
}

.area-showcase__note {
  margin: 0;
  padding: 0 1.5rem 1.45rem;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pill-list li {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.area-footnote {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ---------- Why ---------- */
.section--why {
  background: radial-gradient(120% 80% at 50% 0%, rgba(227, 6, 19, 0.12), transparent 55%), var(--bg);
  border-block: 1px solid var(--border);
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
  max-width: 800px;
  margin-inline: auto;
}

.why-list li {
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--accent);
  background: var(--surface);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  border: 1px solid var(--border);
  border-left-width: 3px;
}

/* ---------- O firmie - grupy docelowe (siatka ośmiokątów) ---------- */
.audience-cross {
  overflow: hidden;
}

.audience-cross .section__title {
  text-align: center;
}

.audience-cross__heading {
  margin-bottom: 0.6rem;
}

.audience-cross__intro {
  margin: 0 auto;
  max-width: 36rem;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.audience-hex-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 2.5rem;
  margin-top: 2.25rem;
  margin-inline: auto;
  max-width: 100%;
  width: 100%;
  padding: 0.5rem 0;
}

.audience-hex {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}

.audience-hex__shell {
  width: min(13.35rem, 82vw);
  position: relative;
  transform-origin: 50% 50%;
  transition: transform 0.35s var(--transition), filter 0.35s var(--transition);
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.55));
}

.audience-hex:hover .audience-hex__shell {
  transform: translateY(-6px);
  filter: drop-shadow(0 20px 44px rgba(0, 0, 0, 0.62));
}

@media (prefers-reduced-motion: reduce) {
  .audience-hex:hover .audience-hex__shell {
    transform: none;
  }
}

.audience-hex__ring {
  width: 100%;
  aspect-ratio: 1;
  box-sizing: border-box;
  padding: 4px;
  clip-path: polygon(
    28% 0%,
    72% 0%,
    100% 28%,
    100% 72%,
    72% 100%,
    28% 100%,
    0% 72%,
    0% 28%
  );
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.28),
    rgba(227, 6, 19, 0.42) 55%,
    rgba(255, 255, 255, 0.12)
  );
}

.audience-hex__clip {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
  padding: clamp(0.45rem, 7.5%, 0.7rem);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(
    28% 0%,
    72% 0%,
    100% 28%,
    100% 72%,
    72% 100%,
    28% 100%,
    0% 72%,
    0% 28%
  );
  background: var(--surface-2);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.35);
}

.audience-hex__clip::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(165deg, transparent 40%, rgba(7, 7, 9, 0.45) 100%);
  opacity: 0.85;
}

.audience-hex__clip img {
  flex: 1;
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1);
  transition: transform 0.45s var(--transition);
}

.audience-hex:hover .audience-hex__clip img {
  transform: scale(1.05);
}

/* Wyższe / szersze pojazdy - dodatkowo lekko w środku, żeby nie dotykały krawędzi */
.audience-hex--fit-img .audience-hex__clip img {
  transform: scale(0.92);
}

.audience-hex--fit-img:hover .audience-hex__clip img {
  transform: scale(0.96);
}

@media (prefers-reduced-motion: reduce) {
  .audience-hex:hover .audience-hex__clip img {
    transform: scale(1);
  }

  .audience-hex--fit-img:hover .audience-hex__clip img {
    transform: scale(0.92);
  }
}

.audience-hex__label {
  margin: 1.15rem 0 0;
  padding: 0 0.35rem;
  max-width: 15rem;
  font-size: clamp(0.9rem, 2.4vw, 1.02rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-align: center;
  color: #fff;
}

.audience-hex[data-reveal]:nth-child(1) {
  transition-delay: 0s;
}
.audience-hex[data-reveal]:nth-child(2) {
  transition-delay: 0.06s;
}
.audience-hex[data-reveal]:nth-child(3) {
  transition-delay: 0.12s;
}
.audience-hex[data-reveal]:nth-child(4) {
  transition-delay: 0.18s;
}
.audience-hex[data-reveal]:nth-child(5) {
  transition-delay: 0.24s;
}

.audience-cross__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2.75rem;
}

.audience-cross__cta[data-reveal] {
  transition-delay: 0.32s;
}

@media (min-width: 640px) {
  .audience-hex-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(1.25rem, 3.5vw, 2.5rem);
    row-gap: clamp(1.15rem, 2.5vw, 1.65rem);
    max-width: 100%;
    width: 100%;
    align-items: start;
  }

  .audience-hex:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .audience-hex__shell {
    width: min(13.6rem, 36vw);
  }
}

/* Desktop: krzyż jak wyżej - szerokość jak reszta treści (.container), większy rozstaw w poziomie */
@media (min-width: 1000px) {
  .audience-hex-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
    width: 100%;
    column-gap: clamp(1.75rem, 6vw, 4rem);
    row-gap: 0.55rem;
    margin-top: 1.5rem;
    padding: 0.2rem 0 0.4rem;
    justify-items: center;
  }

  .audience-hex:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .audience-hex__shell {
    width: min(10.35rem, 100%);
  }

  .audience-hex__label {
    margin-top: 0.5rem;
    font-size: clamp(0.84rem, 1.05vw, 0.95rem);
    max-width: 12rem;
  }

  .audience-cross__cta {
    margin-top: 1.75rem;
  }
}

/* ---------- Gallery ---------- */
.gallery {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 700px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery__item {
  all: unset;
  cursor: zoom-in;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  display: block;
}

.gallery__item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery__item:hover .gallery__img {
  transform: scale(1.04);
}

/* ---------- Contact ---------- */
.section--contact {
  background: linear-gradient(180deg, var(--surface), var(--bg));
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }
}

.contact-priority {
  color: var(--text-muted);
}

.contact-form-wrap {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}

.contact-form .form-row {
  margin-bottom: 1rem;
}

.contact-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.optional {
  font-weight: 500;
  color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font: inherit;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  border-color: var(--accent);
  outline: none;
}

.form-row--hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row--check {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.form-row--check input {
  width: auto;
  margin-top: 0.25rem;
  min-width: 1.15rem;
  min-height: 1.15rem;
}

.form-row--check label {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-form__feedback {
  margin: 0.75rem 0 1rem;
  font-size: 0.9rem;
}

.contact-form__feedback--ok {
  color: #86efac;
}

.contact-form__feedback--error {
  color: #fca5a5;
}

.legal-block {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #030304;
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1.1fr 1fr 1fr 1fr;
  }
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.88rem;
}

.site-footer__nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
}

.site-footer__nav a:hover {
  color: var(--accent);
}

site-header,
site-footer,
site-cookie-banner {
  display: block;
}

.site-footer__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 36ch;
}

.site-footer__h {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 0.75rem;
  color: var(--text-muted);
}

.site-footer__bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 950;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(22, 22, 30, 0.98) 0%, rgba(7, 7, 9, 0.99) 100%);
  border-top: 1px solid rgba(227, 6, 19, 0.35);
  box-shadow:
    0 -8px 36px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  backdrop-filter: blur(12px);
}

.cookie-banner__inner {
  max-width: 1120px;
  margin: 0 auto;
  width: min(1120px, 100%);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
  }
}

.cookie-banner__copy {
  flex: 1;
  min-width: 0;
}

.cookie-banner__text {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 72ch;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.cookie-banner__actions .btn--ghost {
  border-color: rgba(227, 6, 19, 0.35);
  color: var(--text);
}

.cookie-banner__actions .btn--ghost:hover {
  border-color: rgba(227, 6, 19, 0.55);
  color: var(--accent-hover);
  background: rgba(227, 6, 19, 0.08);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  max-width: min(1100px, 100% - 2rem);
  margin: 4vh auto;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 2.5rem 1rem 1rem;
}

.lightbox__figure {
  margin: 0;
}

.lightbox__figure img {
  max-height: min(78vh, 820px);
  margin: 0 auto;
  border-radius: 8px;
}

.lightbox__caption {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.lightbox__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 10px;
  background: var(--surface-2);
  color: var(--text);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 1.75rem;
  cursor: pointer;
}

.lightbox__nav--prev {
  left: 0.5rem;
}

.lightbox__nav--next {
  right: 0.5rem;
}

/* ---------- Legal / policy page ---------- */
.legal-page {
  background: var(--bg);
}

.site-header--simple .site-header__inner {
  max-width: 900px;
}

.legal-main {
  padding: 2.5rem 1rem 4rem;
}

.legal-main h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-top: 0;
  font-weight: 800;
}

.legal-main h2 {
  font-size: 1.15rem;
  margin-top: 2rem;
  font-weight: 700;
  color: var(--text);
}

.legal-main p,
.legal-main li {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal-main ul {
  padding-left: 1.2rem;
}

.legal-meta {
  font-size: 0.9rem;
}

/* ---------- Wewnętrzne podstrony ---------- */
.page-hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: linear-gradient(165deg, var(--surface) 0%, var(--bg) 55%);
  border-bottom: none;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.page-hero .hero__eyebrow {
  margin-bottom: 0.5rem;
}

.page-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 1rem;
  text-wrap: pretty;
  hyphens: manual;
  -webkit-hyphens: manual;
}

.page-hero__lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: none;
  margin: 0;
}

/* Podstrony: nagłówki sekcji jak zwykła typografia - bez CAPS, które „tną” polski tekst */
body.inner-page .section__title {
  text-transform: none;
  letter-spacing: 0.02em;
  line-height: 1.28;
  text-wrap: pretty;
}

/* Hero z grafiką - treść i obraz obok siebie na większych ekranach */
.page-hero--split .page-hero__split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .page-hero--split .page-hero__split {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 38%);
    gap: clamp(1.5rem, 4vw, 3rem);
  }

  .page-hero__visual {
    margin: 0;
  }

  .page-hero__visual img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    object-fit: cover;
    max-height: min(420px, 55vh);
  }
}

@media (max-width: 899px) {
  .page-hero__visual {
    max-width: 400px;
    margin-inline: auto;
  }
}

.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}

.process-steps li {
  position: relative;
  padding: 0.85rem 0 0.85rem 3rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.process-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-band {
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
}

.cta-band__title {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.cta-band__text {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
}

.cta-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
}

.cta-card p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}
