:root {
  /* === PRIMARY COLORS === */
  --primary-color: #B91C7C;
  --primary-light: #3b82f6;
  --primary-dark: #B91C7C;
  --primary-akzent: #3B82F6;
  
  /* === NEUTRAL COLORS === */
  --white: #ffffff;
  --black: #000000;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  /* === SEMANTIC COLORS === */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: --primary-color;
  
  /* === TYPOGRAPHY === */
  --font-primary: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-secondary: system-ui, sans-serif;
  
  /* === FONT SIZES - Mobile First === */
  --text-xs: 0.75rem;    /* 12px */
  --text-sm: 0.875rem;   /* 14px */
  --text-base: 1rem;     /* 16px */
  --text-lg: 1.125rem;   /* 18px */
  --text-xl: 1.25rem;    /* 20px */
  --text-2xl: 1.5rem;    /* 24px */
  --text-3xl: 1.875rem;  /* 30px */
  --text-4xl: 2.25rem;   /* 36px */
  --text-5xl: 3rem;      /* 48px */
  --text-6xl: 3.75rem;   /* 60px */
  
  /* === FONT WEIGHTS === */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  
  /* === LINE HEIGHTS === */
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;
  
  /* === SPACING SYSTEM - Mobile First === */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */
  --space-24: 6rem;     /* 96px */
  --space-32: 8rem;     /* 128px */
  
  /* === SECTION SPACING === */
  --section-padding-mobile: var(--space-10);
  --section-padding-tablet: var(--space-12);
  --section-padding-desktop: var(--space-12);
  
  /* === CONTAINER SETTINGS === */
  --container-padding: var(--space-4);
  --container-max-width: 1200px;
  
  /* === BORDER RADIUS === */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-full: 9999px;
  
  /* === SHADOWS === */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* === TRANSITIONS === */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
  
  /* === Z-INDEX SCALE === */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* ==========================================================================
   CSS RESET & BASE STYLES
   ========================================================================== */

/* === RESET === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* === ROOT & HTML === */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  line-height: var(--leading-normal);
  color: var(--gray-900);
  background-color: var(--white);
  overflow-x: hidden;
}

/* === TYPOGRAPHY RESET === */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: var(--font-semibold);
  line-height: var(--leading-tight);
  color: var(--gray-900);
}

p {
  margin: 0;
  line-height: var(--leading-relaxed);
  color: var(--gray-600);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

/* === LIST RESET === */
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* === FORM RESET === */
button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
}

/* === IMAGE & MEDIA === */
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   LAYOUT SYSTEM - MOBILE FIRST
   ========================================================================== */

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* === GRID SYSTEM === */
.grid {
  display: grid;
  gap: var(--space-6);
}

/* === 1 COLUMN LAYOUT === */
.grid-1 {
  grid-template-columns: 1fr;
}

/* === 2 COLUMN LAYOUT (Mobile: 1 col, Desktop: 2 cols) === */
.grid-2 {
  grid-template-columns: 1fr;
}

/* === 3 COLUMN LAYOUT (Mobile: 1 col, Tablet: 2 cols, Desktop: 3 cols) === */
.grid-3 {
  grid-template-columns: 1fr;
}

/* === FLEX UTILITIES === */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

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

.justify-between {
  justify-content: space-between;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

/* === SPACING UTILITIES === */
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }
.gap-12 { gap: var(--space-12); }

/* ==========================================================================
   TYPOGRAPHY SYSTEM
   ========================================================================== */

/* === HEADINGS === */
.heading-1 {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-6);
}

.heading-2 {
  font-size: var(--text-2xl);
  font-weight: var(--font-semibold);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-5);
}

.heading-3 {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  line-height: var(--leading-snug);
  margin-bottom: var(--space-4);
}

.heading-4 {
  font-size: var(--text-lg);
  font-weight: var(--font-medium);
  line-height: var(--leading-snug);
  margin-bottom: var(--space-4);
}

/* === BODY TEXT === */
.text-body {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}

.text-large {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
}

.text-small {
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
}

/* === TEXT UTILITIES === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.font-light { font-weight: var(--font-light); }
.font-normal { font-weight: var(--font-normal); }
.font-medium { font-weight: var(--font-medium); }
.font-semibold { font-weight: var(--font-semibold); }
.font-bold { font-weight: var(--font-bold); }

/* ==========================================================================
   SECTION LAYOUTS
   ========================================================================== */

/* === BASE SECTION === */
.section {
  padding: var(--section-padding-mobile) 0;
}

/* === SECTION WITH BACKGROUND === */
.section-bg {
  background-color: var(--gray-50);
}

.section-dark {
  background-color: var(--gray-900);
  color: var(--white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: var(--white);
}

.section-dark p {
  color: var(--gray-300);
}

/* === HERO SECTION === */
.hero {
  padding: var(--space-24) 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

/* ==========================================================================
   BUTTON SYSTEM
   ========================================================================== */

/* === BASE BUTTON === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  line-height: 1;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  min-height: 44px; /* Touch target */
}

.btn:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* === BUTTON VARIANTS === */
.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

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

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

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

.btn-outline {
  background-color: transparent;
  color: var(--gray-700);
  border: 2px solid var(--gray-300);
}

.btn-outline:hover {
  background-color: var(--gray-700);
  color: var(--white);
  border-color: var(--gray-700);
}

/* === BUTTON SIZES === */
.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  min-height: 36px;
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
  min-height: 52px;
}

/* ==========================================================================
   FORM ELEMENTS
   ========================================================================== */

/* === BASE INPUT === */
.form-input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--gray-900);
  background-color: var(--white);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input::placeholder {
  color: var(--gray-400);
}

/* === FORM LABEL === */
.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--gray-700);
  margin-bottom: var(--space-2);
}

/* === FORM GROUP === */
.form-group {
  margin-bottom: var(--space-6);
}

/* ==========================================================================
   CARD COMPONENT
   ========================================================================== */

.card {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.card-header {
  padding: var(--space-6);
  border-bottom: 1px solid var(--gray-200);
}

.card-body {
  padding: var(--space-6);
}

.card-footer {
  padding: var(--space-6);
  border-top: 1px solid var(--gray-200);
  background-color: var(--gray-50);
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

/* === VISIBILITY === */
.hidden { display: none; }
.visible { display: block; }

/* === POSITION === */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

/* === SPACING === */
.m-0 { margin: 0; }
.p-0 { padding: 0; }

.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }

.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }

/* === BORDERS === */
.border { border: 1px solid var(--gray-200); }
.border-t { border-top: 1px solid var(--gray-200); }
.border-b { border-bottom: 1px solid var(--gray-200); }

.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

/* === WIDTH & HEIGHT === */
.w-full { width: 100%; }
.h-full { height: 100%; }

/* ==========================================================================
   RESPONSIVE BREAKPOINTS - MOBILE FIRST
   ========================================================================== */

/* === TABLET (768px and up) === */
@media (min-width: 768px) {
  /* === CONTAINER === */
  .container {
    padding: 0 var(--space-6);
  }
  
  /* === GRID SYSTEM === */
  .grid {
    gap: var(--space-8);
  }
  
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* === TYPOGRAPHY === */
  .heading-1 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-8);
  }
  
  .heading-2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-6);
  }
  
  /* === SECTIONS === */
  .section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .hero {
    padding: var(--space-32) 0;
    min-height: 90vh;
  }
}

/* === DESKTOP (1024px and up) === */
@media (min-width: 1024px) {
  /* === CONTAINER === */
  .container {
    padding: 0 var(--space-8);
  }
  
  /* === GRID SYSTEM === */
  .grid {
    gap: var(--space-12);
  }
  
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* === TYPOGRAPHY === */
  .heading-1 {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-10);
  }
  
  .heading-2 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-8);
  }
  
  /* === SECTIONS === */
  .section {
    padding: var(--section-padding-desktop) 0;
  }
}

/* === LARGE DESKTOP (1280px and up) === */
@media (min-width: 1280px) {
  /* === TYPOGRAPHY === */
  .heading-1 {
    font-size: var(--text-6xl);
  }
  
  .heading-2 {
    font-size: var(--text-5xl);
  }
}

/* ==========================================================================
   ANIMATION & PERFORMANCE
   ========================================================================== */

/* === SMOOTH SCROLLING === */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* === FADE IN ANIMATION === */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* === FOCUS STYLES === */
:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* ==========================================================================
   HEADER & NAVIGATION COMPONENTS
   ========================================================================== */

