/* Zeitlos Logistik - New Age Premium Design (Light Mode / Fresh) */

:root {
    /* Color Palette - Fresh, Light, Airborne */
    --bg-base: #f8fafc;
    --bg-surface: #ffffff;
    --bg-surface-elevated: #f1f5f9;
    
    --accent-primary: #312783; /* Emerald */
    --accent-secondary: #1d1554; /* Deep Emerald */
    --accent-glow: rgba(49, 39, 131, 0.25);
    
    --text-primary: #0f172a; /* Slate 900 */
    --text-secondary: #475569; /* Slate 600 */
    --text-muted: #94a3b8; /* Slate 400 */
    
    /* Neumorphism / Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-border-hover: rgba(49, 39, 131, 0.4);
    
    --shadow-ambient: 0 10px 40px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 4px 20px var(--accent-glow);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-base);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-base);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.fallback-logo.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-primary);
}
.fallback-img {
    width: 100%;
    height: 100%;
    background: var(--bg-surface-elevated);
    min-height: 300px;
    border-radius: var(--radius-lg);
}


/* Utility Classes */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 8rem 0;
}

.text-gradient {
    background: linear-gradient(135deg, #312783 0%, #1d1554 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    padding-bottom: 0.2em;
    margin-bottom: -0.2em;
}

.text-gradient-subtle {
    background: linear-gradient(180deg, #0f172a 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2.5rem; }
.text-center { text-align: center; }
.relative { position: relative; }

/* Aurora Ambient Backgrounds */
.aurora-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.aurora {
    position: absolute;
    filter: blur(120px);
    opacity: 0.3; /* subtle light auroras */
    border-radius: 50%;
    animation: float 20s infinite ease-in-out alternate;
}

.aurora-1 {
    width: 600px;
    height: 600px;
    background: #eae8f5; /* very light emerald */
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.aurora-2 {
    width: 500px;
    height: 500px;
    background: #e0f2fe; /* very light sky blue */
    bottom: -100px;
    left: -200px;
    animation-delay: -5s;
}

.aurora-3 {
    width: 400px;
    height: 400px;
    background: #d8d4ee; /* softest emerald */
    top: 40%;
    left: 40%;
    opacity: 0.4;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 30px) scale(1.1); }
    100% { transform: translate(-30px, 50px) scale(0.9); }
}

/* Glass Panels */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-ambient);
    border-radius: var(--radius-lg);
}

.glass-border {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-ambient);
}

/* Animations (Scroll Reveals) */
.reveal {
    opacity: 0;
    will-change: transform, opacity, filter;
    transition: all var(--transition-slow);
}

.reveal.visible {
    opacity: 1;
    transform: translate(0) scale(1);
    filter: blur(0);
}

.fade-up {
    transform: translateY(40px);
    filter: blur(4px);
}

.fade-in {
    filter: blur(10px);
}

.fade-left {
    transform: translateX(40px);
}

