/* =============================================
   EliteMotion — Global Styles
   Palette: #000 | #fff | #b7a88e (gold-brown)
   ============================================= */

/* Fonty ładowane przez <link> w HTML — szybciej niż @import */

/* ─── BREADCRUMBS (strony usługowe) ─────────── */
.page-breadcrumbs {
  position: relative;
  z-index: 2;
  margin-bottom: 1.2rem;
}
.page-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0; margin: 0;
}
.car-hero-content .page-breadcrumbs ol { justify-content: flex-start; }
.page-breadcrumbs li {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.page-breadcrumbs li a {
  color: rgba(255,255,255,.5);
  transition: var(--transition);
  text-decoration: none;
}
.page-breadcrumbs li a:hover { color: var(--gold); }
.page-breadcrumbs li:not(:last-child)::after {
  content: '/';
  color: rgba(255,255,255,.2);
}

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

:root {
  --gold:    #b7a88e;
  --gold-lt: #d4c8b4;
  --gold-dk: #8a7d67;
  --black:   #0a0a0a;
  --dark:    #111111;
  --dark2:   #1a1a1a;
  --grey:    #2a2a2a;
  --mid:     #555555;
  --light:   #f5f3f0;
  --white:   #ffffff;
  --ff-head: 'Outfit', sans-serif;
  --ff-body: 'Montserrat', sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}

/* Przywróć kliknięcia tam gdzie są potrzebne */
a img,
.g-item img,
a.fleet-card-link img,
.fleet-full-card img,
.model-card img { pointer-events: none; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── SCROLLBAR ─────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dk); border-radius: 3px; }

/* ─── SELECTION ─────────────────────────────── */
::selection { background: var(--gold); color: var(--black); }

/* ─── TYPOGRAPHY ────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--ff-head);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.6rem); font-weight: 400; }
h3 { font-size: clamp(1rem, 2vw, 1.4rem); font-weight: 500; }

.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.section-title em,
.page-header h1 em,
h1 em {
  font-style: normal;
  font-weight: 500;
  color: var(--gold);
}

/* ─── BUTTONS ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(183,168,142,0.35); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }

.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover { background: var(--gold-lt); transform: translateY(-2px); }

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ─── DIVIDER ───────────────────────────────── */
.gold-line {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.gold-line.center { margin: 1.5rem auto; }

/* ─── NAVIGATION ────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 1.6rem 0;
}

#navbar.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.6);
}

.nav-inner {
  width: 100%;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 52px;
  transition: var(--transition);
}
#navbar.scrolled .nav-logo img { height: 44px; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.8rem;
  flex: 1;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-phone {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.hamburger span {
  width: 26px; height: 1.5px;
  background: var(--white);
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: flex;
  position: fixed;
  top: var(--mobile-menu-top, 80px);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(16px);
  z-index: 998;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding-top: 1rem;
  padding-bottom: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  border-bottom: 1px solid rgba(183,168,142,0.15);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.mobile-menu a {
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mob-phone {
  font-size: 0.82rem;
  color: var(--gold);
  font-family: var(--ff-body);
  margin-top: 0;
  border-bottom: none;
  letter-spacing: 0.12em;
}
body.menu-open {
  overflow: hidden;
}
#navbar.menu-open {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.6);
}

/* ─── SECTIONS ──────────────────────────────── */
section { position: relative; }

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-pad { padding: 6rem 0; }
.section-pad-lg { padding: 8rem 0; }

/* ─── HERO ──────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-panel,
.hero-video::-webkit-media-controls-play-button,
.hero-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.6) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin-top: 12vh;
}

.hero-content .section-label { color: var(--gold-lt); }

.hero-content h1 {
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 1.8rem;
  text-transform: none;
}

.hero-content h1 em {
  font-style: normal;
  color: var(--gold);
  font-weight: 300;
  letter-spacing: 0.03em;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

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

.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}
@media (max-width: 768px) {
  .hero-scroll { display: none; }
}

/* ─── SERVICE CARDS ─────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gold-dk);
  position: relative;
  z-index: 1;
  box-shadow: 0 -1px 0 rgba(183,168,142,0.15), 0 1px 0 rgba(183,168,142,0.15);
}

.service-card {
  background: var(--dark);
  padding: 3rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.service-card:hover::before { width: 100%; }
.service-card:hover { background: var(--dark2); }

.service-icon {
  width: 52px; height: 52px;
  border: 1px solid var(--gold-dk);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.service-icon svg { width: 22px; height: 22px; }

.service-card h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.service-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

/* ─── FLEET PREVIEW ─────────────────────────── */
.fleet-section {
  background-color: #0b0b0b;
  /* Dot grid + 3-point studio lighting */
  background-image:
    radial-gradient(rgba(183,168,142,0.09) 1px, transparent 1px),
    radial-gradient(ellipse at 50% -8%,  rgba(183,168,142,0.22) 0%, transparent 52%),
    radial-gradient(ellipse at 8%  95%,  rgba(183,168,142,0.07) 0%, transparent 38%),
    radial-gradient(ellipse at 92% 95%,  rgba(183,168,142,0.07) 0%, transparent 38%);
  background-size: 42px 42px, 100% 100%, 100% 100%, 100% 100%;
  position: relative;
  overflow: hidden;
}

/* Reflektor górny – wzmocniona elipsa */
.fleet-section::before {
  content: '';
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 90%;
  background: radial-gradient(ellipse at 50% 10%,
    rgba(183,168,142,0.13) 0%,
    rgba(183,168,142,0.04) 35%,
    transparent 65%);
  pointer-events: none;
  z-index: 0;
  filter: blur(2px);
}

/* Smugi ukośne – subtelne studio rays */
.fleet-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 90px,
      rgba(183,168,142,0.018) 90px,
      rgba(183,168,142,0.018) 91px
    );
  pointer-events: none;
  z-index: 0;
}

.fleet-section .container { position: relative; z-index: 1; }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 3rem;
  border: 1px solid rgba(183,168,142,0.12);
}

.fleet-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: default;
}

.fleet-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  background: #1c1c1c;
}
.fleet-card:hover img { transform: scale(1.06); }

.fleet-card > .fleet-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.45) 45%, transparent 75%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: var(--transition);
}

