/* ============================================================
   Prodifystudio — Landingpage NEU (landing2.css v1)
   Aufbau nach Higgsfield-Teardown: Hero-Film mit zwei Kapiteln
   (gepinnt über 200 vh) → Markenwelten als Hochkant-Karussell →
   Kontakt → Footer. Farben bleiben Schwarz/Weiß; neu sind
   halbfette, eng gesetzte Headlines, runde Karten (20) und runde
   Buttons (12). Lädt NACH sq.css (Footer, Kontakt-Karte) und
   überschreibt nur eigene l2-Klassen.
   ============================================================ */
:root {
  --l2-ink: #0a0a0a;
  --l2-paper: #ffffff;
  --l2-paper-2: #f4f4f2;
  --l2-mute: #6a6a70;
  --l2-mute-dark: rgba(255, 255, 255, 0.62);
  --l2-hair: #e4e4e1;
  --l2-hair-dark: rgba(255, 255, 255, 0.12);
  --l2-radius: 20px;
  --l2-btn-radius: 12px;
  --l2-maxw: 1312px;
  --l2-pad: clamp(1.25rem, 4vw, 4rem);
  --l2-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --l2-ease-hover: cubic-bezier(0.4, 0, 0.2, 1);
}

body.l2 { background: #000; color: #fff; }
.l2 .l2-wrap { max-width: var(--l2-maxw); margin: 0 auto; padding-left: var(--l2-pad); padding-right: var(--l2-pad); }

/* ---------- Typo-System (Headlines halbfett, eng) ---------- */
.l2 .l2-h1 {
  font-size: clamp(2.5rem, 6.2vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.04;
  text-wrap: balance;
}
.l2 .l2-h2 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
  text-wrap: balance;
}
.l2 .l2-sub {
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  font-weight: 400;
  line-height: 1.55;
  max-width: 44ch;
}
.l2 .l2-pill {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.01em;
  padding: 0.38rem 0.8rem; border-radius: 999px;
  background: var(--l2-paper-2); color: var(--l2-ink);
}
.l2 .l2-pill--dark { background: rgba(255, 255, 255, 0.1); color: #fff; }
.l2 .l2-pill i { width: 6px; height: 6px; border-radius: 50%; background: #35b36a; font-style: normal; }

/* ---------- Buttons: rund, 48 px, 16/600 ---------- */
.l2 .l2-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 48px; padding: 0 1.4rem;
  border-radius: var(--l2-btn-radius);
  font: inherit; font-size: 1rem; font-weight: 600; letter-spacing: -0.005em;
  text-decoration: none; cursor: pointer; border: 0;
  transition: background 0.2s var(--l2-ease-hover), color 0.2s var(--l2-ease-hover), transform 0.2s var(--l2-ease-hover), filter 0.2s var(--l2-ease-hover);
}
.l2 .l2-btn:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }
.l2 .l2-btn--white { background: #fff; color: var(--l2-ink); }
.l2 .l2-btn--white:hover { background: #ebebe8; }
.l2 .l2-btn--dark { background: var(--l2-ink); color: #fff; }
.l2 .l2-btn--dark:hover { background: #2a2a2e; }
.l2 .l2-btn--ghost { background: rgba(255, 255, 255, 0.08); color: #fff; }
.l2 .l2-btn--ghost:hover { background: rgba(255, 255, 255, 0.16); }
.l2 .l2-btn--sm { min-height: 40px; padding: 0 1.1rem; font-size: 0.9rem; border-radius: 10px; }

/* ---------- Navigation: transparent im Hero, fest beim Scrollen ---------- */
.l2-nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0 var(--l2-pad); height: 68px;
  color: #fff;
  transition: background 0.35s var(--l2-ease), backdrop-filter 0.35s var(--l2-ease), border-color 0.35s var(--l2-ease);
  border-bottom: 1px solid transparent;
}
.l2-nav.is-solid {
  background: rgba(8, 8, 8, 0.72);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom-color: var(--l2-hair-dark);
}
/* Über hellen Sektionen kippt die Leiste auf Weiß (data-nav-theme="light") */
.l2-nav.is-solid.is-light {
  background: rgba(255, 255, 255, 0.82);
  border-bottom-color: var(--l2-hair);
  color: var(--l2-ink);
}
.l2-nav__logo { color: currentColor; text-decoration: none; font-weight: 600; letter-spacing: -0.02em; font-size: 1.05rem; }
.l2-nav__links { display: flex; gap: 1.6rem; }
.l2-nav__links a { color: currentColor; opacity: 0.72; text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: opacity 0.2s var(--l2-ease-hover); }
.l2-nav__links a:hover { opacity: 1; }
.l2-nav.is-light .l2-btn--white { background: var(--l2-ink); color: #fff; }
.l2-nav__cta { display: flex; align-items: center; gap: 0.6rem; }
.l2-nav .l2-btn { min-height: 40px; padding: 0 1.05rem; font-size: 0.9rem; border-radius: 10px; }
@media (max-width: 760px) {
  .l2-nav__links { display: none; }
}

/* ---------- Hero-Film: 200 vh Strecke, Bühne bleibt stehen ---------- */
.l2-hero { position: relative; height: 200vh; height: 200svh; background: #000; }
.l2-hero__stage {
  position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden;
  display: grid; place-items: center;
}
.l2-hero__film { position: absolute; inset: 0; }
.l2-hero__film img, .l2-hero__film video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; will-change: transform, opacity;
}
.l2-hero__film img.is-on, .l2-hero__film video.is-on { opacity: 1; }
/* Wash: Text bleibt lesbar, unten Verlauf nach Schwarz (Kapitel 2) */
.l2-hero__wash { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.18) 45%, rgba(0,0,0,0.55) 100%); }
.l2-hero__fade { position: absolute; inset: 0; background: #000; opacity: 0; pointer-events: none; }

.l2-hero__chapter {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 var(--l2-pad);
  gap: 1.3rem;
}
.l2-hero__chapter[data-chapter="2"] { opacity: 0; pointer-events: none; }
.l2-hero__chapter[data-chapter="2"].is-live { pointer-events: auto; }
.l2-hero__mark { width: 34px; height: 34px; border: 1.5px solid rgba(255,255,255,0.7); border-radius: 9px; position: relative; margin-bottom: 0.4rem; }
.l2-hero__mark::after { content: ""; position: absolute; left: 50%; top: 58%; width: 6px; height: 6px; border-radius: 50%; background: #fff; transform: translate(-50%, -50%); }
.l2-hero__proof {
  display: inline-flex; align-items: center; gap: 0.55rem;
  margin-top: 0.6rem; padding: 0.5rem 0.95rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22); background: rgba(0,0,0,0.28);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.85);
  text-decoration: none;
}
.l2-hero__proof i { width: 7px; height: 7px; border-radius: 50%; background: #35b36a; font-style: normal; box-shadow: 0 0 0 3px rgba(53,179,106,0.25); }
.l2-hero__sub { color: rgba(255,255,255,0.78); text-shadow: 0 1px 12px rgba(0,0,0,0.45); }
.l2-hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.l2-hero__scroll i { display: block; width: 1px; height: 34px; background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0)); font-style: normal; }
html:not(.rm) .l2-hero__scroll i { animation: l2scroll 1.8s var(--l2-ease) infinite; }
@keyframes l2scroll { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* Eintritt beim Laden (Kapitel 1) */
html.js .l2-hero__chapter[data-chapter="1"] > * { opacity: 0; transform: translateY(18px); }
html.js .l2-hero__chapter[data-chapter="1"].is-in > * { opacity: 1; transform: none; transition: opacity 0.9s var(--l2-ease), transform 0.9s var(--l2-ease); }
html.js .l2-hero__chapter[data-chapter="1"].is-in > *:nth-child(2) { transition-delay: 0.12s; }
html.js .l2-hero__chapter[data-chapter="1"].is-in > *:nth-child(3) { transition-delay: 0.26s; }
html.rm .l2-hero__chapter[data-chapter="1"] > * { opacity: 1; transform: none; }

/* ---------- Markenwelten: weiß, Hochkant-Karussell ---------- */
.l2-worlds { background: var(--l2-paper); color: var(--l2-ink); padding: clamp(5rem, 9vw, 7.5rem) 0 clamp(4rem, 7vw, 5.5rem); overflow: hidden; }
.l2-worlds__head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.9rem; margin-bottom: clamp(2.2rem, 4vw, 3.2rem); }
.l2-worlds__head .l2-sub { color: var(--l2-mute); }

.l2-car { position: relative; }
.l2-car__track {
  display: flex; gap: 1.25rem;
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding: 0 var(--l2-pad) 0.5rem;
  scroll-padding-left: var(--l2-pad);
  scrollbar-width: none; -ms-overflow-style: none;
  cursor: grab;
}
.l2-car__track::-webkit-scrollbar { display: none; }
.l2-car__track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.l2-car__track.is-dragging .l2-card { pointer-events: none; }
.l2-car__spacer { flex: 0 0 calc(var(--l2-pad) - 1.25rem); }

.l2-card {
  position: relative; flex: 0 0 auto;
  width: min(412px, 78vw); aspect-ratio: 412 / 600;
  border-radius: var(--l2-radius); overflow: hidden;
  background: #111; color: #fff; text-decoration: none;
  scroll-snap-align: start;
  isolation: isolate;
  transform: translateZ(0);
}
.l2-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.7s var(--l2-ease), filter 0.7s var(--l2-ease); }
.l2-card::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.78) 100%);
}
/* Hover-Schleier: dunkelt das verschwommene Bild, damit Text trägt */
.l2-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: rgba(0,0,0,0.42); opacity: 0; transition: opacity 0.6s var(--l2-ease); }
.l2-card:focus-visible { outline: 3px solid var(--l2-ink); outline-offset: 3px; }
.l2-card__top { position: absolute; z-index: 3; top: 1.1rem; left: 1.1rem; right: 1.1rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.l2-card__chip { padding: 0.28rem 0.6rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.35); font-size: 0.66rem; letter-spacing: 0.08em; }

