/* Startseite — einheitlich mit Preise / Unser Weg */

:root {
  --home-hero-opacity: 1;
  --home-forest-opacity: 0;
  --home-hero-scale: 1.05;
  --home-hero-shift: 0px;
  --home-forest-obj-x: 72%;
  --home-forest-obj-y: 58%;
  --home-forest-x: 3%;
  --home-forest-y: -3%;
  --home-forest-scale: 1.14;
  /* Globale Verdunkelung — sinkt ab erstem Scroll */
  --home-shade: 0.55;
}

body.page-home {
  background: #141f1a;
}

body.page-home .site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 300;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    background 0.45s ease,
    box-shadow 0.45s ease,
    backdrop-filter 0.45s ease;
}

/* Grüner Balken erst ab Sektion „Kommt Ihnen bekannt vor?“ */
body.page-home.home-header-gated.header-bar-on .site-header,
body.page-home.home-header-gated.mobile-nav-open .site-header {
  background: rgba(17, 39, 28, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.16);
}

/* Im Hero: kein .scrolled-Grün überschreiben */
body.page-home.home-header-gated:not(.header-bar-on):not(.mobile-nav-open) .site-header.scrolled {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

body.page-home main {
  position: relative;
  isolation: isolate;
  background: transparent;
  z-index: 1;
}

/* Feste Bg-Layer (HTML) — unter Content, über body-Farbe */
.home-scroll-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Eine gemeinsame Verdunkelung über Hero + Wald — kein Schnitt zwischen Layern */
.home-scroll-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: rgba(8, 12, 10, var(--home-shade, 0.55));
}

.home-scroll-bg__forest,
.home-scroll-bg__hero {
  position: absolute;
  inset: 0;
  overflow: hidden;
  will-change: opacity, transform;
  backface-visibility: hidden;
}

.home-scroll-bg__forest {
  z-index: 0;
  background-color: #141f1a;
  opacity: var(--home-forest-opacity);
}

/* Dunkler Schleier entfernt — Verdunkelung läuft über .home-scroll-bg::after */
.home-scroll-bg__forest::after {
  content: none;
  display: none;
}

/* Echtes img — Crop über object-position + leichten Scale/Translate steuern */
.home-scroll-bg__forest-img {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  max-width: none;
  object-fit: cover;
  /* Start: große Blätter oben rechts sichtbar */
  object-position: var(--home-forest-obj-x, 85%) var(--home-forest-obj-y, 15%);
  transform: translate3d(var(--home-forest-x), var(--home-forest-y), 0) scale(var(--home-forest-scale));
  transform-origin: center center;
  will-change: transform, object-position;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  /* Waldboden dezent — kein heller Waldausschnitt */
  filter: brightness(0.42) contrast(1.08) saturate(0.75);
}

.home-scroll-bg__hero {
  z-index: 1;
  inset: -2%;
  background-repeat: no-repeat;
  background-image: image-set(
    url("/static/img/bg-hero-home.webp") type("image/webp"),
    url("/static/img/bg-hero-home.jpg") type("image/jpeg")
  );
  background-size: 100% auto;
  background-position: center top;
  opacity: var(--home-hero-opacity);
  transform: translate3d(0, var(--home-hero-shift), 0) scale(var(--home-hero-scale));
  transform-origin: center top;
}

/* Erde-mit-Sonne Hero (statt Wald/Foto) */
.home-scroll-bg__hero--earth {
  inset: 0;
  background: #030712;
  background-image: none;
  transform-origin: center center;
}

.home-scroll-bg__earth-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

body.page-home--earth-hero {
  background: #0a0f14;
}