.fleet-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}
.fleet-card .fleet-tag {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.fleet-card p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.fleet-card:hover p { max-height: 100px; opacity: 1; }

/* ─── FLEET CTA ─────────────────────────────── */
.fleet-cta {
  position: relative;
  text-align: center;
  margin-top: 4rem;
  padding-top: 3rem;
}

.fleet-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold-dk));
}

.fleet-cta::after {
  content: '';
  position: absolute;
  top: 39px; left: 50%;
  transform: translateX(-50%);
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

/* ─── TRUST STRIP ───────────────────────────── */
.trust-section {
  background:
    radial-gradient(ellipse at 50% 20%, rgba(183,168,142,0.1) 0%, transparent 55%),
    linear-gradient(180deg, #121212 0%, #0d0d0d 100%);
  border-top: 1px solid rgba(183,168,142,0.14);
  border-bottom: 1px solid rgba(183,168,142,0.14);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2.4rem;
}

.trust-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(183,168,142,0.2);
  padding: 1.4rem 1.2rem;
}

.trust-card h3 {
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.trust-card p {
  font-size: 0.78rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.66);
}

/* ─── FLEET COMPARISON ──────────────────────── */
.fleet-compare-section {
  background: var(--dark);
  border-top: 1px solid rgba(183,168,142,0.12);
}

.fleet-compare-wrap {
  border: 1px solid rgba(183,168,142,0.18);
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
  margin-top: 2.2rem;
}

.fleet-compare-scroll {
  overflow-x: auto;
}

.fleet-compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.fleet-compare-table th,
.fleet-compare-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(183,168,142,0.12);
  text-align: left;
}

.fleet-compare-table th {
  background: rgba(183,168,142,0.1);
  color: var(--gold);
  font-size: 0.66rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  white-space: nowrap;
}

.fleet-compare-table td {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.76);
  line-height: 1.6;
}

.fleet-compare-table td strong {
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.fleet-compare-table tr:last-child td { border-bottom: none; }

.fleet-compare-note {
  margin-top: 1.2rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.8;
}

/* ─── STATS ─────────────────────────────────── */
.stats-section {
  background: var(--gold);
  padding: 5rem 0 4.5rem;
  position: relative;
  clip-path: polygon(0 5%, 100% 0%, 100% 100%, 0 100%);
  margin-top: -5px;
}

.stats-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.08) 0%, transparent 50%, rgba(0,0,0,0.05) 100%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h2,
.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--black);
  line-height: 1;
  margin-bottom: 0.4rem;
  font-family: var(--ff-head);
}

.stat-item p {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark2);
}

/* ─── TESTIMONIALS ──────────────────────────── */
.testimonials {
  background-color: #090909;
  /* Ukośne smugi światła + gradient od centrum */
  background-image:
    repeating-linear-gradient(
      -50deg,
      transparent,
      transparent 100px,
      rgba(183,168,142,0.022) 100px,
      rgba(183,168,142,0.022) 101px
    ),
    radial-gradient(ellipse at 50% 45%, rgba(183,168,142,0.10) 0%, transparent 58%),
    radial-gradient(ellipse at 0%  0%,  rgba(183,168,142,0.05) 0%, transparent 35%),
    radial-gradient(ellipse at 100% 100%, rgba(183,168,142,0.04) 0%, transparent 30%);
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--grey);
  padding: 2.5rem;
  position: relative;
  border-top: 2px solid var(--gold);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.5); }

.quote-mark {
  font-family: var(--ff-head);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 1rem;
  display: block;
}

.testimonial-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 1rem;
  color: var(--black);
  flex-shrink: 0;
}

.author-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
}
.author-role {
  font-size: 0.68rem;
  color: var(--gold);
  margin-top: 2px;
  letter-spacing: 0.1em;
}

/* ─── CTA PHOTO ONLY ────────────────────────── */
.cta-photo-only {
  width: 100%;
  line-height: 0;
  position: relative;
}
/* Złota linia przejścia zdjęcie → CTA */
.cta-photo-only::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(183,168,142,0.40) 30%,
    rgba(183,168,142,0.55) 50%,
    rgba(183,168,142,0.40) 70%,
    transparent 100%);
}

.cta-photo-only img {
  width: 100%;
  height: 55vh;
  min-height: 260px;
  max-height: 520px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

@media (max-width: 768px) {
  .cta-photo-only img {
    height: 40vw;
    min-height: 180px;
    max-height: 320px;
  }
}

/* ─── CTA TEXT SECTION ──────────────────────── */
.cta-text-section {
  background-color: #070707;
  background-image:
    /* Centralny spotlight z góry */
    radial-gradient(ellipse at 50% -5%,  rgba(183,168,142,0.20) 0%, transparent 55%),
    /* Miękki fill od dołu */
    radial-gradient(ellipse at 50% 110%, rgba(183,168,142,0.08) 0%, transparent 45%),
    /* Lewy i prawy cień brzegowy */
    radial-gradient(ellipse at 0%   50%, rgba(0,0,0,0.55) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(0,0,0,0.55) 0%, transparent 50%);
  text-align: center;
}

.cta-text-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-text-desc {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-top: 1.5rem;
}

/* ─── ABOUT PAGE ────────────────────────────── */
.about-hero {
  height: 50vh;
  min-height: 380px;
  background: var(--dark);
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.8));
}

.about-hero img.page-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.page-header { position: relative; z-index: 1; text-align: center; }

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

.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.about-image-wrap::after {
  content: '';
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 60%; height: 60%;
  border: 1px solid var(--gold-dk);
  z-index: -1;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--dark2);
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.value-card:hover { border-bottom-color: var(--gold); transform: translateY(-4px); }

.value-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--grey);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--gold);
  transition: var(--transition);
}
.value-card:hover .value-icon { background: var(--gold); color: var(--black); }
.value-icon svg { width: 26px; height: 26px; }

.value-card h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: var(--white);
}
.value-card p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.map-section {
  /* bg-hairlines-v już jako klasa, ale tutaj backup dla stron bez klasy */
  background-color: #07080b;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 54px,
    rgba(183,168,142,0.045) 54px,
    rgba(183,168,142,0.045) 55px
  );
  padding: 5rem 0;
}

