@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700;900&family=Inter:wght@400;500&display=swap');

:root {
    --main-dark: #0f172a; 
    --accent-color: #2563eb; 
    --accent-glow: rgba(37, 99, 235, 0.4);
    
    --bg-main-light: #f8fafc; 
    --bg-white-pure: #ffffff;
    --text-main: #0f172a;
    --text-muted: #475569;
    
    --border-dark: #0f172a;
    --border-light: rgba(0,0,0,0.1);
}

* { box-sizing: border-box; cursor: none; }
html { scroll-behavior: smooth; }
::selection { background-color: var(--accent-color); color: #ffffff; }

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-main);
    background-color: var(--bg-white-pure);
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, .logo-text, .service-number {
    font-family: 'Space Grotesk', sans-serif;
    margin: 0;
    text-transform: uppercase;
}

.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.relative-z { position: relative; z-index: 10; }
.overflow-hidden { overflow: hidden; }

/* --- LOGO STYLES --- */
.header-logo { 
    max-height: 60px; /* Logo deutlich vergrößert */
    width: auto; 
    object-fit: contain; 
}
.footer-logo { 
    max-height: 60px; /* Logo im Footer ebenfalls vergrößert */
    width: auto; 
    object-fit: contain; 
    background-color: #ffffff; /* Weißer Hintergrund für das farbige Logo */
    padding: 10px 20px; /* Abstand im weißen Kasten */
    border-radius: 10px; /* Abgerundete Ecken */
} 

/* --- CUSTOM CURSOR --- */
.cursor-dot, .cursor-outline { position: fixed; top: 0; left: 0; transform: translate(-50%, -50%); border-radius: 50%; z-index: 9999; pointer-events: none; }
.cursor-dot { width: 8px; height: 8px; background-color: var(--accent-color); }
.cursor-outline { width: 40px; height: 40px; border: 2px solid var(--main-dark); transition: width 0.2s, height 0.2s, background-color 0.2s; mix-blend-mode: difference; }
body.hovering .cursor-outline { width: 80px; height: 80px; background-color: var(--accent-glow); border-color: var(--accent-color); mix-blend-mode: normal; }

.noise-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; pointer-events: none; z-index: 9998; opacity: 0.04; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"); }
.scroll-progress { position: fixed; top: 0; left: 0; width: 0%; height: 5px; background: var(--accent-color); z-index: 10000; }

.bg-main-dark { background-color: var(--main-dark); }
.bg-accent { background-color: var(--accent-color); }
.bg-main-light { background-color: var(--bg-main-light); }
.bg-white-pure { background-color: var(--bg-white-pure); }

.text-white { color: #fff !important; }
.text-accent { color: var(--accent-color) !important; }
.text-dark { color: var(--main-dark) !important; }
.text-muted { color: var(--text-muted); line-height: 1.6; }

/* Responsive Padding für Mobile */
.padding-large { padding: clamp(50px, 10vw, 150px) 0; }

.align-right { text-align: right; }
.align-center { text-align: center; }
.mt-neg-50 { margin-top: -50px; }
.mt-4 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.w-100 { width: 100%; }

/* Responsive Typografie */
.massive-h2 { font-size: clamp(2rem, 5vw, 7rem); line-height: 0.9; letter-spacing: -2px; color: var(--main-dark); }
.sub-h2 { font-size: clamp(1.8rem, 4vw, 4rem); letter-spacing: -1px; }
.accent-text { color: var(--accent-color); -webkit-text-stroke: 1px var(--main-dark); text-shadow: 2px 2px 0 var(--main-dark);}
.stroke-text { color: transparent; -webkit-text-stroke: 2px var(--main-dark); }
.stroke-text-light { color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,0.3); }

