/**
 * KoKI Chatbot – Landing-Page-Styles (WordPress).
 *
 * Spiegelt die Optik der TYPO3-Vorlage (EXT:koki_chatbot landing-page.css):
 * zentriertes Logo, Hero-Verlaufsbox, Highlight-Box, Feature-Checkliste und
 * seitenweiter Footer-Balken. Vollständig entkoppelt vom Widget-CSS
 * (assets/css/koki-chatbot.css) – dieses Stylesheet betrifft nur die
 * Seiten-Inhaltsblöcke der KoKI-Informationsseite.
 *
 * CSS-Hooks: koki-logo, koki-hero, koki-highlight, koki-features,
 * koki-page-footer, koki-page-footer-inner.
 */

/* Logo-Block: zentriert, feste Breite 200px. */
.koki-logo {
    text-align: center;
    margin: 2rem auto 1rem;
}

.koki-logo img {
    width: 200px;
    height: auto;
}

/* Hero-Bereich: Verlaufsbox mit hellem Text. */
.koki-hero {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    color: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    margin: 1.5rem auto 2rem;
}

.koki-hero h1,
.koki-hero h2 {
    color: #ffffff;
    margin-top: 0;
}

.koki-hero p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.koki-hero a {
    color: inherit;
    font-weight: 600;
    text-decoration: underline;
}

/* Highlight-Box für „Sicherheit & Compliance". */
.koki-highlight {
    background: #f1f5f9;
    border-left: 4px solid #2563eb;
    padding: 1.5rem 2rem;
    border-radius: 0 8px 8px 0;
    margin: 1.5rem auto;
}

.koki-highlight h2 {
    color: #1d4ed8;
    margin-top: 0;
}

.koki-highlight a {
    color: inherit;
    font-weight: 600;
    text-decoration: underline;
}

/* Feature-Liste mit Häkchen-Markern. */
.koki-features {
    list-style: none;
    padding: 0;
}

.koki-features li {
    position: relative;
    padding: 0.4rem 0 0.4rem 1.8rem;
    border-bottom: 1px solid #e2e8f0;
}

.koki-features li:last-child {
    border-bottom: none;
}

.koki-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.4rem;
    color: #2563eb;
    font-weight: bold;
}

/* Seitenweiter KoKI-Footer-Balken. */
.koki-page-footer {
    margin-top: 3rem;
    padding: 1.5rem 1rem;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

.koki-page-footer-inner {
    max-width: 800px;
    margin: 0 auto;
}

.koki-page-footer a {
    color: #2563eb;
    text-decoration: none;
}

.koki-page-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .koki-hero {
        padding: 1.5rem 1rem;
    }
}
