@charset "utf-8";
/* CSS Document */
.bokeh{
  position: relative;
  overflow: hidden;
 
  background: #1a0b2e; /* dunkler lila Grund */
      filter: saturate(115%) contrast(105%);
}

/* Bokeh-Layer */
.bokeh::before{
  content:"";
  position:absolute;
  inset:-40%;
  pointer-events:none;

  /* mehrere "Lichtkreise" als Radial-Gradients */
  background:
  radial-gradient(circle at 20% 30%, rgba(64, 41, 133, .55) 0 80px, transparent 440px), radial-gradient(circle at 70% 25%, rgb(64 41 133 / 66%) 0 120px, transparent 300px), radial-gradient(circle at 40% 75%, rgba(64, 41, 133, .35) 0 160px, transparent 260px), radial-gradient(circle at 85% 80%, rgba(64, 41, 133, .30) 0 300px, transparent 580px);
  filter: blur(18px) saturate(140%);
  opacity: .95;
  transform: translateZ(0);
}
.nav-left a {
    display: inline-block; /* Damit der Link die Größe des Bildes annimmt */
    line-height: 0;        /* Verhindert komische Abstände unter dem Bild */
}

.nav-left img.logo {
    height: 50px;          /* Deine gewünschte Logo-Höhe */
    width: auto;
    display: block;
}
.bokeh::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;

  /* lila Filter über ALLES */
  background: rgba(140, 60, 255, 0.42);

  /* optional: bisschen “filmischer” */
  mix-blend-mode: soft-light; /* alternativ: overlay / soft-light */
}

/* Mobile Anpassung */
@media (max-width: 768px){
  .bokeh{
    border-radius: 12px;
    filter: saturate(110%) contrast(103%);
  }

  .bokeh::before{
    inset: -25%;
    /* kleinere, weniger dominante Kreise */
    background:
      radial-gradient(circle at 18% 28%, rgba(64, 41, 133, .55) 0 55px,  transparent 220px),
      radial-gradient(circle at 78% 22%, rgba(64, 41, 133, .45) 0 80px,  transparent 240px),
      radial-gradient(circle at 35% 78%, rgba(64, 41, 133, .35) 0 95px,  transparent 260px),
      radial-gradient(circle at 88% 82%, rgba(64, 41, 133, .30) 0 140px, transparent 320px);

    filter: blur(14px) saturate(130%);
    opacity: .9;
  }

  .bokeh::after{
    /* etwas weniger "zu lila" auf kleineren Screens */
    background: rgba(140, 60, 255, 0.32);
    mix-blend-mode: soft-light;
  }
}

/* Sehr kleine Geräte */
@media (max-width: 420px){
  .bokeh::before{
    inset: -20%;
    filter: blur(12px) saturate(125%);
  }
  .bokeh::after{
    background: rgba(140, 60, 255, 0.28);
  }
    
 
}

.hero-section {
  position: relative;
  width: 100%;
  background: url("../img/hero/hero-moon-1.jpg") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8%;
  color: #fff;
  overflow: hidden; /* wichtig, damit nichts über die Rundung ragt */
  border-radius: 80px;
  min-height: 600px; /* z. B. für gleiche Höhe auf großen Screens */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(60, 0, 90, 0.45);
  backdrop-filter: blur(0px);
}

.hero-content {
 
 position: relative;
  z-index: 2; /* damit der Text über den Shapes liegt */
  padding: 200px 0;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 0.9;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
}

.hero-content h1 span {
  color: #fff;
  font-size: 7rem;
}


.hero-content p {
  color: #fff;
     font-weight: 500;
    font-size: clamp(0.95rem, 1.5vw, 1.8rem);
 
}

/* 📱 Nur für Mobile Geräte */
@media (max-width: 768px) {
  .hero-content {
    padding: 120px 0;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    line-height: 1;
  }

  .hero-content h1 span {
    font-size: clamp(3rem, 10vw, 4rem);
  }
    
    
    .hero-section {
   background: url("../img/hero/hero-moon-mobil-1.jpg") center center/cover no-repeat;
    border-radius: 30px;
}
}





.brand-section {
  padding: 40px 0;
  background-color: #40298512;
     border-radius: 80px;
}

.brand-grid {
  display: grid;
 grid-template-columns: repeat(11, 1fr); /* 👈 vier gleich breite Spalten */
  gap: 10px;
  justify-items: center;
  align-items: center;
    max-width: 100%;          /* <-- stellt sicher, dass es den Container voll nutzt */
}

.brand-item {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-item img {
  width: 50%;
  height: auto;
 /* filter: grayscale(100%);*/
  transition: filter 0.3s ease;
}

.brand-item span {
  font-weight: 600;
  color: #333;
  font-size: 1rem;
}





@media (max-width: 768px) {
    
    .brand-section {
 
     border-radius: 30px;
}
    
    
  .brand-grid {
  grid-template-columns: repeat(4, 1fr); /* 👈 vier gleich breite Spalten */
    gap: 10px;
  }

  .brand-item {
    width: 50px;
    height: 50px;
  }
    .brand-item span {
  font-weight: 600;
  color: #333;
  font-size: 0.7rem;
}
}






.section-100 {
  padding: 100px 0;
  background-color: #fff;
 
}


.section-150 {
  padding: 150px 0;
  background-color: #fff;
 
}


.section-200 {
  padding: 200px 0px 0px 0px;
  background-color: #fff;
 
}


.section-50 {
  padding: 50px 0;
 
 
}

.section-150-grey {
  padding: 150px 0;
  background-color: #f2f2f2;
 
}


.section-100-grey {
  padding: 100px 0;
  background-color: #f2f2f2;
 
}



.section-100-light-lila {
    background-color: #40298512;
    /* margin-top: -180px; */
    padding: 100px 0 100px;
    border-radius: 80px;
    z-index: 1;
   
 
}


.section-200-light-lila {
    background-color: #40298512;
    /* margin-top: -180px; */
    padding: 80px 0px 80px 0px;
    border-radius: 80px;
    z-index: 1;
   
 
}



.section-300-light-lila {
    background-color: #40298512;
    /* margin-top: -180px; */
    padding: 100px 0 300px;
    border-radius: 80px;
    z-index: 1;
   
 
}

.section-100-lila {
  padding: 100px 0;
  background-color: #402985;
 
}

.generic-btn {
    /* height: 45px; */
    max-width: fit-content;
    border: none;
    text-align: center;
    /* display: inline-block !important; */
    line-height: unset;
    transition: all 0.5s;
    border-radius: 30px;
    font-size: 14px !important;
    font-weight: 500 !important;
    padding-left: 40px;
    padding-right: 40px;
    display: flex!important;
    justify-content: center;
    align-items: center;
    line-height: normal!important;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 10px;
    align-items: center;
    justify-items: center;
}

.award-item img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .awards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .section-100-light-lila {
   
  
 border-radius: 30px;
}
    
 .section-300-light-lila {
   
    border-radius: 30px;
 
   
 
}   
   
}