body.page-home--earth-hero .page-hero--home .page-hero__card {
  background: rgba(8, 12, 18, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body.page-home--earth-hero .home-scroll-bg::after {
  background: linear-gradient(
    180deg,
    rgba(3, 7, 18, 0.45) 0%,
    rgba(8, 12, 10, calc(var(--home-shade, 0.55) * 0.85)) 55%,
    rgba(8, 12, 10, var(--home-shade, 0.55)) 100%
  );
}

body.page-home main::before,
body.page-home main::after {
  content: none !important;
  display: none !important;
}

body.page-home main .section {
  position: relative;
  z-index: 2;
  background: transparent;
  box-shadow: none;
  padding-top: clamp(5rem, 10vw, 8.5rem);
  padding-bottom: clamp(5rem, 10vw, 8.5rem);
}

body.page-home main .section::before,
body.page-home main .section::after {
  content: none;
  display: none;
}

body.page-home .site-footer {
  margin-top: 0;
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #1d3025 0%, #22382c 52%, #294134 100%);
}

body.page-home .cta-block {
  position: relative;
  z-index: 2;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.page-hero--home {
  position: relative;
  isolation: isolate;
  z-index: 2;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.page-hero--home::after {
  display: none;
}

.page-hero--home .container {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  padding: calc(82px + clamp(2vh, 4vh, 6vh)) 5% clamp(4.5rem, 7vh, 5.5rem) clamp(32%, 36vw, 40%);
}

.page-hero--home .page-hero__card {
  display: flex;
  flex-direction: column;
  width: min(40rem, 48vw);
  max-width: min(40rem, 48vw);
  margin: 0;
  text-align: left;
  padding: clamp(1.35rem, 2.2vw, 1.85rem) clamp(1.4rem, 2.4vw, 2rem);
  border-radius: var(--radius-xl);
  /* Nebel — etwas dunkler für Lesbarkeit, immer noch luftig */
  background: linear-gradient(165deg, rgba(16, 26, 20, 0.64) 0%, rgba(18, 28, 22, 0.78) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(214, 195, 163, 0.12);
  box-shadow: 0 28px 64px rgba(5, 8, 7, 0.28);
  opacity: 1;
  transform: none;
}

.page-hero--home .page-hero__brand {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--gold-accent);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.page-hero--home .page-hero__card .eyebrow {
  margin: 0 0 0.55rem;
  opacity: 0.92;
}

.page-hero--home .page-hero__card h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(1.35rem, 2.15vw, 1.78rem);
  font-weight: 600;
  line-height: 1.28;
  color: var(--text-light);
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.page-hero--home .lead {
  max-width: 100%;
  margin: 0.85rem 0 0;
  font-size: clamp(0.82rem, 1.15vw, 0.94rem);
  line-height: 1.55;
}

.home-hero-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.1rem;
}

.home-hero-card__actions .btn {
  flex: 1 1 calc(50% - 0.35rem);
  min-width: 9rem;
  justify-content: center;
  text-align: center;
  padding: 0.62rem 0.85rem;
  font-size: 0.8rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-hero-card__actions .btn:hover {
  transform: translateY(-1px);
}

.page-hero--home .page-hero__trust {
  margin: 0.75rem 0 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--brown-text-soft);
}

/* Chevrons am unteren Rand des ersten Viewports */
.page-hero--home .scroll-chevrons-hint {
  position: absolute;
  left: 50%;
  bottom: clamp(1.25rem, 3vh, 2rem);
  top: auto;
  z-index: 2;
  transform: translateX(-50%);
}
.scroll-chevrons-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(240, 230, 214, 0.88);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.scroll-chevrons-hint:hover {
  opacity: 1;
  color: var(--gold-accent);
}

.scroll-chevrons-hint__icon {
  display: block;
  animation: scroll-chevrons-bounce 2.2s ease-in-out infinite;
}

@keyframes scroll-chevrons-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-chevrons-hint__icon {
    animation: none;
  }
}

.section-intro {
  max-width: 42rem;
  margin: 0.75rem auto 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

body.page-home main .section.home-pain {
  padding-top: clamp(4rem, 8vw, 6.5rem);
  padding-bottom: clamp(5rem, 10vw, 8rem);
}

.home-pain {
  position: relative;
  scroll-margin-top: 5rem;
}

#home-compare {
  scroll-margin-top: 5rem;
}

.scroll-chevrons-hint--section {
  display: none;
}

@media (max-width: 900px) {
  .scroll-chevrons-hint--section {
    display: flex;
    bottom: 0.85rem;
    color: rgba(240, 230, 214, 0.75);
  }
}

.home-pain__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  background: rgba(18, 28, 22, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(214, 195, 163, 0.12);
}

.home-pain__inner h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  color: var(--text-light);
}

.home-pain__inner p:last-child {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.home-pain__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-pain__list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.35rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(214, 195, 163, 0.1);
}

.home-pain__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold-accent);
}