.map-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.map-frame {
  width: 100%;
  height: 380px;
  border: 1px solid var(--gold-dk);
  filter: grayscale(0.6) contrast(1.1);
}

/* ─── FLEET CARD LINK ───────────────────────── */
a.fleet-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.fleet-card-img-wrap {
  position: relative;
  overflow: hidden;
}
a.fleet-card-link .fleet-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.fleet-card-cta {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 0.7rem 1.6rem;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
a.fleet-card-link:hover .fleet-card-overlay { background: rgba(10,10,10,0.4); }
a.fleet-card-link:hover .fleet-card-cta { opacity: 1; transform: translateY(0); }

/* ─── FLEET PAGE ────────────────────────────── */
.fleet-full-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem 2rem;
  margin-top: 3rem;
}

.fleet-full-card {
  flex: 0 0 calc(33.333% - 1.35rem);
  min-width: 280px;
  background: var(--dark2);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.fleet-full-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.6); }

.fleet-full-card .car-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.6s ease;
  background: #1c1c1c;
}
.fleet-full-card:hover .car-img { transform: scale(1.04); }

.car-info {
  padding: 1.8rem;
  border-top: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.car-badge {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.car-info h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.car-info p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  flex: 1;
}

.car-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}
.car-feat-tag {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dk);
  padding: 0.2rem 0.65rem;
}

.car-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-dk);
  padding-bottom: 2px;
  transition: var(--transition);
}
.car-more-link svg {
  transition: transform 0.3s ease;
}
a.fleet-card-link:hover .car-more-link {
  color: var(--gold-lt);
  border-bottom-color: var(--gold-lt);
}
a.fleet-card-link:hover .car-more-link svg {
  transform: translateX(4px);
}
a.fleet-card-link { cursor: pointer; }

.drivers-section {
  background: var(--dark);
  padding: 6rem 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ─── OFFER PAGE ────────────────────────────── */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--gold-dk);
}

.offer-card {
  background: var(--dark);
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: var(--transition);
}
.offer-card:hover::before { height: 100%; }
.offer-card:hover { background: var(--dark2); }

.offer-num {
  font-family: var(--ff-head);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(183,168,142,0.15);
  line-height: 1;
  margin-bottom: 1rem;
}

.offer-card h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.offer-card .offer-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.offer-card p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.offer-card ul {
  margin-bottom: 2rem;
}
.offer-card ul li {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  padding: 0.35rem 0;
  padding-left: 1rem;
  position: relative;
}
.offer-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.offer-cta-bar {
  background: var(--gold);
  padding: 4rem 0;
  text-align: center;
}
.offer-cta-bar h2 { color: var(--black); margin-bottom: 0.5rem; font-size: 2rem; }
.offer-cta-bar p { color: rgba(0,0,0,0.6); font-size: 0.85rem; margin-bottom: 2rem; }
.offer-cta-bar .btn { margin: 0 0.5rem; }
.offer-cta-bar .btn-outline { border-color: var(--black); color: var(--black); }
.offer-cta-bar .btn-outline:hover { background: var(--black); color: var(--white); }

/* ─── CONTACT PAGE ──────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--gold-dk);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; }

.contact-info-item h4 {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 0.3rem;
}
.contact-info-item p, .contact-info-item a {
  font-size: 0.96rem;
  color: rgba(255,255,255,0.86);
  line-height: 1.7;
}
.contact-info-item a:hover { color: var(--gold); }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.74rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--dark2);
  border: 1px solid var(--grey);
  color: var(--white);
  padding: 0.95rem 1rem;
  font-family: var(--ff-body);
  font-size: 0.92rem;
  line-height: 1.65;
  outline: none;
  transition: var(--transition);
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.38);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--grey);
}

.form-group textarea { resize: vertical; min-height: 140px; }
.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
}

.contact-map {
  margin-top: 5rem;
}

/* ─── WSPOLPRACA BANNER ─────────────────────── */
.wspolpraca-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem 3rem;
  background: var(--dark2);
  border-left: 3px solid var(--gold);
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .wspolpraca-banner {
    padding: 1.5rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .wspolpraca-banner .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .offer-cta-bar h2 { font-size: 1.55rem; }
  .offer-cta-bar .btn {
    width: 100%;
    margin: 0.35rem 0;
    justify-content: center;
  }
}

/* ─── FOOTER ────────────────────────────────── */
footer {
  background: var(--black);
  overflow: hidden;
  position: relative;
}

/* Wielki napis w tle */
.footer-wordmark {
  text-align: center;
  padding: 4rem 2rem 0;
  position: relative;
  overflow: hidden;
}

.footer-wordmark-img {
  width: min(80vw, 700px);
  height: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.18;
  user-select: none;
  pointer-events: none;
}

@media (max-width: 600px) {
  .footer-wordmark-img {
    width: 90vw;
  }
}

/* Złota linia separator */
.footer-separator {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
}
.footer-separator::before,
.footer-separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dk), transparent);
}
.footer-separator-logo img {
  height: 38px;
  opacity: 0.9;
}

/* Linki nawigacji w jednym rzędzie */
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding-bottom: 2.5rem;
}
.footer-nav a {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.footer-nav a:hover { color: var(--gold); }

/* Kontakt w jednym rzędzie */
.footer-contact-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  max-width: 1300px;
  margin: 0 auto;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  transition: var(--transition);
}
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.5); }
.footer-contact-item a:hover { color: var(--gold); }