.section {
  border-radius: 0;
  overflow: visible;
  background: transparent;
    margin: 20px;
	padding: 200px 0px 0px 0px;
}


@media (max-width: 768px) {
.section {
  border-radius: 0;
  overflow: visible;
  background: transparent;
    margin: 20px;
	padding: 150px 0px 0px 0px;
}}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    width: auto;
    box-sizing: border-box;
   /* margin: 0px 20px 0px 20px;*/
    align-items: center;
}

.grid-2 img {
 width: 20%;
  height: auto;
  border-radius: 8px;
}

.grid-2 .text-content {
 
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
      width: auto;
    
  }

  .grid-2 .text-content {
    text-align: center;
  }

  .grid-2 a {
    display: inline-block;
    margin-top: 1rem;
  }
	
	.grid-2 img {
 width: 80%;
  
}
	
	
}



.grid-4 {

    
     display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 100%;          /* <-- stellt sicher, dass es den Container voll nutzt */
  align-items: center;
  justify-content: center;
     margin: 0px 20px 0px 20px;
}


.grid-4 .grid-item{
background: #4029850a;
    padding: 25px;
    border-radius: 30px;
    width: auto;
    height: stretch;
}





.grid-4 img {
  width: 30%;
  height: auto;
  border-radius: 8px;
}


.grid-4 h3 {
font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    margin-bottom: 5px;margin-top: 10px;line-height: normal;
}

.grid-4 p {
 margin-bottom: 0px;
        
}

@media (max-width: 1200px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-4 {
  grid-template-columns: repeat(1, 1fr);
    text-align: center;
      gap: 1rem;
  }

 
}




/* === Hintergrund mit Farbverlauf === */
.cta-section {
 
  padding: 8rem 2rem 12rem; /* oben mehr Platz, weil das Bild überlappt */
  display: flex;
  justify-content: center;
  align-items: center;
	}


.cta-row {
 gap: 20px;
    width: 100%;
 align-items: stretch;
  display: flex;
  justify-content: center;
  
}


/* === Weißer Container === */
.cta-container {
    position: relative;
    background: #402985;
    border-radius: 60px;
    padding: 4rem;
    /* WICHTIG: flex: 1 lässt beide Container den Platz 50/50 aufteilen */
    flex: 1;
    display: flex;
    flex-direction: column;
    /* Sorgt dafür, dass der Button immer ganz unten sitzt */
    justify-content: space-between; 
    text-align: center;
    /* Margin entfernen, da gap den Abstand steuert */
    margin: 0; 
    /* Verhindert, dass lange E-Mails das Design sprengen */
    min-width: 0; 
	overflow: hidden;
    transition: transform 0.3s ease;
}


/* Der "unsichtbare" Link über die ganze Box */
.cta-full-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5; /* Liegt über allem */
}

/* Hover-Effekt für die ganze Box */
.cta-container:hover {
    transform: translateY(-5px);
  
    cursor: pointer;
}

/* Damit der Button beim Hover der Box auch reagiert */
.cta-container:hover .generic-btn {
    background-color: #ffffffcc; /* Gleicher Effekt wie lila-hover-btn */
    color: #402985;
}

/* === Person-Bereich über dem Container === */
.cta-person {
    position: absolute;
    /* top: -130px; */
    /* left: 50%; */
    /* transform: translateX(-50%); */
    display: flex;
    gap: 0.7rem;
    z-index: 2;
    /* background: #fff; */
    padding: 0rem;
    /* border-radius: 60px; */
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); */
    /* margin-block-end: -4rem; */
    align-content: center;
    justify-content: center;
    flex-direction: column;
}
h2.cta-title {
margin-bottom: 30px;
    text-align: left; color: #fff;
}
.cta-btn {
display: flex;
    justify-content: flex-end;
}

.cta-photo {
    width: 140px;
    height: 140px;
    border-radius: 20px;
    object-fit: cover;
    
}


.cta-icon {
    width: 140px;
    height: 140px;
    border-radius: 20px;
    object-fit: cover;
    background: white;
    padding: 20px;
    /* border: 3px solid #402985; */
}
/* === Name & Rolle === */
.cta-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  color: #402985;
    text-align: left;
        margin-top: 10px;
}

.cta-role {
font-size: clamp(0.7rem, 1.2vw, 0.9rem);
  color: #402985;
  margin: 0;
    text-align: left;
    line-height: normal
}
.cta-role-white {
font-size: clamp(0.7rem, 1.2vw, 0.9rem);
  color: #fff;
  margin: 0;
    text-align: left;
    line-height: normal
}

/* === Mobile Anpassung === */
@media (max-width: 1600px) {
.cta-container {
   border-radius: 30px;
    width: 100%;
    padding: 3rem 2rem 2rem;
  
}

.cta-person {
    position: absolute;
  bottom: 20px;
    /* left: 50%; */
    /* transform: translateX(-50%); */
    display: flex;
    gap: 1rem;
    z-index: 2;
    /* background: #fff; */
    padding: 0rem;
    /* border-radius: 60px; */
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); */
    /* margin-block-end: -4rem; */
    align-content: flex-start;
    justify-content: center;
    flex-direction: row;
}

.cta-photo {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    object-fit: cover;
   
}
	.cta-icon {
     width: 70px;
    height: 70px;
    border-radius: 20px;
    object-fit: cover;
    background: white;
    padding: 10px;
    /* border: 3px solid #402985; */
}
	
.cta-section {
    padding: 8rem 1rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
    
    
    /* === Name & Rolle === */
.cta-name {
 
  color: #402985;
   
}

.cta-role {

  color: #402985;
 
}
    .cta-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

    

}














/* === Titel & B*





/* === TEAM-GRID FEST NEBENEINANDER === */
.team-grid {
    display: flex !important;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 2rem;
    width: 100%;
    padding: 0px 0;
    box-sizing: border-box;
    justify-content: flex-start;
}

.team-member {
  flex: 1 1 250px;          /* wächst, schrumpft, mind. 250px breit */
position: relative;
  background-color: #40298512;
  text-align: center;
  padding: 40px;
  border-radius: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
     cursor: pointer;
}

/* Die Karten-Logik für 3 in einer Reihe */
.team-member {
    /* (100% / 3) minus anteiligem Gap */
    flex: 0 0 calc(33.333% - 1.34rem); 
    min-width: 250px; /* Verhindert, dass sie zu schmal werden */
    box-sizing: border-box;
}