.home-compare__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 1.5rem);
  margin-top: clamp(1.25rem, 3vw, 2rem);
}

.home-compare__card {
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  background: rgba(18, 28, 22, 0.68);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(214, 195, 163, 0.12);
}

.home-compare__card--after {
  border-color: rgba(109, 156, 86, 0.22);
  background: rgba(22, 36, 28, 0.75);
}

.home-compare__label {
  margin: 0 0 0.85rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-accent);
}

.home-compare__mock--bad {
  padding: 0.85rem;
  border-radius: var(--radius-md);
  background: #e8e4dc;
  color: #333;
  min-height: 14rem;
}

.mock-bar {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
}

.mock-bar span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #bbb;
}

.mock-hero--bad {
  font-size: 0.72rem;
  font-weight: 700;
  color: #003399;
  text-decoration: underline;
  margin-bottom: 0.5rem;
}

.mock-line {
  height: 0.35rem;
  background: #ccc;
  border-radius: 2px;
  margin-bottom: 0.35rem;
}

.mock-line--short { width: 55%; }
.mock-line--tiny { width: 30%; height: 0.25rem; }

.mock-note {
  margin: 0.75rem 0 0;
  font-size: 0.68rem;
  color: #666;
  line-height: 1.4;
}

.home-compare__device {
  max-width: 11rem;
  margin: 0 auto;
  padding: 0.5rem;
  border-radius: 1.25rem;
  background: #0a100d;
  border: 2px solid rgba(214, 195, 163, 0.2);
}

.home-compare__device img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.85rem;
}

.home-compare__caption {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.home-compare__caption a {
  color: var(--gold-accent);
}

.home-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-benefit-card {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-xl);
  background: rgba(18, 28, 22, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(214, 195, 163, 0.12);
}

.home-benefit-card__num {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-accent);
}

.home-benefit-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-light);
}

.home-benefit-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.home-demos__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: clamp(1.25rem, 3vw, 2rem);
}

.home-demo-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  background: rgba(18, 28, 22, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(214, 195, 163, 0.12);
}

.home-demo-card__screen {
  max-width: 10rem;
  margin: 0 auto 1rem;
  padding: 0.45rem;
  border-radius: 1.1rem;
  background: #0a100d;
  border: 2px solid rgba(214, 195, 163, 0.16);
}

.home-demo-card__screen img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 19;
  object-fit: cover;
  object-position: top center;
  border-radius: 0.75rem;
}

.home-demo-card__screen--placeholder {
  min-height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: rgba(31, 58, 46, 0.5);
}

.home-demo-card__body {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-demo-card__body h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  color: var(--text-light);
}

.home-demo-card__body p {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.btn-sm {
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
}

.home-team__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 2.75rem);
  max-width: 52rem;
  margin: clamp(2rem, 5vw, 3.25rem) auto 0;
}

.home-team__person {
  text-align: center;
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: var(--radius-xl);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
}

.home-team__person .team-avatar {
  --avatar-size: clamp(7.5rem, 14vw, 10rem);
  margin: 0 auto 1.15rem;
}

