/* --- GLOBALE VARIABLEN & RESET --- */
:root {
    --primary-blue: #0d1f26;
    --accent-gold: #d9c6a3;
    --text-grey: #6e6e73;
    --border-grey: #e5e5e7;
    --white: #ffffff;
    --font-family: 'Manrope', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word; 
    hyphens: manual;           
    max-width: 100%;           
}

body { 
    font-family: var(--font-family); 
    color: var(--primary-blue); 
    background-color: var(--white); 
    -webkit-font-smoothing: antialiased; 
    overflow-x: hidden; 
}

/* --- HEADER --- */
header {
    background: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(20px);
    padding: 1.2rem 5%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000; 
    border-bottom: 1px solid var(--border-grey);
}

.logo img {
    height: 7rem; 
    width: auto;
    display: block;
    transition: height 0.3s ease;
}

.desktop-nav ul { display: flex; gap: 3rem; list-style: none; }
.desktop-nav a { 
    font-size: 0.85rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    text-decoration: none; 
    color: var(--primary-blue); 
    letter-spacing: 0.5px; 
}

.cta-button { 
    background: var(--primary-blue); 
    color: white; 
    padding: 0.8rem 1.8rem; 
    border-radius: 4px; 
    text-decoration: none; 
    font-weight: 800; 
    font-size: 0.8rem; 
    text-transform: uppercase; 
    transition: 0.3s;
}
.cta-button:hover { background: var(--accent-gold); color: var(--primary-blue); }

/* --- HERO --- */
.hero-container {
    height: 75vh; 
    width: 100%; 
    position: relative; 
    overflow: hidden; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    text-align: center;
}

.hero-image {
    position: absolute; 
    top: 0; left: 0; width: 100%; height: 120%; 
    /* PFAD: Public/ */
    background-image: url('Public/header.png'); 
    background-size: cover;
    background-position: center 60%; 
    z-index: 1; 
    will-change: transform;
}

.hero-overlay { 
    position: absolute; 
    top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(255, 255, 255, 0.2); 
    z-index: 2; 
}

.hero-content { 
    max-width: 1100px; 
    padding: 0 40px; 
    z-index: 3; 
    display: flex; 
    flex-direction: column; 
    align-items: center;
    width: 100%; 
}

.eyebrow {
    background-color: var(--primary-blue); 
    color: var(--accent-gold);
    padding: 0.7rem 1.6rem; 
    border-radius: 6px; 
    font-weight: 700;
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-size: 0.75rem; 
    margin-bottom: 2.5rem; 
}

.hero-content h1 {
    font-size: clamp(2rem, 8vw, 5.5rem); 
    font-weight: 800; 
    letter-spacing: -0.03em; 
    line-height: 1.1; 
    margin-bottom: 2rem;
    padding: 0 10px; 
    text-wrap: balance; 
}

.hero-content p { 
    font-size: clamp(1rem, 2.5vw, 1.4rem); 
    max-width: 750px; 
    margin-bottom: 4rem; 
    font-weight: 500; 
    line-height: 1.5;
    padding: 0 20px;
}

.cta-button-outline { 
    border: 2px solid var(--primary-blue); 
    color: var(--primary-blue); 
    padding: 1.2rem 3rem; 
    text-decoration: none; 
    font-weight: 800; 
    border-radius: 6px; 
    text-transform: uppercase;
    transition: 0.3s;
    
    /* NEU: 50% Weiß + Milchglas-Effekt */
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px); /* Für Safari/iOS */
}

/* Optional: Hover-Effekt, damit es interaktiv wirkt (z.B. voll deckend beim Drüberfahren) */
.cta-button-outline:hover { 
    background-color: var(--primary-blue); 
    color: var(--white); 
    border-color: var(--primary-blue);
}

