:root {
  --red: #e30613;
  --red-d: #b80510;
  --black: #0d0d0d;
  --ink: #161616;
  --g900: #1a1a1a;
  --g700: #444;
  --g600: #666;
  --g300: #e4e4e4;
  --g100: #f4f4f4;
  --white: #fff;
  --wrap: 1280px;
  --font: "Montserrat", system-ui, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --util: 36px;
  --header: 96px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--util) + var(--header)); }
body { font-family: var(--font); color: var(--ink); background: var(--white); line-height: 1.5; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.wrap { width: min(100% - 2.4rem, var(--wrap)); margin-inline: auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  min-height: 46px; padding: .8rem 1.25rem; border: 2px solid transparent; border-radius: 2px;
  font-size: .74rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  cursor: pointer; transition: .25s var(--ease); white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-red { background: var(--red); color: #fff; border-color: var(--red); }
.btn-red:hover { background: var(--red-d); border-color: var(--red-d); box-shadow: 0 10px 26px rgba(227,6,19,.28); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.85); }
.btn-ghost:hover { background: #fff; color: #000; }
.btn-dark { background: #111; color: #fff; border-color: #111; }
.btn-dark:hover { background: var(--red); border-color: var(--red); }
.btn-outline {
  background: #fff;
  color: #111;
  border-color: #cfcfcf;
  border-radius: 3px;
}
.btn-outline:hover {
  border-color: #111;
  background: #111;
  color: #fff;
}
.btn-black {
  background: #111;
  color: #fff;
  border-color: #111;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: .04em;
}
.btn-black:hover { background: #000; border-color: #000; }
.btn-sm { min-height: 42px; padding: .7rem 1.2rem; font-size: .72rem; border-radius: 6px; }
.btn-full { width: 100%; }

.checklist { display: grid; gap: .5rem; }
.checklist li { display: flex; align-items: center; gap: .55rem; font-weight: 600; font-size: .92rem; }
.checklist i {
  width: 18px; height: 18px; border-radius: 50%; background: var(--red); color: #fff;
  display: grid; place-items: center; font-size: .65rem; font-style: normal; font-weight: 800; flex-shrink: 0;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem; color: var(--red);
  font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .85rem;
}
.eyebrow span { width: 28px; height: 2px; background: var(--red); display: inline-block; }
.eyebrow-light { color: #ff6b73; }
.eyebrow-light span { background: #ff6b73; }

/* ===== HEADER (Mockup) ===== */
.stage-exact {
  width: 100%;
  background: #fff;
  line-height: 0;
  overflow: visible;
}
.util {
  background: #000;
  color: #fff;
  font-size: .7rem;
  font-weight: 500;
  height: var(--util);
  display: flex;
  align-items: center;
  line-height: 1.2;
}
.util__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: min(100% - 3rem, var(--wrap));
}
.util__left, .util__right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.util__item { display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap; }
.util__check { font-size: .78rem; line-height: 1; font-weight: 700; }
.util__right a { white-space: nowrap; color: #fff; }
.util__right a:hover { opacity: .75; }
.util__phone {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 600;
}
.util__phone svg { width: 14px; height: 14px; stroke-width: 1.6; }

.header--over {
  position: relative;
  z-index: 50;
  height: var(--header);
  background: #ffffff;
  border-bottom: 1px solid #d0d0d0;
  line-height: 1.2;
}
.header__main {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  flex: 1;
  min-width: 0;
  margin-left: 2rem;
}
.nav--over,
.nav--sticky {
  display: flex; align-items: center; gap: 1.4rem;
  flex-wrap: nowrap; min-width: 0;
  justify-content: flex-end;
  flex: 1;
  margin-right: .35rem;
}
.nav--over > a,
.nav--sticky > a,
.nav__item > a {
  color: #111; font-size: .78rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; display: inline-flex; align-items: center; gap: .18rem;
  white-space: nowrap; flex-shrink: 0;
}
.nav--over > a:hover,
.nav--sticky > a:hover,
.nav__item > a:hover,
.nav__item:hover > a {
  color: var(--red);
}
.nav__item {
  position: relative;
  height: var(--header);
  display: flex;
  align-items: center;
}
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 200px;
  background: #fff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 14px 30px rgba(0,0,0,.1);
  padding: .4rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 60;
}
.nav__dropdown::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -14px;
  height: 14px;
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: .65rem 1.1rem;
  color: #333;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: none;
  white-space: nowrap;
}
.nav__dropdown a:hover {
  background: #f5f5f5;
  color: var(--red);
}
.header--over .nova-logo { align-items: center; }
.header--over .nova-word {
  color: #111;
  font-size: 46.2px;
  font-weight: 800;
  letter-spacing: -2.5px;
}
.header--over .nova-a { color: #e30613; }
.header--over .nova-trailer {
  color: #222;
  letter-spacing: 0.58em;
  font-weight: 600;
  font-size: 13.75px;
  margin-top: 5px;
  padding-left: 0.58em;
  text-align: center;
  width: 100%;
}
.header--sticky .nova-word { color: #fff; }
.header--sticky .nova-a { color: #e30613; }
.header--sticky .nova-trailer { color: #fff; }
.header--sticky .nav__item > a,
.header--sticky > .header__row .nav--sticky > a {
  color: rgba(255,255,255,.92);
}
.header--sticky .nav__item:hover > a,
.header--sticky .nav--sticky > a:hover {
  color: #fff;
}
.header__right {
  display: flex;
  align-items: center;
  gap: .2rem;
  flex-shrink: 0;
}
.icon-btn {
  position: relative;
  width: 38px; height: 38px; border: 0; background: transparent; color: #111;
  border-radius: 50%; display: grid; place-items: center; cursor: pointer;
}
.icon-btn:hover { background: #f3f3f3; }
.icon-btn svg { width: 20px; height: 20px; stroke-width: 1.55; }
.cart-badge {
  position: absolute;
  top: 3px; right: 1px;
  min-width: 15px; height: 15px;
  padding: 0 3px;
  border-radius: 999px;
  background: #e30613;
  color: #fff;
  font-size: .58rem;
  font-weight: 800;
  line-height: 15px;
  text-align: center;
}
.header--over .burger { display: none; }
.header--over .burger span { background: #111; }

/* HERO STUDIO – helles Mockup + Slider */
.hero-studio {
  position: relative;
  background: #eceff1;
  color: #111;
  padding: 0;
  line-height: 1.45;
  overflow: hidden;
  min-height: clamp(480px, 62vh, 720px);
  max-height: 780px;
  display: flex;
  align-items: center;
}
.hero-studio__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-studio__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .55s ease, visibility .55s ease;
  display: flex;
  align-items: center;
  background: #eceff1;
}
.hero-studio__visual {
  position: absolute;
  top: 0;
  bottom: 0;
  /* Abstand rechts, damit Anhängerkupplung nicht abgeschnitten wird */
  right: max(1.5rem, calc((100% - var(--wrap)) / 2));
  width: min(60vw, 820px);
  z-index: 0;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem 1.75rem 1rem 0;
  box-sizing: border-box;
  background: transparent;
}
.hero-studio__slide--sm .hero-studio__visual {
  width: min(58vw, 780px);
}
.hero-studio__slide--sm .hero-studio__img {
  max-height: 92%;
  width: auto;
  height: auto;
  max-width: 100%;
  transform: translate(-10px, -20px) scale(1.21);
  transform-origin: center center;
}
.hero-studio__slide--grow .hero-studio__visual {
  width: min(64vw, 880px);
}
.hero-studio__slide--grow .hero-studio__img {
  transform: translateY(-10px) scale(1.155);
  transform-origin: center center;
}
.hero-studio__slide--xl .hero-studio__visual {
  width: min(64vw, 880px);
}
.hero-studio__slide--xl .hero-studio__img {
  transform: translateY(-10px) scale(1.134);
  transform-origin: center center;
}
.hero-studio__img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: right center;
  display: block;
  pointer-events: none;
  user-select: none;
  transform: translateY(-10px) scale(1.05);
  transform-origin: center center;
}
.hero-studio__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.hero-studio__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  width: min(100% - 3rem, var(--wrap));
  margin-inline: auto;
  padding: 3.2rem 0 3.4rem;
  transform: translateY(-10px);
}
.hero-studio__grid--slogan {
  align-items: flex-start;
  padding-top: calc(clamp(2.4rem, 5.5vh, 4.2rem) - 15px);
  padding-bottom: 2.5rem;
  transform: translateY(-10px);
}
.hero-studio__copy--light {
  background: none;
  color: #fff;
  padding: 0;
  border-radius: 0;
}
.hero-studio__copy--light .hero-studio__eyebrow,
.hero-studio__copy--light .hero-studio__lead { color: rgba(255,255,255,.92); }
.hero-studio__copy--light h1 { color: #fff; }
.hero-studio__copy--light .btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.85);
}
.hero-studio__copy--light .btn-outline:hover {
  background: #fff;
  color: #111;
}
.hero-studio__copy {
  max-width: 560px;
  background: none;
  padding: 0;
}
.hero-studio__copy--slogan {
  max-width: min(100%, 34rem);
  padding-top: .25rem;
}
.hero-studio__copy--slogan .hero-studio__eyebrow {
  display: block;
  color: var(--red);
  font-size: clamp(.68rem, 1.05vw, .78rem);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: .7rem;
  line-height: 1.2;
}
.hero-studio__copy--slogan h1,
.hero-studio__copy--slogan .hero-studio__title {
  font-size: clamp(2.7rem, 6.4vw, 4.55rem);
  line-height: .92;
  letter-spacing: .015em;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1.55rem;
  color: #111;
}
.hero-studio__copy--slogan h1 strong,
.hero-studio__copy--slogan .hero-studio__title strong {
  color: var(--red);
  font-weight: 900;
}
.hero-studio__copy--slogan .hero-studio__lead {
  font-size: clamp(.95rem, 1.35vw, 1.12rem);
  color: #222;
  max-width: 28rem;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 1.75rem;
}
.hero-studio__copy--slogan .hero-studio__actions {
  gap: .7rem;
}
.hero-studio__copy--plain {
  background: none;
  padding: 0;
}
.hero-studio__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 1.1rem;
}
.hero-studio__eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}
.hero-studio h1,
.hero-studio .hero-studio__title {
  font-size: clamp(2.1rem, 4.6vw, 3.35rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: #111;
  margin-bottom: 1.1rem;
}
.hero-studio h1 strong,
.hero-studio .hero-studio__title strong {
  color: var(--red);
  font-weight: 900;
}
.hero-studio__lead {
  font-size: 1rem;
  color: #333;
  max-width: 34rem;
  margin-bottom: 1.6rem;
  font-weight: 500;
}
.hero-studio__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.hero-studio__media { min-height: 1px; }
.hero-studio__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0,0,0,.2);
  background: rgba(255,255,255,.75);
  color: #111;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 2px;
}
.hero-studio__arrow:hover { background: #fff; }
.hero-studio__arrow--prev { left: 1rem; }
.hero-studio__arrow--next { right: 1rem; }
.hero-studio__dots {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: .4rem;
}
.hero-studio__dots button {
  width: 26px;
  height: 4px;
  border: 0;
  border-radius: 2px;
  background: rgba(0,0,0,.2);
  cursor: pointer;
  padding: 0;
}
.hero-studio__dots button.is-active { background: var(--red); }

/* FEATURES BAR */
.menu-band {
  display: block;
  background: #f4f6f7;
  width: 100%;
  padding: 1.15rem 0;
  line-height: 1.3;
  border-top: 1px solid #d0d0d0;
  border-bottom: 1px solid #d0d0d0;
}
.menu-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.menu-band__item {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .2rem 1.15rem;
  position: relative;
}
.menu-band__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: #d7dcde;
}
.menu-band__item svg {
  width: 30px;
  height: 30px;
  color: #555;
  flex-shrink: 0;
}
.menu-band__item b {
  display: block;
  font-size: .76rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #111;
  font-weight: 800;
  margin-bottom: .1rem;
  white-space: nowrap;
}
.menu-band__item span {
  display: block;
  font-size: .82rem;
  color: #666;
  font-weight: 500;
}

/* Sticky header after scroll */
.header--sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header);
  background: rgba(5,5,5,.96);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transform: translateY(-110%);
  transition: transform .28s var(--ease);
  pointer-events: none;
  overflow: visible;
}
.header--sticky.is-scrolled {
  transform: translateY(0);
  pointer-events: auto;
}
.header__row {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: nowrap;
  width: min(100% - 3rem, var(--wrap));
}

.nova-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}
.nova-word {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 46.2px;
  font-weight: 800;
  letter-spacing: -2.5px;
  color: #111111;
}
.nova-a {
  position: relative;
  display: inline-block;
  color: #e30613;
}
.nova-trailer {
  margin-top: 5px;
  padding-left: 0.58em;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13.75px;
  font-weight: 600;
  letter-spacing: 0.58em;
  color: #222;
  text-align: center;
  width: 100%;
}
.footer .nova-word { color: #fff; }
.footer .nova-a { color: #e30613; }
.footer .nova-trailer { color: #fff; }

.burger { width: 40px; height: 40px; border: 0; background: transparent; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; padding: 8px; }
.burger span { display: block; height: 2px; background: #fff; transition: .25s; }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* SECTIONS */
.section { padding: 30px 0; }
.section-gray { background: var(--g100); }
.h2 { text-align: center; font-size: clamp(1.4rem, 2.7vw, 1.95rem); font-weight: 900; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 2.1rem; }
.h2-left { text-align: left; }
.h2-soft { color: #555; font-weight: 800; }
.center { display: flex; justify-content: center; margin-top: 1.9rem; }

.btn-sand {
  background: #c4a574;
  color: #111;
  border-color: #c4a574;
}
.btn-sand:hover {
  background: #b39264;
  border-color: #b39264;
  color: #111;
}

/* DISCOVER / FINDE TRAILER */
.discover { padding-top: 30px; padding-bottom: 30px; }
.discover__row {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: start;
}
.discover__title {
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.discover__lead {
  color: #555;
  font-size: .95rem;
  line-height: 1.55;
  max-width: 28rem;
  margin-bottom: 1.5rem;
}
.discover__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
}
.dcard {
  background: #fff;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.dcard:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.08); }
.dcard__img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
}
.dcard__meta {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: .15rem .5rem;
  padding: .7rem .8rem .8rem;
  align-items: center;
}
.dcard__meta strong {
  grid-column: 1;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.dcard__meta span {
  grid-column: 1;
  font-size: .72rem;
  color: #777;
}
.dcard__meta i {
  grid-column: 2;
  grid-row: 1 / span 2;
  font-style: normal;
  font-weight: 700;
  color: #111;
}
.dcard--all .dcard__all {
  aspect-ratio: 16/10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  background: #f3f3f3;
  color: #111;
  text-align: center;
  padding: .75rem;
}
.dcard--all .dcard__all strong { font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; }
.dcard--all .dcard__all span { font-size: .72rem; color: #666; }
.dcard__grid-ico {
  width: 36px; height: 36px;
  border: 2px solid #222;
  border-radius: 4px;
  display: block;
  background:
    linear-gradient(#222,#222) 8px 8px / 8px 8px no-repeat,
    linear-gradient(#222,#222) 20px 8px / 8px 8px no-repeat,
    linear-gradient(#222,#222) 8px 20px / 8px 8px no-repeat,
    linear-gradient(#222,#222) 20px 20px / 8px 8px no-repeat;
}

/* POPULAR CONCEPTS */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.6rem;
}
.section-head__link {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #111;
  white-space: nowrap;
}
.section-head__link:hover { color: var(--red); }
.section-head__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.pcon-nav {
  display: flex;
  gap: .35rem;
}
.pcon-nav__btn {
  width: 36px;
  height: 36px;
  border: 1px solid #d0d0d0;
  background: #fff;
  color: #111;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, color .2s, background .2s;
}
.pcon-nav__btn:hover {
  border-color: var(--red);
  color: var(--red);
}
.pcon-nav__btn:disabled {
  opacity: .35;
  cursor: default;
  border-color: #ddd;
  color: #999;
}
.pcon-slider {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: .15rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.pcon-slider::-webkit-scrollbar {
  display: none;
  height: 0;
}
.pcon__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  min-width: 100%;
}
.pcon {
  flex: 0 0 clamp(220px, 22vw, 260px);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.pcon:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.08); }
.pcon__img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}
.pcon__meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .2rem .5rem;
  padding: .85rem .9rem 1rem;
  align-items: center;
}
.pcon__meta strong {
  font-size: .88rem;
  font-weight: 800;
}
.pcon__meta span {
  grid-column: 1;
  font-size: .8rem;
  color: #666;
}
.pcon__meta i {
  grid-column: 2;
  grid-row: 1 / span 2;
  font-style: normal;
  font-weight: 700;
}

/* 70 CONCEPTS */
.concepts__sub {
  text-align: center;
  color: #555;
  margin: -1.1rem auto 1.75rem;
  max-width: 38rem;
  font-size: .95rem;
  line-height: 1.55;
  font-weight: 500;
}
.concepts__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: 1.25rem;
  row-gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: stretch;
}
.concepts__grid a {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .86rem;
  font-weight: 700;
  color: #222;
  padding: .35rem .1rem;
  line-height: 1.35;
  min-height: 2.6rem;
  min-width: 0;
  letter-spacing: .01em;
}
.concepts__grid a:hover { color: var(--red); }
.concepts__grid a svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: #444;
}
.concepts__grid a:hover svg { color: var(--red); }
#konzepte .center { margin-top: .5rem; }

/* CONFIGURATOR / ABOUT TEASER */
.config {
  position: relative;
  background: #141414;
  color: #fff;
  padding: 0;
  min-height: 360px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.config__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.config__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
  filter: brightness(0.7) contrast(1.05);
}
.config__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      #141414 0%,
      rgba(20, 20, 20, .97) 22%,
      rgba(20, 20, 20, .78) 42%,
      rgba(20, 20, 20, .35) 68%,
      rgba(20, 20, 20, .12) 85%,
      transparent 100%),
    linear-gradient(180deg, rgba(0,0,0,.22) 0%, transparent 30%, transparent 70%, rgba(0,0,0,.3) 100%);
}
.config__copy {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: min(100% - 2.4rem, var(--wrap));
  margin-inline: auto;
  padding: 1.7rem 0;
}
.config__pad {
  width: 100%;
  max-width: 34rem;
  padding: 0;
}
.config__copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.config__eyebrow {
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.config__copy p {
  color: rgba(255,255,255,.75);
  max-width: 30rem;
  margin-bottom: 1.25rem;
  line-height: 1.55;
}
.checklist--light li { color: rgba(255,255,255,.9); }
.checklist--light i {
  background: transparent;
  color: #c4a574;
  border: 1px solid #c4a574;
}
.config__checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem 1rem;
  margin-bottom: 1.6rem;
}

/* CATS */
.cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; align-items: stretch; }
.cat {
  background: #fff;
  border: 1px solid var(--g300);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.cat:hover { transform: translateY(-5px); box-shadow: 0 14px 32px rgba(0,0,0,.08); }
.cat__img { aspect-ratio: 16/11; background-size: cover; background-position: center; flex-shrink: 0; }
.cat h3 { font-size: .92rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; padding: 1rem 1rem .4rem; }
.cat p {
  font-size: .86rem;
  color: var(--g600);
  padding: 0 1rem;
  margin-bottom: 0;
  flex: 1 1 auto;
  min-height: 4.2em;
  line-height: 1.45;
}
.cat a {
  display: inline-block;
  color: var(--red);
  font-weight: 800;
  font-size: .74rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .85rem 1rem 1.15rem;
  margin-top: auto;
}
.cat a span { display: inline-block; transition: transform .2s; }
.cat a:hover span { transform: translateX(3px); }

/* ICONS */
.icons { display: grid; grid-template-columns: repeat(9, 1fr); gap: .7rem; }
.icons a { display: flex; flex-direction: column; align-items: center; gap: .5rem; font-size: .68rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: #222; }
.icons i { width: 62px; height: 62px; border: 1.5px solid #222; border-radius: 50%; display: grid; place-items: center; position: relative; transition: .25s; }
.icons i::before { content: ""; width: 16px; height: 16px; border: 1.6px solid #222; border-radius: 3px; }
.icons a:nth-child(2) i::before { clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.icons a:nth-child(3) i::before, .icons a:nth-child(8) i::before { border-radius: 50%; }
.icons a:nth-child(6) i::before, .icons a:nth-child(9) i::before { width: 11px; height: 15px; border-radius: 2px 2px 4px 4px; }
.icons a:hover i { border-color: var(--red); }
.icons a:hover i::before { border-color: var(--red); }

/* MODELS */
.models { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.model { background: #fff; border: 1px solid var(--g300); padding: 1.05rem; display: flex; flex-direction: column; }
.model__img { background: #f2f2f2; aspect-ratio: 4/3; overflow: hidden; margin-bottom: .9rem; }
.model__img img { width: 100%; height: 100%; object-fit: cover; }
.model h3 { font-size: 1.05rem; font-weight: 900; letter-spacing: .03em; text-transform: uppercase; margin-bottom: .6rem; }
.model ul { margin-bottom: .85rem; flex: 1; }
.model li { position: relative; padding-left: 1.1rem; margin-bottom: .35rem; font-size: .86rem; }
.model li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 800; }
.price { color: var(--g600); font-weight: 700; font-size: .86rem; margin-bottom: .75rem; }

/* STATS */
.stats { background: #d0d0d0; color: #fff; padding: 0; height: 1px; overflow: hidden; line-height: 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat { display: flex; flex-direction: column; align-items: center; gap: .2rem; }
.stat svg { width: 24px; height: 24px; color: var(--red); margin-bottom: .2rem; }
.stat strong { font-size: 1.7rem; font-weight: 900; }
.stat span { font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; color: rgba(255,255,255,.72); font-weight: 700; }

/* ABOUT SPLIT */
.about { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.about__left { background: #151515; color: #fff; display: flex; align-items: center; }
.about__pad { padding: 3.5rem clamp(1.4rem, 4vw, 3.5rem); max-width: 560px; margin-left: auto; width: 100%; }
.about__left h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 900; text-transform: uppercase; line-height: 1.2; letter-spacing: .02em; margin-bottom: .9rem; }
.about__left > .about__pad > p { color: rgba(255,255,255,.78); margin-bottom: 1.15rem; }
.about__cols { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem 1rem; margin-bottom: 1.5rem; }
.about__right { position: relative; overflow: hidden; min-height: 420px; }
.about__right img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.step { text-align: center; }
.step span { width: 40px; height: 40px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; margin: 0 auto .75rem; font-weight: 900; }
.step strong { display: block; font-size: .76rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: .3rem; }
.step p { font-size: .82rem; color: var(--g600); max-width: 150px; margin-inline: auto; }

/* REVIEWS */
.reviews-band {
  background: #fff;
  color: var(--ink);
  padding: 2.4rem 0 2.6rem;
  overflow: hidden;
  border-top: 1px solid var(--g300);
}
.reviews-band__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.reviews-band__eyebrow {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--g600);
  margin-bottom: .45rem;
}
.reviews-band__title {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.15;
  color: var(--ink);
}
.pcon-nav--dark .pcon-nav__btn {
  background: #fff;
  border-color: #d0d0d0;
  color: #111;
}
.pcon-nav--dark .pcon-nav__btn:hover {
  border-color: var(--red);
  color: var(--red);
  background: #fff;
}
.pcon-nav--dark .pcon-nav__btn:disabled {
  opacity: .35;
  border-color: #ddd;
  color: #999;
}
.reviews-slider {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-left: max(1.2rem, calc((100vw - var(--wrap)) / 2));
  padding-right: max(1.2rem, calc((100vw - var(--wrap)) / 2));
}
.reviews-slider::-webkit-scrollbar { display: none; height: 0; }
.reviews-track {
  display: flex;
  gap: 1rem;
  width: max-content;
}
.review-card {
  flex: 0 0 clamp(270px, 28vw, 350px);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--g300);
  border-top: 3px solid var(--red);
  padding: 1.35rem 1.25rem 1.2rem;
  min-height: 13.5rem;
  display: flex;
  flex-direction: column;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.review-card:hover {
  border-color: #d8d8d8;
  border-top-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
.review-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .85rem;
}
.review-card__mark {
  font-size: 2.6rem;
  line-height: .7;
  font-weight: 900;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
}
.review-card .stars {
  color: var(--red);
  letter-spacing: 2px;
  font-size: .82rem;
  margin: 0;
}
.review-card > p {
  font-size: .92rem;
  color: #333;
  margin: 0 0 1.2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.55;
  flex: 1;
}
.review-card__foot {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--g300);
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 2px;
  background: var(--g100);
  border: 1px solid var(--g300);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  flex-shrink: 0;
}
.review-card__foot strong {
  display: block;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--ink);
}
.review-card__foot span:not(.review-card__avatar) {
  display: block;
  font-size: .72rem;
  color: var(--g600);
  font-weight: 600;
  margin-top: .1rem;
}
.card { background: #fff; border: 1px solid var(--g300); padding: 1.2rem 1.05rem; }
.stars { color: var(--red); letter-spacing: 1px; margin-bottom: .35rem; }
.card p { font-size: .9rem; color: #333; margin: .35rem 0 .85rem; font-style: italic; line-height: 1.55; }
.card cite { font-style: normal; font-weight: 700; font-size: .84rem; color: #555; }

/* SEO */
/* SEO TEXT */
.seo__h1 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: .85rem;
  line-height: 1.2;
}
.seo__lead {
  color: var(--g600);
  margin-bottom: 1.5rem;
  max-width: 70rem;
  font-size: 1rem;
  line-height: 1.65;
}
.seo__h2 {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 800;
  letter-spacing: .02em;
  margin: 1.6rem 0 .65rem;
  line-height: 1.3;
}
.seo__h3 {
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .02em;
  margin: 1.1rem 0 .45rem;
  line-height: 1.35;
}
.seo p {
  color: var(--g600);
  margin-bottom: .85rem;
  max-width: 70rem;
  line-height: 1.65;
  font-size: .94rem;
}
.seo__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1rem 0 1.4rem;
}
.seo__block {
  background: var(--g100);
  border: 1px solid var(--g300);
  padding: 1rem 1.05rem;
}
.seo__block .seo__h3 { margin-top: 0; }
.seo__block p { margin-bottom: 0; }
.seo .tagbox { margin-top: 1.4rem; }
.seo .tagbox .seo__h3 { margin-top: 0; text-transform: uppercase; font-size: .82rem; letter-spacing: .05em; }
.tagbox { background: var(--g100); border: 1px solid var(--g300); padding: 1.2rem 1.25rem; }
.tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.tags a { background: #fff; border: 1px solid #ddd; padding: .4rem .7rem; font-size: .78rem; font-weight: 650; border-radius: 2px; }
.tags a:hover { border-color: var(--red); color: var(--red); }

/* FAQ */
#faq { border-bottom: 1px solid #d0d0d0; }
.faq { max-width: none; }
.faq__lead {
  color: var(--g600);
  font-size: .95rem;
  line-height: 1.55;
  margin: -.35rem 0 1.4rem;
  max-width: none;
}
.faq__list { display: grid; gap: .65rem; }
.faq__item {
  border: 1px solid var(--g300);
  background: #fff;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.faq__item[open] summary::after { content: "–"; }
.faq__item summary:hover { color: var(--red); }
.faq__item p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  color: var(--g600);
  font-size: .9rem;
  line-height: 1.6;
  max-width: none;
}
.faq-page { max-width: none; padding-bottom: .5rem; }
.faq__group-title {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--g600);
  margin: 2rem 0 .85rem;
}
.faq-page > .faq__group-title:first-child { margin-top: 0; }
.faq-page__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--g300);
}

/* CONTACT */
.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2rem; align-items: start; }
#kontakt { border-bottom: 1px solid #d0d0d0; }
.contact__lead {
  color: #111;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  margin: -.4rem 0 1rem;
}
.contact__text {
  color: var(--g600);
  font-size: .92rem;
  line-height: 1.6;
  margin-bottom: .9rem;
  max-width: 36rem;
}
.contact__text:last-child { margin-bottom: 0; }
.form { display: flex; flex-direction: column; gap: .75rem; background: #fff; border: 1px solid var(--g300); padding: 1.25rem; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.form input, .form select, .form textarea { border: 1px solid var(--g300); border-radius: 2px; padding: .8rem .9rem; }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(227,6,19,.12); }
.ok { color: #15803d; font-weight: 700; }

/* FOOTER */
.footer { background: #101010; color: rgba(255,255,255,.72); padding-top: 3rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 1.3rem; padding-bottom: 2.2rem; }
.footer__brand p { margin: 1rem 0 1.1rem; font-size: .88rem; max-width: 260px; }
.social { display: flex; gap: .4rem; }
.social a { width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; display: grid; place-items: center; font-size: .62rem; font-weight: 800; text-transform: uppercase; }
.social a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer h4 { color: #fff; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .8rem; }
.footer li { margin-bottom: .42rem; font-size: .86rem; }
.footer a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer__bottom-row { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: 1rem 0; font-size: .74rem; color: rgba(255,255,255,.45); }
.footer__bottom-row div { display: flex; gap: 1.1rem; }

/* RESPONSIVE */
@media (max-width: 1200px) {
  .nav--over { display: none; }
  .nav--over.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header);
    left: 0; right: 0;
    background: #fff;
    padding: 1rem 1.4rem 1.35rem;
    gap: .85rem;
    align-items: stretch;
    z-index: 20;
    border-bottom: 1px solid #ececec;
  }
  .nav--over.is-open > a,
  .nav--over.is-open .nav__item > a {
    white-space: normal;
    color: #222;
  }
  .nav--over.is-open .nav__item {
    flex-direction: column;
    align-items: stretch;
    gap: .35rem;
    height: auto;
  }
  .nav--over.is-open .nav__dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: 0;
    background: #f5f7f8;
    min-width: 0;
    padding: .25rem 0 .25rem .75rem;
  }
  .nav--over.is-open .nav__dropdown a {
    padding: .45rem .6rem;
    font-size: .74rem;
  }
  .header--over .burger { display: flex; }
  .header__row { position: relative; }
  .header__main { justify-content: flex-end; margin-left: 0; }
  .nav--sticky { display: none; }
  .hero-studio__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-studio__media { display: none; }
  .hero-studio__copy {
    background: none;
    padding: 0;
    border-radius: 0;
  }
  .hero-studio__copy--plain,
  .hero-studio__copy--light {
    background: none;
    padding: 0;
  }
  .menu-band__grid { grid-template-columns: 1fr 1fr; }
  .menu-band__item:nth-child(2n)::after { display: none; }
  .discover__row { grid-template-columns: 1fr; }
  .discover__grid { grid-template-columns: repeat(2, 1fr); }
  .concepts__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 1rem;
    row-gap: .85rem;
  }
  .config {
    min-height: 0;
  }
  .config__copy {
    width: min(100% - 2rem, var(--wrap));
    padding: 1.5rem 0;
  }
  .config__pad { max-width: none; }
  .config__bg img { object-position: center; }
  .config__bg::after {
    background:
      linear-gradient(180deg,
        rgba(20, 20, 20, .88) 0%,
        rgba(20, 20, 20, .72) 45%,
        rgba(20, 20, 20, .55) 100%),
      linear-gradient(90deg,
        rgba(20, 20, 20, .55) 0%,
        transparent 55%);
  }
  .config__checks { grid-template-columns: 1fr; }
  .cats, .models, .stats__grid { grid-template-columns: 1fr 1fr; }
  .icons { grid-template-columns: repeat(3, 1fr); }
  .steps, .footer__grid { grid-template-columns: 1fr 1fr; }
  .about, .contact { grid-template-columns: 1fr; }
  .seo__cols { grid-template-columns: 1fr; }
  .about__pad { max-width: none; margin: 0; }
  .about__right { min-height: 360px; }
}
@media (max-width: 768px) {
  .nova-word {
    font-size: 39.6px;
    letter-spacing: -2px;
  }
  .nova-trailer {
    font-size: 12.1px;
    letter-spacing: 0.5em;
    margin-top: 4px;
  }
  .hero-studio__actions { flex-direction: column; align-items: stretch; }
  .hero-studio__arrow { display: none; }
}
@media (max-width: 700px) {
  .util { display: none; }
  .menu-band__grid { grid-template-columns: 1fr; }
  .menu-band__item::after { display: none; }
  .menu-band__item { padding: .55rem 0; }
  .discover__grid { grid-template-columns: 1fr 1fr; }
  .concepts__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: .9rem;
    row-gap: .75rem;
  }
  .concepts__grid a {
    font-size: .84rem;
    min-height: 2.4rem;
  }
  .section-head { flex-direction: column; align-items: flex-start; }
  .section-head__actions { width: 100%; justify-content: space-between; }
  .cats, .models, .stats__grid, .steps, .icons, .footer__grid, .row2, .about__cols { grid-template-columns: 1fr; }
  .reviews-band__head { align-items: center; }
  .header--sticky .btn-sm,
  .header--over .btn-sm,
  .icon-btn { display: none; }
  .header--over .burger { display: flex; }
}
