/* ===================================================================
   GMBHSUPPORT - LIGHT PROFESSIONAL DESIGN
   Clean | Trustworthy | Business-Focused
   =================================================================== */

:root {
  /* Light Professional Color System */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #e9ecef;
  
  --text-primary: #1a1a1a;
  --text-secondary: #4a5568;
  --text-tertiary: #718096;
  
  /* Professional Accent Colors */
  --accent-primary: #2563eb;
  --accent-success: #059669;
  --accent-warning: #d97706;
  --accent-danger: #dc2626;
  
  /* Borders & Shadows */
  --border-light: #e2e8f0;
  --border-medium: #cbd5e1;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.12);
  
  --radius: 16px;
  --radius-lg: 24px;
  --max-width: 1280px;
  --header-height: 80px;
  
  --font-sans: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

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

/* Smooth focus ring for accessibility */
*:focus-visible {
  outline: 3px solid rgba(5, 150, 105, 0.5);
  outline-offset: 2px;
  border-radius: 4px;
}

html {
  scroll-behavior: smooth;
}

/* ============================================
   ANIMATION SYSTEM - PROFESSIONAL & SMOOTH
   ============================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(5, 150, 105, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(5, 150, 105, 0.6);
  }
}

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

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  min-height: 100vh;
  animation: fadeIn 0.6s ease-out;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  animation: fadeInUp 0.8s ease-out;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); margin-bottom: 1.25rem; }
h2 { font-size: clamp(1.875rem, 4vw, 2.75rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.875rem; }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); margin-bottom: 0.75rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.7;
}

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

a:hover {
  color: var(--accent-success);
}

/* Fancy link underline effect */
a:not(.btn):not(.card):not([href^="#"])::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-success), var(--accent-primary));
  transition: width 0.3s ease;
}

a:not(.btn):not(.card):not([href^="#"]):hover::after {
  width: 100%;
}

.container {
  width: min(var(--max-width), calc(100% - 3rem));
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.section-alt {
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3.5rem;
  animation: fadeInUp 0.8s ease-out;
}

.section-title {
  position: relative;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-tertiary);
  margin-top: 0.75rem;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; }
.grid-2-section { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; }

/* Professional Card System */
.card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  animation: fadeInUp 0.6s ease-out backwards;
}

/* Staggered animations for grid items */
.grid-3 .card:nth-child(1) { animation-delay: 0.1s; }
.grid-3 .card:nth-child(2) { animation-delay: 0.2s; }
.grid-3 .card:nth-child(3) { animation-delay: 0.3s; }
.grid-3 .card:nth-child(4) { animation-delay: 0.4s; }
.grid-3 .card:nth-child(5) { animation-delay: 0.5s; }
.grid-3 .card:nth-child(6) { animation-delay: 0.6s; }

.grid-2 .card:nth-child(1) { animation-delay: 0.1s; }
.grid-2 .card:nth-child(2) { animation-delay: 0.2s; }

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-success);
  animation: none;
}

.card-success {
  border-left: 4px solid var(--accent-success);
  background: linear-gradient(to right, rgba(5, 150, 105, 0.03), transparent);
}

.card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  font-size: 1.75rem;
  color: white;
  background: linear-gradient(135deg, var(--accent-primary), #1e40af);
  box-shadow: var(--shadow-md);
  animation: bounceIn 0.8s ease-out, float 3s ease-in-out infinite;
  animation-delay: 0s, 0.8s;
}

/* Professional Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  animation: scaleIn 0.5s ease-out backwards;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-success), #047857);
  color: white;
  border: 1px solid var(--accent-success);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #047857, #065f46);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(5, 150, 105, 0.3);
  text-decoration: none;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
  border: 2px solid rgba(5, 150, 105, 0.2);
}

.btn-secondary:hover {
  border-color: var(--accent-success);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-large {
  padding: 1.125rem 2.25rem;
  font-size: 1.0625rem;
}

.btn-large:hover {
  animation: pulse 0.5s ease;
}

/* Badge System */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  background: rgba(5, 150, 105, 0.1);
  color: var(--accent-success);
  border: 1px solid rgba(5, 150, 105, 0.2);
  animation: fadeInUp 0.6s ease-out;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-success);
  box-shadow: 0 0 8px rgba(5, 150, 105, 0.5);
  animation: pulse 2s ease infinite, glow 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Stats Box */