/* Responsive Anpassung: 2 in einer Reihe (Tablet) */
@media (max-width: 992px) {
    .team-member {
        flex: 0 0 calc(50% - 1rem);
    }
}

/* Responsive Anpassung: 1 in einer Reihe (Handy) */
@media (max-width: 768px) {
    .team-member {
        flex: 0 0 100%;
    }
}

/* CTA erstmal ausblenden */
.team-member .cta-row{
  display: none;                 /* sitzt aber weiterhin unter dem <p> im HTML */
  margin-top: 12px;              /* optional Abstand */
}

/* Beim Hover CTA einblenden */
.team-member:hover .cta-row{
  display: flex;                 /* Bootstrap row + justify-content-center passt */
}


/* Damit der Button garantiert scharf bleibt */
.team-member .cta-row{
  filter: none !important;
}


.team-member .team-link{
  display: block;        /* Link füllt den ganzen Block */
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}









.team-member h3 {
  color: #2f1d74;
  margin-bottom: 0px;
     font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    padding-top: 20px
}

.team-member p {
  
  
    margin-top: 5px;
    line-height: normal;
    margin-bottom: 0px;
}
.team-member img {
  border-radius: 35px;
}





/* === Mobile Anpassung === */

/* Tablets und kleinere Bildschirme */
@media (max-width: 992px) {
  .team-member {
    flex: 1 1 100%; /* 2 nebeneinander */
  }
  
  .team-grid {
    gap: 1.5rem;
  }
}

/* Handy (Smartphone) */
@media (max-width: 768px) {
  .team-member {
    flex: 1 1 100%; /* Erreicht die volle Breite -> 1 pro Zeile */
    max-width: 100%;
  }

  .team-grid {
    gap: 2rem; /* Etwas mehr Abstand zwischen den untereinander stehenden Karten */
  }
  
  /* Optional: Zentrierung der Inhalte auf dem Handy für bessere Optik */
  .team-member {
    text-align: center;
  }
}

/* ========= Überschriften skalierend (Desktop → Mobile) ========= */
h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

h3 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}

h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}

h5 {
  font-size: clamp(1rem, 2vw, 1.2rem);
}

h6 {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
}


p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.5;
  margin-bottom: 1em;
  color: #2f1d74; /* optional, falls dein Text zu hell wirkt */
}



p.subline {
    font-weight: 600;
  line-height: 1.5;
  max-width: 65ch; /* bessere Lesbarkeit – ca. 65 Zeichen pro Zeile */
}


p.long-text {
  line-height: 1.5;
  max-width: 65ch; /* bessere Lesbarkeit – ca. 65 Zeichen pro Zeile */
}

p.small {
  font-size: clamp(0.8rem, 1.2vw, 0.9rem);
    line-height: clamp(1.2rem, 0.9rem + 0.8vw, 1.4rem);
 
}

.title {
 
    margin-bottom: 50px
}


.title h2 {
 font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: 5px
}


.topic {
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
 
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.topic::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1rem;
  height: 2px;
  background-color: #2f1d74; /* Akzentfarbe */
  transform: translateY(-50%);
}



.grid-2 img {
  border-radius: 25px;
}






.section-100-lila .topic {
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
 color: white;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}



.section-100-lila .title h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: 5px;color: white;
}



.section-100-lila p {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.5;
    margin-bottom: 1em;
    color: white;
}



.lila-hover-btn {
    background-color: white;
    color: #402985 !important;
    border: 1px #402985 solid!important;
}




.lila-hover-btn:hover {
    background-color: #ffffffcc;
    color: #402985 !important;
}

:root {
    --move-height-1: 80px;
    --move-height-2: 30px;
    --move-height-3: 10px;
}

/* INDIVIDUELLE POSITIONEN */


.shape1 {
    position: absolute;
    /* inset: 0; */
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    z-index: 1;
    opacity: 0.5;
    left: 9%;
    bottom: 54%;
    transform: translateX(-50%);
    width: 195%;
}

.shape2 {
    position: absolute;
    inset: 0;
    display: flex;
    /* justify-content: center; */
    z-index: 1;
    opacity: 0.2;
    /* align-items: flex-end; */
    top: -285%;
}




@media (max-width: 768px) {

.shape2 {
    position: absolute;
    inset: 0;
    display: flex;
    /* justify-content: center; */
    z-index: 1;
    opacity: 0.2;
    /* align-items: flex-end; */
    top: -215%;
}



}

/* ANIMATIONSKLASSEN */
.shape-animation1 {
    --move-height: var(--move-height-1);
    animation: float 2s infinite alternate ease-in-out;
}

.shape-animation2 {
    --move-height: var(--move-height-2);
    animation: float 2s infinite alternate ease-in-out;
}

.shape-animation3 {
    --move-height: var(--move-height-3);
    animation: float 2s infinite alternate ease-in-out;
}

.animate1 {
    animation: scaleUp 2s infinite alternate ease-in-out;
}

/* KEYFRAMES */
@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(var(--move-height)); }
}

@keyframes scaleUp {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}



/* ===== Bild-Section ===== */
.image-section {
  position: relative;
  background-color: #fff;
  padding-top: 80px;
}

.image-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.image-wrapper img {
  width: 100%;
  border-radius: 80px;
  display: block;
}



.image-wrapper2 {
 
 
  position: relative;
  z-index: 2;
}

.image-wrapper2 img {

  border-radius: 16px;
  display: block;
}


/* ===== Hintergrund-Section (beginnt in Bildmitte) ===== */
.info-section {
  position: relative;
  background-color: #40298512; /* deine blaue Farbe */
  margin-top: -180px; /* 👈 schiebt den Hintergrund nach oben bis in die Bildmitte */
  padding: 200px 0 80px; /* oben genug Platz, damit Text nicht über dem Bild liegt */
  border-radius: 80px;
 
  z-index: 1;
       

}

.info-section h2 {

 
  font-size: 2rem;
  margin-bottom: 20px;
}

.info-section p {
 
 
 
}

/* ===== Responsiv ===== */
@media (max-width: 768px) {
  .info-section {
    margin-top: -100px;
    padding: 150px 0 60px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  
  }

  .info-section h2 {
    font-size: 1.6rem;
  }
}




/* Linke Spalte bleibt beim Scrollen stehen */
.title-column {
  position: sticky;
  top: 120px; /* Abstand von oben, wenn sie „klebt“ */
  align-self: start;
}

.title-column h2 {
  color: #402985;
  margin-bottom: 10px;
}

.title-column p {
  margin-bottom: 15px;
  line-height: 1.5;
}