/* === HEADER WRAPPER === */
.header {
  position: fixed;
  top: var(--space-6);
  left: var(--space-4);
  right: var(--space-4);
  z-index: var(--z-fixed);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  padding: var(--space-3) var(--space-5);
  transition: all var(--transition-normal);
}

.header.scrolled {
  top: var(--space-3);
  box-shadow: var(--shadow-xl);
  background: rgba(255, 255, 255, 0.78);
}

/* === HEADER CONTAINER === */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  max-width: 1200px;
  margin: 0 auto;
}

/* === LOGO === */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--gray-900);
  transition: color var(--transition-fast);
}

.logo:hover {
  color: var(--primary-color);
}

 /* === LOGO FIX === */
        .logo-img {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            /* Hinzugefügt für bessere SVG-Darstellung */
            flex-shrink: 0;
        }

        /* SVG spezifische Styles hinzufügen */
        .logo-img svg {
            width: 100%;
            height: 100%;
            max-width: 40px;
            max-height: 40px;
            display: block; /* Wichtig für SVG */
        }

        /* Mobile optimierte Logo-Größe */
        @media (max-width: 767px) {
            .logo-img {
                width: 32px;
                height: 32px;
            }
            
            .logo-img svg {
                max-width: 32px;
                max-height: 32px;
            }
        }

        /* Debugging - temporär hinzufügen */
        .debug .logo-img {
            border: 2px solid red;
            background: yellow;
        }
        
        .debug .logo-img svg {
            border: 1px solid blue;
        }

/* === NAVIGATION === */
.nav {
  display: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  color: var(--gray-700);
  padding: var(--space-2) 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* === DROPDOWN === */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.dropdown-icon {
  width: 12px;
  height: 8px;
  transition: transform var(--transition-fast);
}

.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + var(--space-4));
  left: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: var(--space-3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-normal);
  z-index: var(--z-dropdown);
}

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

.dropdown-item {
  display: block;
  padding: var(--space-3);
  color: var(--gray-700);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
}

.dropdown-item:hover {
  background: var(--gray-50);
  color: var(--primary-color);
}

/* === HEADER CTA AREA === */
.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-1);
  border-radius: var(--radius-full);
  background: var(--primary-color);
}

.contact-info {
  display: none;
}

/* === CONTACT PHONE === */
.contact-phone {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--primary-color);
  color: var(--white);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  transition: background var(--transition-fast);
}

.contact-phone:hover {
  background: var(--gray-900);
  color: var(--white);
}

.phone-icon {
  width: 32px;
  height: 32px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-900);
  font-size: 16px;
}

.phone-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.phone-label {
  font-size: var(--text-xs);
  opacity: 0.8;
}

.phone-number {
  font-weight: var(--font-semibold);
}

/* === MOBILE MENU TOGGLE === */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  width: 30px;
  height: 30px;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  padding: var(--space-2);
  
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: calc(var(--z-fixed) - 1);
  padding: var(--space-24) var(--space-6) var(--space-6);
  transform: translateX(-100%);
  transition: transform var(--transition-normal);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.mobile-nav-link {
  font-size: var(--text-lg);
  font-weight: var(--font-medium);
  color: var(--gray-900);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--gray-200);
  transition: color var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary-color);
}

/* === MOBILE DROPDOWN === */
.mobile-dropdown {
  border-bottom: 1px solid var(--gray-200);
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: var(--text-lg);
  font-weight: var(--font-medium);
  color: var(--gray-900);
  padding: var(--space-4) 0;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.mobile-dropdown.active .mobile-dropdown-menu {
  max-height: 300px;
}

.mobile-dropdown-item {
  display: block;
  padding: var(--space-3) var(--space-4);
  color: var(--gray-600);
  font-size: var(--text-base);
  transition: color var(--transition-fast);
}

.mobile-dropdown-item:hover {
  color: var(--primary-color);
}

/* ==========================================================================
   HEADER RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* === TABLET (768px and up) === */
@media (min-width: 768px) {
  .header {
    left: var(--space-6);
    right: var(--space-6);
    padding: var(--space-4) var(--space-6);
  }

  .contact-info {
    display: flex;
  }

  .mobile-toggle {
    display: none;
  }
}

/* === DESKTOP (1024px and up) === */
@media (min-width: 1024px) {
  .header {
    left: var(--space-8);
    right: var(--space-8);
  }

  .nav {
    display: block;
  }

  .mobile-toggle {
    display: none;
  }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
  }
  
  a {
    text-decoration: underline;
  }
  
  img {
    page-break-inside: avoid;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
}
/* === TABLET (768px and up) === */
@media (min-width: 768px) {
  .header {
    left: var(--space-6);
    right: var(--space-6);
    padding: var(--space-4) var(--space-6);
  }

  .nav {
    display: block; /* ← Das war der fehlende Teil! */
  }

  .contact-info {
    display: flex;
  }

  .mobile-toggle {
    display: none;
  }
}



/* ==========================================================================
   HERO SECTION - Vereinfacht & Header-kompatibel  
   ========================================================================== */

/* === HERO WRAPPER === */
.hero-section {
  width: 100%;
  min-height: 80vh;
  padding: 120px 0 var(--section-padding-mobile);
  background: rgba(7, 124, 234, 0.17); /* Dunkler blauer Bereich */
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}


.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

/* === HERO TEXT === */
.hero-text {
  text-align: center;
}

.hero-subtitle {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: var(--font-medium);
  line-height: 20px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.hero-title {
  color: var(--gray-900);
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  line-height: 1.2;
  margin-bottom: var(--space-6);
}

.hero-description {
  color: var(--gray-600);
  font-size: var(--text-xl);
  font-weight: var(--font-normal);
  line-height: 1.5;
  margin-bottom: var(--space-10);
  padding-left: var(--space-5);
  border-left: 4px solid var(--primary-color);
}

/* === HERO CONTACT BUTTON === */
.hero-contact-btn {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  background: var(--primary-color);
  color: var(--white);
  padding: var(--space-4) var(--space-8) var(--space-4) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  transition: all var(--transition-normal);
  text-decoration: none;
  width: fit-content;
  min-width: 280px;
}

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

.hero-phone-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-900);
  font-size: 20px;
  flex-shrink: 0;
}

.hero-contact-btn:hover .hero-phone-icon {
  background: var(--white);
  color: var(--primary-color);
}

.hero-phone-text {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hero-phone-label {
  font-size: 14px;
  font-weight: var(--font-medium);
  line-height: 18px;
  opacity: 0.9;
  color: var(--white);
}

.hero-phone-number {
  font-size: 18px;
  font-weight: var(--font-bold);
  line-height: 22px;
  color: var(--white);
}

/* === HERO IMAGE AREA === */
.hero-image {
  text-align: center;
}

.hero-main-img {
  max-width: 100%;
  height: auto;
  
}
.hero-grid-centered {
  grid-template-columns: 1fr !important;
  max-width: 800px;
  margin: 0 auto;
}

.hero-grid-centered .hero-text {
  text-align: center !important;
}

.hero-grid-centered .hero-contact-btn {
  margin: 0 auto !important;
}
/* ==========================================================================
   HERO RESPONSIVE
   ========================================================================== */

/* === MOBILE (bis 767px) === */
@media (max-width: 767px) {
  .hero-section {
    min-height: 70vh;
    padding: 140px 0 var(--section-padding-mobile);
  }
  
  .hero-title {
    font-size: var(--text-3xl);
    line-height: 1.3;
  }
  
  .hero-description {
    font-size: var(--text-lg);
    padding-left: var(--space-4);
    border-left-width: 3px;
  }
  
  .hero-contact-btn {
    min-width: 260px;
    padding: var(--space-3) var(--space-6) var(--space-3) var(--space-3);
    margin: 0 auto;
  }
  
  .hero-phone-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .hero-phone-label {
    font-size: 13px;
  }
  
  .hero-phone-number {
    font-size: 16px;
  }
}

/* === TABLET (768px and up) === */
@media (min-width: 768px) {
  .hero-section {
    padding: 140px 0 var(--section-padding-tablet);
  }
  
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
  
  .hero-text {
    text-align: left;
  }
  
  .hero-title {
    font-size: var(--text-5xl);
  }
}

/* === DESKTOP (1024px and up) === */
@media (min-width: 1024px) {
  .hero-section {
    padding: 160px 0 var(--section-padding-desktop);
  }
  
  .hero-title {
    font-size: 60px;
    line-height: 80px;
  }
  
  .hero-description {
    font-size: 24px;
    line-height: 36px;
  }
}
/* ==========================================================================
   ABOUT SECTION - Klassisch & Vereinfacht
   ========================================================================== */

/* === ABOUT WRAPPER === */
.about-section {
  padding: var(--section-padding-mobile) 0;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16);
  align-items: center;
}