.badge-accent { background: var(--accent-color); color: #fff; padding: 8px 16px; font-weight: 700; font-family: 'Space Grotesk'; font-size: 0.8rem; border: 2px solid var(--main-dark); display: inline-block; box-shadow: 4px 4px 0 var(--main-dark); margin-bottom: 30px;}
.badge-dark { background: var(--main-dark); color: var(--accent-color); padding: 8px 16px; font-weight: 700; font-family: 'Space Grotesk'; font-size: 0.8rem; display: inline-block; margin-bottom: 20px;}

/* --- HEADER --- */
header { padding: 15px 0; position: fixed; width: 100%; z-index: 1000; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-light); color: var(--main-dark); }
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo-link { text-decoration: none; color: inherit; display: flex; align-items: center; }

/* Hamburger Menü Icon */
.menu-toggle { display: none; background: transparent; border: none; cursor: none; z-index: 1001; }
.menu-toggle .bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: var(--main-dark); transition: all 0.3s ease-in-out; }

.main-nav { display: flex; gap: 40px; align-items: center;}
.nav-link { text-decoration: none; color: inherit; font-weight: 500; text-transform: uppercase; font-family: 'Space Grotesk'; font-size: 0.8rem; position: relative; white-space: nowrap; }
.nav-link::after { content: ''; position: absolute; width: 100%; height: 2px; bottom: -5px; left: 0; background: var(--accent-color); transform: scaleX(0); transform-origin: right; transition: transform 0.3s ease; }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.mobile-cta { display: none !important; }

/* --- CONVERSION BUTTONS --- */
.btn-primary, .btn-accent, .btn-outline-dark {
    display: inline-block; padding: clamp(12px, 2vw, 16px) clamp(20px, 3vw, 32px); font-family: 'Space Grotesk'; font-weight: 700; text-transform: uppercase; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s, background-color 0.3s; text-align: center; cursor: none; font-size: clamp(0.8rem, 1vw, 1rem);
}
.btn-primary { background: var(--main-dark); color: white; border-radius: 50px; }
.btn-primary:hover { background: var(--accent-color); }
.btn-accent { background: var(--accent-color); color: #fff; border: 2px solid var(--main-dark); box-shadow: 6px 6px 0 var(--main-dark); }
.btn-accent:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--main-dark); }
.btn-outline-dark { background: transparent; color: var(--main-dark); border: 2px solid var(--main-dark); box-shadow: 6px 6px 0 transparent; }
.btn-outline-dark:hover { box-shadow: 6px 6px 0 var(--main-dark); transform: translate(-2px, -2px); }

/* Animation für Haupt-CTAs */
.pulse-btn { animation: pulse 2s infinite; }
@keyframes pulse {
    0% { box-shadow: 6px 6px 0 var(--main-dark), 0 0 0 0 var(--accent-glow); }
    70% { box-shadow: 6px 6px 0 var(--main-dark), 0 0 0 15px rgba(37, 99, 235, 0); }
    100% { box-shadow: 6px 6px 0 var(--main-dark), 0 0 0 0 rgba(37, 99, 235, 0); }
}