/* Karten-Körper: Marke sitzt unten; beim Hover wandert sie nach oben und
   die Beschreibung fährt unten rein (animierte Grid-Zeilen). */
.l2-card__body {
  position: absolute; inset: 0; z-index: 2;
  display: grid; grid-template-rows: 1fr auto 0fr;
  padding: 3.4rem 1.25rem 1.25rem;
  transition: grid-template-rows 0.6s var(--l2-ease);
}
.l2-card__spacer { min-height: 0; }
.l2-card__brand { display: grid; gap: 0.25rem; transform-origin: left bottom; transition: transform 0.6s var(--l2-ease); }
.l2-card__brand b { display: block; font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
.l2-card__brand span { display: block; font-size: 0.86rem; color: rgba(255,255,255,0.78); }
.l2-card__details { min-height: 0; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; gap: 0.7rem; opacity: 0; transform: translateY(14px); transition: opacity 0.45s var(--l2-ease), transform 0.55s var(--l2-ease); }
.l2-card__details p { font-size: 1.02rem; line-height: 1.45; font-weight: 400; }
.l2-card__meta { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.l2-card__go { width: 40px; height: 40px; border-radius: 50%; background: #fff; color: var(--l2-ink); display: grid; place-items: center; margin-top: 0.3rem; }

@media (hover: hover) {
  .l2-card:hover img, .l2-card:focus-visible img { transform: scale(1.06); filter: blur(14px) brightness(0.7); }
  .l2-card:hover::after, .l2-card:focus-visible::after { opacity: 1; }
  .l2-card:hover .l2-card__body, .l2-card:focus-visible .l2-card__body { grid-template-rows: 0fr auto 1fr; }
  .l2-card:hover .l2-card__brand, .l2-card:focus-visible .l2-card__brand { transform: scale(1.4); }
  .l2-card:hover .l2-card__details, .l2-card:focus-visible .l2-card__details { opacity: 1; transform: none; transition-delay: 0.12s; }
  .l2-card:hover .l2-card__top, .l2-card:focus-visible .l2-card__top { opacity: 0; transition: opacity 0.3s; }
}

.l2-car__ui { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; margin-top: 1.6rem; }
.l2-car__bar { position: relative; flex: 1; max-width: 280px; height: 2px; background: var(--l2-hair); border-radius: 2px; overflow: hidden; }
.l2-car__bar i { position: absolute; top: 0; bottom: 0; left: 0; width: 30%; background: var(--l2-ink); border-radius: 2px; transition: transform 0.25s var(--l2-ease), width 0.25s var(--l2-ease); }
.l2-car__arrows { display: flex; gap: 0.5rem; }
.l2-car__arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--l2-hair); background: #fff; color: var(--l2-ink); display: grid; place-items: center; cursor: pointer; transition: background 0.2s var(--l2-ease-hover), color 0.2s var(--l2-ease-hover), border-color 0.2s var(--l2-ease-hover); }
.l2-car__arrow:hover { background: var(--l2-ink); color: #fff; border-color: var(--l2-ink); }
.l2-car__arrow[disabled] { opacity: 0.35; pointer-events: none; }
.l2-car__arrow svg { width: 16px; height: 16px; }

/* ---------- Reveal (Sektionen gleiten rein) ---------- */
html.js .l2-reveal { opacity: 0; transform: translateY(26px); }
html.js .l2-reveal.is-in { opacity: 1; transform: none; transition: opacity 0.8s var(--l2-ease), transform 0.8s var(--l2-ease); }
html.rm .l2-reveal { opacity: 1; transform: none; }

/* ---------- Kontakt-Sektion aus sq.css, im neuen Look nachjustiert ---------- */
.l2 .sqcontact { background: var(--l2-paper-2); color: var(--l2-ink); }
.l2 .sqcheckcta { border-radius: var(--l2-radius); border-color: var(--l2-hair); }
.l2 .sqcheckcta h3 { font-weight: 600; letter-spacing: -0.025em; }
.l2 .sqcontact__intro h2 { font-weight: 600; letter-spacing: -0.03em; }
.l2 .sqcheckcta .sqbtn { border-radius: var(--l2-btn-radius); text-transform: none; letter-spacing: -0.005em; font-size: 1rem; font-weight: 600; padding: 0 1.4rem; min-height: 48px; }

/* ---------- Mobile-Leiste: CTA immer einen Daumen entfernt ---------- */
.l2-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; justify-content: center;
  padding: 0.7rem var(--l2-pad) calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.92); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-top: 1px solid var(--l2-hair);
  transform: translateY(100%); transition: transform 0.3s ease-out;
}
.l2-bar.is-on { transform: none; }
.l2-bar .l2-btn { width: 100%; }
@media (max-width: 760px) { .l2-bar { display: flex; } }

@media (prefers-reduced-motion: reduce) {
  .l2-card img, .l2-card__go, .l2-car__bar i, .l2-nav, .l2-bar { transition: none; }
}

/* ============================================================
   Etappe 2 — Tabs „Festpreis. Rechtssicher. Persönlich."
   ============================================================ */
.l2-tabs { background: var(--l2-paper); color: var(--l2-ink); padding: clamp(4.5rem, 8vw, 7rem) 0; }
.l2-tabs__head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.9rem; margin-bottom: 2rem; }
.l2-tabs__head .l2-sub { color: var(--l2-mute); }

