/* ============================================================
   BOOKLERA — Landing-Page Handwerker
   Prefix: .lph- (Landing-Page Handwerker)
   Lädt zusätzlich zu landing.css (nutzt --primary, --dark, etc.)
   ============================================================ */

:root {
    --lph-warm: #B0763A;          /* warmes Bernstein für Handwerks-Vibe */
    --lph-warm-soft: #E8D8C5;
    --lph-bg-soft: #F8F6F2;       /* etwas wärmer als landing.css --secondary */
    --lph-bg-cool: #EEF2F5;
    --lph-shadow-md: 0 8px 32px rgba(26, 26, 46, 0.08);
    --lph-shadow-lg: 0 20px 60px rgba(26, 26, 46, 0.12);
    --lph-shadow-glass: 0 12px 40px rgba(26, 26, 46, 0.18);
    --lph-radius: 14px;
    --lph-radius-sm: var(--space-sm);
}

/* Reset Layout-Drift, kein horizontaler Scroll */
html, body { overflow-x: hidden; }


/* ============================================================
   GEMEINSAME UTILITIES
   ============================================================ */
.lph-eyebrow {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}
.lph-section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: var(--space-2xl);
    letter-spacing: -0.02em;
}
.lph-accent {
    color: var(--primary);
}

/* Buttons */
.lph-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 26px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.18s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}
.lph-btn-primary {
    background: var(--primary);
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(91, 139, 166, 0.32);
}
.lph-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(91, 139, 166, 0.42);
}
.lph-btn-ghost {
    background: transparent;
    color: var(--dark) !important;
    border: 1.5px solid var(--border);
}
.lph-btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary) !important;
    transform: translateY(-1px);
}
.lph-btn-large {
    padding: 18px 36px;
    font-size: 17px;
}


/* ============================================================
   1. HERO
   ============================================================ */
.lph-hero {
    position: relative;
    padding: 90px 0 100px;
    background: linear-gradient(180deg, var(--lph-bg-soft) 0%, #fff 100%);
    overflow: hidden;
}
.lph-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 800px 400px at 80% 20%, rgba(91, 139, 166, 0.10), transparent 60%),
        radial-gradient(ellipse 600px 300px at 10% 80%, rgba(176, 118, 58, 0.08), transparent 60%);
    pointer-events: none;
}
.lph-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}
.lph-hero-text {
    max-width: 540px;
}
.lph-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 6px 14px;
    background: rgba(91, 139, 166, 0.10);
    color: var(--primary-dark);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
}
.lph-hero-badge svg { display: block; }
.lph-hero-headline {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.05;
    color: var(--dark);
    letter-spacing: -0.025em;
    margin-bottom: 20px;
}
.lph-hero-sub {
    font-size: 19px;
    line-height: 1.55;
    color: var(--warm-gray);
    margin-bottom: var(--space-xl);
    max-width: 520px;
}
.lph-hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: var(--space-md);
}
.lph-hero-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2px var(--space-xs);
    font-size: 13px;
    color: var(--warm-gray);
    margin-top: var(--space-xs);
}
.lph-hero-trust svg { color: var(--success); }
.lph-hero-trust-item { display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; }
.lph-hero-trust-sep { opacity: .55; }

/* Scroll-Indicator */
.lph-hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--warm-gray);
    opacity: 0.5;
    transition: all 0.2s;
    animation: lph-bounce 2.4s ease-in-out infinite;
}
.lph-hero-scroll:hover { opacity: 1; color: var(--primary); }
@keyframes lph-bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50%      { transform: translate(-50%, 6px); }
}


/* ============================================================
   HERO-VISUAL — 3 schwebende Glassmorphism-Cards
   ============================================================ */
.lph-hero-visual {
    position: relative;
    height: 460px;
    perspective: 1200px;
}

/* Glass-Basis */
.lph-glass {
    position: absolute;
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--lph-radius);
    box-shadow: var(--lph-shadow-glass);
    padding: var(--space-md);
}