/* Rechte Spalte scrollt normal weiter */
.scroll-column {
  overflow: visible;
}

.counter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.counter-list li {
  margin-bottom: 40px;
}

.counter-list h3 {
  color: #402985;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

/* Responsiv – bei kleineren Geräten untereinander */
@media (max-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .title-column {
    position: static;
    margin-bottom: 40px;
  }
}





/* ==========================
   Counter List Style (modern)
   ========================== */
.counter-list {
  list-style: none;              /* Standard-Aufzählung entfernen */
  counter-reset: counterlist;    /* Zähler zurücksetzen */
  padding: 0;
  margin: 0;
}

.counter-list li {
    counter-increment: counterlist;
    position: relative;
    background-color: #ffffff;
    border-radius: 30px;
    padding: 25px 25px 25px 70px;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: "Rubik", sans-serif;
}
/* Nummern-Stil */
.counter-list li::before {
    content: counter(counterlist);
    position: absolute;
    left: 25px;
    top: 25px;
    width: 30px;
    height: 30px;
    border: 0px solid #8b4bff;
    border-radius: 16px;
    background-color: #402985;
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Titel */
.counter-list h3 {
  margin: 0 0 8px;
  color: #402985;
 
 
}

/* Text */
.counter-list p {
  margin: 0;
  line-height: 1.6;
  color: #402985;
 font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

/* Responsive Anpassung */
@media (max-width: 768px) {
  .counter-list li {
    padding: 20px 20px 20px 60px;
  }

  .counter-list li::before {
    left: 18px;
    top: 20px;
    width: 26px;
    height: 26px;
    font-size: 0.9rem;
  }

  .counter-list h3 {
    font-size: 1.1rem;
  }

  .counter-list p {
    font-size: 0.95rem;
  }
}



/* === Hintergrundbereich === */
.expert-wrapper {
  background-color: #f2f0f6; /* hellblau */
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
        border-radius: 80px;
    position: relative;overflow: hidden;
}

/* === Weißer Kasten === */
.expert-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  
  background: #fff;
  border-radius: 80px;
  overflow: hidden;
        z-index: 10;
    position: relative;
 
}

/* === Bild links === */
.expert-photo {
  position: relative;
  overflow: hidden;
}

.expert-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-bottom-left-radius: 2rem;
}

/* === Textbereich rechts === */
.expert-details {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

/* === Untertitel === */
.expert-position {
  color: #002b4a;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  margin-bottom: 0.5rem;
}

/* === Name === */
.expert-name {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: #002b4a;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* === Beschreibung === */
.expert-description {
  color: #222;
  line-height: 1.6;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
}

/* === Responsive Design === */
@media (max-width: 900px) {
  .expert-card {
    grid-template-columns: 1fr;
    text-align: center;
        border-radius: 30px;
  }

  .expert-photo img {
    border-bottom-left-radius: 0;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    height: 300px;
  }

  .expert-details {
    padding: 2rem;
  }

  .expert-name {
    font-size: 1.8rem;
  }

  .expert-description {
    font-size: 0.95rem;
  }
    
    .expert-wrapper {
    border-radius: 30px;
    padding: 1.5rem;
   
}
    
    
}
/* ===== Section Layout ===== */
.visual-section {
 
  padding: 6rem 0rem 0rem 0rem;
}

/* Zwei Spalten nebeneinander */
.visual-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  
  margin: 0 auto;
}

/* ===== Bildbereich ===== */
.visual-image {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
z-index: 5
}

.visual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== Textbereich ===== */
.visual-content {
  color: #1a1a1a;
}

.visual-topic {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  color: #6a34cc;
  font-size: clamp(0.8rem, 1vw, 1rem);
  margin-bottom: 0.5rem;
}

.visual-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.visual-subline {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1rem;
}

.visual-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 2rem;
}

/* ===== Button ===== */
.visual-button {
  display: inline-block;
  background-color: #8b4bff;
  color: #fff;
  text-decoration: none;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.visual-button:hover {
  background-color: #6a34cc;
  transform: translateY(-2px);
}

/* ===== Responsive Layout ===== */
@media (max-width: 900px) {
  .visual-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .visual-content {
    margin-top: 2rem;
  }

  .visual-image {
    max-width: 90%;
    margin: 0 auto;
  }

  .visual-title {
    font-size: 1.8rem;
  }

  .visual-subline {
    font-size: 1rem;
  }
    .visual-section {
    padding: 6rem 0rem 3rem 0rem;
}
}


.big-number{
  color: #402985;        /* lila */
  font-size: 48px;       /* Größe -> hier hoch/runter */
  font-weight: 600;
  line-height: 1;
  display: inline-block;
  letter-spacing: -0.02em;
      font-variant-numeric: tabular-nums;
}

.accordion-section {
  background: #fff;
  padding: 6rem 2rem;
}

.accordion-container {

  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

/* Linke Seite */
.accordion-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #402985;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header img.accordion-icon {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

/* Akkordeon-Inhalt */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* Aktiver Zustand */
.accordion-item.active .accordion-content {
  max-height: 500px;
  opacity: 1;
  padding-top: 0.5rem;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

/* Rechte Seite (Bilder) */
.accordion-right {
  position: relative;
}

.accordion-image {
  width: 100%;
  display: none;
 
}

.accordion-image.active {
  display: block;
  animation: fadeIn 0.6s ease forwards;
}

/* Fade-In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsiv */
@media (max-width: 900px) {
  .accordion-container {
    grid-template-columns: 1fr;
  }

  .accordion-right {
    order: -1;
  }

  .accordion-image {
    margin-bottom: 2rem;
  }
}




.accordion-simple {
  background: #fff;
  padding: 6rem 2rem;
}

.accordion-simple__container {
  margin: 0 auto;
 
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Einzelne Items */
.accordion-simple__item {
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
}

/* Header */
.accordion-simple__header {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1rem 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #402985;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-simple__icon {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

/* Inhalt */
.accordion-simple__content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* Aktiv */
.accordion-simple__item.active .accordion-simple__content {
  max-height: 500px;
  opacity: 1;
  padding-top: 0.5rem;
}

.accordion-simple__item.active .accordion-simple__icon {
  transform: rotate(180deg);
}

























.card-slider {
  position: relative;
}

/* Navigation */
.card-slider__nav {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-bottom: 2rem;
}

.card-slider__btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: #e9e6f5;
  color: #402985;
  font-size: 1.4rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.card-slider__btn:hover {
  background: #402985;
  color: #fff;
}

/* Der Trick passiert hier */
.card-slider__viewport {
  position: relative;
  overflow: hidden;

  /* Erweiterung nach rechts bis zum Browserrand */
  width: calc(100vw - ((100vw - 100%) / 2));
}

.card-slider__track {
  display: flex;
  gap: 2rem;
  padding-right: 2rem; /* 👈 DAS ist der Trick */
  transition: transform 0.5s ease;
}

.card-item {
  flex-shrink: 0;
  width: calc(100% - 60px);
  max-width: 420px;
  background: #40298512;
  padding: 2.3rem;
  border-radius: 25px;
}

/* Cards */
.card-item p {
  margin-bottom: 0px;
    margin-bottom: 0px;
   
    color: #402985;
}

.card-item h3 {
 font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    margin-bottom: 5px;
    margin-top: 10px;
    line-height: normal;
}
.card-item img {
    width: 20%;
    height: auto;
    border-radius: 8px;
}


.card-slider__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: #ddd;
  color: #999;
}




.bg-lila-1  {
    background: #846ACF !important;
}

.bg-lila-2  {
    background: #6045B1 !important;
}


.bg-lila-3  {
    background: #523A9D !important;
}

.bg-lila-4  {
    background: #402985 !important;
}







/* Layout */
.category-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
}

/* Rechte Spalte */
.category-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
        padding: 0 0px !important;
}

.category-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Karten */
.category-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 40px;
  height: 100%;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay */
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(64, 41, 133, 0.8),
    rgba(64, 41, 133, 0.3),
    transparent
  );
}

/* Titel */
.category-title {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  color: #fff;
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  text-transform: uppercase;
line-height: 1.2;
    right: 2rem;
}

/* Größen */
.category-card--large {
  min-height: 520px;
}

.category-card--medium {
  min-height: 250px;
}

.category-card--small {
  min-height: 230px;
}

/* Hover */
.category-card:hover img {
  transform: scale(1.03);
  transition: transform 0.6s ease;
}

/* Responsive */
@media (max-width: 992px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-row {
    grid-template-columns: 1fr;
  }

  .category-card--large,
  .category-card--medium,
  .category-card--small {
    min-height: 300px;
  }
}


/* Section */
.system-section {
  position: relative;
  overflow: hidden;
}

/* Intro */
.system-intro {
  max-width: 650px;
  margin-bottom: 5rem;
}

/* Stats Layout */
.system-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  align-items: center;
}