.l2-seg {
  display: flex; gap: 4px; padding: 4px; margin: 0 auto 1.8rem;
  width: max-content; max-width: 100%;
  background: var(--l2-paper-2); border-radius: 999px;
  overflow-x: auto; scrollbar-width: none;
}
.l2-seg::-webkit-scrollbar { display: none; }
.l2-seg__btn {
  display: inline-flex; align-items: center; gap: 0.5rem; white-space: nowrap;
  min-height: 42px; padding: 0 1.1rem; border-radius: 999px; border: 0;
  background: transparent; color: var(--l2-mute); font: inherit; font-size: 0.92rem; font-weight: 500;
  cursor: pointer; transition: background 0.2s var(--l2-ease-hover), color 0.2s var(--l2-ease-hover);
}
.l2-seg__btn svg { width: 15px; height: 15px; }
.l2-seg__btn:hover { color: var(--l2-ink); }
.l2-seg__btn.is-on { background: var(--l2-ink); color: #fff; }
.l2-seg__btn:focus-visible { outline: 2px solid var(--l2-ink); outline-offset: 2px; }

.l2-tabs__stage { display: grid; }
.l2-panel {
  grid-area: 1 / 1;
  background: var(--l2-paper-2); border-radius: var(--l2-radius);
  padding: clamp(1.5rem, 3vw, 2.6rem);
  display: grid; gap: 1.6rem;
  opacity: 0; transform: translateY(14px); visibility: hidden; pointer-events: none;
  transition: opacity 0.4s var(--l2-ease), transform 0.4s var(--l2-ease), visibility 0s 0.4s;
}
.l2-panel[hidden] { display: grid; }
.l2-panel.is-on { opacity: 1; transform: none; visibility: visible; pointer-events: auto; transition-delay: 0s; }
.l2-panel__intro { max-width: 58ch; display: grid; gap: 0.7rem; }
.l2-panel__intro h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); font-weight: 600; letter-spacing: -0.02em; }
.l2-panel__intro p { color: var(--l2-mute); }
.l2-panel__cols { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 2.2rem; align-items: start; }
.l2-panel__note { font-size: 0.85rem; color: var(--l2-mute); }

