/* LIGHV Demo Design — extracted from demo html clickdummy */

.lv, .lv body {
  margin: 0;
  padding: 0;
  background: #fff;
  overflow-x: hidden;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  -webkit-font-smoothing: antialiased;
}

.lv *, .lv *::before, .lv *::after { box-sizing: border-box; }
.lv a { color: #0B2D1F; text-decoration: none; }
.lv a:hover { color: #00C26E; }
.lv img { max-width: 100%; height: auto; display: block; }
.lv ul { list-style: none; margin: 0; padding: 0; }
.lv input, .lv select, .lv button { font-family: inherit; }
.lv input[type="range"] { accent-color: #0B2D1F; width: 100%; }
.lv input[type="checkbox"] { accent-color: #0B2D1F; width: 15px; height: 15px; }

.lv .wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding-inline: 40px;
}

.lv .skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: #0B2D1F;
  color: #fff;
}
.lv .skip-link:focus { left: 0; }

/* Header */
.lv .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #E4E8EA;
}

.lv .header-inner {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.lv .wordmark {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #0B2D1F;
}
.lv .wordmark:hover { color: #0B2D1F; }
.lv .wordmark--logo {
  display: block;
  flex: 0 0 auto;
  line-height: 0;
}
.lv .wordmark--logo img {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(180px, 48vw);
}
@media (min-width: 900px) {
  .lv .wordmark--logo img {
    height: 50px;
    max-width: min(200px, 48vw);
  }
}
.lv .wordmark__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.lv .wordmark__text strong {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 3px;
}
.lv .wordmark__text small {
  font-size: 8.5px;
  letter-spacing: 0.6px;
  color: #6E767B;
  margin-top: 4px;
  font-weight: 400;
}

.lv .desktop-nav {
  display: flex;
  align-items: center;
}
.lv .desktop-nav__inner {
  position: relative;
  display: flex;
  align-items: center;
}
.lv .desktop-nav__bubble,
.lv .nav-bubble {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-radius: 8px;
  background: #0B2D1F;
  pointer-events: none;
  opacity: 0;
  will-change: top, left, width, height, opacity;
}
.lv .desktop-nav__list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
.lv .desktop-nav__item {
  position: relative;
}
.lv .desktop-nav__item > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 1;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s ease;
}
.lv .desktop-nav__inner > a {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.lv .site-header.has-nav-bubble .desktop-nav__item > a.is-bubble-target,
.lv .site-header.has-nav-bubble .desktop-nav__inner > a.is-bubble-target {
  color: #fff;
  font-weight: 600;
}
.lv .site-header.has-nav-bubble .desktop-nav__item > a.is-bubble-target .desktop-nav__caret {
  opacity: 0.85;
}
.lv .site-header.has-nav-bubble .desktop-nav__item > a[aria-current="page"]:not(.is-bubble-target),
.lv .site-header.has-nav-bubble .desktop-nav__inner > a[aria-current="page"]:not(.is-bubble-target) {
  color: #0B2D1F;
  font-weight: 600;
}
.lv .site-header.has-nav-bubble .desktop-nav__item > a.is-bubble-target:hover,
.lv .site-header.has-nav-bubble .desktop-nav__inner > a.is-bubble-target:hover {
  color: #fff;
}
.lv .desktop-nav__caret {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  opacity: 0.55;
  transition: transform 0.2s ease;
}
.lv .desktop-nav__item.has-children:hover .desktop-nav__caret,
.lv .desktop-nav__item.has-children:focus-within .desktop-nav__caret {
  transform: rotate(180deg);
}
.lv .desktop-nav__submenu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  border: 1px solid #E4E8EA;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(11, 45, 31, 0.12);
  z-index: 110;
}
.lv .desktop-nav__submenu a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  white-space: nowrap;
}
.lv .desktop-nav__submenu a:hover {
  color: #00C26E;
  background: rgba(0, 194, 110, 0.06);
}
.lv .desktop-nav__submenu a[aria-current="page"] {
  color: #0B2D1F;
  font-weight: 600;
  background: rgba(11, 45, 31, 0.05);
}
.lv .desktop-nav__item.has-children::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}
.lv .desktop-nav__item.has-children:hover .desktop-nav__submenu,
.lv .desktop-nav__item.has-children:focus-within .desktop-nav__submenu {
  display: block;
}
.lv .desktop-nav a {
  font-size: 15px;
  font-weight: 500;
  color: #222;
}
.lv .site-header:not(.has-nav-bubble) .desktop-nav a:hover { color: #00C26E; }
.lv .site-header:not(.has-nav-bubble) .desktop-nav a[aria-current="page"],
.lv .site-header:not(.has-nav-bubble) .desktop-nav__inner > a.is-active {
  font-weight: 600;
  color: #0B2D1F;
}

.lv .header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lv .header-lang {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 14px;
  font-weight: 500;
  color: #222;
}

.lv .header-lang__bubble {
  border-radius: 6px;
  background: #0B2D1F;
}

.lv .header-lang__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  color: inherit;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.lv .header-lang:not(.has-lang-bubble) .header-lang__link:hover {
  color: #0B2D1F;
  background: rgba(11, 45, 31, 0.06);
}

.lv .header-lang:not(.has-lang-bubble) .header-lang__link.is-active {
  color: #0B2D1F;
  background: rgba(11, 45, 31, 0.1);
}

.lv .header-lang.has-lang-bubble .header-lang__link {
  position: relative;
  z-index: 1;
}

.lv .header-lang.has-lang-bubble .header-lang__link:hover {
  background: none;
}

.lv .header-lang.has-lang-bubble .header-lang__link.is-bubble-target {
  color: #fff;
  font-weight: 600;
}

.lv .header-lang.has-lang-bubble .header-lang__link.is-active:not(.is-bubble-target),
.lv .header-lang.has-lang-bubble .header-lang__link[aria-current="true"]:not(.is-bubble-target) {
  color: #0B2D1F;
  background: none;
  font-weight: 600;
}

.lv .btn-fachkreis {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #0B2D1F;
  color: #fff !important;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  border: none;
}
.lv .btn-fachkreis:hover {
  background: #123D2B;
  color: #fff !important;
}
.lv .btn-fachkreis svg,
.lv .btn-fachkreis__lock {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  overflow: visible;
}
.lv .btn-fachkreis__lock-shackle {
  transform-box: fill-box;
  transform-origin: 8px 10px;
  transition: transform 0.42s cubic-bezier(0.34, 1.35, 0.64, 1);
}
.lv .btn-fachkreis:hover .btn-fachkreis__lock-shackle,
.lv .btn-fachkreis:focus-visible .btn-fachkreis__lock-shackle {
  transform: translateY(-5px) rotate(-16deg);
}
@media (prefers-reduced-motion: reduce) {
  .lv .btn-fachkreis__lock-shackle {
    transition: none;
  }
  .lv .btn-fachkreis:hover .btn-fachkreis__lock-shackle,
  .lv .btn-fachkreis:focus-visible .btn-fachkreis__lock-shackle {
    transform: none;
  }
}

.lv .hamburger-btn { display: none; }
.lv .mobile-nav-panel,
.lv .mobile-nav-overlay { display: none; }

.lv .hamburger-btn {
  width: 38px;
  height: 38px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.lv .hamburger-btn span {
  width: 22px;
  height: 2px;
  background: #0B2D1F;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.lv .hamburger-btn[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}
.lv .hamburger-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.lv .hamburger-btn[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.lv.nav-is-open { overflow: hidden; }
.lv .mobile-nav-panel a {
  font-size: 15px;
  font-weight: 500;
  color: #222;
  padding: 12px 0;
  border-bottom: 1px solid #F0F2F1;
}
.lv .mobile-nav-panel a[aria-current="page"] { color: #0B2D1F; font-weight: 600; }
.lv .mobile-nav-panel .mobile-nav__children {
  display: flex;
  flex-direction: column;
  padding: 0 0 4px 16px;
  margin-top: -4px;
}
.lv .mobile-nav-panel .mobile-nav__child {
  font-size: 14px;
  font-weight: 500;
  color: #6E767B;
  padding: 10px 0;
  border-bottom: 1px solid #F0F2F1;
}
.lv .mobile-nav-panel .mobile-nav__child[aria-current="page"] {
  color: #0B2D1F;
  font-weight: 600;
}
.lv .mobile-nav-panel .btn-fachkreis {
  justify-content: center;
  margin-top: 12px;
  padding: 14px 20px;
}

/* Buttons */
.lv .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.lv .btn--primary {
  background: #0B2D1F;
  color: #fff !important;
  border-color: #0B2D1F;
}
.lv .btn--primary:hover { background: #123D2B; color: #fff !important; }
.lv .btn--secondary {
  background: #fff;
  color: #0B2D1F !important;
  border-color: #E4E8EA;
}
.lv .btn--secondary:hover { border-color: #0B2D1F; color: #0B2D1F !important; }
.lv .btn--outline {
  background: #fff;
  color: #0B2D1F !important;
  border-color: #C9D2CD;
}
.lv .btn--outline:hover { border-color: #0B2D1F; }
.lv .btn--ghost-dark {
  background: rgba(255, 255, 255, 0.9);
  color: #0B2D1F !important;
  border-color: #0B2D1F;
}
.lv .btn--ghost-dark:hover { background: #fff; }
.lv .btn--white {
  background: #fff;
  color: #0B2D1F !important;
  border: none;
}
.lv .btn--white:hover { background: #E9F0EC; color: #0B2D1F !important; }
.lv .btn--white-outline {
  background: transparent;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.lv .btn--white-outline:hover {
  border-color: #fff;
  color: #fff !important;
}

/* link-arrow = outline button CTA (CMS, sections, portal) */
.lv a.link-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  background: #fff;
  color: #0B2D1F !important;
  border: 1px solid #C9D2CD;
  transition:
    background-color 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.lv a.link-arrow:hover {
  border-color: #0B2D1F;
  color: #0B2D1F !important;
  background: #F4F8F6;
  box-shadow: 0 12px 32px rgba(11, 45, 31, 0.12);
  transform: translateY(-2px);
  text-decoration: none;
}
.lv a.link-arrow:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(11, 45, 31, 0.08);
}
.lv a.link-arrow::after {
  content: "→";
  font-size: 14px;
  line-height: 1;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.lv a.link-arrow:hover::after { transform: translateX(5px); }
.lv a.link-arrow:has(svg)::after { content: none; }
.lv a.link-arrow svg {
  width: 15px;
  height: 11px;
  flex-shrink: 0;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.lv a.link-arrow:hover svg { transform: translateX(5px); }

.lv .section-cta a.link-arrow:not([class*="btn--"]),
.lv .cta-band a.link-arrow:not([class*="btn--"]) {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.42);
}
.lv .section-cta a.link-arrow:not([class*="btn--"]):hover,
.lv .cta-band a.link-arrow:not([class*="btn--"]):hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  color: #fff !important;
}

.lv .rte p:has(> a.link-arrow),
.lv .lead p:has(> a.link-arrow),
.lv .split-body.rte p:has(> a.link-arrow) {
  margin-top: 1.75rem;
}

@media (prefers-reduced-motion: reduce) {
  .lv a.link-arrow,
  .lv a.link-arrow::after,
  .lv a.link-arrow svg {
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  }
  .lv a.link-arrow:hover,
  .lv a.link-arrow:active {
    transform: none;
  }
  .lv a.link-arrow:hover::after,
  .lv a.link-arrow:hover svg {
    transform: none;
  }
}

/* Hero home */
.lv .hero-home {
  position: relative;
  min-height: clamp(780px, 100vh, 980px);
  height: auto;
  background: #EDF1EF;
  overflow: hidden;
}
.lv .hero-home__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Keep <video> compositor layers below overlay/text (esp. iOS/Android). */
  isolation: isolate;
  overflow: hidden;
  pointer-events: none;
}
.lv .hero-home__media .hero-home__video,
.lv .hero-home__media .hero-home__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
  transform-origin: center center;
  pointer-events: none;
  -webkit-touch-callout: none;
}
.lv .hero-home__media .hero-home__poster {
  z-index: 0;
}
.lv .hero-home__media--image .hero-home__poster {
  z-index: 1;
}
.lv .hero-home__media .hero-home__video {
  z-index: 1;
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .lv .hero-home__media .hero-home__video {
    display: none;
  }
}
.lv .hero-home__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.72) 38%, rgba(255,255,255,0.28) 62%, rgba(255,255,255,0) 82%);
  pointer-events: none;
}
.lv .hero-home__content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(110px, 16vh, 160px) 40px clamp(88px, 12vh, 130px);
  min-height: clamp(780px, 100vh, 980px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
  box-sizing: border-box;
}
.lv .hero-home__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  line-height: 1.14;
  color: #0B2D1F;
  margin: 0;
  max-width: min(38rem, 92%);
  text-wrap: balance;
}
.lv .hero-home__sub {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.5;
  color: #222;
  margin: 1.25rem 0 0;
  font-weight: 400;
  max-width: min(34rem, 92%);
}
.lv .hero-home__sub + .hero-home__sub {
  margin-top: 0.55rem;
}
.lv .hero-home__buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  pointer-events: auto;
  margin-top: 2rem;
}
.lv .hero-home__buttons .btn {
  padding: 17px 28px;
  font-size: 13px;
}

/* Trust bar */
.lv .trust-bar {
  background: #0B2D1F;
}
.lv .trust-bar__grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 34px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.lv .trust-bar__item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 32px;
}
.lv .trust-bar__item + .trust-bar__item {
  padding-left: 32px;
  padding-right: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.lv .trust-bar__item:last-child { padding-right: 0; }
.lv .trust-bar__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  color: #fff;
}
.lv .trust-bar__icon svg { width: 100%; height: 100%; }
.lv .trust-bar__title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
}
.lv .trust-bar__sub {
  font-size: 12px;
  color: #9DB4A8;
  margin-top: 5px;
}

.lv .sales-counter {
  padding: 2.75rem 0;
  background: linear-gradient(180deg, rgba(26, 61, 46, 0.04) 0%, rgba(26, 61, 46, 0.08) 100%);
  border-block: 1px solid var(--line);
}

.lv .sales-counter__text {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
  text-align: center;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.45;
  color: var(--green-deep);
}

.lv .sales-counter__lead,
.lv .sales-counter__trail {
  font-weight: 500;
}

.lv .sales-counter__num {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--green-accent, #466d54);
}

@media (max-width: 720px) {
  .lv .sales-counter {
    padding: 2rem 0;
  }

  .lv .sales-counter__text {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .lv .sales-counter__num {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.5rem, 9.2vw, 2.25rem);
    letter-spacing: -0.03em;
    overflow-wrap: anywhere;
  }

  .lv .sales-counter__trail {
    max-width: 24ch;
  }
}

/* Vision */
.lv .vision-section {
  background: #fff;
  overflow-x: clip;
  max-width: 100%;
}
.lv .vision-grid {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 96px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.lv .vision-grid > * {
  min-width: 0;
  max-width: 100%;
}
.lv .section-label {
  font-size: 15px;
  font-weight: 600;
  color: #00A860;
  margin-bottom: 18px;
}
.lv .section-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 38px;
  line-height: 1.2;
  color: #0B2D1F;
  margin: 0 0 24px;
  text-wrap: pretty;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.lv .section-title--sm { font-size: 28px; margin-bottom: 36px; }
.lv .section-text {
  font-size: 16px;
  line-height: 1.8;
  color: #6E767B;
  margin: 0 0 36px;
  max-width: 440px;
}
.lv .vision-media {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(11, 45, 31, 0.10);
}
.lv .vision-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
  transform-origin: center center;
}

/* Quality cards */
.lv .quality-section { background: #fff; }
.lv .quality-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 48px 40px 96px;
}
.lv .quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.lv .quality-card {
  border: 1px solid #E4E8EA;
  border-radius: 16px;
  padding: 38px 30px;
  text-align: center;
  background: #fff;
  transition: box-shadow 0.2s;
}
.lv .quality-card:hover { box-shadow: 0 12px 32px rgba(11, 45, 31, 0.08); }
.lv .quality-card__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 20px;
  color: #0B2D1F;
}
.lv .quality-card__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.lv .quality-card h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #0B2D1F;
  margin: 0 0 12px;
}
.lv .quality-card p {
  font-size: 13.5px;
  line-height: 1.65;
  color: #6E767B;
  margin: 0;
}

