/* ==========================================================================
   UHELNÉ SKLADY SVITAVY – Libor Král
   Industrial theme: near-black / anthracite / white / orange accent
   ========================================================================== */

:root {
  /* Colors */
  --bg: #0c0c0d;
  --bg-alt: #141416;
  --card: #1b1b1e;
  --card-hover: #212124;
  --border: #2b2b2e;
  --text: #f4f3f0;
  --text-muted: #a5a4a1;
  --orange: #ff6a13;
  --orange-dark: #e0590a;
  --orange-soft: rgba(255, 106, 19, 0.12);

  /* Type */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Work Sans', sans-serif;

  /* Layout */
  --container-w: 1240px;
  --radius: 6px;
  --radius-lg: 10px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { font-family: var(--font-display); margin: 0; letter-spacing: 0.01em; }
p { margin: 0; }
svg { width: 22px; height: 22px; flex-shrink: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16,.8,.24,1), transform .7s cubic-bezier(.16,.8,.24,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* gentle stagger for grid items sharing a row */
.category-card.reveal:nth-child(2),
.product-card.reveal:nth-child(2),
.fleet-card.reveal:nth-child(2),
.review-card.reveal:nth-child(2),
.zone-card.reveal:nth-child(2),
.layers-benefit.reveal:nth-child(2) { transition-delay: .08s; }
.category-card.reveal:nth-child(3),
.product-card.reveal:nth-child(3),
.fleet-card.reveal:nth-child(3),
.review-card.reveal:nth-child(3),
.zone-card.reveal:nth-child(3),
.layers-benefit.reveal:nth-child(3) { transition-delay: .16s; }
.category-card.reveal:nth-child(4),
.product-card.reveal:nth-child(4),
.fleet-card.reveal:nth-child(4),
.review-card.reveal:nth-child(4),
.zone-card.reveal:nth-child(4),
.layers-benefit.reveal:nth-child(4) { transition-delay: .24s; }
.product-card.reveal:nth-child(5) { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 20px;
}

.eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.accent, .accent-text { color: var(--orange); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .1s ease;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary {
  background: var(--orange);
  color: #12100e;
}
.btn-primary:hover { background: var(--orange-dark); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-small {
  padding: 9px 16px;
  font-size: 0.8rem;
}
.btn-phone {
  background: var(--orange);
  color: #12100e;
  padding: 10px 18px;
  font-size: 0.85rem;
}
.btn-phone:hover { background: var(--orange-dark); }
.btn:active { transform: translateY(1px); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 12, 13, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-flame {
  color: var(--orange);
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
}
.logo-text em {
  display: block;
  font-style: normal;
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.main-nav {
  display: flex;
  gap: 20px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  font-size: 0.83rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .15s ease, border-color .15s ease;
}
.main-nav a:hover,
.main-nav a:focus-visible { color: var(--text); border-color: var(--orange); }

.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  transition: transform .2s ease, opacity .2s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,9,0.55) 0%, rgba(8,8,9,0.25) 35%, rgba(8,8,9,0.85) 78%, rgba(8,8,9,0.97) 100%),
    linear-gradient(90deg, rgba(8,8,9,0.55) 0%, rgba(8,8,9,0.05) 42%, rgba(8,8,9,0) 60%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-w);
  width: 100%;
  margin: 0 auto;
  padding: 140px 24px 40px;
}
.hero-title {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.98;
  color: var(--text);
  max-width: 760px;
}
.hero-subtitle {
  margin-top: 22px;
  font-size: 1.15rem;
  color: #e6e5e1;
  max-width: 480px;
  line-height: 1.5;
}
.hero-hours {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}
.hero-hours svg { width: 18px; height: 18px; flex-shrink: 0; }
.hero-hours-sep { color: rgba(255,106,19,0.5); }
.hero-ctas {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-ctas .btn-outline {
  background: rgba(12,12,13,0.35);
  border-color: rgba(255,255,255,0.55);
}

.hero-benefits {
  position: relative;
  z-index: 1;
  max-width: var(--container-w);
  margin: 0 auto;
  width: 100%;
  padding: 26px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
}
.benefit svg { color: var(--orange); margin-top: 2px; }
.benefit strong {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.benefit span {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ==========================================================================
   CATEGORY CARDS
   ========================================================================== */
.categories {
  padding: 56px 0;
  background: var(--bg);
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .35s cubic-bezier(.16,.8,.24,1), border-color .35s ease, box-shadow .35s ease;
}
.category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,106,19,0.5);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,106,19,0.08);
}
.category-card-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.category-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.16,.8,.24,1);
}
.category-card:hover .category-card-media img { transform: scale(1.08); }
.category-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,0) 30%, rgba(10,10,11,0.94) 100%);
}
.category-card-body {
  position: relative;
  z-index: 1;
  padding: 22px;
}
.category-card-body h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}
.category-card-body p {
  color: #d8d7d3;
  font-size: 0.92rem;
  margin-bottom: 16px;
  max-width: 34ch;
}

