:root {
    --primary: #2ecc71;
    --primary-glow: rgba(46, 204, 113, 0.4);
    --bg-dark: #0f172a;
    --card-bg: rgba(30, 41, 59, 0.7);
    --text-light: #f8fafc;
    --text-dim: #94a3b8;
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Urbanist', sans-serif;
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at top right, #1e293b, #0f172a);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}
/* --- NAVIGATION --- */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--primary);
}

    .logo img {
        height: 35px;
        border-radius: 8px;
    }

nav a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s;
}

    nav a:hover {
        color: var(--primary);
    }
/* --- HERO SECTION --- */
.hero {
    padding: 100px 5% 60px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

    .hero h1 {
        font-size: clamp(2.5rem, 8vw, 4rem);
        line-height: 1.1;
        margin-bottom: 20px;
        background: linear-gradient(to bottom right, #fff, #94a3b8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero p {
        font-size: 1.2rem;
        color: var(--text-dim);
        margin-bottom: 40px;
    }
@media (max-width: 600px) {
    .hero img {
        min-height: 550px !important;
    }

    .hero h1 {
        margin-top: 20px;
    }
}
.cta-btn {
    display: inline-block;
    background: var(--primary);
    color: #000;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 0 20px var(--primary-glow);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .cta-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 30px var(--primary-glow);
    }
/* --- FEATURES / CARDS --- */
.container {
    padding: 40px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 30px;
    color: #fff;
}

/* Background Bilder */
.feature-1::before,
.feature-2::before,
.feature-3::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 0.4s ease;
}

/* Einzelne Bilder */
.feature-1::before {
    background-image: url("step1.png");
}

.feature-2::before {
    background-image: url("step2.png");
}

.feature-3::before {
    background-image: url("step3.jpg");
}

/* Dark Overlay für Lesbarkeit */
.feature::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 0;
}

/* Content über Bild */
.feature * {
    position: relative;
    z-index: 1;
}

/* Hover Effekt (Premium Look) */
.feature:hover::before {
    transform: scale(1.05);
}
/* --- ADS / RECOMMENDATIONS --- */
.ad-section {
    background: linear-gradient(90deg, rgba(46, 204, 113, 0.1), transparent);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 0 15px 15px 0;
    margin: 40px 0;
}

    .ad-section a {
        color: var(--primary);
        font-weight: bold;
    }
/* --- FOOTER & COOKIE --- */
footer {
    margin-top: 80px;
    padding: 40px 5%;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-dim);
}

.footer-links {
    margin-bottom: 20px;
}

    .footer-links a {
        color: var(--text-dim);
        text-decoration: none;
        margin: 0 10px;
    }

#cookieBanner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

    #cookieBanner button {
        background: var(--primary);
        border: none;
        padding: 8px 25px;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
    }

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
    }

    nav a {
        margin: 0 10px;
    }
}
