:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --line: #c7c0b9;
  --ink: #451f12;
  --ink-soft: #6e4a3e;
  --teal: #184b4f;
  --lime: #e6ff80;
  --lavender: #dbdbff;
  --blush: #fbddd9;
  --cream: #fff8e6;
  --radius-xl: 30px;
  --radius-lg: 25px;
  --radius-md: 20px;
  --topbar-height: 74px;
  --footer-padding-top: 100px;
  --footer-padding-bottom: 26px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Google Sans Flex", "Google Sans Text", "Google Sans", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

.shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.shell--narrow {
  width: min(730px, calc(100% - 40px));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-header {
  padding: calc(var(--topbar-height) + 22px) 0 70px;
}

:where([id]) {
  scroll-margin-top: calc(var(--topbar-height) + 28px);
}

.topbar {
  position: fixed;
  top: 10px;
  left: 50%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 50px;
  padding: 12px 20px;
  width: min(1160px, calc(100% - 40px));
  border-radius: 25px;
  background: var(--lavender);
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 500;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  color: var(--ink);
  flex: 0 0 auto;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-wordmark strong {
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  min-width: 0;
  justify-content: flex-end;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 500;
}

.main-nav a {
  white-space: nowrap;
  color: var(--ink);
  transition: color 180ms ease, opacity 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--teal);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 52px 0 4px;
}

.hero-composition {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(920px, 100%);
}

.hero-row {
  display: grid;
  width: 100%;
  gap: 10px;
}

.hero-row--top {
  grid-template-columns: minmax(0, 459fr) minmax(0, 140fr) minmax(0, 250fr);
  align-items: end;
}

.hero-row--bottom {
  grid-template-columns: minmax(0, 140fr) minmax(0, 490fr) minmax(0, 275fr);
  align-items: center;
}

.hero-block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 140px;
  border-radius: var(--radius-xl);
  box-sizing: border-box;
  transform-origin: center top;
  will-change: transform, opacity;
}

.hero-block__media {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
}

.hero-block--1,
.hero-block--5,
.hero-block--6 {
  padding: 0;
  background: transparent;
  min-height: 0;
  border-radius: 0;
}

.hero-block__svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.hero-block--2,
.hero-block--3,
.hero-block--4 {
  padding: 0;
  background: transparent;
}

.hero-block--2,
.hero-block--4 {
  align-self: stretch;
}

.hero-block--3 .hero-block__media {
  min-height: 140px;
  object-fit: cover;
}

.hero-block--preload {
  opacity: 0;
  transform: translateY(-180px) rotate(var(--hero-tilt, -4deg));
}

.hero-block--fall {
  animation: hero-block-fall 700ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--fall-delay, 0ms);
}

@keyframes hero-block-fall {
  0% {
    opacity: 0;
    transform: translateY(-180px) rotate(var(--hero-tilt, -4deg));
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

.hero-eyebrow {
  margin-top: 20px;
  font-size: 25px;
  line-height: 1.1;
  font-weight: 500;
}

.hero-copy {
  max-width: 648px;
  margin-top: 18px;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 500;
}

.home-reveal {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.65, 0.2, 1),
    transform 720ms cubic-bezier(0.2, 0.65, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.home-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 16px 30px;
  margin-top: 20px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--teal);
  font-size: 18px;
  line-height: 1.1;
  font-weight: 600;
  transition: background-color 180ms ease, box-shadow 220ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: #f0ffb1;
  box-shadow: 0 0 18px rgba(240, 255, 177, 0.8), 0 0 36px rgba(240, 255, 177, 0.42);
}

.hero-photo {
  position: absolute;
  right: 0;
  bottom: -12px;
  width: 219px;
  height: 140px;
  mask-image: url("./images/kontajnery-mask.svg");
  mask-size: 100% 100%;
  mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("./images/kontajnery-mask.svg");
  -webkit-mask-size: 100% 100%;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 34px 0 0;
}

.section-divider {
  height: 1px;
  background: var(--line);
}

.section-heading {
  display: grid;
  gap: 18px;
}

.section-heading--split {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  align-items: start;
  padding: 30px 0 50px;
}

.section-heading--thirds {
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); /* 40% / 60% */
}

/* Dvojstĺpec: pravý odsek zarovnať s h2, nie s eyebrow (výška eyebrow + margin-bottom) */
@media (min-width: 1081px) {
  .section-heading--split > p:not(.eyebrow) {
    margin-top: calc(14px + 8px);
  }
}