/* ==========================================================================
   SECTIONS / PRODUCT GRIDS
   ========================================================================== */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }

.section-header { max-width: 640px; margin-bottom: 40px; }
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.05;
}
.section-lede {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.5;
}
.catalog-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange);
  border-bottom: 1px solid rgba(255,106,19,0.4);
  padding-bottom: 2px;
  transition: border-color .15s ease, color .15s ease;
}
.catalog-link svg { width: 18px; height: 18px; }
.catalog-link:hover { color: var(--orange-dark); border-color: var(--orange-dark); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product-grid-2 { grid-template-columns: repeat(2, 1fr); }

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .35s ease, transform .35s cubic-bezier(.16,.8,.24,1), box-shadow .35s ease;
}
.product-card:hover {
  border-color: rgba(255,106,19,0.5);
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,106,19,0.08);
}
.product-card-media { aspect-ratio: 4/3; overflow: hidden; }
.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.16,.8,.24,1);
}
.product-card:hover .product-card-media img { transform: scale(1.08); }
.product-card-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.product-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}
.product-card-top h3 {
  font-size: 1.22rem;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.15;
}
.slang {
  text-transform: none;
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0;
}
.price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.28rem;
  color: var(--orange);
  white-space: nowrap;
}
.price small { font-family: var(--font-body); font-size: 0.68rem; font-weight: 600; color: var(--text-muted); }
.product-subtitle {
  font-size: 0.82rem;
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.product-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.use-list {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.use-list li {
  position: relative;
  padding-left: 15px;
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.use-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 1px;
}

/* ==========================================================================
   DOPRAVA
   ========================================================================== */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.zone-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: border-color .3s ease, transform .3s cubic-bezier(.16,.8,.24,1);
}
.zone-card:hover {
  border-color: rgba(255,106,19,0.4);
  transform: translateY(-4px);
}
.zone-number {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.1rem;
  color: var(--orange);
  margin-bottom: 10px;
}
.zone-places {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
  min-height: 4.5em;
  margin-bottom: 16px;
}
.zone-prices {
  display: flex;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.zone-prices div { display: flex; flex-direction: column; gap: 2px; }
.zone-prices span { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.02em; }
.zone-prices strong { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; }

.delivery-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}
.delivery-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.delivery-note svg { color: var(--orange); width: 18px; height: 18px; }
.delivery-note strong { color: var(--text); }
.delivery-note-highlight {
  background: var(--orange-soft);
  border-color: rgba(255,106,19,0.4);
  color: var(--text);
}
.delivery-note-highlight svg { color: var(--orange); }

.conveyor-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.conveyor-media { min-height: 320px; }
.conveyor-media img { width: 100%; height: 100%; object-fit: cover; }
.conveyor-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.conveyor-content h3 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  text-transform: uppercase;
  font-weight: 800;
  margin: 6px 0 16px;
}
.conveyor-content p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 46ch;
}
.conveyor-specs {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.conveyor-specs div {
  border-left: 2px solid var(--orange);
  padding-left: 12px;
}
.conveyor-specs strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}
.conveyor-specs span { font-size: 0.82rem; color: var(--text-muted); }

/* ==========================================================================
   VOZOVÝ PARK
   ========================================================================== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.fleet-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .35s ease, transform .35s cubic-bezier(.16,.8,.24,1), box-shadow .35s ease;
}
.fleet-card:hover {
  border-color: rgba(255,106,19,0.5);
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,106,19,0.08);
}
.fleet-card-media { aspect-ratio: 4/3; overflow: hidden; }
.fleet-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.16,.8,.24,1);
}
.fleet-card:hover .fleet-card-media img { transform: scale(1.08); }
.fleet-card-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.fleet-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.fleet-card-top h3 {
  font-size: 1.22rem;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.15;
}
.tonnage {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: #12100e;
  background: var(--orange);
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.fleet-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ==========================================================================
   PORADNA – zámková dlažba diagram
   ========================================================================== */
.layers-diagram {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.layer {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  overflow: hidden;
}
.layer img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.layer-text { display: flex; flex-direction: column; gap: 3px; }
.layer-text strong { font-family: var(--font-display); font-size: 1.1rem; color: var(--orange); font-weight: 800; letter-spacing: 0.01em; }
.layer-text span { font-size: 0.86rem; color: var(--text-muted); line-height: 1.4; }
.layer-top, .layer-bottom {
  justify-content: center;
  background: transparent;
  border: 1px dashed var(--border);
  padding: 12px;
}
.layer-label {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.layer-arrow {
  text-align: center;
  color: var(--orange);
  font-size: 1.1rem;
  padding: 4px 0;
}
/* ==========================================================================
   PORADNA – skladba dlažby (dodaný diagram)
   ========================================================================== */
.skladba-diagram {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.skladba-diagram img { width: 100%; height: auto; display: block; }

.layers-benefits {
  max-width: 560px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.layers-benefit {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.85rem;
  color: var(--text);
}
.layers-benefit svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; }
.layers-note {
  margin-top: 28px;
  max-width: 56ch;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-left: 2px solid var(--orange);
  padding-left: 16px;
}

/* ==========================================================================
   SPLIT BLOCK (osobní odběr)
   ========================================================================== */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-content h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.4rem);
  text-transform: uppercase;
  font-weight: 800;
  margin-top: 6px;
  margin-bottom: 22px;
}
.info-list { display: flex; flex-direction: column; gap: 14px; }
.info-list li {
  padding-left: 18px;
  position: relative;
  color: var(--text-muted);
  font-size: 1rem;
}
.info-list li strong { color: var(--text); font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.02em; font-weight: 700; }
.info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--orange);
}