/* Card 1: Aufträge (links hinten) */
.lph-glass-orders {
    top: 30px;
    left: 0;
    width: 280px;
    transform: rotate(-3deg);
    animation: lph-float-a 7s ease-in-out infinite;
    z-index: 1;
}
.lph-glass-head {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 10px;
}
.lph-glass-dot {
    width: var(--space-sm);
    height: var(--space-sm);
    border-radius: 50%;
    background: #DDD5C8;
}
.lph-glass-dot:nth-child(1) { background: #E5A99A; }
.lph-glass-dot:nth-child(2) { background: #E8D294; }
.lph-glass-dot:nth-child(3) { background: #B0CFA8; }
.lph-glass-title {
    margin-left: auto;
    font-size: 12px;
    font-weight: 600;
    color: var(--warm-gray);
}
.lph-glass-row {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    align-items: center;
    gap: var(--space-sm);
    padding: 7px 6px;
    border-radius: 6px;
    transition: background 0.2s;
}
.lph-glass-row + .lph-glass-row { margin-top: 2px; }
.lph-row-pill {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 3px 6px;
    border-radius: var(--space-xs);
    text-align: center;
}
.lph-pill-active {
    background: rgba(91, 139, 166, 0.15);
    color: var(--primary-dark);
}
.lph-pill-quote {
    background: rgba(176, 118, 58, 0.15);
    color: var(--lph-warm);
}
.lph-pill-done {
    background: rgba(45, 154, 90, 0.15);
    color: var(--success);
}
.lph-row-text {
    font-size: 12px;
    color: var(--dark);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.lph-row-amt {
    font-size: 11px;
    font-weight: 700;
    color: var(--dark);
    font-variant-numeric: tabular-nums;
}

/* Card 2: Mobile-Mockup (mittig, vorne) */
.lph-glass-mobile {
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(2deg);
    width: 200px;
    padding: 10px;
    z-index: 3;
    animation: lph-float-b 8s ease-in-out infinite;
}
.lph-phone {
    background: #1A1A2E;
    border-radius: 22px;
    padding: 12px 8px 10px;
    position: relative;
}
.lph-phone-notch {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 5px;
    background: #000;
    border-radius: 100px;
}
.lph-phone-screen {
    background: var(--white);
    border-radius: 14px;
    padding: 12px;
    margin-top: 6px;
    min-height: 280px;
}
.lph-phone-bar {
    font-size: 11px;
    font-weight: 700;
    color: var(--dark);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid #EEE;
    margin-bottom: 10px;
}
.lph-phone-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xs);
    margin-bottom: 10px;
}
.lph-phone-photo {
    aspect-ratio: 1 / 1;
    border-radius: var(--space-xs);
    background-size: cover;
    background-position: center;
}
.lph-photo-1 { background: linear-gradient(135deg, #C4956A, #8B6845); }
.lph-photo-2 { background: linear-gradient(135deg, #6E8FA8, #3F5C75); }
.lph-photo-3 { background: linear-gradient(135deg, #B0CFA8, #6FA071); }
.lph-photo-4 { background: linear-gradient(135deg, #E8D294, #B0922A); }
.lph-phone-meta {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--warm-gray);
    margin-bottom: 10px;
}
.lph-phone-meta span {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}
.lph-phone-action {
    background: rgba(45, 154, 90, 0.12);
    color: var(--success);
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    padding: 6px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
}

/* Card 3: Rechnung (rechts hinten) */
.lph-glass-invoice {
    top: 50px;
    right: 0;
    width: 240px;
    transform: rotate(4deg);
    z-index: 2;
    animation: lph-float-c 9s ease-in-out infinite;
}
.lph-invoice-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid #EEE;
    margin-bottom: 12px;
}
.lph-invoice-logo {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.lph-invoice-meta { flex: 1; display: flex; flex-direction: column; gap: var(--space-xs); }
.lph-skel {
    height: 6px;
    border-radius: 3px;
    background: #E8E8EC;
}
.lph-skel-w20 { width: 20%; }
.lph-skel-w30 { width: 30%; }
.lph-skel-w50 { width: 50%; }
.lph-skel-w60 { width: 60%; }
.lph-skel-w70 { width: 70%; }
.lph-invoice-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}
.lph-invoice-rows {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: 14px;
}
.lph-invoice-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.lph-invoice-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #EEE;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
}
.lph-invoice-amt {
    font-weight: 800;
    font-size: 14px;
    color: var(--dark);
    font-variant-numeric: tabular-nums;
}
.lph-invoice-stamp {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 10px;
    font-weight: 700;
    color: var(--success);
    background: rgba(45, 154, 90, 0.12);
    padding: 5px 10px;
    border-radius: var(--space-xs);
}

/* Float-Animationen — verschiedene Phasen für Tiefe */
@keyframes lph-float-a {
    0%,100% { transform: rotate(-3deg) translateY(0); }
    50%     { transform: rotate(-2deg) translateY(-10px); }
}
@keyframes lph-float-b {
    0%,100% { transform: translateX(-50%) rotate(2deg) translateY(0); }
    50%     { transform: translateX(-50%) rotate(1deg) translateY(-8px); }
}
@keyframes lph-float-c {
    0%,100% { transform: rotate(4deg) translateY(0); }
    50%     { transform: rotate(3deg) translateY(-12px); }
}


/* ============================================================
   2. PAIN — „Kennst du das?"
   ============================================================ */
.lph-pain {
    padding: 100px 0;
    background: var(--lph-bg-soft);
}
.lph-pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}
.lph-pain-card {
    background: var(--white);
    border: 1px solid #EAE5DD;
    border-radius: var(--lph-radius);
    padding: 28px 24px;
    transition: all 0.25s ease;
    opacity: 0;
    transform: translateY(20px);
}
.lph-pain-card.lph-in-view {
    opacity: 1;
    transform: translateY(0);
}
.lph-pain-card:hover {
    border-color: var(--lph-warm);
    transform: translateY(-3px);
    box-shadow: var(--lph-shadow-md);
}
.lph-pain-icon {
    width: var(--space-2xl);
    height: var(--space-2xl);
    border-radius: 12px;
    background: rgba(176, 118, 58, 0.10);
    color: var(--lph-warm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}
.lph-pain-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}
.lph-pain-card p {
    font-size: 14.5px;
    color: var(--warm-gray);
    line-height: 1.55;
}
.lph-pain-summary {
    background: linear-gradient(135deg, #1A1A2E 0%, #2D2D44 100%);
    border-color: transparent;
    color: var(--text-on-accent);
}
.lph-pain-summary h3 { color: #fff; }
.lph-pain-summary p { color: rgba(255,255,255,0.8); }
.lph-pain-summary p strong { color: #fff; }
.lph-pain-summary .lph-pain-icon {
    background: rgba(255,255,255,0.10);
    color: #E8D294;
}


/* ============================================================
   3. PROMISE — Lösung
   ============================================================ */
.lph-promise {
    padding: 110px 0;
    text-align: center;
    background: var(--white);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s ease;
}
.lph-promise.lph-in-view {
    opacity: 1;
    transform: translateY(0);
}
.lph-promise-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: var(--space-md);
}
.lph-promise-headline {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    letter-spacing: -0.025em;
    margin-bottom: var(--space-lg);
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}
.lph-promise-sub {
    font-size: 20px;
    color: var(--warm-gray);
    line-height: 1.55;
    max-width: 640px;
    margin: 0 auto;
}


/* ============================================================
   4. PILLARS — Bento Grid (3 Säulen)
   ============================================================ */
.lph-pillars {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, var(--lph-bg-cool) 100%);
}
.lph-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.lph-pillar {
    background: var(--white);
    border-radius: 18px;
    padding: 36px 30px;
    border: 1px solid #E5E8EC;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.22, 0.9, 0.25, 1);
    opacity: 0;
    transform: translateY(28px);
}
.lph-pillar.lph-in-view {
    opacity: 1;
    transform: translateY(0);
}
.lph-pillar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--space-xs);
    background: var(--lph-accent);
    opacity: 0.85;
}
.lph-pillar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 200px 200px at 100% 0%, var(--lph-accent), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.lph-pillar:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(26, 26, 46, 0.12);
    border-color: var(--lph-accent);
}
.lph-pillar:hover::after { opacity: 0.06; }

.lph-pillar-icon-wrap {
    margin-bottom: 22px;
}
.lph-pillar-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--lph-accent) 12%, #fff);
    color: var(--lph-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px color-mix(in srgb, var(--lph-accent) 18%, transparent);
}
.lph-pillar h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}
.lph-pillar-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}
.lph-pillar-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--dark);
    font-weight: 500;
    border-bottom: 1px dashed #EAEDF0;
}
.lph-pillar-list li:last-child { border-bottom: none; }
.lph-pillar-list li svg { color: var(--lph-accent); flex-shrink: 0; }
.lph-pillar-bottom {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--lph-accent);
    padding-top: var(--space-md);
    border-top: 2px solid color-mix(in srgb, var(--lph-accent) 15%, transparent);
}


/* ============================================================
   5. FLOW — Auftrag → Baustelle → Angebot → Rechnung
   ============================================================ */
.lph-flow {
    padding: 110px 0;
    background: var(--white);
}
.lph-flow-stepper {
    display: grid;
    grid-template-columns: 1fr 60px 1fr 60px 1fr 60px 1fr;
    align-items: stretch;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}
.lph-step {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--lph-radius);
    padding: 26px 22px;
    text-align: left;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.22, 0.9, 0.25, 1);
}
.lph-step.lph-in-view {
    opacity: 1;
    transform: translateY(0);
}
.lph-step:hover {
    border-color: var(--primary);
    box-shadow: var(--lph-shadow-md);
    transform: translateY(-4px);
}
.lph-step-num {
    position: absolute;
    top: -14px;
    left: 22px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--text-on-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(91, 139, 166, 0.35);
}
.lph-step-icon {
    width: var(--space-2xl);
    height: var(--space-2xl);
    border-radius: 12px;
    background: rgba(91, 139, 166, 0.10);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 6px 0 16px;
}
.lph-step h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}
.lph-step p {
    font-size: 13.5px;
    color: var(--warm-gray);
    line-height: 1.5;
}
.lph-step-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border);
    font-size: var(--space-lg);
    position: relative;
}
.lph-step-link::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border) 30%, var(--border) 70%, transparent);
    transform: translateY(-50%);
}
.lph-step-link-arrow {
    position: relative;
    z-index: 1;
    background: var(--white);
    padding: 4px 6px;
    color: var(--primary);
}
.lph-flow-tagline {
    text-align: center;
    margin-top: 42px;
    font-size: var(--space-md);
    color: var(--warm-gray);
    line-height: 1.6;
}
.lph-flow-tagline strong { color: var(--dark); font-weight: 700; }


