.pagehead_homepage {
    background-color: transparent !important;    
}

/*
.pagehead_homepage #pagehead_logo img {
    filter: invert(1) grayscale(1) brightness(2);
    
}
*/

.section p {
    text-align: center;
}

.section h3 {
    text-align: center;
}

.section_home_teaser {
    position: relative;
    width: 100%;
    min-height: 100vH;
    background-color: #004d60;
    color: #ffffff;        
    text-align: center;
    margin-top: -80px;

    display: flex;
    align-items: center;        /* vertikal zentrieren */
    justify-content: center;    /* horizontal zentrieren */
}

#home_teaser_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;   
    overflow: hidden;
}

#home_teaser_video video {
    position: absolute;
    min-width: 100%; 
    min-height: 100%; 
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);  
    opacity: 0.6;
}

#home_teaser_content {
    position: relative;    
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 0;   
    transform: translateY(40px);     
}

#home_teaser_device, #home_teaser_text {
    display: inline-block;
    vertical-align: middle;
    width: 45%;
}

#home_teaser_device {
    
}

#home_teaser_text {
    padding-left: 30px;
    box-sizing: border-box;
}

#home_teaser_text h1 {
    color: #ffffff;
}

#home_teaser_device img {
    max-width: 100%;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.9))
            drop-shadow(0 0 12px rgba(255, 255, 255, 0.6));
}

.home_teaser_buttons {
    margin-top: 30px;
}

.home_teaser_button {
    display: inline-block;
    border: 1px solid #ffffff;
    color: #ffffff;
    border-radius: 20px;
    font-size: 1.1em;    
    padding: 7px 15px;    
    margin-top: 10px;
    cursor: pointer;   
    vertical-align: middle;
    /* prevent select */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.home_teaser_button:not(:first-child) {
    margin-left: 6px;    
}

.home_teaser_button img {
    height: 30px;
    vertical-align: middle;
    margin-right: 8px;
    filter: invert(1);
}

.home_teaser_button:hover {
    background-color: #004d60;
}

#textCarousel {
  position: relative;
  width: 100%;
  height: 40px; /* je nach Text */
  overflow: hidden;
  font-size: 1.5em;
}

#textCarousel .tc-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s ease;
}

#textCarousel .tc-item.active {
  opacity: 1;
}

.section_features {
    background-color: #f3f4f6;        
}

.section_usecases {
    background-color: #004d60;    
}

.section_usecases h2, .section_usecases h3, .section_usecases p {    
    color: #ffffff;  
}

.section_usecases ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #ffffff;
}

.feature-badges {
  display: grid;
  gap: 20px;
  padding: 20px;
  
  /* Automatische Spalten je nach Platz */
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.badge {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  
  padding: 20px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.badge-icon {
  font-size: 40px; /* Icon-Größe */
  margin-bottom: 12px;
}

.badge-icon img {
  width: 48px;
  height: 48px;
}

.badge-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
}

.badge-text {
  font-size: 0.95rem;
  color: #4b5563;
  margin-top: 6px;
}

/* Container */
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px; 
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;  
}

/* Icon-Kreis */
.feature-icon {
  flex: 0 0 42px;
  height: 42px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;

  /* funktioniert sehr gut auf #004d60 */
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(3px);
}

.feature-icon i {
  color: #ffffff;
  font-size: 20px;
}

/* Titel */
.feature-content h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  color: #ffffff;
  text-align: left !important;
}

/* Text */
.feature-content p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: left !important;
}



.section_extended_uses {
  
}

.section_extended_uses h2 {
  
  font-size: 1.6rem;
  margin-bottom: 25px;
  text-align: left;
}

/* Einzelne Zeilen */
.extended-item {
  display: flex;
  gap: 18px;
  padding: 18px 0;  
  flex-direction: column;
  gap: 10px;
}

.extended-item:last-child {
  border-bottom: none;
}

.ext-icon {
    text-align: center;
}

/* Icon ohne Kreis – dadurch optisch klar unterschiedlich zu Badges */
.ext-icon i {
  
  font-size: 28px;
  margin-top: 4px;
}

/* Titel & Text */
.ext-content h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  
  font-weight: 600;
}

.ext-content p {
  margin: 0;
  
  font-size: 0.95rem;
  line-height: 1.45;
}

.section_newsletter {
    background-color: #f3f4f6;    
}



@media screen and (max-width: 850px) {
    
    #home_teaser_device, #home_teaser_text {
        display: block;
        width: 100%;
        margin-bottom: 30px;
    }

    #home_teaser_text {
        padding-top: 20px;
        padding-left: 0px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .ext-icon i {
        font-size: 26px;
    }

    .home_teaser_button {
      width: 100%;
      box-sizing: border-box;
      margin-left: 0px !important;
      display: block;
    }
}