/* ==========================================================================
   TRUST SECTION
   ========================================================================== */
.trust-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.trust-media { position: absolute; inset: 0; z-index: 0; }
.trust-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9); }
.trust-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,8,9,0.96) 0%, rgba(8,8,9,0.88) 45%, rgba(8,8,9,0.55) 100%);
}
.trust-content { position: relative; z-index: 1; max-width: 560px; }
.trust-content h2 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  text-transform: uppercase;
  font-weight: 800;
  margin: 6px 0 18px;
  line-height: 1.05;
}
.trust-content p {
  color: #d8d7d3;
  font-size: 1.02rem;
  line-height: 1.55;
}
.trust-tags {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-tags span {
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.82rem;
  color: var(--text);
}

/* ==========================================================================
   RECENZE
   ========================================================================== */
.reviews-section { padding-top: 60px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .3s ease, transform .3s cubic-bezier(.16,.8,.24,1);
}
.review-card:hover {
  border-color: rgba(255,106,19,0.4);
  transform: translateY(-4px);
}
.review-stars {
  color: var(--orange);
  font-size: 1.05rem;
  letter-spacing: 2px;
}
.review-text {
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.55;
  flex: 1;
}
.review-author {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

/* ==========================================================================
   KONTAKT
   ========================================================================== */
.section-contact { padding-bottom: 88px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 22px;
  line-height: 1.25;
}
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--text-muted);
}
.contact-details svg { color: var(--orange); }
.contact-details a:hover { color: var(--orange); }
.contact-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.map-label {
  display: block;
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.contact-map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 360px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(0.3) invert(0.92) contrast(0.9);
  pointer-events: none;
}
.contact-map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 22px;
  background: linear-gradient(180deg, rgba(12,12,13,0) 60%, rgba(12,12,13,0.55) 100%);
}
.contact-map-overlay span {
  background: var(--orange);
  color: #12100e;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 11px 22px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  transition: background-color .15s ease;
}
.contact-map-overlay:hover span,
.contact-map-overlay:focus-visible span { background: var(--orange-dark); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
  background: var(--bg-alt);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
}
.footer-brand svg { color: var(--orange); width: 20px; height: 20px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-nav a { font-size: 0.85rem; color: var(--text-muted); }
.footer-nav a:hover { color: var(--orange); }
.footer-meta { width: 100%; font-size: 0.78rem; color: #6f6e6b; margin-top: 6px; }
.footer-legal {
  width: 100%;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.footer-legal h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6f6e6b;
  margin-bottom: 6px;
}
.footer-legal p {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #5c5b58;
  max-width: 70ch;
}

/* ---------- Mobile call FAB ---------- */
.mobile-call-fab {
  display: none;
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 90;
  width: 56px;
  height: 56px;
  background: var(--orange);
  color: #12100e;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1320px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }

  .site-header.nav-open .main-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 10px 20px 20px;
    gap: 4px;
  }
  .site-header.nav-open .main-nav a {
    padding: 12px 4px;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .zones-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .conveyor-block { grid-template-columns: 1fr; }
  .conveyor-media { min-height: 240px; }
  .split-block { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .header-inner { padding: 10px 16px; }
  .logo-text { font-size: 0.86rem; }
  .btn-phone span { display: none; }
  .btn-phone { padding: 10px; }

  .hero { min-height: 92vh; }
  .hero-content { padding: 110px 18px 30px; }
  .hero-benefits { grid-template-columns: repeat(2, 1fr); padding: 20px 18px; gap: 18px 12px; }

  .categories { padding: 40px 0; }
  .category-grid { grid-template-columns: 1fr; gap: 14px; }
  .category-card { min-height: 260px; }

  .section { padding: 52px 0; }
  .product-grid, .product-grid-2 { grid-template-columns: 1fr; }
  .zones-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }

  .conveyor-content { padding: 26px; }
  .conveyor-specs { grid-template-columns: 1fr 1fr; gap: 14px; }

  .trust-section { padding: 64px 0; }
  .trust-media img { object-position: 75% center; }

  .mobile-call-fab { display: flex; }
  .contact-ctas .btn { flex: 1 1 auto; justify-content: center; }
}