.section-heading h2,
.section--center h2 {
  font-size: 50px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.section-heading p:not(.eyebrow),
.section--center p:not(.eyebrow),
.cta-panel p:not(.eyebrow),
.final-cta p:not(.eyebrow) {
  font-size: 20px;
  line-height: 1.1;
  font-weight: 500;
}

.body-emphasis {
  font-weight: 700;
}

.eyebrow {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}

.eyebrow--center {
  margin-bottom: 12px;
  text-align: center;
}

.eyebrow--lime {
  color: var(--lime);
}

.eyebrow--light {
  color: var(--blush);
}

.panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.panel.cta-panel {
  overflow: visible;
}

.panel--teal {
  background: var(--teal);
  color: #dbdbff;
}

.panel--lavender {
  background: var(--lavender);
}

.panel--ink {
  background: var(--ink);
  color: #fbddd9;
}

body:not(.content-page) .landfill-panel,
body:not(.content-page) .sorted-free,
body:not(.content-page) .cta-panel,
body:not(.content-page) .insight-slider,
body:not(.content-page) .final-cta {
  transition:
    transform 260ms ease,
    background-color 260ms ease,
    border-color 260ms ease;
}


.landfill-panel {
  min-height: 550px;
  padding: 0;
  overflow: visible;
}

.landfill-slider__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.landfill-slider__track {
  display: flex;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.landfill-slide {
  position: relative;
  flex: 0 0 100%;
  min-height: 550px;
  overflow: hidden;
}

.landfill-slide--teal {
  background: var(--teal);
  color: #dbdbff;
}

.landfill-slide--ink {
  background: var(--ink);
  color: #dbdbff;
}

.landfill-slide--blush {
  background: var(--blush);
  color: var(--ink);
}

.landfill-slide__title {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 520px;
  margin: 0;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 400;
  z-index: 3;
}

.landfill-slide__title-line {
  display: block;
}

.landfill-slide__title-line--inline {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.landfill-slide__title-line--no-wrap {
  flex-wrap: nowrap;
  white-space: nowrap;
}

.landfill-slide__title-line--accent,
.landfill-slide__title strong {
  font-weight: 600;
}

.landfill-slide__title--teal .landfill-slide__title-line--accent,
.landfill-slide__title--ink .landfill-slide__title-line--accent,
.landfill-slide__title--ink strong {
  color: var(--lime);
}

.landfill-slide__title--blush strong {
  color: var(--teal);
}

.landfill-slide__inline-icon {
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  transform: translateY(2px);
}

/* Teal slide: desktop = 2 riadky (text, potom ikona+text), mobile = súvislý text */
.landfill-slide__title-flow {
  display: inline;
  white-space: normal;
  word-wrap: break-word;
}

.landfill-slide__title-flow-line {
  display: block;
}

.landfill-slide__title-flow .landfill-slide__title-line--accent {
  display: inline;
}

.landfill-slide__title--teal .landfill-slide__inline-icon {
  display: inline;
  flex: none;
  vertical-align: 0;
  transform: translateY(0);
}

.cta-panel__headline strong {
  color: inherit;
  font-weight: 600;
}

.landfill-note {
  position: absolute;
  border-radius: 25px;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: 0;
  font-weight: 400;
  z-index: 3;
  animation: slider-note-float 5.4s ease-in-out infinite;
  will-change: transform;
}

.landfill-note strong {
  font-weight: 600;
}

.landfill-note--lime {
  background: var(--lime);
  color: var(--ink);
}

.landfill-note--lavender {
  background: var(--lavender);
  color: var(--ink);
}

.landfill-note--ink {
  background: var(--ink);
  color: #dbdbff;
}

.landfill-note--slide-1-primary,
.landfill-note--slide-2-primary {
  top: 194px;
  left: 374px;
  width: 310px;
  min-height: 166px;
  padding: 18px 20px;
}

.landfill-note--slide-1-primary {
  animation-delay: -0.2s;
}

.landfill-note--slide-2-primary {
  animation-delay: -1.3s;
}

.landfill-note--slide-1-secondary,
.landfill-note--slide-2-secondary {
  right: 20px;
  bottom: 50px;
  width: 350px;
  min-height: 160px;
  padding: 18px 20px;
  animation-delay: -2.1s;
}

.landfill-note--slide-3-primary {
  top: 156px;
  left: 374px;
  width: 310px;
  min-height: 199px;
  padding: 18px 20px;
  animation-delay: -0.8s;
}

.landfill-note--slide-3-secondary {
  right: 20px;
  bottom: 62px;
  width: 350px;
  min-height: 130px;
  padding: 14px 18px;
  animation-delay: -2.8s;
}

.landfill-note__marker {
  display: inline-block;
  width: 22px;
  height: 23px;
  vertical-align: -0.35em;
  margin-right: 4px;
  transform: translateY(-9px);
}

.landfill-note span {
  display: inline;
}

.landfill-slide__art {
  position: absolute;
  display: block;
  max-width: none;
}

/* Slide 2: jeden blok vizuálu ako na slide 1/3 – obrázky sú v kontajneri */
.landfill-slide__media--slide-2 {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.landfill-slide__art--slide-1 {
  left: 18px;
  bottom: 80px;
  width: 480px;
  height: 344.127px;
  transform: scaleX(-1);
  transform-origin: center;
}

.landfill-slide__art--slide-2 {
  left: 18px;
  bottom: 20px;
  width: 605px;
  height: 376.12px;
}

.landfill-slide__art--slide-2-bags {
  top: 116px;
  right: 148px;
  width: 164px;
  height: 143.64px;
}

.landfill-slide__art--slide-3 {
  left: 18px;
  bottom: 20px;
  width: 693px;
  height: 318.872px;
}

.section-arrows {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(50%);
  z-index: 4;
}

.circle-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  width: 70px;
  height: 60px;
  appearance: none;
}

.slider-btn__icon {
  position: relative;
  display: block;
  width: 70px;
  height: 60px;
}

.slider-btn__icon--default,
.slider-btn__icon--hover {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.slider-btn__icon--hover {
  opacity: 0;
}

.circle-arrow:hover .slider-btn__icon--hover,
.circle-arrow:focus-visible .slider-btn__icon--hover,
.insight-slider__button:hover .slider-btn__icon--hover,
.insight-slider__button:focus-visible .slider-btn__icon--hover {
  opacity: 1;
}

.circle-arrow:hover .slider-btn__icon--default,
.circle-arrow:focus-visible .slider-btn__icon--default,
.insight-slider__button:hover .slider-btn__icon--default,
.insight-slider__button:focus-visible .slider-btn__icon--default {
  opacity: 0;
}

.circle-arrow img,
.circle-arrow .slider-btn__icon {
  display: block;
  width: 100%;
  height: 100%;
}

.circle-arrow:focus-visible,
.insight-slider__button:focus-visible {
  outline: none;
}

@keyframes slider-note-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes home-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes sorted-free-icon-turn {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.section--center {
  text-align: center;
  padding-top: 58px;
}

.section--sorted-free {
  padding-top: 58px;
  padding-bottom: 50px;
}

.sorted-free {
  position: relative;
  min-height: 243px;
}

.sorted-free__icon {
  position: absolute;
  top: 0;
  left: 70px;
  width: 140px;
  height: 140px;
  transform-origin: 50% 50%;
  animation: sorted-free-icon-turn 20s linear infinite;
}

.sorted-free h2 {
  width: 409px;
  margin: 0 auto;
  padding-top: 27px;
  font-size: 50px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 500;
  text-align: center;
}

.sorted-free h2 span {
  display: block;
}

.sorted-free p {
  width: 730px;
  margin: 50px auto 0;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 500;
  text-align: center;
}

body:not(.content-page) .cta-panel__inline-icon,
body:not(.content-page) .final-cta__shape img {
  animation: home-float 6.4s ease-in-out infinite;
}

.cta-panel {
  min-height: 350px;
  padding: 50px 20px 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  overflow: visible;
}

.cta-panel__headline {
  width: 979px;
  max-width: 100%;
  margin-top: 20px;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 400;
  color: #dbdbff;
}

.cta-panel__headline-line {
  display: inline;
}

.cta-panel__headline-line--inline {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cta-panel__headline-line--strong {
  font-weight: 600;
}

.cta-panel__inline-icon {
  display: inline-block;
  width: 29px;
  height: 29px;
  vertical-align: middle;
  margin: 0 6px;
  transform: translateY(4px);
}

.cta-panel__button,
.cta-panel__button:hover,
.cta-panel__button:focus-visible {
  width: 334px;
  height: 60px;
  min-height: 60px;
  margin-top: 50px;
  padding: 0 30px;
}

#ako-usetrit {
  padding-bottom: 70px;
}

.cta-panel__bins-wrap {
  position: absolute;
  right: 18px;
  bottom: -70px;
  width: 219px;
  height: 140px;
  pointer-events: none;
  mask-image: url("./images/kontajnery-mask.svg");
  mask-size: 100% 100%;
  mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("./images/kontajnery-mask.svg");
  -webkit-mask-size: 100% 100%;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
}

.cta-panel__bins {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.insight-slider {
  position: relative;
  margin-bottom: 63px;
}

.insight-slider__viewport {
  width: 100%;
  overflow: hidden;
}

.insight-slider__track {
  display: flex;
  gap: 20px;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.insight-slide {
  position: relative;
  flex: 0 0 auto;
  min-height: 550px;
  overflow: hidden;
}

.truck-panel {
  width: 945px;
  padding: 0;
}

.truck-panel picture {
  display: block;
  width: 100%;
}

.chart-panel {
  width: 1160px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chart-panel picture {
  display: block;
  width: 100%;
}

/* Na všetkých šírkach rovnaké SVG ako desktop (mobilné varianty skryté) */
.chart-panel .insight-slide__chart--desktop {
  display: block;
  width: 100%;
}

.chart-panel .insight-slide__chart--desktop .insight-slide__asset {
  max-height: none;
}

.chart-panel .insight-slide__chart--mobile {
  display: none;
}

.chart-panel .insight-slide__asset {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
}

.insight-slide__asset {
  display: block;
  width: 100%;
  height: auto;
}

.insight-slider__controls {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(50%);
  z-index: 4;
}

.insight-slider__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  appearance: none;
}

.insight-slider__button .slider-btn__icon {
  width: 70px;
  height: 60px;
}

.final-cta {
  min-height: 383px;
  padding: 0;
  text-align: center;
  overflow: visible;
}

.final-cta .eyebrow {
  position: absolute;
  top: 53px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  width: max-content;
}

.final-cta h2 {
  position: absolute;
  top: 83px;
  left: 50%;
  transform: translateX(-50%);
  width: 919px;
  max-width: calc(100% - 48px);
  margin: 0;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 400;
}

.final-cta > p:not(.eyebrow) {
  position: absolute;
  top: 212px;
  left: 50%;
  transform: translateX(-50%);
  width: 730px;
  max-width: calc(100% - 48px);
  margin: 0;
  color: #fbddd9;
}

.final-cta__button {
  position: absolute;
  top: 276px;
  left: 50%;
  transform: translateX(-50%);
  width: 334px;
  height: 60px;
  min-height: 60px;
  margin: 0;
  padding: 0 30px;
  flex: 0 0 auto;
}

.final-cta__button:hover,
.final-cta__button:focus-visible {
  transform: translateX(-50%);
}

.final-cta__shape {
  position: absolute;
  right: 64px;
  bottom: -53px;
  width: 140px;
  height: 140px;
}

.final-cta__shape img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

.page-kto .page-bottom-cta .final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 0;
  padding: 53px 24px 80px;
}

.page-kto .page-bottom-cta .final-cta .eyebrow,
.page-kto .page-bottom-cta .final-cta h2,
.page-kto .page-bottom-cta .final-cta__button {
  position: static;
  left: auto;
  top: auto;
  transform: none;
}

.page-kto .page-bottom-cta .final-cta .eyebrow {
  margin: 0 auto;
}

.page-kto .page-bottom-cta .final-cta h2 {
  width: 453px;
  max-width: 100%;
  margin: 30px auto 0;
  font-size: 40px;
}

.page-kto .page-bottom-cta .final-cta .final-cta__title-line {
  display: block;
}

.page-kto .page-bottom-cta .final-cta .final-cta__title-line--nowrap {
  white-space: nowrap;
}

.page-kto .page-bottom-cta .final-cta__button {
  width: 334px;
  max-width: 100%;
  height: 60px;
  min-height: 60px;
  margin: 50px auto 0;
  padding: 0 24px;
}

.page-kto .page-bottom-cta .final-cta__button:hover,
.page-kto .page-bottom-cta .final-cta__button:focus-visible {
  background: #f0ffb1;
  box-shadow: 0 0 18px rgba(240, 255, 177, 0.8), 0 0 36px rgba(240, 255, 177, 0.42);
  transform: none;
}

.page-kto .page-bottom-cta .final-cta__shape {
  display: block;
}

.site-footer {
  padding: var(--footer-padding-top) 0 var(--footer-padding-bottom);
}

.footer-panel {
  border-radius: 25px;
  background: var(--ink);
  color: #fbddd9;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 24px;
  padding: 50px 20px 30px;
}

.brand--footer {
  font-size: 20px;
  margin-bottom: 24px;
  color: #ffffff;
}

.footer-label {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 600;
  color: #ffffff;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 6px;
}

.footer-links a,
.footer-contact a {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  color: #fbddd9;
}

.footer-links a,
.footer-contact a {
  display: inline-block;
  width: max-content;
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--lime);
}

.footer-badge {
  display: inline-block;
  margin-top: 18px;
  color: inherit;
  text-decoration: none;
}

.footer-badge img {
  display: block;
  width: 149px;
  max-width: 100%;
  height: auto;
}

.footer-social {
  justify-self: end;
  text-align: left;
}

.footer-social__icons {
  display: flex;
  gap: 10px;
}

.footer-social__icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fbddd9;
  transition: opacity 180ms ease;
}

.footer-social__icons img {
  display: block;
  width: 30px;
  height: 30px;
  transition: opacity 180ms ease;
}

.footer-social__icons a::after {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.footer-social__icons a[aria-label="Facebook"]::after {
  background-image: url("./images/fb_hover.svg");
}

.footer-social__icons a[aria-label="Instagram"]::after {
  background-image: url("./images/ig_hover.svg");
}

.footer-social__icons a:hover,
.footer-social__icons a:focus-visible {
  outline: none;
}

.footer-social__icons a:hover img,
.footer-social__icons a:focus-visible img {
  opacity: 0;
}

.footer-social__icons a:hover::after,
.footer-social__icons a:focus-visible::after {
  opacity: 1;
}

.footer-social__icons svg,
.footer-social__icons path,
.footer-social__icons rect,
.footer-social__icons circle {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.footer-social__icons svg path:first-child {
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 20px 18px;
  font-size: 12px;
  line-height: 2;
  color: #fbddd9;
}

.footer-bottom p {
  color: #ffffff;
}

.footer-bottom a {
  color: #fbddd9;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

@media (max-width: 1080px) {
  .hero-composition {
    width: min(920px, 100%);
    gap: 20px;
  }

  .hero-photo {
    position: static;
    margin-top: 20px;
    align-self: flex-end;
  }

  .section-heading--split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-social {
    justify-self: start;
  }
}

@media (max-width: 820px) {
  :root {
    --footer-padding-top: 120px;
    --footer-padding-bottom: 20px;
  }

  .shell {
    width: min(calc(100% - 24px), 100%);
  }

  .page-header {
    padding-top: calc(var(--topbar-height) + 20px);
  }

  .topbar {
    top: 8px;
    left: 50%;
    width: min(calc(100% - 24px), 100%);
    flex-wrap: wrap;
    align-items: center;
    border-radius: 18px;
    gap: 10px;
    padding: 10px 12px 12px;
  }

  .brand {
    justify-content: flex-start;
    flex: 1 1 auto;
    font-size: 18px;
  }

  .nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .topbar.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
  }

  .topbar.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .topbar.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .main-nav {
    display: none;
    flex: 0 0 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 10px;
    margin-left: 0;
    border-top: 1px solid rgba(69, 31, 18, 0.12);
    font-size: 15px;
  }

  .topbar.is-open .main-nav {
    display: flex;
  }

  .main-nav a {
    flex: 0 0 auto;
  }

  .hero {
    padding-top: 28px;
    gap: 16px;
    align-items: stretch;
    text-align: left;
  }

  .hero-composition {
    width: 100%;
    gap: 2px;
  }

  .hero-row {
    gap: 10px;
  }

  .hero-eyebrow {
    margin-top: 16px;
    max-width: none;
    font-size: 18px;
  }

  .hero-copy {
    margin-top: 0;
    max-width: none;
    font-size: 16px;
    line-height: 1.35;
  }

  .button {
    min-height: 48px;
    padding: 14px 22px;
    margin-top: 8px;
    font-size: 16px;
  }

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

  .final-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 12px;
  }

  .final-cta .eyebrow,
  .final-cta h2,
  .final-cta > p:not(.eyebrow),
  .final-cta__button {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    width: auto;
    max-width: 100%;
  }

  .final-cta .eyebrow {
    width: auto;
    margin: 0 0 12px;
  }

  .final-cta > p:not(.eyebrow) {
    margin: 14px 0 0;
  }

  .final-cta__button {
    width: min(100%, 334px);
    height: 44px;
    min-height: 44px;
    margin-top: 24px;
    padding: 0 20px;
    font-size: 14px;
  }

  .final-cta__button:hover,
  .final-cta__button:focus-visible {
    transform: none;
  }

  .hero-photo {
    display: none;
  }

  .section {
    padding-top: 32px;
  }

  .section-heading--split {
    padding: 20px 0 14px;
    gap: 14px;
  }

  .eyebrow {
    font-size: 14px;
    letter-spacing: 0.32em;
  }

  .footer-label {
    font-size: 10px;
    letter-spacing: 0.32em;
  }

  .section-heading h2,
  .section--center h2,
  .cta-panel h2,
  .final-cta h2,
  .landfill-slide__title {
    font-size: 32px;
    line-height: 0.98;
  }

  .section-heading p:not(.eyebrow),
  .section--center p:not(.eyebrow),
  .cta-panel p:not(.eyebrow),
  .final-cta p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.35;
  }

  .section--sorted-free {
    padding-top: 24px;
  }

  .sorted-free {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sorted-free__icon {
    position: relative;
    top: auto;
    left: auto;
    width: 72px;
    height: 72px;
    margin-bottom: 10px;
  }

  .sorted-free h2 {
    width: auto;
    max-width: 280px;
    padding-top: 0;
    font-size: 32px;
  }

  .sorted-free p {
    width: auto;
    margin-top: 16px;
    max-width: 320px;
    font-size: 16px;
    line-height: 1.35;
  }

  .panel,
  .footer-panel {
    border-radius: 20px;
  }

  .landfill-panel,
  .truck-panel,
  .chart-panel,
  .cta-panel,
  .final-cta {
    min-height: 0;
  }

  .landfill-slider__viewport {
    border-radius: 20px;
  }

  .landfill-slide {
    min-height: 0;
    padding: 12px 12px 36px;
  }

  .landfill-slide__title {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 240px;
    font-size: 20px;
    line-height: 0.96;
  }

  .landfill-slide__title-line--inline {
    gap: 8px;
  }

  .landfill-slide--ink .landfill-slide__title-line--inline {
    flex-wrap: wrap;
    max-width: 100%;
  }

  .landfill-slide--ink .landfill-slide__title-line {
    max-width: 100%;
  }

  .landfill-slide__inline-icon {
    width: 20px;
    height: 20px;
    transform: translateY(1px);
  }

  .landfill-note {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(150px, 100%);
    min-height: 0;
    margin-top: 10px;
    padding: 9px;
    border-radius: 14px;
    font-size: 12px;
    line-height: 1.2;
  }

  .landfill-note--slide-1-secondary,
  .landfill-note--slide-2-secondary,
  .landfill-note--slide-3-secondary {
    margin-left: auto;
  }

  .landfill-note__marker {
    width: 14px;
    height: 15px;
    margin-right: 4px;
    vertical-align: -0.35em;
  }

  .landfill-slide__art {
    position: relative;
    inset: auto;
    width: auto;
    max-width: 100%;
    height: auto;
    margin-top: 4px;
    object-fit: contain;
  }

  .landfill-slide__art--slide-1 {
    width: min(100%, 180px);
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .landfill-slide__media--slide-2 {
    order: 2;
    position: relative;
    inset: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 4px;
    pointer-events: none;
  }

  .landfill-slide__media--slide-2 .landfill-slide__art--slide-2 {
    position: relative;
    width: min(100%, 190px);
    height: auto;
    margin-left: auto;
    margin-right: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .landfill-slide__media--slide-2 .landfill-slide__art--slide-2-bags {
    position: relative;
    width: 58px;
    height: auto;
    margin: 6px 0 0 auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .landfill-slide__art--slide-3 {
    width: min(100%, 190px);
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .section-arrows {
    inset: auto 0 0 0;
    padding: 0 12px;
    transform: translateY(50%);
  }

  .circle-arrow {
    width: 44px;
    height: auto;
  }

  .cta-panel {
    padding: 24px 16px;
  }

  .cta-panel__headline {
    width: auto;
    margin-top: 12px;
    max-width: 100%;
  }

  .cta-panel__headline-line--inline {
    gap: 6px;
  }

  .cta-panel__inline-icon {
    width: 20px;
    height: 20px;
    transform: translateY(2px);
  }

  .cta-panel__button,
  .cta-panel__button:hover,
  .cta-panel__button:focus-visible {
    width: min(100%, 334px);
    height: 48px;
    min-height: 48px;
    margin-top: 24px;
    padding: 0 20px;
  }

  .cta-panel__bins-wrap {
    position: relative;
    right: auto;
    bottom: auto;
    width: 180px;
    height: 115px;
    margin-top: 20px;
  }

  .cta-panel__bins {
    width: 100%;
    height: 100%;
  }

  .insight-slider {
    margin-bottom: 32px;
  }

  .insight-slider__track {
    gap: 16px;
  }

  .insight-slide {
    width: 100%;
    min-height: 0;
  }

  .truck-panel,
  .chart-panel {
    width: 100%;
    min-height: 0;
    padding: 0;
  }

  .insight-slider__controls {
    padding: 0 12px;
  }

  .insight-slider__button .slider-btn__icon {
    width: 44px;
    height: auto;
  }

  .final-cta__shape {
    right: 20px;
    bottom: -50px;
    width: 140px;
    height: 140px;
  }

  .final-cta__shape img {
    border-radius: 30px;
  }

  .footer-grid {
    gap: 24px;
    padding: 24px 16px 18px;
  }

  .brand--footer {
    margin-bottom: 14px;
    font-size: 16px;
  }

  .footer-links a,
  .footer-contact a {
    font-size: 14px;
    line-height: 1.5;
  }

  .footer-badge {
    margin-top: 14px;
  }

  .footer-social__icons a {
    width: 30px;
    height: 30px;
  }

  .footer-badge img {
    width: 112px;
  }

  .footer-social__icons img {
    width: 22px;
    height: 22px;
  }

  .footer-social__icons svg,
  .footer-social__icons path,
  .footer-social__icons rect,
  .footer-social__icons circle {
    width: 12px;
    height: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 0 12px 12px;
    font-size: 8px;
    line-height: 1.2;
  }
}

@media (max-width: 560px) {
  .landfill-slide {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px 12px 24px;
  }

  .landfill-slide__title {
    max-width: none;
    width: 100%;
    font-size: 19px;
    line-height: 0.95;
    min-width: 0;
    overflow-wrap: break-word;
  }

  .landfill-slide--ink .landfill-slide__title-line--inline {
    flex-wrap: wrap;
  }

  .landfill-slide__title-line--inline {
    gap: 6px;
  }

  .landfill-slide__inline-icon {
    width: 17px;
    height: 17px;
  }

  .landfill-note {
    width: 100%;
    margin-top: 0;
    padding: 10px 11px;
    border-radius: 14px;
    font-size: 12px;
    line-height: 1.18;
  }

  .landfill-note--slide-1-primary,
  .landfill-note--slide-2-primary,
  .landfill-note--slide-3-primary {
    order: 3;
  }

  .landfill-note--slide-1-secondary,
  .landfill-note--slide-2-secondary,
  .landfill-note--slide-3-secondary {
    order: 4;
    margin-left: 0;
  }

  .landfill-note__marker {
    width: 12px;
    height: 13px;
    margin-right: 4px;
    vertical-align: -0.35em;
  }

  .landfill-slide__art {
    order: 2;
    align-self: center;
    width: auto;
    height: auto;
    max-width: min(100%, 210px);
    max-height: 124px;
    margin-top: 0;
    object-fit: contain;
  }

  .landfill-slide__art--slide-1 {
    max-width: min(100%, 194px);
    max-height: 116px;
  }

  .landfill-slide__media--slide-2 {
    order: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 0;
    pointer-events: none;
  }

  .landfill-slide__media--slide-2 .landfill-slide__art--slide-2 {
    max-width: min(100%, 210px);
    max-height: 124px;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .landfill-slide__art--slide-3 {
    max-width: min(100%, 206px);
    max-height: 112px;
  }

  .landfill-slide__media--slide-2 .landfill-slide__art--slide-2-bags {
    position: absolute;
    right: 8px;
    bottom: 4px;
    align-self: flex-end;
    height: auto;
    max-height: 40px;
    width: 48px;
    margin: 0;
    z-index: 2;
    left: auto;
    top: auto;
  }
}

@media (max-width: 820px) {
  body:not(.content-page) main {
    padding-inline: 20px;
    box-sizing: border-box;
  }
  body:not(.content-page) .page-header .shell {
    padding-inline: 20px;
    box-sizing: border-box;
  }
  body:not(.content-page) .shell {
    width: min(370px, 100%);
    max-width: 100%;
  }

  body:not(.content-page) .page-header {
    padding-top: 90px;
    padding-bottom: 0;
  }

  body:not(.content-page) .topbar {
    top: 20px;
    width: min(370px, calc(100% - 40px));
    padding: 0;
    gap: 13px;
    background: transparent;
    border-radius: 0;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    backdrop-filter: none;
  }

  body:not(.content-page) .brand {
    flex: 1 1 auto;
    width: calc(100% - 83px);
    max-width: 287px;
    min-height: 50px;
    padding: 0 15px;
    border-radius: 25px;
    background: var(--lavender);
    font-size: clamp(12px, 4.2vw, 18px);
    justify-content: flex-start;
  }

  body:not(.content-page) .brand-mark {
    width: clamp(12px, 3.5vw, 18px);
    height: clamp(12px, 3.5vw, 18px);
    flex-shrink: 0;
  }

  body:not(.content-page) .nav-toggle {
    display: inline-flex;
    width: 70px;
    height: 50px;
    border-radius: 25px;
    background: var(--lime);
    flex: 0 0 auto;
  }

  body:not(.content-page) .nav-toggle span {
    width: 20px;
    background: #432319;
  }

  body:not(.content-page) .topbar.is-open {
    flex-wrap: wrap;
  }

  body:not(.content-page) .main-nav {
    display: none;
    flex: 0 0 100%;
    flex-direction: column;
    gap: 20px;
    margin-top: 12px;
    padding: 24px 20px 24px;
    background: var(--lavender);
    border-top: 0;
    border-radius: 25px;
    font-size: 20px;
    line-height: 1.2;
  }

  body:not(.content-page) .topbar.is-open .main-nav {
    display: flex;
  }

  body:not(.content-page) .hero {
    align-items: center;
    text-align: center;
    padding: 20px 0 56px;
    gap: 28px;
  }

  body:not(.content-page) .hero-composition {
    display: grid !important;
    grid-template-columns: 100px minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;
    align-items: stretch;
    row-gap: 4px !important;
    column-gap: 8px;
    width: 100%;
    max-width: 370px;
  }

  body:not(.content-page) .hero-row {
    display: contents;
  }

  body:not(.content-page) .hero-row + .hero-row {
    margin-top: 0;
  }

  body:not(.content-page) .hero-block--1 {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
    width: min(329px, 100%);
    max-width: 100%;
  }

  body:not(.content-page) .hero-block--2 {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
    width: 100px;
    max-width: 100%;
  }

  body:not(.content-page) .hero-block--3 {
    grid-column: 2;
    grid-row: 2;
    justify-self: stretch;
    width: auto;
    min-width: 0;
  }

  body:not(.content-page) .hero-block--4 {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
    width: 100px;
    max-width: 100%;
  }

  body:not(.content-page) .hero-block--5 {
    grid-column: 2;
    grid-row: 3;
    justify-self: stretch;
    width: auto;
    min-width: 0;
  }

  body:not(.content-page) .hero-block--6 {
    grid-column: 1 / -1;
    grid-row: 4;
    justify-self: center;
    width: min(366px, 100%);
    max-width: 100%;
  }

  body:not(.content-page) .hero-block--3 .hero-block__media {
    display: block;
    width: 100%;
    height: auto;
  }

  body:not(.content-page) .hero-eyebrow {
    order: 1;
    width: 350px;
    max-width: 100%;
    margin-top: 0;
    font-size: 25px;
    line-height: 1.1;
  }

  body:not(.content-page) .hero-copy {
    order: 2;
    width: 350px;
    max-width: 100%;
    margin-top: 0;
    font-size: 20px;
    line-height: 1.1;
  }

  body:not(.content-page) .button {
    min-height: 60px;
    padding: 0 24px;
    font-size: 18px;
    margin-top: 0;
  }

  body:not(.content-page) .hero-button {
    order: 4;
    width: min(334px, 100%);
    margin-top: 0;
  }

  body:not(.content-page) .hero-photo {
    order: 3;
    display: block;
    position: relative;
    right: auto;
    bottom: auto;
    width: 250px;
    height: 140px;
    margin: 0 auto;
    border-radius: 40px;
    overflow: hidden;
  }

  body:not(.content-page) .section {
    padding-top: 40px;
  }

  body:not(.content-page) #ako-usetrit {
    padding-top: 0;
  }

  body:not(.content-page) main > .section:first-child {
    padding-top: 0;
  }

  body:not(.content-page) .section-divider {
    margin-bottom: 30px;
  }

  body:not(.content-page) main > .section:first-child .section-heading .eyebrow {
    margin-bottom: 10px;
  }

  body:not(.content-page) main > .section:first-child .section-heading h2 {
    margin-top: 0;
    margin-bottom: 30px;
  }

  body:not(.content-page) main > .section:first-child .section-heading p {
    margin-top: 0;
  }

  body:not(.content-page) main > .section:first-child .landfill-panel {
    margin-bottom: 50px;
  }

  body:not(.content-page) .section-heading--split {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    margin-bottom: 30px;
  }

  body:not(.content-page) main > .section:first-child .section-heading--split {
    padding: 0;
  }

  body:not(.content-page) .section-heading--split > div:first-child {
    height: auto;
    min-height: unset;
    align-self: start;
  }

  body:not(.content-page) .eyebrow,
  body:not(.content-page) .footer-label {
    font-size: 14px;
    letter-spacing: 0.4em;
  }

  body:not(.content-page) .section-heading h2,
  body:not(.content-page) .sorted-free h2,
  body:not(.content-page) .cta-panel h2:not(.cta-panel__headline),
  body:not(.content-page) .final-cta h2 {
    width: 100%;
    max-width: 370px;
    font-size: 40px;
    line-height: 1;
    box-sizing: border-box;
  }

  body:not(.content-page) .section-heading h2 {
    margin-top: 30px;
  }

  body:not(.content-page) .section-heading p:not(.eyebrow),
  body:not(.content-page) .sorted-free p:not(.eyebrow),
  body:not(.content-page) .cta-panel p:not(.eyebrow),
  body:not(.content-page) .final-cta p:not(.eyebrow) {
    width: 100%;
    max-width: 370px;
    margin-top: 30px;
    font-size: 20px;
    line-height: 1.1;
    box-sizing: border-box;
  }

  body:not(.content-page) .landfill-panel,
  body:not(.content-page) .cta-panel,
  body:not(.content-page) .final-cta,
  body:not(.content-page) .truck-panel,
  body:not(.content-page) .chart-panel,
  body:not(.content-page) .footer-panel {
    width: 100%;
    border-radius: 25px;
  }

  body:not(.content-page) .landfill-slider__viewport {
    border-radius: 25px;
  }


  body:not(.content-page) .landfill-slide__title {
    width: 330px;
    max-width: 100%;
    font-size: 30px;
    line-height: 1;
  }

  body:not(.content-page) .landfill-slide__inline-icon {
    width: 22px;
    height: 22px;
    transform: translateY(1px);
  }


  body:not(.content-page) .landfill-note {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 330px;
    box-sizing: border-box;
    min-height: 120px;
    margin: 0;
    padding: 20px;
    border-radius: 25px;
    font-size: 25px;
    line-height: 1.1;
    animation: none;
  }

  body:not(.content-page) .landfill-note--slide-3-secondary {
    min-height: 100px;
  }

  body:not(.content-page) .landfill-note__marker {
    width: 20px;
    height: 20px;
    margin-right: 4px;
    vertical-align: middle;
    transform: none;
  }

  body:not(.content-page) .landfill-panel .section-arrows {
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(50%);
  }

  body:not(.content-page) .landfill-slide {
    display: grid;
    /* Bez 1fr – inak sa stredný riadok (obrázok) roztiahne a vznikne prázdne miesto nad/pod ilustráciou */
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    align-items: start;
    justify-items: stretch;
    min-height: 0;
    padding: 16px 20px 40px;
    gap: 0;
  }

  body:not(.content-page) .landfill-slide .landfill-slide__title {
    grid-row: 1;
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 330px;
    margin: 0;
    box-sizing: border-box;
    min-width: 0;
    overflow-wrap: break-word;
  }

  /* Slide 2 (ink): rovnaká šírka textu ako pri slide 1/3 – riadky sa zalamujú do šírky slidu */
  body:not(.content-page) .landfill-slide--ink .landfill-slide__title-line {
    max-width: 100%;
  }

  body:not(.content-page) .landfill-slide--ink .landfill-slide__title-line--inline {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 8px;
    max-width: 100%;
  }

  body:not(.content-page) .landfill-slide--teal .landfill-slide__title-flow-line {
    display: inline;
  }

  body:not(.content-page) .landfill-slide--teal .landfill-slide__inline-icon {
    display: inline;
    width: 22px;
    height: 22px;
    vertical-align: 0;
    transform: translateY(0);
  }

  body:not(.content-page) .landfill-slide .landfill-slide__art {
    grid-row: 2;
    position: relative;
    width: auto;
    max-width: 276px;
    max-height: none;
    height: auto;
    margin: 6px auto 4px;
    object-fit: contain;
    justify-self: center;
    align-self: start;
  }

  body:not(.content-page) .landfill-slide .landfill-slide__media--slide-2 {
    grid-row: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 330px;
    margin: 6px auto 4px;
    min-height: 0;
    justify-self: center;
    pointer-events: none;
  }

  body:not(.content-page) .landfill-slide .landfill-slide__media--slide-2 .landfill-slide__art--slide-2 {
    position: relative;
    max-width: 300px;
    max-height: 188px;
    width: auto;
    margin: 0 auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    grid-row: auto;
    justify-self: auto;
    align-self: auto;
  }

  body:not(.content-page) .landfill-slide .landfill-slide__media--slide-2 .landfill-slide__art--slide-2-bags {
    position: absolute;
    right: 12px;
    bottom: 8px;
    width: 82px;
    max-height: 72px;
    margin: 0;
    z-index: 2;
    left: auto;
    top: auto;
    grid-row: auto;
    align-self: auto;
    justify-self: auto;
  }

  body:not(.content-page) .landfill-slide .landfill-slide__art--slide-3 {
    max-width: 300px;
    max-height: 156px;
  }

  body:not(.content-page) .landfill-slide .landfill-note {
    position: relative;
    left: auto;
    width: 100%;
    max-width: 330px;
    min-height: 120px;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
  }

  /* Rovnaká šírka ako slide 1 – kratší text na slide 2 by inak zúžil box (grid min-width: auto ≈ min-content) */
  body:not(.content-page) .landfill-slide .landfill-note--slide-1-primary,
  body:not(.content-page) .landfill-slide .landfill-note--slide-2-primary,
  body:not(.content-page) .landfill-slide .landfill-note--slide-3-primary {
    grid-row: 3;
    top: auto;
    margin-bottom: 8px;
    width: 100%;
    max-width: 330px;
    min-width: 0;
    justify-self: stretch;
  }

  body:not(.content-page) .landfill-slide .landfill-note--slide-1-secondary,
  body:not(.content-page) .landfill-slide .landfill-note--slide-2-secondary,
  body:not(.content-page) .landfill-slide .landfill-note--slide-3-secondary {
    grid-row: 4;
    top: auto;
  }

  body:not(.content-page) .circle-arrow,
  body:not(.content-page) .insight-slider__button {
    width: 70px;
    height: 60px;
  }

  body:not(.content-page) .circle-arrow .slider-btn__icon,
  body:not(.content-page) .insight-slider__button .slider-btn__icon {
    width: 70px;
    height: 60px;
  }

  body:not(.content-page) .section--sorted-free {
    padding-top: 40px;
  }

  body:not(.content-page) .sorted-free {
    align-items: center;
    text-align: center;
  }

  body:not(.content-page) .sorted-free__icon {
    display: none;
  }

  body:not(.content-page) .sorted-free h2 {
    padding-top: 0;
  }

  body:not(.content-page) .sorted-free p {
    margin-top: 30px;
  }

  body:not(.content-page) .cta-panel {
    min-height: 520px;
    padding: 50px 20px 120px;
    text-align: center;
  }

  body:not(.content-page) .cta-panel .eyebrow {
    margin: 0;
  }

  body:not(.content-page) .cta-panel__headline {
    width: 330px;
    max-width: 100%;
    margin: 30px auto 0;
    font-size: 30px;
    line-height: 1;
  }

  body:not(.content-page) .cta-panel__headline-line {
    display: inline;
  }

  body:not(.content-page) .cta-panel__headline-line + .cta-panel__headline-line::before {
    content: " ";
  }

  body:not(.content-page) .cta-panel__headline-line--inline {
    display: inline;
  }

  body:not(.content-page) .cta-panel__inline-icon {
    width: 22px;
    height: 22px;
    vertical-align: middle;
    transform: translateY(-1px);
  }

  body:not(.content-page) .cta-panel__button,
  body:not(.content-page) .cta-panel__button:hover,
  body:not(.content-page) .cta-panel__button:focus-visible {
    width: 330px;
    max-width: 100%;
    height: 60px;
    min-height: 60px;
    margin-top: 50px;
    padding: 0 24px;
  }

  body:not(.content-page) .cta-panel__bins-wrap {
    position: absolute;
    right: 25px;
    bottom: -50px;
    width: 250px;
    height: 140px;
    margin: 0;
  }

  body:not(.content-page) .cta-panel__bins {
    transform: none;
  }

  body:not(.content-page) .insight-slider {
    margin-top: 30px;
    margin-bottom: 60px;
  }

  body:not(.content-page) .insight-slider__track {
    gap: 20px;
  }

  body:not(.content-page) .insight-slide,
  body:not(.content-page) .truck-panel,
  body:not(.content-page) .chart-panel {
    width: 370px;
    min-height: 660px;
  }

  body:not(.content-page) .insight-slider__controls {
    padding: 0 40px;
    transform: translateY(50%);
  }

  body:not(.content-page) .final-cta {
    min-height: 582px;
    padding: 53px 20px 120px;
  }

  body:not(.content-page) .final-cta .eyebrow,
  body:not(.content-page) .final-cta h2,
  body:not(.content-page) .final-cta > p:not(.eyebrow),
  body:not(.content-page) .final-cta__button {
    position: static;
    transform: none;
    left: auto;
    top: auto;
  }

  body:not(.content-page) .final-cta .eyebrow {
    margin: 0 auto;
  }

  body:not(.content-page) .final-cta h2 {
    margin: 30px auto 0;
    font-size: 30px;
  }

  body:not(.content-page) .final-cta > p:not(.eyebrow) {
    margin: 28px auto 0;
    color: #fbddd9;
  }

  body:not(.content-page) .final-cta__button {
    width: 334px;
    max-width: 100%;
    height: 60px;
    min-height: 60px;
    margin-top: 50px;
    padding: 0 24px;
    transform: none;
  }

  body:not(.content-page) .final-cta__button:hover,
  body:not(.content-page) .final-cta__button:focus-visible {
    transform: none;
  }

  body:not(.content-page) .final-cta__shape {
    right: 25px;
    bottom: -60px;
    width: 140px;
    height: 140px;
  }

  body:not(.content-page) .footer-grid {
    gap: 34px;
    padding: 50px 20px 18px;
    grid-template-columns: 1fr;
  }

  body:not(.content-page) .brand--footer {
    font-size: 20px;
    margin-bottom: 24px;
    background: transparent;
    border-radius: 0;
    padding: 0;
    min-height: 0;
    width: auto;
    max-width: none;
  }

  body:not(.content-page) .footer-links a,
  body:not(.content-page) .footer-contact a {
    font-size: 16px;
    line-height: 1.4;
  }

  body:not(.content-page) .footer-badge {
    margin-top: 16px;
  }

  body:not(.content-page) .footer-badge img {
    width: 149px;
  }

  body:not(.content-page) .footer-social {
    justify-self: start;
  }

  body:not(.content-page) .footer-social__icons a,
  body:not(.content-page) .footer-social__icons img {
    width: 30px;
    height: 30px;
  }

  body:not(.content-page) .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 20px 20px;
    font-size: 12px;
    line-height: 2;
  }
}

@media (max-width: 560px) {
  body:not(.content-page) .page-header {
    padding-top: 90px;
    padding-bottom: 0;
  }

  body:not(.content-page) .landfill-slide {
    min-height: 0;
    padding: 12px 16px 40px;
  }

  body:not(.content-page) .landfill-slide__title {
    font-size: 30px;
  }

  body:not(.content-page) .landfill-note {
    font-size: 25px;
  }

  body:not(.content-page) .landfill-panel .section-arrows {
    justify-content: space-between;
    padding: 0 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .home-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .sorted-free__icon {
    animation: none;
  }

  .landfill-note {
    animation: none;
  }

  body:not(.content-page) .landfill-panel,
  body:not(.content-page) .sorted-free,
  body:not(.content-page) .cta-panel,
  body:not(.content-page) .insight-slider,
  body:not(.content-page) .final-cta,
  body:not(.content-page) .cta-panel__inline-icon,
  body:not(.content-page) .cta-panel__bins-wrap,
  body:not(.content-page) .cta-panel__bins,
  body:not(.content-page) .final-cta__shape img {
    animation: none;
    transition: none;
    transform: none;
  }

  .hero-block--preload {
    opacity: 1;
    transform: none;
  }

  .hero-block--fall {
    animation: none;
  }

  .circle-arrow,
  .circle-arrow .slider-btn__icon--default,
  .circle-arrow .slider-btn__icon--hover,
  .insight-slider__button,
  .insight-slider__button .slider-btn__icon--default,
  .insight-slider__button .slider-btn__icon--hover {
    transition: none;
  }
}

/* WordPress: prihlásený používateľ – fixný topbar pod admin lištou (#wpadminbar 32px / 46px) */
body.admin-bar .topbar {
  top: calc(32px + 10px);
}

@media (max-width: 820px) {
  body.admin-bar .topbar {
    top: calc(32px + 20px);
  }
}

@media screen and (max-width: 782px) {
  body.admin-bar .topbar {
    top: calc(46px + 20px);
  }
}