/* Team-Avatare (Platzhalter → später echte Fotos) */
.team-avatar {
  --avatar-size: 5.5rem;
  --avatar-bg: linear-gradient(145deg, rgba(42, 82, 60, 0.95), rgba(24, 46, 34, 0.98));
  --avatar-ring: rgba(214, 195, 163, 0.35);
  position: relative;
  flex-shrink: 0;
  width: var(--avatar-size);
  height: var(--avatar-size);
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  background: var(--avatar-bg);
  border: 2px solid var(--avatar-ring);
  box-shadow: 0 10px 24px rgba(5, 8, 7, 0.28);
}

.team-avatar--reny {
  --avatar-bg: linear-gradient(145deg, rgba(58, 96, 72, 0.95), rgba(31, 58, 46, 0.98));
  --avatar-ring: rgba(214, 195, 163, 0.42);
}

.team-avatar--marcel {
  --avatar-bg: linear-gradient(145deg, rgba(48, 74, 92, 0.95), rgba(28, 42, 52, 0.98));
  --avatar-ring: rgba(163, 195, 214, 0.28);
}

.team-avatar__ring {
  position: absolute;
  inset: 0.28rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: 1;
}

.team-avatar__initial {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: calc(var(--avatar-size) * 0.38);
  font-weight: 700;
  color: #f0e6d6;
  letter-spacing: 0.02em;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.team-avatar__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  opacity: 0;
}

.team-avatar--loaded .team-avatar__img {
  opacity: 1;
}

.team-avatar--loaded .team-avatar__initial {
  display: none;
}

.home-team__person h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  color: var(--text-light);
}

.home-team__role {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-accent);
}

.home-team__person p:last-child {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.home-team__more {
  margin: 1.25rem 0 0;
  text-align: center;
}

.home-team__more a {
  color: var(--gold-accent);
}

.home-process__inner {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.home-process__inner h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  color: var(--text-light);
}

.home-process__steps {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  text-align: left;
}

.home-process__steps li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(214, 195, 163, 0.1);
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.home-process__steps strong {
  display: inline-block;
  min-width: 2rem;
  color: var(--gold-accent);
  font-family: var(--font-heading);
  font-size: 0.78rem;
}

.home-process__figure img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(214, 195, 163, 0.14);
}

.home-trust__inner {
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  background: rgba(18, 28, 22, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(214, 195, 163, 0.12);
  text-align: center;
}

.home-trust__inner h2 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  color: var(--text-light);
}

.home-trust__quotes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
  text-align: left;
}

.home-trust__quotes blockquote {
  margin: 0;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-lg);
  background: rgba(14, 22, 18, 0.45);
  border: 1px solid rgba(109, 156, 86, 0.14);
}

.home-trust__quotes p {
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-light);
  font-style: italic;
}

.home-trust__quotes footer {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.home-trust__note {
  opacity: 0.75;
}

.home-trust__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
}

.home-trust__tags span {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
}

.cta-block-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(214, 195, 163, 0.35);
  color: var(--text-light);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
}

.btn-ghost:hover {
  background: rgba(214, 195, 163, 0.08);
}

@media (max-width: 900px) {
  .home-scroll-bg__forest-img {
    width: 122%;
    height: 122%;
    inset: -11%;
  }

  .home-scroll-bg__hero:not(.home-scroll-bg__hero--earth) {
    background-image: image-set(
      url("/static/img/bg-hero-home-sm.webp") type("image/webp"),
      url("/static/img/bg-hero-home.jpg") type("image/jpeg")
    );
    background-size: cover;
    background-position: center 22%;
  }

  body.page-home main .section {
    background: transparent;
  }

  .page-hero--home .container {
    min-height: 100vh;
    min-height: 100svh;
    padding: calc(82px + 0.75rem) 1.25rem clamp(3.5rem, 8vh, 4.5rem);
    align-items: center;
    justify-content: center;
  }

  .page-hero--home .scroll-chevrons-hint {
    bottom: clamp(0.85rem, 2vh, 1.25rem);
  }

  .page-hero--home .page-hero__card {
    width: 100%;
    max-width: min(28rem, 100%);
    margin: 0;
  }

  .page-hero--home .page-hero__brand {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
    text-align: center;
  }

  .page-hero--home .page-hero__card {
    text-align: center;
  }

  .page-hero--home .page-hero__card h1,
  .page-hero--home .lead,
  .page-hero--home .page-hero__trust {
    text-align: center;
  }

  .home-hero-card__actions {
    justify-content: center;
  }

  .home-hero-card__actions .btn {
    flex: 1 1 calc(50% - 0.35rem);
    min-width: 0;
    font-size: 0.74rem;
    padding: 0.58rem 0.5rem;
  }

  .home-pain__inner,
  .home-compare__grid,
  .home-benefits__grid,
  .home-demos__grid,
  .home-team__grid,
  .home-trust__quotes {
    grid-template-columns: 1fr;
  }
}