.stats-box {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin: 2.5rem 0;
  box-shadow: var(--shadow-md);
  animation: fadeInUp 0.8s ease-out;
}

.stat {
  text-align: center;
  animation: scaleIn 0.6s ease-out backwards;
}

.stat:nth-child(1) { animation-delay: 0.2s; }
.stat:nth-child(2) { animation-delay: 0.3s; }
.stat:nth-child(3) { animation-delay: 0.4s; }

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-success);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.stat:hover .stat-value {
  transform: scale(1.1);
  color: #047857;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Form System */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1.125rem;
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: white;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius);
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.5s ease-out backwards;
}

.form-group:nth-child(1) .form-input { animation-delay: 0.1s; }
.form-group:nth-child(2) .form-input { animation-delay: 0.15s; }
.form-group:nth-child(3) .form-input { animation-delay: 0.2s; }
.form-group:nth-child(4) .form-input { animation-delay: 0.25s; }
.form-group:nth-child(5) .form-textarea { animation-delay: 0.3s; }

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-tertiary);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent-success);
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
  transform: translateY(-2px);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
}

/* Alert System */
.alert {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  border-left: 4px solid;
  font-weight: 500;
  animation: slideInRight 0.5s ease-out;
}

.alert-success {
  background: rgba(5, 150, 105, 0.05);
  border-color: var(--accent-success);
  color: #065f46;
}

.alert-error {
  background: rgba(220, 38, 38, 0.05);
  border-color: var(--accent-danger);
  color: #991b1b;
}

.alert-warning {
  background: rgba(217, 119, 6, 0.05);
  border-color: var(--accent-warning);
  color: #92400e;
}

/* Utilities */
.text-center { text-align: center; }
.text-success { color: var(--accent-success); }
.text-warning { color: var(--accent-warning); }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Feature List */
.feature-list {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.feature-list .feature-item:nth-child(1) { animation: fadeInLeft 0.6s ease-out; animation-delay: 0.1s; }
.feature-list .feature-item:nth-child(2) { animation: fadeInLeft 0.6s ease-out; animation-delay: 0.2s; }
.feature-list .feature-item:nth-child(3) { animation: fadeInLeft 0.6s ease-out; animation-delay: 0.3s; }
.feature-list .feature-item:nth-child(4) { animation: fadeInLeft 0.6s ease-out; animation-delay: 0.4s; }
.feature-list .feature-item:nth-child(5) { animation: fadeInLeft 0.6s ease-out; animation-delay: 0.5s; }

.feature-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
  background: white;
  border: 2px solid var(--border-light);
  border-left: 4px solid var(--accent-success);
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.feature-item:hover {
  background: linear-gradient(135deg, rgba(5,150,105,0.02), rgba(255,255,255,1));
  border-left-color: var(--accent-success);
  border-left-width: 6px;
  box-shadow: var(--shadow-lg);
  transform: translateX(4px);
}

.feature-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-success), #047857);
  color: white;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(5, 150, 105, 0.05));
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
  animation: fadeIn 0.8s ease-out;
  position: relative;
  overflow: hidden;
}

.highlight-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(5, 150, 105, 0.05), transparent);
  animation: shimmer 3s infinite;
}

/* Responsive */
@media (max-width: 1024px) {
  .grid-2-section { gap: 3rem; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-height: 68px; }
  .container { width: calc(100% - 2rem); padding: 0 1rem; }
  .section { padding: clamp(3rem, 6vw, 5rem) 0; }
  .grid-2, .grid-2-section, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 2rem; }
  .stats-box { flex-direction: column; gap: 1.5rem; padding: 2rem; }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.9375rem; }
  .btn-large { padding: 1rem 2rem; font-size: 1rem; }
  .card { padding: 1.75rem; }
  .feature-item { padding: 1.5rem; }
}



@media (max-width: 768px) {
    .stats-box {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        padding: 1.5rem 1rem !important;
    }
    
    .stat {
        width: 100% !important;
        text-align: center !important;
        padding: 1rem !important;
        background: white;
        border-radius: 8px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
    
    .stat-value {
        font-size: 1.75rem !important;
        display: block !important;
    }
    
    .stat-label {
        font-size: 0.875rem !important;
        display: block !important;
        margin-top: 0.25rem !important;
    }
}


.stats-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap; /* Wichtig für Responsive */
}

.stat {
  text-align: center;
  min-width: 140px; /* WICHTIG: Breiter für längere Wörter */
  flex: 1;
  max-width: 180px;
}