/* --- BRANCHEN (INDUSTRIES) --- */
.industries-section {
    padding: 140px 8%;
    background: #ffffff; 
    color: var(--primary-blue);
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-desc {
    max-width: 600px;
    margin: 20px auto 80px;
    font-size: 1.1rem;
    color: var(--text-grey);
    line-height: 1.6;
}

.ind-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.ind-card {
    position: relative;
    height: 350px; 
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    
    opacity: 0;
    transform: translateY(40px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

/* Stagger Animation */
.ind-card:nth-child(1) { transition-delay: 0ms; }
.ind-card:nth-child(2) { transition-delay: 100ms; }
.ind-card:nth-child(3) { transition-delay: 200ms; }
.ind-card:nth-child(4) { transition-delay: 0ms; }
.ind-card:nth-child(5) { transition-delay: 100ms; }
.ind-card:nth-child(6) { transition-delay: 200ms; }

.ind-card.reveal {
    opacity: 1;
    transform: translateY(0);
}

.ind-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(0deg, rgba(13, 31, 38, 0.95) 0%, rgba(13, 31, 38, 0.3) 60%, rgba(13, 31, 38, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    text-align: left;
    transition: background 0.4s;
}

.ind-card h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 10px;
    transform: translateY(0);
    transition: transform 0.4s;
    font-weight: 700;
}

.ind-card p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.8;
    transform: translateY(0);
    transition: all 0.4s;
}

/* HOVER EFFECTS */
.ind-card:hover {
    transform: translateY(-5px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.ind-card:hover .ind-overlay {
    background: linear-gradient(0deg, rgba(13, 31, 38, 0.95) 0%, rgba(217, 198, 163, 0.4) 100%); 
}

.ind-card:hover h3 {
    transform: translateY(-5px);
    color: var(--accent-gold);
}

.ind-card:hover p {
    opacity: 1;
    color: white;
    transform: translateY(-5px);
}

/* --- PARTNER SECTION --- */
.partner-section {
    padding: 60px 5%;
    background-color: #f9fafb; 
    border-top: 1px solid var(--border-grey);
    border-bottom: 1px solid var(--border-grey);
    text-align: center;
}

.partner-container {
    max-width: 1200px;
    margin: 0 auto;
}

.partner-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #9ca3af; 
    margin-bottom: 30px;
}

.logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px 60px; 
}

.partner-logo {
    height: 35px; 
    width: auto;
    filter: grayscale(100%); 
    opacity: 0.5; 
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%); 
    opacity: 1;
    transform: scale(1.05);
}

/* --- STORY / SCHRAUBEN-ANIMATION --- */
.story-section { height: 450vh; position: relative; }
.story-sticky-wrapper { 
    position: sticky; top: 0; height: 100vh; 
    display: flex; flex-direction: column; 
    justify-content: center; align-items: center; 
    overflow: hidden; background: #fff; 
}

.screw-wrapper {
    position: relative; width: 85%; max-width: 1100px; 
    height: 160px; margin: 0 auto 100px; display: flex; align-items: center;
}

.screw-shadow {
    position: absolute; bottom: -20px; left: 5%; width: 90%; height: 40px;
    background: rgba(13, 31, 38, 0.12); filter: blur(35px); border-radius: 50%; z-index: 0;
}

.screw-horizontal-container { width: 100%; display: flex; align-items: center; position: relative; z-index: 1; }

.screw-head-block { 
    width: 0; height: 160px; 
    background: linear-gradient(180deg, #9ca3af, #f3f4f6, #9ca3af); 
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1); 
    border-radius: 4px; z-index: 2; flex-shrink: 0;
}

.screw-shaft-body { 
    flex: 1; height: 100px; 
    background: linear-gradient(180deg, #9ca3af, #f3f4f6, #9ca3af); 
    border-radius: 0 4px 4px 0; position: relative; z-index: 1;
}

.screw-thread-pattern { 
    position: absolute; top: 0; left: 15%; right: 0; bottom: 0; 
    background: repeating-linear-gradient(90deg, transparent, transparent 18px, rgba(0,0,0,0.1) 18px, rgba(0,0,0,0.1) 21px); 
    opacity: 0; transition: 0.6s; 
}

.stage-head .screw-head-block { width: 150px; margin-right: -2px; }
.stage-threads .screw-thread-pattern { opacity: 1; }
.stage-finish .screw-head-block, .stage-finish .screw-shaft-body { 
    background: linear-gradient(180deg, #b09a72, #d9c6a3, #b09a72); 
}

.info-text-viewport { position: relative; width: 850px; height: 200px; max-width: 90%; }
.info-panel { 
    position: absolute; top: 0; left: 0; width: 100%; opacity: 0; 
    transform: translateX(-80px); transition: 0.9s cubic-bezier(0.16, 1, 0.3, 1); text-align: center; 
}
.info-panel.active { opacity: 1; transform: translateX(0); }
.info-panel.passed { opacity: 0; transform: translateX(80px); }

.tech-tag { 
    display: inline-block; padding: 0.5rem 1.4rem; 
    background-color: var(--accent-gold); color: var(--primary-blue); 
    font-size: 0.75rem; font-weight: 800; border-radius: 8px; 
    margin-bottom: 1.5rem; text-transform: uppercase; 
}

/* --- PRODUCT TEASER SECTION (INTERACTIVE) --- */
.product-teaser-section {
    padding: 120px 8%;
    background-color: #f7f7f8; 
    color: var(--primary-blue);
    overflow: hidden; 
}

.teaser-container {
    max-width: 1200px;
    margin: 0 auto;
}

.teaser-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.teaser-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

.link-arrow {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.link-arrow:hover {
    border-color: var(--accent-gold);
    color: var(--text-grey);
}

.showcase-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr; 
    gap: 60px;
    height: 500px; 
}

/* Navigation Links */
.showcase-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    background: white;
    border-radius: 0 8px 8px 0;
}

.nav-item:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transform: translateX(10px);
}

.nav-item.active {
    border-left-color: var(--accent-gold);
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.nav-num {
    font-weight: 800;
    color: #cbd5e1;
    margin-right: 20px;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.nav-item.active .nav-num {
    color: var(--accent-gold);
}

.nav-item h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Preview Rechts */
.showcase-preview {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.preview-card {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.preview-card.active {
    opacity: 1;
    visibility: visible;
}

.preview-img {
    height: 60%;
    width: 100%;
    background-color: #ddd; 
    background-size: cover;
    background-position: center;
}

.preview-content {
    padding: 40px;
    background: var(--primary-blue);
    color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.preview-content h4 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.preview-content p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 500px;
}

.btn-small {
    padding: 10px 25px;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    transition: 0.3s;
}

.btn-small:hover {
    background: var(--accent-gold);
    color: var(--primary-blue);
    border-color: var(--accent-gold);
}


/* --- SPEZIALISIERUNGEN --- */
.specialization-section {
    padding: 140px 8%; background: #0d1f26; color: white;
    text-align: center; overflow: hidden;
}

.spec-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
    max-width: 1200px; margin: 80px auto 0;
}

.spec-card {
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid rgba(217, 198, 163, 0.15);
    padding: 50px 30px; 
    border-radius: 12px; 
    
    opacity: 0; 
    visibility: hidden;
    pointer-events: none;
    
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 1s ease, 
                visibility 1s;
}

.spec-card:nth-child(3n+1) { transform: translateX(120%); }
.spec-card:nth-child(3n+2) { transform: translateY(100px); }
.spec-card:nth-child(3n)   { transform: translateX(-120%); }

.spec-card.reveal { 
    opacity: 1; 
    visibility: visible; 
    transform: translate(0, 0) !important; 
    pointer-events: auto;
}

.spec-icon-container {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    border: 1px solid rgba(217, 198, 163, 0.3); 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(170, 204, 211, 0.05); 
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.spec-img {
    width: 50px; 
    height: 50px;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
}

.spec-card:hover .spec-icon-container {
    transform: scale(1.1) translateY(-5px);
    border-color: var(--accent-gold);
    background: rgba(170, 204, 211, 0.12);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* NEU: Text unter den Spezialisierungen */
.spec-card p {
    margin-top: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}


/* --- HISTORY / TIMELINE --- */
.history-section { padding: 140px 5%; background: var(--primary-blue); color: white; text-align: center; }

.timeline-container { 
    position: relative; max-width: 1200px; margin: 160px auto 0; padding: 0 40px; 
    display: flex; justify-content: space-between; align-items: flex-start;
}

.timeline-line { 
    position: absolute; top: 37.5px; left: 40px; right: 40px; height: 2px; 
    background: rgba(217, 198, 163, 0.2); transform: translateY(-50%); z-index: 1;
}

.timeline-item { 
    position: relative; 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    z-index: 2; 
    cursor: pointer; 
    
    opacity: 0; 
    visibility: hidden;
    transform: translateY(50px); 
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-item.reveal { 
    opacity: 1; 
    visibility: visible; 
    transform: translateY(0); 
}

.year-circle {
    width: 75px; height: 75px; background: var(--primary-blue); border: 2.5px solid var(--accent-gold); 
    border-radius: 50%; color: var(--accent-gold); font-weight: 800; font-size: 1.1rem;
    display: flex; justify-content: center; align-items: center; transition: 0.4s ease;
}

.year-label { margin-top: 20px; font-weight: 700; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; color: white; }

.hover-card {
    position: absolute; bottom: 130%; left: 50%; transform: translateX(-50%) translateY(20px);
    width: 280px; background: white; color: var(--primary-blue); padding: 1.5rem; 
    border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); opacity: 0; visibility: hidden; 
    transition: 0.4s ease; text-align: left;
}

.timeline-item:hover .hover-card { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.timeline-item:hover .year-circle { background: var(--accent-gold); color: var(--primary-blue); transform: scale(1.1); }

/* --- CONTACT SECTION --- */
.contact-section {
    padding: 140px 8%;
    background: #0d1f26; 
    color: white;
    display: flex;
    justify-content: center;
}

.contact-wrapper {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.contact-subtitle {
    margin-bottom: 60px;
    opacity: 0.7;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Button Style für den E-Mail Link */
.submit-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: var(--accent-gold);
    color: var(--primary-blue);
    border: none;
    padding: 1.2rem 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s, background 0.3s;
}

.submit-button:hover {
    transform: translateY(-3px);
    background: #e5d4b5; 
}

.btn-glow {
    position: absolute;
    top: 0; 
    left: -100%;
    width: 100%; 
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.submit-button:hover .btn-glow {
    left: 100%;
}

/* --- FOOTER --- */
footer { padding: 100px 8%; background: #07151a; color: #94a3b8; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 60px; }
.footer-col h4 { color: white; margin-bottom: 20px; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }
.footer-col p { line-height: 1.8; font-size: 0.95rem; }
.copyright { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 40px; font-size: 0.8rem; text-align: center; }

/* --- SHARED MOBILE STYLES & OPTIMIERUNGEN --- */
@media (max-width: 900px) { 
    
    /* 1. Header reparieren: Untereinander statt nebeneinander */
    .teaser-header {
        flex-direction: column;
        align-items: flex-start; /* Linksbündig */
        gap: 15px; /* Abstand zwischen Titel und Link */
        margin-bottom: 40px;
    }

    .teaser-header h2 {
        font-size: 2rem; 
        line-height: 1.1;
        width: 100%;
    }

    /* Link "Alle Produkte" gut sichtbar machen */
    .link-arrow {
        font-size: 0.9rem;
        display: inline-block;
        margin-top: 5px;
    }

    /* 2. Grid Anpassungen */
    .spec-grid { grid-template-columns: repeat(2, 1fr); } 
    
    /* 3. Produkt Teaser Layout Mobile */
    .showcase-wrapper {
        grid-template-columns: 1fr;
        height: auto;
        gap: 30px;
    }

    /* Horizontales Scrollen für die Buttons verschönern */
    .showcase-nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 20px;
        width: 100%;
        -webkit-overflow-scrolling: touch; /* Flüssiges Scrollen auf iOS */
        scrollbar-width: none; /* Scrollbar verstecken (Firefox) */
    }

    /* Scrollbar verstecken (Chrome/Safari) */
    .showcase-nav::-webkit-scrollbar {
        display: none;
    }

    .nav-item {
        min-width: 240px; 
        border-left: none;
        border-bottom: 3px solid transparent;
        border-radius: 8px;
        margin-right: 15px; 
        background: #fff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.03); 
    }

    .nav-item.active {
        border-left: none;
        border-bottom-color: var(--accent-gold);
        background: #fff;
        transform: translateY(-2px);
    }

    .showcase-preview {
        height: 450px; 
        border-radius: 8px;
    }

    .preview-img {
        height: 50%; 
    }
    
    .preview-content {
        padding: 30px 25px; 
    }
}

@media (max-width: 768px) {
    .logo img { height: 4rem; }
    .desktop-nav { display: none; }
    
    /* ÄNDERUNG: Mehr Luft nach oben für Mobile (Eyebrow fix) */
    .hero-content {
        padding-top: 100px; /* Schiebt alles unter den Header */
    }
    
    /* ÄNDERUNG: Weisse Kontur für Unterüberschrift auf Mobile */
    .hero-content p {
        text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -0.5px 0.5px 0 #fff, 0.5px 0.5px 0 #fff;
    }

    /* ÄNDERUNG: Fix für verschwundenes Hero Bild auf Mobile */
    .hero-image {
        height: 100%;
        width: 100%;          
        top: 0;               
        left: 0;              
        background-size: cover; 
        background-attachment: scroll; 
        background-position: center center; 
        will-change: auto; 
    }
    
    .section-title {
        font-size: 1.8rem; 
    }
    
    .screw-wrapper { width: 75%; height: 120px; margin-bottom: 60px; }
    .screw-shadow { top: 30px; height: 30px; }
    
    .ind-grid { grid-template-columns: 1fr; }
    .ind-card { height: 250px; }

    .timeline-container { display: block; margin-top: 60px; padding: 0 20px; }
    .timeline-line { left: 37.5px; top: 0; bottom: 0; width: 2px; height: 100%; position: absolute; transform: none; }
    .timeline-item { width: 100%; display: block; padding-left: 90px; margin-bottom: 60px; text-align: left; }
    .year-circle { position: absolute; left: 0; top: 0; }
    .hover-card { position: relative; display: block; opacity: 1; visibility: visible; width: 100%; bottom: auto; left: auto; transform: none !important; box-shadow: none; margin-top: 15px; }
    
    .hero-content h1 { font-size: 2.2rem; }

    .cta-button-outline {
        /* WICHTIG: Kein !important mehr au background-color #fff */
        background-color: rgba(255, 255, 255, 0.5); 
        color: var(--primary-blue) !important;
        border-color: var(--primary-blue);
        box-shadow: 0 10px 20px rgba(13, 31, 38, 0.15);
        display: inline-block; 
        
        /* Sicherstellen, dass Blur auch mobil greift */
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }
    
    .partner-logo {
        height: 25px;
        margin: 10px;
    }
}

@media (max-width: 600px) {
    .spec-grid { grid-template-columns: 1fr; }
    .spec-card { transform: translateY(0) !important; margin-bottom: 20px; opacity: 1; visibility: visible; }
}