/* Einzelne Statistik */
.stat-item {
  text-align: center;
}

.stat-number {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: #402985;
  line-height: 1.1;
  letter-spacing: -1px;
}

.stat-label {
  margin-top: 0.0rem;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: #402985;
    line-height: normal;
}

/* Hintergrund Shapes */
.system-shape {
  position: absolute;
  width: 400px;
  height: 200px;
  background: #40298512;
  border-radius: 200px;
  z-index: 0;
}

.system-shape-left {
  left: -150px;
  bottom: 50px;
}

.system-shape-right {
  right: -150px;
  bottom: 50px;
}


@media (max-width: 992px) {
/* Hintergrund Shapes */
.system-shape {
  position: absolute;
  width: 270px;
  height: 100px;
  background: #40298512;
  border-radius: 200px;
  z-index: -10;
}

.system-shape-left {
  left: -150px;
  bottom: 150px;
}

.system-shape-right {
  right: -150px;
  bottom: 150px;
}

}
/* Responsive */
@media (max-width: 992px) {
  .system-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .stat-item {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .system-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 3rem;
  }
}














/* =========================
   HERO SECTION
========================= */


.hero-new {
  position: relative;
  padding: 8rem 0 6rem;
  display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10% 8% 8% 8%;
    color: #fff;
    overflow: hidden;
    border-radius: 80px;
  overflow: hidden;
   width: 100%;
    background: url(../img/hero/hero-moon-1.jpg) center center / cover no-repeat;
  color: #fff;
    height: auto
}



/* Overlay */
.hero-new__overlay {
  position: absolute;
  inset: 0;
  background: rgba(64, 41, 133, 0.77);
}

/* =========================
   GRID LAYOUT
========================= */

.hero-new__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* =========================
   LEFT CONTENT
========================= */

.hero-new__content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
    color: white;
}

.hero-new__content h1 span {
  font-weight: 300;
    color: white;
}

.hero-new__content p {
  margin-top: 1.5rem;
  max-width: 500px;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.5;
      color: white;
}

.hero-new__buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
  background: #402985;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
}

.btn-light {
  background: #fff;
  color: #402985;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
}

/* =========================
   RIGHT CARD
========================= */

.hero-new__card {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 40px;
  padding: 2rem;
  color: #402985;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.hero-new__card img {
  width: 120px;
  border-radius: 20px;
}

.quote {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.author span {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* =========================
   FEATURES
========================= */

.hero-new__features {
  position: relative;
  z-index: 2;
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Feature Item */
.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.feature-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.feature-text strong {
  font-weight: 600;
    line-height: 1.2;
	    font-size: 0.95rem;
}

.feature-text span {
  font-size: 0.95rem;
  opacity: 0.85;s
}

@media (max-width: 992px) {
.feature-text strong {
  font-weight: 600;
    line-height: 1.2;
	    font-size: 0.75rem;
}

.feature-text span {
  font-size: 0.75rem;
  opacity: 0.85;
}

}



/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 992px) {

  .hero-new__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-new__features {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-new {
    border-radius: 30px;
	   padding: 22% 6% 12% 6%;
  }
}

/* Mobile */
@media (max-width: 600px) {

  .hero-new {
    padding: 45% 6% 12% 6%;
  }

  .hero-new__features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .feature-item {
    align-items: flex-start;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
  }

  .feature-icon img {
    width: 24px;
    height: 24px;
  }
}














/* Slider Container */
.hero-new__slider {
  position: relative;
  overflow: hidden;
}

/* Track */
.hero-new__track {
  display: flex;
  transition: transform 0.5s ease;
}

/* Einzelne Card */
.hero-new__card {
  min-width: 100%;
  padding: 2rem 0;
}

/* Outline Rahmen */
.hero-new__card-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 40px;
  padding: 2.5rem;
  backdrop-filter: blur(6px);
}

/* Bild */
.hero-new__card-image img {
  width: 180px;
  border-radius: 30px;
}

/* Text */
.hero-new__card-content {
  color: #fff;
}

.quote {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.author {
  margin-bottom: 1.5rem;
}

.author span {
  display: block;
  opacity: 0.8;
  font-size: 0.95rem;
}

/* Navigation */
.hero-new__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
}

.hero-new__nav--prev {
  left: -20px;
}

.hero-new__nav--next {
  right: -20px;
}
/* Wrapper */
.hero-new__advisor {
  position: relative;
  margin-top: 0rem;
  overflow: hidden;
	height: 100%;
}

/* Dünner Outline Rahmen */
.hero-new__advisor::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50px;
  pointer-events: none;
}

/* Track */
.hero-new__advisor-track {
  display: flex;
  transition: transform 0.6s ease;
}

/* Slide */
.hero-new__advisor-slide {
  min-width: 100%;
  display: flex;
  align-items: left;
  gap: 2rem;
  padding: 3rem 5rem 3rem 3rem;
	align-items: center;
}


@media (max-width: 768px) {

 .hero-new__advisor-slide {
    flex-direction: row;
    text-align: left;
    gap: 2rem;
    padding: 2rem 4.5rem 2rem 1.5rem;
    display: flex;
}

  .hero-new__advisor-image img {
    width: 160px;            /* etwas kleiner mobil */
  }

  .hero-new__advisor-content h3 {
    font-size: 1.5rem;
  }
.hero-new__advisor-image img {
    width: 130px!important;
    border-radius: 40px;
}
}




/* Bild */
.hero-new__advisor-image img {
  width: 237px;
  border-radius: 40px;
}

/* Content */
.hero-new__advisor-content {
  color: #fff;
}

.hero-new__advisor-content h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
    color: white;
}

