/* Landing Pitchcinema */
:root {
    --bg: #0c0c12;
    --bg-alt: #13131c;
    --card: #1a1a26;
    --text: #f0f0f5;
    --muted: #8a8a9a;
    --dim: #5a5a6a;
    --accent: #c9a96e;
    --border: rgba(255,255,255,0.06);
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --radius: 10px;
    --maxw: 1100px;
}

.lpc-body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
.lpc-body * { box-sizing: border-box; }

.lpc-container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 28px;
}

.lpc-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(12,12,18,0.9);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
}
.lpc-nav .lpc-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lpc-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
}
.lpc-logo-icon {
    width: 28px; height: 28px;
    background: var(--accent);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--bg);
    font-weight: 800;
}
.lpc-nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}
.lpc-nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: color 0.25s;
}
.lpc-nav-links a:hover { color: var(--text); }
.lpc-nav-cta {
    padding: 8px 18px;
    background: var(--accent);
    color: var(--bg) !important;
    border-radius: 6px;
    font-weight: 600 !important;
    font-size: 0.75rem !important;
}

.lpc-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
}
.lpc-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 40% at 20% 20%, rgba(201,169,110,0.08), transparent),
        radial-gradient(ellipse 50% 30% at 80% 80%, rgba(201,169,110,0.04), transparent);
    pointer-events: none;
}
.lpc-hero .lpc-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
}
.lpc-hero-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent);
    margin-bottom: 24px;
}
.lpc-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 24px;
    letter-spacing: -0.02em;
}
.lpc-hero h1 em {
    font-style: normal;
    color: var(--accent);
}
.lpc-lead {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--muted);
    max-width: 580px;
    margin: 0 0 20px;
    line-height: 1.7;
}
.lpc-hero-sub {
    color: var(--dim);
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.lpc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    font-family: inherit;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.lpc-btn-primary {
    background: var(--accent);
    color: var(--bg);
}
.lpc-btn-primary:hover {
    background: #d4b87a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,169,110,0.35);
}
.lpc-btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.15);
}
.lpc-btn-ghost:hover {
    background: rgba(255,255,255,0.04);
}

.lpc-section {
    padding: 100px 0;
    position: relative;
}
.lpc-section-alt { background: var(--bg-alt); }
.lpc-section-header { margin-bottom: 60px; }
.lpc-section-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 14px;
}
.lpc-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.2;
}
.lpc-section-subtitle {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 560px;
    line-height: 1.7;
}

.lpc-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 36px;
    transition: all 0.4s;
}
.lpc-card:hover {
    border-color: rgba(201,169,110,0.15);
    transform: translateY(-3px);
}
.lpc-card-icon {
    width: 40px; height: 40px;
    border: 2px solid var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.lpc-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 10px;
}
.lpc-card p {
    color: var(--muted);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.7;
}
.lpc-card-bordered {
    border: 1px solid rgba(201,169,110,0.25);
}
.lpc-card-quote {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4;
}

.lpc-grid {
    display: grid;
    gap: 20px;
}
.lpc-grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.lpc-grid-2 { grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); }

.lpc-step {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 40px 36px;
    transition: all 0.4s;
}
.lpc-step:hover { border-color: rgba(201,169,110,0.12); }
.lpc-step-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 16px;
}
.lpc-step h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 10px;
}
.lpc-step p {
    color: var(--muted);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.7;
}

.lpc-path {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 36px;
    margin-top: 30px;
}
.lpc-path-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 10px;
}
.lpc-path-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
}

.lpc-pricing-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 40px 32px;
    transition: all 0.4s;
}
.lpc-pricing-card:hover { border-color: rgba(201,169,110,0.15); }
.lpc-pricing-card-featured {
    border: 1px solid rgba(201,169,110,0.3);
    position: relative;
}
.lpc-pricing-card-featured::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 14px 14px 0 0;
}
.lpc-pricing-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 12px;
}
.lpc-pricing-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 8px;
}
.lpc-pricing-status {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
}
.lpc-pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.lpc-pricing-card li {
    padding: 8px 0;
    color: var(--muted);
    font-size: 0.88rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}
.lpc-pricing-card li::before {
    content: '';
    display: inline-block;
    width: 5px; height: 5px;
    background: var(--accent);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.lpc-form-wrapper {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 48px;
    max-width: 600px;
    margin: 0 auto;
}
.lpc-form-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted);
    margin-bottom: 14px;
}
.lpc-toggle-group {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
}
.lpc-toggle {
    flex: 1;
    padding: 14px 10px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--radius);
    transition: all 0.25s;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.lpc-toggle:hover {
    border-color: rgba(201,169,110,0.3);
    color: var(--text);
}
.lpc-toggle.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
}
.lpc-form-group {
    margin-bottom: 22px;
}
.lpc-form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
}
.lpc-form-group label span {
    color: var(--dim);
    font-weight: 400;
}
.lpc-form input[type="email"],
.lpc-form input[type="text"],
.lpc-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.25s;
}
.lpc-form input:focus,
.lpc-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(201,169,110,0.1);
}
.lpc-form input::placeholder,
.lpc-form textarea::placeholder {
    color: var(--dim);
}
.lpc-form textarea {
    min-height: 100px;
    resize: vertical;
    line-height: 1.6;
}
.lpc-form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--dim);
    margin-top: 16px;
}
.lpc-form-message {
    margin-top: 16px;
    padding: 14px;
    border-radius: var(--radius);
    text-align: center;
    display: none;
    font-size: 0.9rem;
    font-weight: 500;
}
.lpc-form-message.success {
    display: block;
    background: rgba(34,197,94,0.08);
    color: #4ade80;
    border: 1px solid rgba(34,197,94,0.12);
}
.lpc-form-message.error {
    display: block;
    background: rgba(239,68,68,0.08);
    color: #f87171;
    border: 1px solid rgba(239,68,68,0.12);
}