/* === ABOUT TEXT CONTENT === */
.about-content h2 {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: var(--font-medium);
  line-height: 25px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.about-content h3 {
  color: var(--gray-900);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  line-height: 1.3;
  margin-bottom: var(--space-6);
}

.about-content .description {
  color: var(--gray-600);
  font-size: var(--text-lg);
  font-weight: var(--font-normal);
  line-height: 1.6;
  margin-bottom: var(--space-8);
}

/* === FEATURE BOXES === */
.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
  padding-top: var(--space-8);
  border-top: 2px solid var(--gray-100);
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--gray-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-normal);
  flex-shrink: 0;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
  stroke-width: 2;
}

.about-feature:hover .feature-icon {
  background: var(--primary-color);
}

.feature-text h4 {
  color: var(--gray-900);
  font-size: 20px;
  font-weight: var(--font-semibold);
  line-height: 30px;
  margin-bottom: var(--space-2);
}

.feature-text p {
  color: var(--gray-600);
  font-size: 16px;
  font-weight: var(--font-normal);
  line-height: 24px;
}

/* === ABOUT CTA === */
.about-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  align-items: flex-start;
}

.about-btn {
  color: var(--white);
  font-size: 18px;
  font-weight: var(--font-semibold);
  line-height: 24px;
  background: var(--primary-color);
  border-radius: 30px;
  padding: 18px 30px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  z-index: 1;
  transition: all var(--transition-normal);
}

.about-btn::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: auto;
  top: 0;
  height: 0;
  width: 100%;
  background-color: var(--gray-900);
  z-index: -1;
  transition: all 0.3s ease;
}

.about-btn:hover::after {
  height: 100%;
  top: auto;
  bottom: 0;
}

.about-btn:hover {
  color: var(--white);
}

/* === CONTACT INFO === */
.about-contact {
  display: flex;
  align-items: center;
  background: transparent;
  color: var(--gray-900);
  padding: 6px 30px 6px 6px;
  border: 2px solid var(--primary-color);
  border-radius: 40px;
  gap: 10px;
  transition: all var(--transition-fast);
}

.about-contact:hover {
  background: var(--primary-color);
  color: var(--white);
}

.about-contact .phone-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.about-contact:hover .phone-icon {
  background: var(--gray-900);
}

.about-contact .phone-text {
  display: flex;
  flex-direction: column;
}

.about-contact .phone-label {
  font-size: 14px;
  font-weight: var(--font-medium);
  line-height: 20px;
  opacity: 0.8;
}

.about-contact .phone-number {
  font-size: 20px;
  font-weight: var(--font-semibold);
  line-height: 26px;
}

.about-contact:hover .phone-label,
.about-contact:hover .phone-number {
  color: var(--white);
}

/* === ABOUT IMAGE === */
.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-main-image {
  width: 100%;
  max-width: 500px;
  height: auto;
 
}

/* ==========================================================================
   ABOUT RESPONSIVE
   ========================================================================== */

/* === TABLET (768px and up) === */
@media (min-width: 768px) {
  .about-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-20);
  }
  
  .about-content h3 {
    font-size: var(--text-4xl);
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .about-cta {
    flex-direction: row;
    align-items: center;
  }
}

/* === DESKTOP (1024px and up) === */
@media (min-width: 1024px) {
  .about-section {
    padding: var(--section-padding-desktop) 0;
  }
  
  .about-content h3 {
    font-size: 48px;
    line-height: 64px;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   HOW IT WORKS SECTION - 3 Simple Steps
   ========================================================================== */

/* === HOW IT WORKS WRAPPER === */
.how-it-works-section {
  background: var(--gray-50);
  padding: var(--section-padding-mobile) 0;
  position: relative;
  overflow: hidden;
}

.how-it-works-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
  position: relative;
}

/* === SECTION HEADER === */
.how-it-works-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.how-it-works-header h2 {
  color: var(--primary-color);
  font-size: var(--text-lg);
  font-weight: var(--font-medium);
  line-height: var(--leading-tight);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.how-it-works-header h3 {
  color: var(--gray-900);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-6);
  max-width: 630px;
  margin-left: auto;
  margin-right: auto;
}

.how-it-works-header p {
  color: var(--gray-600);
  font-size: var(--text-lg);
  font-weight: var(--font-normal);
  line-height: var(--leading-relaxed);
  max-width: 850px;
  margin: 0 auto;
}

/* === STEPS GRID === */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}

/* === SINGLE STEP === */
.step {
  text-align: center;
  position: relative;
}

.step-circle {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-full);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.step-circle::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: auto;
  top: 0;
  height: 0;
  width: 100%;
  background-color: var(--primary-color);
  z-index: -1;
  transition: all var(--transition-normal);
}

.step:hover .step-circle::after {
  height: 100%;
  top: auto;
  bottom: 0;
}

.step-icon {
  width: 48px;
  height: 48px;
  transition: all var(--transition-normal);
  color: var(--primary-color);
}

.step:hover .step-icon {
  color: var(--white);
}

.step h4 {
  color: var(--gray-900);
  font-size: var(--text-2xl);
  font-weight: var(--font-semibold);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-3);
}

.step p {
  color: var(--gray-600);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  line-height: var(--leading-normal);
  max-width: 300px;
  margin: 0 auto;
}

/* === STEP ARROWS === */
.step-arrow {
  display: none;
  position: absolute;
  top: 50%;
  right: -80px;
  width: 114px;
  height: 114px;
  z-index: 2;
  transform: translateY(-50%);
}

.step-arrow svg {
  width: 80%;
  height: 80%;
  color: black;
}

/* === STEP NUMBERS === */
.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  z-index: 3;
}

/* ==========================================================================
   HOW IT WORKS RESPONSIVE
   ========================================================================== */

/* === TABLET (768px and up) === */
@media (min-width: 768px) {
  .how-it-works-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .how-it-works-header h3 {
    font-size: var(--text-4xl);
  }
  
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    position: relative;
  }
  
  .step-arrow {
    display: block;
  }
  
  .step:last-child .step-arrow {
    display: none;
  }
}

/* === DESKTOP (1024px and up) === */
@media (min-width: 1024px) {
  .how-it-works-section {
    padding: var(--section-padding-desktop) 0;
  }
  
  .how-it-works-header h3 {
    font-size: var(--text-5xl);
    line-height: var(--leading-tight);
  }
  
  .steps-grid {
    gap: var(--space-12);
  }
  
  .step-arrow {
    right: -100px;
    width: 114px;
    height: 114px;
  }
}
/* ==========================================================================
   BLOG SECTION - Latest News / Our Most Recent Posts
   ========================================================================== */

/* === BLOG WRAPPER === */
.blog-section {
  padding: var(--section-padding-mobile) 0;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* === SECTION HEADER === */
.blog-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.blog-header h2 {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: var(--font-medium);
  line-height: 25px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.blog-header h3 {
  color: var(--gray-900);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  line-height: 1.3;
  max-width: 630px;
  margin: 0 auto;
}

/* === BLOG GRID === */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

/* === BLOG CARD === */
.blog-card {
  border-radius: 20px;
  border: 2px solid var(--gray-200);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white);
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
  transform: translateY(-4px);
}

.blog-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
          rgba(255, 255, 255, 0) 0%,
          rgba(255, 255, 255, 0.1) 50%,
          rgba(255, 255, 255, 0) 100%);
  transition: all 0.6s ease;
}

.blog-card:hover::after {
  left: 100%;
}

/* === BLOG IMAGE === */
.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px 20px 20px 0;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover .blog-img {
  transform: scale(1.05);
  border-radius: 20px 20px 0 0;
}

/* === BLOG DATE === */
.blog-date {
  color: var(--gray-600);
  text-align: center;
  font-size: 16px;
  font-weight: var(--font-medium);
  line-height: 24px;
  padding: 10px 20px;
  background: var(--white);
  position: absolute;
  bottom: 0;
  left: 30px;
  border-radius: 20px 20px 0 0;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-md);
}

.blog-card:hover .blog-date {
  color: var(--primary-color);
}

.blog-date::before,
.blog-date::after {
  content: "";
  position: absolute;
  background-color: transparent;
  height: 60px;
  width: 30px;
  box-shadow: 0 20px 0 0 var(--white);
  transition: all 0.4s ease;
}