/* Social */
.social-links {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}
.social-link {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.social-link svg { width: 14px; height: 14px; }

/* Bottom bar */
.footer-bottom {
  text-align: center;
  padding: 1.8rem 2rem;
}
.footer-bottom p {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 2;
}
.footer-bottom a { color: rgba(183,168,142,0.6); transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ─── ANIMATIONS ─────────────────────────────  */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }


/* ─── COOKIE PANEL ─────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 9999;
  background: #111111;
  border: 1px solid rgba(212,175,55,0.22);
  border-radius: 8px;
  width: 340px;
  max-width: calc(100vw - 2rem);
  box-shadow: 0 12px 48px rgba(0,0,0,.65);
  transform: translateX(calc(100% + 2.5rem));
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
#cookie-banner.visible { transform: translateX(0); }

.cb-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1.25rem 1.5rem 0;
}
.cb-header-icon {
  width: 30px;
  height: 30px;
  background: rgba(212,175,55,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cb-title {
  font-family: var(--ff-head);
  font-size: .84rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .04em;
  margin: 0;
}
.cb-divider { height: 1px; background: rgba(255,255,255,.06); margin: 1rem 1.5rem 0; }
.cb-body { padding: 1rem 1.5rem 1.5rem; }
.cb-text {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin: 0 0 1.2rem;
}
.cb-text a { color: var(--gold); text-decoration: underline; }
.cb-text a:hover { color: var(--gold-lt); }
.cb-btns { display: flex; flex-direction: column; gap: .55rem; }
.cb-btn-primary {
  width: 100%;
  padding: .72rem 1rem;
  background: var(--gold);
  color: #0a0a0a;
  border: none;
  font-family: var(--ff-body);
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  transition: background .2s;
}
.cb-btn-primary:hover { background: var(--gold-lt); }
.cb-btn-secondary {
  width: 100%;
  padding: .68rem 1rem;
  background: transparent;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.13);
  font-family: var(--ff-body);
  font-size: .71rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  transition: color .2s, border-color .2s;
}
.cb-btn-secondary:hover { color: var(--white); border-color: rgba(255,255,255,.3); }
.cb-btn-text {
  background: none;
  border: none;
  color: rgba(255,255,255,.28);
  font-size: .71rem;
  cursor: pointer;
  font-family: var(--ff-body);
  text-align: center;
  padding: .3rem;
  transition: color .2s;
  letter-spacing: .04em;
}
.cb-btn-text:hover { color: var(--gold); }

/* Settings view */
.cb-settings { display: none; padding: .75rem 1.5rem 1.5rem; }
.cb-settings.active { display: block; }
.cb-default.cb-hidden { display: none; }

.cb-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  gap: 1rem;
}
.cb-toggle-row:last-of-type { border-bottom: none; }
.cb-toggle-label { display: flex; flex-direction: column; gap: .18rem; }
.cb-toggle-name { font-size: .83rem; font-weight: 600; color: var(--white); }
.cb-toggle-desc { font-size: .7rem; color: rgba(255,255,255,.32); }

/* Toggle switch */
.cb-switch { position: relative; width: 40px; height: 22px; flex-shrink: 0; }
.cb-switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.cb-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.1);
  border-radius: 22px;
  cursor: pointer;
  transition: background .2s;
}
.cb-slider::before {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  left: 3px; top: 3px;
  background: rgba(255,255,255,.45);
  border-radius: 50%;
  transition: transform .2s, background .2s;
}
.cb-switch input:checked + .cb-slider { background: var(--gold); }
.cb-switch input:checked + .cb-slider::before { transform: translateX(18px); background: #0a0a0a; }
.cb-switch input:disabled + .cb-slider { cursor: default; background: rgba(212,175,55,.35); }
.cb-switch input:disabled + .cb-slider::before { transform: translateX(18px); background: var(--gold); }

.cb-settings-btns { display: flex; flex-direction: column; gap: .55rem; margin-top: 1.25rem; }

/* ─── MOBILE STICKY CTA ─────────────────────── */
#em-mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 995;
  display: none;
  gap: 0.55rem;
  padding: 0.55rem 0.7rem calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(10,10,10,0.95);
  border-top: 1px solid rgba(183,168,142,0.28);
  backdrop-filter: blur(12px);
  transition: opacity 0.25s ease;
}

.em-mobile-cta-btn {
  flex: 1;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid rgba(183,168,142,0.35);
  text-decoration: none;
  transition: var(--transition);
}

.em-mobile-cta-btn--call {
  background: var(--gold);
  color: var(--black);
  border-color: rgba(183,168,142,0.65);
}

.em-mobile-cta-btn--book {
  background: rgba(255,255,255,0.03);
  color: var(--gold);
}

.em-mobile-cta-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

body.menu-open #em-mobile-cta {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 480px) {
  #cookie-banner { right: .75rem; bottom: .75rem; width: calc(100vw - 1.5rem); }
  body.has-mobile-cta #cookie-banner { bottom: 6.15rem; }
}