/* ============================================================
   6. TRUST-BAR
   ============================================================ */
.lph-trust {
    padding: 80px 0;
    background: var(--lph-bg-soft);
}
.lph-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
}
.lph-trust-item {
    text-align: center;
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.5s ease;
}
.lph-trust-item.lph-in-view {
    opacity: 1;
    transform: translateY(0);
}
.lph-trust-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--white);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    box-shadow: 0 6px 16px rgba(26, 26, 46, 0.06);
}
.lph-trust-item strong {
    display: block;
    font-size: var(--space-md);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-xs);
}
.lph-trust-item span {
    display: block;
    font-size: 13px;
    color: var(--warm-gray);
    line-height: 1.4;
}
.lph-trust-tagline {
    text-align: center;
    margin-top: var(--space-2xl);
    font-size: 15px;
    color: var(--warm-gray);
    font-style: italic;
}


/* ============================================================
   7. FINAL CTA
   ============================================================ */
.lph-final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1A1A2E 0%, #2D2D44 100%);
    color: var(--text-on-accent);
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.7s ease;
}
.lph-final-cta.lph-in-view { opacity: 1; }
.lph-final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 300px at 20% 20%, rgba(91, 139, 166, 0.20), transparent 60%),
        radial-gradient(ellipse 500px 250px at 80% 80%, rgba(176, 118, 58, 0.14), transparent 60%);
    pointer-events: none;
}
.lph-final-cta .container { position: relative; z-index: 1; }
.lph-final-cta h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}
.lph-final-cta-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--space-xl);
}
.lph-final-cta .lph-btn-primary {
    background: var(--white);
    color: var(--dark) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.lph-final-cta .lph-btn-primary:hover {
    background: var(--white);
    color: var(--primary) !important;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
}
.lph-final-cta-tiny {
    margin-top: 22px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}
.lph-final-cta-tiny a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.lph-final-cta-tiny a:hover { color: #fff; }


/* ============================================================
   RESPONSIVE — Mobile-first Polish
   ============================================================ */

/* Tablet */
@media (max-width: 980px) {
    .lph-hero-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .lph-hero-text { max-width: 100%; }
    .lph-hero-headline { font-size: 44px; }
    .lph-hero-visual {
        height: 420px;
        max-width: 560px;
        margin: 0 auto;
    }
    .lph-pain-grid { grid-template-columns: repeat(2, 1fr); }
    .lph-pillars-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .lph-flow-stepper {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    .lph-step-link { display: none; }
    .lph-trust-grid { grid-template-columns: repeat(2, 1fr); }
    .lph-promise-headline { font-size: 40px; }
    .lph-section-title { font-size: var(--space-xl); margin-bottom: 36px; }
}

/* Mobile (375px) */
@media (max-width: 640px) {
    .lph-hero { padding: 56px 0 70px; }
    .lph-hero-headline { font-size: 34px; line-height: 1.1; }
    .lph-hero-sub { font-size: var(--space-md); }
    .lph-hero-cta-row { flex-direction: column; align-items: stretch; }
    .lph-hero-cta-row .lph-btn { width: 100%; }
    .lph-hero-trust { font-size: 12px; }

    .lph-hero-visual { height: 380px; }
    .lph-glass-orders {
        width: 220px;
        top: 10px;
        left: -10px;
        transform: rotate(-4deg) scale(0.9);
    }
    .lph-glass-mobile { width: 160px; transform: translateX(-50%) rotate(2deg) scale(0.92); }
    .lph-glass-invoice {
        width: 200px;
        right: -10px;
        top: 30px;
        transform: rotate(5deg) scale(0.9);
    }

    .lph-pain { padding: 60px 0; }
    .lph-pain-grid { grid-template-columns: 1fr; gap: var(--space-md); }
    .lph-pain-card { padding: 22px; }
    .lph-pain-card h3 { font-size: var(--space-md); }
    .lph-pain-card p { font-size: 14px; }

    .lph-promise { padding: 70px 0; }
    .lph-promise-headline { font-size: 30px; }
    .lph-promise-sub { font-size: var(--space-md); }

    .lph-pillars { padding: 60px 0; }
    .lph-pillar { padding: 28px 22px; }
    .lph-pillar h3 { font-size: 19px; }

    .lph-flow { padding: 70px 0; }
    .lph-flow-tagline { font-size: 14px; padding: 0 16px; }

    .lph-trust { padding: 60px 0; }
    .lph-trust-grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
    .lph-trust-item strong { font-size: 14px; }
    .lph-trust-item span { font-size: 12px; }

    .lph-final-cta { padding: 70px 0; }
    .lph-final-cta h2 { font-size: 30px; }
    .lph-final-cta-sub { font-size: 15px; }
    .lph-btn-large { padding: 16px 28px; font-size: 15px; width: 100%; }

    .lph-section-title { font-size: 26px; margin-bottom: 28px; }

    /* Navbar: Links ausblenden außer CTA + Anmelden, identisch zu landing.css Pattern.
       '>' = NUR direkte Nav-Textlinks, sonst werden die verschachtelten
       .bk-lang-menu__item (Sprach-Panel) mit-versteckt = leerer Streifen (GEPRÜFT 2026-06-23). */
    .navbar nav > a:not(.nav-login):not(.nav-signin) { display: none; }
}

/* ============================================================
   6. FEATURES BENTO — 6 Themen-Gruppen
   ============================================================ */
.lph-features {
    padding: 100px 0;
    background: var(--lph-bg-soft);
}
.lph-features-sub {
    text-align: center;
    font-size: 17px;
    color: var(--warm-gray);
    line-height: 1.6;
    max-width: 680px;
    margin: -32px auto 48px;
}
.lph-features-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.lph-fcard {
    background: var(--white);
    border: 1px solid #E8E5DD;
    border-radius: var(--lph-radius);
    padding: 28px 26px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.25s, box-shadow 0.25s;
}
.lph-fcard.lph-in-view {
    opacity: 1;
    transform: translateY(0);
}
.lph-fcard::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--lph-accent);
    opacity: 0.85;
}
.lph-fcard:hover {
    border-color: var(--lph-accent);
    box-shadow: 0 14px 36px rgba(26, 26, 46, 0.10);
    transform: translateY(-4px);
}
.lph-fcard-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-md);
}
.lph-fcard-icon {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: color-mix(in srgb, var(--lph-accent) 12%, #fff);
    color: var(--lph-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.lph-fcard-plan {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--lph-accent);
    background: color-mix(in srgb, var(--lph-accent) 10%, transparent);
    padding: 4px 10px;
    border-radius: 100px;
}
.lph-fcard h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.lph-fcard ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.lph-fcard ul li {
    position: relative;
    padding: 7px 0 7px 18px;
    font-size: 14px;
    color: var(--dark);
    line-height: 1.5;
    border-bottom: 1px dashed #EAEDF0;
}
.lph-fcard ul li:last-child { border-bottom: none; }
.lph-fcard ul li::before {
    content: "";
    position: absolute;
    left: var(--space-xs);
    top: var(--space-md);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--lph-accent);
}
.lph-fcard ul li strong { color: var(--dark); font-weight: 700; }
.lph-fcard ul li em { color: var(--warm-gray); font-style: normal; font-size: 12px; }
.lph-features-tagline {
    text-align: center;
    margin-top: 42px;
    font-size: 14.5px;
    color: var(--warm-gray);
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.lph-features-tagline strong { color: var(--dark); font-weight: 700; }


/* ============================================================
   7. WEB-INKLUSIV — Online-Präsenz-Mehrwert
   ============================================================ */
.lph-web {
    padding: 110px 0;
    background: var(--white);
    text-align: center;
}
.lph-web-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 6px 14px;
    background: color-mix(in srgb, var(--success) 12%, #fff);
    color: var(--success);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}
.lph-web-sub {
    font-size: 17px;
    color: var(--warm-gray);
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto 48px;
}
.lph-web-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 56px;
}
.lph-web-card {
    background: var(--white);
    border: 1px solid #E8E8EC;
    border-radius: var(--lph-radius);
    padding: 32px 28px;
    text-align: left;
    transition: all 0.25s ease;
    opacity: 0;
    transform: translateY(20px);
}
.lph-web-card.lph-in-view {
    opacity: 1;
    transform: translateY(0);
}
.lph-web-card:hover {
    border-color: var(--lph-accent);
    box-shadow: 0 14px 36px rgba(26, 26, 46, 0.10);
    transform: translateY(-3px);
}
.lph-web-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--lph-accent) 12%, #fff);
    color: var(--lph-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.lph-web-card h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}
