:root { --primary-red: #e30613; --text-dark: #1a1a1a; --bg-light: #fdfdfd; }
body { font-family: 'Inter', sans-serif; margin: 0; background: var(--bg-light); color: #333; line-height: 1.6; }

/* Header */
.main-header { background: #1a1a1a; color: white; padding: 15px 0; border-bottom: 3px solid var(--primary-red); position: sticky; top: 0; z-index: 1000; }
.full-width-header { display: flex; justify-content: space-between; align-items: center; padding: 0 5%; }
.logo { font-weight: 900; font-size: 1.5rem; }
.logo span { color: var(--primary-red); }
.main-nav ul { display: flex; gap: 20px; list-style: none; padding: 0; margin: 0; }
.main-nav a { color: white !important; text-decoration: none; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }

/* Hero */
.hero { 
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1200'); 
    background-size: cover; background-position: center; height: 60vh; display: flex; align-items: center; padding: 0 8%;
}
.hero h1 { font-size: 2.6rem; font-weight: 800; color: white; margin: 0 0 15px; max-width: 800px; }
.hero p { font-size: 1.1rem; color: #eee; max-width: 600px; margin-bottom: 30px; }
.badge { background: var(--primary-red); color: white; padding: 5px 12px; font-size: 0.7rem; font-weight: 700; border-radius: 3px; display: inline-block; margin-bottom: 20px; }

/* Widgets */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: -60px; position: relative; z-index: 10; margin-bottom: 50px; }
.feature-item { background: white; padding: 30px; border-radius: 8px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.feature-item .icon { font-size: 2rem; margin-bottom: 15px; display: block; }
.feature-item h3 { margin: 0 0 10px; font-size: 1.1rem; color: var(--text-dark); }
.feature-item p { margin: 0; font-size: 0.85rem; color: #666; }

/* About Section */
.container { max-width: 1100px; margin: 0 auto; padding: 40px 20px; }
.about-section { background: white; padding: 45px; border-radius: 10px; box-shadow: 0 4px 20px rgba(0,0,0,0.03); margin-bottom: 50px; }
.red-divider { width: 50px; height: 3px; background: var(--primary-red); margin: 20px 0; }
.lead-text { font-size: 1.15rem; color: #111; margin-bottom: 15px; font-weight: 500; }

/* Kontaktformular */
.contact-card { background: white; padding: 45px; border-radius: 10px; box-shadow: 0 15px 50px rgba(0,0,0,0.05); border-top: 5px solid var(--primary-red); }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 15px; border: 1px solid #eee; background: #f9f9f9; border-radius: 5px; font-family: inherit; }
.contact-form textarea { margin-bottom: 20px; }

/* Markenliste NEU (SICHER) */
.brand-showcase { background: #fdfdfd; padding: 80px 0; text-align: center; border-top: 1px solid #eee; }
.brand-intro { margin-bottom: 40px; color: #aaa; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.7rem; }
.brand-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px 30px; padding: 0 10%; max-width: 1000px; margin: 0 auto; }
.brand-tag { 
    font-size: 0.85rem; font-weight: 600; color: #777; 
    padding: 5px 10px; border: 1px solid #eee; border-radius: 4px; 
    background: white; transition: 0.3s;
}
.brand-tag:hover { color: var(--primary-red); border-color: var(--primary-red); }

/* Buttons */
.btn-primary { background: var(--primary-red); color: white !important; padding: 14px 28px; border-radius: 4px; text-decoration: none; font-weight: 700; border: none; cursor: pointer; display: inline-block; transition: 0.3s; }
.btn-primary:hover { background: #c20511; }
.btn-primary.full-width { width: 100%; }
.btn-secondary { border: 2px solid white; color: white !important; padding: 12px 28px; border-radius: 4px; text-decoration: none; font-weight: 700; display: inline-block; margin-left: 15px; }

/* EcoVadis */
.ecovadis-box { margin-top: 30px; padding: 20px; background: #f4f7f9; border-radius: 8px; display: flex; align-items: center; gap: 15px; width: fit-content; }
.ecovadis-info h4 { margin: 0; font-size: 0.95rem; color: #2d3e50; }
.ecovadis-info p { margin: 2px 0 0; font-size: 0.8rem; color: #666; }

/* Footer */
.main-footer { background: #111; color: #666; padding: 40px 5%; font-size: 0.8rem; }
.footer-container { display: flex; justify-content: space-between; max-width: 1100px; margin: 0 auto; }

@media (max-width: 768px) {
    .features { grid-template-columns: 1fr; margin-top: 20px; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .btn-secondary { margin-left: 0; margin-top: 10px; width: 100%; text-align: center; box-sizing: border-box; }
}