/* ─── PRIVACY PAGE ───────────────────────────── */
.privacy-content {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255,255,255,0.75);
  line-height: 1.85;
}
.privacy-updated {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 2.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.privacy-content h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  color: var(--gold);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(183,168,142,0.2);
}
.privacy-content h3 {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.privacy-content p { margin-bottom: 0.9rem; }
.privacy-content ul {
  padding-left: 1.4rem;
  margin-bottom: 0.9rem;
}
.privacy-content ul li { margin-bottom: 0.4rem; }
.privacy-content a { color: var(--gold); }
.privacy-content a:hover { color: var(--gold-lt); }
.privacy-content code {
  background: rgba(255,255,255,0.07);
  padding: 0.1em 0.4em;
  border-radius: 3px;
  font-size: 0.85em;
}

/* ─── RESPONSIVE ────────────────────────────── */
@media (max-width: 1100px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-full-card { flex: 0 0 calc(50% - 1rem); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  #navbar {
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(12px);
    padding: 0.95rem 0;
  }
  .nav-inner { padding: 0 1rem; }
  .nav-logo img { height: 44px; }
  .mobile-menu .lang-switch {
    justify-content: center !important;
    margin-top: 1rem !important;
    margin-left: 0;
    border: none;
    border-radius: 0;
    padding: 0;
    gap: 0.45rem;
  }
  .mobile-menu .lang-btn {
    border: 1px solid rgba(183,168,142,0.28);
    border-radius: 999px;
    min-width: 2.6rem;
    text-align: center;
    padding: 0.42rem 0.75rem;
    color: rgba(255,255,255,0.72);
  }
  .mobile-menu .lang-btn.is-active {
    border-color: rgba(183,168,142,0.45);
    background: rgba(183,168,142,0.16);
  }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .map-wrap { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  #em-mobile-cta { display: flex; }
  body.has-mobile-cta { padding-bottom: 5.35rem; }
  .wspolpraca-banner {
    padding: 2rem 1.5rem;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .wspolpraca-banner .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-full-card { flex: 0 0 calc(50% - 0.5rem); }
  .fleet-full-grid { gap: 1rem; }
  .fleet-full-card .car-img { aspect-ratio: 4/3; }
  .car-info { padding: 0.85rem 1rem 1rem; }
  .car-badge { font-size: 0.55rem; margin-bottom: 0.2rem; }
  .car-info h3 { font-size: 0.88rem; margin-bottom: 0.2rem; }
  .car-info p { display: none; }
  .car-more-link { display: none; }
  .car-features { gap: 0.25rem; margin-top: 0.4rem; }
  .car-feat-tag { font-size: 0.58rem; padding: 0.15rem 0.4rem; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .section-pad { padding: 4rem 0; }
  .trust-grid { grid-template-columns: 1fr; }
  .fleet-compare-table { min-width: 650px; }

  /* Stopka — kompaktowe menu i kontakt */
  .footer-nav { gap: 0.7rem 1.8rem; padding: 0 1.5rem 2rem; }
  .footer-contact-row {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
  }
  .social-links { margin-top: 0.25rem; }

  /* Oferta — usługi dodatkowe 2 kolumny na mobile */
  .additional-services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── BLOG INDEX ────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.blog-card {
  background: var(--dark2);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.6); }

.blog-card-img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
}
.blog-card-img-wrap img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform .6s ease;
}
.blog-card:hover .blog-card-img-wrap img { transform: scale(1.05); }

.blog-card-cat {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--black);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .25rem .7rem;
}

.blog-card-body {
  padding: 1.8rem;
  border-top: 2px solid var(--gold);
}

.blog-card-meta {
  display: flex;
  gap: 1.2rem;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: .9rem;
}

.blog-card-body h2 {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: .75rem;
  text-transform: none;
  letter-spacing: .02em;
}
.blog-card-body h2 a { color: var(--white); transition: var(--transition); }
.blog-card-body h2 a:hover { color: var(--gold); }

.blog-card-body p {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-dk);
  padding-bottom: 2px;
  transition: var(--transition);
}
.blog-read-more svg { transition: transform .3s; }
.blog-read-more:hover { color: var(--gold-lt); }
.blog-read-more:hover svg { transform: translateX(4px); }

/* ─── BLOG POST ─────────────────────────────── */
.post-hero {
  height: 60vh;
  min-height: 420px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.post-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.3) 60%, transparent 100%);
}
.post-hero img.post-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.post-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 4rem;
  max-width: 820px;
}
.post-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.post-meta-cat { color: var(--gold); font-weight: 700; }
.post-hero-content h1 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  text-transform: none;
  letter-spacing: .02em;
}

.post-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 5rem 2rem;
  color: rgba(255,255,255,.8);
  font-size: .97rem;
  line-height: 1.9;
}
.post-content h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 500;
  color: var(--white);
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(183,168,142,.2);
  text-transform: none;
  letter-spacing: .02em;
}
.post-content h3 {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
  margin-top: 2rem;
  margin-bottom: .75rem;
  text-transform: none;
}
.post-content p { margin-bottom: 1.4rem; }
.post-content ul {
  list-style: none;
  padding-left: 1.5rem;
  margin-bottom: 1.4rem;
}
.post-content ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: .5rem;
}
.post-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: .65em;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}
.post-content ol { padding-left: 1.5rem; margin-bottom: 1.4rem; }
.post-content ol li { margin-bottom: .5rem; }
.post-content strong { color: var(--white); font-weight: 600; }
.post-content a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-dk);
  transition: var(--transition);
}
.post-content a:hover { color: var(--gold-lt); }
.post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--dark2);
  color: rgba(255,255,255,.7);
  font-style: italic;
}
.post-back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
  transition: var(--transition);
}
.post-back:hover { color: var(--gold-lt); }

@media (max-width: 1100px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .post-content { padding: 3rem 0; }
}

/* ─── READING PROGRESS ───────────────────────── */
#reading-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold-dk), var(--gold));
  width: 0%;
  z-index: 9999;
  transition: width .1s linear;
  pointer-events: none;
}

/* ─── BREADCRUMBS ────────────────────────────── */
.breadcrumbs { margin-bottom: 1.2rem; }
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0; margin: 0;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.breadcrumbs li a {
  color: rgba(255,255,255,.45);
  transition: var(--transition);
  border-bottom: none;
}
.breadcrumbs li a:hover { color: var(--gold); }
.breadcrumbs li:not(:last-child)::after {
  content: '/';
  color: rgba(255,255,255,.2);
  margin-left: .4rem;
}

