:root {
  --bg-light: #ffffff;
  --bg-dark: #1F133A;

  --hover-light: #F4A7C1;
  --hover-dark: #E86BA8;

  --language-hover-light: #FFD6E3;
  --language-hover-dark: #C86A93;

  --text-light: #1F133A;
  --text-dark: #ffffff;

  --icon-light: #2c2c2e;
  --icon-dark: #f5f5f5;

  --border-light: #ccc;
  --border-dark: #5C4A72;

  --button-filter-light: #f06291;
  --button-filter-dark: #D85C87;

  --button-filter-hover-light: #EC407A;
  --button-filter-hover-dark: #ff72a1;

  --button-search-light: #8964ef;
  --button-search-dark: #9170ff;

  --button-search-hover-light: #7A4FE0;
  --button-search-hover-dark: #A88CFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #c7cad5;
  color: var(--text-light);
  transition: background-color 0.5s, color 0.5s;
}

body.dark-mode {
  background-color: #5C4A72;
  color: var(--text-dark);
}

hr {
  border: none;
  height: 1px;
  background-color: #e0e0e0;
  margin: 10px 0;
}

/* ✅ Screenreader-only (SEO/Accessibility) */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


/* =========================================
 Plattform Vorteile
========================================= */
.platform-benefits {
  width: 100%;
  display: flex;
  justify-content: center;
}

.platform-benefits-wrapper {
  display: flex;
  gap: 24px;
  /* kleinerer Abstand zwischen den Punkten */
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
}

.platform-benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #2b2b2b;
  font-weight: 500;
}

body.dark-mode .platform-benefit-item {
  color: var(--text-dark);
}

/* Lucide Icons */
.platform-benefit-item svg {
  width: 24px;
  height: 24px;
  stroke: #10b981 !important;
  /* garantiert grün */
  color: #10b981 !important;
  /* fallback für lucide */
  stroke-width: 3;
  flex-shrink: 0;
}

/* =========================================
 Tablet (2 pro Reihe)
========================================= */
@media (max-width: 1000px) and (min-width: 521px) {
  .platform-benefit-item {
    width: calc(50% - 12px);
    justify-content: center;
  }
}

/* =========================================
 Mobile
========================================= */
@media (max-width: 520px) {
  .platform-benefits-wrapper {
    flex-direction: column;
    align-items: flex-start;
    /* Icons + Text sauber links */
    gap: 12px;
  }

  .platform-benefit-item {
    width: 100%;
    align-items: center;
    /* Icon + Text korrekt ausgerichtet */
  }
}

/* =========================================
 LOGO SLIDER SECTION
========================================= */
.logo-section {
  width: 100%;
  padding: 20px 20px;
  display: flex;
  justify-content: center;
}

.logo-container {
  max-width: 80%;
  width: 100%;
  text-align: center;
  position: relative;
}

.logo-title-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.logo-title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 60%;
  margin: 50px auto 0 auto;
  gap: 20px;
  font-size: 15px;
  font-weight: 550;
  color: #2b2b2b;
  letter-spacing: 0.5px;
}

/* Linie links */
.logo-title::before {
  content: "";
  flex: 1;
  height: 2px;
  max-width: 20%;

  background: linear-gradient(to right,
      transparent 0%,
      rgba(255, 255, 255, 0.6) 100%);
}

/* Linie rechts */
.logo-title::after {
  content: "";
  flex: 1;
  height: 2px;
  max-width: 20%;
  background: linear-gradient(to left,
      transparent 0%,
      rgba(255, 255, 255, 0.6) 100%);
}

@media (max-width:797px) {

  .logo-title {
    max-width: 100%;
    margin: 50px 20px 0 20px;
  }

  .logo-title::before,
  .logo-title::after {
    max-width: none;
  }

}

/* =========================================
 LOGO SLIDER
========================================= */
.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Fade links */
.logo-slider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 120px;
  z-index: 2;
  background: linear-gradient(to right, #c7cad5, transparent);
  pointer-events: none;
}

/* Fade rechts */
.logo-slider::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 120px;
  z-index: 2;
  background: linear-gradient(to left, #c7cad5, transparent);
  pointer-events: none;
}

/* Track */
.logo-track {
  display: flex;
  gap: 50px;
  width: max-content;
  will-change: transform;
}

/* Logos */
.logo {
  flex: 0 0 auto;
  width: 160px;
  height: 70px;
  background: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.logo img {
  max-width: 120px;
  max-height: 45px;
  object-fit: contain;
  transition: all 0.3s ease;
}

@media (max-width:797px) {

  .logo-container {
    max-width: 100%;
    padding: 0 20px;
  }
  .logo-slider {
    width: 100%;
  }
}