.blog-date::before {
  bottom: 0px;
  left: -30px;
  height: 60px;
  width: 30px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.blog-date::after {
  bottom: 0px;
  right: -30px;
  height: 60px;
  width: 30px;
  border-bottom-left-radius: 20px;
}

/* === BLOG CONTENT === */
.blog-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-title {
  color: var(--gray-900);
  font-size: 24px;
  font-weight: var(--font-medium);
  line-height: 32px;
  margin-bottom: var(--space-3);
  transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
  color: var(--primary-color);
}


.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--primary-color);
  font-size: 16px;
  font-weight: var(--font-semibold);
  margin-top: var(--space-4);
  transition: all var(--transition-fast);
}

.blog-read-more:hover {
  gap: var(--space-3);
}

.blog-read-more svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.blog-read-more:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   BLOG RESPONSIVE
   ========================================================================== */

/* === TABLET (768px and up) === */
@media (min-width: 768px) {
  .blog-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .blog-header h3 {
    font-size: var(--text-4xl);
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-10);
  }
}

/* === DESKTOP (1024px and up) === */
@media (min-width: 1024px) {
  .blog-section {
    padding: var(--section-padding-desktop) 0;
  }
  
  .blog-header h3 {
    font-size: 48px;
    line-height: 64px;
  }
  
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-12);
  }
}
/* ==========================================================================
   FOOTER SECTION - Korrigiert ohne Subscribe
   ========================================================================== */

/* === FOOTER MAIN === */
.footer {
  background: var(--white);
  padding: var(--section-padding-mobile) var(--space-6) var(--space-10);
}

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

/* === FOOTER CONTENT GRID === */
.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

/* === WORKING HOURS === */
.working-hours-section h4 {
  color: var(--gray-900);
  font-size: 24px;
  font-weight: var(--font-semibold);
  line-height: 36px;
  margin-bottom: var(--space-5);
}

.working-hours-list {
  display: flex;
  flex-direction: column;
}

.working-hour {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 15px 0;
  border-bottom: 2px solid var(--gray-100);
}

.working-hour:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.working-hour .day {
  color: var(--gray-600);
  font-size: 18px;
  font-weight: var(--font-normal);
  line-height: 24px;
}

.working-hour .time {
  color: var(--gray-600);
  font-size: 18px;
  font-weight: var(--font-normal);
  line-height: 24px;
}

/* === FOOTER LINKS === */
.footer-links-section h4 {
  color: var(--gray-900);
  font-size: 24px;
  font-weight: var(--font-semibold);
  line-height: 36px;
  margin-bottom: var(--space-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links a {
  color: var(--gray-600);
  font-size: 18px;
  font-weight: var(--font-normal);
  line-height: 40px;
  transition: color var(--transition-fast);
  text-decoration: none;
}

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

/* === FOOTER BOTTOM === */
.footer-bottom {
  background: var(--gray-900);
  border-radius: 30px;
  padding: var(--space-5);
  margin-bottom: var(--space-10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.footer-logo-contact {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.footer-logo img {
  max-height: 40px;
}

.footer-contact {
  display: flex;
  align-items: center;
  background: var(--primary-color);
  color: var(--white);
  padding: 10px 50px 10px 10px;
  border-radius: 50px;
  gap: var(--space-3);
  text-decoration: none;
  transition: background var(--transition-fast);
}

.footer-contact:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.footer-contact-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gray-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.footer-contact-text {
  display: flex;
  flex-direction: column;
}

.footer-contact-text p {
  color: var(--white);
  font-size: 20px;
  font-weight: var(--font-medium);
  line-height: 30px;
  margin-bottom: var(--space-1);
}

.footer-contact-text a {
  color: var(--white);
  font-size: 30px;
  font-weight: var(--font-medium);
  line-height: 30px;
  text-decoration: none;
  transition: all var(--transition-fast);
}

/* === SOCIAL MEDIA === */
.footer-social {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.social-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--primary-color);
}

.social-icon img,
.social-icon svg {
  width: 32px;
  height: 32px;
  filter: brightness(0) saturate(100%) invert(100%);
}

/* === COPYRIGHT === */
.copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-bottom: var(--space-10);
  flex-wrap: wrap;
}

.copyright p,
.copyright a {
  color: var(--gray-600);
  font-size: 18px;
  font-weight: var(--font-normal);
  line-height: 24px;
  text-align: center;
  text-decoration: none;
}

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

.copyright-links {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

/* ==========================================================================
   FOOTER RESPONSIVE
   ========================================================================== */

/* === MOBILE (bis 767px) === */
@media (max-width: 767px) {
  .footer {
    padding: var(--section-padding-mobile) var(--space-4) var(--space-8);
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: var(--space-6);
  }
  
  .footer-logo-contact {
    flex-direction: column;
    gap: var(--space-6);
  }
  
  .footer-contact {
    padding: 8px 30px 8px 8px;
  }
  
  .footer-contact-icon {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
  
  .footer-contact-text p {
    font-size: 16px;
  }
  
  .footer-contact-text a {
    font-size: 20px;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .copyright {
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
  }
}

/* === TABLET (768px and up) === */
@media (min-width: 768px) {
  .footer {
    padding: var(--section-padding-tablet) var(--space-6) var(--space-10);
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-16);
  }
}

/* === DESKTOP (1024px and up) === */
@media (min-width: 1024px) {
  .footer {
    padding: var(--section-padding-desktop) var(--space-8) var(--space-10);
  }
  
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-20);
  }
  
  .footer-bottom {
    flex-direction: row;
  }
  
  .footer-logo-contact {
    flex-direction: row;
  }
  
  .copyright {
    flex-direction: row;
    text-align: left;
  }
}
/* ==========================================================================
   CONTENT SECTION - Ausgewogen & Professionell
   ========================================================================== */

/* === CONTENT WRAPPER === */
.content-section {
  padding: var(--section-padding-mobile) 0;
  background: var(--gray-50);
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* === SECTION HEADER === */
.content-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.content-header h2 {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: var(--font-medium);
  line-height: 25px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.content-header h3 {
  color: var(--gray-900);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  line-height: 1.3;
  margin-bottom: var(--space-6);
  max-width: 630px;
  margin-left: auto;
  margin-right: auto;
}

.content-header p {
  color: var(--gray-600);
  font-size: var(--text-lg);
  font-weight: var(--font-normal);
  line-height: 1.6;
  max-width: 850px;
  margin: 0 auto;
}

/* === CONTENT GRID === */
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}

/* === CONTENT CARDS === */
.content-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: all var(--transition-normal);
}

.content-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.content-card h4 {
  color: var(--gray-900);
  font-size: 24px;
  font-weight: var(--font-semibold);
  line-height: 32px;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--primary-color);
}

/* === CONTENT TEXT === */
.content-text {
  color: var(--gray-600);
  font-size: 16px;
  font-weight: var(--font-normal);
  line-height: 26px;
  margin-bottom: var(--space-6);
}

.content-text p {
  margin-bottom: var(--space-4);
}

.content-text p:last-child {
  margin-bottom: 0;
}

.content-text strong {
  color: var(--gray-900);
  font-weight: var(--font-semibold);
}

.content-text em {
  color: var(--primary-color);
  font-style: normal;
  font-weight: var(--font-medium);
}

/* === CHECKMARK LIST === */
.checkmark-list {
  list-style: none;
  padding: 0;
  margin: var(--space-6) 0;
}

.checkmark-list li {
  position: relative;
  padding-left: var(--space-8);
  margin-bottom: var(--space-3);
  color: var(--gray-600);
  font-size: 16px;
  line-height: 24px;
}

.checkmark-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--success);
  color: var(--white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: var(--font-bold);
}

.checkmark-list li:hover::before {
  background: var(--primary-color);
  transform: scale(1.1);
  transition: all var(--transition-fast);
}

/* === NUMBERED LIST === */
.numbered-list {
  list-style: none;
  padding: 0;
  margin: var(--space-6) 0;
  counter-reset: numbered-counter;
}

.numbered-list li {
  position: relative;
  padding-left: var(--space-10);
  margin-bottom: var(--space-4);
  color: var(--gray-600);
  font-size: 16px;
  line-height: 24px;
  counter-increment: numbered-counter;
}

.numbered-list li::before {
  content: counter(numbered-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--primary-akzent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: var(--font-bold);
}

.numbered-list li:hover::before {
  background: var(--gray-900);
  transform: scale(1.1);
  transition: all var(--transition-fast);
}

/* === HIGHLIGHT BOX === */
.highlight-box {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  margin-top: var(--space-12);
  text-align: center;
}

.highlight-box h4 {
  color: var(--white);
  font-size: 24px;
  font-weight: var(--font-bold);
  line-height: 32px;
  margin-bottom: var(--space-4);
  border-bottom: none;
}

.highlight-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

/* ==========================================================================
   CONTENT RESPONSIVE
   ========================================================================== */

/* === TABLET (768px and up) === */
@media (min-width: 768px) {
  .content-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .content-header h3 {
    font-size: var(--text-4xl);
  }
  
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-16);
  }
  
  .content-text {
    font-size: 17px;
    line-height: 28px;
  }
  
  .checkmark-list li,
  .numbered-list li {
    font-size: 17px;
    line-height: 26px;
  }
}