/* ── Homepage Premium UX Redesign ── */

.home-sec {
  scroll-margin-top: 5rem;
}

.home-sec__inner {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
}

.home-sec__inner--narrow {
  max-width: 40rem;
}

.home-statement {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  overflow: visible;
}

.home-statement--narrow {
  max-width: 40rem;
}

.home-statement .eyebrow {
  margin-bottom: 1rem;
  overflow: visible;
}

.home-statement__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.4vw, 2.55rem);
  font-weight: 600;
  line-height: 1.22;
  color: var(--text-light);
  letter-spacing: -0.01em;
  overflow: visible;
}

.home-statement--wpu .section-intro {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition: opacity 0.6s ease 0.35s, transform 0.6s ease 0.35s;
}

.home-statement--wpu:has(.wpu.is-shown) .section-intro {
  opacity: 1;
  transform: none;
}

.home-statement .section-intro {
  margin-top: 1.15rem;
}

/* Section moods — erste Abschnitte durchsichtig, Shade/Bg bleiben durchgängig */
.home-sec--statement {
  background: transparent;
}

.home-sec--glass {
  background: linear-gradient(
    165deg,
    rgba(22, 36, 28, 0.55) 0%,
    rgba(18, 30, 24, 0.62) 55%,
    rgba(16, 26, 22, 0.68) 100%
  );
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.home-sec--audience {
  background: rgba(14, 22, 18, 0.55);
}

.home-sec--showcase {
  background: linear-gradient(
    180deg,
    rgba(12, 18, 15, 0.92) 0%,
    rgba(16, 24, 20, 0.94) 40%,
    rgba(12, 18, 15, 0.93) 100%
  );
  padding-top: clamp(5.5rem, 11vw, 9rem) !important;
  padding-bottom: clamp(5.5rem, 11vw, 9rem) !important;
}

.home-sec--stage {
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(199, 155, 95, 0.1), transparent 60%),
    linear-gradient(180deg, rgba(10, 16, 13, 0.94) 0%, rgba(14, 22, 18, 0.96) 50%, rgba(12, 20, 16, 0.95) 100%);
  border-block: 1px solid rgba(214, 195, 163, 0.1);
}

.home-sec--trust {
  background: linear-gradient(
    180deg,
    rgba(28, 44, 36, 0.94) 0%,
    rgba(22, 36, 28, 0.95) 100%
  );
}

.home-sec--people {
  background: linear-gradient(
    165deg,
    rgba(32, 50, 40, 0.94) 0%,
    rgba(24, 40, 32, 0.95) 55%,
    rgba(20, 34, 28, 0.94) 100%
  );
}

.home-sec--timeline {
  background: rgba(14, 22, 18, 0.92);
}

.home-sec--quiet {
  background: rgba(14, 22, 18, 0.9);
  padding-top: clamp(3.5rem, 7vw, 5.5rem) !important;
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem) !important;
}

.home-sec--finale {
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(199, 155, 95, 0.16), transparent 65%),
    linear-gradient(180deg, rgba(30, 44, 34, 0.94) 0%, rgba(40, 54, 38, 0.96) 45%, rgba(28, 42, 32, 0.97) 100%);
  padding-top: clamp(5.5rem, 11vw, 9rem) !important;
  padding-bottom: clamp(5.5rem, 11vw, 9rem) !important;
}

