/* ==================== KMS WEBSITE V2 - MODERN DESIGN ==================== */
/* Stil A: Kräftig Modern - Tiefblau + Electric Blue */

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

:root {
    /* Primary Colors - Stil A */
    --primary: #1e40af;
    --primary-light: #3b82f6;
    --primary-dark: #1e3a8a;
    --primary-darker: #172554;
    
    /* Accent Colors */
    --accent: #3b82f6;
    --accent-light: #60a5fa;
    --accent-glow: rgba(59, 130, 246, 0.2);
    
    /* Blues */
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-200: #bfdbfe;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-900: #1e3a8a;
    
    /* Grays - Cool tinted */
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    --white: #ffffff;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    --gradient-hero: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 50%, var(--primary-light) 100%);
    --gradient-card: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px -10px rgba(30, 64, 175, 0.15);
    --shadow-xl: 0 25px 50px -12px rgba(30, 64, 175, 0.2);
    --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==================== ICON STYLES ==================== */
.icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    flex-shrink: 0;
}

.icon-sm { width: 18px; height: 18px; }
.icon-lg { width: 32px; height: 32px; }
.icon-xl { width: 48px; height: 48px; }

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
}

.service-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: calc(var(--radius-lg) + 3px);
    background: var(--gradient-primary);
    opacity: 0.3;
    z-index: -1;
    filter: blur(8px);
}

.service-icon-wrapper .icon {
    width: 28px;
    height: 28px;
    color: var(--white);
}

/* ==================== COOKIE BANNER ==================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gray-900);
    color: var(--white);
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
    display: none;
    backdrop-filter: blur(10px);
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--gray-300);
}

.cookie-text a {
    color: var(--accent-light);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.cookie-btn-accept {
    background: var(--primary-light);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: var(--primary);
    transform: translateY(-1px);
}

.cookie-btn-settings {
    background: var(--gray-800);
    color: var(--white);
    border: 1px solid var(--gray-600);
}

.cookie-btn-settings:hover {
    background: var(--gray-700);
}

/* ==================== TOP BAR ==================== */
.top-bar {
    background: var(--primary-darker);
    padding: 0.6rem 0;
    font-size: 0.875rem;
}

.top-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact {
    display: flex;
    gap: 2rem;
}

.top-bar a {
    color: var(--blue-200);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar a:hover {
    color: var(--white);
}

.top-bar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
}

.top-bar-social a:hover {
    background: rgba(255,255,255,0.2);
}

/* ==================== NAVIGATION ==================== */
.navbar {
    background: var(--white);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--gray-100);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 85px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    padding: 0.75rem 1rem;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius);
    display: block;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    background: var(--blue-50);
    color: var(--primary);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 260px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0.5rem;
    border: 1px solid var(--gray-100);
    margin-top: 0.5rem;
}

.nav-menu > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    color: var(--gray-700);
    font-size: 0.9rem;
    border-radius: var(--radius);
}

.dropdown a:hover {
    background: var(--blue-50);
    color: var(--primary);
}

.nav-cta {
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
}

.nav-cta:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    margin: 6px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ==================== ANNOUNCEMENT BANNER ==================== */
.announcement-banner {
    background: linear-gradient(90deg, var(--primary-light) 0%, var(--accent) 50%, var(--primary-light) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
    padding: 0.875rem 2rem;
    text-align: center;
}

/* Weihnachtliches Banner Design - Blau-Weiß mit Schnee */
.announcement-banner.christmas-banner {
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 50%, var(--primary-light) 100%);
    padding: 1.1rem 2rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.christmas-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 5% 15%, white 2px, transparent 2px),
        radial-gradient(circle at 15% 80%, white 1.5px, transparent 1.5px),
        radial-gradient(circle at 25% 25%, white 1px, transparent 1px),
        radial-gradient(circle at 35% 60%, white 2px, transparent 2px),
        radial-gradient(circle at 45% 10%, white 1.5px, transparent 1.5px),
        radial-gradient(circle at 55% 75%, white 1px, transparent 1px),
        radial-gradient(circle at 65% 35%, white 2px, transparent 2px),
        radial-gradient(circle at 75% 90%, white 1.5px, transparent 1.5px),
        radial-gradient(circle at 85% 45%, white 1px, transparent 1px),
        radial-gradient(circle at 95% 70%, white 2px, transparent 2px);
    background-size: 200px 100px;
    animation: snowfall 4s linear infinite;
    pointer-events: none;
    opacity: 0.6;
}

.christmas-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 50%, white 1px, transparent 1px),
        radial-gradient(circle at 30% 20%, white 1.5px, transparent 1.5px),
        radial-gradient(circle at 50% 85%, white 1px, transparent 1px),
        radial-gradient(circle at 70% 40%, white 2px, transparent 2px),
        radial-gradient(circle at 90% 65%, white 1px, transparent 1px);
    background-size: 150px 80px;
    animation: snowfall 6s linear infinite;
    animation-delay: -2s;
    pointer-events: none;
    opacity: 0.4;
}