/* ─── TABLE OF CONTENTS ──────────────────────── */
.post-toc {
  background: var(--dark2);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
}
.post-toc-title {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.post-toc-list {
  list-style: none;
  padding: 0; margin: 0;
  counter-reset: toc-counter;
}
.post-toc-list li {
  counter-increment: toc-counter;
  padding: .3rem 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.post-toc-list li:last-child { border-bottom: none; }
.post-toc-list li a {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  border-bottom: none;
  transition: var(--transition);
  display: flex;
  align-items: baseline;
  gap: .6rem;
}
.post-toc-list li a::before {
  content: counter(toc-counter, decimal-leading-zero);
  font-size: .6rem;
  color: var(--gold-dk);
  font-weight: 700;
  flex-shrink: 0;
}
.post-toc-list li a:hover { color: var(--gold); }
.toc-level-3 { padding-left: 1.5rem !important; }
.toc-level-3 a { font-size: .75rem; color: rgba(255,255,255,.4); }
.toc-level-3 a::before { content: '—'; color: rgba(255,255,255,.2); }

/* ─── SHARE BUTTONS ──────────────────────────── */
.post-share {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  padding: 2rem 0;
  border-top: 1px solid rgba(183,168,142,.15);
  border-bottom: 1px solid rgba(183,168,142,.15);
  margin: 3rem 0;
}
.post-share-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-right: .25rem;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem 1.1rem;
  font-family: var(--ff-body);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  border: 1px solid rgba(183,168,142,.25);
  color: rgba(255,255,255,.45);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.share-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(183,168,142,.06);
}

/* ─── PREV / NEXT NAVIGATION ─────────────────── */
.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 3rem 0;
  padding-top: 3rem;
  border-top: 1px solid rgba(183,168,142,.12);
}
.post-nav-item {
  background: var(--dark2);
  padding: 1.5rem;
  border-top: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  display: block;
}
.post-nav-item:hover {
  border-top-color: var(--gold);
  transform: translateY(-3px);
}
.post-nav-dir {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.post-nav-next .post-nav-dir { justify-content: flex-end; }
.post-nav-title {
  font-family: var(--ff-head);
  font-size: .88rem;
  color: var(--white);
  line-height: 1.4;
  transition: var(--transition);
}
.post-nav-next { text-align: right; }
.post-nav-item:hover .post-nav-title { color: var(--gold-lt); }

/* ─── RELATED POSTS ──────────────────────────── */
.related-posts { margin: 3rem 0 1rem; }
.related-posts-title {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.related-grid--three {
  grid-template-columns: repeat(3, 1fr);
}
.related-card {
  display: block;
  text-decoration: none;
  background: var(--dark2);
  overflow: hidden;
  transition: var(--transition);
  border-top: 2px solid transparent;
}
.related-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.5);
}
.related-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform .5s ease;
}
.related-card:hover img { transform: scale(1.04); }
.related-card-body { padding: 1.1rem 1.3rem 1.4rem; }
.related-cat {
  position: static !important;
  display: inline-block;
  margin-bottom: .6rem;
}
.related-card-body h3 {
  font-size: .88rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: .4rem;
  text-transform: none;
  letter-spacing: .01em;
  transition: var(--transition);
}
.related-card:hover h3 { color: var(--gold-lt); }
.related-card-body p {
  font-size: .8rem;
  color: rgba(255,255,255,.52);
  line-height: 1.8;
  margin-bottom: .8rem;
}
.related-meta {
  font-size: .62rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.seo-copy-section {
  background:
    radial-gradient(circle at top right, rgba(183,168,142,.08), transparent 34%),
    linear-gradient(180deg, rgba(18,18,18,1) 0%, rgba(13,13,13,1) 100%);
}
.seo-copy-intro {
  max-width: 860px;
  margin-bottom: 2rem;
}
.seo-copy-intro .gold-line {
  margin: 1.2rem 0 1.5rem;
}
.seo-copy-intro p {
  color: rgba(255,255,255,.62);
  line-height: 1.95;
  font-size: .88rem;
  margin-bottom: 1rem;
}
.seo-copy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.seo-copy-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(183,168,142,.12);
  padding: 1.5rem 1.5rem 1.35rem;
  border-radius: 10px;
}
.seo-copy-card h3 {
  font-size: .92rem;
  font-weight: 500;
  margin-bottom: .8rem;
  color: var(--white);
  text-transform: none;
  letter-spacing: .01em;
}
.seo-copy-card p {
  color: rgba(255,255,255,.56);
  line-height: 1.85;
  font-size: .82rem;
}
.seo-copy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.6rem;
}
.seo-copy-links a {
  color: var(--gold-lt);
  text-decoration: none;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.seo-copy-links a:hover {
  color: var(--white);
}
.intent-links {
  margin: 3rem 0 1rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(183,168,142,.12);
}
.intent-card {
  border-top-color: rgba(183,168,142,.18);
}
.intent-card:hover {
  border-top-color: var(--gold);
}
.intent-card .related-meta {
  color: var(--gold-dk);
}

/* ─── FEATURED POST (blog index) ─────────────── */
.blog-card-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--dark2);
  margin-bottom: 4rem;
  overflow: hidden;
  transition: var(--transition);
}
.blog-card-featured:hover { box-shadow: 0 24px 60px rgba(0,0,0,.7); }

.blog-featured-img {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 340px;
}
.blog-featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.blog-card-featured:hover .blog-featured-img img { transform: scale(1.04); }

.blog-featured-body {
  padding: 3rem;
  border-top: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-featured-label {
  display: inline-block;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: .75rem;
}
.blog-featured-body h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 1rem;
  text-transform: none;
  letter-spacing: .02em;
}
.blog-featured-body h2 a { color: var(--white); transition: var(--transition); }
.blog-featured-body h2 a:hover { color: var(--gold); }
.blog-featured-body p {
  font-size: .86rem;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  margin-bottom: 2rem;
  flex: 1;
}

/* ─── CATEGORY FILTERS ───────────────────────── */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 3rem;
  align-items: center;
}
.blog-filter-btn {
  background: transparent;
  border: 1px solid rgba(183,168,142,.25);
  color: rgba(255,255,255,.45);
  font-family: var(--ff-body);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .45rem 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.blog-filter-btn:hover,
.blog-filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(183,168,142,.07);
}
.filter-count {
  background: rgba(183,168,142,.15);
  color: var(--gold-dk);
  font-size: .55rem;
  padding: .1rem .45rem;
  border-radius: 20px;
  font-weight: 700;
}
.blog-filter-btn.active .filter-count {
  background: rgba(183,168,142,.3);
  color: var(--gold);
}