/* --- HERO --- */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 100px; position: relative; }
.hero-text-massive h1 { font-size: clamp(2.5rem, 8vw, 11rem); line-height: 0.85; letter-spacing: -3px; margin-bottom: 40px; max-width: 100%;}
.hero-bottom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; border-top: 2px solid var(--border-dark); padding-top: 40px; }
.hero-bottom-grid p { font-size: clamp(1rem, 1.2vw, 1.2rem); font-weight: 500; max-width: 450px; margin: 0; line-height: 1.5; color: #475569;}
.hero-buttons { display: flex; gap: 20px; justify-content: flex-end; }
.hero-background-effects { position: absolute; right: 0; top: 0; width: 50vw; height: 100vh; overflow: hidden; z-index: -1; filter: blur(50px); opacity: 0.4; }
.blob { position: absolute; border-radius: 50%; animation: morph 15s infinite alternate ease-in-out; }
.shape-1 { width: clamp(300px, 50vw, 600px); height: clamp(300px, 50vw, 600px); background: var(--accent-color); top: -100px; right: -100px; }
.shape-2 { width: clamp(200px, 40vw, 500px); height: clamp(200px, 40vw, 500px); background: #cbd5e1; bottom: 10%; right: 20%; animation-delay: -5s;}
@keyframes morph { 0% { border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%; transform: rotate(0deg) scale(1); } 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: rotate(45deg) scale(1.1); } }
.section-divider-brutal { height: clamp(50px, 10vw, 100px); background: repeating-linear-gradient(45deg, var(--main-dark), var(--main-dark) 10px, transparent 10px, transparent 20px); width: 100%; position: absolute; bottom: 0; }

/* --- MODERN SPLIT SECTION (PROBLEM) --- */
.border-bottom-light { border-bottom: 1px solid rgba(255,255,255,0.05); }
.split-section-modern { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 8vw, 80px); align-items: center; }
.pain-points-list { display: flex; flex-direction: column; gap: 20px; }
.pain-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: clamp(20px, 4vw, 40px); border-radius: 20px; transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); position: relative; overflow: hidden;}
.pain-card::before { content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 4px; background: var(--accent-color); transform: scaleY(0); transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); transform-origin: bottom;}
.pain-card:hover { background: rgba(255,255,255,0.05); border-color: rgba(37, 99, 235, 0.3); transform: translateX(10px);}
.pain-card:hover::before { transform: scaleY(1); }
.pain-header { display: flex; align-items: center; gap: clamp(10px, 2vw, 20px); margin-bottom: 15px; }
.pain-num { font-family: 'Space Grotesk'; font-size: clamp(2rem, 3vw, 2.5rem); font-weight: 900; line-height: 1;}
.pain-card h3 { font-size: clamp(1.2rem, 1.5vw, 1.5rem); letter-spacing: -0.5px; margin: 0; color: white;}
.pain-card p { color: #94a3b8; font-size: clamp(0.9rem, 1.1vw, 1.1rem); line-height: 1.6; margin: 0; }

/* --- MARQUEE --- */
.huge-marquee-container { overflow: hidden; padding: clamp(20px, 4vw, 30px) 0; border-top: 2px solid var(--main-dark); border-bottom: 2px solid var(--main-dark); }
.huge-marquee-track { display: flex; width: max-content; animation: scrollText 25s linear infinite; }
.huge-marquee-track span { font-family: 'Space Grotesk'; font-size: clamp(2rem, 4vw, 4rem); font-weight: 900; margin-right: 40px; line-height: 1; white-space: nowrap; }
@keyframes scrollText { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- LEISTUNGEN --- */
.card-grid-3 { display: flex; flex-direction: column; border-top: 2px solid var(--border-dark); }
.service-card-brutal { display: grid; grid-template-columns: clamp(50px, 10vw, 100px) 1fr; gap: clamp(20px, 4vw, 40px); padding: clamp(20px, 4vw, 40px) 0; border-bottom: 2px solid var(--border-dark); position: relative; overflow: hidden; transition: padding 0.4s; }
.service-number { font-size: clamp(1.5rem, 2vw, 2rem); color: var(--border-light); font-weight: 900; }
.service-content h3 { font-size: clamp(1.6rem, 3vw, 2.5rem); letter-spacing: -1px; margin-bottom: 10px; transition: color 0.3s; }
.service-content p { font-size: clamp(0.9rem, 1.1vw, 1.1rem); max-width: 600px; color: var(--text-muted); line-height: 1.6;}
.service-card-brutal:hover { padding-left: 20px; }
.service-card-brutal:hover h3 { color: var(--accent-color); -webkit-text-stroke: 1px var(--main-dark); }

/* --- BENTO GRID --- */
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: clamp(150px, 20vw, 250px); gap: clamp(10px, 2vw, 20px); margin-top: clamp(30px, 6vw, 60px); }
.bento-item { border-radius: clamp(15px, 3vw, 30px); padding: clamp(20px, 4vw, 40px); display: flex; flex-direction: column; justify-content: flex-end; transition: transform 0.3s; border: 2px solid transparent;}
.bento-item:hover { transform: translateY(-10px); }
.bento-large { grid-column: span 2; grid-row: span 2; border: 2px solid rgba(255,255,255,0.1); }
.bento-medium { grid-column: span 2; border: 2px solid var(--main-dark); }
.bento-small { grid-column: span 1; border: 2px solid var(--border-light); }
.bento-item h3 { font-size: clamp(1.3rem, 2vw, 2rem); margin-bottom: 10px; }
.bento-large h3 { font-size: clamp(2rem, 3.5vw, 3.5rem); }
.bento-item p { margin: 0; font-size: clamp(0.9rem, 1.1vw, 1.1rem); line-height: 1.5;}
.massive-icon { font-size: clamp(2.5rem, 3.5vw, 3.5rem); margin-bottom: auto; display: block; }

/* --- KONTAKT FORMULAR --- */
.contact-brutal-flex { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 8vw, 80px); align-items: center;}
.direct-contact-huge a { display: block; font-size: clamp(1.4rem, 3vw, 2.5rem); font-family: 'Space Grotesk'; font-weight: 900; color: var(--main-dark); text-decoration: none; margin-bottom: 10px; transition: color 0.3s; line-height: 1.2; word-break: break-word;}
.direct-contact-huge a:hover { color: var(--accent-color); -webkit-text-stroke: 1px var(--main-dark); }