.lph-web-card p {
    font-size: 14.5px;
    color: var(--warm-gray);
    line-height: 1.6;
}
.lph-web-url {
    display: inline-block;
    background: var(--lph-bg-cool);
    color: var(--dark);
    padding: 3px 8px;
    border-radius: var(--space-xs);
    font-family: 'JetBrains Mono', 'Menlo', monospace;
    font-size: 12.5px;
    margin: 4px 0;
}
.lph-web-url span { color: var(--warm-gray); }

.lph-web-savings {
    max-width: 720px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--lph-bg-soft) 0%, #fff 100%);
    border: 1.5px solid var(--lph-warm-soft);
    border-radius: var(--lph-radius);
    padding: 36px 32px;
    text-align: left;
}
.lph-web-savings h4 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--space-md);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 22px;
}
.lph-web-savings h4 svg { color: var(--lph-warm); }
.lph-web-savings-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.lph-web-saving-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 15px;
    color: var(--dark);
    border-bottom: 1px dashed var(--lph-warm-soft);
}
.lph-web-saving-row:last-child { border-bottom: none; }
.lph-web-saving-total {
    padding-top: 18px;
    margin-top: 6px;
    border-top: 2px solid var(--lph-warm);
    border-bottom: none;
    font-size: var(--space-md);
}
.lph-web-amt {
    font-weight: 700;
    color: var(--dark);
    font-variant-numeric: tabular-nums;
}
.lph-web-saving-total .lph-web-amt {
    color: var(--lph-warm);
    font-size: 18px;
}
.lph-web-savings-note {
    margin-top: 18px;
    text-align: center;
    font-size: 15px;
    color: var(--success);
    font-weight: 600;
}
.lph-web-savings-note strong { color: var(--success); }


/* ============================================================
   8. COMPARE — Heute vs. Booklera
   ============================================================ */
.lph-compare {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, var(--lph-bg-cool) 100%);
}
.lph-compare-table {
    max-width: 920px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--lph-radius);
    overflow: hidden;
    box-shadow: var(--lph-shadow-md);
}
.lph-compare-head {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    background: var(--lph-bg-soft);
    border-bottom: 1.5px solid var(--border);
}
.lph-compare-col-feat { padding: 18px 20px; }
.lph-compare-col {
    padding: 18px 20px;
    text-align: center;
    border-left: 1px solid var(--border);
}
.lph-compare-vendor {
    display: block;
    font-size: var(--space-md);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2px;
}
.lph-compare-tag {
    display: block;
    font-size: 12px;
    color: var(--warm-gray);
    font-weight: 500;
}
.lph-compare-col-new .lph-compare-vendor { color: var(--primary); }
.lph-compare-col-new {
    background: color-mix(in srgb, var(--primary) 6%, #fff);
}

.lph-compare-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    border-top: 1px solid var(--border);
    transition: background 0.2s ease;
    opacity: 0;
    transform: translateX(-12px);
}
.lph-compare-row.lph-in-view {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.5s ease, transform 0.5s ease, background 0.2s ease;
}
.lph-compare-row:hover { background: var(--lph-bg-soft); }
.lph-compare-feat {
    padding: 16px 20px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--dark);
}
.lph-compare-cell {
    padding: 16px 20px;
    text-align: center;
    font-size: 13.5px;
    border-left: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.lph-compare-no {
    color: var(--warm-gray);
    text-decoration: line-through;
    text-decoration-color: rgba(122, 123, 138, 0.4);
}
.lph-compare-yes {
    color: var(--success);
    font-weight: 700;
    background: color-mix(in srgb, var(--success) 4%, transparent);
}
.lph-compare-yes svg { color: var(--success); }


/* ============================================================
   10. PRICING — 4 Pläne
   ============================================================ */
.lph-pricing {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--lph-bg-cool) 0%, #fff 100%);
}
.lph-pricing-sub {
    text-align: center;
    font-size: var(--space-md);
    color: var(--warm-gray);
    margin: -32px auto 28px;
}