/* ─── RESPONSIVE (blog rozbudowany) ─────────── */
@media (max-width: 900px) {
  .blog-card-featured { grid-template-columns: 1fr; }
  .blog-featured-img  { min-height: 240px; }
  .blog-featured-body { padding: 2rem; }
  .post-navigation    { grid-template-columns: 1fr; }
  .related-grid       { grid-template-columns: 1fr; }
  .related-grid--three { grid-template-columns: 1fr; }
  .seo-copy-grid      { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .blog-featured-body { padding: 1.5rem; }
  .post-toc           { padding: 1.2rem 1.5rem; }
  .post-share         { gap: .5rem; }
}

/* ═══════════════════════════════════════════════
   PREMIUM EFFECTS — loader / particles / polish
   ═══════════════════════════════════════════════ */

/* ─── SCROLL PROGRESS BAR ───────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, var(--gold-dk), var(--gold), var(--gold-lt));
  z-index: 2000;
  pointer-events: none;
  transition: width 0.08s linear;
  box-shadow: 0 0 8px rgba(183,168,142,0.5);
}

/* ─── PAGE LOADER ───────────────────────────── */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s cubic-bezier(0.4,0,0.2,1), visibility 1s;
}
#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.8rem;
}
.loader-logo {
  width: 150px;
  opacity: 0;
  transform: translateY(14px);
  animation: loaderLogoIn 0.85s cubic-bezier(0.4,0,0.2,1) 0.15s forwards;
  filter: drop-shadow(0 0 24px rgba(183,168,142,0.18));
}
@keyframes loaderLogoIn {
  to { opacity: 1; transform: translateY(0); }
}
.loader-line-wrap {
  width: 200px;
  height: 1px;
  background: rgba(183,168,142,0.12);
  overflow: hidden;
  opacity: 0;
  animation: loaderWrapFade 0.25s ease 0.75s forwards;
}
@keyframes loaderWrapFade {
  to { opacity: 1; }
}
.loader-line-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(to right, transparent, var(--gold-lt), var(--gold), transparent);
  animation: loaderLineSweep 1s cubic-bezier(0.4,0,0.2,1) 0.85s forwards;
}
@keyframes loaderLineSweep {
  to { width: 100%; }
}
.loader-label {
  font-family: var(--ff-body);
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(183,168,142,0.4);
  opacity: 0;
  animation: loaderLogoIn 0.6s ease 1.1s forwards;
}

/* ─── HERO PARTICLES CANVAS ─────────────────── */
#hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* ─── HERO AMBIENT LIGHT ────────────────────── */
.hero::before {
  content: '';
  position: absolute;
  top: -10%; left: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(ellipse at 30% 40%,
    rgba(183,168,142,0.07) 0%,
    rgba(183,168,142,0.03) 35%,
    transparent 65%);
  pointer-events: none;
  z-index: 1;
  animation: ambientPulse 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; right: -5%;
  width: 55%; height: 70%;
  background: radial-gradient(ellipse at 70% 70%,
    rgba(183,168,142,0.05) 0%,
    transparent 60%);
  pointer-events: none;
  z-index: 1;
  animation: ambientPulse 10s ease-in-out 3s infinite;
}
@keyframes ambientPulse {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1; }
}

/* Override hero overlay for more cinematic depth */
.hero-overlay {
  background:
    linear-gradient(135deg,
      rgba(0,0,0,0.80) 0%,
      rgba(0,0,0,0.38) 50%,
      rgba(0,0,0,0.65) 100%),
    linear-gradient(to bottom,
      rgba(0,0,0,0.25) 0%,
      transparent 40%,
      rgba(0,0,0,0.55) 100%) !important;
}

/* ─── GRAIN TEXTURE ON DARK SECTIONS ────────── */
/* Ultra-subtle film grain via SVG turbulence    */
.testimonials,
.cta-text-section,
.fleet-section {
  isolation: isolate;
}
.testimonials::after,
.cta-text-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='0.045'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}
/* Ensure children of these sections sit above grain */
.testimonials > .container,
.cta-text-section > .container {
  position: relative;
  z-index: 1;
}

/* ─── TESTIMONIALS AMBIENT GLOW ──────────────── */
.testimonials {
  position: relative;
  overflow: hidden;
}
/* Dodatkowa warstwa ::before – linia horyzontu u dołu */
.testimonials::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(183,168,142,0.25) 30%,
    rgba(183,168,142,0.35) 50%,
    rgba(183,168,142,0.25) 70%,
    transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.testimonials > .ambient-glow {
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse,
    rgba(183,168,142,0.12) 0%,
    rgba(183,168,142,0.04) 45%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(1px);
}

/* ─── CTA TEXT SECTION AMBIENT ───────────────── */
.cta-text-section {
  overflow: hidden;
}

/* Separator u góry */
.cta-text-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(to right,
      transparent 0%,
      rgba(183,168,142,0.30) 25%,
      rgba(183,168,142,0.45) 50%,
      rgba(183,168,142,0.30) 75%,
      transparent 100%)
    top / 100% 1px no-repeat;
}

/* Centralny blask – mocny i szeroki */
.cta-text-section > .ambient-glow {
  position: absolute;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1100px; height: 700px;
  background: radial-gradient(ellipse,
    rgba(183,168,142,0.16) 0%,
    rgba(183,168,142,0.06) 35%,
    transparent 65%);
  pointer-events: none;
  z-index: 0;
  filter: blur(2px);
}

/* ─── BACKGROUND UTILITY CLASSES ────────────── */
/* Każda klasa ma zupełnie inny charakter wizualny */

/* 1. Ciepła ciemność — salon/gabinet, osobisty klimat */
.bg-warm-dark {
  background-color: #0e0b08;
  background-image:
    linear-gradient(to right,
      rgba(183,168,142,0.07) 0%,
      transparent 28%,
      transparent 72%,
      rgba(183,168,142,0.05) 100%);
  position: relative;
}

/* 2. Matryca punktów — editorial, luksusowo-techniczny */
.bg-dot-matrix {
  background-color: #060606;
  background-image: radial-gradient(rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  position: relative;
}

/* 3. Linie poziome (scan) — kinematograficzny */
.bg-scanlines {
  background-color: #070707;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,0.013) 3px,
    rgba(255,255,255,0.013) 4px
  );
  position: relative;
}

/* 4. Piony włoskowate — precyzja, showroom techniczny */
.bg-hairlines-v {
  background-color: #07080b;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 54px,
    rgba(183,168,142,0.045) 54px,
    rgba(183,168,142,0.045) 55px
  );
  position: relative;
}

/* 5. Siatka krzyżykowa — techniczna precyzja */
.bg-cross-grid {
  background-color: #090909;
  background-image:
    repeating-linear-gradient(0deg,  transparent, transparent 34px, rgba(183,168,142,0.032) 34px, rgba(183,168,142,0.032) 35px),
    repeating-linear-gradient(90deg, transparent, transparent 34px, rgba(183,168,142,0.032) 34px, rgba(183,168,142,0.032) 35px);
  background-size: 35px 35px;
  position: relative;
}

