/* --- GLOBALS & RESET --- */
* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

:root {
    --bg-dark: #050505;
    --bg-card: #0f0f0f;
    --text-main: #ffffff;
    --text-muted: #aaaaaa;
    --border-color: #222;

    /* DAS MAZUKY SYSTEM: Neon-Grün zu Cyber-Blau */
    --accent-green: #BCFF00;
    --gradient-main: linear-gradient(135deg, #BCFF00 0%, #4cc9f0 100%);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Grid Mesh */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: -1;
    pointer-events: none;
}

/* --- UTILITIES: Einheitlicher Gradient Look --- */
.highlight-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-weight: 800;
}

.btn-highlight {
    background: var(--gradient-main);
    color: #000;
    border: none;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-highlight:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(163, 255, 71, 0.4); 
}

/* Gradient Borders für Karten */
.gradient-border {
    position: relative;
    background: var(--bg-card);
    border-radius: 20px;
    z-index: 1;
    /* Basis-Rahmen falls Gradient nicht lädt */
    border: 1px solid #222; 
}

.gradient-border::before {
    content: "";
    position: absolute;
    inset: -1px; 
    border-radius: 21px; 
    padding: 1px; 
    background: var(--gradient-main);
    -webkit-mask: 
       linear-gradient(#fff 0 0) content-box, 
       linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0; 
    transition: opacity 0.3s ease;
    z-index: -1;
} 

.gradient-border:hover::before {
    opacity: 1;
}
.gradient-border:hover {
    border-color: transparent; /* Versteckt den grauen Rahmen beim Hover */
    transform: translateY(-5px);
}


/* --- NAVIGATION --- */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 5%;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-weight: 700; font-size: 1.5rem; letter-spacing: -0.5px;
}
.logo .dot { color: var(--accent-green); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
    color: var(--text-muted); text-decoration: none; font-size: 0.95rem; transition: color 0.3s;display: flex !important;align-items: center;
}
.nav-links a svg {
    margin-left: 5px;
}
.nav-links a:hover { color: #fff; }

.nav-login-btn {
    background: rgba(255,255,255,0.1);
    padding: 8px 18px; border-radius: 50px;
    color: #fff !important; font-weight: 600;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}
.nav-login-btn:hover { background: var(--accent-green); color: #000 !important; border-color: var(--accent-green); }

/* Mobile Menu Icon */
.menu-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.bar { width: 25px; height: 3px; background-color: #fff; border-radius: 3px; transition: 0.3s; }


/* --- HERO SECTION --- */
.hero {
    padding: 100px 5% 50px;
    position: relative;
    text-align: left;
}

.hero-bg-glow {
    position: absolute; top: 20%; left: 50%; transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(163, 255, 71, 0.15) 0%, transparent 60%);
    z-index: -1; pointer-events: none;
}

.grid-layout {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; max-width: 1200px; margin: 0 auto;
}

.headline {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1; font-weight: 800;
}

.intro-box {
    background: rgba(255,255,255,0.03);
    padding: 30px; border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.intro-box p { color: var(--text-muted); font-size: 1rem; margin-bottom: 25px; }
.status-dot {
    display: inline-block; width: 10px; height: 10px; background: var(--accent-green);
    border-radius: 50%; margin-right: 8px; box-shadow: 0 0 10px var(--accent-green);
}

.hero-buttons { display: flex; gap: 15px; }
.cta-button {
    padding: 12px 25px;
    border-radius: 50px; text-decoration: none;
}
.secondary-button {
    background: transparent; border: 1px solid #fff; color: #fff;
    padding: 12px 25px; border-radius: 50px; text-decoration: none; font-weight: 600;
    transition: all 0.3s;
}
.secondary-button:hover { background: #fff; color: #000; }

.scroll-down { text-align: center; margin-top: 60px; color: var(--text-muted); opacity: 0.7; }

/* Gallery Preview */
.gallery-preview {
    display: flex; gap: 20px; margin-top: 50px; justify-content: center;
}
.gallery-preview .card {
    flex: 1; max-width: 250px; height: 200px; overflow: hidden; border-radius: 20px; position: relative;
}
.gallery-preview img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; transition: 0.5s; }
.gallery-preview .card:hover img { opacity: 1; transform: scale(1.05); }
.card-1 { transform: rotate(-5deg); margin-top: 20px; }
.card-2 { z-index: 2; border: 2px solid var(--border-color); }
.card-3 { transform: rotate(5deg); margin-top: 20px; }


/* --- ABOUT SECTION --- */
.about-section {
    padding: 100px 10%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

.visual-container { position: relative; height: 400px; display: flex; justify-content: center; align-items: center; }
.yellow-orb {
    position: absolute; width: 200px; height: 200px; background: #ffcc00;
    border-radius: 50%; filter: blur(80px); opacity: 0.4;
}
.glass-card {
    background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 30px;
    padding: 30px; width: 250px; height: 250px;
    display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
    position: relative; z-index: 2;
}
.big-number { font-size: 3.5rem; font-weight: 700; color: #ffcc00; line-height: 1; }
.floating-card {
    position: absolute; bottom: 20px; right: 20px; z-index: 3;
    background: #111; border: 1px solid #333; border-radius: 15px;
    padding: 15px 25px; display: flex; align-items: center; gap: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}
.section-title { font-size: 2.5rem; margin-bottom: 20px; }
.check-list li { margin-bottom: 10px; color: #ccc;list-style: none;}
.check-list li::before { content: "✔"; color: var(--accent-green); margin-right: 10px; }
.about-footer { margin-top: 30px; padding-top: 20px; border-top: 1px solid #222; }
.profile { display: flex; gap: 15px; align-items: center; }
.avatar { width: 50px; height: 50px; border-radius: 50%;display: flex;align-items: center;justify-content: center;}

/* Styling für das kleine Icon in der About-Karte */
.icon-box {
    width: 45px; 
    height: 45px;
    background: rgba(255,255,255,0.05);
    border: 1px solid #333;
    border-radius: 50%; /* Kreis */
    display: flex; 
    justify-content: center; 
    align-items: center;
    color: var(--accent-green); /* Dein Neon-Grün */
    flex-shrink: 0;
}

.icon-box svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.card-text h3 {
    font-size: 0.9rem;
    color: #fff;
    margin: 0;
    font-weight: 700;
}

.card-text p {
    font-size: 0.75rem;
    color: #888;
    margin: 2px 0 0 0;
}


/* --- SERVICES BENTO GRID --- */
.services-section, .portfolio-section, .marquee-section, .faq-section { padding: 80px 5%; text-align: center; }
.subtitle { color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; display: block; margin-bottom: 10px; }

.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 50px auto 0;
}

.bento-card {
    background: #0f0f0f;
    padding: 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s;
}

.icon-wrapper {
    width: 60px; height: 60px;
    border-radius: 12px;
    display: flex; justify-content: center; align-items: center;
    font-size: 1.8rem;
    background: rgba(255,255,255,0.05);
    color: #fff;
    transition: 0.3s;
}

.bento-card:hover .icon-wrapper {
    background: var(--gradient-main);
    color: #000;
}

.bento-content h3 { font-size: 1.4rem; color: #fff; margin-bottom: 5px; }
.bento-content p { font-size: 0.95rem; color: #aaa; }


/* --- PORTFOLIO --- */
.portfolio-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; max-width: 1200px; margin: 40px auto 0;
}

.project-card {
    text-align: left; overflow: hidden;
}

.image-wrapper { height: 220px; position: relative; overflow: hidden; border-radius: 20px 20px 0 0; }
.image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.project-card:hover img { transform: scale(1.1); }
.overlay {
    position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.7);
    display: flex; justify-content: center; align-items: center; opacity: 0; transition: 0.3s;
}
.project-card:hover .overlay { opacity: 1; }
.view-btn { background: #fff; color: #000; padding: 10px 20px; border-radius: 30px; text-decoration: none; font-weight: bold; }
.card-content { padding: 25px; }
.tags { display: flex; gap: 10px; margin-bottom: 15px; }
.tag { font-size: 0.7rem; padding: 3px 10px; background: rgba(255,255,255,0.1); border-radius: 4px; }
.tag-web { color: var(--accent-green); background: rgba(163, 255, 71, 0.15); }


/* --- PLAYGROUND (Eigene Projekte) --- */
.playground-section {
    padding: 100px 5%;
    text-align: center;
    position: relative;
}

.playground-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 50px auto 0;
}

.playground-card {
    background: #0f0f0f;
    border: 1px solid #222;
    border-radius: 24px;
    padding: 40px 30px;
    width: 400px;
    position: relative;
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    z-index: 1;
}

/* --- KARTE 1: LIVE (GuessTheAnime) --- */
.playground-card.anime-card {
    /* Ein leichter Schein im Hintergrund der Karte */
    background: radial-gradient(circle at top right, rgba(163, 255, 71, 0.05), #0f0f0f 60%);
}

.playground-card.anime-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green); /* Grüner Rand beim Hover */
    box-shadow: 0 10px 40px rgba(163, 255, 71, 0.1); /* Grüner Schein */
}

/* Der Button - Jetzt im Neon Look */
.play-btn {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    color: #000;
    /* Der Mazuky Gradient */
    background: var(--gradient-main);
    transition: transform 0.2s, box-shadow 0.2s;
    width: fit-content; /* Passt sich dem Text an */
}

.play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(163, 255, 71, 0.5); /* Leuchtet beim Hover */
    color: #000;
}

/* --- KARTE 2: COMING SOON (In Arbeit) --- */
.playground-card.coming-soon {
    opacity: 0.7; /* Etwas dunkler */
    border: 1px dashed #333; /* Gestrichelter Rahmen wie ein Bauplan */
    background: 
        /* Streifen-Muster für "Under Construction" Look */
        repeating-linear-gradient(
            45deg,
            #0f0f0f,
            #0f0f0f 10px,
            #141414 10px,
            #141414 20px
        );
    cursor: default; /* Zeigt an: Hier kann man nicht klicken */
}

.playground-card.coming-soon:hover {
    transform: none; /* Bewegt sich nicht */
    border-color: #444;
}

/* Badges */
.card-badge {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Live Badge grün */
.anime-card .card-badge {
    background: rgba(163, 255, 71, 0.2);
    color: var(--accent-green);
    border: 1px solid rgba(163, 255, 71, 0.3);
}

/* In Arbeit Badge grau */
.coming-soon .card-badge {
    background: #222;
    color: #888;
    border: 1px solid #333;
}

.icon-large {
    font-size: 3rem;
    margin-bottom: 20px;
    /* Optional: Icon leicht leuchten lassen */
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
}

.playground-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.playground-card p {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Mobile */
@media (max-width: 600px) {
    .playground-grid { flex-direction: column; align-items: center; }
    .playground-card { width: 100%; }
}

/* --- PRICING SECTION --- */
/* Styles für Pricing & Add-ons weiter unten definiert */



/* --- MARQUEE (Kundenstimmen) --- */
.marquee-section {
    padding: 80px 5%;
    text-align: center;
    overflow: hidden; /* Wichtig, damit nichts rausragt */
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    padding: 10px 0;
    /* Weicher Fade an den Seiten */
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    margin: 40px auto 0;
}

.marquee-track {
    display: flex;
    width: max-content; /* Track so breit wie Inhalt */
    animation: scroll-loop 40s linear infinite;
}

.marquee-group {
    display: flex;
    gap: 30px;
    padding-right: 30px; /* WICHTIG für den lückenlosen Loop */
}

/* Die Animation schiebt alles genau um die Hälfte nach links */
@keyframes scroll-loop {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

/* Pause bei Hover */
.marquee-track:hover {
    animation-play-state: paused;
}

/* --- Review Karte Styles --- */
.review-card {
    width: 350px;
    padding: 30px;
    background: #0f0f0f;
    backdrop-filter: blur(10px);
    border: 1px solid #222;
    border-radius: 20px;
    flex-shrink: 0; /* Verhindert das Quetschen der Karte */
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: all 0.3s ease;
}

/* Hover-Effekte für Karte und Icon */
.review-card:hover {
    border-color: var(--accent-green);
    background: rgba(25, 25, 25, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.review-card:hover .review-icon {
    color: var(--accent-green); /* Icon leuchtet grün bei Hover */
}

/* Header der Karte (Sterne + Icon) */
.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.stars {
    color: #ffcc00;
    letter-spacing: 2px;
    font-size: 1rem;
}

.review-icon {
    font-size: 2rem;
    color: #333;
    line-height: 1;
    font-family: serif; /* Schönes Serif-Zeichen für Zitate */
    transition: color 0.3s ease;
}

.review-card p {
    color: #ccc;
    margin: 10px 0 20px;
    flex-grow: 1;
    font-style: italic;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Autor Bereich */
.author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.author .avatar {
    width: 45px; height: 45px;
    border-radius: 50%;
    background: #333; /* Fallback */
    display: flex; justify-content: center; align-items: center;
    font-weight: bold; color: #fff;
    font-size: 1.1rem;
}

.author .meta {
    display: flex; flex-direction: column;
}

.author .name, .profile-info .name {
    font-weight: 700; color: #fff; font-size: 0.9rem;
}

.author .role, .profile-info .role{
    font-size: 0.8rem; color: #666;
}

/* Mobile Anpassung */
@media (max-width: 600px) {
    .review-card {
        width: 280px; /* Etwas schmaler auf Handys */
        padding: 20px;
    }
}


/* --- KONTAKT & FOOTER --- */
.contact-section { padding: 50px 5%; }
.contact-container {
    max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px;
}
.contact-text p {margin: 0 0 15px 0;}
.contact-info .info-item { display: flex; gap: 15px; font-size: 1.1rem; margin-bottom: 20px; align-items: center; }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 15px; background: #111; border: 1px solid #333;
    color: #fff; border-radius: 10px; margin-bottom: 20px;
}
.contact-form input:focus { outline: none; border-color: var(--accent-green); }
.submit-btn { width: 100%; cursor: pointer; padding: 15px; border-radius: 50px; }

footer { background: #020202; padding: 80px 5% 30px; border-top: 1px solid #222; margin-top: 50px; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto; }
.footer-col h3 { color: #fff; margin-bottom: 20px; }
.footer-col a { display: block; color: #ccc; text-decoration: none; margin-bottom: 10px; }
.footer-col a:hover { color: var(--accent-green); }
.footer-bottom { text-align: center; margin-top: 60px; padding-top: 20px; border-top: 1px solid #111; color: #555; }

/* Switcher & Mobile */
.switch-toggle {
    width: 60px; height: 32px; background: #222; border-radius: 50px; position: relative; cursor: pointer;
}
.switch-slider {
    width: 24px; height: 24px; background: var(--accent-green); border-radius: 50%;
    position: absolute; top: 4px; left: 4px; transition: 0.3s;
}
.switch-toggle.toggled .switch-slider { transform: translateX(28px); }
.switch-label.active { color: #fff; font-weight: bold; }
.switch-label { color: #666; cursor: pointer; }

@media (max-width: 900px) {
    .grid-layout, .about-section, .contact-container, .bento-grid { grid-template-columns: 1fr; gap: 40px; text-align: left; }
    .hero { padding-top: 50px; text-align: center; }
    .grid-layout { text-align: center; justify-items: center; }
    .menu-toggle { display: flex; }
    .nav-links {
        position: absolute; top: 70px; left: 0; width: 100%; background: #0a0a0a;
        flex-direction: column; padding: 20px; border-bottom: 1px solid #333; display: none;
    }
    .nav-links.active { display: flex; }
    .addon-card { flex-direction: column; text-align: center; gap: 10px; padding: 30px; }
    .addon-icon { margin: 0; }
    .addons-grid { grid-template-columns: 1fr; }
}

/* --- SVG ICON BASE STYLES --- */
/* Das ersetzt die alten Font-Größen für Emojis */

/* Basis-Klasse für alle Icons */
.feather {
    width: 24px;
    height: 24px;
    stroke: currentColor; /* Nimmt die Textfarbe an */
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    display: inline-block;
    vertical-align: middle;
}

/* Große Icons in den Boxen (Services, Addons) */
.icon-large-svg {
    width: 32px;
    height: 32px;
}

/* Riesige Icons (Playground) */
.icon-xl-svg {
    width: 48px;
    height: 48px;
}

/* Checkmarks in Preislisten */
.check-icon {
    width: 18px;
    height: 18px;
    color: var(--accent-green); /* Dein Neon-Grün */
    margin-right: 5px;
}

/* Spezifische Anpassungen für deine Container */
.icon-wrapper svg { color: #fff; width: 30px; height: 30px; transition: 0.3s; }
.bento-card:hover .icon-wrapper svg { color: #000; } /* Wird schwarz im Hover */

.addon-icon svg { width: 28px; height: 28px; color: var(--text-muted); }
/* Fix: Icon wird hell/grün beim Hover */
.addon-card:hover .addon-icon svg {
    color: var(--accent-green); /* Nimmt deine Neon-Farbe an */
    stroke: currentColor;       /* Wichtig: Nutzt die Farbe für die Linien */
    transform: scale(1.1);      /* Kleiner Zoom-Effekt */
    transition: all 0.3s ease;
}

.contact-info .icon svg { color: var(--accent-green); margin-right: 10px; }




/* --- REFERENZEN PAGE STYLES --- */

/* Kleinerer Header für Unterseiten */
.page-header {
    padding: 150px 5% 50px; /* Platz für Fixed Nav */
    text-align: center;
    position: relative;
}

.header-bg-glow {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 600px; height: 400px;
    background: radial-gradient(circle, rgba(163, 255, 71, 0.1) 0%, transparent 70%);
    pointer-events: none; z-index: -1;
}

/* Filter Buttons */
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid #333;
    color: #888;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: #666;
    color: #fff;
}

.filter-btn.active {
    background: var(--gradient-main);
    color: #000;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(163, 255, 71, 0.3);
}

/* Active Link in Navbar hervorheben */
.active-page {
    color: #fff !important;
    font-weight: bold;
}

/* Print Tag Farbe (falls noch nicht vorhanden) */
.tag-print { background: rgba(255, 107, 107, 0.15); color: #ff6b6b; }

/* --- FIXES & ERGÄNZUNGEN --- */

/* Damit die Karten beim Filtern weich einblenden */
.project-card {
    transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.3s;
    /* Start-Zustand sicherstellen */
    opacity: 1;
    transform: translateY(0);
}

/* Fehlende Tag-Farben */
.tag-hosting { background: rgba(155, 89, 182, 0.2); color: #9b59b6; } /* Lila */
.tag-branding { background: rgba(230, 126, 34, 0.2); color: #e67e22; } /* Orange */
.tag-seo { background: rgba(52, 152, 219, 0.2); color: #3498db; } /* Blau */
.tag-print { background: rgba(255, 107, 107, 0.15); color: #ff6b6b; } /* Rot */

/* Hover-Effekt für den "Zurück zur Startseite" Link oben (optional) */
.nav-links a.active-page {
    color: #fff;
    border-bottom: 1px solid var(--accent-green);
}

/* --- MODAL / LIGHTBOX STYLES --- */
.modal-overlay {
    display: none; /* Standardmäßig unsichtbar */
    position: fixed;
    z-index: 2000; /* Ganz weit oben */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Dunkler Hintergrund */
    backdrop-filter: blur(5px); /* Verschwommener Hintergrund */
    overflow: auto; /* Erlaubt Scrollen, falls das Bild lang ist */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Oben starten, damit man runterscrollen kann */
    opacity: 1;
    padding: 50px 20px;
}

.modal-content {
    position: relative;
    max-width: 1000px; /* Maximale Breite des Bildes */
    width: 100%;
    background: #0f0f0f;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(163, 255, 71, 0.1);
    border: 1px solid #333;
    animation: zoomIn 0.3s ease;
}

/* Das Bild im Modal */
.modal-content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Schließen Button (X) */
.close-modal {
    position: fixed; /* Fixiert oben rechts am Bildschirm */
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 2001;
    line-height: 1;
}

.close-modal:hover {
    color: var(--accent-green);
}

@keyframes zoomIn {
    from {transform: scale(0.9); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}



/* --- FAQ SECTION --- */
.faq-section {
    padding: 80px 5%;
    background: transparent;
}

.faq-container {
    max-width: 800px; /* Schmaler als der Rest für bessere Lesbarkeit */
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #0f0f0f;
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--accent-green); /* Leuchtet grün wenn offen */
    background: #141414;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
}

.faq-icon {
    color: #666;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Wenn offen: Icon drehen und grün färben */
.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Aus + wird x */
    color: var(--accent-green);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    border-top-color: rgba(255,255,255,0.05);
}

.answer-content {
    padding: 0 25px 25px 25px;
    color: #aaa;
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-item:hover {
    border-color: #333;
}
.faq-item.active:hover {
    border-color: var(--accent-green);
}


/* ═══════════════════════════════════════
   PRICING SECTION
═══════════════════════════════════════ */

.pricing-section {
    padding: 100px 5%;
    text-align: center;
    position: relative;
}

.pricing-bg-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 900px; height: 700px;
    background: radial-gradient(circle, rgba(76,201,240,0.07) 0%, transparent 65%);
    z-index: -1; pointer-events: none;
}

.pricing-header { margin-bottom: 50px; }
.pricing-header .title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 10px;
}

/* Toggle Switch */
.pricing-switch-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.05);
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.08);
    margin: 30px auto 50px;
}

.switch-label {
    color: #555;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
    user-select: none;
}
.switch-label.active { color: #fff; }

.switch-toggle {
    width: 64px; height: 34px;
    background: #1a1a1a;
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    border: 1px solid #333;
    transition: border-color 0.3s;
}
.switch-toggle:hover { border-color: var(--accent-green); }

.switch-slider {
    width: 26px; height: 26px;
    background: var(--accent-green);
    border-radius: 50%;
    position: absolute;
    top: 3px; left: 3px;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 10px rgba(188,255,0,0.5);
}
.switch-toggle.toggled .switch-slider { transform: translateX(30px); }

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1150px;
    margin: 0 auto;
    align-items: stretch;
}

/* Price Cards */
.price-card {
    background: rgba(15,15,15,0.7);
    backdrop-filter: blur(12px);
    padding: 40px 32px;
    text-align: left;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
}

.price-card.popular {
    border-color: rgba(188,255,0,0.3);
    background: rgba(15,15,15,0.9);
}
.price-card.popular::before { opacity: 0.6; }
.price-card.popular:hover::before { opacity: 1; }

.popular-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--accent-green);
    color: #000;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.price-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}
.price-card .card-sub {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 28px;
}

.price-wrapper { margin-bottom: 28px; }

.price {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(90deg, #fff, #bbb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.price .period {
    font-size: 0.9rem;
    font-weight: 400;
    -webkit-text-fill-color: #555;
}
.popular .price {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.popular .price .period { -webkit-text-fill-color: #888; }

/* Feature List */
.features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #ccc;
    font-size: 0.92rem;
    line-height: 1.4;
}
.check { flex-shrink: 0; margin-top: 1px; }
.check-icon {
    width: 17px; height: 17px;
    color: var(--accent-green);
    display: block;
}

.card-divider {
    height: 1px;
    background: rgba(255,255,255,0.05);
    margin-bottom: 24px;
}

.price-btn {
    display: block;
    text-align: center;
    padding: 14px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    background: rgba(255,255,255,0.05);
    color: #fff;
    border: 1px solid #2a2a2a;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: auto;
}
.price-btn:hover { background: #fff; color: #000; border-color: #fff; }
.price-btn.btn-highlight { border: none; }

.hosting-note {
    margin-top: 40px;
    color: #3a3a3a;
    font-size: 0.8rem;
}

/* Toggle visibility helpers */
.show-buy { display: none; }


/* ═══════════════════════════════════════
   MARKEN-UPGRADE / ADD-ONS SECTION
═══════════════════════════════════════ */

.addons-section {
    padding: 100px 5%;
    position: relative;
}

/*.addons-section::before {
    content: "";
    display: block;
    width: 100%;
    max-width: 1100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(188,255,0,0.25), rgba(76,201,240,0.2), transparent);
    margin: 0 auto 80px;
}*/

.addons-header {
    text-align: center;
    margin-bottom: 55px;
}
.addons-header .title {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 8px;
}
.addons-sub { color: #666; font-size: 1rem; }

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.addon-card {
    background: #0f0f0f;
    padding: 26px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #1e1e1e;
    border-radius: 18px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}
.addon-card:hover {
    transform: translateY(-4px);
    border-color: rgba(188,255,0,0.3);
    background: #141414;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.addon-card:hover .addon-icon svg { color: var(--accent-green); }

.addon-icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.04);
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.addon-icon svg {
    width: 24px; height: 24px;
    color: #666;
    transition: color 0.3s;
}

.addon-info { flex-grow: 1; }
.addon-info h4 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 3px; }
.addon-info p { color: #666; font-size: 0.83rem; margin: 0; }

.addon-price {
    font-weight: 800;
    font-size: 1.05rem;
    white-space: nowrap;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.addons-cta { text-align: center; margin-top: 50px; }

@media (max-width: 900px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .addons-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 500px) {
    .pricing-switch-wrapper { gap: 10px; padding: 8px 16px; }
    .switch-label { font-size: 0.78rem; }
}