.stat-value {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--accent-success);
  line-height: 1.2;
  margin-bottom: 0.5rem;
  word-wrap: break-word; /* Umbruch bei langen Wörtern */
}

.stat-label {
  display: block;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
  word-wrap: break-word; /* Umbruch bei langen Wörtern */
}


/* ============================================
   FINALE LÖSUNG - STATS + GRID
   ============================================ */

 {
    .stats-box {
        flex-direction: column !important;
        gap: 1rem !important;
        padding: 1.5rem 1rem !important;
    }
    
    .stat {
        flex: 1 1 100% !important;
        min-width: 100% !important;
        width: 100% !important;
        padding: 1rem !important;
        background: white !important;
        border-radius: 8px !important;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important;
    }
    
    .stat-value {
        font-size: 1.75rem !important;
    }
    
    .stat-label {
        font-size: 0.8125rem !important;
    }
    
    /* Grid auf Mobile 1 Spalte */
    .grid-2-section {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    /* Trust-Section Image */
    .trust-section {
        order: 1 !important; /* Bild zuerst auf Mobile */
    }
    
    .trust-section + div {
        order: 2 !important; /* Text danach */
    }
}

@media (max-width: 480px) {
    .stat-value {
        font-size: 1.5rem !important;
    }
}


/* ============================================
   DESKTOP STATS-BOX FIX - EINE ZEILE
   ============================================ */

/* Stats-Box - Breitere Container */
.stats-box {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 2.5rem !important; /* Mehr Abstand */
    padding: 2rem 2.5rem !important; /* Mehr Padding */
    background: white !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    flex-wrap: nowrap !important; /* KEIN Wrap auf Desktop */
    margin: 0 !important;
    max-width: 700px !important; /* Maximale Breite */
    width: 100% !important;
}

.stat {
    flex: 1 1 180px !important; /* Von 150px auf 180px */
    min-width: 180px !important; /* Breiter für "Bundesweit" */
    text-align: center !important;
    padding: 0.5rem !important;
}

.stat-value {
    display: block !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: var(--accent-success) !important;
    line-height: 1.2 !important;
    margin-bottom: 0.5rem !important;
    white-space: nowrap !important; /* KEIN Umbruch! */
}

.stat-label {
    display: block !important;
    font-size: 0.875rem !important;
    color: var(--text-secondary) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    line-height: 1.5 !important;
    white-space: nowrap !important; /* KEIN Umbruch! */
}

/* Responsive - Mobile bleibt wie bisher */
@media (max-width: 768px) {
    .stats-box {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        gap: 1rem !important;
        padding: 1.5rem 1rem !important;
        max-width: 100% !important;
    }
    
    .stat {
        flex: 1 1 100% !important;
        min-width: 100% !important;
        width: 100% !important;
        padding: 1rem !important;
        background: white !important;
        border-radius: 8px !important;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important;
    }
    
    .stat-value {
        font-size: 1.75rem !important;
        white-space: normal !important; /* Auf Mobile Umbruch OK */
    }
    
    .stat-label {
        font-size: 0.8125rem !important;
        white-space: normal !important; /* Auf Mobile Umbruch OK */
    }
}

@media (max-width: 480px) {
    .stat-value {
        font-size: 1.5rem !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    /* Tablet - Falls Stats-Box zu breit wird */
    .stats-box {
        max-width: 600px !important;
        gap: 2rem !important;
    }
    
    .stat {
        min-width: 160px !important;
    }
}


/* ============================================
   COOKIE BANNER + MOBILE MENU FIX
   ============================================ */

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 1.5rem 2rem;
    z-index: 9999;
    display: none;
    border-top: 3px solid var(--accent-success);
}

.cookie-banner.show {
    display: block;
}

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.125rem;
    color: var(--text-primary);
}

.cookie-text p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-size: 0.9375rem;
}

.cookie-btn-accept {
    background: var(--accent-success);
    color: white;
}

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

.cookie-btn-necessary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.cookie-btn-necessary:hover {
    background: #e5e7eb;
}

.cookie-settings-link {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    z-index: 9998;
    border: 1px solid var(--border-light);
    transition: all 0.2s;
}

.cookie-settings-link:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

/* Mobile-Menü nur auf Mobile sichtbar */
.mobile-nav-menu {
    display: none;
}

@media (max-width: 768px) {
    .mobile-nav-menu {
        display: block;
    }
    
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
    }
}