.hero-new__advisor-content p {
  
    color: white;
}


.advisor-name {
    margin-bottom: 0rem;
    font-weight: 600;
    line-height: 1.2;
    font-size: 0.95rem;
    color: white;
    margin-top: 10px;
	text-align: center;
}

.advisor-name span {
  display: block;
  opacity: 0.8;
  font-size: 0.95rem;
	 font-weight: 400;
}

/* Pfeil */
.advisor-next {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;

  background: rgba(255,255,255,0.15)
              url("../img/icon/chevron-right-white.svg")
              center center / 20px no-repeat;

  backdrop-filter: blur(6px);
  transition: background 0.3s ease;
}

.advisor-next:hover {
  background: rgba(255,255,255,0.3)
              url("../img/icon/chevron-right-white.svg")
              center center / 20px no-repeat;
}



.center-mobile {
  display: block;
}

@media (max-width: 768px) {
  .center-mobile {
    display: flex;
    justify-content: center;
  }
}











/* ================================
   SYSTEM VISUAL SECTION
================================ */
/* SECTION OVERLAP */
.system-visual-section {
  margin-top: -370px;
  position: relative;
  z-index: 2;
    padding-bottom: 300px;
}

/* FLEX LAYOUT */
.system-visual-flex {
 
  position: relative;
}

/* LILA BLOCK */
.system-visual-bg {
  width: 100%;
  background: #402985;
  border-radius: 80px;
  padding: 6rem 6rem;
  min-height: 450px;
  position: relative;
    display: flex;
}
/* AWARDS */
.system-awards {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-content: center;
    align-items: center;
}

.system-awards img {
    max-width: 180px;
    padding: 20px;
    background: white;
    /* padding: 20px; */
    border-radius: 25px;
}



@media (max-width: 992px) {
.system-awards img {
    max-width: 140px;
  
}}

/* RECHTE SEITE */
.system-visual-right {
  position: absolute;
  right: 5%;
  top: -80px; /* Feintuning je nach Höhe */
  width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* WEISSE CARD */
.system-visual-card {
  width: 520px;              /* Desktop Breite */
  max-width: 100%;           /* wichtig für Mobile */
  background: #fff;
  border-radius: 60px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.1);
  overflow: hidden;          /* damit Bild Rundung übernimmt */
}
/* TEXT */
.system-visual-note {
  margin-top: 2rem;
  text-align: center;
  color: #402985;
 
}

.system-visual-card {
  overflow: hidden; /* wichtig */
}

.system-visual-card img {
 width: 100%;
  max-width: 520px;
    padding: 40px;
}

@media (max-width: 992px) {
.system-visual-section {

    padding-bottom: 0px;
}
  .system-visual-flex {
    flex-direction: column;
  }

  .system-visual-bg {
    border-radius: 40px;
      width: 100%;
    background: #402985;
    /* border-radius: 80px; */
    padding: 3rem;
    padding: 3rem;
    min-height: 360px;
    position: relative;
          display: block;
  }

   .system-visual-right {
    position: relative;
    right: auto;      /* wichtig */
    top: -80px;        /* wichtig */
    width: 100%;
    margin: 0 auto;   /* zentriert */
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .system-visual-card {
   
    border-radius: 40px;
  }
    .system-awards {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-content: center;
    align-items: center;
    justify-content: center;
}

}












/* Große Card */
.category-card {
  position: relative;
  overflow: hidden;
}

/* Brand Bereich oben */
.category-brands {
  position: absolute;
  top: 25px;
  left: 30px;
 

  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;

  z-index: 3;
}

/* Kreis-Hintergrund */
.brand-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;              /* Weißer Hintergrund */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08); /* optional edler Look */
}

/* Logo im Kreis */
.brand-circle img {
  height: 24px;
  width: auto;
  opacity: 1;
}

/* u.v.m */
.brand-more {
  font-size: 0.8rem;
  font-weight: 600;
  color: #402985;
}



@media (max-width: 992px) {
.brand-circle {
  width: 50px;
  height: 50px;
 
}
.brand-circle img {
  height: 20px;
  width: auto;
  opacity: 1;
}
    
    .category-brands {
   
    gap: 10px;
   
}
    
}

.read-more-toggle {
  background: none;
  border: none;
  color: #402985;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
    padding: 0px;
}

/* Pfeil */
.read-more-toggle::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("../img/icon/chevron-down-lila.svg") no-repeat center;
  background-size: contain;
  transition: transform 0.3s ease;
}

/* Versteckt */
.read-more-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

/* Wenn aktiv */
.read-more-wrapper.active .read-more-content {
  max-height: 500px;
  margin-top: 1rem;
}

.read-more-wrapper.active .read-more-toggle::after {
  transform: rotate(180deg);
}

















/* Sticky */
.main-header {
  position: fixed;      /* statt sticky */
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 9999;
}

/* Container übernimmt Breite */
.nav-wrapper {
  width: 100%;
  padding: 20px 40px;

  background: #fff;
  border-radius: 0px 0px 60px 60px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

/* Logo */
.logo {
  height: 70px;
}

/* Center Links */
.nav-center {
  display: flex;
  gap: 40px;
}

.nav-center a {
  text-decoration: none;
  color: #402985;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-center a:hover {
  opacity: 0.7;
}

/* Right Side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Textlink */
.nav-link {
  text-decoration: none;
  color: #402985;
  font-weight: 500;
}



.nav-toggle {
  display: none;
  width: 34px;
  height: 34px;
  cursor: pointer;
  background: url("../img/icon/menu-2.svg") no-repeat center;
  background-size: contain;
  z-index: 10001;
}

.nav-wrapper.active .nav-toggle {
  background: url("../img/icon/xmark.svg") no-repeat center;
  background-size: contain;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 9998;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}



    
    .no-scroll {
  overflow: hidden;
}
    
   .nav-panel {
  display: flex;
  align-items: center;
  gap: 40px;
}



/* Wrapper */
.nav-mega {
  position: relative;
}

/* Mega Panel */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);

  width: 600px;
  padding: 50px;

  background: #fff;
  border-radius: 30px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.15);

  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;

  z-index: 9999;
}
.mega-menu h4 {
    text-align: center;
 
}
/* Grid */
.mega-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 15px;
}