/* Sortiment teaser */
.lv .sortiment-section { background: #fff; }
.lv .sortiment-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px 110px;
}
.lv .sortiment-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 34px;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.lv .sortiment-head .section-title {
  margin: 0;
}

.lv .sortiment-slider {
  position: relative;
}

.lv .sortiment-slider__track {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.lv .sortiment-slider__track::-webkit-scrollbar {
  display: none;
}

.lv .sortiment-slider__list.product-grid--slider {
  display: flex;
  gap: 28px;
  width: max-content;
  min-width: 100%;
}

.lv .sortiment-slider__list .product-card {
  flex: 0 0 280px;
  width: 280px;
  min-width: 280px;
  scroll-snap-align: start;
}

.lv .sortiment-slider__btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  border: 1px solid #D5DBDE;
  border-radius: 50%;
  background: #fff;
  color: #0B2D1F;
  box-shadow: 0 8px 24px rgba(11, 45, 31, 0.08);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.lv .sortiment-slider__btn svg {
  width: 18px;
  height: 18px;
}

.lv .sortiment-slider__btn:hover:not(:disabled) {
  border-color: #0B2D1F;
  background: #F6F8F8;
}

.lv .sortiment-slider__btn:disabled {
  opacity: 0.35;
  cursor: default;
  box-shadow: none;
}

.lv .sortiment-slider__btn--prev {
  left: -12px;
}

.lv .sortiment-slider__btn--next {
  right: -12px;
}

.lv .product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.lv .product-card {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 0;
  box-shadow: none;
  /* Promote layer so rounded clip doesn't leave a 1px fringe. */
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.lv .product-card img {
  display: block;
  position: absolute;
  /* Bleed past the clipped edge to kill hairline artifacts.
     Also override `.lv img { max-width:100%; height:auto }`. */
  inset: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
  border: 0;
  outline: 0;
  box-shadow: none;
  box-sizing: border-box;
}
.lv .product-card__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 40px 20px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
  pointer-events: none;
}
.lv .product-card__label span {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
}
.lv .product-card__label small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}
.lv .product-card__placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #f6f8f8 0%, #e8ecea 100%);
}