.l2-plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.l2-plan {
  position: relative; display: grid; gap: 0.8rem; align-content: start;
  background: #fff; border-radius: 16px; padding: 1.5rem 1.4rem 1.4rem; border: 1px solid var(--l2-hair);
}
.l2-plan--featured { background: var(--l2-ink); color: #fff; border-color: var(--l2-ink); }
.l2-plan h4 { font-size: 1.3rem; font-weight: 600; letter-spacing: -0.02em; }
.l2-plan__for { font-size: 0.92rem; color: var(--l2-mute); min-height: 3.2em; }
.l2-plan--featured .l2-plan__for { color: rgba(255,255,255,0.7); }
.l2-plan ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 0.4rem; font-size: 0.9rem; }
.l2-plan li { padding-left: 1.1rem; position: relative; }
.l2-plan li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: 0.55; }
.l2-plan__time { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.02em; color: var(--l2-mute); }
.l2-plan--featured .l2-plan__time { color: rgba(255,255,255,0.7); }
.l2-plan__badge { position: absolute; top: 1rem; right: 1rem; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.6rem; border-radius: 999px; background: #fff; color: var(--l2-ink); }
.l2-plan__cta { margin-top: 0.4rem; justify-self: start; }
.l2-plan:not(.l2-plan--featured) .l2-btn--ghost { background: var(--l2-paper-2); color: var(--l2-ink); }
.l2-plan:not(.l2-plan--featured) .l2-btn--ghost:hover { background: var(--l2-ink); color: #fff; }

.l2-checklist { display: grid; gap: 0; background: #fff; border-radius: 16px; border: 1px solid var(--l2-hair); overflow: hidden; }
.l2-checklist span { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 0.85rem 1.1rem; font-size: 0.95rem; border-top: 1px solid var(--l2-hair); }
.l2-checklist span:first-child { border-top: 0; }
.l2-checklist i { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--l2-ink); color: #fff; font-style: normal; font-size: 0.72rem; display: grid; place-items: center; }

.l2-timeline { margin: 0; padding: 0; list-style: none; display: grid; gap: 0; background: #fff; border-radius: 16px; border: 1px solid var(--l2-hair); overflow: hidden; counter-reset: tl; }
.l2-timeline li { counter-increment: tl; display: grid; grid-template-columns: 34px 1fr; gap: 0.2rem 0.9rem; align-items: center; padding: 0.9rem 1.1rem; border-top: 1px solid var(--l2-hair); }
.l2-timeline li:first-child { border-top: 0; }
.l2-timeline li::before { content: counter(tl); grid-row: 1 / span 2; width: 30px; height: 30px; border-radius: 50%; background: var(--l2-ink); color: #fff; font-size: 0.8rem; font-weight: 600; display: grid; place-items: center; }
.l2-timeline b { font-weight: 600; font-size: 0.98rem; }
.l2-timeline span { font-size: 0.85rem; color: var(--l2-mute); }

@media (max-width: 900px) {
  .l2-plans { grid-template-columns: 1fr; }
  .l2-panel__cols { grid-template-columns: 1fr; }
  .l2-plan__for { min-height: 0; }
}
/* Schmale Screens: Tab-Leiste volle Breite, drei gleiche Felder, ohne Icons */
@media (max-width: 560px) {
  .l2-seg { width: 100%; }
  .l2-seg__btn { flex: 1; justify-content: center; padding: 0 0.5rem; font-size: 0.84rem; min-height: 40px; }
  .l2-seg__btn svg { display: none; }
}

/* ============================================================
   Etappe 2 — Sticky-Scroller „Alles aus einer Hand"
   ============================================================ */
.l2-stack { position: relative; background: #000; color: #fff; --items: 6; height: calc(var(--items) * 85vh + 100vh); }
.l2-stack__pin { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; display: flex; align-items: center; }
.l2-stack__bgs { position: absolute; inset: 0; }
.l2-stack__bgs img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.06); transition: opacity 0.9s var(--l2-ease), transform 1.6s var(--l2-ease); }
.l2-stack__bgs img.is-on { opacity: 1; transform: scale(1); }
.l2-stack__wash { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.35) 100%); }
.l2-stack__grid { position: relative; width: 100%; display: grid; grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr); gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.l2-stack__eyebrow { font-family: "Source Serif 4", Georgia, serif; font-style: italic; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
.l2-stack__list { margin: 0; padding: 0; list-style: none; display: grid; gap: 0.15rem; }
.l2-stack__list button {
  background: none; border: 0; padding: 0.35rem 0; text-align: left; cursor: pointer;
  font: inherit; font-size: clamp(1.6rem, 2.6vw, 2.5rem); font-weight: 700; letter-spacing: -0.025em; line-height: 1.15;
  color: rgba(255,255,255,0.32); transition: color 0.35s var(--l2-ease), transform 0.35s var(--l2-ease);
}
.l2-stack__list button:hover { color: rgba(255,255,255,0.7); }
.l2-stack__list button.is-on { color: #fff; transform: translateX(6px); }
.l2-stack__list button:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }

.l2-stack__card {
  position: relative; width: 100%; max-width: 100%; aspect-ratio: 16 / 10; max-height: min(64vh, 640px); border-radius: var(--l2-radius); overflow: hidden;
  background: #fff; color: var(--l2-ink); box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6);
}
.l2-stack__panel { position: absolute; inset: 0; display: grid; place-items: center; padding: clamp(1.4rem, 3.5vw, 3rem); opacity: 0; transform: translateY(16px) scale(0.985); transition: opacity 0.45s var(--l2-ease), transform 0.6s var(--l2-ease); }
.l2-stack__panel.is-on { opacity: 1; transform: none; }
.l2-stack__panel--full { padding: 0; }
.l2-stack__captions { position: relative; margin-top: 1.4rem; min-height: 6.5em; }
.l2-stack__cap { position: absolute; inset: 0; max-width: 46ch; opacity: 0; transform: translateY(10px); transition: opacity 0.4s var(--l2-ease), transform 0.4s var(--l2-ease); }
.l2-stack__cap.is-on { opacity: 1; transform: none; }
.l2-stack__cap h3 { font-size: clamp(1.25rem, 1.8vw, 1.55rem); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 0.4rem; }
.l2-stack__cap p { color: rgba(255,255,255,0.72); font-size: 0.98rem; }
.l2-stack__progress { position: absolute; left: var(--l2-pad); right: var(--l2-pad); bottom: 22px; height: 2px; background: rgba(255,255,255,0.14); }
.l2-stack__progress i { display: block; height: 100%; width: 0; background: #fff; }

/* Mocks in der weißen Karte */
.mock-browser { width: 100%; height: 100%; overflow: hidden; background: #fff; display: grid; grid-template-rows: auto minmax(0, 1fr); }
.mock-browser__bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: var(--l2-paper-2); border-bottom: 1px solid var(--l2-hair); font-size: 0.8rem; color: var(--l2-mute); }
.mock-browser__bar i { width: 10px; height: 10px; border-radius: 50%; background: #d6d6d2; }
.mock-browser__bar em { margin-left: 8px; font-style: normal; background: #fff; border-radius: 6px; padding: 2px 10px; flex: 1; text-align: center; }
.mock-browser img { width: 100%; height: 100%; min-height: 0; object-fit: cover; object-position: top; display: block; }

.mock-motion { position: relative; width: 100%; height: 100%; display: grid; place-items: center; overflow: hidden; }
.mock-motion__word { position: relative; z-index: 1; font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 600; letter-spacing: -0.03em; }
html:not(.rm) .mock-motion__word { animation: mockGlide 3.2s var(--l2-ease) infinite; }
.mock-motion__bar { position: absolute; left: 10%; right: 10%; height: 14px; border-radius: 6px; background: var(--l2-paper-2); top: calc(68% + var(--i, 0) * 0); }
.mock-motion__bar:nth-of-type(1) { top: 66%; }
.mock-motion__bar:nth-of-type(2) { top: 74%; right: 30%; }
.mock-motion__bar:nth-of-type(3) { top: 82%; right: 50%; }
html:not(.rm) .mock-motion__bar { animation: mockBar 3.2s var(--l2-ease) infinite; animation-delay: var(--d); transform-origin: left; }
.mock-motion__dot { position: absolute; top: 18%; right: 14%; width: 20px; height: 20px; border-radius: 50%; background: var(--l2-ink); }
html:not(.rm) .mock-motion__dot { animation: mockDot 3.2s var(--l2-ease) infinite; }
@keyframes mockGlide { 0%, 12% { opacity: 0; transform: translateY(22px); } 30%, 80% { opacity: 1; transform: none; } 100% { opacity: 0; transform: translateY(-14px); } }
@keyframes mockBar { 0%, 20% { transform: scaleX(0); } 45%, 80% { transform: scaleX(1); } 100% { transform: scaleX(0); } }
@keyframes mockDot { 0%, 20% { transform: translate(0, 0); } 50% { transform: translate(-40px, 18px); } 80% { transform: translate(-40px, 18px); } 100% { transform: translate(0, 0); } }

.mock-text { width: min(100%, 720px); display: grid; gap: 1rem; }
.mock-text__eyebrow { font-size: 0.76rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--l2-mute); }
.mock-text strong { font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; }
.mock-text__line { height: 13px; border-radius: 6px; background: var(--l2-paper-2); width: 90%; }
.mock-text__line--short { width: 60%; }
.mock-text__cursor { width: 2px; height: 1.2em; background: var(--l2-ink); }
html:not(.rm) .mock-text__cursor { animation: mockBlink 1s steps(2) infinite; }
@keyframes mockBlink { to { opacity: 0; } }

.mock-serp { width: min(100%, 720px); display: grid; gap: 0.7rem; font-family: Arial, Helvetica, sans-serif; }
.mock-serp__site { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: #444; }
.mock-serp__site i { width: 28px; height: 28px; border-radius: 50%; background: var(--l2-ink); }
.mock-serp strong { font-size: clamp(1.4rem, 2.3vw, 2rem); font-weight: 400; color: #1a0dab; line-height: 1.3; }
.mock-serp__snip { font-size: 1.1rem; color: #4d5156; line-height: 1.5; }
.mock-serp__tags { display: flex; gap: 6px; margin-top: 0.4rem; }
.mock-serp__tags em { font-style: normal; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em; padding: 4px 9px; border-radius: 999px; background: var(--l2-paper-2); color: var(--l2-ink); font-family: var(--font); }

.mock-status { width: min(100%, 660px); display: grid; border: 1px solid var(--l2-hair); border-radius: 12px; overflow: hidden; }
.mock-status span { display: flex; justify-content: space-between; align-items: center; padding: 1.05rem 1.4rem; font-size: 1.15rem; border-top: 1px solid var(--l2-hair); }
.mock-status span:first-child { border-top: 0; }
.mock-status i { font-style: normal; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #1f7a4a; display: inline-flex; align-items: center; gap: 6px; }
.mock-status i::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #35b36a; }

.mock-chat { width: min(100%, 660px); display: grid; gap: 0.9rem; }
.mock-chat span { position: relative; max-width: 85%; padding: 1rem 1.3rem 1.3rem; border-radius: 18px; font-size: 1.15rem; line-height: 1.45; }
.mock-chat em { position: absolute; right: 10px; bottom: 4px; font-style: normal; font-size: 0.62rem; opacity: 0.55; }
.mock-chat__in { background: var(--l2-paper-2); justify-self: start; border-bottom-left-radius: 4px; }
.mock-chat__out { background: var(--l2-ink); color: #fff; justify-self: end; border-bottom-right-radius: 4px; }
.mock-chat__out--done { background: #1f7a4a; }

@media (max-width: 900px) {
  .l2-stack { height: calc(var(--items) * 70vh + 100vh); }
  .l2-stack__pin { align-items: flex-start; padding-top: 84px; }
  .l2-stack__grid { grid-template-columns: minmax(0, 1fr); gap: 1rem; align-items: start; }
  .l2-stack__right, .l2-stack__left { min-width: 0; }
  .l2-stack__eyebrow { margin-bottom: 0.5rem; }
  .l2-stack__list { display: flex; gap: 0.4rem; overflow-x: auto; scrollbar-width: none; padding-bottom: 0.2rem; }
  .l2-stack__list::-webkit-scrollbar { display: none; }
  .l2-stack__list button { font-size: 0.88rem; font-weight: 600; letter-spacing: 0; padding: 0.5rem 0.9rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.7); white-space: nowrap; }
  .l2-stack__list button.is-on { background: #fff; color: var(--l2-ink); border-color: #fff; transform: none; }
  .l2-stack__card { aspect-ratio: 4 / 3; }
  .l2-stack__captions { min-height: 7em; }
  .l2-stack__wash { background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%); }
}

@media (prefers-reduced-motion: reduce) {
  .l2-panel, .l2-stack__bgs img, .l2-stack__panel, .l2-stack__cap, .l2-stack__list button { transition: none; }
}

/* ============================================================
   Etappe 3 — Prozess-Karten, Showreel, Kontakt mit Projekt-Check
   ============================================================ */
.l2-proc { background: var(--l2-paper); color: var(--l2-ink); padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(3.5rem, 6vw, 5rem); overflow: hidden; }
.l2-proc__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: clamp(1.8rem, 3vw, 2.6rem); }
.l2-proc__head .l2-pill { margin-bottom: 0.9rem; }
@media (max-width: 700px) { .l2-proc__head { flex-direction: column; align-items: flex-start; } }

.l2-pcard {
  flex: 0 0 auto; width: min(708px, 86vw);
  display: grid; grid-template-rows: auto 1fr;
  background: var(--l2-paper-2); border-radius: var(--l2-radius); overflow: hidden;
  scroll-snap-align: start; color: var(--l2-ink);
}
.l2-pcard__shot { position: relative; margin: 1rem 1rem 0; border-radius: 12px; overflow: hidden; aspect-ratio: 16 / 9.4; background: #fff; box-shadow: 0 10px 30px -18px rgba(0,0,0,0.35); }
.l2-pcard__shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.l2-pcard__shot video { width: 100%; height: 100%; object-fit: cover; display: block; background: #14120f; }
.l2-pcard__tag { position: absolute; left: 1rem; bottom: 1rem; display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.85rem; border-radius: 999px; background: rgba(10,10,10,0.88); color: #fff; font-size: 0.78rem; font-weight: 500; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.l2-pcard__tag i { width: 8px; height: 8px; border-radius: 50%; background: #35b36a; }
.l2-pcard__tag--live { background: #1f7a4a; }
.l2-pcard__text { padding: 1.4rem 1.5rem 1.6rem; display: grid; gap: 0.6rem; align-content: start; }
.l2-pcard__step { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--l2-mute); }
.l2-pcard h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); font-weight: 600; letter-spacing: -0.02em; }
.l2-pcard ul { margin: 0.2rem 0 0; padding: 0; list-style: none; display: grid; gap: 0.5rem; }
.l2-pcard li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.95rem; color: var(--l2-ink-2, #3a3a40); }
.l2-pcard li svg { width: 16px; height: 16px; flex: none; color: var(--l2-mute); }

/* Showreel: schwarze Bühne, Handy in der Mitte */
.l2-reel { background: #000; color: #fff; padding: clamp(4.5rem, 8vw, 7rem) 0 0; overflow: hidden; }
.l2-reel__head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.9rem; }
.l2-reel__head .l2-sub { color: rgba(255,255,255,0.7); }
.l2-reel__head .l2-btn { margin-top: 0.4rem; }
.l2-reel__stage { position: relative; display: grid; place-items: center; padding: clamp(2.5rem, 5vw, 4rem) var(--l2-pad) clamp(3.5rem, 7vw, 6rem); }
.l2-reel__glow { position: absolute; left: 50%; bottom: 0; width: min(900px, 120vw); height: 70%; transform: translateX(-50%); background: radial-gradient(ellipse at center, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0) 60%); pointer-events: none; }
.l2-phone {
  position: relative; width: min(340px, 74vw); aspect-ratio: 9 / 19;
  border-radius: 40px; padding: 10px; background: #111;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.14), 0 40px 90px -30px rgba(0,0,0,0.9);
}
.l2-phone::before { content: ""; position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 84px; height: 24px; border-radius: 999px; background: #000; z-index: 2; }
.l2-phone video { width: 100%; height: 100%; object-fit: cover; border-radius: 32px; background: #000; display: block; }
.l2-phone__sound { position: absolute; right: 22px; bottom: 22px; z-index: 2; width: 36px; height: 36px; border-radius: 50%; border: 0; background: rgba(0,0,0,0.55); color: #fff; cursor: pointer; }

/* Kontakt: dunkel, Argumente links, Projekt-Check-Karte rechts */
.l2-contact { background: #0b0b0b; color: #fff; padding: clamp(5rem, 9vw, 8rem) 0; }
.l2-contact__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.l2-contact__intro { display: grid; gap: 1.2rem; }
.l2-contact__title { font-size: clamp(2.3rem, 4.2vw, 3.6rem); max-width: 15ch; }
.l2-contact__eyebrow { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 0.6rem; }
.l2-contact__facts { margin: 0; padding: 0; list-style: none; display: grid; gap: 0.55rem; }
.l2-contact__facts li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 1rem; color: rgba(255,255,255,0.85); }
.l2-contact__facts li::before { content: "→"; color: rgba(255,255,255,0.4); flex: none; }
.l2-contact__alt { font-size: 0.9rem; color: rgba(255,255,255,0.5); margin-top: 0.4rem; }
.l2-contact__alt a { color: #fff; }

.l2-check { background: #161618; border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; padding: clamp(1.5rem, 3vw, 2.2rem); display: grid; gap: 1.3rem; }
.l2-check__head { display: grid; gap: 0.35rem; }
.l2-check__eyebrow { font-family: "Source Serif 4", Georgia, serif; font-style: italic; color: rgba(255,255,255,0.55); font-size: 0.95rem; }
.l2-check__head h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 600; letter-spacing: -0.025em; }
.l2-check__head p { color: rgba(255,255,255,0.6); font-size: 0.95rem; }
.l2-check__opts { display: grid; gap: 0.5rem; }
.l2-check__opt {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.9rem 1.05rem; border-radius: 12px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  color: #fff; text-decoration: none; font-size: 1rem; font-weight: 500;
  transition: background 0.2s var(--l2-ease-hover), border-color 0.2s var(--l2-ease-hover), transform 0.2s var(--l2-ease-hover);
}
.l2-check__opt i { width: 18px; height: 18px; flex: none; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.45); transition: background 0.2s, border-color 0.2s; }
.l2-check__opt:hover { background: #fff; color: var(--l2-ink); border-color: #fff; transform: translateX(4px); }
.l2-check__opt:hover i { border-color: var(--l2-ink); background: var(--l2-ink); box-shadow: inset 0 0 0 3px #fff; }
.l2-check__opt:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.l2-check__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.l2-check__dots { display: flex; gap: 0.35rem; }
.l2-check__dots i { width: 22px; height: 3px; background: rgba(255,255,255,0.16); border-radius: 2px; }
.l2-check__dots i.is-on { background: #fff; }

@media (max-width: 900px) {
  .l2-contact__grid { grid-template-columns: 1fr; }
  .l2-pcard { width: min(560px, 86vw); }
}

/* ============================================================
   Etappe 4 — FAQ, Chips, Mobile-Menü
   ============================================================ */
.l2-faq { background: #0b0b0b; color: #fff; padding: clamp(4rem, 8vw, 7rem) 0 clamp(2rem, 4vw, 3rem); border-top: 1px solid rgba(255,255,255,0.07); }
.l2-faq__head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.7rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.l2-faq__head .l2-sub { color: rgba(255,255,255,0.6); }
.l2-faq__list { max-width: 760px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.1); }
.l2-faq__item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.l2-faq__item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.15rem 0.2rem; font-size: 1.08rem; font-weight: 600; letter-spacing: -0.01em;
  transition: color 0.2s var(--l2-ease-hover);
}
.l2-faq__item summary::-webkit-details-marker { display: none; }
.l2-faq__item summary:hover { color: rgba(255,255,255,0.75); }
.l2-faq__item summary:focus-visible { outline: 2px solid #fff; outline-offset: 4px; border-radius: 6px; }
.l2-faq__item summary i { position: relative; flex: none; width: 22px; height: 22px; }
.l2-faq__item summary i::before, .l2-faq__item summary i::after { content: ""; position: absolute; left: 50%; top: 50%; background: currentColor; transition: transform 0.35s var(--l2-ease); }
.l2-faq__item summary i::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
.l2-faq__item summary i::after { width: 1.5px; height: 14px; transform: translate(-50%, -50%); }
.l2-faq__item[open] summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.l2-faq__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s var(--l2-ease); }
.l2-faq__body > div { min-height: 0; overflow: hidden; }
.l2-faq__item.is-open .l2-faq__body { grid-template-rows: 1fr; }
.l2-faq__body p { padding: 0 0.2rem 1.3rem; color: rgba(255,255,255,0.68); font-size: 1rem; line-height: 1.6; max-width: 62ch; }

.l2-chips { background: #0b0b0b; color: #fff; padding: clamp(2rem, 4vw, 3rem) 0 clamp(4.5rem, 8vw, 7rem); }
.l2-chips .l2-h2 { text-align: center; margin-bottom: 1.6rem; }
.l2-chips__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.55rem; max-width: 900px; margin: 0 auto; }
.l2-chip {
  display: inline-flex; align-items: center; min-height: 40px; padding: 0 1rem;
  border-radius: 999px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.9rem; font-weight: 500;
  transition: background 0.2s var(--l2-ease-hover), color 0.2s var(--l2-ease-hover), border-color 0.2s var(--l2-ease-hover);
}
.l2-chip:hover { background: #fff; color: var(--l2-ink); border-color: #fff; }
.l2-chip:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

/* Burger + Vollbild-Menü (nur unter 760 px) */
.l2-burger { display: none; width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.25); background: transparent; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.l2-burger span { display: block; width: 16px; height: 1.6px; background: currentColor; transition: transform 0.3s var(--l2-ease); }
.l2-burger[aria-expanded="true"] span:first-child { transform: translateY(3.3px) rotate(45deg); }
.l2-burger[aria-expanded="true"] span:last-child { transform: translateY(-3.3px) rotate(-45deg); }
.l2-nav.is-light .l2-burger { border-color: rgba(0,0,0,0.25); }
@media (max-width: 760px) { .l2-burger { display: inline-flex; } .l2-nav .l2-btn { padding: 0 0.85rem; } }

.l2-menu {
  position: fixed; inset: 0; z-index: 95; background: #060606; color: #fff;
  display: flex; flex-direction: column; justify-content: center; gap: 0.2rem;
  padding: 90px var(--l2-pad) 120px;
  opacity: 0; visibility: hidden; transition: opacity 0.3s var(--l2-ease), visibility 0s 0.3s;
}
.l2-menu.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }
body.l2-menu-open { overflow: hidden; }
.l2-menu__link { color: #fff; text-decoration: none; font-size: clamp(1.8rem, 7vw, 2.4rem); font-weight: 600; letter-spacing: -0.03em; padding: 0.35rem 0; opacity: 0; transform: translateY(12px); transition: opacity 0.4s var(--l2-ease), transform 0.4s var(--l2-ease); }
.l2-menu.is-open .l2-menu__link { opacity: 1; transform: none; }
.l2-menu.is-open .l2-menu__link:nth-child(2) { transition-delay: 0.05s; }
.l2-menu.is-open .l2-menu__link:nth-child(3) { transition-delay: 0.1s; }
.l2-menu.is-open .l2-menu__link:nth-child(4) { transition-delay: 0.15s; }
.l2-menu.is-open .l2-menu__link:nth-child(5) { transition-delay: 0.2s; }
.l2-menu.is-open .l2-menu__link:nth-child(6) { transition-delay: 0.25s; }
.l2-menu__link--cta { margin-top: 1rem; font-size: 1.05rem; letter-spacing: 0; display: inline-flex; align-items: center; min-height: 48px; padding: 0 1.3rem; border-radius: 12px; background: #fff; color: var(--l2-ink); align-self: flex-start; }
.l2-menu__meta { display: flex; flex-wrap: wrap; gap: 0.4rem 1.1rem; margin-top: 2rem; font-size: 0.9rem; }
.l2-menu__meta a { color: rgba(255,255,255,0.55); text-decoration: none; }

@media (prefers-reduced-motion: reduce) {
  .l2-faq__body, .l2-faq__item summary i::before, .l2-faq__item summary i::after, .l2-menu, .l2-menu__link, .l2-burger span { transition: none; }
}

/* ============================================================
   Mobile-Variante des Sticky-Scrollers: gestapelte Blöcke
   ============================================================ */
.l2-stackm { display: none; background: #000; color: #fff; }
.l2-stackm__item { position: relative; padding: clamp(2.6rem, 8vw, 4rem) 0 clamp(2.4rem, 7vw, 3.5rem); overflow: hidden; border-top: 1px solid rgba(255,255,255,0.08); }
.l2-stackm__item:first-child { border-top: 0; }
.l2-stackm__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 1; transform: none; }
.l2-stackm__wash { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.62) 55%, rgba(0,0,0,0.78) 100%); }
.l2-stackm__inner { position: relative; display: grid; gap: 0.7rem; }
.l2-stackm .l2-stack__eyebrow { margin-bottom: 0.2rem; }
.l2-stackm__title { font-size: clamp(1.9rem, 8vw, 2.4rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; }
.l2-stackm__text { color: rgba(255,255,255,0.72); font-size: 1rem; line-height: 1.55; margin-bottom: 0.6rem; }
.l2-stackm__text b { color: #fff; font-weight: 600; }
.l2-stackm__card { aspect-ratio: 4 / 3; max-height: none; }
.l2-stackm__card .l2-stack__panel { padding: 1.2rem; }
.l2-stackm__card .l2-stack__panel--full { padding: 0; }
@media (max-width: 900px) {
  .l2-stack { display: none; }
  .l2-stackm { display: block; }
  .l2-card { width: min(412px, 84vw); }
  .l2-check__foot { flex-wrap: wrap; }
  .l2-check__foot > span:last-child { flex-basis: 100%; }
}

/* ============================================================
   Regionalseite (webdesign-hemer): generische Sektionen, Karten-Trio,
   „Warum von hier", Studio-Karte + Orte, zweispaltige Blöcke
   ============================================================ */
.l2-sec { padding: clamp(4.5rem, 8vw, 7rem) 0; }
.l2-sec--clip { overflow: hidden; }
.l2-sec--light { background: var(--l2-paper); color: var(--l2-ink); }
.l2-sec--soft { background: var(--l2-paper-2); color: var(--l2-ink); }
.l2-sec--dark { background: #000; color: #fff; }
.l2-sec--light .l2-sub, .l2-sec--soft .l2-sub { color: var(--l2-mute); }
.l2-sec--dark .l2-sub { color: var(--l2-mute-dark); }
.l2-sec__head { display: grid; gap: 0.9rem; justify-items: start; margin-bottom: clamp(2rem, 4vw, 3rem); }
.l2-sec__head--center { justify-items: center; text-align: center; }
.l2-sec--soft .l2-pill { background: #fff; }

/* Karten-Trio: auf breiten Screens zentriert, sonst normales Karussell */
@media (min-width: 1320px) { .l2-car--fit .l2-car__track { justify-content: center; } }

/* Karte „Mehr Markenwelten": dunkles Foto, Text steht fest (kein Hover-Umbau) */
.l2-card--more img { filter: brightness(0.42) saturate(0.85); }
.l2-card--more::before { background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 100%); }
.l2-card__more { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; gap: 0.75rem; padding: 1.35rem; }
.l2-card__more-eyebrow { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.l2-card__more b { display: block; font-size: clamp(1.7rem, 2.4vw, 2.1rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; }
.l2-card__more p { font-size: 0.95rem; line-height: 1.45; color: rgba(255,255,255,0.8); max-width: 30ch; }
@media (hover: hover) {
  .l2-card--more:hover img, .l2-card--more:focus-visible img { filter: blur(10px) brightness(0.38); }
}

/* Warum von hier: drei Spalten mit Haarlinie oben */
.l2-why { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.25rem, 3vw, 2.5rem); }
.l2-why__item { border-top: 1px solid var(--l2-hair-dark); padding-top: 1.4rem; display: grid; gap: 0.6rem; align-content: start; }
.l2-why__item h3 { font-size: clamp(1.2rem, 1.7vw, 1.4rem); font-weight: 600; letter-spacing: -0.02em; }
.l2-why__item p { color: var(--l2-mute-dark); line-height: 1.55; font-size: 0.98rem; }

/* Einzugsgebiet: Studio-Karte links, Orte rechts */
.l2-region { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 1rem; align-items: stretch; }
.l2-studio { background: var(--l2-ink); color: #fff; border-radius: var(--l2-radius); padding: clamp(1.5rem, 3vw, 2.4rem); display: grid; gap: 1.4rem; align-content: space-between; }
.l2-studio__top { display: grid; gap: 0.7rem; }
.l2-studio__eyebrow { font-family: "Source Serif 4", Georgia, serif; font-style: italic; color: rgba(255,255,255,0.55); font-size: 0.95rem; }
.l2-studio h3 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 600; letter-spacing: -0.025em; line-height: 1.1; }
.l2-studio address { font-style: normal; font-size: 1.05rem; line-height: 1.55; color: rgba(255,255,255,0.88); }
.l2-studio__top p { color: rgba(255,255,255,0.62); font-size: 0.95rem; line-height: 1.55; max-width: 40ch; }
.l2-studio__actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.l2-studio__mail { font-size: 0.9rem; color: rgba(255,255,255,0.55); text-decoration: none; }
.l2-studio__mail:hover { color: #fff; text-decoration: underline; }
.l2-places { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; }
.l2-place { background: #fff; border: 1px solid var(--l2-hair); border-radius: 16px; padding: 1.2rem 1.25rem; display: grid; gap: 0.4rem; align-content: start; }
.l2-place h3 { font-size: 1.08rem; font-weight: 600; letter-spacing: -0.015em; }
.l2-place p { font-size: 0.9rem; color: var(--l2-mute); line-height: 1.5; }

/* Zweispaltige Blöcke: Intro links, Liste rechts */
.l2-cols { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.l2-cols__intro { display: grid; gap: 1rem; justify-items: start; max-width: 52ch; }
.l2-cols__actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.4rem; }
.l2 .l2-btn--soft { background: var(--l2-paper-2); color: var(--l2-ink); }
.l2 .l2-btn--soft:hover { background: var(--l2-ink); color: #fff; }
.l2-sec--soft .l2-btn--soft { background: #fff; }
.l2-sec--soft .l2-btn--soft:hover { background: var(--l2-ink); }

@media (max-width: 900px) {
  .l2-why, .l2-region, .l2-cols { grid-template-columns: 1fr; }
  .l2-cols { gap: 1.6rem; }
}
@media (max-width: 560px) {
  .l2-places { grid-template-columns: 1fr; }
}

/* ============================================================
   Datenschutz-Hinweis: erscheint bei jedem Besuch, gleitet von
   oben ein. Kein Einwilligungs-Dialog — die Seite trackt nicht,
   der Hinweis sagt genau das.
   ============================================================ */
.l2-notice {
  position: fixed; inset: 0; z-index: 200;
  display: grid; justify-items: center; align-items: start;
  padding: clamp(0.8rem, 4vh, 3rem) var(--l2-pad);
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  opacity: 0; transition: opacity 0.35s var(--l2-ease);
  overflow-y: auto;
}
.l2-notice.is-on { opacity: 1; }
.l2-notice__card {
  width: min(560px, 100%);
  background: #fff; color: var(--l2-ink);
  border-radius: var(--l2-radius);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  display: grid; gap: 0.85rem; justify-items: start;
  margin-top: clamp(0.5rem, 7vh, 5rem);
  transform: translateY(-46px);
  transition: transform 0.5s var(--l2-ease);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.5);
}
.l2-notice.is-on .l2-notice__card { transform: none; }
.l2-notice__head { display: flex; align-items: center; gap: 0.65rem; font-weight: 700; font-size: 1.15rem; letter-spacing: -0.015em; }
.l2-notice__head svg { flex: none; }
.l2-notice__card p:not(.l2-notice__head):not(.l2-notice__links) { font-size: 0.92rem; line-height: 1.55; color: var(--l2-mute); }
.l2-notice__card p strong { color: var(--l2-ink); }
.l2-notice__actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.l2-notice__links { display: flex; gap: 1.3rem; font-size: 0.8rem; }
.l2-notice__links a { color: var(--l2-mute); }
.l2-notice__links a:hover { color: var(--l2-ink); }
body.l2-notice-open { overflow: hidden; }
@media (prefers-reduced-motion: reduce) { .l2-notice, .l2-notice__card { transition: none; } }

/* ============================================================
   Angebots-Bausteine im Festpreis-Tab: Chips statt Paket-Karten
   ============================================================ */
.l2-pick { display: grid; gap: 0.9rem; align-content: start; }
.l2-pick__label { font-size: 0.9rem; color: var(--l2-mute); }
.l2-pick__chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.l2-pick__chips button {
  font: inherit; font-size: 0.9rem; font-weight: 500;
  padding: 0.55rem 1rem; border-radius: 999px;
  border: 1px solid var(--l2-hair); background: #fff; color: var(--l2-ink);
  cursor: pointer; transition: background 0.2s var(--l2-ease-hover), border-color 0.2s var(--l2-ease-hover);
}
.l2-pick__chips button:hover { border-color: var(--l2-ink); }
.l2-pick__chips button:focus-visible { outline: 2px solid var(--l2-ink); outline-offset: 2px; }
.l2-pick__chips button.is-sel { background: var(--l2-ink); color: #fff; border-color: var(--l2-ink); }
.l2-pick__chips button.is-sel::before { content: "✓ "; }
.l2-pick__cta { justify-self: start; }
.l2-pick__hint { font-size: 0.78rem; color: var(--l2-mute); }

/* ============================================================
   Branchenseiten: Live-Demo-Bühne (Browser + Handy) und
   Funktions-Karten in drei Spalten
   ============================================================ */
.l2-demo { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.l2-demo--flip .l2-demo__intro { order: 2; }
.l2-demo__intro { display: grid; gap: 1rem; justify-items: start; max-width: 52ch; }
.l2-demo__stage { position: relative; display: block; color: inherit; text-decoration: none; padding: 0 clamp(2.2rem, 6vw, 4.2rem) clamp(2.2rem, 5vw, 3.4rem) 0; }
.l2-demo__browser { aspect-ratio: 16 / 10; border-radius: var(--l2-radius); overflow: hidden; border: 1px solid var(--l2-hair); box-shadow: 0 30px 80px -34px rgba(0, 0, 0, 0.45); transition: transform 0.5s var(--l2-ease); }
.l2-demo__phone {
  position: absolute; right: 0; bottom: 0;
  width: clamp(120px, 24%, 200px); aspect-ratio: 9 / 18;
  border-radius: 24px; padding: 5px; background: #101012;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16), 0 30px 60px -22px rgba(0, 0, 0, 0.6);
  transition: transform 0.5s var(--l2-ease);
}
.l2-demo__phone img { width: 100%; height: 100%; object-fit: cover; object-position: top; border-radius: 19px; display: block; }
.l2-demo__tag { position: absolute; left: 1rem; top: 1rem; display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.85rem; border-radius: 999px; background: rgba(10, 10, 10, 0.88); color: #fff; font-size: 0.78rem; font-weight: 500; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.l2-demo__tag i { width: 8px; height: 8px; border-radius: 50%; background: #35b36a; }
@media (hover: hover) {
  .l2-demo__stage:hover .l2-demo__browser { transform: translateY(-6px); }
  .l2-demo__stage:hover .l2-demo__phone { transform: translateY(-10px) rotate(1.5deg); }
}
.l2-demo + .l2-demo { margin-top: clamp(3rem, 6vw, 5rem); }

.l2-feats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.75rem; }
.l2-feats .l2-place h3 { font-size: 1.14rem; }
.l2-sec__note { text-align: center; font-size: 0.85rem; color: var(--l2-mute); margin-top: clamp(1.6rem, 3vw, 2.2rem); }

@media (max-width: 900px) {
  .l2-demo { grid-template-columns: 1fr; }
  .l2-demo--flip .l2-demo__intro { order: 0; }
  .l2-feats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .l2-feats { grid-template-columns: 1fr; }
}