.lph-cycle-toggle {
    display: inline-flex;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 100px;
    padding: var(--space-xs);
    margin: 0 auto 40px;
    gap: var(--space-xs);
    box-shadow: 0 2px 8px rgba(26, 26, 46, 0.04);
}
.lph-cycle-toggle-wrap { text-align: center; }
.lph-pricing > .container { text-align: center; }
.lph-cycle-btn {
    border: none;
    background: transparent;
    padding: 9px 22px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    color: var(--warm-gray);
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}
.lph-cycle-btn:hover { color: var(--dark); }
.lph-cycle-btn.active {
    background: var(--primary);
    color: var(--text-on-accent);
}
.lph-save-badge {
    background: var(--lph-warm);
    color: var(--text-on-accent);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.lph-cycle-btn.active .lph-save-badge { background: rgba(255, 255, 255, 0.25); color: #fff; }

.lph-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: left;
}
.lph-price-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--lph-radius);
    padding: 32px 24px;
    position: relative;
    transition: all 0.25s ease;
    opacity: 0;
    transform: translateY(24px);
    display: flex;
    flex-direction: column;
}
.lph-price-card.lph-in-view {
    opacity: 1;
    transform: translateY(0);
}
.lph-price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lph-shadow-lg);
    border-color: var(--primary);
}
.lph-price-featured {
    border-color: var(--primary);
    box-shadow: var(--lph-shadow-md);
    transform: scale(1.03);
    z-index: 2;
}
.lph-price-featured.lph-in-view { transform: scale(1.03); }
.lph-price-featured:hover { transform: translateY(-4px) scale(1.03); }
.lph-price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--text-on-accent);
    padding: 5px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.lph-price-enterprise {
    background: linear-gradient(135deg, #FAF8F4 0%, #FDFBF7 100%);
    border-color: var(--lph-warm);
}
.lph-price-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: var(--space-sm);
}
.lph-price-amt {
    font-size: 34px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.lph-price-amt small {
    font-size: 14px;
    font-weight: 500;
    color: var(--warm-gray);
}
.lph-price-amt-enterprise {
    font-size: 22px;
    color: var(--lph-warm);
}
.lph-price-tag {
    font-size: 13.5px;
    color: var(--warm-gray);
    line-height: 1.5;
    margin-bottom: 22px;
    min-height: 40px;
}
.lph-price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex-grow: 1;
}
.lph-price-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: 7px 0;
    font-size: 13.5px;
    color: var(--dark);
    line-height: 1.45;
    border-bottom: 1px dashed #EAEDF0;
}
.lph-price-list li:last-child { border-bottom: none; }
.lph-price-list li svg {
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}
.lph-price-list li strong { font-weight: 700; }
.lph-price-cta {
    width: 100%;
    margin-top: auto;
}
.lph-pricing-note {
    text-align: center;
    margin-top: var(--space-xl);
    font-size: 13.5px;
    color: var(--warm-gray);
    line-height: 1.6;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.lph-pricing-note strong { color: var(--dark); }


/* ============================================================
   11. FAQ
   ============================================================ */
.lph-faq {
    padding: 100px 0 110px;
    background: var(--lph-bg-soft);
}
.lph-faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lph-faq-item {
    background: var(--white);
    border: 1px solid #E8E6E1;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.25s ease;
    opacity: 0;
    transform: translateY(16px);
}
.lph-faq-item.lph-in-view {
    opacity: 1;
    transform: translateY(0);
}
.lph-faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(91, 139, 166, 0.08);
}
.lph-faq-item[open] {
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(91, 139, 166, 0.12);
}
.lph-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    font-size: var(--space-md);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
    user-select: none;
}
.lph-faq-item summary::-webkit-details-marker { display: none; }
.lph-faq-item summary::marker { display: none; }
.lph-faq-item summary svg {
    flex-shrink: 0;
    color: var(--primary);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.lph-faq-item[open] summary svg { transform: rotate(180deg); }
.lph-faq-body {
    padding: 0 24px 24px;
}
.lph-faq-body p {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0 0 10px;
}
.lph-faq-body p:last-child { margin-bottom: 0; }
.lph-faq-body strong { color: var(--dark); font-weight: 700; }
.lph-faq-body ul {
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
}
.lph-faq-body ul li {
    position: relative;
    padding: 6px 0 6px 22px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}
.lph-faq-body ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--success);
    font-weight: 800;
}
.lph-faq-more {
    text-align: center;
    margin-top: var(--space-xl);
}


/* ============================================================
   RESPONSIVE — Erweiterung für die neuen Sections
   ============================================================ */
@media (max-width: 980px) {
    .lph-features-bento { grid-template-columns: 1fr 1fr; }
    .lph-web-cards { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
    .lph-pricing-grid { grid-template-columns: 1fr 1fr; max-width: 720px; margin: 0 auto; }
    .lph-price-featured, .lph-price-featured.lph-in-view { transform: scale(1); }
    .lph-price-featured:hover { transform: translateY(-4px); }
    .lph-compare-table { font-size: 13px; }
    .lph-compare-feat { padding: 12px 14px; }
    .lph-compare-cell { padding: 12px 14px; }
}

@media (max-width: 640px) {
    .lph-features { padding: 60px 0; }
    .lph-features-sub { font-size: 15px; margin-top: -16px; margin-bottom: var(--space-xl); }
    .lph-features-bento { grid-template-columns: 1fr; gap: 14px; }
    .lph-fcard { padding: 24px 22px; }
    .lph-fcard h3 { font-size: 17px; }
    .lph-features-tagline { font-size: 13px; padding: 0 16px; }

    .lph-web { padding: 60px 0; }
    .lph-web-sub { font-size: 15px; }
    .lph-web-cards { gap: 14px; }
    .lph-web-card { padding: 26px 22px; }
    .lph-web-savings { padding: 28px 22px; }
    .lph-web-savings h4 { font-size: 14px; }
    .lph-web-saving-row { font-size: 13.5px; }
    .lph-web-saving-total { font-size: 14px; }
    .lph-web-saving-total .lph-web-amt { font-size: var(--space-md); }

    .lph-compare { padding: 60px 0; }
    .lph-compare-head { grid-template-columns: 1.5fr 1fr 1fr; }
    .lph-compare-row { grid-template-columns: 1.5fr 1fr 1fr; }
    .lph-compare-vendor { font-size: 13px; }
    .lph-compare-tag { font-size: 10px; }
    .lph-compare-col, .lph-compare-col-feat { padding: 12px 10px; }
    .lph-compare-feat { padding: 12px 12px; font-size: 13px; }
    .lph-compare-cell { padding: 12px 8px; font-size: 12px; }
    .lph-compare-cell svg { width: 12px; height: 12px; }

    .lph-pricing { padding: 60px 0; }
    .lph-pricing-grid { grid-template-columns: 1fr; max-width: 360px; }
    .lph-price-card { padding: 26px 22px; }
    .lph-cycle-toggle { width: auto; }
    .lph-cycle-btn { padding: 8px 14px; font-size: 13px; }
    .lph-save-badge { font-size: 9px; padding: 2px 6px; }

    .lph-faq { padding: 60px 0 70px; }
    .lph-faq-item summary { padding: 16px 18px; font-size: 14.5px; }
    .lph-faq-body { padding: 0 18px 20px; }
    .lph-faq-body p { font-size: 13.5px; }
}


/* Reduce-Motion respektieren */
@media (prefers-reduced-motion: reduce) {
    .lph-glass-orders,
    .lph-glass-mobile,
    .lph-glass-invoice,
    .lph-hero-scroll {
        animation: none !important;
    }
    .lph-pain-card,
    .lph-pillar,
    .lph-step,
    .lph-trust-item,
    .lph-promise,
    .lph-final-cta,
    .lph-fcard,
    .lph-web-card,
    .lph-compare-row,
    .lph-price-card,
    .lph-faq-item {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ══════════════════════════════════════════════════════════════
   10b. MARKTPLATZ-Teaser — kostenloser Gewerke-Pool + Transport
   (Block 97.4) — warmes Akzent-Band, hebt sich als Highlight ab.
   ══════════════════════════════════════════════════════════════ */
.lph-market {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--lph-warm) 0%, color-mix(in srgb, var(--lph-warm) 72%, #1A1A2E) 100%);
    color: var(--text-on-accent);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.lph-market::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 300px at 18% 12%, rgba(255, 255, 255, 0.14), transparent 60%),
        radial-gradient(ellipse 500px 260px at 85% 90%, rgba(0, 0, 0, 0.12), transparent 60%);
    pointer-events: none;
}
.lph-market .container { position: relative; z-index: 1; }
.lph-market .lph-eyebrow { color: rgba(255, 255, 255, 0.88); }
.lph-market h2 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: #fff;
}
.lph-market-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 640px;
    margin: 0 auto var(--space-xl);
    line-height: 1.55;
}
.lph-market-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto var(--space-xl);
    text-align: left;
}
.lph-market-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: var(--lph-radius);
    padding: 18px 20px;
}
.lph-market-item-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 11px;
    color: #fff;
}
.lph-market-item h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px;
    color: #fff;
}
.lph-market-item p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    color: rgba(255, 255, 255, 0.80);
}
.lph-market .lph-btn-primary {
    background: var(--white);
    color: var(--dark) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}