/* CTA band (footer) */
.lv .cta-band { background: #0B2D1F; }
.lv .cta-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 56px 40px;
  display: flex;
  gap: 64px;
  align-items: center;
}
.lv .cta-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 48px;
  flex: 1;
}
.lv .cta-value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.lv .cta-value__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: #9DB4A8;
}
.lv .cta-value__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.lv .cta-value strong {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #fff;
}
.lv .cta-value span {
  display: block;
  font-size: 12.5px;
  color: #9DB4A8;
  margin-top: 6px;
  line-height: 1.5;
}
.lv .cta-join {
  flex-shrink: 0;
  max-width: 420px;
}
.lv .cta-join h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: #fff;
  margin: 0 0 24px;
}
.lv .cta-join__row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
}
.lv .cta-join__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.lv .cta-join__logo {
  display: block;
  flex-shrink: 0;
  width: min(220px, 48vw);
  height: auto;
  aspect-ratio: 1024 / 394;
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}
.lv .cta-join__buttons .btn {
  padding: 13px 20px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.lv .site-footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.lv .site-footer-bar__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.lv .site-footer-bar__copy {
  font-size: 12px;
  color: #9DB4A8;
}
.lv .site-footer-bar__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.lv .site-footer-bar__links a,
.lv .site-footer-bar__links button {
  font-size: 12px;
  color: #9DB4A8;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}
.lv .site-footer-bar__links a:hover,
.lv .site-footer-bar__links button:hover { color: #fff; }

/* Page head (subpages) */
.lv .page-head {
  background: #fff;
  padding: 44px 40px 28px;
  max-width: 1320px;
  margin: 0 auto;
}
.lv .page-head h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 44px;
  color: #0B2D1F;
  margin: 0 0 14px;
}
.lv .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 1rem;
  font-size: 12.5px;
  color: #6E767B;
}
.lv .breadcrumb a { color: #6E767B; font-size: 12.5px; }
.lv .breadcrumb a:hover { color: #0B2D1F; }
.lv .breadcrumb [aria-current] { color: #0B2D1F; }

/* Subpage hero */
.lv .page-hero-sub {
  background: #fff;
  border-bottom: 1px solid #E4E8EA;
}
.lv .page-hero-sub__wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 44px 40px 56px;
}
.lv .page-hero-sub__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}
.lv .page-hero-sub__grid--solo {
  grid-template-columns: minmax(0, 1fr);
  max-width: 760px;
}
.lv .page-hero-sub__copy .eyebrow {
  margin-bottom: 10px;
}
.lv .page-hero-sub__copy h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.12;
  color: #0B2D1F;
  margin: 0 0 18px;
  text-wrap: pretty;
}
.lv .page-hero-sub__lead {
  font-size: 17px;
  line-height: 1.75;
  color: #6E767B;
  max-width: 54ch;
}

/* 404 page */
.lv .page-404 {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #F6F8F8 0%, #fff 58%);
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(4rem, 10vw, 6rem);
  min-height: clamp(420px, 62vh, 680px);
}

.lv .page-404__wrap {
  position: relative;
  z-index: 1;
}

.lv .page-404__hero {
  max-width: 720px;
}

.lv .page-404__code {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(5rem, 18vw, 9rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: rgba(11, 45, 31, 0.08);
  margin: 0 0 -1.35rem;
  user-select: none;
}

.lv .page-404__lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: #6E767B;
  max-width: 36rem;
  margin: 0 0 1.25rem;
}

.lv .page-404__path {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #6E767B;
  margin: 0 0 1.75rem;
}

.lv .page-404__path code {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.35rem 0.55rem;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #E4E8EA;
  color: #0B2D1F;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.82rem;
  word-break: break-all;
}

.lv .page-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.lv .page-404__links {
  border-top: 1px solid #E4E8EA;
  padding-top: 2rem;
}

.lv .page-404__links h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6E767B;
  margin: 0 0 1rem;
}

.lv .page-404__link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}

.lv .page-404__link-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border: 1px solid #E4E8EA;
  border-radius: 12px;
  background: #fff;
  color: #0B2D1F;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    border-color 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.lv .page-404__link-grid a::after {
  content: "→";
  flex: 0 0 auto;
  color: #00C26E;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.lv .page-404__link-grid a:hover {
  border-color: #C9D2CD;
  box-shadow: 0 10px 24px rgba(11, 45, 31, 0.08);
  transform: translateY(-2px);
}

.lv .page-404__link-grid a:hover::after {
  transform: translateX(4px);
}

@media (max-width: 560px) {
  .lv .page-404__actions .btn {
    flex: 1 1 100%;
    justify-content: center;
  }
}

.lv .page-hero-sub__media {
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  background: #F6F8F8;
  border: 1px solid #E4E8EA;
}
.lv .page-hero-sub__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center center;
}