.lpc-footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}
.lpc-footer p {
    color: var(--dim);
    font-size: 0.8rem;
    margin: 0 0 6px;
}
.lpc-footer-links a {
    color: var(--dim);
    text-decoration: none;
    transition: color 0.25s;
    font-size: 0.8rem;
}
.lpc-footer-links a:hover { color: var(--accent); }

.lpc-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 0;
    border: none;
}

.lpc-animate {
    opacity: 0;
    transform: translateY(24px);
}
.lpc-animate.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s, transform 0.7s;
}

@media (max-width: 768px) {
    .lpc-nav-links { display: none; }
    .lpc-grid-3, .lpc-grid-2 { grid-template-columns: 1fr; }
    .lpc-hero { padding: 120px 0 60px; min-height: auto; }
    .lpc-section { padding: 60px 0; }
    .lpc-card, .lpc-step { padding: 28px; }
    .lpc-form-wrapper { padding: 28px; }
    .lpc-toggle-group { flex-direction: column; }
    .lpc-toggle { width: 100%; }
}
@media (max-width: 480px) {
    .lpc-hero h1 { font-size: 2rem; }
    .lpc-container { padding: 0 18px; }
}

/* v1.1.0: Hero-Bild oberhalb + Nav ohne Logo */
.lpc-nav .lpc-container { justify-content: flex-end; }
.lpc-hero { flex-direction: column; gap: 8px; }
.lpc-hero-media { position: relative; z-index: 1; width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.lpc-hero-media img { display: block; width: 100%; height: auto; border-radius: 10px; border: 1px solid var(--border); box-shadow: 0 24px 60px rgba(0,0,0,0.55); }
@media (max-width: 640px) { .lpc-hero-media { padding: 0 14px; } }


/* v1.1.1: Nav sticky + sichtbar, Hero-Abstaende symmetrisch (Mockup v3) */
.lpc-nav { position: sticky; top: 0; }
.lpc-hero { min-height: 0; padding: 28px 0 100px; gap: 28px; }
.lpc-nav-links { display: flex !important; gap: 20px; flex-wrap: wrap; }
@media (max-width: 768px) {
    .lpc-hero { padding: 20px 0 60px; }
}
@media (max-width: 480px) {
    .lpc-nav-links { gap: 10px; }
    .lpc-nav-links a { font-size: 0.66rem; }
}


/* v1.2.0: Burger-Dropdown + Login/Lost Popups */
.lpc-nav .lpc-container { justify-content: space-between; }
.lpc-burger { background: none; border: 1px solid #c9a96e; border-radius: 6px; color: #c9a96e; font-size: 18px; width: 42px; height: 38px; cursor: pointer; line-height: 1; }
.lpc-login-btn { background: #c9a96e; color: #14100a; border: none; border-radius: 6px; padding: 10px 22px; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.lpc-dropdown { display: none; position: absolute; top: 100%; left: 0; background: #13131c; border: 1px solid rgba(201,169,110,.35); border-radius: 0 0 10px 10px; min-width: 240px; box-shadow: 0 18px 50px rgba(0,0,0,.6); z-index: 150; }
.lpc-dropdown.open { display: block; }
.lpc-dropdown a { display: block; padding: 13px 20px; color: #8a8a9a; text-decoration: none; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,.05); }
.lpc-dropdown a:hover { color: #f0f0f5; background: rgba(201,169,110,.08); }
.lpc-dropdown a.lpc-dropdown-cta { color: #14100a; background: #c9a96e; font-weight: 700; text-align: center; }
.lpc-modal-bg { display: none; position: fixed; inset: 0; z-index: 300; background: rgba(0,0,0,.7); align-items: center; justify-content: center; padding: 20px; }
.lpc-modal-bg.open { display: flex; }
.lpc-modal { background: #13131c; border: 1px solid rgba(201,169,110,.4); border-radius: 12px; width: 100%; max-width: 380px; padding: 28px 26px 24px; position: relative; box-shadow: 0 30px 80px rgba(0,0,0,.7); }
.lpc-modal h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; margin-bottom: 4px; color: #fff; }
.lpc-modal-sub { color: #8a8a9a; font-size: 12.5px; margin-bottom: 18px; }
.lpc-modal label { display: block; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #8a8a9a; margin: 12px 0 5px; }
.lpc-modal input { width: 100%; padding: 11px 12px; border-radius: 6px; border: 1px solid rgba(255,255,255,.15); background: #0c0c12; color: #f0f0f5; font-size: 14px; }
.lpc-form-err { display: none; color: #ff7b7b; font-size: 12.5px; margin-top: 12px; }
.lpc-form-ok { display: none; color: #9ad29a; font-size: 12.5px; margin-top: 12px; }
.lpc-modal-submit { width: 100%; margin-top: 18px; padding: 12px; background: #c9a96e; color: #14100a; border: none; border-radius: 6px; font-size: 14px; font-weight: 700; cursor: pointer; }
.lpc-forgot { display: block; text-align: center; margin-top: 14px; color: #8a8a9a; font-size: 12.5px; }
.lpc-modal-close { position: absolute; top: 10px; right: 14px; background: none; border: none; color: #8a8a9a; font-size: 20px; cursor: pointer; }


/* v1.2.8: Zoom-Fix (Chrome-Mobile zoomt bei Inputs < 16px) */
.lpc-modal input { font-size: 16px; }

/* v1.2.9: Input-Zoom hart verhindern (Chrome-Mobile) */
.lpc-modal input, .lpc-modal textarea, .lpc-modal select { font-size: 16px !important; }