.lph-market .lph-btn-primary:hover {
    background: var(--white);
    color: var(--lph-warm) !important;
}
.lph-market-note {
    margin-top: 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
}
@media (max-width: 820px) {
    .lph-market { padding: 64px 0; }
    .lph-market h2 { font-size: 30px; }
    .lph-market-grid { grid-template-columns: 1fr; max-width: 460px; }
}


/* ═══════════════════════════════════════════════════════════════════
   REDESIGN 2026-07-03 — Logo-Palette (Blau-Spektrum + Gold statt Beige)
   Marco-Entscheid: Farben aus dem Booklera-Logo (3 blaue Würfel + 1 Gold).
   Dieser Layer überschreibt per Cascade — Basis-Styles oben bleiben.
   ═══════════════════════════════════════════════════════════════════ */
:root {
    --primary: #2E6BC4;           /* Royalblau (mittlerer Logo-Würfel) */
    --primary-dark: #1B4C8C;
    --dark: #16294A;              /* Tiefnavy (dunkler Logo-Würfel) */
    --secondary: #EAF2FA;         /* Hellblau-Tint ersetzt Beige */
    --lph-warm: #B67E14;          /* Gold-tief (goldener Logo-Würfel) — als TEXT auf Weiß lesbar;
                                     helles Gold für Flächen/Akzente = --lph-gold #F2A93B */
    --lph-warm-soft: #F6D48C;
    --lph-bg-soft: #F0F6FC;       /* war Beige #F8F6F2 */
    --lph-bg-cool: #EAF2FA;
    --lph-navy: #16294A;
    --lph-navy-tile: #1F3A63;
    --lph-blue-light: #4DA6E0;    /* Hellblau (heller Logo-Würfel) */
    --lph-gold: #F2A93B;
    --lph-gold-deep: #B67E14;
    --lph-gold-tint: #FDF3DF;
}

/* ── Hero: rotierendes Gewerk + Preis-Teaser ── */
.lph-gewerk-word {
    display: inline-block;
    color: var(--lph-gold-deep);
    font-weight: 700;
    border-bottom: 2px solid var(--lph-warm-soft);
    min-width: 90px;
}
.lph-gewerk-in { animation: lphFadeUpIn 0.45s ease; }
@keyframes lphFadeUpIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.lph-hero-price-teaser {
    margin-top: 14px;
    font-size: 15px;
    color: var(--warm-gray);
}
.lph-hero-price-teaser strong { color: var(--dark); }
.lph-hero-price-teaser a {
    color: var(--lph-gold-deep);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-left: 6px;
}
.lph-hero-price-teaser a:hover { color: var(--primary); }