@keyframes snowfall {
    0% { 
        transform: translateY(-20px) translateX(0); 
    }
    100% { 
        transform: translateY(20px) translateX(10px); 
    }
}

.christmas-banner span {
    color: var(--white);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.christmas-banner .icon {
    color: white;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.8));
    animation: sparkle 2s ease-in-out infinite;
}

.christmas-banner .icon:last-child {
    animation-delay: -1s;
}

@keyframes sparkle {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.8;
        filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
    }
    50% { 
        transform: scale(1.15) rotate(15deg); 
        opacity: 1;
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 1));
    }
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.announcement-banner a {
    color: var(--white);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.announcement-banner .icon {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ==================== HERO ==================== */
.hero {
    background: var(--gradient-hero);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(59, 130, 246, 0.7) 100%);
}

.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-content h1 span {
    background: linear-gradient(90deg, var(--blue-200), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.25rem;
}

.hero-images {
    position: relative;
}

.hero-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.hero-image-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(255,255,255,0.1);
}

.hero-image-grid img:first-child {
    grid-column: span 2;
    height: 220px;
}

/* ==================== BUTTONS ==================== */
.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
}

.btn-secondary:hover {
    background: var(--gray-200);
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.1rem;
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 6rem 2rem;
}

.section-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--blue-100);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.bg-gray {
    background: var(--gray-50);
}

.bg-white {
    background: var(--white);
}

/* ==================== PAGE HEADER ==================== */
.page-header {
    background: var(--gradient-hero);
    padding: 6rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    position: relative;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: rgba(255,255,255,0.4);
}

/* ==================== SERVICE CARDS ==================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link .icon {
    transition: transform 0.2s;
}

.service-card:hover .service-link .icon {
    transform: translateX(4px);
}

/* ==================== PRODUCTS ==================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    height: 240px;
    background: linear-gradient(135deg, var(--gray-50), var(--blue-50));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-content {
    padding: 2rem;
}

.product-partner {
    height: 32px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.product-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--gray-600);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--gray-100);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--success);
    border-radius: var(--radius-full);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.product-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 1rem;
}

.product-actions a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.product-actions a:not(.btn) {
    background: var(--gray-100);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
}

.product-actions a:not(.btn):hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.product-actions .btn-secondary {
    background: var(--primary);
    color: white;
    border: 1px solid var(--primary);
}

.product-actions .btn-secondary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.product-subtitle {
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.product-description {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.product-specs span {
    font-size: 0.85rem;
    color: var(--gray-700);
}

.product-specs strong {
    color: var(--gray-900);
}

/* ==================== WINTERCHECK BANNER ==================== */
.wintercheck-banner {
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 50%, #1e40af 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.wintercheck-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='1'%3E%3Cpath d='M12 2v20M2 12h20M4.93 4.93l14.14 14.14M4.93 19.07l14.14-14.14'/%3E%3C/svg%3E");
    background-size: 100px 100px;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.wintercheck-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.wintercheck-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wintercheck-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    max-width: 500px;
}

.wintercheck-cta .btn {
    background: var(--white);
    color: var(--primary);
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
}

.wintercheck-cta .btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