.mega-grid img {
  width: 100%;
  height: auto;
  display: block;
}

.mega-grid img:hover {
  transform: scale(1.08);
}

/* Hover Aktivierung */
.nav-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-link img {
  height: auto;
  max-height: 80px;   /* begrenzt */
  width: auto;
  display: block;
}

@media (max-width: 992px) {

  .logo {
    height: 50px;
  }

  .nav-toggle {
    display: block;
  }

 .nav-panel {
    position: fixed;
    top: 143px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    width: 95%;
    max-width: 100%;
    height: auto;
    background: #fff;
    border-radius: 50px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 40px;
}
 .nav-wrapper.active .nav-panel {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

  /* Links untereinander */
  .nav-center {
    display: flex;
    flex-direction: column;
    gap: 25px;
      align-items: center;
  }

  .nav-center a {
    font-size: 1.3rem;
  }

  .nav-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

}
@media (max-width: 992px) {
  /* 1. Desktop-Altlasten (Hover/Transform) radikal löschen */
  .nav-mega, 
  .mega-menu, 
  .mega-grid {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important; /* Bricht die 1200px auf */
    box-sizing: border-box !important;
    transform: none !important; /* 🔥 Wichtig: Löscht das translateX(-50%) */
    left: auto !important;
    position: static !important;
  }

  /* 2. Initialer Zustand: Absolut versteckt (kein Hover!) */
  .mega-menu {
    display: none !important;
    opacity: 1 !important;      /* Sichtbarkeit auf 1, damit es bei Klick sofort da ist */
    visibility: visible !important; 
    background: transparent !important;
    box-shadow: none !important;
      padding: 15px;
  }

  /* 3. NUR BEI KLICK (Checkbox) anzeigen */
  #mega-toggle:checked ~ .mega-menu {
    display: block !important;
  }

  /* 4. Das Grid: 3 Spalten mittig */
  .mega-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; 
    gap: 10px !important;
    padding: 0px 0 !important;
    justify-items: center !important;
  }

  /* 5. Die Bilder: Skalierung */
  .mega-grid img {
    display: block !important;
    width: 100% !important;
    max-width: 80px !important; 
    height: auto !important;
    margin: 0 auto !important;
  }

  /* 6. Trigger-Bild zentrieren */
  .nav-mega-trigger {
    display: flex !important;
    justify-content: center !important;
    cursor: pointer;
  }

  /* 🔥 WICHTIG: Deaktiviere den Hover-Effekt für Mobilgeräte komplett */
  .nav-mega:hover .mega-menu {
    display: none !important; /* Verhindert ungewolltes Aufploppen */
  }
  
  /* Nur wenn Checkbox an ist, darf Hover nichts kaputt machen */
  #mega-toggle:checked ~ .mega-menu {
    display: block !important;
  }
}


























/* Top Trust Bar - Bündig mit Navi */
.top-trust-bar {
    background-color: #402985;
    border-radius: 0px 0px 0 0;
    padding: 10px 40px;
    margin-bottom: -1px;
}