/* 2 · Problem — Aussagen statt Karten */
.home-pain__list {
  list-style: none;
  margin: clamp(2.5rem, 5vw, 3.75rem) auto 0;
  padding: 0;
  max-width: 38rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.home-pain__list li {
  position: relative;
  padding: 1.15rem 0 1.15rem 1.65rem;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  line-height: 1.55;
  color: var(--text-light);
  border-bottom: 1px solid rgba(214, 195, 163, 0.14);
  background: none;
}

.home-pain__list li:last-child {
  border-bottom: none;
}

.home-pain__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold-accent);
  opacity: 0.85;
}

/* 3 · Lösung — große Module */
.home-services__modules {
  list-style: none;
  margin: clamp(2.5rem, 5vw, 3.75rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.25rem);
}

.home-service {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  min-height: 8.5rem;
  padding: clamp(1.25rem, 2.2vw, 1.65rem);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(214, 195, 163, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease;
}

.home-service:hover {
  border-color: rgba(214, 195, 163, 0.28);
  background: rgba(255, 255, 255, 0.055);
  transform: translateY(-2px);
}

.home-service--wide {
  grid-column: span 2;
}

.home-service__icon {
  display: inline-flex;
  width: 2.35rem;
  height: 2.35rem;
  color: var(--gold-accent);
  opacity: 0.9;
}

.home-service__icon svg {
  width: 100%;
  height: 100%;
}

.home-service__label {
  font-family: var(--font-heading);
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-light);
}

/* 4 · Zielgruppen */
.home-branches__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
  margin-top: clamp(2.25rem, 5vw, 3.5rem);
}

.branch-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.65rem, 3vw, 2.25rem);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(36, 58, 46, 0.55) 0%, rgba(18, 30, 24, 0.72) 100%);
  border: 1px solid rgba(214, 195, 163, 0.14);
  min-height: 11rem;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.branch-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 155, 95, 0.14), transparent 70%);
  pointer-events: none;
}

.branch-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 195, 163, 0.28);
  box-shadow: 0 18px 40px rgba(5, 8, 7, 0.28);
}

.branch-card--wide {
  grid-column: 1 / -1;
  min-height: 8.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) auto;
  gap: 1rem 1.5rem;
  align-items: end;
}

.branch-card--wide p {
  margin-bottom: 0;
}

.branch-card h3 {
  position: relative;
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  color: var(--text-light);
}

.branch-card p {
  position: relative;
  margin: 0 0 1rem;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 28rem;
}

.branch-card a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(199, 155, 95, 0.35);
  padding-bottom: 0.1rem;
  transition: border-color 0.25s ease;
}

.branch-card a:hover {
  border-color: var(--gold-accent);
}

/* 5 · Referenzen — große Mockups */
.home-demos__showcase {
  display: flex;
  flex-direction: column;
  gap: clamp(3.5rem, 8vw, 6rem);
  margin-top: clamp(2.75rem, 6vw, 4.5rem);
}

.home-demo-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.75rem, 5vw, 4rem);
  align-items: center;
}