.fade-right {
    transform: translateX(-40px);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Buttons */
.btn-primary-small {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: var(--text-primary) !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.btn-primary-small:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(49, 39, 131, 0.15); /* Emerald glass */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(49, 39, 131, 0.3);
    color: var(--accent-secondary);
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(49, 39, 131, 0.15);
    transition: var(--transition-normal);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
    transform: translateX(-100%);
    z-index: -1;
    transition: var(--transition-normal);
}

.btn-glow:hover {
    background: rgba(49, 39, 131, 0.25);
    box-shadow: 0 8px 30px rgba(49, 39, 131, 0.25);
    transform: translateY(-2px);
}

.btn-glow:hover::before {
    transform: translateX(100%);
    transition: transform 0.6s ease;
}

.btn-glow-small {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(49, 39, 131,0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(49, 39, 131, 0.25);
    color: var(--accent-secondary);
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(49, 39, 131, 0.1);
}

.btn-glow-small:hover {
    background: rgba(49, 39, 131, 0.2);
    box-shadow: 0 8px 25px rgba(49, 39, 131, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    border: 1px solid rgba(255,255,255,0.7);
    color: var(--text-primary);
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.6);
    border-color: rgba(255,255,255,0.9);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-normal);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.header.scrolled {
    padding: 16px 0;
    box-shadow: var(--shadow-ambient);
    background: rgba(255, 255, 255, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 44px;
    transition: var(--transition-fast);
}

.header.scrolled .logo img {
    height: 38px;
}

.nav-list {
    display: flex;
    gap: 32px;
    align-items: center;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px 8px 8px 24px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03), inset 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-list a {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 1.05rem;
    transition: var(--transition-fast);
}

.nav-list a:hover {
    color: var(--accent-secondary);
}

/* Hamburger */
.mobile-menu-icon {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.nav-active .hamburger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-active .hamburger span:nth-child(2) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 800px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease, transform 8s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

/* A fresh, airy gradient going from transparent black to pure slate-50 base color */
.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(248,250,252,1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.badge-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(49, 39, 131, 0.3);
    padding: 6px 16px 6px 12px;
    border-radius: 100px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(49, 39, 131, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(49, 39, 131, 0); }
    100% { box-shadow: 0 0 0 0 rgba(49, 39, 131, 0); }
}

.hero-badge {
    color: var(--accent-secondary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(255,255,255,0.8);
    padding-bottom: 10px;
}

.hero-desc {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.slider-controls {
    position: absolute;
    bottom: 60px;
    left: 40px;
    z-index: 2;
    display: flex;
    gap: 12px;
}

.control-dot {
    width: 40px;
    height: 4px;
    background: rgba(0,0,0,0.1);
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.control-dot.active {
    background: var(--accent-primary);
    width: 60px;
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    right: 40px;
    z-index: 2;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* Stats Banner */
.stats-banner {
    position: relative;
    top: -40px;
    z-index: 10;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    border-radius: var(--radius-lg);
}

.stat-box {
    text-align: center;
    padding: 0 20px;
}

.stat-num {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.1), transparent);
}

/* About Section */
.kicker {
    display: inline-block;
    color: var(--accent-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-title h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 30px;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 24px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-secondary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 20px;
    border-bottom: 1px solid transparent;
}

.link-arrow:hover {
    gap: 12px;
    border-bottom-color: var(--accent-secondary);
}

.link-arrow i {
    transition: var(--transition-fast);
}

.about-visuals {
    position: relative;
    padding-left: 40px;
}

.image-composition {
    position: relative;
}

.image-composition img {
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.img-floating {
    position: absolute;
    bottom: -30px;
    left: -40px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255,255,255,1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border-radius: var(--radius-lg);
}

.floating-animation {
    animation: float-slow 6s infinite ease-in-out alternate;
}

@keyframes float-slow {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}

.icon-large {
    font-size: 2.5rem;
}

.img-floating h4 {
    font-size: 1.2rem;
    margin-bottom: 2px;
    color: var(--text-primary);
}

.img-floating span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}


/* Services - Bento Grid */
.section-header {
    max-width: 600px;
    margin: 0 auto 60px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(300px, auto);
    gap: 24px;
}

.bento-item {
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-normal);
}

.bento-item:hover {
    transform: translateY(-5px);
    border-color: rgba(49, 39, 131, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.bento-content {
    position: relative;
    z-index: 2;
}

.icon-ring {
    width: 64px;
    height: 64px;
    background: rgba(49, 39, 131, 0.1);
    border: 1px solid rgba(49, 39, 131, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--accent-secondary);
    margin-bottom: 24px;
    transition: var(--transition-fast);
}

.bento-item:hover .icon-ring {
    background: var(--accent-primary);
    color: white;
    transform: scale(1.1);
}

.icon-ring.outline {
    background: transparent;
    border-color: var(--accent-primary);
    color: var(--accent-secondary);
}

.bento-item h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.bento-glow {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-normal);
}

.bento-item:hover .bento-glow {
    opacity: 0.5;
}

.bento-highlight {
    background: linear-gradient(135deg, rgba(49, 39, 131,0.05) 0%, rgba(49, 39, 131,0.1) 100%);
    border: 1px solid rgba(49, 39, 131, 0.2);
}

.bento-bg-accent {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+PGNpcmNsZSBjeD0iMTAiIGN5PSIxMCIgcj0iMSIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvc3ZnPg==');
    z-index: 1;
    opacity: 0.5;
}

.span-2 {
    grid-column: span 2;
}

.span-2-light {
    grid-column: span 2;
}

/* Statement Banner */
.statement-banner {
    padding: 120px 0;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
    background: rgba(255, 255, 255, 0.4);
    overflow: hidden;
}

.massive-text {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.2;
    letter-spacing: -0.05em;
    font-weight: 800;
}

.statement-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 300px;
    background: radial-gradient(ellipse, rgba(49, 39, 131, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Careers */
.careers-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.benefits-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent-secondary);
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.benefit-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.career-cards {
    position: relative;
}

.job-card {
    padding: 40px;
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
}

.job-header {
    margin-bottom: 24px;
}

.job-tag {
    display: inline-block;
    background: rgba(49, 39, 131, 0.15);
    color: var(--accent-secondary);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.job-header h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
}

.job-reqs li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.job-reqs li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-secondary);
}

.job-reqs li:last-child {
    border-bottom: none;
}

.ambient-shadow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    background: var(--accent-glow);
    filter: blur(80px);
    z-index: 1;
    opacity: 0.5;
}

/* Contact Form */
.contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
    padding: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.contact-info {
    padding: 60px;
    background: rgba(241, 245, 249, 0.4);
    border-right: 1px solid rgba(0,0,0,0.05);
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.contact-info h2 span {
    color: var(--accent-secondary);
}

.c-detail {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.c-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    color: var(--accent-secondary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
}

.contact-form-wrapper {
    padding: 60px;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.input-group {
    position: relative;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1.05rem;
    transition: var(--transition-fast);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(49, 39, 131, 0.1);
}

.input-group label {
    position: absolute;
    left: 24px;
    top: 18px;
    color: var(--text-muted);
    transition: var(--transition-fast);
    pointer-events: none;
    font-size: 1.05rem;
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 12px;
    font-size: 0.85rem;
    background: white;
    padding: 0 8px;
    color: var(--accent-secondary);
    border-radius: 4px;
    font-weight: 500;
}

.textarea-group {
    display: flex;
    flex-direction: column;
}

.standalone-label {
    display: block;
    margin-bottom: 12px;
    margin-top: 10px;
    color: var(--accent-primary);
    font-size: 0.95rem;
    font-weight: 600;
}

.input-group textarea {
    min-height: 180px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: -8px;
    margin-bottom: 8px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    accent-color: var(--accent-primary);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-group label a {
    color: var(--accent-primary);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: var(--transition-fast);
}

.checkbox-group label a:hover {
    text-decoration-color: var(--accent-primary);
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(49, 39, 131, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(49, 39, 131, 0.25);
    color: var(--accent-primary);
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition-normal);
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(49, 39, 131, 0.08);
    align-self: flex-start;
}

.btn-submit:hover {
    background: rgba(49, 39, 131, 0.25);
    border-color: rgba(49, 39, 131, 0.4);
    box-shadow: 0 8px 30px rgba(49, 39, 131, 0.15);
    transform: translateY(-2px);
    color: var(--accent-secondary);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(0,0,0,0.05);
    background: var(--bg-surface);
    padding: 80px 0 30px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    height: 36px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-weight: 500;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent-secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 30px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.credit-link {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.credit-link strong {
    color: var(--text-secondary);
    font-weight: 600;
}

.credit-link:hover {
    color: var(--accent-primary);
    transform: translateY(-1px);
}

.credit-link:hover strong {
    color: var(--accent-primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .span-2 { grid-column: span 1; }
    .span-2-light { grid-column: span 2; }
    
    .about-grid, .careers-layout, .contact-box {
        grid-template-columns: 1fr;
    }
    .contact-info {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
}

@media (max-width: 768px) {
    .nav-list {
        position: absolute;
        top: 80px; left: 24px; right: 24px;
        flex-direction: column;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        padding: 30px;
        border-radius: var(--radius-md);
        box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        clip-path: circle(0% at 100% 0);
        transition: all 0.5s ease-out;
        opacity: 0;
    }
    
    .nav-list.active {
        clip-path: circle(150% at 100% 0);
        opacity: 1;
    }
    
    .mobile-menu-icon { display: block; }
    
    .stats-grid { flex-direction: column; gap: 20px; padding: 30px 20px; }
    .stat-divider { width: 100%; height: 1px; background: rgba(0,0,0,0.05); }
    .stat-num { font-size: 2.8rem; }
    .stats-banner { top: 0; margin-top: 20px; margin-bottom: 3rem; }
    
    .bento-grid { grid-template-columns: 1fr; }
    .span-2-light { grid-column: span 1; }
    
    .hero { min-height: auto; padding-top: 120px; height: auto; padding-bottom: 120px; }
    .hero h1 { font-size: 2.4rem; }
    .hero-desc { font-size: 1rem; }
    .hero-buttons { flex-direction: column; padding: 0; width: 100%; align-items: center; gap: 16px; }
    .hero-buttons a { width: 80%; max-width: 320px; justify-content: center; padding: 14px 24px; font-size: 1.05rem; }
    
    .slider-controls { left: 50%; transform: translateX(-50%); bottom: 40px; }
    .scroll-indicator { display: none; }
    
    .section-padding { padding: 4rem 0; }
    .input-group input, .input-group textarea { padding: 14px 16px; font-size: 1rem; }
    .input-group:not(.textarea-group) label { left: 16px; font-size: 0.95rem; top: 14px; }
    
    .btn-submit { width: 100%; justify-content: center; padding: 14px 24px; font-size: 1rem; }
    
    .checkbox-group label { font-size: 0.85rem; }

    .legal-box, .bewerbung-box {
        padding: 30px 20px;
        margin-bottom: 60px;
    }

    .legal-box h1, .bewerbung-title h1 {
        font-size: 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .aurora { animation: none; }
    .reveal { transition-duration: 0.1s; }
}