/* Matrix: split, features, steps, FAQ */
.lv .split {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .lv .split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .lv .split--reverse .split-media {
    order: -1;
  }
}
.lv .split-media .media,
.lv .split-media figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #F6F8F8;
  border: 1px solid #E4E8EA;
}
.lv .split-media .media--wide,
.lv .split-media figure {
  aspect-ratio: 4 / 3;
}
.lv .split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lv .split-media .media-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0B2D1F;
}
.lv .split-media .media {
  position: relative;
}
.lv .split:has(.feature-list) {
  align-items: start;
}
.lv .split:has(.feature-list) .section-title {
  margin-bottom: 28px;
}
.lv .feature-list {
  display: grid;
  gap: 0;
}
@media (min-width: 720px) {
  .lv .split:has(.feature-list) .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
  }
}
.lv .feature {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px 16px;
  padding: 18px 0;
  border-top: 1px solid #E4E8EA;
}
.lv .feature:last-child {
  border-bottom: 1px solid #E4E8EA;
}
.lv .feature .icon {
  display: inline-flex;
  align-items: flex-start;
  color: #00A860;
  padding-top: 2px;
}
.lv .feature .icon svg {
  width: 26px;
  height: 26px;
}
.lv .feature h3 {
  margin: 0 0 6px;
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #0B2D1F;
}
.lv .feature p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #6E767B;
}
.lv .steps,
.lv .grid.steps {
  grid-template-columns: 1fr;
}
.lv .step {
  padding-top: 1.5rem;
  border-top: 1px solid #0B2D1F;
}
.lv .step-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1;
  color: #00A860;
  margin-bottom: 0.85rem;
}
.lv .step h3 {
  margin: 0 0 0.5rem;
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  color: #0B2D1F;
}
.lv .step p {
  margin: 0;
  color: #6E767B;
  line-height: 1.65;
  font-size: 15px;
}
@media (min-width: 700px) {
  .lv .steps,
  .lv .grid.steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
}
@media (min-width: 900px) {
  .lv .steps,
  .lv .grid.steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
  }
}
.lv .section-foot {
  margin-top: 2rem;
}
.lv .faq {
  border-top: 1px solid #0B2D1F;
  max-width: 100%;
}
.lv .faq-item {
  border-bottom: 1px solid #E4E8EA;
}
.lv .faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 700;
  color: #0B2D1F;
  transition: color 0.2s ease;
}
.lv .faq-trigger:hover,
.lv .faq-trigger:focus-visible {
  color: #00A860;
}
.lv .faq-icon {
  flex: none;
  width: 20px;
  height: 20px;
  position: relative;
}
.lv .faq-icon::before,
.lv .faq-icon::after {
  content: "";
  position: absolute;
  background: #00A860;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.lv .faq-icon::before {
  top: 9px;
  left: 0;
  width: 20px;
  height: 2px;
}
.lv .faq-icon::after {
  left: 9px;
  top: 0;
  width: 2px;
  height: 20px;
}
.lv .faq-trigger[aria-expanded="true"] .faq-icon::after {
  transform: scaleY(0);
}
.lv .faq-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0;
  color: #6E767B;
  max-width: 70ch;
  transition: max-height 0.42s ease, opacity 0.3s ease, padding 0.42s ease;
}
.lv .faq-panel.is-open {
  max-height: 520px;
  opacity: 1;
  padding: 0 0 1.35rem;
}
.lv .faq-panel-inner {
  font-size: 15px;
  line-height: 1.7;
}
.lv .section-cta .section-cta__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 72px 40px;
  text-align: center;
}
.lv .section-cta .section-title {
  color: #fff;
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}
.lv .section-cta__lead {
  color: #9DB4A8;
  max-width: 52ch;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
}
.lv .section-cta__actions {
  margin: 1.5rem 0 0;
}
.lv .section-cta .btn--on-accent,
.lv .cta-band .btn--on-accent {
  background: #00C26E;
  color: #0B2D1F !important;
  border-color: #00C26E;
}
.lv .section-cta .btn--on-accent:hover,
.lv .cta-band .btn--on-accent:hover {
  background: #00E07F;
  border-color: #00E07F;
}

/* CMS-Primary auf dunklem CTA: wie White-Outline-Button (sichtbar) */
.lv .section-cta .btn--primary,
.lv .cta-band .btn--primary {
  background: transparent;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.55);
}
.lv .section-cta .btn--primary:hover,
.lv .cta-band .btn--primary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  color: #fff !important;
}

/* Generic section */
.lv .section-block {
  background: #fff;
}
.lv .section-block--soft { background: #F6F8F8; }
.lv .section-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 72px 40px 100px;
}
.lv .grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}
.lv .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.lv .grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.lv .info-card {
  border: 1px solid #E4E8EA;
  border-radius: 16px;
  padding: 30px;
  background: #fff;
}
.lv .info-card h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #0B2D1F;
  margin: 0 0 10px;
}
.lv .info-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #6E767B;
  margin: 0;
}

.lv .rte p { margin: 0 0 1rem; }
.lv .rte p:last-child { margin-bottom: 0; }