/* ── Zahlen-Band (navy, kartenfrei — Rhythmusbruch) ── */
.lph-stats {
    background: var(--lph-navy);
    padding: 36px 0;
}
.lph-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    text-align: center;
}
.lph-stat {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.lph-stat.lph-in-view { opacity: 1; transform: translateY(0); }
.lph-stat-value {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
}
.lph-stat-gold { color: var(--lph-gold); }
.lph-stat-label {
    font-size: 13px;
    color: #7FBFE8;
    margin-top: 4px;
}

/* ── Brand-Story: goldenes Plus wie im Logo ── */
.lph-brand-story-card {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.lph-brand-story-card.lph-in-view { opacity: 1; transform: translateY(0); }

/* ── Scrollytelling-Workflow (Schritte links, Produkt-Panel rechts) ── */
.lph-scrolly {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 28px;
    margin-top: 40px;
    align-items: stretch;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}
.lph-scrolly-steps { display: flex; flex-direction: column; gap: 10px; }
.lph-scrolly-step {
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 12px;
    padding: 14px 16px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.25s ease, background 0.25s ease;
}
.lph-scrolly-step.lph-in-view { opacity: 1; transform: translateY(0); }
.lph-scrolly-step:hover { border-color: var(--primary); }
.lph-scrolly-step.is-active {
    border-color: var(--primary);
    background: var(--lph-bg-cool);
}
.lph-scrolly-step-head { display: flex; align-items: center; gap: 10px; }
.lph-scrolly-num {
    display: inline-flex;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: #C6D8EC;
    color: #fff;
    font-size: 12px; font-weight: 700;
    align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s ease;
}
.lph-scrolly-step.is-active .lph-scrolly-num { background: var(--primary); }
.lph-scrolly-step-icon { color: var(--primary); display: inline-flex; }
.lph-scrolly-step h4 { margin: 0; font-size: 16px; font-weight: 700; color: var(--dark); }
.lph-scrolly-step p {
    margin: 8px 0 0 34px;
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.55;
    display: none;
}
.lph-scrolly-step.is-active p { display: block; }
.lph-scrolly-panel {
    background: var(--lph-bg-soft);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
}
.lph-pane-in { animation: lphFadeUpIn 0.4s ease; }
.lph-scrolly-pane-head {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12.5px; color: var(--warm-gray);
    margin-bottom: 12px; gap: 8px; flex-wrap: wrap;
}
.lph-scrolly-badge {
    background: var(--lph-bg-cool);
    color: var(--primary-dark);
    font-size: 11px; font-weight: 600;
    padding: 3px 10px; border-radius: 100px;
    display: inline-flex; align-items: center; gap: 4px;
}
.lph-scrolly-badge-gold { background: var(--lph-gold-tint); color: var(--lph-gold-deep); }
.lph-scrolly-badge-green { background: #E5F4EA; color: #1F7A46; }
.lph-scrolly-doc {
    background: var(--white);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 13.5px;
    color: var(--dark);
}
.lph-scrolly-doc-row {
    display: flex; justify-content: space-between; gap: 12px;
    padding: 7px 0;
    border-bottom: 1px solid var(--light-gray);
}
.lph-scrolly-doc-row span:last-child { font-weight: 600; white-space: nowrap; font-variant-numeric: tabular-nums; }
.lph-scrolly-doc-total { border-bottom: none; color: var(--primary-dark); font-weight: 700; }
.lph-scrolly-doc-icon-row { display: flex; align-items: center; gap: 8px; padding: 7px 0; }
.lph-scrolly-doc-icon-row svg { color: var(--primary); flex-shrink: 0; }
.lph-scrolly-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 8px; }
.lph-scrolly-photo { height: 64px; border-radius: 10px; background: #D3E5F4; }
.lph-scrolly-photo-gold { background: var(--lph-gold-tint); }

/* ── Features-Bento: dunkle Navy-Fläche (Apple-Move) ── */
.lph-features {
    background: var(--lph-navy);
    border-radius: 36px 36px 0 0;
}
.lph-features .lph-eyebrow { color: var(--lph-gold); }
.lph-features .lph-section-title { color: #fff; }
.lph-features .lph-features-sub { color: #9FBAD8; }
.lph-features .lph-fcard {
    background: var(--lph-navy-tile);
    border-color: rgba(125, 191, 232, 0.18);
}
.lph-features .lph-fcard:hover {
    border-color: rgba(125, 191, 232, 0.5);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}
.lph-features .lph-fcard h3 { color: #fff; }
.lph-features .lph-fcard ul li { color: #C9D6E6; border-bottom-color: rgba(125, 191, 232, 0.12); }
.lph-features .lph-fcard ul li strong { color: #fff; }
.lph-features .lph-fcard ul li em { color: #9FBAD8; }
.lph-features .lph-fcard-icon { background: rgba(255, 255, 255, 0.10); }
.lph-features .lph-features-tagline { color: #9FBAD8; }
.lph-features .lph-features-tagline strong { color: #fff; }

/* ── Compare: dunkle Navy-Fläche, Booklera-Spalte als weißes Fenster ── */
.lph-compare {
    background: var(--lph-navy);
    border-radius: 36px 36px 0 0;
}
.lph-compare .lph-eyebrow { color: var(--lph-gold); }
.lph-compare .lph-section-title { color: #fff; }

/* ── Preis-Karten: Team-Chips + Vererbungs-Pills + Highlight-Zeile ── */
.lph-team-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--lph-bg-cool);
    color: var(--primary-dark);
    font-size: 12.5px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
    align-self: flex-start;
}
.lph-team-chip svg { flex-shrink: 0; }
.lph-team-chip-featured { background: var(--primary); color: #fff; }
.lph-team-chip-gold { background: var(--lph-gold); color: #3D2800; }
.lph-price-inherit {
    text-align: center;
    margin: 4px 0 10px;
}
.lph-price-inherit span {
    display: inline-block;
    background: var(--lph-gold-tint);
    color: var(--lph-gold-deep);
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 12px;
    border-radius: 100px;
}
.lph-price-highlight {
    background: var(--lph-bg-cool);
    border-radius: 8px;
}
.lph-price-enterprise {
    background: linear-gradient(135deg, #FFFDF8 0%, #FFF9EE 100%);
    border-color: var(--lph-gold);
}

/* ── Vergleichsmatrix (aus plan_limits.py generiert) ── */
.lph-matrix {
    max-width: 980px;
    margin: 36px auto 0;
    border: 1px solid var(--border);
    border-radius: var(--lph-radius);
    overflow: hidden;
    background: var(--white);
    text-align: left;
}
.lph-matrix-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 22px;
    background: var(--lph-bg-cool);
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    font-family: inherit;
}
.lph-matrix-chevron { display: inline-flex; color: var(--warm-gray); transition: transform 0.25s ease; }
.lph-matrix-toggle.is-closed .lph-matrix-chevron { transform: rotate(180deg); }
.lph-matrix-body { overflow-x: auto; }
.lph-matrix-table { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 620px; }
.lph-matrix-table th {
    padding: 12px 8px;
    text-align: center;
    font-size: 13px;
    font-weight: 800;
    color: var(--dark);
    border-bottom: 1.5px solid var(--border);
}
.lph-matrix-table th.lph-matrix-feat { text-align: left; padding-left: 22px; width: 34%; font-weight: 500; color: var(--warm-gray); }
.lph-matrix-table th.lph-matrix-pro { color: var(--primary); }
.lph-matrix-table th.lph-matrix-ent { color: var(--lph-gold-deep); }
.lph-matrix-group td {
    background: var(--lph-bg-soft);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    padding: 8px 22px;
}
.lph-matrix-table td { border-top: 1px solid #EDF2F8; }
.lph-matrix-table td.lph-matrix-feat { padding: 9px 8px 9px 22px; color: var(--dark); }
.lph-matrix-cell { text-align: center; padding: 9px 8px; }
td.lph-matrix-cell.lph-matrix-pro { background: color-mix(in srgb, var(--primary) 5%, #fff); }
.lph-matrix-cell svg { color: var(--success); vertical-align: middle; }
.lph-matrix-dash { color: #C6D2E0; }
.lph-matrix-val { font-weight: 700; color: var(--dark); font-variant-numeric: tabular-nums; }

/* ── Marktplatz: der goldene Würfel — DUNKEL wie das Original (R1-Fix
      2026-07-03: heller Verlauf + weißer Sektions-Text = unlesbar. Sektion
      bleibt dunkel, Gradient Gold-tief → Navy passend zur neuen Palette). ── */
.lph-market {
    background: linear-gradient(135deg, var(--lph-gold-deep) 0%, color-mix(in srgb, var(--lph-gold-deep) 45%, var(--lph-navy)) 100%);
}
.lph-market .lph-eyebrow { color: var(--lph-warm-soft); }

/* ── Kontakt-Sektion ── */
.lph-kontakt {
    padding: 100px 0;
    background: var(--lph-bg-cool);
}
.lph-kontakt .container { max-width: 720px; }
.lph-kontakt-sub {
    text-align: center;
    font-size: 16px;
    color: var(--text-secondary);
    margin: -24px 0 32px;
}
.lph-kontakt-result {
    max-width: 640px;
    margin: 0 auto 24px;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    text-align: center;
}
.lph-kontakt-ok { background: #E5F4EA; color: #1F7A46; }
.lph-kontakt-ok svg { flex-shrink: 0; }
.lph-kontakt-err { background: #FCEBEB; color: #A32D2D; display: block; }
.lph-kontakt-err a { color: #A32D2D; font-weight: 700; }
.lph-kontakt-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--lph-radius);
    box-shadow: var(--lph-shadow-md);
    padding: 28px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.lph-kontakt-form.lph-in-view { opacity: 1; transform: translateY(0); }
.lph-kontakt-hp { position: absolute; left: -9999px; top: -9999px; }
.lph-kontakt-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.lph-kontakt-field { margin-bottom: 16px; }
.lph-kontakt-field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}
.lph-kontakt-field input,
.lph-kontakt-field textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 14.5px;
    font-family: inherit;
    color: var(--dark);
    background: var(--white);
    box-sizing: border-box;
    resize: vertical;
}
.lph-kontakt-field input:focus,
.lph-kontakt-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 15%, transparent);
}
.lph-kontakt-form .lph-btn { width: 100%; justify-content: center; display: inline-flex; align-items: center; gap: 8px; }

/* ── Final-CTA: der einzige goldene Button der Seite ── */
.lph-final-cta .lph-btn-primary {
    background: var(--lph-gold);
    color: #3D2800;
    border-color: var(--lph-gold);
}
.lph-final-cta .lph-btn-primary:hover {
    background: #F6B95C;
    border-color: #F6B95C;
    color: #3D2800;
}

/* ── Reduced Motion: alle Redesign-Animationen aus (BFSG) ── */
@media (prefers-reduced-motion: reduce) {
    .lph-gewerk-in, .lph-pane-in { animation: none; }
    .lph-stat, .lph-scrolly-step, .lph-brand-story-card, .lph-kontakt-form,
    .lph-pain-card, .lph-pillar, .lph-trust-item, .lph-fcard, .lph-web-card,
    .lph-compare-row, .lph-price-card, .lph-faq-item {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ── Responsive für neue Sektionen ── */
@media (max-width: 860px) {
    .lph-scrolly { grid-template-columns: 1fr; }
    .lph-scrolly-panel { min-height: 220px; }
}
@media (max-width: 720px) {
    .lph-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .lph-stat-value { font-size: 21px; }
    .lph-kontakt { padding: 60px 0; }
    .lph-kontakt-row { grid-template-columns: 1fr; gap: 0; }
    .lph-kontakt-form { padding: 22px 18px; }
    .lph-features, .lph-compare { border-radius: 22px 22px 0 0; }
}

/* ═══ REDESIGN RUNDE 2 (2026-07-03) — R3 Pain-Mockup-Stil + R4 Heute-vs-Booklera-Karte ═══ */

/* ── R3: „Kennst du das?" — kompakte Karten, rote Icon-Bubbles, Hover-Lift ── */
.lph-pain { background: #fff; }
.lph-pain-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 18px;
    box-shadow: none;
    background: var(--white);
}
.lph-pain-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 10px 28px rgba(22, 41, 74, 0.10);
}
.lph-pain-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #FCEBEB;
    color: #A32D2D;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.lph-pain-card h3 { font-size: 16px; margin: 0 0 6px; }
.lph-pain-card p { font-size: 13.5px; line-height: 1.6; color: var(--text-secondary); }
.lph-pain-summary {
    background: var(--lph-navy);
    border-color: var(--lph-navy);
}
.lph-pain-summary:hover { border-color: var(--lph-gold); }
.lph-pain-summary .lph-pain-icon { background: rgba(242, 169, 59, 0.18); color: var(--lph-gold); }
.lph-pain-summary p { color: rgba(255, 255, 255, 0.82); }

/* ── R4: Heute vs. Booklera — dunkle ✗-Karte + weißes ✓-Fenster + USP-Chips ── */
.lph-vs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 680px;
    margin: 0 auto;
}
.lph-vs-col {
    border-radius: 14px;
    padding: 20px 22px;
    text-align: left;
}
.lph-vs-heute {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
}
.lph-vs-booklera {
    background: var(--white);
    border: 1px solid var(--white);
}
.lph-vs-head {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.lph-vs-heute .lph-vs-head { color: #9FBAD8; }
.lph-vs-booklera .lph-vs-head { color: var(--primary); }
.lph-vs ul { list-style: none; margin: 0; padding: 0; }
.lph-vs li {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 0;
    font-size: 14px;
    line-height: 1.45;
}
.lph-vs li svg { flex-shrink: 0; }
.lph-vs-heute li { color: #C9D6E6; }
.lph-vs-heute li svg { color: #E88C8C; }
.lph-vs-booklera li { color: var(--dark); }
.lph-vs-booklera li svg { color: var(--success); }
.lph-vs-chips {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px auto 0;
    max-width: 680px;
}
.lph-vs-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(125, 191, 232, 0.14);
    color: #B8D5EE;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 13px;
    border-radius: 100px;
}
.lph-vs-chip svg { flex-shrink: 0; }
.lph-vs-chip-gold { background: rgba(242, 169, 59, 0.20); color: #F6D48C; }

/* Alte 10-Zeilen-Tabelle: einklappbar unter der vs-Karte (kein Info-Verlust) */
.lph-compare-details {
    max-width: 920px;
    margin: 28px auto 0;
}
.lph-compare-details summary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    list-style: none;
    color: #B8D5EE;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 18px;
    border: 1px solid rgba(125, 191, 232, 0.30);
    border-radius: 100px;
    transition: border-color 0.2s ease, color 0.2s ease;
}
.lph-compare-details summary::-webkit-details-marker { display: none; }
.lph-compare-details summary:hover { border-color: #7FBFE8; color: #fff; }
.lph-compare-details summary svg { transition: transform 0.25s ease; }
.lph-compare-details[open] summary svg { transform: rotate(180deg); }
.lph-compare-details .lph-compare-table { margin-top: 20px; }
.lph-compare { text-align: center; }
.lph-compare .lph-compare-table { text-align: left; }

@media (max-width: 640px) {
    .lph-vs { grid-template-columns: 1fr; }
}

/* Final-CTA: altes Hardcode-Dunkel (#1A1A2E) → Logo-Navy (Kontrast-Sweep R1) */
.lph-final-cta {
    background: linear-gradient(135deg, var(--lph-navy) 0%, var(--lph-navy-tile) 100%);
}

/* ═══ SCROLLY-ABLAUF-POLISH (2026-07-03, Marco: „man sieht den Ablauf nicht") ═══ */

/* Zeitleiste: Verbindungslinie zwischen den Schritten, erledigt = grün + ✓ */
.lph-scrolly-step { position: relative; }
.lph-scrolly-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 27px;
    bottom: -11px;
    width: 2px;
    height: 12px;
    background: #C6D8EC;
}
.lph-scrolly-step.is-done:not(:last-child)::after { background: var(--success); }
.lph-scrolly-step.is-done { border-color: color-mix(in srgb, var(--success) 45%, #fff); }
.lph-scrolly-step.is-done .lph-scrolly-num {
    background: var(--success);
    font-size: 0;
}
.lph-scrolly-step.is-done .lph-scrolly-num::after {
    content: "✓";
    font-size: 12px;
}

/* Fortschrittsbalken im aktiven Schritt (synchron zum 3,6s-Auto-Advance) */
.lph-scrolly-bar { display: none; }
.lph-scrolly-step.is-active .lph-scrolly-bar {
    display: block;
    height: 3px;
    border-radius: 2px;
    background: #D8E2EE;
    margin: 10px 0 0 34px;
    position: relative;
    overflow: hidden;
}
.lph-scrolly-step.is-active .lph-scrolly-bar::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 0;
    border-radius: 2px;
    background: var(--primary);
    animation: lphScrollyFill 3.6s linear forwards;
}
@keyframes lphScrollyFill { to { width: 100%; } }

/* Übergabe-Zeile: erzählt was als Nächstes passiert (der eigentliche Ablauf) */
.lph-scrolly-handover {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--primary-dark);
}
.lph-scrolly-handover svg { color: var(--lph-gold-deep); flex-shrink: 0; }

/* Baudoku-Pane: Foto-Labels + Mangel-Warnzeile */
.lph-scrolly-photo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 74px;
    color: #4D77A8;
    font-size: 11px;
    font-weight: 700;
}
.lph-scrolly-photo-gold { color: var(--lph-gold-deep); }
.lph-scrolly-doc-warn, .lph-scrolly-doc-warn svg { color: #8A5200; }

@media (prefers-reduced-motion: reduce) {
    .lph-scrolly-step.is-active .lph-scrolly-bar::after { animation: none; width: 100%; }
}
