/* ===========================================================
   WebMox – Landing / Verkaufsseite
   Eigenständig, gekapselt unter .lp-* (kollidiert nicht mit der App)
   =========================================================== */

.lp {
    --lp-ink: #0f1222;
    --lp-ink-soft: #4a4f63;
    --lp-muted: #6b7185;
    --lp-line: #e9eaf2;
    --lp-bg: #ffffff;
    --lp-bg-soft: #f7f8fc;
    --lp-brand: #6366f1;
    --lp-brand-2: #8b5cf6;
    --lp-accent: #06b6d4;
    --lp-grad: linear-gradient(135deg, #6366f1 0%, #8b5cf6 55%, #a855f7 100%);
    --lp-radius: 16px;
    --lp-shadow: 0 1px 2px rgba(16, 18, 34, .04), 0 12px 32px rgba(16, 18, 34, .08);
    --lp-shadow-lg: 0 30px 80px rgba(76, 50, 160, .22);

    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: var(--lp-ink);
    background: var(--lp-bg);
    -webkit-font-smoothing: antialiased;
    line-height: 1.55;
}

.lp *, .lp *::before, .lp *::after { box-sizing: border-box; }

.lp a { color: inherit; text-decoration: none; }

.lp-wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.lp-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 22px; border-radius: 999px;
    font-weight: 600; font-size: 15px; cursor: pointer;
    border: 1px solid transparent; transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
    white-space: nowrap;
}
.lp-btn:active { transform: translateY(1px); }
.lp-btn-primary { background: var(--lp-grad); color: #fff; box-shadow: 0 8px 22px rgba(99, 102, 241, .35); }
.lp-btn-primary:hover { box-shadow: 0 12px 30px rgba(99, 102, 241, .45); }
.lp-btn-ghost { background: #fff; color: var(--lp-ink); border-color: var(--lp-line); }
.lp-btn-ghost:hover { border-color: #c9cbe0; }
.lp-btn-lg { padding: 15px 28px; font-size: 16px; }
.lp-btn-white { background: #fff; color: var(--lp-brand); }
.lp-btn-white:hover { background: #f3f0ff; }

/* ---------- Navbar ---------- */
.lp-nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, .82); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--lp-line);
}
.lp-nav-inner { display: flex; align-items: center; gap: 24px; height: 66px; }
.lp-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; letter-spacing: -.02em; }
.lp-logo-mark {
    width: 30px; height: 30px; border-radius: 9px; background: var(--lp-grad);
    display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 16px;
    box-shadow: 0 6px 16px rgba(99, 102, 241, .4);
}
.lp-nav-links { display: flex; gap: 26px; margin-left: 12px; }
.lp-nav-links a { color: var(--lp-ink-soft); font-weight: 500; font-size: 15px; }
.lp-nav-links a:hover { color: var(--lp-ink); }
.lp-nav-cta { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.lp-nav-signin { color: var(--lp-ink-soft); font-weight: 600; font-size: 15px; }
.lp-nav-signin:hover { color: var(--lp-ink); }
@media (max-width: 820px) {
    .lp-nav-links { display: none; }
}

/* ---------- Hero ---------- */
.lp-hero { position: relative; overflow: hidden; padding: 72px 0 84px; }
.lp-hero::before {
    content: ""; position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(60% 60% at 15% 0%, rgba(139, 92, 246, .14), transparent 60%),
        radial-gradient(50% 50% at 100% 10%, rgba(6, 182, 212, .12), transparent 55%);
    pointer-events: none;
}
.lp-hero-grid {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.lp-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: #f0effe; color: var(--lp-brand); border: 1px solid #e1ddfb;
    padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; margin-bottom: 20px;
}
.lp-eyebrow .lp-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 3px rgba(34, 197, 94, .2); }
.lp-h1 { font-size: clamp(34px, 5vw, 56px); line-height: 1.05; letter-spacing: -.03em; font-weight: 800; margin: 0 0 18px; }
.lp-h1 .lp-grad-text { background: var(--lp-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lp-sub { font-size: 19px; color: var(--lp-ink-soft); max-width: 540px; margin: 0 0 28px; }
.lp-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.lp-hero-note { margin-top: 16px; font-size: 14px; color: var(--lp-muted); display: flex; align-items: center; gap: 8px; }
@media (max-width: 920px) {
    .lp-hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Hero-Mockup (Browser) ---------- */
.lp-browser {
    background: #fff; border: 1px solid var(--lp-line); border-radius: 18px;
    box-shadow: var(--lp-shadow-lg); overflow: hidden; transform: perspective(1400px) rotateY(-7deg) rotateX(3deg);
}
.lp-browser-bar { display: flex; align-items: center; gap: 8px; padding: 12px 14px; background: #f4f4f9; border-bottom: 1px solid var(--lp-line); }
.lp-browser-bar i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.lp-browser-bar i:nth-child(1) { background: #ff5f57; }
.lp-browser-bar i:nth-child(2) { background: #febc2e; }
.lp-browser-bar i:nth-child(3) { background: #28c840; }
.lp-browser-url { margin-left: 10px; flex: 1; background: #fff; border: 1px solid var(--lp-line); border-radius: 7px; padding: 5px 12px; font-size: 12px; color: var(--lp-muted); }
.lp-browser-body { padding: 0; }
.lp-mock-nav { display: flex; align-items: center; gap: 14px; padding: 16px 20px; border-bottom: 1px solid #f0f0f5; }
.lp-mock-brand { width: 78px; height: 12px; border-radius: 6px; background: var(--lp-grad); }
.lp-mock-nav span { width: 42px; height: 8px; border-radius: 4px; background: #e7e8f0; }
.lp-mock-nav .lp-mock-spacer { flex: 1; }
.lp-mock-hero { padding: 28px 20px 22px; background: linear-gradient(180deg, #faf9ff, #fff); }
.lp-mock-hero .l1 { width: 70%; height: 18px; border-radius: 6px; background: #d9dae6; margin-bottom: 10px; }
.lp-mock-hero .l2 { width: 52%; height: 18px; border-radius: 6px; background: #e4e5ee; margin-bottom: 16px; }
.lp-mock-hero .lp-mock-pill { width: 110px; height: 30px; border-radius: 999px; background: var(--lp-grad); }
.lp-mock-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 18px 20px 26px; }
.lp-mock-card { border: 1px solid #eef0f6; border-radius: 10px; padding: 12px; }
.lp-mock-card .ic { width: 26px; height: 26px; border-radius: 8px; background: #ecebfe; margin-bottom: 10px; }
.lp-mock-card .ln { height: 7px; border-radius: 4px; background: #ededf3; margin-bottom: 6px; }
.lp-mock-card .ln.s { width: 60%; }

/* ---------- Logos / Trust strip ---------- */
.lp-strip { border-top: 1px solid var(--lp-line); border-bottom: 1px solid var(--lp-line); background: var(--lp-bg-soft); }
.lp-strip-inner { display: flex; align-items: center; justify-content: center; gap: 14px 40px; flex-wrap: wrap; padding: 22px 0; font-size: 14px; color: var(--lp-muted); font-weight: 500; }
.lp-strip-inner b { color: var(--lp-ink); font-weight: 700; }
.lp-strip-inner .lp-sep { width: 5px; height: 5px; border-radius: 50%; background: #cfd1e0; }

/* ---------- Sections ---------- */
.lp-section { padding: 84px 0; }
.lp-section.alt { background: var(--lp-bg-soft); border-top: 1px solid var(--lp-line); border-bottom: 1px solid var(--lp-line); }
.lp-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.lp-kicker { color: var(--lp-brand); font-weight: 700; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 12px; }
.lp-h2 { font-size: clamp(28px, 3.6vw, 40px); letter-spacing: -.02em; font-weight: 800; margin: 0 0 14px; }
.lp-lead { font-size: 18px; color: var(--lp-ink-soft); margin: 0; }

/* ---------- Steps ---------- */
.lp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lp-step { position: relative; background: #fff; border: 1px solid var(--lp-line); border-radius: var(--lp-radius); padding: 28px; box-shadow: var(--lp-shadow); }
.lp-step-no { width: 38px; height: 38px; border-radius: 11px; background: var(--lp-grad); color: #fff; font-weight: 800; display: grid; place-items: center; margin-bottom: 16px; }
.lp-step h3 { margin: 0 0 8px; font-size: 19px; }
.lp-step p { margin: 0; color: var(--lp-ink-soft); font-size: 15px; }

/* ---------- Feature grid ---------- */
.lp-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.lp-feature { background: #fff; border: 1px solid var(--lp-line); border-radius: var(--lp-radius); padding: 26px; transition: transform .15s ease, box-shadow .2s ease; }
.lp-feature:hover { transform: translateY(-3px); box-shadow: var(--lp-shadow); }
.lp-feature .lp-fi { width: 46px; height: 46px; border-radius: 12px; background: #f1f0fe; color: var(--lp-brand); display: grid; place-items: center; font-size: 22px; margin-bottom: 16px; }
.lp-feature h3 { margin: 0 0 8px; font-size: 18px; }
.lp-feature p { margin: 0; color: var(--lp-ink-soft); font-size: 15px; }

/* ---------- Roadmap ---------- */
.lp-roadmap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.lp-road { display: flex; gap: 16px; background: #fff; border: 1px solid var(--lp-line); border-radius: var(--lp-radius); padding: 22px 24px; }
.lp-road .lp-ri { flex: none; width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, #06b6d4, #6366f1); color: #fff; display: grid; place-items: center; font-size: 20px; }
.lp-road h3 { margin: 0 0 6px; font-size: 17px; display: flex; align-items: center; gap: 10px; }
.lp-road p { margin: 0; color: var(--lp-ink-soft); font-size: 15px; }
.lp-soon { font-size: 11px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--lp-accent); background: #e0f7fb; border: 1px solid #c3eef4; padding: 2px 9px; border-radius: 999px; }

/* ---------- Pricing ---------- */
.lp-prices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.lp-price { background: #fff; border: 1px solid var(--lp-line); border-radius: 18px; padding: 32px 28px; display: flex; flex-direction: column; }
.lp-price.featured { border-color: var(--lp-brand); box-shadow: 0 20px 50px rgba(99, 102, 241, .18); position: relative; }
.lp-price.featured::before { content: "Beliebt"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--lp-grad); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 14px; border-radius: 999px; }
.lp-price h3 { margin: 0 0 4px; font-size: 20px; }
.lp-price .lp-tag { color: var(--lp-muted); font-size: 14px; margin: 0 0 18px; }
.lp-amount { font-size: 40px; font-weight: 800; letter-spacing: -.02em; }
.lp-amount span { font-size: 16px; font-weight: 600; color: var(--lp-muted); }
.lp-plist { list-style: none; padding: 0; margin: 22px 0 26px; display: grid; gap: 12px; }
.lp-plist li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--lp-ink-soft); }
.lp-plist li::before { content: "✓"; color: #16a34a; font-weight: 800; }
.lp-price .lp-btn { width: 100%; justify-content: center; margin-top: auto; }
.lp-price-note { text-align: center; color: var(--lp-muted); font-size: 14px; margin-top: 26px; }

/* ---------- FAQ ---------- */
.lp-faq { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.lp-faq details { background: #fff; border: 1px solid var(--lp-line); border-radius: 14px; padding: 4px 20px; }
.lp-faq summary { cursor: pointer; list-style: none; padding: 18px 0; font-weight: 600; font-size: 17px; display: flex; justify-content: space-between; align-items: center; }
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after { content: "+"; color: var(--lp-brand); font-size: 22px; font-weight: 400; }
.lp-faq details[open] summary::after { content: "–"; }
.lp-faq p { margin: 0 0 18px; color: var(--lp-ink-soft); font-size: 15px; }

/* ---------- CTA band ---------- */
.lp-cta { position: relative; overflow: hidden; background: var(--lp-grad); border-radius: 24px; padding: 56px 40px; text-align: center; color: #fff; margin: 0 0 8px; }
.lp-cta::after { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 120% at 80% 0%, rgba(255, 255, 255, .18), transparent 60%); }
.lp-cta h2 { position: relative; font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; margin: 0 0 12px; letter-spacing: -.02em; }
.lp-cta p { position: relative; font-size: 18px; opacity: .92; margin: 0 0 26px; }
.lp-cta .lp-btn { position: relative; }

/* ---------- Footer ---------- */
.lp-footer { background: #0f1222; color: #b9bcce; padding: 56px 0 32px; }
.lp-footer-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 36px; }
.lp-footer .lp-logo { color: #fff; }
.lp-footer-about { max-width: 320px; font-size: 14px; line-height: 1.6; margin-top: 14px; }
.lp-footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.lp-footer-col h4 { color: #fff; font-size: 14px; margin: 0 0 14px; }
.lp-footer-col a { display: block; font-size: 14px; padding: 5px 0; color: #b9bcce; }
.lp-footer-col a:hover { color: #fff; }
.lp-footer-bottom { border-top: 1px solid #23263a; padding-top: 22px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; color: #7f8499; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
    .lp-steps, .lp-features, .lp-roadmap, .lp-prices { grid-template-columns: 1fr; }
    .lp-browser { transform: none; }
    .lp-section { padding: 60px 0; }
}