/* === DESKTOP (1024px and up) === */
@media (min-width: 1024px) {
  .content-section {
    padding: var(--section-padding-desktop) 0;
  }
  
  .content-header h3 {
    font-size: 48px;
    line-height: 64px;
  }
  
  .content-card {
    padding: var(--space-10);
  }
  
  .content-text {
    font-size: 18px;
    line-height: 30px;
  }
  
  .checkmark-list li,
  .numbered-list li {
    font-size: 18px;
    line-height: 28px;
  }
}
/* ==========================================================================
   FAQ SECTION - Mobile-optimiert, SEO-freundlich
   ========================================================================== */

/* === FAQ WRAPPER === */
.faq-section {
  padding: var(--section-padding-mobile) 0;
  background: var(--gray-50);
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* === SECTION HEADER === */
.faq-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.faq-header h2 {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: var(--font-medium);
  line-height: 25px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.faq-header .main-title {
  color: var(--gray-900);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  line-height: 1.3;
  margin-bottom: var(--space-6);
}

.faq-header p {
  color: var(--gray-600);
  font-size: var(--text-lg);
  font-weight: var(--font-normal);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* === FAQ GRID === */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

/* === FAQ ITEM === */
.faq-item {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: all var(--transition-normal);
}

.faq-item:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* === FAQ QUESTION === */
.faq-question {
  color: var(--gray-900);
  font-size: 18px;
  font-weight: var(--font-semibold);
  line-height: 26px;
  margin-bottom: var(--space-4);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.faq-question::before {
  content: "Q";
  background: var(--primary-akzent);
  color: var(--white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: var(--font-bold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* === FAQ ANSWER === */
.faq-answer {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  color: var(--gray-600);
  font-size: 15px;
  font-weight: var(--font-normal);
  line-height: 24px;
}

.faq-answer::before {
  content: "A";
  background: var(--success);
  color: var(--gray-700);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: var(--font-bold);
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-answer-content {
  flex: 1;
}

.faq-answer-content p {
  margin: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.faq-answer-content p + p {
  margin-top: var(--space-3);
}

/* ==========================================================================
   FAQ RESPONSIVE
   ========================================================================== */

/* === TABLET (768px and up) === */
@media (min-width: 768px) {
  .faq-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .faq-header .main-title {
    font-size: var(--text-4xl);
  }
  
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }
  
  .faq-item {
    padding: var(--space-8);
  }
  
  .faq-question {
    font-size: 20px;
    line-height: 28px;
  }
  
  .faq-question::before,
  .faq-answer::before {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  
  .faq-answer {
    font-size: 16px;
    line-height: 26px;
  }
}

/* === DESKTOP (1024px and up) === */
@media (min-width: 1024px) {
  .faq-section {
    padding: var(--section-padding-desktop) 0;
  }
  
  .faq-header .main-title {
    font-size: 48px;
    line-height: 64px;
  }
  
  .faq-grid {
    gap: var(--space-10);
  }
  
  .faq-item {
    padding: var(--space-10);
  }
  
  .faq-question {
    font-size: 22px;
    line-height: 30px;
  }
  
  .faq-answer {
    font-size: 17px;
    line-height: 28px;
  }
}
/* ==========================================================================
   TESTIMONIALS SECTION - Statisches Grid, ohne Slider
   ========================================================================== */

/* === TESTIMONIALS WRAPPER === */
.testimonials-section {
  background: var(--gray-50);
  padding: var(--section-padding-mobile) 0;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* === SECTION HEADER === */
.testimonials-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.testimonials-header h2 {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: var(--font-medium);
  line-height: 25px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.testimonials-header h3 {
  color: var(--gray-900);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  line-height: 1.3;
  margin-bottom: var(--space-6);
  max-width: 630px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-header p {
  color: var(--gray-600);
  font-size: var(--text-lg);
  font-weight: var(--font-normal);
  line-height: 1.6;
  max-width: 850px;
  margin: 0 auto;
}

/* === TESTIMONIALS GRID === */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

/* === TESTIMONIAL CARD === */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: all var(--transition-normal);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}

/* === GOOGLE LOGO (Rechts oben) === */
.google-logo {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  width: 80px;
  height: auto;
  opacity: 0.8;
}

/* === VERIFIED BADGE === */
.verified-badge {
  position: absolute;
  top: var(--space-6);
  left: var(--space-6);
  background: var(--primary-color);
  color: var(--white);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: var(--font-medium);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.verified-badge::before {
  content: "\2713";
  font-weight: var(--font-bold);
}

/* === RATING STARS === */
.testimonial-rating {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
  margin-top: var(--space-12);
}

.testimonial-rating .star {
  width: 20px;
  height: 20px;
  color: #ffd700;
}

/* === TESTIMONIAL TEXT === */
.testimonial-text {
  color: var(--gray-700);
  font-size: 16px;
  font-weight: var(--font-normal);
  line-height: 26px;
  margin-bottom: var(--space-6);
  flex-grow: 1;
  font-style: italic;
  position: relative;
}


/* === CUSTOMER INFO === */
.testimonial-card .customer-info {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: auto;
}

.testimonial-card .customer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.testimonial-card .customer-details h4 {
  color: var(--gray-900);
  font-size: 18px;
  font-weight: var(--font-semibold);
  line-height: 24px;
  margin-bottom: var(--space-1);
}

.testimonial-card .customer-details p {
  color: var(--gray-600);
  font-size: 14px;
  font-weight: var(--font-normal);
  line-height: 20px;
  margin: 0;
}

.testimonial-card .customer-company {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: var(--font-medium);
  line-height: 20px;
  margin: 0;
}

/* ==========================================================================
   TESTIMONIALS RESPONSIVE
   ========================================================================== */

/* === TABLET (768px and up) === */
@media (min-width: 768px) {
  .testimonials-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .testimonials-header h3 {
    font-size: var(--text-4xl);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-10);
  }
  
  .testimonial-text {
    font-size: 17px;
    line-height: 28px;
  }
}

/* === DESKTOP (1024px and up) === */
@media (min-width: 1024px) {
  .testimonials-section {
    padding: var(--section-padding-desktop) 0;
  }
  
  .testimonials-header h3 {
    font-size: 48px;
    line-height: 64px;
  }
  
  .testimonials-grid {
    gap: var(--space-12);
  }
  
  .testimonial-card {
    padding: var(--space-10);
  }
  
  .testimonial-text {
    font-size: 18px;
    line-height: 30px;
  }
  
  .google-logo {
    width: 100px;
  }
}
/* ==========================================================================
   CONTACT SECTION - Nach Vorlage, mit unserem CSS-System
   ========================================================================== */

/* === CONTACT WRAPPER === */
.contact-section {
  padding: var(--section-padding-mobile) 0;
  background: var(--gray-50);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* === SECTION HEADER === */
.contact-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.contact-header h2 {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: var(--font-medium);
  line-height: 25px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.contact-header h3 {
  color: var(--gray-900);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  line-height: 1.3;
  margin-bottom: var(--space-6);
}

.contact-header p {
  color: var(--gray-600);
  font-size: var(--text-lg);
  font-weight: var(--font-normal);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* === CONTACT GRID === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}

/* === LEFT SIDE - FEATURES === */
.contact-info-side {
  padding-right: 0;
}

.contact-info-side h4 {
  color: var(--gray-900);
  font-size: 24px;
  font-weight: var(--font-semibold);
  line-height: 32px;
  margin-bottom: var(--space-4);
}

.contact-info-side .description {
  color: var(--gray-600);
  font-size: 16px;
  line-height: 26px;
  margin-bottom: var(--space-8);
}

/* === FEATURE ITEMS === */
.feature-item {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  align-items: flex-start;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-akzent);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
  stroke-width: 1.5;
}

.feature-content h5 {
  color: var(--gray-900);
  font-size: 18px;
  font-weight: var(--font-semibold);
  line-height: 24px;
  margin-bottom: var(--space-2);
}

.feature-content p {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 22px;
  margin-bottom: var(--space-3);
}

.call-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--primary-color);
  font-size: 16px;
  font-weight: var(--font-semibold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.call-link:hover {
  color: var(--primary-dark);
}

.call-link svg {
  width: 18px;
  height: 18px;
}

/* === RIGHT SIDE - FORM === */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--gray-100);
  overflow: hidden;
}

/* === FORM HEADER === */
.form-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.live-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.2);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.live-text {
  color: var(--white);
  font-size: 12px;
  font-weight: var(--font-bold);
}

.form-header h4 {
  color: var(--white);
  font-size: 20px;
  font-weight: var(--font-semibold);
  margin: 0;
}

/* === FORM BODY === */
.form-body {
  padding: var(--space-6);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

/* === FLOATING LABELS === */
.floating-label-group {
  position: relative;
}

.floating-input {
  width: 100%;
  padding: var(--space-4) var(--space-4) var(--space-3) var(--space-4);
  font-size: 16px;
  color: var(--gray-900);
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  outline: none;
  transition: all var(--transition-normal);
  box-sizing: border-box;
}

.floating-input:focus {
  background: var(--white);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.floating-label {
  position: absolute;
  left: var(--space-4);
  top: var(--space-4);
  color: var(--gray-500);
  font-size: 16px;
  transition: all var(--transition-fast);
  pointer-events: none;
  background: transparent;
}

.floating-input:focus + .floating-label,
.floating-input:not(:placeholder-shown) + .floating-label {
  top: -8px;
  left: var(--space-3);
  font-size: 12px;
  color: var(--primary-color);
  background: var(--white);
  padding: 0 var(--space-2);
}

.floating-textarea {
  min-height: 100px;
  resize: vertical;
  font-family: inherit;
}

/* === FILE UPLOAD === */
.file-upload-group {
  margin: var(--space-4) 0;
}

.file-upload-label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--gray-700);
  font-size: 14px;
  font-weight: var(--font-medium);
  margin-bottom: var(--space-2);
}

.file-upload-label svg {
  width: 18px;
  height: 18px;
}

.file-upload {
  width: 100%;
  padding: var(--space-4);
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-lg);
  background: var(--gray-50);
  font-size: 14px;
  transition: all var(--transition-normal);
}

.file-upload:hover {
  border-color: var(--primary-color);
  background: var(--white);
}

.file-upload-text {
  color: var(--gray-500);
  font-size: 12px;
  margin-top: var(--space-2);
}

/* === CHECKBOX === */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin: var(--space-4) 0;
}

.checkbox-input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 20px;
}

.checkbox-label a {
  color: var(--primary-color);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

/* === SUBMIT BUTTON === */
.submit-button {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  font-size: 16px;
  font-weight: var(--font-semibold);
  padding: var(--space-4) var(--space-6);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.submit-button svg {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* === TABLET (768px and up) === */
@media (min-width: 768px) {
  .contact-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .contact-header h3 {
    font-size: var(--text-4xl);
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
  
  .contact-info-side {
    padding-right: var(--space-4);
  }
}

/* === DESKTOP (1024px and up) === */
@media (min-width: 1024px) {
  .contact-section {
    padding: var(--section-padding-desktop) 0;
  }
  
  .contact-header h3 {
    font-size: 48px;
    line-height: 64px;
  }
  
  .form-body {
    padding: var(--space-8);
  }
  
  .floating-input,
  .floating-label {
    font-size: 17px;
  }
}
/* ==========================================================================
   OFFICE LOCATION SECTION - Ohne Popups, Mobile-First
   ========================================================================== */

/* === OFFICE LOCATION WRAPPER === */
.office-location {
  padding: var(--section-padding-mobile) 0;
  background: var(--white);
}

.office-location-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.office-location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

/* === LEFT SIDE - TEXT CONTENT === */
.office-location__left {
  text-align: center;
}

/* === SECTION TITLE === */
.office-location__left h2 {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: var(--font-medium);
  line-height: 25px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.office-location__left h3 {
  color: var(--gray-900);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  line-height: 1.3;
  margin-bottom: var(--space-6);
}

/* === DESCRIPTION === */
.office-location__text {
  color: var(--gray-600);
  font-size: var(--text-lg);
  font-weight: var(--font-normal);
  line-height: 1.6;
  margin-bottom: var(--space-8);
}

/* === CTA BUTTON BEREICH (Hero Button) === */
.office-location__btn-box {
  margin-bottom: var(--space-8);
}

.office-location__btn-box .hero-contact-btn {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  background: var(--primary-color);
  color: var(--white);
  padding: var(--space-4) var(--space-8) var(--space-4) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  transition: all var(--transition-normal);
  text-decoration: none;
  width: fit-content;
  min-width: 280px;
}

.office-location__btn-box .hero-contact-btn:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.office-location__btn-box .hero-phone-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-900);
  font-size: 20px;
  flex-shrink: 0;
}

.office-location__btn-box .hero-contact-btn:hover .hero-phone-icon {
  background: var(--white);
  color: var(--primary-color);
}

.office-location__btn-box .hero-phone-text {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.office-location__btn-box .hero-phone-label {
  font-size: 14px;
  font-weight: var(--font-medium);
  line-height: 18px;
  opacity: 0.9;
  color: var(--white);
}

.office-location__btn-box .hero-phone-number {
  font-size: 18px;
  font-weight: var(--font-bold);
  line-height: 22px;
  color: var(--white);
}

/* === RIGHT SIDE - MAP AREA === */
.office-location__right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}


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

/* === MAP CONTAINER === */
.office-location__map-box {
  position: relative;
  width: 100%;
  max-width: 500px;
  padding: var(--space-4);
}

/* === MAP IMAGE === */
.office-location__map-img {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.office-location__map-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

/* Fallback wenn kein Bild da ist */
.office-location__map-img:not(:has(img))::before {
  content: "🗺️";
  font-size: 300px;
  opacity: 0.2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
}

/* === MAP MARKERS === */
.office-location__point-1 {
  position: absolute;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

/* Geografische Positionen (Hamburg Raum) */
.office-location__point-1:nth-child(1) {
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.office-location__point-2 {
  top: 30%;
  left: 60%;
  transform: translate(-50%, -50%);
}

.office-location__point-3 {
  top: 45%;
  left: 80%;
  transform: translate(-50%, -50%);
}

.office-location__point-4 {
  top: 28%;
  left: 23%;
  transform: translate(-50%, -50%);
}

.office-location__point-5 {
  top: 60%;
  left: 35%;
  transform: translate(-50%, -50%);
}

.office-location__point-6 {
  top: 60%;
  left: 40%;
  transform: translate(-50%, -50%);
}

/* === MARKER DESIGN (Die schönen ovalen Dinger!) === */
.office-location__markar {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50% 50% 50% 0;
  position: relative;
  transform: rotate(-45deg);
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.office-location__markar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background: var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.office-location__markar:hover {
  background: var(--gray-900);
  transform: rotate(-45deg) scale(1.1);
}

/* === ORTSNAME UNTER MARKER === */
.office-location__marker-label {
  background: var(--white);
  color: var(--gray-900);
  font-size: 12px;
  font-weight: var(--font-semibold);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  white-space: nowrap;
  text-align: center;
  transition: all var(--transition-fast);
  margin-top: var(--space-1);
}

.office-location__point-1:hover .office-location__marker-label {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

/* === RIPPLE EFFECT === */
.office-location__markar .ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 2s infinite;
  opacity: 0.7;
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

/* === ALTERNATIVE MARKER COLORS === */
.office-location__markar-2 {
  background: var(--success);
}

.office-location__markar-2 .ripple {
  border-color: var(--success);
}

.office-location__markar-3 {
  background: var(--warning);
}

.office-location__markar-3 .ripple {
  border-color: var(--warning);
}

.office-location__markar-4 {
  background: var(--error);
}

.office-location__markar-4 .ripple {
  border-color: var(--error);
}

.office-location__markar-5 {
  background: var(--gray-700);
}

.office-location__markar-5 .ripple {
  border-color: var(--gray-700);
}

/* === HAMBURG HAUPTSTANDORT (größer) === */
.office-location__markar-hamburg {
  width: 48px;
  height: 48px;
  background: var(--error);
}

.office-location__markar-hamburg::before {
  width: 20px;
  height: 20px;
}

.office-location__markar-hamburg .ripple {
  border-color: var(--error);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* === TABLET (768px and up) === */
@media (min-width: 768px) {
  .office-location {
    padding: var(--section-padding-tablet) 0;
  }
  
  .office-location-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
  
  .office-location__left {
    text-align: left;
  }
  
  .office-location__left h3 {
    font-size: var(--text-4xl);
  }
  
  .office-location__map-box {
    max-width: 600px;
  }
  
  .office-location__map-img {
    height: 450px;
  }
  
  .office-location__marker-label {
    font-size: 13px;
    padding: var(--space-1) var(--space-3);
  }
}

/* === DESKTOP (1024px and up) === */
@media (min-width: 1024px) {
  .office-location {
    padding: var(--section-padding-desktop) 0;
  }
  
  .office-location__left h3 {
    font-size: 48px;
    line-height: 64px;
  }
  
  .office-location__map-img {
    height: 500px;
  }
  
  .office-location__markar {
    width: 48px;
    height: 48px;
  }
  
  .office-location__markar::before {
    width: 20px;
    height: 20px;
  }
  
  .office-location__markar-hamburg {
    width: 56px;
    height: 56px;
  }
  
  .office-location__markar-hamburg::before {
    width: 24px;
    height: 24px;
  }
  
  .office-location__marker-label {
    font-size: 14px;
    padding: var(--space-2) var(--space-3);
  }
}

/* === LARGE DESKTOP (1280px and up) === */
@media (min-width: 1280px) {
  .office-location-grid {
    gap: var(--space-20);
  }
}
/* ==========================================================================
   STICKY CONTACT NAVIGATION - Performance-optimiert ohne Shine
   ========================================================================== */

.sticky-contact-nav {
  position: fixed;
  right: var(--space-6);
  top: 50%;
  transform: translateY(-50%);
  z-index: var(--z-fixed);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  /* Performance */
  contain: layout style paint;
  will-change: transform;
  /* Slide-in Animation */
  animation: slideInFromRight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* === DESKTOP ANIMATIONS === */
@keyframes slideInFromRight {
  0% {
    transform: translateY(-50%) translateX(120px);
    opacity: 0;
  }
  100% {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
}

@keyframes slideInBtn {
  0% {
    transform: translateX(80px) scale(0.8);
    opacity: 0;
  }
  70% {
    transform: translateX(-8px) scale(1.05);
  }
  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

@keyframes whatsappGlow {
  0%, 100% {
    box-shadow: var(--shadow-lg);
  }
  50% {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  }
}

/* === BASE BUTTON STYLE === */
.sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  color: var(--white);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateZ(0); /* Hardware-Beschleunigung */
  /* Initial state */
  opacity: 0;
  transform: translateX(80px) scale(0.8);
}

/* === GESTAFFELTE BUTTON ANIMATIONEN === */
.sticky-btn:nth-child(1) {
  animation: slideInBtn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

.sticky-btn:nth-child(2) {
  animation: slideInBtn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both,
             whatsappGlow 3s ease-in-out 2.5s infinite;
}

.sticky-btn:nth-child(3) {
  animation: slideInBtn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
}

/* === HOVER EFFECTS === */
.sticky-btn:hover {
  transform: translateX(-12px) scale(1.1);
  box-shadow: var(--shadow-xl);
  color: var(--white);
}

.sticky-btn:active {
  transform: translateX(-8px) scale(0.95);
  transition: transform 0.1s ease;
}

/* === BUTTON ICONS === */
.sticky-btn svg {
  width: 24px;
  height: 24px;
  z-index: 2;
  position: relative;
  transition: transform var(--transition-fast);
}

.sticky-btn:hover svg {
  transform: scale(1.1);
}

/* === BUTTON COLORS === */
.sticky-btn-phone {
  background: var(--primary-color);
}

.sticky-btn-phone:hover {
  background: var(--primary-color);
}

.sticky-btn-whatsapp {
  background: var(--success);
}

.sticky-btn-whatsapp:hover {
  background: var(--success);
}

.sticky-btn-email {
      background: var(--primary-akzent);
}

.sticky-btn-email:hover {
      background: var(--gray-900);
}

/* ==========================================================================
   MOBILE VERSION - Bottom Navigation
   ========================================================================== */

@media (max-width: 767px) {
  .sticky-contact-nav {
    position: fixed;
    bottom: var(--space-5);
    left: var(--space-4);
    right: var(--space-4);
    top: auto;
    transform: none;
    flex-direction: row;
    justify-content: center;
    gap: var(--space-6);
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-4);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Mobile Slide-in */
    animation: slideInFromBottom 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  /* === MOBILE ANIMATIONS === */
  @keyframes slideInFromBottom {
    0% {
      transform: translateY(150px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes slideInMobileBtn {
    0% {
      transform: translateY(50px) scale(0.7);
      opacity: 0;
    }
    70% {
      transform: translateY(-8px) scale(1.08);
    }
    100% {
      transform: translateY(0) scale(1);
      opacity: 1;
    }
  }

  /* === MOBILE BUTTON STYLES === */
  .sticky-btn {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    /* Reset desktop transforms */
    opacity: 0;
    transform: translateY(50px) scale(0.7);
  }

  .sticky-btn:nth-child(1) {
    animation: slideInMobileBtn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
  }

  .sticky-btn:nth-child(2) {
    animation: slideInMobileBtn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both,
               whatsappGlow 3s ease-in-out 2s infinite;
  }

  .sticky-btn:nth-child(3) {
    animation: slideInMobileBtn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both;
  }

  .sticky-btn:hover {
    transform: translateY(-6px) scale(1.08);
    color: var(--white);
  }

  .sticky-btn:active {
    transform: translateY(-2px) scale(0.95);
  }
}

/* ==========================================================================
   SPECIAL EFFECTS & ENHANCEMENTS
   ========================================================================== */

/* === FOCUS STATES === */
.sticky-btn:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.8);
  outline-offset: 3px;
}

/* === SUCCESS FEEDBACK (für Click-Events) === */
.sticky-btn.clicked {
  animation: clickSuccess 0.4s ease-out;
}

@keyframes clickSuccess {
  0% { transform: scale(1); }
  50% { 
    transform: scale(0.9); 
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.6);
  }
  100% { transform: scale(1); }
}

/* ==========================================================================
   ACCESSIBILITY & PERFORMANCE
   ========================================================================== */

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  .sticky-contact-nav,
  .sticky-btn {
    animation: none !important;
    transition: none !important;
  }
  
  .sticky-contact-nav {
    opacity: 1 !important;
    transform: translateY(-50%) !important;
  }
  
  .sticky-btn {
    opacity: 1 !important;
    transform: translateX(0) scale(1) !important;
  }
  
  @media (max-width: 767px) {
    .sticky-contact-nav {
      transform: translateY(0) !important;
    }
    
    .sticky-btn {
      transform: translateY(0) scale(1) !important;
    }
  }
}

/* === HIGH CONTRAST === */
@media (prefers-contrast: high) {
  .sticky-contact-nav {
    background: var(--white);
    border: 3px solid var(--gray-900);
  }
  
  .sticky-btn {
    border: 2px solid var(--white);
    backdrop-filter: none;
  }
}

/* === PRINT STYLES === */
@media print {
  .sticky-contact-nav {
    display: none;
  }
}

/* ==========================================================================
   RESPONSIVE ENHANCEMENTS
   ========================================================================== */

/* === Large Desktop === */
@media (min-width: 1280px) {
  .sticky-contact-nav {
    right: var(--space-8);
  }
  
  .sticky-btn {
    width: 64px;
    height: 64px;
  }
  
  .sticky-btn svg {
    width: 26px;
    height: 26px;
  }
  
  .sticky-btn:hover {
    transform: translateX(-16px) scale(1.12);
    color: var(--white);
  }
}

/* === Small Mobile === */
@media (max-width: 480px) {
  .sticky-contact-nav {
    left: var(--space-3);
    right: var(--space-3);
    bottom: var(--space-4);
    gap: var(--space-4);
    padding: var(--space-3);
  }
  
  .sticky-btn {
    width: 50px;
    height: 50px;
  }
  
  .sticky-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* === Landscape Mobile === */
@media (max-width: 767px) and (orientation: landscape) {
  .sticky-contact-nav {
    bottom: var(--space-3);
    padding: var(--space-2) var(--space-4);
  }
  
  .sticky-btn {
    width: 48px;
    height: 48px;
  }
}
/* ==========================================================================
   MARQUEE SECTION - Infinite Logo Scroll
   ========================================================================== */

.marquee-section {
  padding: var(--space-3) 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}

.container-fluid {
  width: 100%;
  margin: 0 auto;
}

.marquee-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
  mask: linear-gradient(
    to right,
    transparent,
    white 20%,
    white 80%,
    transparent
  );
  -webkit-mask: linear-gradient(
    to right,
    transparent,
    white 20%,
    white 80%,
    transparent
  );
}

.marquee {
  display: flex;
  animation: marqueeScroll 30s linear infinite;
  will-change: transform;
}

.marquee__group {
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-width: 100vw;
  gap: var(--space-16);
  padding: 0 var(--space-8);
  flex-shrink: 0;
}

.marquee__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 200px;
  height: 80px;
  padding: var(--space-4);
  transition: all var(--transition-normal);
}

.marquee__item:hover {
  transform: scale(1.05);
  opacity: 0.8;
}

/* === LOGO STYLES === */
.logo-svg,
.logo-style {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: all var(--transition-normal);
}

.marquee__item:hover .logo-svg,
.marquee__item:hover .logo-style {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.02);
}

/* === MARQUEE ANIMATION === */
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100vw);
  }
}

/* === PAUSE ON HOVER === */
.marquee-wrapper:hover .marquee {
  animation-play-state: paused;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* === TABLET === */
@media (max-width: 1024px) {
  .marquee-section {
    padding: var(--space-3) 0;
  }
  
  .marquee {
    animation: marqueeScroll 25s linear infinite;
  }
  
  .marquee__group {
    gap: var(--space-12);
    padding: 0 var(--space-6);
  }
  
  .marquee__item {
    width: 160px;
    height: 64px;
  }
}

/* === MOBILE === */
@media (max-width: 768px) {
  .marquee-section {
    padding: var(--space-3) 0;
  }
  
  .marquee {
    animation: marqueeScroll 20s linear infinite;
  }
  
  .marquee__group {
    gap: var(--space-8);
    padding: 0 var(--space-4);
  }
  
  .marquee__item {
    width: 140px;
    height: 56px;
    padding: var(--space-3);
  }
}

/* === SMALL MOBILE === */
@media (max-width: 480px) {
  .marquee-section {
    padding: var(--space-3) 0;
  }
  
  .marquee {
    animation: marqueeScroll 15s linear infinite;
  }
  
  .marquee__group {
    gap: var(--space-6);
    padding: 0 var(--space-3);
  }
  
  .marquee__item {
    width: 120px;
    height: 48px;
    padding: var(--space-2);
  }
}

/* ==========================================================================
   ACCESSIBILITY & PERFORMANCE
   ========================================================================== */

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  .marquee {
    animation: none !important;
  }
  
  .marquee__group {
    justify-content: center;
    flex-wrap: wrap;
    min-width: auto;
    gap: var(--space-6);
  }
  
  .marquee__group[aria-hidden="true"] {
    display: none;
  }
}

/* === HIGH CONTRAST === */
@media (prefers-contrast: high) {
  .marquee-section {
    background: var(--white);
    border-top: 2px solid var(--gray-900);
    border-bottom: 2px solid var(--gray-900);
  }
  
  .logo-svg,
  .logo-style {
    filter: none;
    opacity: 1;
  }
  
  .marquee__item {
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
  }
}

/* === PRINT STYLES === */
@media print {
  .marquee-section {
    page-break-inside: avoid;
    background: var(--white);
    border: none;
  }
  
  .marquee {
    animation: none;
  }
  
  .marquee__group[aria-hidden="true"] {
    display: none;
  }
  
  .marquee__group {
    justify-content: space-between;
    flex-wrap: wrap;
    min-width: auto;
  }
  
  .logo-svg,
  .logo-style {
    filter: none;
  }
}

/* === DARK MODE SUPPORT === */
@media (prefers-color-scheme: dark) {
  .marquee-section {
    background: var(--gray-900);
    border-color: var(--gray-700);
  }
  
  .logo-svg,
  .logo-style {
    filter: grayscale(100%) opacity(0.6) brightness(1.2);
  }
  
  .marquee__item:hover .logo-svg,
  .marquee__item:hover .logo-style {
    filter: grayscale(0%) opacity(1) brightness(1);
  }
}
/* ==========================================================================
   Trust Badge
   ========================================================================== */
.trust-badge {
    background: var(--white);
    border-radius: var(--radius-full);
    padding: var(--space-5) var(--space-6);
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: var(--space-4);
    max-width: fit-content;
    cursor: pointer;
    border: 1px solid var(--gray-200);
	margin-bottom: var(--space-6);
}
.trust-badge-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.trust-badge-link:hover {
    text-decoration: none;
    color: inherit;
}


.trust-top-row {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    width: 100%;
}

.trust-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    flex: 1;
}

.trust-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    border: 3px solid var(--white);
    object-fit: cover;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.avatar:not(:first-child) {
    margin-left: -12px;
}

.trust-badge:hover .avatar {
    border-color: var(--primary-akzent);
    transform: scale(1.05);
}

.trust-rating {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.stars {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.star {
    width: 16px;
    height: 16px;
    color: #ff6b35;
    transition: transform var(--transition-fast);
}

.trust-badge:hover .star {
    transform: scale(1.1);
}

.review-text-line {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.divider {
    color: var(--gray-400);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
}

.review-text {
    color: var(--gray-600);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    white-space: nowrap;
}

.trust-arrow {
    width: 44px;
    height: 44px;
    background: var(--primary-akzent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.trust-badge:hover .trust-arrow {
    background: var(--primary-color);
    transform: scale(1.1);
}

.trust-arrow svg {
    width: 18px;
    height: 18px;
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .trust-badge {
        margin: 0 auto;
        padding: var(--space-4) var(--space-5);
        gap: var(--space-3);
    }
    
    .trust-top-row {
        gap: var(--space-3);
    }
    
    .avatar {
        width: 42px;
        height: 42px;
        border-width: 2px;
    }
    
    .avatar:not(:first-child) {
        margin-left: -10px;
    }
    
    .trust-arrow {
        width: 36px;
        height: 36px;
    }
    
    .trust-arrow svg {
        width: 16px;
        height: 16px;
    }
    
    .star {
        width: 14px;
        height: 14px;
    }
    
    .review-text {
        font-size: var(--text-base);
    }
    
    .divider {
        font-size: var(--text-base);
    }
}

@media (max-width: 480px) {
    .trust-badge {
        padding: var(--space-3) var(--space-4);
        gap: var(--space-2);
        margin: 0 auto;
		margin-bottom: var(--space-3);
    }
    
    .trust-top-row {
        gap: var(--space-2);
    }
    
    .trust-content {
        gap: 1px;
    }
    
    .avatar {
        width: 42px;
        height: 42px;
    }
    
    .avatar:not(:first-child) {
        margin-left: -8px;
    }
    
    .trust-arrow {
        width: 32px;
        height: 32px;
    }
    
    .trust-arrow svg {
        width: 14px;
        height: 14px;
    }
    
    .star {
        width: 16px;
        height: 16px;
    }
    
    .review-text {
        font-size: var(--text-xs);
    }
    
    .divider {
        font-size: var(--text-xs);
    }
}
	/* ==========================================================================
   FLIESSTEXT SECTION - Große Container für längere Texte
   ========================================================================== */

.fliesstext-section {
    padding: var(--section-padding-mobile) 0;
    background: var(--white);
}

.fliesstext-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.fliesstext-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    margin-bottom: var(--space-12);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all var(--transition-normal);
}

.fliesstext-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.fliesstext-card h2 {
    color: var(--gray-900);
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-3);
    border-bottom: 2px solid var(--primary-color);
}

.fliesstext-card h2:nth-of-type(2) {
    margin-top: var(--space-8);
    border-bottom: 2px solid var(--gray-300);
}

/* === TABLET (768px and up) === */
@media (min-width: 768px) {
    .fliesstext-section {
        padding: var(--section-padding-tablet) 0;
    }
    
    .fliesstext-card h2 {
        font-size: var(--text-3xl);
    }
}

/* === DESKTOP (1024px and up) === */
@media (min-width: 1024px) {
    .fliesstext-section {
        padding: var(--section-padding-desktop) 0;
    }
    
    .fliesstext-container {
        max-width: 1000px;
    }
    
    .fliesstext-card {
        padding: var(--space-12);
    }
    
    .fliesstext-card h2 {
        font-size: var(--text-4xl);
    }
}