/* ==================== TEAM ==================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.team-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

.team-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.team-card .role {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-card .contact-info {
    font-size: 0.85rem;
}

.team-card .contact-info a {
    color: var(--primary);
    display: block;
    margin-bottom: 0.25rem;
}

.team-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.team-contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.team-contact a:hover {
    color: var(--primary);
}

.team-contact .icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.team-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin: 0;
}

.team-section {
    margin-bottom: 3rem;
}

.team-section-title {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

/* ==================== EVENTS ==================== */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.event-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.event-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.event-image {
    height: 180px;
    background: linear-gradient(135deg, var(--blue-50), var(--gray-100));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.event-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.event-content {
    padding: 1.5rem;
}

.event-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.event-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.event-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================== TIMELINE ==================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.timeline {
    position: relative;
    padding-left: 2.5rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    border-radius: 4px;
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0.25rem;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: var(--radius-full);
    border: 4px solid var(--white);
    box-shadow: var(--shadow);
}

.timeline-year {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.timeline-item h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

/* ==================== CONTACT ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-box {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 3rem;
    color: var(--white);
}

.contact-info-box h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-item .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-info-item p,
.contact-info-item a {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

.contact-info-item a:hover {
    color: var(--white);
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
}

.contact-form h3 {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ==================== JOB LISTING ==================== */
.job-details {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.job-content h2 {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
    margin-top: 2.5rem;
}

.job-content h2:first-child {
    margin-top: 0;
}

.job-content ul {
    list-style: none;
}

.job-content ul li {
    padding: 0.875rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

.job-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: var(--radius-full);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.job-sidebar {
    position: sticky;
    top: 100px;
}

.job-apply-box {
    background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--blue-200);
}

.job-apply-box h3 {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.job-apply-box p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* ==================== LEGAL PAGES ==================== */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.2rem;
    color: var(--gray-800);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content ul li {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--primary);
}

/* ==================== PARTNERS ==================== */
.partners {
    padding: 4rem 2rem;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.partners-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.partners h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-400);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.partner-logo {
    height: 60px;
    opacity: 0.6;
    transition: all 0.3s;
    filter: grayscale(100%);
}

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

/* ==================== CTA ==================== */
.cta {
    padding: 6rem 2rem;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 60%);
}

.cta-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
}

.cta-contact {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.cta-contact-item {
    text-align: center;
}

.cta-contact-item span {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.5rem;
}

.cta-contact-item a {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--gray-900);
    padding: 4rem 2rem 2rem;
    color: var(--gray-300);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand img {
    height: 80px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--gray-400);
}

.footer-address {
    font-style: normal;
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-address a {
    color: var(--gray-400);
}

.footer-address a:hover {
    color: var(--white);
}

.footer h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.footer-legal a {
    color: var(--gray-400);
    margin-left: 2rem;
}

.footer-legal a:hover {
    color: var(--white);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-images {
        display: none;
    }

    .services-grid,
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .job-details {
        grid-template-columns: 1fr;
    }

    .job-sidebar {
        position: static;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .wintercheck-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .top-bar-inner {
        flex-direction: column;
        gap: 0.5rem;
    }

    .top-bar-contact {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: var(--shadow-xl);
        transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
        z-index: 1001;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu > li > a {
        padding: 1rem;
        border-bottom: 1px solid var(--gray-100);
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
        margin-top: 0;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .services-grid,
    .events-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-legal a {
        margin: 0 1rem;
    }

    .cta-contact {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .wintercheck-content h2 {
        font-size: 1.75rem;
    }

    .partners-logos {
        gap: 2rem;
    }

    .partner-logo {
        height: 45px;
    }

    .announcement-banner {
        font-size: 0.9rem;
    }
}

/* Email Icon Alignment Fix */
.top-bar a[href^="mailto:"],
.top-bar a[href^="tel:"] {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.25rem !important;
}

.top-bar a svg.icon {
    flex-shrink: 0 !important;
    vertical-align: middle !important;
}

/* Legal content email links */
.legal-content a[href^="mailto:"] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.legal-content a[href^="mailto:"] svg {
    flex-shrink: 0;
    width: 1em;
    height: 1em;
    vertical-align: middle;
}

/* Footer Logo Size - Smaller */
.footer-brand img {
    max-width: 180px !important;
    height: auto !important;
}

/* Footer Email Icon Alignment */
.footer-address a[href^="mailto:"] svg,
.footer a[href^="mailto:"] svg {
    width: 1em !important;
    height: 1em !important;
    vertical-align: -0.125em !important;
    margin-right: 0.25em !important;
    display: inline !important;
}

.footer-address a[href^="mailto:"],
.footer a[href^="mailto:"] {
    display: inline !important;
}

/* ==================== MOBILE FIXES ==================== */
@media (max-width: 768px) {
    /* Page header fixes */
    .page-header {
        padding: 2rem 1rem;
        text-align: center;
    }
    
    .page-header .breadcrumb {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Hero section mobile - FIX für verschobenen Text */
    .hero {
        min-height: auto;
        padding: 0;
    }
    
    .hero-video-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .hero-inner {
        flex-direction: column;
        text-align: center;
        padding: 3rem 1rem !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .hero-content {
        padding: 1rem 0;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .hero-content h1 {
        font-size: 1.75rem !important;
        text-align: center !important;
        width: 100% !important;
        padding: 0 1rem !important;
    }
    
    .hero-content p {
        text-align: center !important;
        padding: 0 1rem !important;
        font-size: 1rem !important;
        width: 100% !important;
    }
    
    .hero-buttons {
        justify-content: center !important;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-image {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-image img {
        max-width: 100%;
        height: auto;
    }
    
    /* Section fixes */
    .section {
        padding: 2rem 0;
    }
    
    .section-inner {
        padding: 0 1rem;
    }
    
    /* Product grid mobile */
    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    /* Contact grid mobile */
    .contact-grid {
        grid-template-columns: 1fr !important;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Service cards mobile */
    .service-card {
        padding: 1.5rem;
    }
    
    /* Images responsive */
    .main-product-image {
        height: 250px !important;
    }
    
    .thumb-gallery {
        justify-content: flex-start;
    }
    
    .thumb {
        width: 70px;
        height: 52px;
    }
    
    /* Buttons mobile */
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Tech grid mobile */
    .tech-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem;
    }
    
    /* News items mobile */
    .news-grid,
    .presseartikel-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Logo in header smaller on mobile */
    .navbar .logo img {
        max-height: 40px;
    }
    
    /* Top bar hidden on very small screens */
    .top-bar-social {
        display: none;
    }
    
    /* Cookie banner mobile */
    .cookie-banner .cookie-inner {
        flex-direction: column;
        text-align: center;
    }
    
    /* Announcement banner mobile */
    .announcement-banner span {
        padding: 0 0.5rem;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .tech-grid {
        grid-template-columns: 1fr !important;
    }
    
    .hero-stats .stat {
        padding: 1rem;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .main-product-image {
        height: 200px !important;
    }
}