.lv .container {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 40px;
}
.lv .section {
  padding-block: 96px;
  background: #fff;
}
.lv .section--bg { background: #F6F8F8; }
.lv .section--tight { padding-block: 48px; }
.lv .section-head { margin-bottom: 36px; }
.lv .section-head.center { text-align: center; }
.lv .section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: 48px;
  align-items: end;
}
.lv .eyebrow {
  margin: 0 0 12px;
  color: #00A860;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.lv .lead {
  color: #6E767B;
  font-size: 17px;
  line-height: 1.75;
}
.lv .text-max { max-width: 62ch; }
.lv .text-max.center { margin-inline: auto; }
.lv .muted { color: #6E767B; }
.lv .grid {
  display: grid;
  gap: 28px;
}
.lv .grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.lv .grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.lv .grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Active matrix: tiles */
.lv .tile {
  overflow: hidden;
  border: 1px solid #E4E8EA;
  border-radius: 16px;
  background: #fff;
}
.lv .tile .media {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #F6F8F8;
}
.lv .tile .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lv .tile-body { padding: 24px; }
.lv .tile-no {
  display: block;
  margin-bottom: 8px;
  color: #00A860;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}
.lv .tile h3 {
  margin: 0 0 10px;
  color: #0B2D1F;
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
}

/* Active matrix: timeline */
.lv .timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin: 0;
  padding: 0;
}
.lv .timeline__item {
  padding: 30px;
  border: 1px solid #E4E8EA;
  border-radius: 16px;
  background: #fff;
}
.lv .timeline__no {
  display: block;
  margin-bottom: 12px;
  color: #00A860;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}
.lv .timeline__item h3 {
  margin: 0 0 10px;
  color: #0B2D1F;
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
}
.lv .timeline__item p { margin: 0; color: #6E767B; font-size: 14px; }

/* Active matrix: team */
.lv .team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
.lv .team-card {
  overflow: hidden;
  border: 1px solid #E4E8EA;
  border-radius: 16px;
  background: #fff;
  height: 100%;
}
.lv .team-card--text .team-card__body {
  border-top: none;
}
.lv .team-card__media {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #EDF1EF;
}
.lv .team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.lv .team-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #F6F8F8, #E4E8EA);
}
.lv .team-card__body {
  padding: 22px 22px 24px;
  border-top: 2px solid #00C26E;
}
.lv .team-card__name {
  margin: 0;
  color: #0B2D1F;
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
}
.lv .team-card__role {
  margin: 6px 0 0;
  color: #6E767B;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.lv .team-card__social {
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.lv .team-card__email,
.lv .team-card__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  max-width: 100%;
  padding: 0.55rem 0.9rem;
  border: 1px solid #E4E8EA;
  border-radius: 999px;
  background: #fff;
  color: #0B2D1F !important;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.lv .team-card__email span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-transform: none;
  letter-spacing: 0.01em;
  font-weight: 600;
  font-size: 0.78rem;
}
.lv .team-card__email:hover {
  border-color: #0B2D1F;
  background: #0B2D1F;
  color: #fff !important;
}
.lv .team-card__linkedin:hover {
  border-color: #0A66C2;
  background: #0A66C2;
  color: #fff !important;
}
.lv .team-card__email svg,
.lv .team-card__linkedin svg {
  flex: 0 0 auto;
}

/* Active matrix: logo marquee */
.lv .logo-marquee {
  overflow: hidden;
  margin-top: 32px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.lv .logo-marquee__track {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: lv-logo-marquee 28s linear infinite;
}
.lv .logo-marquee__item {
  flex: none;
  color: #6E767B;
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@keyframes lv-logo-marquee {
  to { transform: translateX(-50%); }
}

/* Temporarily reachable protected strain details */
.lv .strain-page .breadcrumb { padding-top: 28px; }
.lv .strain-detail-hero { padding-block: 32px 64px; }
.lv .strain-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.lv .strain-title {
  margin: 8px 0 0;
  color: var(--strain, #0B2D1F);
  font-family: 'Manrope', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
}
.lv .strain-lead { margin: 20px 0 0; color: #222; font-size: 18px; }
.lv .strain-chips,
.lv .chips { display: flex; flex-wrap: wrap; gap: 8px; }
.lv .strain-chips { margin-top: 20px; }
.lv .chip {
  padding: 6px 10px;
  border-radius: 6px;
  background: #F6F8F8;
  color: #222;
  font-size: 12px;
}
.lv .strain-notice {
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px solid #E4E8EA;
  border-left: 3px solid var(--strain, #00C26E);
  border-radius: 12px;
  background: #F6F8F8;
  font-size: 13px;
}
.lv .strain-notice p { margin: 0; }
.lv .strain-detail-media,
.lv .strain-gallery__item {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid #E4E8EA;
  background: #F6F8F8;
}
.lv .strain-detail-media img,
.lv .strain-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lv .strain-detail-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #F6F8F8, #E4E8EA);
}
.lv .strain-spec {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-bottom: 64px;
}
.lv .strain-spec .spec-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.7fr) 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid #E4E8EA;
}
.lv .strain-spec .spec-row:nth-child(odd) { padding-right: 24px; }
.lv .strain-spec .spec-row:nth-child(even) { padding-left: 24px; }
.lv .strain-spec dt { color: #6E767B; font-size: 13px; font-weight: 600; }
.lv .strain-spec dd { margin: 0; color: #222; font-size: 14px; }
.lv .strain-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 28px;
}

.has-js .lv [data-reveal],
.has-js .lv [data-stagger] > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.has-js .lv [data-reveal].is-visible,
.has-js .lv [data-stagger] > *.is-visible {
  opacity: 1;
  transform: none;
}

/* GSAP motion layer */
.lv [data-split-text] .split-word {
  display: inline-block;
  overflow: hidden;
}

html.is-motion-ready .has-js .lv [data-reveal],
html.is-motion-ready .has-js .lv [data-stagger] > * {
  transition: none;
}

html.is-motion-pending.has-js .lv .hero-home__brand,
html.is-motion-pending.has-js .lv .hero-home__sub,
html.is-motion-pending.has-js .lv .hero-home__buttons .btn,
html.is-motion-pending.has-js .lv .page-hero-sub__copy > .eyebrow,
html.is-motion-pending.has-js .lv .page-hero-sub__copy > .breadcrumb,
html.is-motion-pending.has-js .lv .page-hero-sub__copy > h1,
html.is-motion-pending.has-js .lv .page-hero-sub__copy > .page-hero-sub__lead {
  opacity: 0;
}

/* Hero H1 stays visible for LCP — never hide while motion boots. */
html.is-motion-pending.has-js .lv .hero-home__title {
  opacity: 1;
}

html.is-motion-ready .lv .hero-home,
html.is-motion-ready .lv .page-hero-sub {
  overflow: hidden;
}

.lv .quality-card,
.lv .product-card,
.lv .tile,
.lv .card,
.lv .portal-product-card,
.lv .strain-photo-card {
  transition: box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
}

.lv .btn,
.lv .header-cta,
.lv a.link-arrow {
  transition: background-color 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.lv .site-header {
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease,
    box-shadow 0.4s ease, border-color 0.4s ease;
}

.lv .site-footer,
.lv .portal-footer {
  will-change: transform, opacity;
}

.lv .logo-marquee__track {
  will-change: transform;
}

.lv :focus-visible {
  outline: 2px solid #00C26E;
  outline-offset: 3px;
}

/* Öffentliches Sortiment (Unterseite) */
.lv .public-sortiment-section { background: #fff; padding-top: 48px; padding-bottom: 80px; }
.lv .public-sortiment-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 44px;
  align-items: start;
}

/* Temporarily hide assortment filters (public) */
.lv .public-sortiment-sidebar,
.lv .public-sortiment-toolbar,
.lv .public-sortiment-filter-overlay,
.lv .public-sortiment-filter-trigger {
  display: none !important;
}
.lv .public-sortiment-layout {
  grid-template-columns: 1fr;
  gap: 0;
}
.lv .public-sortiment-sidebar {
  border: 1px solid #E4E8EA;
  border-radius: 16px;
  padding: 26px 24px;
  background: #fff;
  position: sticky;
  top: 98px;
}
.lv .public-sortiment-sidebar__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #0B2D1F;
  margin: 0;
}
.lv .public-sortiment-sidebar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 1rem;
}
.lv .public-sortiment-filter-trigger,
.lv .public-sortiment-filter-overlay,
.lv .public-sortiment-filter-close,
.lv .public-sortiment-filter-footer,
.lv .public-sortiment-filter-sheet-handle {
  display: none;
}
.lv .public-sortiment-toolbar {
  display: none;
}
.lv .public-sortiment-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 20px 0 18px;
  border-top: 1px solid #E4E8EA;
  padding-top: 16px;
}
.lv .public-sortiment-nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: #222;
  padding: 8px 10px;
  border-radius: 8px;
}
.lv .public-sortiment-nav a:hover,
.lv .public-sortiment-nav a[aria-current="true"] {
  color: #0B2D1F;
  background: #F6F8F8;
  font-weight: 600;
}
.lv .public-sortiment-sidebar__note {
  font-size: 12px;
  line-height: 1.55;
  color: #6E767B;
  margin: 0;
  border-top: 1px solid #E4E8EA;
  padding-top: 16px;
}
.lv .public-sortiment-sidebar__note a { font-weight: 600; }
.lv .public-sortiment-intro { margin-bottom: 36px; }
.lv .public-sortiment-category + .public-sortiment-category {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid #E4E8EA;
}
.lv .public-sortiment-category__head { margin-bottom: 24px; }
.lv .public-sortiment-category__head h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #0B2D1F;
  margin: 0 0 8px;
}
.lv .public-sortiment-category__head p {
  font-size: 14px;
  line-height: 1.65;
  color: #6E767B;
  margin: 0;
  max-width: 62ch;
}

.lv .public-sortiment-section .b2b-filter-group h3 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6E767B;
  margin: 0 0 0.65rem;
}
.lv .public-sortiment-section .b2b-filter-group + .b2b-filter-group {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #E4E8EA;
}
.lv .public-sortiment-section .b2b-filter-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  cursor: pointer;
}
.lv .public-sortiment-section .b2b-filter-sidebar input[type="search"],
.lv .public-sortiment-section .b2b-filter-sidebar select {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid #E4E8EA;
  border-radius: 8px;
  font: inherit;
  background: #fff;
}
.lv .public-sortiment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.lv .public-sortiment-tile {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #E4E8EA;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.lv .public-sortiment-tile[hidden],
.lv .b2b-product-tile[hidden] {
  display: none !important;
}
.lv .public-sortiment-tile:hover {
  border-color: #0B2D1F;
  box-shadow: 0 8px 24px rgba(11, 45, 31, 0.08);
}
.lv .public-sortiment-tile__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  background: #F6F8F8;
  overflow: hidden;
}
.lv .public-sortiment-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lv .public-sortiment-tile__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #F6F8F8, #E4E8EA);
}
.lv .public-sortiment-tile .b2b-availability {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.92);
  color: #0B2D1F;
}
.lv .public-sortiment-tile .b2b-availability i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00C26E;
}
.lv .public-sortiment-tile__media small {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(11, 45, 31, 0.82);
  color: #fff;
}
.lv .public-sortiment-tile .b2b-product-tile__body {
  padding: 0.95rem 1rem 1.05rem;
  display: grid;
  gap: 0.7rem;
  background: linear-gradient(180deg, #fff 0%, #FBFCFC 100%);
}
.lv .public-sortiment-tile .b2b-product-tile__heading {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
}
.lv .public-sortiment-tile .b2b-product-tile__heading p {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6E767B;
}
.lv .public-sortiment-tile .b2b-product-tile__heading h3 {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-size: 1.02rem;
  font-weight: 750;
  color: #0B2D1F;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.lv .public-sortiment-tile .b2b-product-tile__heading h3 a {
  color: inherit;
  text-decoration: none;
}
.lv .public-sortiment-tile .b2b-product-tile__heading h3 a:hover {
  color: #00C26E;
}
.lv .public-sortiment-tile .b2b-product-tile__heading strong {
  font-size: 0.95rem;
  color: #0B2D1F;
  white-space: nowrap;
}
.lv .public-sortiment-tile .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.lv .public-sortiment-tile .chip {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1px solid #E4E8EA;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.2;
  background: #fff;
  color: #3A4448;
}
.lv .public-sortiment-tile .chip b {
  font-weight: 750;
  color: #0B2D1F;
}
.lv .public-sortiment-tile .chip--thc {
  border-color: rgba(0, 194, 110, 0.28);
  background: rgba(0, 194, 110, 0.08);
  color: #0B2D1F;
}
.lv .public-sortiment-tile .chip--cbd {
  border-color: rgba(11, 45, 31, 0.14);
  background: rgba(11, 45, 31, 0.05);
}
.lv .public-sortiment-tile__meta {
  margin: 0;
  padding-top: 0.65rem;
  border-top: 1px solid #E4E8EA;
  display: grid;
  gap: 0.45rem;
}
.lv .public-sortiment-tile__meta div {
  display: grid;
  grid-template-columns: 4.75rem minmax(0, 1fr);
  gap: 0.35rem 0.55rem;
  align-items: baseline;
}
.lv .public-sortiment-tile__meta dt {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #6E767B;
  line-height: 1.3;
}
.lv .public-sortiment-tile__meta dd {
  margin: 0;
  min-width: 0;
  font-size: 0.82rem;
  font-weight: 650;
  color: #0B2D1F;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.lv .public-sortiment-tile__meta dd .chips {
  margin-top: 0;
}
.lv .public-sortiment-tile__meta-row--tags {
  grid-template-columns: 1fr;
  gap: 0.4rem;
  align-items: start;
}
.lv .public-sortiment-tile__meta-row--tags dd .chips {
  margin-top: 0;
}
.lv .public-sortiment-empty {
  padding: 1.5rem;
  border: 1px dashed #E4E8EA;
  border-radius: 12px;
  color: #6E767B;
  text-align: center;
}

/* Kontakt */
.lv .kontakt-section { background: #fff; padding-bottom: 100px; }
.lv .kontakt-layout.section-inner {
  padding-top: 96px;
}
.lv .kontakt-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: start;
}
.lv .kontakt-form-col__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #0B2D1F;
  margin: 0 0 12px;
}
.lv .kontakt-form-col__lead { margin-bottom: 28px; max-width: none; }
.lv .kontakt-aside { display: flex; flex-direction: column; gap: 20px; }
.lv .kontakt-card {
  border: 1px solid #E4E8EA;
  border-radius: 16px;
  padding: 28px 26px;
  background: #fff;
}
.lv .kontakt-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.lv .kontakt-card__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: #0B2D1F;
}
.lv .kontakt-card__icon svg { display: block; width: 100%; height: 100%; }
.lv .kontakt-card__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #0B2D1F;
}
.lv .kontakt-card__body {
  font-size: 14px;
  line-height: 1.9;
  color: #6E767B;
}
.lv .kontakt-card__body a { font-weight: 500; }
.lv .kontakt-form-fallback { font-size: 14px; color: #6E767B; }

.lv .section-block--tight .section-inner { padding-top: 0; padding-bottom: 24px; }
.lv .lv-notice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid #E4E8EA;
  border-radius: 12px;
  padding: 16px 18px;
  background: #F6F8F8;
}
.lv .lv-notice__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: #0B2D1F;
  margin-top: 2px;
}
.lv .lv-notice__icon svg { display: block; width: 100%; height: 100%; }
.lv .lv-notice__text { font-size: 14px; line-height: 1.55; color: #222; }

/* FormBuilder */
.lv .novvia-form .FormBuilder,
.lv .novvia-form form.InputfieldForm {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
}
.lv .novvia-form .Inputfields {
  display: grid;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.lv .novvia-form .Inputfield {
  margin: 0 !important;
  padding: 0;
  border: 0;
  float: none !important;
  width: auto !important;
  clear: none !important;
  list-style: none;
}
.lv .novvia-form .InputfieldHeader {
  display: block;
  font-weight: 600;
  font-size: 12.5px;
  color: #222;
  margin: 0 0 8px;
  padding: 0;
}
.lv .novvia-form .InputfieldHeaderHidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.lv .novvia-form .InputfieldContent input[type="text"],
.lv .novvia-form .InputfieldContent input[type="email"],
.lv .novvia-form .InputfieldContent input[type="tel"],
.lv .novvia-form .InputfieldContent textarea {
  font-family: inherit;
  font-size: 14px;
  color: #222;
  background: #fff;
  border: 1px solid #E4E8EA;
  border-radius: 8px;
  padding: 13px 14px;
  width: 100%;
  max-width: none;
  margin: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.lv .novvia-form .InputfieldContent input:focus,
.lv .novvia-form .InputfieldContent textarea:focus {
  outline: none;
  border-color: #0B2D1F;
  box-shadow: 0 0 0 3px rgba(11, 45, 31, 0.1);
}
.lv .novvia-form .InputfieldContent textarea {
  resize: vertical;
  min-height: 140px;
}
.lv .novvia-form .form-privacy-note {
  margin: 0;
  font-size: 13px;
  color: #6E767B;
}
.lv .novvia-form .form-privacy-note a { font-weight: 600; color: #0B2D1F; }
.lv .novvia-form .InputfieldCheckbox .InputfieldContent > label {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 13px;
  font-weight: 400;
  color: #222;
  margin: 0;
  cursor: pointer;
}
.lv .novvia-form .InputfieldCheckbox .InputfieldContent > label input[type="checkbox"] {
  width: 15px;
  height: 15px;
  margin: 3px 0 0;
  accent-color: #0B2D1F;
}
.lv .novvia-form .InputfieldStateRequired > .InputfieldHeader:not(.InputfieldHeaderHidden)::after {
  content: ' *';
  color: #00C26E;
}
.lv .novvia-form .InputfieldSubmit { grid-column: 1 / -1; margin-top: 6px; }
.lv .novvia-form .InputfieldSubmit .InputfieldContent { padding: 0; }
.lv .novvia-form .InputfieldSubmit button[type="submit"],
.lv .novvia-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 16px 20px;
  border: none;
  border-radius: 6px;
  background: #0B2D1F;
  color: #fff;
  transition: background 0.2s ease;
}
.lv .novvia-form .InputfieldSubmit button[type="submit"]:hover,
.lv .novvia-form button[type="submit"]:hover {
  background: #123D2B;
}
.lv .novvia-form .alert-success,
.lv .novvia-form .success {
  padding: 14px 16px;
  background: #F6F8F8;
  border: 1px solid #00C26E;
  border-radius: 8px;
  color: #0B2D1F;
  font-size: 14px;
}
.lv .novvia-form .alert-error,
.lv .novvia-form > .error {
  color: #b42318;
  font-size: 13px;
}

/* PrivacyWire cookie banner — LIGHV */
.lv #privacywire-wrapper,
.lv .privacywire-wrapper {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 9999;
  pointer-events: none;
}
.lv .privacywire-page-wrapper { pointer-events: auto; }
.lv .privacywire {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: -120%;
  transform: translateX(-50%);
  opacity: 0;
  width: min(720px, calc(100% - 24px));
  background: #fff;
  border: 1px solid #E4E8EA;
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(11, 45, 31, 0.16);
  padding: 1.35rem 1.4rem 1.25rem;
  transition: bottom 0.35s ease, opacity 0.35s ease;
  z-index: 9999;
}
.lv.show-banner .privacywire-banner,
.lv.show-options .privacywire-options,
.lv.show-message .privacywire-message,
body.show-banner .privacywire-banner,
body.show-options .privacywire-options,
body.show-message .privacywire-message,
.lv #privacywire-wrapper.show-banner .privacywire-banner,
.lv #privacywire-wrapper.show-options .privacywire-options,
.lv #privacywire-wrapper.show-message .privacywire-message,
.lv .privacywire-wrapper.show-banner .privacywire-banner,
.lv .privacywire-wrapper.show-options .privacywire-options,
.lv .privacywire-wrapper.show-message .privacywire-message,
#privacywire-wrapper.show-banner .privacywire-banner,
#privacywire-wrapper.show-options .privacywire-options,
#privacywire-wrapper.show-message .privacywire-message {
  bottom: 1.25rem;
  opacity: 1;
  pointer-events: auto;
}
.lv .privacywire-header {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: #0B2D1F;
  margin: 0 0 0.55rem;
  line-height: 1.25;
}
.lv .privacywire-body { margin: 0; }
.lv .privacywire-text {
  color: #6E767B;
  font-size: 13.5px;
  line-height: 1.55;
}
.lv .privacywire-text ul {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.lv .privacywire-text li label {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.65rem;
  align-items: start;
  color: #222;
  font-size: 13.5px;
}
.lv .privacywire-text input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: #0B2D1F;
  margin-top: 2px;
}
.lv .privacywire-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1rem;
  align-items: center;
}
.lv .privacywire-buttons button,
.lv .privacywire-wrapper button.button {
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 6px;
  padding: 11px 16px;
  border: 1px solid #0B2D1F;
  background: transparent;
  color: #0B2D1F;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.lv .privacywire-buttons button.allow-all,
.lv .privacywire-buttons button.save {
  background: #0B2D1F;
  border-color: #0B2D1F;
  color: #fff;
}
.lv .privacywire-buttons button.allow-all:hover,
.lv .privacywire-buttons button.save:hover {
  background: #123D2B;
  border-color: #123D2B;
}
.lv .privacywire-buttons button.allow-necessary:hover,
.lv .privacywire-buttons button.toggle:hover,
.lv .privacywire-buttons button:hover {
  border-color: #00C26E;
  color: #00C26E;
}
.lv .privacywire-buttons button.allow-all:hover {
  color: #fff;
}
.lv .privacywire-page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-top: 0.85rem;
  font-size: 12.5px;
}
.lv .privacywire-page-link {
  color: #6E767B;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.lv .privacywire-page-link:hover { color: #0B2D1F; }
.lv .privacywire-message .privacywire-body {
  text-align: center;
  font-weight: 600;
  color: #0B2D1F;
  font-size: 14px;
}
.lv .privacywire button[hidden],
.lv .privacywire-ask-consent-blueprint,
.lv [data-ask-consent-rendered="1"] {
  display: none !important;
}
@media (max-width: 560px) {
  .lv .privacywire {
    width: calc(100% - 16px);
    padding: 1.15rem 1.05rem 1.1rem;
    border-radius: 14px;
  }
  .lv.show-banner .privacywire-banner,
  .lv.show-options .privacywire-options,
  .lv.show-message .privacywire-message,
  body.show-banner .privacywire-banner,
  body.show-options .privacywire-options,
  body.show-message .privacywire-message,
  .lv #privacywire-wrapper.show-banner .privacywire-banner,
  .lv #privacywire-wrapper.show-options .privacywire-options,
  .lv #privacywire-wrapper.show-message .privacywire-message,
  .lv .privacywire-wrapper.show-banner .privacywire-banner,
  .lv .privacywire-wrapper.show-options .privacywire-options,
  .lv .privacywire-wrapper.show-message .privacywire-message,
  #privacywire-wrapper.show-banner .privacywire-banner,
  #privacywire-wrapper.show-options .privacywire-options,
  #privacywire-wrapper.show-message .privacywire-message {
    bottom: 0.75rem;
  }
  .lv .privacywire-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .lv .privacywire-buttons button {
    width: 100%;
    text-align: center;
  }
}

/* News */
.lv .news-teaser-section,
.lv .news-listing-section { background: #fff; padding-bottom: 100px; }
.lv .news-listing-section > .section-inner {
  padding-top: 96px;
}
.lv .news-teaser-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.lv .news-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.lv .news-filter-pill {
  font-size: 13px;
  font-weight: 500;
  color: #6E767B;
  border: 1px solid #E4E8EA;
  border-radius: 20px;
  padding: 8px 18px;
}
.lv .news-filter-pill:hover,
.lv .news-filter-pill.is-active {
  color: #0B2D1F;
  border-color: #0B2D1F;
  background: #F6F8F8;
  font-weight: 600;
}
.lv .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.lv .news-card {
  border: 1px solid #E4E8EA;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s ease;
}
.lv .news-card:hover { box-shadow: 0 14px 34px rgba(11, 45, 31, 0.1); }
.lv .news-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  background: #F6F8F8;
  overflow: hidden;
}
.lv .news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lv .news-card__body { padding: 22px 24px 26px; }
.lv .news-card__meta {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #00A860;
  margin-bottom: 10px;
}
.lv .news-card h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #0B2D1F;
  margin: 0 0 10px;
  line-height: 1.35;
}
.lv .news-card h3 a { color: inherit; }
.lv .news-card p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #6E767B;
  margin: 0 0 16px;
}
.lv .news-card__more {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.1px;
  color: #0B2D1F;
  text-transform: uppercase;
}
.lv .news-listing-empty { color: #6E767B; font-size: 14px; }
.lv .news-article__meta {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #00A860;
  margin: 0 0 10px;
}
.lv .news-article-hero .section-inner { padding-top: 0; padding-bottom: 28px; }
.lv .news-article-hero img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 16px;
}
.lv .news-article-body__inner { max-width: 72ch; }
.lv .news-article__teaser {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #222;
  margin: 0 0 1.5rem;
}
.lv .news-article__content { font-size: 15px; line-height: 1.75; color: #222; }
.lv .news-article__back { margin-top: 2.5rem; }
.lv .news-article__back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0B2D1F;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}
.lv .news-article__back-link:hover {
  color: #00A860;
  transform: translateX(-3px);
  text-decoration: none;
}

