/* ============================================================
   MOTIV STUDIO — Shared Stylesheet
   ============================================================ */

/* --- Fonts (lokal, kein Google-Request) --- */
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 300; font-display: swap; src: url('/assets/fonts/montserrat-v31-latin-300.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/montserrat-v31-latin-regular.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/montserrat-v31-latin-600.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/playfair-display-v40-latin-regular.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/playfair-display-v40-latin-600.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: italic; font-weight: 400; font-display: swap; src: url('/assets/fonts/playfair-display-v40-latin-italic.woff2') format('woff2'); }

/* --- CSS Variables --- */
:root {
    --bg-dark:      #0a0a0a;
    --panel-bg:     #141414;
    --border-color: #2a2a2a;
    --text-main:    #f0f0f0;
    --text-muted:   #888;
    --accent:       #d4af37;
    --accent-hover: #bda036;
    --error:        #db4437;
    --success:      #34A853;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* --- Base --- */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 400; line-height: 1.3; }

a { text-decoration: none; color: inherit; }

/* --- Header --- */
header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 5%; border-bottom: 1px solid var(--border-color);
    background: rgba(20, 20, 20, 0.97); backdrop-filter: blur(10px);
    position: fixed; top: 0; width: 100%; z-index: 1000;
}

.logo {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 2rem; letter-spacing: 3px; text-transform: uppercase;
    font-family: 'Playfair Display', serif; color: var(--text-main);
    text-decoration: none; line-height: 0.85; white-space: nowrap;
}
.logo:hover { color: var(--text-main); }
.logo img { height: 1.66cap; width: auto; margin-top: 0.13em;}
.logo:hover img { filter: brightness(1.3) drop-shadow(0 0 4px rgba(212,175,55,0.4)); }

.back-link {
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px;
    color: var(--text-muted); transition: color 0.2s;
}
.back-link:hover { color: var(--accent); text-decoration: none; }

/* --- Footer --- */
footer {
    border-top: 1px solid var(--border-color);
    padding: 2rem 5%;
    text-align: center;
}
.footer-links {
    display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap;
}
.footer-links a {
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px;
    color: var(--text-muted);
}
.footer-links a:hover { color: var(--accent); text-decoration: none; }
.footer-copy { margin-top: 1rem; font-size: 0.78rem; color: #888; }

/* ============================================================
   Legal Pages (datenschutz, impressum, agb)
   ============================================================ */

/* --- Page Hero (alle 3 Legal-Seiten) --- */
.page-hero {
    padding: 9rem 5% 4rem;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(180deg, #111 0%, var(--bg-dark) 100%);
}
.page-hero-inner { max-width: 860px; margin: 0 auto; }
.page-hero .eyebrow {
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 3px;
    color: var(--accent); margin-bottom: 1rem;
}
.page-hero h1 { font-size: 2.8rem; margin-bottom: 0.5rem; }
.page-hero .meta { font-size: 0.85rem; color: var(--text-muted); margin-top: 1rem; }

/* --- Notice box (datenschutz + agb) --- */
.notice {
    background: var(--panel-bg); border: 1px solid var(--border-color);
    border-left: 3px solid var(--accent);
    padding: 1.2rem 1.5rem; margin: 1.2rem 0;
    font-size: 0.88rem; color: var(--text-muted); border-radius: 1px;
}
.notice strong { color: var(--text-main); }

/* --- Par number + title (datenschutz + agb) --- */
.par-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; color: var(--accent); line-height: 1; flex-shrink: 0;
}
.par p:last-child { margin-bottom: 0; }
.par a { color: var(--accent); }
.toc a:hover { color: var(--accent); text-decoration: none; }
.toc ol { list-style: none; columns: 2; column-gap: 3rem; }
/* ============================================================
   index.html – Landingpage Styles
   ============================================================ */
        /* --- Navigation --- */
        .nav-links { display: flex; gap: 1.2rem; align-items: center; flex-wrap: nowrap; }
        .nav-links a { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; transition: color 0.2s; }
        .nav-links a:hover { color: var(--accent); }
        .btn-login { border: 1px solid var(--accent); color: var(--accent) !important; padding: 0.5rem 1.5rem; border-radius: 2px; transition: all 0.25s ease; }
        .btn-login:hover { background: linear-gradient(135deg, #c9a227 0%, #d4af37 50%, #c9a227 100%); color: var(--bg-dark) !important; }

        /* --- Hero Section --- */
        .hero {
            padding: 8rem 5% 5rem;
            display: flex; flex-direction: column; align-items: center; text-align: center;
            background: radial-gradient(circle at center, #1a1a1a 0%, var(--bg-dark) 70%);
        }
        .hero h1 { font-size: 4rem; margin: 0 0 0.5rem 0; max-width: 900px; }
        .hero h1 span { color: var(--accent); font-style: italic; }
        .hero-eyebrow { display: block; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 4px; color: var(--accent); margin: 0 0 0.6rem 0; }
        .hero p { font-size: 1.2rem; color: var(--text-muted); max-width: 700px; margin-bottom: 2.5rem; }
        @keyframes gold-shimmer {
            0%   { background-position: -200% center; }
            100% { background-position: 200% center; }
        }
        .hero p.hero-sub {
            font-size: 4rem; font-style: italic; font-family: 'Playfair Display', serif;
            margin-bottom: 1rem; line-height: 1.2; max-width: 900px;
            background: linear-gradient(90deg, #b8860b 0%, #d4af37 25%, #fff3a3 50%, #d4af37 75%, #b8860b 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gold-shimmer 2.5s ease-out 0.3s 1 forwards;
        }
        
        .cta-btn {
            background: var(--text-main); color: var(--bg-dark);
            padding: 1rem 2.5rem; font-size: 1.1rem; font-weight: 600; text-transform: uppercase;
            letter-spacing: 1px; border-radius: 2px; transition: all 0.2s ease;
            display: inline-block;
        }
        .cta-btn:hover { background: linear-gradient(135deg, #c9a227 0%, #d4af37 50%, #c9a227 100%); transform: translateY(-2px); }

        /* --- Features / Logic (USP) --- */
        .features { padding: 8rem 5%; background: var(--panel-bg); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
        .section-header { text-align: center; margin-bottom: 5rem; }
        .section-header h2 { font-size: 2.8rem; margin-bottom: 1rem; }
        .section-header p { color: var(--text-muted); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 2px; }

        .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; max-width: 1200px; margin: 0 auto; }
        .feature-card { background: var(--bg-dark); padding: 3rem; border: 1px solid var(--border-color); border-radius: 3px; transition: transform 0.3s, border-color 0.3s; }
        .feature-card:hover { transform: translateY(-5px); border-color: var(--accent); }
        .feature-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--accent); }
        .feature-card p { color: var(--text-muted); font-size: 0.95rem; }

        /* --- Use Cases --- */
        .use-cases { padding: 8rem 5%; max-width: 1200px; margin: 0 auto; }
        .case-row { display: flex; align-items: center; gap: 4rem; margin-bottom: 6rem; }
        .case-row:nth-child(even) { flex-direction: row-reverse; }
        .case-text { flex: 1; }
        .case-text h3 { font-size: 2.2rem; margin-bottom: 1.5rem; }
        .case-text p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 1.5rem; }
        .case-text ul { list-style: none; color: var(--text-muted); }
        .case-text li { 
            margin-bottom: 0.5rem; 
            padding-left: 1.8rem; 
            position: relative; 
        }
        .case-text li::before { 
            content: ''; 
            position: absolute; 
            left: 0; 
            top: 4px;
            width: 16px; 
            height: 16px; 
            /* Sicheres SVG-Häkchen in deiner Akzentfarbe #d4af37 */
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
        }
        
        .case-img { flex: 1; background: #111; border: 1px solid var(--border-color); aspect-ratio: 4/3; border-radius: 3px; display: flex; align-items: center; justify-content: center; color: #333; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; overflow: hidden; position: relative; }

        /* --- Pricing --- */
        .pricing { padding: 8rem 5%; background: var(--panel-bg); border-top: 1px solid var(--border-color); }
        .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
        .price-card { background: var(--bg-dark); border: 1px solid var(--border-color); padding: 3rem 2rem; text-align: center; border-radius: 3px; display: flex; flex-direction: column; }
        .price-card.popular { border-color: var(--accent); position: relative; }
        .price-card.popular::before { content: 'Bestseller'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--bg-dark); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; padding: 0.2rem 1rem; border-radius: 2px; }
        .price-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
        .price-card .price { font-size: 3rem; font-family: 'Montserrat', sans-serif; font-weight: 300; margin: 1.5rem 0; }
        .price-card .price span { font-size: 1rem; color: var(--text-muted); }
        .price-card ul { list-style: none; margin-bottom: 2.5rem; flex: 1; text-align: left; padding: 0 1rem;}
        .price-card li { padding: 0.8rem 0; border-bottom: 1px solid var(--border-color); font-size: 0.9rem; color: var(--text-muted); }
        .price-card li:last-child { border: none; }
        .price-btn { background: transparent; border: 1px solid var(--text-main); color: var(--text-main); padding: 1rem; width: 100%; text-transform: uppercase; font-weight: 600; letter-spacing: 1px; transition: 0.2s; cursor: pointer; }
        .price-btn:hover { background: linear-gradient(135deg, #c9a227 0%, #d4af37 50%, #c9a227 100%); border-color: #d4af37; color: var(--bg-dark); }
        .price-card.popular .price-btn { background: linear-gradient(135deg, #c9a227 0%, #d4af37 50%, #c9a227 100%); border-color: #d4af37; color: var(--bg-dark); }
        .price-card.popular .price-btn:hover { background: linear-gradient(135deg, #b8921e 0%, #c9a227 50%, #b8921e 100%); border-color: #b8960f; }

        /* --- Footer --- */
        /* --- Showcase Grid --- */
        .showcase-cover { width: 100%; height: 100%; object-fit: cover; display: block; }
        .feature-icon { font-size: 2.5rem; margin-bottom: 1.5rem; display: inline-block; color: var(--accent); }
        .feature-card-legal { background: var(--panel-bg); }
        #legal { background: var(--bg-dark); border-top: none; }
        .case-img-marketing { background: #0d0d0d; }
        .case-img-schule { background: #0a0d10; }
        .showcase { padding: 0 0 8rem; background: var(--bg-dark); }
        .showcase-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3px;
        }
        .showcase-item {
            aspect-ratio: 1/1;
            overflow: hidden;
            position: relative;
            
        }
        .showcase-item:first-child { aspect-ratio: 16/9; grid-column: span 3; }
        .showcase-blur {
            position: absolute; inset: 0;
            filter: blur(32px); transform: scale(1.15);
        }
        .showcase-label {
            position: absolute; bottom: 0; left: 0; right: 0;
            padding: 2.5rem 1.2rem 1rem;
            background: linear-gradient(transparent, rgba(0,0,0,0.75));
            display: flex; flex-direction: column; gap: 0.3rem;
        }
        .sl-title {
            font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
            color: rgba(255,255,255,0.85);
        }
        .sl-prompt {
            font-size: 0.6rem; letter-spacing: 0.5px; line-height: 1.4;
            color: rgba(255,255,255,0.4);
            display: none;
        }
        .showcase-item:hover .sl-prompt { display: block; }
        .showcase-item:hover .showcase-blur { filter: blur(28px); transition: filter 0.3s; }

        @media (max-width: 900px) {
            .showcase-grid { grid-template-columns: repeat(2, 1fr); }
            .showcase-item:first-child { grid-column: span 2; }
        }

        footer { padding: 4rem 5%; border-top: 1px solid var(--border-color); text-align: center; color: var(--text-muted); font-size: 0.85rem; }
        footer a { color: var(--text-muted); margin: 0 1rem; transition: color 0.2s; }
        footer a:hover { color: var(--accent); }

        @media (max-width: 600px) {
            .hero h1 { font-size: 2.5rem; }
            .case-row, .case-row:nth-child(even) { flex-direction: column; }
            .nav-links { display: none; }
        }

/* --- FAQ --- */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-color); padding: 2rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--text-main); }
.faq-item p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; margin: 0; }

/* --- Prompt Examples --- */
.prompt-examples { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.prompt-chip { font-size: 0.78rem; color: var(--text-muted); border: 1px solid var(--border-color); border-radius: 2px; padding: 0.3rem 0.75rem; font-style: italic; }

/* --- Trust Bar --- */
.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 1.5rem 5%;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 2.5rem;
}
.trust-item svg { flex-shrink: 0; }
.trust-text { display: flex; flex-direction: column; gap: 0.15rem; }
.trust-text strong { font-size: 0.82rem; font-weight: 600; color: var(--text-main); letter-spacing: 0.3px; }
.trust-text span { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.2px; }
.trust-sep {
    width: 1px;
    height: 2.5rem;
    background: var(--border-color);
    flex-shrink: 0;
}
@media (max-width: 900px) {
    .trust-sep { display: none; }
    .trust-bar { gap: 0.5rem; }
    .trust-item { padding: 0.6rem 1.2rem; }
}