/* ============================================================
   LANDING-ANATOMIE v2 — Pilot (branchen/schaedlingsbekaempfung)
   Konzept 2026-09-02: Split-Hero mit Produktvisual, Pain als
   Chat-Nachrichten (Felix' Sprechblasen-Idee), Lösung als Zigzag
   mit Screenshot-Platzhaltern, Sektions-Header linksbündig.
   DRAFT — lokal, noch nicht deployt. Nach Freigabe: Rollout auf
   alle Branchen-/SEO-Seiten, dann ggf. in industry.css mergen.
   ============================================================ */

/* ─── Linksbündige Sektions-Header (bricht den Artikel-Look) ──
   H2 bewusst kleiner als das globale 44px-Display: In der Landing-
   Anatomie ist der Hero-H1 (42px) die einzige Display-Größe,
   Sektions-Header ordnen sich unter (Hierarchie 42 > 32 > 21). */
.lp-left { text-align: left; }
.lp-left h2 { font-size: clamp(23px, 3.2vw, 32px); }
.lp-left .lead { margin-inline: 0; max-width: 640px; font-size: 15.5px; }

/* ─── Split-Hero: Copy links, Produktvisual rechts ──────────── */
.lp-hero {
  position: relative; overflow: hidden;
  padding: 44px 20px 84px;
  background:
    radial-gradient(ellipse 900px 340px at 30% -60px, rgba(79,114,227,.09), transparent 70%),
    var(--surface2);
}
.lp-hero__inner {
  max-width: 1200px; margin-inline: auto;
  display: grid; grid-template-columns: 1fr; gap: 36px;
  align-items: center;
}
.lp-hero__copy { text-align: left; }
.lp-hero__copy h1 {
  font-size: clamp(28px, 4.6vw, 42px);
  font-weight: 800; line-height: 1.12;
  letter-spacing: -.02em; text-wrap: balance;
  margin: 14px 0;
}
.lp-hero__copy .lead { margin: 0 0 22px; max-width: 560px; font-size: 15px; line-height: 1.6; }

/* Eingebettete Produkt-Animation in der Hero-Spalte: Sektions-Padding
   und Eigen-Hintergrund neutralisieren, damit sie als Visual wirkt */
.hero-schedule--embed { padding: 0 !important; background: transparent !important; }
.hero-schedule--embed .hs-inner { max-width: none; }
/* Das "Neue Aufgabe"-Modal hängt designbedingt rechts über die Stage
   hinaus — in der Hero-Spalte dafür Platz reservieren: Mount schmaler
   (AutoFit skaliert die Stage entsprechend), Überhang läuft in die
   freigehaltenen 96px statt an der Spaltenkante abgeschnitten zu werden. */
@media (min-width: 1000px) {
  .hero-schedule--embed .hs-stage-mount { justify-content: flex-start; margin-right: 96px; }
}

/* Mocks in den Zigzag-Zellen füllen die Spalte. Die .mock-Kartenbasis
   liegt sonst in features.css (hier nicht geladen) — daher lokal: */
.lp-zz__mock .mock { width: 100%; }
.mock {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r3);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}

