/* ============================================================
   SecureFuture KI Engine – Layout + Shader + Content
   Version 3.2
   ============================================================ */

/* Grundlayout ------------------------------------------------ */

#sf-ki-engine-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    background: transparent;
}

/* Hintergrund-Canvas ---------------------------------------- */

#sf-ai-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 1;
    pointer-events: none;
    display: block;
}

/* Hero ------------------------------------------------------- */

.sf-hero {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 180px 20px 120px 20px;
    color: #ffffff;
}

.sf-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.sf-hero-sub {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Content Section ------------------------------------------- */

.sf-content {
    position: relative;
    z-index: 15;
    padding: 80px 20px 120px 20px;
    max-width: 900px;
    margin: 0 auto;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.sf-content h2 {
    font-size: 2rem;
    margin-bottom: 18px;
    font-weight: 600;
}

.sf-content h3 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 10px;
}

.sf-content p {
    font-size: 1.15rem;
    line-height: 1.55;
    margin-bottom: 20px;
}

.sf-content ul {
    padding-left: 20px;
    margin-bottom: 30px;
}

.sf-content li {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

/* CTA -------------------------------------------------------- */

.sf-cta {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 20px;
    text-align: center;
}

/* Button ----------------------------------------------------- */

.sf-button {
    display: inline-block;
    padding: 14px 32px;
    background: #00c3ff;
    color: #000;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none !important;
    font-size: 1.15rem;
    transition: 0.25s ease;
    margin-top: 5px;
}

.sf-button:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

/* Mobile ----------------------------------------------------- */

@media (max-width: 768px) {

    .sf-hero {
        padding-top: 130px;
        padding-bottom: 80px;
    }

    .sf-hero h1 {
        font-size: 2.4rem;
    }

    .sf-content {
        padding: 50px 18px 70px 18px;
    }

    .sf-content h2 {
        font-size: 1.7rem;
    }

    .sf-button {
        width: 100%;
        text-align: center;
    }
}