.form-container-brutal form { display: flex; flex-direction: column; gap: clamp(15px, 2vw, 20px); }
.input-group input, .input-group select {
    width: 100%; padding: clamp(12px, 1.5vw, 15px) 0; background: transparent; border: none; border-bottom: 2px solid var(--border-light); font-family: 'Inter'; font-size: clamp(1rem, 1.2vw, 1.2rem); color: var(--main-dark); outline: none; transition: border-color 0.3s; border-radius: 0;
}
.input-group input::placeholder { color: var(--text-muted); }
.input-group input:focus, .input-group select:focus { border-bottom-color: var(--accent-color); }

/* --- FOOTER --- */
.footer-brutal { padding: clamp(60px, 10vw, 100px) 0 clamp(40px, 6vw, 60px) 0; }
.footer-top { display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid rgba(255,255,255,0.1); padding-bottom: 40px; margin-bottom: 40px; gap: 20px;}
.footer-links { display: flex; gap: clamp(15px, 3vw, 30px); flex-wrap: wrap; justify-content: center;}
.footer-links a { color: white; text-decoration: none; font-family: 'Space Grotesk'; font-weight: 600; font-size: clamp(0.9rem, 1.1vw, 1.1rem); }
.footer-bottom { display: flex; justify-content: space-between; color: #64748b; font-size: clamp(0.8rem, 0.9vw, 0.9rem); gap: 15px; flex-wrap: wrap;}

/* --- MOBILE STICKY CTA (Dezent & Schwebend) --- */
.mobile-sticky-cta {
    display: none; 
    position: fixed;
    bottom: 25px; 
    left: 50%; 
    transform: translate(-50%, 150%); 
    width: max-content; 
    z-index: 9990;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-sticky-cta .btn-accent { 
    padding: 12px 28px; 
    font-size: 0.95rem; 
    border-radius: 50px; 
    border: none; 
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4); 
    white-space: nowrap; 
}

.mobile-sticky-cta .btn-accent::before {
    content: '💬 ';
    margin-right: 5px;
}

.mobile-sticky-cta .btn-accent:hover { transform: translateY(-2px); }

/* REVEAL ANIMATIONS */
.reveal-item { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.25, 1, 0.5, 1); }
.reveal-item.active { opacity: 1; transform: translateY(0); }
.reveal-group > * { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.25, 1, 0.5, 1); }
.reveal-group.active > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.reveal-group.active > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-group.active > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }

/* =========================================
   --- UNTERSEITEN (PROJEKTE) STYLING --- 
   ========================================= */