/* ─── Eigenbau-Mock 1: Wochenplan mit Vertrags-Terminen ─────── */
.mock--week { padding: 18px; }
.week__bar { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.week__badge {
  font-size: 11px; font-weight: 700; color: var(--green);
  background: var(--green-tint); border-radius: var(--pill);
  padding: 4px 10px; white-space: nowrap;
}
.week__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.week__day { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.week__head {
  font-size: 10px; font-weight: 700; color: var(--text3);
  text-transform: uppercase; letter-spacing: .04em; text-align: center;
  padding-bottom: 4px; border-bottom: 1px solid var(--border);
}
.week__day--today .week__head { color: var(--accent); border-bottom-color: var(--accent); }
.wpill {
  font-size: 10px; line-height: 1.3; font-weight: 600; color: var(--text);
  background: var(--surface2); border-left: 3px solid var(--accent);
  border-radius: 5px; padding: 5px 6px;
  overflow: hidden; text-overflow: ellipsis;
}
.wpill em { display: block; font-style: normal; font-weight: 500; font-size: 9px; color: var(--text3); }
.wpill--q { border-left-color: var(--accent); }
.wpill--m { border-left-color: var(--green); }
.wpill--h { border-left-color: var(--amber); }
.wpill--akut { border-left-color: var(--red); background: rgba(220,38,38,.06); }
.week__legend {
  display: flex; gap: 14px; margin-top: 14px;
  font-size: 10px; color: var(--text3);
}
.week__legend span { display: inline-flex; align-items: center; gap: 5px; }
.week__legend i { width: 8px; height: 8px; border-radius: 2px; font-style: normal; }
.week__legend .lq i { background: var(--accent); }
.week__legend .lm i { background: var(--green); }
.week__legend .lh i { background: var(--amber); }
.week__legend .la i { background: var(--red); }

/* ─── Eigenbau-Mock 2: Kundenprofil mit Stamm-Techniker ─────── */
.mock--customer { padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.cust__head { display: flex; align-items: center; gap: 10px; }
.cust__avatar {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface3); color: var(--text2);
  font-size: 13px; font-weight: 800;
}
.cust__head b { display: block; font-size: 14px; color: var(--text); }
.cust__head em { display: block; font-style: normal; font-size: 11px; color: var(--text3); }
.cust__row {
  display: flex; align-items: center; gap: 10px;
  background: var(--accent-tint-2); border: 1px solid rgba(79,114,227,.25);
  border-radius: var(--r); padding: 10px 12px;
}
.cust__tech {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff; font-size: 11px; font-weight: 700;
}
.cust__row > div { flex: 1; min-width: 0; }
.cust__row b { display: block; font-size: 12.5px; color: var(--text); }
.cust__row em { display: block; font-style: normal; font-size: 10.5px; color: var(--text3); }
.cust__on { font-size: 10.5px; font-weight: 700; color: var(--green); white-space: nowrap; }
.cust__note {
  font-size: 11px; color: var(--text2); line-height: 1.45;
  background: var(--surface2); border-radius: var(--r); padding: 8px 10px;
}
.cust__hist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.cust__hist li {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: var(--text2);
}
.cust__hist li > span { flex: 0 0 44px; font-variant-numeric: tabular-nums; color: var(--text3); }
.cust__hist .ok { color: var(--green); margin-left: auto; font-weight: 700; }
.cust__sub { font-size: 10.5px; color: var(--text3); border-top: 1px solid var(--border); padding-top: 10px; }
.lp-hero__checklist {
  list-style: none; margin: 0 0 22px; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px 10px;
}
.lp-hero__checklist li {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: var(--pill);
  background: #fff; border: 1px solid var(--border);
  font-size: 13px; font-weight: 500; color: var(--text2);
}
.lp-hero__checklist .check { color: var(--green); font-weight: 700; }
.lp-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.lp-hero__friction { font-size: 13px; color: var(--text3); margin: 14px 0 0; }

/* Siegel-Zeile unter den Hero-CTAs — monochrome Logo-Lockups ohne
   Boxen (Felix: keine weiteren Kästen neben Pills + Buttons). Nur
   belegbare Signale; Capterra-Badge erst ab echten Reviews (Guardrail). */
.lp-seals {
  margin-top: 22px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 28px;
  color: var(--text3);
}
.lp-seal { display: inline-flex; align-items: center; gap: 8px; }
.lp-seal svg { flex-shrink: 0; opacity: .85; }
.lp-seal b {
  display: block; font-size: 11.5px; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--text2); line-height: 1.2;
}
.lp-seal em {
  display: block; font-style: normal; font-size: 10.5px;
  color: var(--text3); line-height: 1.25;
}

/* ─── Screenshot-Platzhalter (bis echte App-Shots da sind) ──── */
.lp-shot {
  aspect-ratio: 4 / 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 20px; text-align: center;
  background: #fff;
  border: 2px dashed rgba(79,114,227,.35);
  border-radius: var(--r3);
  color: var(--text3); font-size: 13.5px; font-weight: 600;
  box-shadow: var(--sh);
}
.lp-shot::before { content: '🖼️'; font-size: 30px; opacity: .7; }
.lp-shot em { font-style: normal; font-weight: 400; font-size: 12px; max-width: 300px; }
.lp-hero .lp-shot { aspect-ratio: 5 / 4; }

/* ─── Pain als Chat: Nachrichten prasseln rein ──────────────── */
/* Getönte Fläche + weiße Blasen = liest sich wie ein Messenger-Screen */
.chat { padding: 64px 20px; background: var(--surface2); }
.chat__grid {
  max-width: 1100px; margin-inline: auto;
  display: grid; grid-template-columns: 1fr; gap: 36px;
  align-items: start;
}
.chat__stack { display: flex; flex-direction: column; gap: 14px; max-width: 460px; }
.bubble {
  position: relative;
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px 16px 16px 4px;
  padding: 12px 16px;
  box-shadow: var(--sh);
  max-width: 92%;
}
.bubble:nth-child(even) { margin-left: 8%; border-radius: 16px 16px 4px 16px; }
.bubble__meta {
  display: flex; gap: 8px; align-items: baseline;
  font-size: 11.5px; font-weight: 700; margin-bottom: 3px;
}
.bubble__meta em { font-style: normal; font-weight: 500; color: var(--text3); }
.bubble--customer .bubble__meta b { color: var(--amber); }
.bubble--driver .bubble__meta b { color: var(--red); }
.bubble--regular .bubble__meta b { color: var(--green); }
.bubble p { margin: 0; font-size: 14.5px; line-height: 1.5; color: var(--text); }

/* Die Schlussfolgerung des Disponenten — als eigene „Du"-Antwortblase
   in Akzentblau (bleibt in der Chat-Metapher, statt Fremdkörper-Kasten) */
.chat__think {
  margin-top: 6px;
  background: var(--accent); color: #fff;
  border-radius: 16px 16px 4px 16px;
  padding: 14px 18px;
  max-width: 92%; margin-left: 8%;
  box-shadow: var(--sh-accent);
}
.chat__think b { display: block; font-size: 12px; opacity: .8; margin-bottom: 6px; font-weight: 600; }
.chat__think p { margin: 0; font-size: 15px; font-weight: 700; line-height: 1.5; }

.chat__copy > p { font-size: 14.5px; color: var(--text2); line-height: 1.6; max-width: 540px; }

/* ─── Lösung als Zigzag: Copy + Screenshot alternierend ─────── */
.lp-zz { padding: 64px 20px; background: var(--surface2); }
.lp-zz__list { list-style: none; margin: 0 auto; padding: 0; max-width: 1100px; display: grid; gap: 56px; }
.lp-zz__row {
  display: grid; grid-template-columns: 1fr; gap: 26px;
  align-items: center;
}
.lp-zz__num {
  font-size: 13px; font-weight: 800; color: var(--accent);
  letter-spacing: .08em;
}
.lp-zz__copy h3 { font-size: 21px; margin: 6px 0 10px; letter-spacing: -.01em; }
.lp-zz__copy p { font-size: 14.5px; color: var(--text2); line-height: 1.6; margin: 0 0 20px; }

/* Checkliste in den Zigzag-Blöcken: die Seite lädt features.css nicht,
   der globale Listen-Reset ließ den Haken direkt am Text kleben
   (Felix-Feedback) — hier vollwertig gestylt: Badge-Haken + Luft. */
.lp-zz__copy .checklist { display: flex; flex-direction: column; gap: 12px; }
.lp-zz__copy .checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--text2); line-height: 1.5;
}
.lp-zz__copy .checklist .check {
  flex: 0 0 18px; width: 18px; height: 18px; margin-top: 1px;
  border-radius: var(--pill); background: var(--green-tint);
  color: var(--green); font-weight: 700; font-size: 11px;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ─── Eigenbau-Mock 3: KPI-Dashboard (PoS) ──────────────────── */
.mock--kpi { padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.kpi__tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.kpi__tile { background: var(--surface2); border-radius: var(--r); padding: 10px 12px; }
.kpi__tile b { display: block; font-size: 18px; font-weight: 800; color: var(--text); font-variant-numeric: tabular-nums; }
.kpi__tile--pos b { color: var(--green); }
.kpi__tile--warn b { color: var(--amber); }
.kpi__tile em { font-style: normal; font-size: 10px; color: var(--text3); line-height: 1.3; display: block; }
.kpi__rows { display: flex; flex-direction: column; gap: 10px; }
.kpi__row-top { display: flex; justify-content: space-between; font-size: 11.5px; color: var(--text2); margin-bottom: 4px; }
.kpi__row-top b { color: var(--text); font-weight: 600; }
.kpi__bar { height: 6px; background: var(--surface3); border-radius: var(--pill); overflow: hidden; }
.kpi__bar i { display: block; height: 100%; background: var(--accent); border-radius: var(--pill); }

/* ─── Eigenbau-Mock 4: gedruckte PDF-Tourenliste ────────────── */
.mock--pdf { padding: 18px; background: var(--surface2); }
.pdf__sheet {
  background: #fff; border: 1px solid var(--border); border-radius: 6px;
  box-shadow: var(--sh-sm); padding: 14px 16px; font-size: 11px;
}
.pdf__head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; border-bottom: 2px solid var(--text); padding-bottom: 8px; margin-bottom: 4px; }
.pdf__head b { font-size: 12.5px; }
.pdf__head em { font-style: normal; color: var(--text3); font-size: 10px; }
.pdf__row { display: grid; grid-template-columns: 40px 1fr; gap: 8px; padding: 7px 0; border-bottom: 1px dashed var(--border); color: var(--text2); }
.pdf__row > span { font-weight: 700; color: var(--text); font-variant-numeric: tabular-nums; }
.pdf__row b { color: var(--text); font-weight: 600; display: block; }
.pdf__row em { font-style: normal; color: var(--text3); font-size: 10px; display: block; }
.pdf__foot { display: flex; justify-content: space-between; font-size: 9.5px; color: var(--text3); margin-top: 8px; }

/* ─── Eigenbau-Mock 5: Fahrer-App im Offline-Modus ──────────── */
.mock--app { padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.appm__bar { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.appm__off {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px; font-weight: 700; color: var(--amber);
  background: var(--amber-tint); border-radius: var(--pill); padding: 4px 10px;
  white-space: nowrap;
}
.appm__stop { display: flex; gap: 10px; align-items: center; background: var(--surface2); border-radius: var(--r); padding: 9px 12px; font-size: 11px; color: var(--text2); }
.appm__stop b { color: var(--text); display: block; font-size: 12px; }
.appm__num {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--green-tint); color: var(--green);
  font-weight: 700; font-size: 10px;
  display: inline-flex; align-items: center; justify-content: center;
}
.appm__num--now { background: var(--accent); color: #fff; }
.appm__state { margin-left: auto; font-size: 9.5px; color: var(--text3); white-space: nowrap; }
.appm__sync { font-size: 10.5px; color: var(--text3); border-top: 1px solid var(--border); padding-top: 9px; }

/* ─── Eigenbau-Mock 6: Adress-Validierung ───────────────────── */
.mock--geo { padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.geo__row { display: flex; gap: 9px; align-items: flex-start; font-size: 11px; color: var(--text2); padding: 9px 11px; background: var(--surface2); border-radius: var(--r); }
.geo__row b { color: var(--text); display: block; font-size: 12px; }
.geo__row em { font-style: normal; font-size: 10px; color: var(--text3); }
.geo__ok { color: var(--green); font-weight: 700; flex-shrink: 0; }
.geo__row--warn { background: var(--amber-tint); }
.geo__warn { color: var(--amber); font-weight: 700; flex-shrink: 0; }
.geo__opts { display: flex; gap: 6px; margin-top: 6px; flex-wrap: wrap; }
.geo__opt { font-size: 10px; border: 1px solid var(--border); background: #fff; border-radius: var(--pill); padding: 3px 9px; color: var(--text2); }
.geo__opt--sel { border-color: var(--accent); color: var(--accent); font-weight: 600; }

/* ─── Responsive ────────────────────────────────────────────── */
@media (min-width: 900px) {
  .lp-hero { padding: 64px 24px 96px; }
  .lp-hero__inner { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 56px; }
  .chat { padding: 88px 24px; }
  .chat__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; }
  .lp-zz { padding: 88px 24px; }
  .lp-zz__row { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; }
  .lp-zz__row--rev .lp-zz__copy { order: 2; }
  .lp-zz__row--rev .lp-shot { order: 1; }
}
@media (max-width: 899px) {
  /* Mobile: Copy → CTAs → Visual; Chat: Copy → Bubbles */
  .lp-hero__visual { order: 2; }
  .lp-zz__row .lp-shot { order: 2; }
}