/* Responsive */
@media (min-width: 981px) {
  .lv .mobile-nav-panel,
  .lv .mobile-nav-overlay { display: none !important; }
}

@media (max-width: 980px) {
  .lv .wrap, .lv .header-inner, .lv .hero-home__content,
  .lv .trust-bar__grid, .lv .vision-grid, .lv .quality-wrap,
  .lv .sortiment-wrap, .lv .cta-grid, .lv .page-head,
  .lv .page-hero-sub__wrap, .lv .section-cta__inner,
  .lv .section-inner, .lv .site-footer-bar__inner, .lv .container {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  /* Einheitlicher vertikaler Rhythmus zwischen Sektionen */
  .lv .vision-grid,
  .lv .quality-wrap,
  .lv .sortiment-wrap,
  .lv .section-inner,
  .lv .section-cta__inner,
  .lv .cta-grid {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .lv .page-hero-sub__wrap {
    padding-top: 32px !important;
    padding-bottom: 40px !important;
  }
  .lv .page-head {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  .lv .trust-bar__grid {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  .lv .sales-counter {
    padding: 1.75rem 0;
  }
  .lv .section {
    padding-block: 48px;
  }
  .lv .section--tight {
    padding-block: 32px;
  }
  .lv .news-listing-section,
  .lv .news-teaser-section,
  .lv .kontakt-section,
  .lv .public-sortiment-section {
    padding-top: 0;
    padding-bottom: 48px;
  }
  .lv .news-listing-section > .section-inner,
  .lv .kontakt-layout.section-inner {
    padding-top: 48px !important;
  }
  .lv .section-block--tight .section-inner {
    padding-top: 0 !important;
    padding-bottom: 20px !important;
  }
  .lv .news-article-hero .section-inner {
    padding-top: 0 !important;
    padding-bottom: 24px !important;
  }
  .lv .page-hero-sub__grid,
  .lv .split,
  .lv .quality-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
  .lv .desktop-nav, .lv .header-lang { display: none !important; }
  .lv .hamburger-btn { display: flex !important; }
  .lv .header-actions .btn-fachkreis { display: none !important; }

  .lv .mobile-nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    top: 78px;
    border: 0;
    padding: 0;
    background: rgba(11, 45, 31, 0.45);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    cursor: pointer;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .lv .mobile-nav-overlay.is-open,
  .lv .mobile-nav-overlay.is-closing {
    visibility: visible;
  }

  .lv .mobile-nav-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .lv .mobile-nav-panel {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: fixed;
    top: 78px;
    right: 0;
    bottom: 0;
    left: 0;
    height: calc(100dvh - 78px);
    width: 100%;
    max-width: none;
    margin: 0;
    background: #fff;
    border: 0;
    border-top: 1px solid #E4E8EA;
    padding: 16px 24px max(24px, env(safe-area-inset-bottom));
    box-shadow: none;
    z-index: 99;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.36s cubic-bezier(0.2, 0.75, 0.25, 1);
  }

  .lv .mobile-nav-panel.is-open,
  .lv .mobile-nav-panel.is-closing {
    visibility: visible;
  }

  .lv .mobile-nav-panel.is-open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .lv .mobile-nav-panel.is-closing {
    transform: translateX(100%);
    pointer-events: none;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  .lv .hero-home {
    min-height: 0;
  }
  .lv .hero-home__content {
    min-height: 0;
    padding: 88px 24px 64px;
  }
  .lv .hero-home__title {
    font-size: clamp(1.75rem, 7.2vw, 2.5rem) !important;
    max-width: none;
  }
  .lv .hero-home__sub {
    font-size: 1.05rem;
    max-width: none;
  }
  .lv .hero-home__buttons { flex-direction: column; align-items: stretch; }
  .lv .trust-bar__grid { grid-template-columns: 1fr 1fr; row-gap: 24px; }
  .lv .trust-bar__item { border: none !important; padding: 0 !important; }
  .lv .vision-grid { grid-template-columns: 1fr; gap: 36px; }
  .lv .vision-grid .section-text {
    max-width: none;
  }
  .lv .vision-media {
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .lv .quality-grid { grid-template-columns: 1fr 1fr; }
  .lv .product-grid { grid-template-columns: 1fr 1fr; }
  .lv .sortiment-slider__list .product-card {
    flex-basis: 240px;
    width: 240px;
    min-width: 240px;
  }
  .lv .sortiment-slider__btn--prev { left: -4px; }
  .lv .sortiment-slider__btn--next { right: -4px; }
  .lv .cta-grid { flex-direction: column; align-items: flex-start; gap: 32px; }
  .lv .cta-join__logo { width: min(180px, 58vw); height: auto; }
  .lv .cta-join__row { gap: 14px; }
  .lv .grid-2, .lv .grid-3, .lv .grid-4 { grid-template-columns: 1fr 1fr; }
  .lv .page-head h1 { font-size: 34px; }
  .lv .public-sortiment-layout,
  .lv .kontakt-layout { grid-template-columns: 1fr; gap: 36px; }

  .lv .public-sortiment-toolbar {
    display: block;
    margin-bottom: 1rem;
  }

  .lv .public-sortiment-filter-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.8rem 1rem;
    border: 1px solid #E4E8EA;
    border-radius: 999px;
    background: #fff;
    color: #0B2D1F;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(11, 45, 31, 0.06);
  }

  .lv .public-sortiment-filter-trigger svg {
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
  }

  .lv .public-sortiment-filter-trigger__count {
    display: inline-grid;
    place-items: center;
    min-width: 1.35rem;
    height: 1.35rem;
    padding: 0 0.35rem;
    border-radius: 999px;
    background: #0B2D1F;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
  }

  .lv .public-sortiment-filter-overlay {
    display: block;
    position: fixed;
    inset: 0;
    border: 0;
    padding: 0;
    background: rgba(11, 45, 31, 0.45);
    z-index: 119;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    cursor: pointer;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .lv .public-sortiment-section.is-filter-open .public-sortiment-filter-overlay,
  .lv .public-sortiment-section.is-filter-closing .public-sortiment-filter-overlay {
    visibility: visible;
  }

  .lv .public-sortiment-section.is-filter-open .public-sortiment-filter-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .lv .public-sortiment-sidebar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    max-width: none;
    max-height: min(88vh, 900px);
    margin: 0;
    border: 0;
    border-top: 1px solid #E4E8EA;
    border-radius: 20px 20px 0 0;
    padding: 0.75rem 1.25rem max(1.25rem, env(safe-area-inset-bottom));
    box-shadow: 0 -1rem 2.5rem rgba(11, 45, 31, 0.16);
    z-index: 120;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(105%);
    transition: transform 0.38s cubic-bezier(0.2, 0.75, 0.25, 1);
  }

  .lv .public-sortiment-section.is-filter-open .public-sortiment-sidebar {
    transform: translateY(0);
  }

  .lv .public-sortiment-section.is-filter-closing .public-sortiment-sidebar {
    transform: translateY(105%);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  .lv .public-sortiment-sidebar__head {
    position: sticky;
    top: 0;
    z-index: 2;
    margin: 0 0 0.75rem;
    padding: 0.35rem 0 0.85rem;
    background: #fff;
    border-bottom: 1px solid #F0F2F1;
  }

  .lv .public-sortiment-filter-sheet-handle {
    display: block;
    width: 2.75rem;
    height: 0.28rem;
    margin: 0 auto 0.85rem;
    border-radius: 999px;
    background: #D7DDE0;
  }

  .lv .public-sortiment-filter-close {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid #E4E8EA;
    border-radius: 50%;
    background: #fff;
    color: #0B2D1F;
    cursor: pointer;
  }

  .lv .public-sortiment-filter-close svg {
    width: 1rem;
    height: 1rem;
  }

  .lv .public-sortiment-filter-footer {
    display: block;
    position: sticky;
    bottom: 0;
    margin-top: 1rem;
    padding-top: 0.85rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 28%);
  }

  .lv .public-sortiment-filter-apply {
    width: 100%;
    justify-content: center;
  }

  html.public-filter-open {
    overflow: hidden;
  }
  .lv .news-grid { grid-template-columns: 1fr 1fr; }
  .lv .section-head--split,
  .lv .strain-detail-grid { grid-template-columns: 1fr; gap: 36px; }
  .lv .timeline,
  .lv .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lv .strain-spec { grid-template-columns: 1fr; }
  .lv .strain-spec .spec-row { padding-inline: 0 !important; }
}

@media (max-width: 560px) {
  .lv .section-title {
    font-size: 24px;
    line-height: 1.25;
  }
  .lv .section-title--sm {
    font-size: 22px;
  }
  .lv .vision-grid,
  .lv .quality-wrap,
  .lv .sortiment-wrap,
  .lv .section-inner,
  .lv .section-cta__inner,
  .lv .cta-grid {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .lv .section {
    padding-block: 40px;
  }
  .lv .news-listing-section,
  .lv .news-teaser-section,
  .lv .kontakt-section,
  .lv .public-sortiment-section {
    padding-bottom: 40px;
  }
  .lv .quality-grid,
  .lv .product-grid,
  .lv .trust-bar__grid,
  .lv .grid-2, .lv .grid-3, .lv .grid-4 { grid-template-columns: 1fr; }
  .lv .sortiment-slider__list .product-card {
    flex-basis: min(78vw, 300px);
    width: min(78vw, 300px);
    min-width: min(78vw, 300px);
  }
  .lv .sortiment-slider__btn {
    width: 36px;
    height: 36px;
    margin-top: -18px;
  }
  .lv .cta-values { grid-template-columns: 1fr; }
  .lv .news-grid { grid-template-columns: 1fr; }
  .lv .grid.cols-2, .lv .grid.cols-3, .lv .grid.cols-4,
  .lv .timeline, .lv .team-grid, .lv .strain-gallery { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .lv *, .lv *::before, .lv *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .has-js .lv [data-reveal],
  .has-js .lv [data-stagger] > * {
    opacity: 1;
    transform: none;
  }
}

/* CMS quick-edit — nur sichtbar für eingeloggte Redakteure */
.novvia-admin-fab {
  position: fixed;
  left: max(1rem, env(safe-area-inset-left));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(9, 12, 13, 0.12);
  background: #fff;
  color: #1a3d2e;
  box-shadow: 0 4px 18px rgba(9, 12, 13, 0.16);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.novvia-admin-fab:hover {
  transform: translateY(-2px);
  background: #1a3d2e;
  color: #fff;
  box-shadow: 0 8px 22px rgba(9, 12, 13, 0.22);
}

.novvia-admin-fab:focus-visible {
  outline: 2px solid #c6a14b;
  outline-offset: 3px;
}

.lv.portal-body .novvia-admin-fab {
  color: #466d54;
}

.lv.portal-body .novvia-admin-fab:hover {
  background: #466d54;
  color: #fff;
}