.trust-grid {
    display: flex;
    justify-content: space-evenly; /* Verteilt die 3 Icons gleichmäßig */
    align-items: center;
	text-align: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-item img {
    width: 18px;
    height: auto;
    /* Falls das Icon nicht weiß ist, macht dieser Filter es weiß */
    filter: brightness(0) invert(1); 
}

.trust-item span {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 400;
   
    letter-spacing: 0.5px;
}



/* Navi-Wrapper Anpassung (Radius oben entfernen, da jetzt Bar darüber ist) */
.nav-wrapper {
    border-radius: 0 0 60px 60px !important;
}

/* Mobil-Optimierung */
@media (max-width: 992px) {
    .top-trust-bar {
        padding: 8px 20px;
       
    }
    .trust-item span {
        font-size: 10px;
        display: block; /* Text unter Icon falls zu eng */
    }
    .trust-grid {
        gap: 10px;
    }
   
	
	  }



	
	/* Selektiert das <a> mit der Klasse trust-link */
a.trust-link {
    color: #ffffff !important;
    text-decoration: none;
    margin-left: 10px;
    font-weight: 600;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

/* Hover-Zustand */
a.trust-link:hover {
    opacity: 0.8;
    color: #ffffff !important;
    text-decoration: none;
}
	
/* Erhöhte Spezifität für alle Elemente mit einer ID */s
html {
    scroll-behavior: smooth !important;
}

[id] {
    scroll-margin-top: 100px !important; /* Etwas mehr Puffer wegen der neuen Trust-Bar */
}






@media (max-width: 992px) {
    .top-trust-bar {
        overflow: hidden;
        height: 45px; /* Festgelegte Höhe für den Slider */
        display: flex;
        align-items: center;
    }

    .trust-grid {
        display: block !important; /* Flexbox auf Mobil deaktivieren */
        position: relative;
        width: 100%;
    }

    .trust-item {
        display: none; /* Erstmal alle verstecken */
        text-align: center;
        width: 100%;
        animation: fadeEffect 0.8s;
        font-size: 11px; /* Etwas kleiner für Mobile */
    }

    .trust-item.active {
        display: block; /* Nur das aktive Item zeigen */
    }

    @keyframes fadeEffect {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }
}









/* MOON Footer Styles */
.moon-footer {
    background-color: #40298512; /* Das sanfte Hell-Lila deiner Sektionen */
    padding: 80px 0 30px;
    border-radius: 80px 80px 0 0; /* Abrundung oben passend zum Design */
    color: #402985;
    margin: 50px 20px 20px 20px;;
}

.footer-logo {
    height: 60px;
    margin-bottom: 25px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #402985;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #402985;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0px;
}

.footer-links a {
    font-size: 14px;
    color: #402985;
    transition: 0.3s;
}

.footer-links a:hover {
    padding-left: 5px;
    opacity: 0.7;
}

.footer-contact {
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-contact a {
    color: #402985;
    font-weight: 600;
}

.footer-widget {
    text-align: right;
}

/* Footer Bottom Area */
.footer-bottom {
    margin-top: 20px;
    padding-top: 25px;
    border-top: 1px solid rgba(64, 41, 133, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    margin-bottom: 0;
}

.footer-legal {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-bottom: 0;
}

.footer-legal a {
    font-size: 13px;
    color: #402985;
}

/* Social Icons */
.footer-socials a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #402985;
    color: #fff;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 14px;
    transition: 0.3s;
}

.footer-socials a:hover {
    transform: translateY(-3px);
}



.footer-links-wrapper {
    display: flex;
    justify-content: space-between; /* Verteilt die Listen links und rechts */
    gap: 30px; /* Abstand zwischen den beiden Spalten */
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1; /* Beide Listen nehmen gleich viel Platz ein */
}

/* Mobil-Optimierung: Auf dem Handy wieder untereinander */
@media (max-width: 576px) {
    .footer-links-wrapper {
        flex-direction: column;
        gap: 10px;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .moon-footer {
        border-radius: 40px 40px 0 0;
        padding-top: 60px;
    }
    .footer-widget {
        margin-bottom: 20px;
		 text-align: left;
    }
    .footer-legal {
        justify-content: flex-start;
        margin-top: 15px;
    }
	
	

}




.login-screen-area {
    padding: 200px 0px 0px 0px;
   
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.login-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 60px;
    /* box-shadow: 0 15px 50px rgba(64, 41, 133, 0.1); */
    border: 2px solid #eee;;
}




@media (max-width: 992px) {

.login-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 60px;
    /* box-shadow: 0 15px 50px rgba(64, 41, 133, 0.1); */
    border: 2px solid #eee;;
}

}






.login-logo-main {
    width: 250px;
    margin-bottom: 25px;
}


@media (max-width: 992px) {
.login-logo-main {
    width: 160px;
    margin-bottom: 25px;
	 margin-top: 55px;
}}

.login-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.5;
}

.input-wrapper {
    margin-bottom: 20px;
    text-align: left;
}

.input-wrapper label {
    display: block;
    font-weight: 600;
    color: #402985;
    margin-bottom: 8px;
    font-size: 14px;
}

.input-wrapper input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 15px;
    transition: 0.3s;
}

.input-wrapper input:focus {
    border-color: #402985;
    outline: none;
}

.login-utilities {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 13px;
}

.remember-box {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.forgot-link {
    color: #402985;
    text-decoration: underline;
}

.login-divider {
    margin: 30px 0;
    text-align: center;
    position: relative;
}

.login-divider span {
    background: #fff;
    padding: 0 15px;
    color: #999;
    font-size: 13px;
}

.outline-btn {
    background: transparent;
    border: 2px solid #402985;
    color: #402985;
    margin-top: 10px;
}

.outline-btn:hover {
    background: #402985;
    color: #fff;
}

.login-support {
    margin-top: 30px;
    font-size: 12px;
    color: #999;
    line-height: 1.4;
}


.login-card .input-wrapper label span {
    color: #e74c3c; /* Ein etwas schöneres, modernes Rot */
	font-weight: 300
}


/* Zentrierung der Formular-Inhalte */
.login-form {
    display: flex;
    flex-direction: column;
    align-items: center; /* Zentriert alle Kinder-Elemente horizontal */
}

/* Anpassung der Eingabefelder (damit diese linksbündig bleiben) */
.input-wrapper {
    width: 100%; /* Nimmt die volle Breite der Card ein */
    text-align: left;
    margin-bottom: 20px;
}

/* Button Styling für die Mitte */
.login-form .generic-btn {
    width: 60%;         /* Breite der Buttons (kannst du anpassen, z.B. 250px) */
    min-width: 250px;
    margin: 10px auto;  /* Zentriert den Button und gibt Abstände */
    display: block;
    text-align: center;
}

/* Hilfs-Elemente (Checkbox & Vergessen) über die ganze Breite */
.login-utilities {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

/* Trennlinie */
.login-divider {
    width: 100%;
    text-align: center;
    margin: 25px 0;
    position: relative;
    border-bottom: 1px solid #eee;
    line-height: 0.1em;
}

.login-divider span {
    background: #fff;
    padding: 0 15px;
    color: #999;
    font-size: 13px;
}







/* 1. BASIS-STYLING (Gilt für alle Geräte) */
.login-card-ribbon {
    position: absolute;
    top: 20px;
    right: 5px; /* Standard: Überstand für 3D-Effekt */
    background: #402985; /* Standard: MOON Lila */
    color: #ffffff;
    padding: 8px 20px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px 0px 0px 20px;
    z-index: 10;
    transition: all 0.3s ease;
}

/* Der 3D-Knick (Standardmäßig sichtbar) */
.login-card-ribbon::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -10px;
    border-left: 10px solid #2a1b58; /* Dunkler Schatten-Ton */
    border-bottom: 10px solid transparent;
}

/* 2. MOBILE ANPASSUNG (Überschreibt die Basis-Werte unter 992px) */
@media (max-width: 992px) {
    .login-card-ribbon {

    font-size: 14px!important;

    }

    /* Auf Mobile den 3D-Knick ausblenden, da kein Überstand mehr da ist */
   
}

/* Ergänzung für die Registrierungs-Seite */
.login-form .row.w-100 {
    margin-bottom: 10px;
}

/* Damit die Labels in der zweispaltigen Ansicht links bleiben */
.login-form .input-wrapper label {
    text-align: left;
}

/* Spezifisch für die Datenschutz-Checkbox, damit sie linksbündig bleibt */
.flex-column {
    flex-direction: column !important;
}




/* Impressum spezifische Styles */
.lila-text {
    color: #402985;
    font-size: 18px;
    margin-bottom: 15px;
}

.impressum-text {
    font-size: 15px;
    line-height: 1.6;
   
}

.impressum-text strong {
   
}

.mb-50 {
    margin-bottom: 50px;
}

/* Anpassung für die mobile Ansicht */
@media (max-width: 768px) {
    .impressum-text {
        font-size: 14px;
    }
}



.advisor-slide-link {
    display: flex;         /* Wichtig, damit die Bilder nebeneinander bleiben falls gewünscht */
    width: 100%;           /* Füllt den ganzen Slide aus */
    text-decoration: none; /* Entfernt Unterstreichung */
    color: inherit;        /* Behält deine Textfarben bei */
}

.advisor-slide-link:hover {
    text-decoration: none;
    color: inherit;
}

/* Falls die Bilder innerhalb des Links nebeneinander stehen sollen */
.advisor-slide-link .hero-new__advisor-image {
    flex: 1; 
}






















	.sc-eeDRCY .eyyRCl {
    max-width: 840px!important;
    
}