.home-demo-feature:nth-child(even) {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.home-demo-feature:nth-child(even) .home-demo-feature__device {
  order: 2;
}

.home-demo-feature:nth-child(even) .home-demo-feature__copy {
  order: 1;
  text-align: right;
  margin-left: auto;
}

.home-demo-feature:nth-child(even) .home-demo-feature__copy .btn {
  margin-left: auto;
}

.home-demo-feature__device {
  justify-self: center;
  width: min(100%, 20.5rem);
  padding: 0.75rem;
  border-radius: 2.15rem;
  background: linear-gradient(160deg, #1a2420, #0a100d);
  border: 2px solid rgba(214, 195, 163, 0.22);
  box-shadow:
    0 32px 70px rgba(5, 8, 7, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.home-demo-feature__device img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 19;
  object-fit: cover;
  object-position: top center;
  border-radius: 1.45rem;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) {
  .home-demo-feature:hover .home-demo-feature__device {
    transform: translateY(-6px) scale(1.02);
  }

  .home-demo-feature:hover .home-demo-feature__device img {
    transform: scale(1.04);
  }
}

.home-demo-feature__copy {
  max-width: 26rem;
}

.home-demo-feature__copy .projekt-badge {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.home-demo-feature__copy h3 {
  margin: 0.35rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  color: var(--text-light);
}

.home-demo-feature__copy p {
  margin: 0 0 1.35rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.home-demo-card__branch {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brown-text-soft);
}

.home-references__more {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.home-references__more a {
  color: var(--gold-accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(199, 155, 95, 0.35);
}

/* 6 · Abo Preiskarten */
.home-abo__prices {
  list-style: none;
  margin: clamp(2.5rem, 5vw, 3.5rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-abo__price {
  padding: clamp(1.5rem, 3vw, 2rem) 1.35rem;
  border-radius: var(--radius-xl);
  background: rgba(18, 28, 22, 0.55);
  border: 1px solid rgba(214, 195, 163, 0.14);
  text-align: center;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.home-abo__price:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 195, 163, 0.28);
}

.home-abo__price--featured {
  background:
    linear-gradient(165deg, rgba(48, 68, 48, 0.65) 0%, rgba(28, 42, 32, 0.85) 100%);
  border-color: rgba(199, 155, 95, 0.35);
  box-shadow: 0 16px 40px rgba(5, 8, 7, 0.3);
}

.home-abo__price-name {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
}

.home-abo__price-amount {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.5vw, 1.95rem);
  font-weight: 600;
  color: var(--gold-accent);
  line-height: 1.15;
}

.home-abo__price-amount span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.home-abo__price-note {
  margin: 0.5rem 0 0;
}

.home-abo__note {
  margin: 1.5rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
}

.home-abo__cta {
  margin-top: 1.75rem;
  text-align: center;
}

.btn-lg {
  padding: 1rem 1.75rem;
  font-size: 0.98rem;
}

.tag-empfohlen {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(199, 155, 95, 0.2);
  color: var(--gold-accent);
  vertical-align: middle;
}

.tag-muted {
  font-size: 0.82em;
  font-weight: 500;
  color: var(--brown-text-soft);
}

/* 7 · Warum — freie Zeilen */
.home-why__rows {
  list-style: none;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  padding: 0;
  max-width: 42rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.home-why__rows li {
  padding: 1.25rem 0;
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  line-height: 1.55;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(214, 195, 163, 0.14);
}

.home-why__rows li:last-child {
  border-bottom: none;
}

.home-why__rows strong {
  color: var(--text-light);
  font-weight: 600;
}

/* 9 · Timeline */
.home-timeline {
  list-style: none;
  margin: clamp(2.75rem, 6vw, 4rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  position: relative;
}

.home-timeline::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(214, 195, 163, 0.35) 15%,
    rgba(214, 195, 163, 0.35) 85%,
    transparent
  );
}

.home-timeline__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.75rem;
}

.home-timeline__num {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 1.15rem;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold-accent);
  background: rgba(18, 28, 22, 0.92);
  border: 1px solid rgba(199, 155, 95, 0.4);
  box-shadow: 0 0 0 6px rgba(20, 31, 26, 0.85);
}

.home-timeline__body strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-light);
}

.home-timeline__body p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* 10 · FAQ schlicht */
.faq-list {
  margin-top: 1.75rem;
}

.faq-item {
  border-bottom: 1px solid rgba(214, 195, 163, 0.1);
}

.faq-item summary {
  padding: 0.95rem 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  list-style: none;
  color: var(--text-light);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0 0 1rem;
  padding: 0 0 0.35rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* 11 · Finale CTA */
.home-finale {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.25rem, 3vw, 2rem);
  background: transparent;
  border: none;
  border-radius: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.home-finale::before {
  content: "";
  position: absolute;
  inset: -10% 10% auto;
  height: 8rem;
  background: radial-gradient(ellipse, rgba(199, 155, 95, 0.22), transparent 70%);
  pointer-events: none;
  animation: home-finale-glow 4.5s ease-in-out infinite;
}

@keyframes home-finale-glow {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.home-finale .cta-block-copy {
  position: relative;
}

.home-finale h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.6vw, 2.65rem);
  line-height: 1.2;
  color: var(--text-light);
}

.home-finale p {
  margin: 0 0 1.75rem;
  font-size: 1.12rem;
  color: var(--text-muted);
}

.home-finale .cta-block-actions {
  position: relative;
  justify-content: center;
  gap: 1rem;
}

.cta-block-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(214, 195, 163, 0.35);
  color: var(--text-light);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
}

.btn-ghost:hover {
  background: rgba(214, 195, 163, 0.08);
}

/* Reveal variants */
body.page-home .reveal[data-reveal="fade-up"] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

body.page-home .reveal[data-reveal="rise"] {
  opacity: 0;
  transform: translate3d(0, 40px, 0) scale(0.98);
  transition: opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1), transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

body.page-home .reveal[data-reveal="zoom"] {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 1.05s cubic-bezier(0.22, 1, 0.36, 1), transform 1.05s cubic-bezier(0.22, 1, 0.36, 1);
}

body.page-home .reveal[data-reveal="timeline"] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

body.page-home .reveal.visible,
body.page-home .reveal.visible[data-reveal] {
  opacity: 1;
  transform: none;
}

.reveal-stagger .reveal:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger .reveal:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger .reveal:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger .reveal:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger .reveal:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger .reveal:nth-child(6) { transition-delay: 0.4s; }
.reveal-stagger .reveal:nth-child(7) { transition-delay: 0.47s; }
.reveal-stagger .reveal:nth-child(8) { transition-delay: 0.54s; }

@media (max-width: 900px) {
  .home-services__modules {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-service--wide {
    grid-column: span 2;
  }

  .home-branches__grid {
    grid-template-columns: 1fr;
  }

  .branch-card--wide {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .home-demo-feature,
  .home-demo-feature:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .home-demo-feature:nth-child(even) .home-demo-feature__device,
  .home-demo-feature:nth-child(even) .home-demo-feature__copy {
    order: initial;
  }

  .home-demo-feature:nth-child(even) .home-demo-feature__copy {
    text-align: left;
    margin-left: 0;
  }

  .home-demo-feature:nth-child(even) .home-demo-feature__copy .btn {
    margin-left: 0;
  }

  .home-demo-feature__device {
    width: min(100%, 14.5rem);
  }

  .home-abo__prices {
    grid-template-columns: 1fr;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }

  .home-timeline {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 0.5rem;
  }

  .home-timeline::before {
    top: 0;
    bottom: 0;
    left: 1.85rem;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(
      180deg,
      transparent,
      rgba(214, 195, 163, 0.35) 10%,
      rgba(214, 195, 163, 0.35) 90%,
      transparent
    );
  }

  .home-timeline__step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1.15rem;
    padding: 0 0 1.75rem;
  }

  .home-timeline__num {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .home-team__grid {
    grid-template-columns: 1fr;
    max-width: 22rem;
  }

  .home-finale::before {
    animation: none;
  }
}

@media (max-width: 560px) {
  .home-services__modules {
    grid-template-columns: 1fr;
  }

  .home-service--wide {
    grid-column: auto;
  }

  .home-service {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  body.page-home .reveal[data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .home-finale::before {
    animation: none;
  }

  .home-demo-feature:hover .home-demo-feature__device,
  .home-demo-feature:hover .home-demo-feature__device img {
    transform: none;
  }
}