/* 6. Boczne oświetlenie — kinowe, kierunek od lewej */
.bg-side-light {
  background-color: #0a0a0a;
  background-image:
    linear-gradient(to right,
      rgba(183,168,142,0.12) 0%,
      rgba(183,168,142,0.04) 20%,
      transparent 45%),
    linear-gradient(to bottom,
      transparent 0%,
      rgba(0,0,0,0.3) 100%);
  position: relative;
}

/* 7. Naroźne światło — dramatyczny akcent na CTA/biz */
.bg-corner-light {
  background-color: #080808;
  background-image:
    radial-gradient(ellipse at 8%   8%,  rgba(183,168,142,0.12) 0%, transparent 48%),
    radial-gradient(ellipse at 92% 92%,  rgba(183,168,142,0.07) 0%, transparent 42%);
  position: relative;
}

/* ─── SERVICE CARDS (redesigned) ─────────────── */
/* Ghost numbers */
.service-bg-num {
  position: absolute;
  top: -0.5rem; right: 0.75rem;
  font-family: var(--ff-head);
  font-size: 6.5rem;
  font-weight: 700;
  color: rgba(183,168,142,0.045);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color var(--transition);
}
.service-card:hover .service-bg-num {
  color: rgba(183,168,142,0.07);
}

/* Top-border sweep on hover (replaces bottom line) */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold-dk), var(--gold), var(--gold-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.service-card:hover::before { transform: scaleX(1); }

/* Remove old bottom line */
.service-card::after { display: none; }

/* Service link */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.service-link svg { transition: transform 0.3s ease; }
.service-card:hover .service-link {
  opacity: 1;
  transform: translateY(0);
}
.service-card:hover .service-link svg { transform: translateX(3px); }

/* ─── FLEET CARD SPECS STRIP ─────────────────── */
.fleet-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(183,168,142,0.2);
}
.fleet-spec {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ─── PROCESS SECTION ────────────────────────── */
.process-section {
  /* Siatka krzyżykowa z ciepłym podtonem — inny charakter niż fleet */
  background-color: #0d0b08;
  background-image:
    repeating-linear-gradient(0deg,  transparent, transparent 44px, rgba(183,168,142,0.028) 44px, rgba(183,168,142,0.028) 45px),
    repeating-linear-gradient(90deg, transparent, transparent 44px, rgba(183,168,142,0.028) 44px, rgba(183,168,142,0.028) 45px);
  background-size: 45px 45px;
  position: relative;
}
.process-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%, rgba(183,168,142,0.25) 30%,
    rgba(183,168,142,0.4) 50%,
    rgba(183,168,142,0.25) 70%, transparent 100%);
}
.process-header { text-align: center; margin-bottom: 4rem; }

/* 4 równe kolumny — żadnych divów-łączników, zero hacków z margin-top */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

/* Linia pozioma rysowana przez ::before — zawsze na środku ikon */
.process-grid::before {
  content: '';
  position: absolute;
  top: 32px;                  /* połowa wysokości ikony (64px / 2) */
  left: calc(12.5%);          /* od środka pierwszej kolumny */
  right: calc(12.5%);         /* do środka ostatniej kolumny */
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(183,168,142,0.35) 10%,
    rgba(183,168,142,0.35) 90%,
    transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  padding-top: 0;
}

/* Ikona ZAWSZE na górze kroku — linia ::before trafia idealnie w środek */
.process-icon-wrap {
  width: 64px; height: 64px;
  border: 1px solid rgba(183,168,142,0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: var(--gold);
  background: var(--black);   /* zakrywa linię pod ikoną */
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.process-step:hover .process-icon-wrap {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 0 28px rgba(183,168,142,0.28);
}
.process-icon-wrap svg { width: 24px; height: 24px; }

/* Numer-duch — absolutny, za ikoną */
.process-num-bg {
  position: absolute;
  top: -1.2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-head);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(183,168,142,0.055);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}

.process-step h3 {
  font-size: 0.88rem;
  font-family: var(--ff-head);
  color: var(--white);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
}
.process-step p {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.85;
  max-width: 185px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .process-grid::before { display: none; }
}
@media (max-width: 500px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ─── HERO CONTENT fade-in on load ──────────── */
.hero-content {
  opacity: 0;
  transform: translateY(20px);
  animation: heroContentIn 1.1s cubic-bezier(0.4,0,0.2,1) 0.3s forwards;
}
/* When loader is used, delay hero content */
body.loader-active .hero-content {
  animation-delay: 1.9s;
}
@keyframes heroContentIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── ADDITIONAL SERVICES GRID ───────────────── */
.additional-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 480px) {
  .additional-services-grid { grid-template-columns: 1fr; }
}

/* ─── FOCUS-VISIBLE (klawiatura) ─────────────── */
*:focus { outline: none; }
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ─── PREFERS-REDUCED-MOTION ─────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .fade-up, .fade-in { opacity: 1 !important; transform: none !important; }
  .hero-content { opacity: 1 !important; transform: none !important; animation: none !important; }
  #hero-particles { display: none; }
  #scroll-progress { display: none; }
  .loader-line-fill { display: none; }
}

/* ─── FAQ ACCORDION ──────────────────────────── */
.faq-section { padding: 5rem 0; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 720px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ─── LANG SWITCH ───────────────────────────── */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.6rem;
  border: none;
  padding: 0;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-family: var(--ff-head);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  min-width: 2.5rem;
  height: 1.9rem;
  padding: 0 0.7rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.25s, background 0.25s, border-color 0.25s;
  text-decoration: none;
  line-height: 1;
  border: 1px solid rgba(183,168,142,0.28);
  border-radius: 999px;
}
a.lang-btn:hover {
  color: var(--gold);
  border-color: rgba(183,168,142,0.55);
}
.lang-btn.is-active {
  color: var(--gold);
  border-color: rgba(183,168,142,0.55);
  background: rgba(183,168,142,0.12);
}
.faq-item {
  border: 1px solid rgba(183,168,142,0.15);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover { border-color: rgba(183,168,142,0.35); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border: none;
  color: var(--white);
  font-family: var(--ff-head);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s;
}
.faq-question:hover { background: rgba(183,168,142,0.07); }
.faq-item.open .faq-question { color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(183,168,142,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(183,168,142,0.1);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 460px; }
.faq-answer-inner {
  padding: 0.4rem 1.75rem 1.8rem;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
}