.hero-small {
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    padding-top: 180px;
    padding-bottom: 60px;
    border-bottom: 2px solid var(--main-dark);
    position: relative;
    overflow: hidden;
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.project-card {
    border: 2px solid var(--main-dark);
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-white-pure);
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 12px 12px 0 var(--main-dark);
}

/* Dynamisches Image Wrapper für Aspect Ratio anstatt statischer Höhe */
.project-img-wrap {
    position: relative;
    aspect-ratio: 4 / 3; /* Sorgt für perfekte Skalierung, kein Überlappen mehr */
    width: 100%;
    overflow: hidden;
    border-bottom: 2px solid var(--main-dark);
}

.project-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover-Effekt: Bild 1 verschwindet, Bild 2 kommt rein */
.img-primary {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.img-secondary {
    opacity: 0;
    transform: scale(1.1);
    z-index: 1;
}

.project-card:hover .img-primary {
    opacity: 0;
    transform: scale(1.05);
}

.project-card:hover .img-secondary {
    opacity: 1;
    transform: scale(1);
}

.project-content {
    padding: 35px;
    flex-grow: 1;
}

.project-content h3 {
    font-size: 2rem;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.project-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid var(--border-light);
    border-radius: 50px;
    color: var(--text-muted);
}

.project-link-text {
    display: inline-block;
    margin-top: 15px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--accent-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

.project-card:hover .project-link-text {
    color: var(--main-dark);
}

/* --- MEDIA QUERIES (MOBILE FIXES) --- */

@media (max-width: 900px) {
    .container { padding: 0 25px; }

    /* Header & Nav */
    header { padding: 10px 0; }
    .header-logo { max-height: 45px; } /* Logo auf Mobile jetzt auch größer */
    .menu-toggle { display: block; } 
    .header-cta { display: none; } 
    
    .main-nav {
        position: fixed; top: 0; right: -100%; width: 80%; height: 100vh;
        background-color: rgba(255, 255, 255, 0.98); backdrop-filter: blur(15px);
        flex-direction: column; justify-content: center; gap: 30px;
        transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        border-left: 2px solid var(--main-dark); box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1000; padding: 50px;
    }
    .main-nav.active { right: 0; }
    .nav-link { font-size: 1.1rem; }
    .nav-link::after { display: none; } 
    
    .mobile-cta { display: inline-block !important; margin-top: 20px; font-size: 1rem; width: 100%; text-align: center; }

    /* Hamburger Animation */
    #menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    #menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    #menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* Hero */
    .hero { min-height: auto; padding-top: 100px; padding-bottom: 60px; }
    .hero-text-massive h1 { margin-bottom: 25px; -webkit-text-stroke: 1px var(--main-dark);}
    .hero-bottom-grid { grid-template-columns: 1fr; gap: 25px; text-align: center; }
    .hero-bottom-grid p { max-width: 100%; margin: 0 auto; }
    .hero-buttons { justify-content: center; flex-direction: column; width: 100%; gap: 15px;}
    .hero-buttons .btn-accent, .hero-buttons .btn-outline-dark { width: 100%; }
    
    /* Problem Section */
    .split-section-modern { grid-template-columns: 1fr; gap: 40px; text-align: center;}
    .split-text .massive-h2 { max-width: 100%; margin: 0 auto; }
    .split-text p { max-width: 100%; margin: 20px auto 0; }
    .pain-card:hover { transform: none; } 

    /* Marquee */
    .huge-marquee-track span { margin-right: 25px; }

    /* Leistungen */
    .Leistungen-header { text-align: center; }
    .Leistungen-grid { margin-top: 30px; }
    .service-card-brutal { grid-template-columns: 1fr; gap: 15px; text-align: center; border-left: none; padding-left: 0; }
    .service-number { color: var(--accent-color); opacity: 0.2; }
    .service-content h3 { font-size: 1.8rem; }
    .service-content p { max-width: 100%; margin: 0 auto; }
    .service-card-brutal:hover { padding-left: 0; }

    /* Bento Grid */
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 15px;}
    .bento-item { padding: 25px; grid-column: span 1 !important; grid-row: span 1 !important; min-height: 200px;}
    .bento-item h3 { font-size: 1.6rem; }
    .bento-item p { font-size: 1rem; }
    .bento-icon { font-size: 2.5rem; }

    /* Kontakt */
    .contact-brutal-flex { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .Contact-badge { margin-bottom: 20px; }
    .Contact- massive-header { max-width: 100%; }
    .Contact-links-huge a { font-size: 1.4rem; }
    .Contact-form-block { padding: 30px 20px; box-shadow: 6px 6px 0 var(--main-dark); }
    .input-group input, .input-group select { font-size: 1rem; }

    /* Footer */
    .Footer-block { padding-top: 60px; padding-bottom: 100px; text-align: center; }
    .Footer-container { padding: 0 20px; }
    .Footer-top-block { flex-direction: column; gap: 30px; }
    
    /* Mobile Anpassung für das vergrößerte Footer-Logo */
    .footer-logo { max-height: 50px; padding: 8px 16px; margin: 0 auto; } 

    .Footer-links-container { gap: 15px; flex-direction: row; flex-wrap: wrap; justify-content: center;}
    .Footer-links-container a { font-size: 1rem; }
    .Footer-bottom-block { flex-direction: column; gap: 15px; }
    .Footer-legal-links { flex-direction: row; justify-content: center; gap: 10px; flex-wrap: wrap;}
    .Footer-legal-links a { font-size: 0.9rem; }

    /* Cursor (Ausblenden für Mobile) */
    * { cursor: auto !important; }
    .cursor-dot, .cursor-outline { display: none !important; }
    
    /* Mobile Sticky CTA */
    .mobile-sticky-cta { display: block; }
    
    /* Projekte Mobile FIXES */
    .hero-small { padding-top: 130px; }
    .project-grid { grid-template-columns: 1fr; gap: 30px; }
    
    /* Bilder auf dem Handy nicht zu riesig machen */
    .project-img-wrap {
        aspect-ratio: 16 / 9; 
    }
    
    .project-card:hover {
        transform: none; /* Kein extremes Gewackel auf Mobile Touch */
        box-shadow: 2px 2px 0 var(--main-dark);
    }
    /* --- NEU: BLOG DETAILANSICHT (MOBILE OPTIMIERUNG) --- */
    .blog-content {
        font-size: 1rem !important; 
    }
    
    /* Überschreibt die festen Styles des Beitragsbilds für Handys (kleinerer Schatten) */
    .padding-large img[style*="box-shadow"] {
        border-radius: 10px !important;
        box-shadow: 4px 4px 0 var(--main-dark) !important;
        margin-bottom: 30px !important;
    }

} /* <--- HIER ENDET DER MOBILE-BLOCK (@media) OFFIZIELL! WICHTIG! */


/* =========================================
   --- BLOG CONTENT STYLING (GLOBAL FÜR ALLE BILDSCHIRME) --- 
   ========================================= */
.blog-content h2, .blog-content h3, .blog-content h4 { 
    color: var(--main-dark); 
    font-family: 'Space Grotesk', sans-serif; 
    margin-top: 40px; 
    margin-bottom: 15px; 
    text-transform: uppercase;
}
.blog-content p { 
    margin-bottom: 20px; 
}
.blog-content ul, .blog-content ol { 
    margin-bottom: 20px; 
    padding-left: 20px; 
}
.blog-content li { 
    margin-bottom: 10px; 
    line-height: 1.6;
}
.blog-content a { 
    color: var(--accent-color); 
    text-decoration: underline; 
    font-weight: 500;
}
.blog-content a:hover {
    color: var(--main-dark);
}
.blog-content img { 
    max-width: 100%; 
    height: auto; 
    border-radius: 10px; 
    margin: 20px 0;
}
