﻿@charset "UTF-8";

@import url('grid.css');
@import url('menu.css');
@import url('fonts.css');

/* --- 1. GLOBALE STYLES & HELLE FARBEN --- */
:root {
	--bg-light: #f8fafc;       /* Heller Haupt-Hintergrund (Soft White) */
	--bg-card: #ffffff;   
	--text-white: #ffffff;     /* Pures Weiß für Karten und Boxen */
	--text-main: #1e293b;      /* Dunkles Anthrazit für perfekte Lesbarkeit */
	--text-muted: #64748b;     /* Dezentes Grau für Beschreibungen */
	--text-muted-hell: #9CA7B8;
	--primary: #0284c7;        /* Frisches, professionelles Hellblau */
	--primary-hover: #0369a1;  /* Etwas dunkleres Blau für Hover-Effekte */
	--border-color: #e2e8f0;   /* Sehr helles Grau für feine Trennlinien */
	--color-black: #000000;
	--darck-green: #153240;
	--darck-grey: #666666;
	--h-butto:#D2FD0B;
	--h-butto-dark:#CFF969;
    --cal-primary: #111827;
    --cal-accent: #2563eb;
    --cal-bg-hover: #f3f4f6;
    --cal-border: #e5e7eb;
	--primary-color: #0f172a;     
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Open Sans", sans-serif;
}
body {
	background-color: var(--bg-light);
	color: var(--text-main);
	line-height: 1.6;
}
/* Text Multi Funktions Modul ======================================================== */

.mt{ margin-top:20px;}
.mb{ margin-bottom:20px;}
.mtb{ margin:20px 0 20px 0;}
.mttbb{ margin:60px 0 60px 0;}
.mtttbbb{ margin:80px 0 80px 0;}

.bg-transparent{
	background:transparent;
}
.bg-white{
	background-color: var(--bg-card);
}
.bg-light{
	background-color: var(--bg-light);
}
.bg-dark{
	background-color: var(--darck-green);
}
.bg-primary{
	background-color: var(--darck-grey);
}
/* Basis-Reihe */
.responsive-grid-row {
  display: grid;
  grid-template-columns: 1fr; /* Mobil: Volle Breite untereinander */
  gap: 20px;
  width: 100%;
  margin-bottom: 20px;
}

/* Basis-Boxen */
.responsive-grid-row .grid-item {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

/* Desktop-Raster ab Tablet (768px) */
@media (min-width: 768px) {
  .responsive-grid-row {
    grid-template-columns: repeat(12, 1fr); /* 12er System aktivieren */
  }

  /* Die neue zentrierte Option (ca. 83% breit) */
  .responsive-grid-row .span-10-center { 
    grid-column: 2 / span 10; /* Startet in Spalte 2, füllt 10 Spalten aus, lässt Spalte 12 frei */
  }

  /* Bestehende Optionen */
  .responsive-grid-row .span-12 { grid-column: span 12; }
  .responsive-grid-row .span-8  { grid-column: span 8;  }
  .responsive-grid-row .span-6  { grid-column: span 6;  }
  .responsive-grid-row .span-4  { grid-column: span 4;  }
  .responsive-grid-row .span-3  { grid-column: span 3;  }
}

.space-both{
	padding:40px 0 40px 0;
}
.space-top{
	margin:40px 0 0px 0;
}
.space-botto{
	padding:0px 0 40px 0;
}
.space-none{
	padding:0px 0 0px 0;
}


/* Einstellung ======================================================== */

p {
	color: var(--text-muted);
	margin-bottom: 15px;
	font-size: 18px;
}
.small{
	font-size:14px;
	margin:-20px 0 10px 0;
	color:#000;
}
.relative{
	position:relative;
}
.text-center { text-align: center; }
.white{
	background:var(--text-white);
}

.darck-green{
	background:var(--darck-green);
}

/* --- 2. HEADER & NAVIGATION --- */
header {
	background-color: rgba(255, 255, 255, 0.9);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border-color);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  position: relative; /* Wichtig für die absolute Ausrichtung */
}

/* Das Menü wird absolut in der Mitte des Headers platziert */
#main {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Die rechten Elemente werden automatisch nach rechts geschoben */
.header-actions {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-left: auto; /* Schiebt den Block nach ganz rechts */
}
/* Richtet Text und Telefonnummer vertikal untereinander aus */
.phone-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Linksbündig untereinander */
  line-height: 1.2;        /* Verringert den Zeilenabstand */
}

/* Gestaltet die obere Zeile kleiner */
.phone-label {
  font-size: 12px;         /* Kleinere Schriftgröße */
  color: #666;             /* Graue Textfarbe (optional anpassen) */
  font-weight: normal;
}

/* Optionale Anpassung für die Telefonnummer selbst */
.header-phone {
  font-size: 16px;
  text-decoration: none;
  color: #000;             /* Ihre gewünschte Textfarbe */
  font-weight: bold;
}

.header-btn {
  display: inline-flex;  /* Aktiviert Flexbox im Button */
  align-items: center;   /* Zentriert Icon und Text vertikal */
  gap: 8px;              /* Abstand zwischen Icon und Text */
  padding: 8px 16px;
  background-color: #AEF50A;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}
.header-btn:hover{
  box-shadow: rgba(0, 0, 0, 0.00) 0px 1px 4px;
}
/* Sorgt dafür, dass das SVG die richtige Farbe annimmt */
.btn-icon {
  stroke: currentColor;  /* Nutzt automatisch die Textfarbe (#fff) des Buttons */
  flex-shrink: 0;
  margin-top:2px;
}
@media (max-width: 767px){
	.header-actions{
	display:none;
	}
}
/* Das Logo behält seine natürliche Breite */
.logo {
  flex-shrink: 0;
}
.logo {
	margin-top:5px;
}
.logo img{
	height:60px;
	width:100%;
}
.nav-menu {
	display: flex;
	list-style: none;
	gap: 30px;
}
.nav-menu a {
	color: var(--text-muted);
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	transition: color 0.3s;
}
.nav-menu a:hover {
	color: var(--primary);
}
/* --- 3. HERO SECTION (H1) --- */
.hero {
	padding: 120px 0 80px 0;
	text-align: center;
	background-color: transparent;
	background-image: radial-gradient(at top left, var( --color-black ) 0%, var( --darck-green ) 60%);
}
.redaxo {
	padding: 5px 10px 5px 10px;
	margin-bottom:20px;
	display:inline-block;
	color: var( --h-butto );
	border-style: solid;
	border-width: 1px 1px 1px 1px;
	border-color: var( --h-butto );
	border-radius: 13px 13px 13px 13px;
}
.hero h1 {
	font-size: 46px;
	font-weight: 800;
	margin-bottom: 25px;
	line-height: 1.2;
	color: var(--text-white);
}
.hero p {
	font-size: 20px;
	max-width: 750px;
	color: var(--text-white);
	margin: 0 auto 40px auto;
}
.btn {
	position:relative;
	display: inline-block;
	background-color: var(--h-butto);
	color: #000000;
	padding: 14px 28px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	line-height:1;
	transition: background-color 0.3s, transform 0.2s;
	box-shadow: 0 4px 6px -1px rgba(2, 132, 199, 0.2);
}
.btn:hover {
	background-color: #ffffff;
	transform: translateY(-2px);
}
.btn span{
	padding:0 20px
}
.btn i{
	font-size:20px;
}
.btn span{
	line-height:1.5;
}
/* Linker Pfeil bewegt sich nach links */
.btn:hover .arrow {
  transform: translateX(-5px);
}

/* Linker Pfeil bewegt sich nach links */
.btn:hover .arrow2 {
  transform: translateX(5px);
}

.cvb {
	position:relative;
	display: inline-block;
	background-color: transparent;
	color: #ffffff!important;
	padding: 12px 26px 12px 46px;
	margin-left:20px;
	border-radius: 6px;
	border:2px #ffffff solid;
	text-decoration: none;
	font-weight: 600;
	transition: background-color 0.3s, transform 0.2s;
	box-shadow: 0 4px 6px -1px rgba(2, 132, 199, 0.2);
}
.cvb:hover {
	color:#000000!important;
	background-color: #ffffff;
	transform: translateY(-2px);
}
a.cvb:hover i{
	color:#000000;
}
.arrow,.arrow2,.arrow3 {
	position:absolute;
	display: inline-block;
	transition: transform 0.3s ease;
}
.arrow{	
	left:15px;
	top:15px;
}
.arrow2{
	right:15px;
	top:15px;
}
.arrow3{	
	left:15px;
	top:15px;
}

.tech-info-grid {
	display: grid; 
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
	gap: 30px; 
}

.tech-info-card{ padding:50px 0 0 0}
.tech-info-card img{
	width:auto;
	height:80px;
  /* Bild ist standardmäßig zu 100% in Graustufen */
  filter: grayscale(100%);
  /* Sorgt für einen weichen Übergang */
  transition: filter 0.3s ease;
}
.tech-info-card img:hover {
  /* Beim Hover wird der Graustufen-Filter aufgehoben (0%) */
  filter: grayscale(0%);
}
@media (max-width: 767px){
	.nav-container{
	height:0;
	}
	.hero {
  	padding: 60px 0 60px 0;
  	}
  	.btn{
	display:block;
	}
  	.cvb{
	margin-top:15px;
	margin-left: 0px;
	display:block;
	}
	.tech-info-grid{
	gap: 10px;
	}
	.tech-info-grid {
	grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
	}
	.tech-info-card{ padding:15px 0 0 0,
	}
	.tech-info-card img{
	height: 30px;
	}
}
/* --- 3. TEXT- & STRUKTUR-STYLES (H2 - H6) --- */
.info-grid-pad{
	padding:80px 0 80px 0;
}
.info-grid{
	display: grid; 
	grid-template-columns: repeat(auto-fit, minmax(600px, 1fr)); 
	gap: 80px; 
}
.info-div-thumb img,
.info-div-thumbs img{
	width:100%;
	height:auto;
	border-radius:16px 16px 16px 16px;
}
.info-div-thumbs img{
	filter: grayscale(100%);
	transition: filter 0.3s ease;
}
.info-div-thumbs img:hover{
	filter: grayscale(0%);
}

.img-txt{
	position:absolute;
	bottom:6px;
	width:100%;
	padding:15px 20px 5px 20px;
	border-radius:0px 0px 16px 16px;
	background:rgba(0, 0, 0, 0.46);
	z-index:1;
}
.img-txt p{
	color:#ffffff;
	font-size:20px;
	font-weight:600;
}
.img-txt span{
	font-size:30px!important;
	font-weight:800!important;
}
@media (max-width: 767px){
	.img-txt{
	padding:10px 10px 5px 10px;
	}
	.img-txt p{
	font-size:18px;
	line-height:1.2;
	}
	.img-txt span{
	font-size:22px!important;
	}

}
.info-div-h2 {
	font-size:16px;
	font-weight:600;
	display:inline-block;
	margin-bottom:0px!important;	
	padding: 4px 8px 4px 8px;
	border-radius: 13px 13px 13px 13px;
}
.white .info-div-h2{
	color:var(--text-main);
	border:2px #1e293b solid;	
}
.darck-green .info-div-h2 {
	color:var(--h-butto);
	border:2px var(--h-butto) solid;
}
.info-div h2{
	/*font-size:36px;
	font-weight:800;
	text-transform:uppercase;
	line-height:1.2;
	margin: 5px 0 10px 0!important;*/
	font-size: 36px;
  color: #0a192f;
  margin-bottom: 24px;
  font-weight: 800;
  line-height: 1.25;
}
.info-div ~ .info-div-txt h2 {
	font-size:30px!important;
	text-transform:none;
}

.info-div-h2 h2{
	margin-bottom:0px!important;
}
.info-div-h3 h3{
	font-size:43px;
	font-weight:800;
	text-transform:uppercase;
	line-height:1.2;
	margin: 5px 0 10px 0!important;
}
.white .info-div-h3 h3{
	color:var( --darck-green );
}
.darck-green .info-div-h3 h3{
	color:var(--text-white);
}
.info-div-h4 {
	font-size:30px;
	font-weight:700;
	text-transform: none;/*uppercase*/
	color:var(--darck-green);
	line-height:1.2;
	margin: 0px 0 10px 0!important;
}
.white .info-div-h4 h4{
	color:var( --darck-green );
}
.darck-green .info-div-h4 h4{
	color:var(--h-butto);
}
.white .info-div-txt p{
	color: var(--text-main);
}

.darck-green .info-div-txt p{
	color:#f6f6f6;
}
.info-div-txt li h3{
	margin: 2px 0 10px 0!important;
	font-size:20px;
	font-weight:700;
	line-height:1.2
}
.info-div-txt ul {
  list-style-image: url('../images/checks.svg');
}
.info-div-txt ul {
  list-style: none; /* Standard-Punkte entfernen */
  padding: 0;
}

.info-div-txt ul li {
color: #333;
	font-size: 18px;
  position: relative;
  padding-left: 30px; /* Platz für das Icon schaffen */
  margin-bottom: 10px;
}

.info-div-txt ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top:7px;
  /*top: 50%;
  transform: translateY(-50%);*/ /* Vertikal zentrieren */
  width: 18px; /* Breite des Icons */
  height: 18px; /* Höhe des Icons */
  filter: invert(36%) sepia(91%) saturate(2631%) hue-rotate(178deg) brightness(91%) contrast(98%) !important;
  background-image: url('../images/check.svg');
  background-size: contain;
  background-repeat: no-repeat;
}
.custom-button {
display: inline-block;
  /* Design & Form */
  background-color: var(--h-butto);
  color: #000000; /* Weißer Text */
  padding: 12px 24px; /* Innenabstand (oben/unten links/rechts) */
  margin:15px 0 0 0;
  font-size: 16px;
  font-weight: 600;
  text-decoration:none;
  border: 1px #AEF50A solid;
  border-radius: 6px; /* Abgerundete Ecken */
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  
  /* Interaktion */
  cursor: pointer; /* Zeigt die Hand beim Drüberfahren */
  transition: background-color 0.2s ease, transform 0.1s ease; /* Flüssiger Übergang */
}

/* Hover-Effekt (Mauszeiger über dem Button) */
.custom-button:hover {
  background-color: var(--h-butto-dark);
  box-shadow: rgba(0, 0, 0, 0.0) 0px 1px 4px;
}

/* Active-Effekt (Im Moment des Klickens) */
.custom-button:active {
  transform: scale(0.98); /* Leichtes Eindrücken */
}
.twocolumns{
  column-count: 2;
  column-gap: 30px;
}
.threecolumns{
  column-count: 3;
  column-gap: 30px;
}

@media (max-width: 767px){
	.info-grid{
	display: block; 
	}
	.info-div-h3 h3,
	.info-div-h4 h4{
	font-size:30px;
	}
	.twocolumns{
	column-count: 1;
	column-gap: 0px;
	}
	.threecolumns{
	column-count: 3;
	column-gap: 10px;
	}
	.threecolumns img{
	width:100%;
	height:auto;
	}
	.threecolumns p{
	margin-bottom:0px;
	}
}
/* --- PREMIUM STICKY SLIDE SYSTEM WITH BALANCED COLORS --- */
.mo-scroll-section {
    background-color: var(--darck-green);
    width: 100%;
    padding:60px 0 60px 0;
}

.scroll-container {
  display: flex;
  align-items: flex-start;
  gap: 180px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.left-info {
  position: sticky;
  top: 8rem; /* Abstand zum oberen Bildschirmrand */
  width: 50%;
  color:#fff;
}
.a1{
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--h-butto);
  margin-bottom: 12px;
}
.a2 h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.left-info p {
  font-size: 18px;
  color: var(--text-white);
  line-height: 1.6;
  margin-bottom: 30px;
}
.right-content {
  width: 60%;
  /* Aktiviert den 3D-Kontext für sauberes Stapeln */
  isolation: isolate; 
}

.card {
  position: sticky;
  /* Alle Karten docken am selben Punkt oben an */
  top: 8rem; 
  
  /* Mindesthöhe, damit die Karte den Bildschirm füllt */
  min-height: 40vh; 
  
  /* Abstand nach unten sorgt dafür, dass die nächste Karte hochscrollen kann */
  margin-bottom: 10vh; 
  
  /* Styling & Schatten nach oben verstärkt den Überlappungseffekt */
  background: white;
  border-radius: 12px;
  padding: 50px;
  box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.1);
}
.card:last-child{
  margin-bottom: 0vh!important;
}
/* Optionale Farbcodierung zur visuellen Trennung der Ebenen */
.card:nth-child(1) { background: #f1f5f9; }
.card:nth-child(2) { background: #e2e8f0; }
.card:nth-child(3) { background: #cbd5e1; }
.card:nth-child(4) { background: #f1f5f9; }
.card:nth-child(5) { background: #e2e8f0; }
.card:nth-child(6) { background: #cbd5e1; }

.card-step-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.process-step-card h3 {
  font-size: 26px;
  font-weight: 800;
  margin: 35px 0 15px 0;
  color: var(--text-main);
}
.process-step-card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height:1.5;
  margin-bottom: 25px;
}
.card-timeline-badge {
  display: inline-block;
  background-color: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
/* Desktop-Layout (Ab Tablet/PC-Größe) */
@media (max-width: 767px){
	.scroll-container{
	display: block;
	align-items: none;
	}
	.left-info {
	width:100%;
	height:40vh;
	}
	.right-content{
	width:100%;	
	}
}
/* ================ Logo Line ============================ */
/* --- CORE-LAYOUT (STABIL & RESPONSIV) --- */
.logo-section-title{
	text-align:center;
	font-size: 42px;
	font-weight: 800;
	color: var(--darck-green);
	line-height: 1.2;
	padding-bottom: 40px;
	letter-spacing: -1px;
	max-width:1200px;
	margin:0 auto;
}
.logo-section {
    width: 100%;
    display: block;
    clear: both;
    padding:60px 0 60px 0;
}

.marquee-wrapper {
    overflow: hidden !important;
    width: 100%;
    display: block !important;
    margin-bottom: 2rem;
    background: transparent;
    position: relative;
}

/* Die Schiene hat eine native CSS-Animation, die standardmäßig PAUSIERT ist */
.marquee-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    width: max-content !important;
    will-change: transform;
    animation-duration: 25s; /* Bestimmt die Geschwindigkeit während des Scrollens */
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    
    /* STANDARD: Komplett eingefroren */
    animation-play-state: var(--scroll-state, paused); 
}

/* Definition der Richtungen */
#logo-row-1 {
    animation-name: scrollTrackLeft;
}

#logo-row-2 {
    animation-name: scrollTrackRight;
}

/* Endlos-Keyframes über die exakte Hälfte der Logos (inkl. Duplikate) */
@keyframes scrollTrackLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollTrackRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.logo-item {
    flex-shrink: 0 !important;
    margin-right: 2.5rem; 
}

.logo-item img {
    height: 120px !important;
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
}

@media (min-width: 768px) {
    .logo-item {
        margin-right: 4rem;
    }
    .logo-item img {
        height: 120px !important;
    }
}
@media (max-width: 767px){
	.logo-section {
    padding:60px 10px 60px 10px;
	}
.logo-section-title{
	font-size: 22px;
	}	
	.logo-item {
        margin-right: 2rem;
    }
    .logo-item img {
        height: 60px !important;
    }
}
/* --- 4. TEXT- & STRUKTUR-STYLES (H2 - H6) --- */
.seo-section {
	padding: 60px 0;
}

 /*       h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 30px;
            border-left: 4px solid var(--primary);
            padding-left: 15px;
            color: var(--text-main);
        }*/

        h3 {
            font-size: 24px;
            font-weight: 600;
            margin: 35px 0 15px 0;
            color: var(--text-main);
        }

        h4 {
            font-size: 18px;
            font-weight: 600;
            margin: 25px 0 10px 0;
            color: var(--primary);
        }

        h5 {
            font-size: 15px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 20px 0 10px 0;
            color: #475569;
        }

        h6 {
            font-size: 13px;
            font-weight: 500;
            font-style: italic;
            margin: 15px 0 5px 0;
            color: var(--text-muted);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .service-card {
            background-color: var(--bg-card);
            padding: 30px;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
.service-card i{
	font-size:60px;
	text-align:center;
	margin:0 auto;
}

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
/* Über uns ============================================= */
.pw-experience-section {
  background-color: #0b0f19;
  color: #ffffff;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}
.pw-container {
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 12px;
}
.pw-badge {
  color: #38bdf8;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}
.pw-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}
.pw-description {
  color: #B7C5D5;
}
.pw-description p{
  color: #B7C5D5;
  line-height: 1.6;
  margin-bottom: 15px;
}

.pw-subtext {
  color: #cbd5e1;
}
.pw-subtext p{
  color: #cbd5e1;
  font-weight: 500;
  margin-bottom: 15px;
}

.pw-subtext strong{
	font-weight:700;
}
.pw-subtext ul,
.pw-description ul {
	list-style: none; /* Standard-Punkte entfernen */
	padding: 0;
	margin: 0;
}
.pw-subtext ul li,
.pw-description ul li {
	position: relative;
	padding-left: 1.8em; /* Platz für das SVG schaffen */
	margin-bottom: 0.5em;
	font-size: 16px;
	line-height: 1.5;
}
.pw-subtext ul li::before,
.pw-description ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.25em; /* Richtet das Icon vertikal zur ersten Textzeile aus */
	width: 1.2em; /* Skaliert das SVG flexibel mit der Schriftgröße */
	height: 1.2em;
	background-repeat: no-repeat;
	background-size: contain;
	filter: invert(36%) sepia(91%) saturate(2631%) hue-rotate(178deg) brightness(91%) contrast(98%)!important;
  
	/* Inline-SVG als Data-URI (Achtung: # wurde durch %23 ersetzt) */
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232ecc71' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'></polyline></svg>");
}

.pw-action{
	padding:16px 0 0  0;
	text-align:center;
}
.pw-btn {
  background-color: #AEF50A;
  color: #000;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}
.pw-btn:hover { background-color: #ffffff; }
/* Steps
 ======================================================== */
/* --- 6. PROZESS (DUNKLE SEKTION) --- */
.process-section {
    background-color: #0F172A;
    color: #ffffff;
    padding: 80px 0;
}

.process-header { margin-bottom: 64px; }

.step-card {
    border-left: 2px solid #334155;
    padding-left: 16px;
}

.step-card.active { border-left-color: var(--brand-blue); }

.step-num {
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}

.step-card.active .step-num { color: var(--brand-blue); }

.step-card h4 { margin-bottom: 8px; }
.step-card p {
    font-size: 0.75rem;
    color: #94a3b8;
}
/* Raster-Systeme */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}
/* --- 8. RESPONSIVE DESIGN (MOBILGERÄTE) --- */
@media (max-width: 768px) {
    .grid-5 { grid-template-columns: 1fr; gap: 32px; }
}
/* Service ==============================================*/
/* --- 5. LEISTUNGEN --- */
.services-section { padding: 80px 0; }

.services-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-lead {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 64px auto;
}

.service-card {
    padding: 32px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    border-color: rgba(0, 82, 204, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.icon-box {
    width: 48px;
    height: 48px;
    background-color: #f0f5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-card h3 { margin-bottom: 12px; }
.service-card p {
    color: var(--text-muted);
    font-size: 0.925rem;
    line-height: 1.6;
}


 

/* FAQ ================================================== */
.jf-split-scroll-section {
  /*background-color: #ffffff;
  color: #153240;*/
  padding: 100px 20px;
  font-family: "Open Sans", sans-serif;
}
.jf-split-scroll-section .bg-white{
	color: #153240;
	background-color: var(--bg-card);
}
.bg-light{
	color: #153240;
	background-color: var(--bg-light);
}
.bg-dark{
	color:#ffffff!important;
	background-color: var(--darck-green);
}

.jf-split-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
.jf-left-sticky {
  flex: 1;
  position: sticky;
  top: 100px;
  padding-bottom: 40px;
}
.jf-left-sticky p{
	font-size:18px;
	line-height:1.6;
}
.bg-white .jf-left-sticky p,
.bg-light .jf-left-sticky p{
	color: #153240;
}
.bg-dark .jf-left-sticky p{
	color:#ffffff;
}
.jf-right-scroll-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.jf-badge {
  color: #38bdf8;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}
.jf-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 40px;
}
.jf-btn {
  display: inline-block;
  background-color: #AEF50A;
  color: #000000;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.jf-btn:hover {
  background-color: #38bdf8;
}
.jf-card {
  background: rgba(252, 252, 252, 1);
  border: 1px solid rgba(246, 246, 246, 0.99);
  padding: 40px;
  border-radius: 16px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.jf-card h3 {
  font-size: 1.3rem;
  font-weight:700;
  letter-spacing:-0.3px;
  color: #153240;
  line-height:1.3;
  margin: 0px 0 10px 0!important;
}
.jf-card p {
  color: #333;
  line-height: 1.4;
  font-size: 16px;
}
.jf-card ul {
	color: var(--text-main);
	list-style: none; /* Standard-Punkte entfernen */
	padding: 0;
	margin: 0;
}

.jf-card ul li {
	position: relative;
	padding-left: 1.8em; /* Platz für das SVG schaffen */
	margin-bottom: 0.5em;
	font-size: 16px;
	line-height: 1.5;
}

.jf-card ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.25em; /* Richtet das Icon vertikal zur ersten Textzeile aus */
	width: 1.2em; /* Skaliert das SVG flexibel mit der Schriftgröße */
	height: 1.2em;
	background-repeat: no-repeat;
	background-size: contain;
	filter: invert(36%) sepia(91%) saturate(2631%) hue-rotate(178deg) brightness(91%) contrast(98%)!important;
  
	/* Inline-SVG als Data-URI (Achtung: # wurde durch %23 ersetzt) */
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232ecc71' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'></polyline></svg>");
}
@media (max-width: 991px) {
  .jf-split-container {
    flex-direction: column;
    gap: 40px;
  }
  .jf-left-sticky {
    position: relative;
    top: 0;
  }
}
/* Termine ============================================== */
.cal-section-title{
	text-align:center;
	font-size: 42px;
	font-weight: 800;
	color: var(--darck-green);
	line-height: 1.2;
	padding-top:60px;
	padding-bottom: 40px;
	letter-spacing: -1px;
	max-width:800px;
	margin:0 auto;
}

.cal-wrapper {
    display: grid;
    /* Spalte 1: 200px | Spalte 2 (Kalender): 400px | Spalte 3 (Zeiten): 200px */
    grid-template-columns: 200px 400px 300px;
    gap: 24px;
    /* 200 + 400 + 200 + 48 (Zwei Zwischenräume à 24px) = 848px */
    max-width: 948px; 
    margin: 0px auto 60px auto;
    background: #ffffff;
    border: 1px solid var(--cal-border);
    border-radius: 12px;
    padding: 24px;
    font-family: "Open Sans", sans-serif;
    box-sizing: border-box;
}

/* NEU: Styling für die linke Textspalte */
.info-box {
    padding-right: 16px;
}
.info-company {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    font-weight: 600;
}
.info-box h2 {
    margin: 8px 0 16px 0;
    font-size: 22px;
    font-weight: 700;
    color: var(--cal-primary);
}
.info-meta {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 16px;
}
.info-meta p { margin: 4px 0;font-size: 14px; }
.info-text,
.info-text p {
    font-size: 14px;
    line-height: 1.5;
    color: #6b7280;
}

/* Mittlere Spalte (Kalenderblatt) */

/* Styling für das aktuelle Datum (Heute) */
.cal-day.is-today {
   /* border: 2px solid var(--cal-primary); *//* Dunkler Rahmen um die Zahl */
    font-weight: 700;                     /* Schrift fetter machen */
    color: var(--cal-primary);  
    background: #f6f6f6;          /* Textfarbe anpassen */
}

/* Falls der heutige Tag AUCH freie Termine hat, passen wir das Design an */
.cal-day.has-events.is-today {
    background: #eff6ff;                  /* Heller blauer Hintergrund */
    border-color: var(--cal-accent);      /* Blauer Rahmen */
    color: var(--cal-accent);             /* Blaue Textfarbe */
}

/* Hover-Effekt für den heutigen Tag, wenn er aktiv ist */
.cal-day.has-events.is-today:hover {
    background: var(--cal-accent);
    color: #ffffff;
}


.cal-box {
    padding: 0 8px;
    border-left: 1px solid var(--cal-border);
    border-right: 1px solid var(--cal-border);
}
.cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.cal-month-title { font-weight: 600; font-size: 16px; color: var(--cal-primary); }
.cal-nav-btn { text-decoration: none; color: #6b7280; padding: 6px 12px; border-radius: 6px; border: 1px solid var(--cal-border); }
.cal-nav-btn:hover { background: var(--cal-bg-hover); }

.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; text-align: center; }
.cal-wday-label { font-size: 12px; font-weight: 500; color: #6b7280; padding-bottom: 8px; }
.cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 14px; border: none; background: transparent; color: #d1d5db; }

.cal-day.has-events { background: #eff6ff; color: var(--cal-accent); font-weight: 600; cursor: pointer; transition: all 0.2s ease; }
.cal-day.has-events:hover { background: var(--cal-accent); color: #ffffff; }
.cal-day.no-events { color: #9ca3af; }
.cal-day.empty { visibility: hidden; }

/* Rechte Spalte (Uhrzeiten) */
.time-box {
    padding-left: 16px;
    display: flex;
    flex-direction: column;
}
.time-box h4 { margin-top: 0; font-weight: 600; color: var(--cal-primary); margin-bottom: 16px;}
.time-placeholder { color: #9ca3af; font-size: 13px; }
.time-slots-vertical { display: flex; flex-direction: column; gap: 8px; max-height: 290px; max-width:180px; overflow-y: auto; }
.time-select-btn { width: 100%; padding: 12px; border: 1px solid var(--cal-accent); background: #ffffff; color: var(--cal-accent); border-radius: 6px; font-weight: 500; cursor: pointer; transition: background 0.2s; }
.time-select-btn:hover { background: #eff6ff; }

/* Modal & Buchungserfolg */
.cal-modal { position: fixed; top:0; left:0; width:100%; height:100%; background: rgba(17, 24, 39, 0.4); display: flex; justify-content: center; align-items: center; z-index: 9999; }
.cal-modal-content { background: #fff; padding: 24px; border-radius: 8px; width: 100%; max-width: 400px; position: relative; }
.cal-close { position: absolute; right: 16px; top: 12px; font-size: 24px; cursor: pointer; color: #9ca3af; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; }
.form-group input { width: 100%; padding: 8px; border: 1px solid var(--cal-border); border-radius: 6px; box-sizing: border-box;}
.form-group select { width: 100%; padding: 8px; background: #fff; border: 1px solid var(--cal-border); border-radius: 6px; color: #484848;}
.cal-submit-btn { width: 100%; padding: 10px; background: var(--cal-primary); color: #fff; border: none; border-radius: 6px; cursor: pointer; font-weight: 500; }
.booking-success { max-width: 950px; margin: 20px auto; padding: 16px; background: #f0fdf4; color: #166534; border-radius: 8px; text-align: center; font-weight: 500; font-family: "Open Sans", sans-serif; }

/* Styling für die Datenschutz-Checkbox */
.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}
input[type=checkbox] {
	margin-right:4px;
}
.checkbox label {
	font-size: 14px;
	padding:0 0 20px 0;
	display: inline-block;
}
.form-group-checkbox input[type=checkbox] {
    margin-top: 3px;
    cursor: pointer;
    width: 16px;
    height: 16px;
    accent-color: var(--cal-accent);
}
.form-group-checkbox label {
    font-size: 13px;
    line-height: 1.4;
    color: #4b5563;
    cursor: pointer;
    user-select: none;
}
.form-hp {
    display: none !important;
}
/* Erhöht die Spezifität für das YForm-Textarea-Feld */
/* Der äußere Container */
#yform-formular-nachricht.form-group {
    margin-bottom: 1.5rem !important;
}

/* Die Beschriftung (Label) */
#yform-formular-nachricht label.control-label {
    font-weight: bold !important;
    margin-bottom: 0.5rem !important;
    color: #333 !important;
    display: block !important;
}

/* Das Textarea-Eingabefeld */
.yform textarea  {
    width: 100% !important;
    min-height: 180px !important; /* Erzwingt eine schöne Mindesthöhe */
    padding: 0.75rem !important;
    font-family: inherit !important;
    font-size: 14px !important;
    border: 1px solid #ccc !important;
    border-radius: 4px !important;
    background-color: #fff !important;
    box-sizing: border-box !important;
    resize: vertical !important; /* Erlaubt nur vertikales Vergrößern */
}

/* Fokus-Zustand (wenn der Nutzer in das Feld klickt) */
#yform-formular-nachricht textarea.form-control:focus {
    border-color: #007bff !important;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25) !important;
    outline: none !important;
}

/* Responsive Anpassung für Tablets & Smartphones */
@media (max-width: 850px) {
    .cal-wrapper { grid-template-columns: 1fr; gap: 32px; }
    .cal-box { border-left: none; border-right: none; border-top: 1px solid var(--cal-border); border-bottom: 1px solid var(--cal-border); padding: 24px 0; }
    .time-box { padding-left: 0; }
}
.formular{
	padding:50px;
	margin:60px 0 60px 0;
	border: 1px solid var(--cal-border);
	border-radius: 12px;
	background: #fff;
}
/* Der äußere Container für die Fehlermeldung */
.alert.alert-danger {
    padding: 1rem 1.25rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    color: #842029; /* Dunkelroter Text für gute Lesbarkeit */
    background-color: #f8d7da; /* Hellroter Hintergrund */
    border: 1px solid #f5c2c7; /* Leicht dunklerer roter Rand */
    border-radius: 4px; /* Abgerundete Ecken */
    font-size: 0.95rem;
    line-height: 1.5;
    display: block;
    box-sizing: border-box;
}

/* Falls sich eine Liste (z.B. mehrere YForm-Fehler) im Alert befindet */
.alert.alert-danger ul {
    margin: 0;
    padding-left: 1.25rem;
}

.alert.alert-danger li {
    margin-bottom: 0.25rem;
}

.alert.alert-danger li:last-child {
    margin-bottom: 0;
}
/* Fügt ein Warn-Icon vor dem Text ein */
.alert.alert-danger {
    display: flex;
    align-items: flex-start;
}

.alert.alert-danger::before {
    content: "⚠️"; /* Oder ein passendes Unicode-Symbol */
    font-size: 1.1rem;
    margin-right: 0.75rem;
    line-height: 1.3;
}
/* ===================================================== */
/* Unternehmens Anfrage
 ======================================================= */
.bg2{
	padding:2em 0 2em 0;
	background:#f6f6f6;
} 
.donate-now {
  list-style-type: none;
  margin: 25px 0 0 0;
  padding: 0;
}
.donate-now label{
	display:block;
	font-size:1.4em;
	color:#273469;
	text-align:center;
}

.donate-now .aitem,
.donate-now .citem {
  float: left;
  height: 200px;
  position: relative;
}
.donate-now .aitem{
	width:22%;
	margin-right:3%;
}
.donate-now .aitem:last-child{
	margin-right:0%;
}
.donate-now .citem{
	width:31%;
	margin-right:3%;
}
.donate-now .citem:last-child{
	margin-right:0%;
}


.donate-now .aitem label,
.donate-now .aitem input,
.donate-now .citem label,
.donate-now .citem input {
  display: block;
  position: absolute;
  padding:15px 0 0 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.donate-now .aitem input[type=radio], .donate-now .citem input[type=radio]  {
  opacity: 0.01;
  z-index: 100;
}


.donate-now .aitem,
.donate-now .citem {
  padding: 5px;
  border: 3px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 20px #c3c3c367;
  background-color: #ffffff;
  z-index: 90;
}

.donate-now .aitem:hover,
.donate-now .citem:hover {
  border-radius: 10px;
  border: 3px solid #273469;
} 
.donate-now .aitem.checked,
.donate-now .citem.checked{
  border-radius: 10px;
  border: 3px solid #273469!important;
} 

.donate-now .aitem label i,
.donate-now .citem label i{
	position: absolute;
	display:inline-block;
	width:30px;
	height:30px;
	top: -23px;
	left: 50%;
	transform: translateX(-50%) scale(2);
	border-radius: 50px;
}


.donate-now .aitem label i:before,
.donate-now .citem label i:before{
	content: "\f05d";
	font-family: FontAwesome;
	font-size:15px;
	color:#273469;
	padding:1px;
	border-radius: 50px;
	background:#ffffff;
	opacity: 0;
}
.aitem.checked label i:before,
.citem.checked label i:before{
	opacity: 1;
}

.wrap input[type=checkbox] {
  position: absolute;
  visibility: hidden;
}

/* Icons */
.radiobuttongroup div:nth-child(1){
	text-align:center;
}
.radiobuttongroup div:nth-child(1):before{
	content: "\f102";
	font-size:80px;
	width:100%;
	margin-top:25px;
	display:inline-block;
	font-family: flaticon_mycollection;
	color: #273469;
}

.radiobuttongroup div:nth-child(2){
	text-align:center;
}
.radiobuttongroup div:nth-child(2):before{
	content: "\f108";
	font-size:80px;
	width:100%;
	margin-top:25px;
	display:inline-block;
	font-family: flaticon_mycollection;
	color: #273469;
}
.radiobuttongroup div:nth-child(3){
	text-align:center;
}

.radiobuttongroup div:nth-child(3):before{
	content: "\f105";
	font-size:80px;
	width:100%;
	margin-top:25px;
	display:inline-block;
	font-family: flaticon_mycollection;
	color: #273469;
}
.radiobuttongroup div:nth-child(4){
	text-align:center;
}
.radiobuttongroup div:nth-child(4):before{
	content: "\f107";
	font-size:80px;
	width:100%;
	margin-top:25px;
	display:inline-block;
	font-family: flaticon_mycollection;
	color: #273469;
}
/**/
.radiobuttongroup-1 div:nth-child(1){
	text-align:center;
}
.radiobuttongroup-1 div:nth-child(1):before{
  content: "\f123";
  font-size:80px;
  width:100%;
    margin-top:25px;
  display:inline-block;
font-family: flaticon_mycollection;
  color: #273469;
}
.radiobuttongroup-1 div:nth-child(2){
	text-align:center;
}

.radiobuttongroup-1 div:nth-child(2):before{
  content: "\f124";
  font-size:80px;
  width:100%;
  margin-top:20px;
  display:inline-block;
font-family: flaticon_mycollection;
  color: #273469;
}
.radiobuttongroup-1 div:nth-child(3){
	text-align:center;
}
.radiobuttongroup-1 div:nth-child(3):before{
  content: "\f116";
  font-size:80px;
  width:100%;
    margin-top:20px;
  display:inline-block;
font-family: flaticon_mycollection;
  color: #273469;
}

/**/
.radiobuttongroup-2 div:nth-child(1){
	text-align:center;
}
.radiobuttongroup-2 div:nth-child(1):before{
  content: "\f117";
  font-size:80px;
  width:100%;
    margin-top:25px;
  display:inline-block;
font-family: flaticon_mycollection;
  color: #273469;
}
.radiobuttongroup-2 div:nth-child(2){
	text-align:center;
}

.radiobuttongroup-2 div:nth-child(2):before{
  content: "\f119";
  font-size:80px;
  width:100%;
  margin-top:20px;
  display:inline-block;
font-family: flaticon_mycollection;
  color: #273469;
}
.radiobuttongroup-2 div:nth-child(3){
	text-align:center;
}
.radiobuttongroup-2 div:nth-child(3):before{
  content: "\f121";
  font-size:80px;
  width:100%;
    margin-top:20px;
  display:inline-block;
font-family: flaticon_mycollection;
  color: #273469;
}
.radiobuttongroup-2 div:nth-child(4){
	text-align:center;
}
.radiobuttongroup-2 div:nth-child(4):before{
  content: "\f116";
  font-size:80px;
  width:100%;
    margin-top:20px;
  display:inline-block;
font-family: flaticon_mycollection;
  color: #273469;
}

/**/
.radiobuttongroup-3 div:nth-child(1){
	text-align:center;
}
.radiobuttongroup-3 div:nth-child(1):before{
  content: "\f12a";
  font-size:80px;
  width:100%;
    margin-top:25px;
  display:inline-block;
font-family: flaticon_mycollection;
  color: #273469;
}
.radiobuttongroup-3 div:nth-child(2){
	text-align:center;
}

.radiobuttongroup-3 div:nth-child(2):before{
  content: "\f127";
  font-size:80px;
  width:100%;
  margin-top:20px;
  display:inline-block;
font-family: flaticon_mycollection;
  color: #273469;
}
.radiobuttongroup-3 div:nth-child(3){
	text-align:center;
}
.radiobuttongroup-3 div:nth-child(3):before{
  content: "\f12b";
  font-size:80px;
  width:100%;
    margin-top:20px;
  display:inline-block;
font-family: flaticon_mycollection;
  color: #273469;
}
.radiobuttongroup-3 div:nth-child(4){
	text-align:center;
}
.radiobuttongroup-3 div:nth-child(4):before{
  content: "\f104";
  font-size:80px;
  width:100%;
    margin-top:20px;
  display:inline-block;
font-family: flaticon_mycollection;
  color: #273469;
}
/**/
.radiobuttongroup-4 div:nth-child(1){
	text-align:center;
}
.radiobuttongroup-4 div:nth-child(1):before{
  content: "\f122";
  font-size:80px;
  width:100%;
    margin-top:25px;
  display:inline-block;
font-family: flaticon_mycollection;
  color: #273469;
}
.radiobuttongroup-4 div:nth-child(2){
	text-align:center;
}

.radiobuttongroup-4 div:nth-child(2):before{
  content: "\f122";
  font-size:80px;
  width:100%;
  margin-top:20px;
  display:inline-block;
font-family: flaticon_mycollection;
  color: #273469;
}
.radiobuttongroup-4 div:nth-child(3){
	text-align:center;
}
.radiobuttongroup-4 div:nth-child(3):before{
  content: "\f122";
  font-size:80px;
  width:100%;
    margin-top:20px;
  display:inline-block;
font-family: flaticon_mycollection;
  color: #273469;
}
.radiobuttongroup-4 div:nth-child(4){
	text-align:center;
}
.radiobuttongroup-4 div:nth-child(4):before{
  content: "\f116";
  font-size:80px;
  width:100%;
    margin-top:20px;
  display:inline-block;
font-family: flaticon_mycollection;
  color: #273469;
}



.step-header-1{
	display:block;
	padding:30px 0 0px 0;
	text-align:center;
	text-transform:uppercase;
	color: #273469;
	font-size: 36px;
	font-family: 'Poppins', Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-style: normal;
}
.step-header-2{
	display:block;
	padding:20px 0 30px 0;
	text-align:center;
	text-transform:uppercase;
	color: #273469;
	font-size: 30px;
	font-family: 'Poppins', Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-style: normal;
}


/* Styling Parts */
#part1,
#part2,
#part3,
#part4,
#part5,
#part6 {
  display: block;
  opacity: 1;
  transition: all 1s ease-in-out;
  width: 100%;
}


/* Hide Parts 2 & 3 on Page Load */
#part2,
#part3,
#part4,
#part5,
#part6 {
  opacity: 0;
  height: 0;
  overflow: hidden;
}


/* Show Step 2 */ 
#step2:checked ~ #part2 {
  opacity: 1;
  height: auto;
}

/* Hide Step 1 */
#step2:checked ~ #part1 {
  opacity: 0;
  height: 0;
  display:none;/*neu*/
}

/* Show Step 3 */
#step3:checked ~ #part3 {
  opacity: 1;
  height: auto; 
}

/* Hide Step 2 */
#step3:checked ~ #part2 {
  opacity: 0;
  height: 0;
  display:none;/*neu*/  
}
/* Show Step 4 */
#step4:checked ~ #part4 {
  opacity: 1;
  height: auto; 
}

/* Hide Step 3 */
#step4:checked ~ #part3 {
  opacity: 0;
  height: 0;
  display:none;/*neu*/  
}

/* Show Step 5 */
#step5:checked ~ #part5 {
  opacity: 1;
  height: auto;
}

/* Hide Step 4 */
#step5:checked ~ #part4 {
  opacity: 0;
  height: 0;
  display:none;/*neu*/  
}
/* Show Step 5 */
#step6:checked ~ #part6 {
  opacity: 1;
  height: auto;
}

/* Hide Step 5 */
#step6:checked ~ #part5 {
  opacity: 0;
  height: 0;
  display:none;/*neu*/  
}





.wrap .step-button {
  background-color: #207893;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 15px 2px 0 0!important;
  cursor: pointer;
  transition-duration: 0.4s;
}
.part-button{
  background-color: #c30000;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  padding: 19px 22px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 15px 2px 0 0!important;
  cursor: pointer;
  transition-duration: 0.4s;
}
.wrap .step-button:hover,.part-button:hover{
  background-color: #000000;
}
.items-form{
	width:100%;
	margin:0 auto;
	text-align:center
}
.items-form fieldset {
  padding: 25px;
  margin: 30px auto 30px auto;
  max-width:60%;
  border: 1px #cccccc solid;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background: #F4F4F4;
}
.items-form  input {
  display: block;
  width: 100%;
  margin: 0 0 15px 0;
  font-size: 12px;
  padding: 5px 0px 5px 15px;
  line-height: 28px;
  color: #8c8b8b;
  background: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #cccccc;
}
.items-form .btn {
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  color:#ffffff;
  line-height: 1.43;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  background-color: #c30000;
  border: solid 1px transparent;
  border-radius: 5px;
}
.items-form .btn-primary {
  margin: 20px 0 25px 0px;
    margin-bottom: 25px;
}
@media only screen and (max-width:768px){
	.donate-now .aitem,donate-now .bitem, .donate-now .citem{
	width:100%!important;
	margin-bottom:12px;
	}
}
.alert{
	position:absolute;
	color:#ffffff;
	font-size:18px;
	line-height:1.4;
	width:90%;
	max-width:800px;
	padding:60px 20px 20px 20px;
	top: 20%;
	left: 50%;
	transform: translateX(-50%);
	border:2px #FFA850 dashed;
	background:#c30000;
	z-index:9999999999;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.alert li{
	list-style-type:disc;
	margin-left:20px;
}
.alert:before{
  position:absolute;
  content:'Bitte füllen Sie folgende Punkte aus damit das Formular versendet werden kann'!important; /* Anzeige  vom Namen*/
  line-height:1.1;
  font-size:20px;
  font-weight:600;
  color:#FFFFFF;
  left:20px;
  top: 12px;
  z-index: 999;
}
/* Formular */
/* Standardmäßig alle Schritte außer dem ersten ausblenden */
.yform-element { display: none; }
.yform-element.step-1 { display: block; } /* Erste Frage immer sichtbar */

/* Button-Styling für "Weiter" und "Zurück" */
.form-nav-buttons { margin-top: 20px; display: flex; gap: 10px; }
.form-nav-buttons button { padding: 10px 20px; cursor: pointer; }

/* Button Projekt ====================================================
======================================================================*/
.button-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.button-head-line{
	width:100%;
	display:inline-block;
	text-align:center;
	padding:60px 0 40px 0;
}
/* Das Grid teilt den Platz auf */
.button-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 24px;             /* Etwas mehr Abstand für den Schatten-Effekt */
  padding: 10px 0;       /* Platz nach oben/unten, damit der Schatten nicht abgeschnitten wird */
}

/* Die Buttons mit Schatten und Animation */
.grid-btn {
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  justify-items: center;
  
  width: 100%;           
  /*aspect-ratio: 1 / 1;   */
  height:200px;
  padding: 24px;
  text-decoration:none;
  box-sizing: border-box;
  
  background-color: #ffffff;             /* Reines Weiß für besseren Kontrast zum Schatten */
  border: 1px solid #e2e8f0;             /* Sehr feiner, moderner Rahmen */
  border-radius: 16px;                   /* Schöne, weiche Ecken */
  cursor: pointer;
  
  /* Sanfter, unaufdringlicher Box-Shadow für den Standardzustand */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 
              0 2px 4px -1px rgba(0, 0, 0, 0.03);
  
  /* Steuert die Geschwindigkeit aller Animationen beim Hovern */
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

/* Icons Standard-Styling */
.grid-btn svg {
  width: 84px;           
  height: 84px;
  stroke: #64748b;                       /* Schickes Schiefergrau */
  transition: stroke 0.2s ease;
}

/* Text Standard-Styling */
.grid-btn span {
  font-family: system-ui, -apple-system, sans-serif; /* Moderne System-Schriftart */
  font-size: 18px;       
  color: #000000;
  font-weight: 600;
  margin-top: 12px;
  transition: color 0.2s ease;
}

/* --- ELEGANTER HOVER-EFFEKT --- */
.grid-btn:hover {
  background-color: #f8fafc;             /* Ganz leicht bläulich-grauer Hintergrund */
  border-color: #cbd5e1;
  
  /* Der Button hebt sich optisch leicht an (2 Pixel nach oben) */
  transform: translateY(-2px);
  
  /* Der Schatten wird tiefer und weicher, um die Höhe zu simulieren */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 
              0 4px 6px -2px rgba(0, 0, 0, 0.04);
}

/* Optional: Das Icon und der Text ändern beim Hovern die Farbe zu einer Akzentfarbe (z.B. Blau) */
.grid-btn:hover svg {
  stroke: #00bcd4;                       /* Modernes interaktives Blau */
  filter: brightness(0) saturate(100%) invert(55%) sepia(74%) saturate(1706%) hue-rotate(145deg) brightness(94%) contrast(101%);
}

.grid-btn:hover span {
  color: #00bcd4;                        /* Etwas dunkleres Blau für gute Lesbarkeit */
}

/* --- KLICK-EFFEKT (Active State) --- */
/* Wenn der User aktiv auf den Button draufdrückt */
.grid-btn:active {
  transform: translateY(1px);            /* Drückt sich leicht ein */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06); /* Schatten wird flacher */
}

/* --- Responsive Anpassung --- */
@media (max-width: 900px) {
  .button-grid {
    grid-template-columns: repeat(2, 1fr); 
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .button-grid {
    grid-template-columns: 1fr;            
  }
}
/* Formular YFORM
 ========================================================================== */
/* Multistep-Sichtbarkeit */
.form-step {
    display: none;
}
.form-step.active {
    display: block;
}

/* Raster nur für die Auswahl-Kacheln */
.button-grid,
.button-grid > div:not(.step-nav) {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 15px !important;
    margin-bottom: 25px;
    width: 100%;
}

/* Die Feld-Überschrift über dem Grid spannen */
.button-grid > label,
.button-grid > div:not(.step-nav) > label,
.button-grid .control-label {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    display: block !important;
    font-size: 1.1rem;
    margin-bottom: 10px !important;
    font-weight: bold;
}

.button-grid br, 
.button-grid > div:not(.step-nav) br {
    display: none !important;
}

/* Stylt die Kacheln für Radiobuttons und Checkboxen */
.button-grid .form-check,
.button-grid .checkbox, 
.button-grid .radio {
    position: relative;
    margin: 0 !important;
    padding: 20px !important;
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    display: block !important;
}

.button-grid .form-check:hover,
.button-grid .checkbox:hover,
.button-grid .radio:hover {
    background: #e9ecef;
    border-color: #0d6efd;
}

/* 
   DIE KORREKTUR: Nur die Inputs INNERHALB von .form-check, .checkbox 
   und .radio unsichtbar machen. Das schützt die normalen Textfelder in Schritt 6!
*/
.button-grid .form-check input[type=checkbox], .button-grid .form-check input[type=radio], .button-grid .checkbox input[type=checkbox], .button-grid .radio input[type=radio] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0 !important;
    cursor: pointer;
    z-index: 2;
}

/* Kachel-Labels */
.button-grid .form-check label,
.button-grid .checkbox label,
.button-grid .radio label,
.button-grid .form-check-label {
    cursor: pointer;
    font-weight: bold;
    margin: 0 !important;
    display: block;
    width: 100%;
    pointer-events: none;
    grid-column: auto !important;
}

.button-grid .form-check label small,
.button-grid .checkbox label small {
    display: block;
    font-weight: normal;
    color: #6c757d;
    margin-top: 4px;
}

/* Markierter Zustand */
.button-grid .is-selected {
    background: #e7f1ff !important;
    border-color: #0d6efd !important;
    color: #0c4128 !important;
    box-shadow: 0 0 0 1px #0d6efd;
}

/* Schritt 6: Normale Text-Eingabefelder explizit sichtbar halten */
.multistep-container .form-group input[type=text], .multistep-container input[type=text] {
    display: block !important;
    width: 100% !important;
    padding: 10px 15px !important;
    background-color: #fff !important;
    border: 1px solid #ccc !important;
    border-radius: 4px !important;
    opacity: 1 !important;
    position: static !important;
    z-index: 1 !important;
}

/* Datenschutz-Checkbox-Ausrichtung */
.multistep-container .form-group.yform-element[id*="datenschutz"] input[type=checkbox] {
    opacity: 1 !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    margin-right: 10px;
    z-index: 1 !important;
}

/* Navigation-Buttons */
.step-nav {
    display: flex !important;
    justify-content: space-between;
    margin-top: 20px;
    width: 100%;
    grid-column: 1 / -1;
}
.step-nav .btn-prev {
    background-color: #6c757d;
    color: white;
}
.step-nav .btn-next, .step-nav input[type=submit], .step-nav .btn-primary {
    background-color: #0d6efd;
    color: white;
    margin-left: auto;
}
/* Blendet die Labels über den Textfeldern in Schritt 6 aus */
.multistep-container .form-group:not([id*="datenschutz"]) > label {
    display: none !important;
}

/* Garantiert die native Sichtbarkeit und Formatierung der Text-Inputs */
.multistep-container input[type=text] {
    display: block !important;
    width: 100% !important;
    padding: 12px 15px !important;
    font-size: 1rem;
    background-color: #ffffff !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 6px !important;
    margin-bottom: 15px;
    opacity: 1 !important;
    position: static !important;
}
.form-head{
	text-align:center;
	margin:20px 0 20px 0;
	font-size:24px;
	font-weight:700;
}
.multistep-container{
	font-size:18px;
	color:#000;
	text-align:left;
	padding:12px 15px;
	background:#f6f6f6;
	border:1px #ccc solid;
	margin:50px auto 50px auto;
}
/* Referenzen
 =================================================== */
/* Styling direkt als CSS-Block für saubereren Code und Hover-Effekte */
.sidebar-box-title {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #202020;
  text-transform: capitalize;
  border-bottom: 1px solid #0284c7;
  padding: 1rem 0 0.4rem 0;
} 
.reference-sidebar {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 0.3rem 0 1rem 0;
  max-width: 240px;
}
.reference-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0 0.5rem;
  display: flex;
  flex-direction: column; /* Sorgt für die Ausgabe untereinander */
  gap: 0.6rem;
}
.reference-sidebar li {
 position:relative;
}
.reference-sidebar li a {
 position:relative;
 color: #777;
 text-decoration: none;
 transition: color 0.15s ease, padding-left 0.15s ease;
 display: inline-block;
}
.reference-sidebar li::before{
  position: relative;
  top: 1px;
  display: inline-block;
  text-indent: 0;
  min-width: 25px;
  content: '\f061';
  font: 300 14px 'FontAwesome';
  line-height: normal;
  line-height: inherit;
  color: #aeb1be;
}
.reference-sidebar a:hover {
  color: #000;
  padding-left: 4px; /* Subtiler siteInspire-Effekt beim Drüberfahren */
}
.reference-sidebar .active a {
  color: #000;
  font-weight: 600;
}
.reference-sidebar li:hover::before{
	color:#000;
}

.reference-sidebar li.active::before{
	color:#000;
}

.sidebar-box-title .icon {
  margin-right: 0.5rem;
  color: #0284c7;
  font-size: 1rem;
}
/* Container für alle Einträge */
.reference-container {
    display: flex;
    flex-direction: column;
    gap: 40px; /* Abstand zwischen einzelnen Referenzen */
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

/* Das 2-spaltige Grid für einen Eintrag */
.reference-grid {
    display: grid;
    /*grid-template-columns: 1fr 1fr; /* Zwei gleich große Spalten */
    /* Linke Spalte nimmt 1 Teil, rechte Spalte 1.5 Teile des Platzes ein */
    grid-template-columns: 1fr 1.4fr;     
    gap: 100px; /* Abstand zwischen linker und rechter Spalte */
    background: #f9f9f9;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Linke Spalte */
.ref-col-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ref-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    object-fit: cover;
}

.ref-review {
    background: #fff;
    border-left: 4px solid #007bff; /* Blauer Akzentbalken */
    padding: 15px;
    margin: 0;
    font-size:16px;
    font-style: italic;
    border-radius: 0 4px 4px 0;
}
.ref-review p{
	font-size:16px;
}

/* Rechte Spalte */
.ref-col-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ref-headline {
    margin: 0;
    font-size: 1.75rem;
    color: #333;
}

.ref-badge {
    align-self: flex-start;
    background: #e9ecef;
    color: #495057;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.ref-description {
    color: #555;
    line-height: 1.6;
}
.ref-description p{
	font-size:16px;
}
.ref-description p a,
.ref-description a{
	color: #555;
	font-size:16px;
	line-height:1.4;
	text-decoration:none;
}
.ref-description a:hover{
	text-decoration:underline;
}
.ref-description ul{
	margin:0 0 20px 25px;
}

/* Button Styling */
.ref-btn {
    display: inline-block;
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.2s ease;
}

.ref-btn:hover {
    background: #0056b3;
    color: #fff;
}
/* Container für den Zurück-Button */
.ref-back-wrapper {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
}

/* Styling für den Zurück-Button */
.ref-btn-back {
    display: inline-flex;
    align-items: center;
    background: #6c757d; /* Dezentes Grau */
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.2s ease, transform 0.2s ease;
}

.ref-btn-back:hover {
    background: #5a6268;
    color: #fff;
    transform: translateX(-3px); /* Leichter Bewegungseffekt nach links beim Hovern */
}


/* Responsive Design für Smartphones und kleine Tablets */
@media (max-width: 768px) {
    .reference-grid {
        grid-template-columns: 1fr; /* Schaltet bei kleinen Bildschirmen auf 1 Spalte um */
        gap: 20px;
    }
}

/* Back to Top
 ========================================================================== */
#back-top{
    display: none;
    text-decoration: none;
    position: fixed;
    right: 90px;
    bottom: 80px;
    overflow: hidden;
    width:60px;
    height:60px;
    border: 1px solid #fff;
    border-radius:4px;
    background: url(../images/totop.png) no-repeat center center rgba(174,245,10,0.9);
    z-index:99;
}
#back-top:hover {
    /*outline: none;*/
    background: url(../images/totop_2.png) no-repeat center center rgba(0,0,0,0.9);
}
@media only screen and (max-width: 1199px) {
    #back-top {
        display: none !important;
    }
}

   
/* Footer =============================================== */
        /* --- 5. HELLER FOOTER MIT TRUST BADGES --- */
        footer {
            background-color: #ffffff;
            padding: 60px 0 30px 0;
            /*margin-top: 80px;*/
            border-top: 1px solid var(--border-color);
        }

        .agentur-trust-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
            padding-bottom: 40px;
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 30px;
        }

        .trust-badge-item {
            display: flex;
            align-items: center;
            gap: 15px;
            flex: 1 1 220px;
        }

        .trust-icon {
            width: 36px;
            height: 36px;
            fill: var(--primary);
        }

        .trust-img-badge {
            height: 36px;
            width: auto;
            object-fit: contain;
            /* Filter angepasst: Färbt das Logo im hellen Design passend in dein Markenblau ein 
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(180deg);*/
            filter: brightness(0) saturate(100%) invert(39%) sepia(44%) saturate(4545%) hue-rotate(177deg) brightness(89%) contrast(98%);
        }

        .trust-text {
            display: flex;
            flex-direction: column;
            line-height: 1.3;
        }

        .trust-text strong {
            font-size: 14px;
            color: var(--text-main);
            font-weight: 600;
            margin-bottom: 2px;
        }

        .trust-text span {
            font-size: 12px;
            color: var(--text-muted);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-muted);
            font-size: 14px;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            margin-left: 20px;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--primary);
        }
        /* --- ERGÄNZENDE STYLES FÜR DEN MEHRSPALTIGEN FOOTER --- */
        .footer-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            padding: 20px 0 40px 0;
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 30px;
        }

        .footer-column h4 {
            color: var(--text-main);
            font-size: 16px;
            font-weight: 700;
            text-transform: none;
            letter-spacing: normal;
            margin-bottom: 15px;
        }

        .footer-list {
            list-style: none;
        }

        .footer-list li {
            margin-bottom: 10px;
            font-size: 14px;
            color: var(--text-muted);
        }

        .footer-list a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-list a:hover {
            color: var(--primary);
        }

        .contact-info li {
            color: var(--text-muted);
        }
        

        /* --- 6. RESPONSIVE DESIGN --- */
        @media (max-width: 768px) {
            .nav-menu { display: none; }
            .hero h1 { font-size: 30px; }
            .agentur-trust-footer { display: grid; grid-template-columns: 1fr 1fr; }
            .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
            .footer-links a { margin: 0 10px; }
        }
/* Kontakt Seite ============================================= */

.qr img{
	width:100%;
	height:auto;
}
/* Beratungsgespräch ===================================== */
.ecard{
	padding:15px;
	border-radius: 8px;
	text-align:center;
	border: 1px solid #dadce0; /* Subtiler Google-Rahmen */
	background:#ffffff;
}
.ecard img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
}
.ecard h3 {
	font-size:1.2em;
	margin:10px 0 12px 0!important;
	padding:0!important;
}
.ecard p {
	color: rgb(102, 102, 102);
	font-size: 14px;
	margin: 0px 0px 7px;
}
/* Button-Styling mit Icon-Ausrichtung */
.ecard-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
}

.ecard-btn {
	display: inline-flex;  /* Aktiviert Flexbox im Button */
	align-items: center;   /* Zentriert Icon und Text vertikal */
	gap: 8px;              /* Abstand zwischen Icon und Text */
	padding: 6px 16px;
	font-size:14px;
	background-color: #AEF50A;
	color: #000;
	text-decoration: none;
	border-radius: 6px;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.1s ease;
}
.ecard-btn:hover{
	box-shadow: rgba(0, 0, 0, 0.00) 0px 1px 4px;
}

/* Linke Karte: Perfekte vertikale & horizontale Zentrierung */
.card-image-container {
	display: flex;
	align-items: center;
	justify-content: center;
}
.card-image-container img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
}
/* Bild-Anpassung */
.responsive-img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Rechte Karte: Text-Inhalte */
.card-title {
	margin-top: 0;
	margin-bottom: 10px;
}

.card-description {
	font-size: 14px;
	line-height: 1.4;
	margin-bottom: 15px;
}

/* Google-Rating Card ================================= */
.google-rating-card {
  font-family: "Open Sans", sans-serif;
  text-align: center;
  padding: 24px;
  background-color: #ffffff;
  border: 1px solid #dadce0; /* Subtiler Google-Rahmen */
  border-radius: 12px;
  width: 200px;
  margin: 20px auto;
}
.google-logo {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 0px;
}

.star {
  color: #fbbc05; /* Original Google-Gelb */
  font-size: 28px;
}

.rating-text {
  color: #3c4043; /* Dunkelgrau für Google-Texte */
  font-size: 15px;
  margin: 0;
}

/* Info Text =========================================== */
.kont-info{
	font-family: "Open Sans", sans-serif!important;	
}
.kont-info p{
	color:#333;
	font-size:16px;
	line-height:1.4;
	margin-bottom:15px;
}
.kont-info h2{
	
}
.kont-info h3{
	font-size: 20px!important;
	font-weight: 600;
	margin: 10px 0 15px 0!important;
	color: var(--text-main);	
}

.info{
	font-family: "Open Sans", sans-serif!important;
}
.info p{
	font-size:15px;
	line-height:1.4;
	margin-bottom:15px;
	color: var(--text-main);
}
.cont-font a,
.kont-info a,
.info a{
	color:#333;
	text-decoration:none;
}
.cont-font a:hover,
.kont-info a:hover,
.info a:hover{
	text-decoration:underline;
}
.info h3{
	font-size: 20px!important;
	font-weight: 600;
	margin: 10px 0 15px 0!important;
	color: var(--text-main);	
}
.info ul {
	color: var(--text-main);
	list-style: none; /* Standard-Punkte entfernen */
	padding: 0;
	margin: 0;
}

.info ul li {
	position: relative;
	padding-left: 1.8em; /* Platz für das SVG schaffen */
	margin-bottom: 0.5em;
	font-size: 15px;
	line-height: 1.5;
}

.info ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.25em; /* Richtet das Icon vertikal zur ersten Textzeile aus */
	width: 1.2em; /* Skaliert das SVG flexibel mit der Schriftgröße */
	height: 1.2em;
	background-repeat: no-repeat;
	background-size: contain;
	filter: invert(36%) sepia(91%) saturate(2631%) hue-rotate(178deg) brightness(91%) contrast(98%)!important;
  
	/* Inline-SVG als Data-URI (Achtung: # wurde durch %23 ersetzt) */
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232ecc71' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'></polyline></svg>");
}
.cont-font{
	font-family: "Open Sans", sans-serif!important;
}
.cont-font p{
	color:#333;
	font-family: "Open Sans", sans-serif!important;
	font-size:16px;
	line-height:1.4;
	margin-bottom:15px;
}

.cont-font h1{
	font-family: "Open Sans", sans-serif!important;
}
.cont-font h2{
	font-family: "Open Sans", sans-serif!important;
}
.cont-font h3{
	font-family: "Open Sans", sans-serif!important;
}
.cont-font h4{
	font-family: "Open Sans", sans-serif!important;
	font-size:28px;
	font-weight:700;
	letter-spacing:-1.5px;
	margin: 0px 0 12px 0!important;
}
.cont-font h5{
	font-family: "Open Sans", sans-serif!important;
}
.cont-font h6{
	font-family: "Open Sans", sans-serif!important;
}

.cont-font ul {
	color: var(--text-main);
	list-style: none; /* Standard-Punkte entfernen */
	padding: 0;
	margin: 0;
}

.cont-font ul li {
	position: relative;
	padding-left: 1.8em; /* Platz für das SVG schaffen */
	margin-bottom: 0.5em;
	font-size: 16px;
	line-height: 1.5;
}

.cont-font ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.25em; /* Richtet das Icon vertikal zur ersten Textzeile aus */
	width: 1.2em; /* Skaliert das SVG flexibel mit der Schriftgröße */
	height: 1.2em;
	background-repeat: no-repeat;
	background-size: contain;
	filter: invert(36%) sepia(91%) saturate(2631%) hue-rotate(178deg) brightness(91%) contrast(98%)!important;
  
	/* Inline-SVG als Data-URI (Achtung: # wurde durch %23 ersetzt) */
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232ecc71' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'></polyline></svg>");
}

.zwei{
	column-count: 1;       /* Teilt den Text zwingend in 2 Spalten auf */
	column-gap: 0px;      /* Bestimmt den Abstand zwischen den Spalten */
}



@media (min-width: 768px){
	.qr{
	text-align:right;	
	}
	.qr img{
	width:150px;
	height:auto;
	text-align:right;
	}
	.ecard{
	text-align:left;
	}
	.google-rating-card {
	width: 100%;
	display:inline-block;
	}
	.zwei{
	column-count: 2;       /* Teilt den Text zwingend in 2 Spalten auf */
	column-gap: 40px;      /* Bestimmt den Abstand zwischen den Spalten */
	}
}

/* Scroll animation ========================================== */

/* Der unsichtbare Startzustand */
.fade-in-element {
  opacity: 0;
  transform: translateY(50px);
  /* Hier wird die Dauer eingestellt (z. B. 1.5 Sekunden statt 0.6 Sekunden) */
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

/* Der sichtbare Zustand (bleibt gleich) */
.fade-in-element.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================ */
/* ========================================== */
/* REDAXO STARTSEITEN TEASER MODULE          */
/* ========================================== */

.mo-startpage-teaser {
  background-color: #f4f5f7; /* Heller, leicht gräulicher Hintergrund analog zur Phasen-Sektion */
  padding: 100px 0;
  font-family: inherit;
  width: 100%;
}

.mo-teaser-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.mo-teaser-row {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap; /* Responsive: Bricht auf Smartphones automatisch um */
}

/* Linke Spalte */
.mo-teaser-col-text {
  flex: 1;
  min-width: 320px;
}

.mo-teaser-subtitle {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #00bcd4; /* Akzentfarbe Cyan */
  margin-bottom: 12px;
  font-weight: 700;
}

.mo-teaser-heading {
  font-size: 36px;
  color: #0a192f; /* Ihr tiefes Dunkelblau */
  margin-bottom: 24px;
  font-weight: 800;
  line-height: 1.25;
}

.mo-teaser-lead {
  font-size: 16px;
  line-height: 1.65;
  color: #4a5568;
  margin-bottom: 32px;
}

.mo-teaser-btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: #0a192f; /* Dunkelblaues Button-Design */
  color: #ffffff;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(10, 25, 47, 0.1);
}

.mo-teaser-btn:hover {
  background-color: #00bcd4; /* Wechselt beim Hovern zu Cyan */
  color: #0a192f;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 188, 212, 0.2);
}

/* Rechte Spalte (Grafik) */
.mo-teaser-col-visual {
  flex: 1;
  min-width: 320px;
  display: flex;
  justify-content: center;
}

.mo-interface-mockup {
  width: 100%;
  max-width: 440px;
  background: #0a192f;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(10, 25, 47, 0.15);
  overflow: hidden;
}

.mo-mockup-header {
  background: #172a45;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.mo-mockup-title {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-family: monospace;
  margin-left: auto;
}

.mo-mockup-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mo-code-line {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.mo-accent-line {
  background: #00bcd4; /* Akzentlinie im "Code" */
}

.mo-w-30 { width: 30%; }
.mo-w-40 { width: 40%; }
.mo-w-60 { width: 60%; }
.mo-w-70 { width: 70%; }
.mo-w-80 { width: 80%; }

/* Mobile Optimierung */
@media (max-width: 768px) {
  .mo-startpage-teaser {
    padding: 60px 0;
  }
  .mo-teaser-heading {
    font-size: 28px;
  }
  .mo-teaser-row {
    gap: 40px;
  }
}

/* Marquee =========================================================== */
/* Container bricht sauber aus und nutzt die volle Bildschirmbreite */
.rex-marquee-body {
  background-color: #f4f5f7;
  padding: 50px 0;
  font-family: inherit;
  width: 100%;
}
.rex-marquee-body h2{
	text-align:center;
  font-size: 36px;
  color: #0a192f;
  margin-bottom: 24px;
  font-weight: 800;
  line-height: 1.25;	
}
.rex-image-marquee {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    overflow: hidden !important;
    background: transparent; /* Hintergrundfarbe bei Bedarf anpassen */
    padding: 20px 0 !important;
    
    /* Grid stapelt beide Tracks kollisionsfrei */
    display: grid !important;
    grid-template-columns: 1fr !important;
    min-height: 190px !important; /* Verhindert, dass der Container kollabiert */
}

/* Schienen-Verlauf der Bilder */
.rex-image-marquee .rex-marquee-track {
    grid-area: 1 / 1 !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
    align-items: center !important;
    gap: 20px !important;
    padding-right: 20px !important;
}

/* Erster Track startet normal */
.rex-image-marquee .rex-marquee-track:first-of-type {
    animation: rexMarqueeScroll1 150s linear infinite !important; /* Gewünschte, langsame 50s */
}

/* Zweiter Track startet direkt dahinter */
.rex-image-marquee .rex-marquee-track:last-of-type {
    animation: rexMarqueeScroll2 150s linear infinite !important;
}

/* Bilder-Boxen innerhalb des Moduls */
.rex-image-marquee .rex-marquee-item {
    flex-shrink: 0 !important;
    display: block !important;
}

.rex-image-marquee .rex-marquee-item img {
    height: 150px !important; /* Feste Bildhöhe */
    width: auto !important;   /* Proportionale Breite */
    display: block !important;
}

/* Pause bei Hover */
.rex-image-marquee:hover .rex-marquee-track {
    animation-play-state: paused !important;
}

/* Eigene Keyframes zur Bewegung */
@keyframes rexMarqueeScroll1 {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}

@keyframes rexMarqueeScroll2 {
    0% { transform: translateX(100%); }
    100% { transform: translateX(0%); }
}

/* Leistungen ===================================== */
/* --- Grids & Spacings --- */
.grid-3-columns {
    display: grid;
    /* Erzeugt exakt 5 gleich große Spalten nebeneinander auf dem Desktop */
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

/* Optimierung für kleinere Bildschirme (Tablets & Notebooks) */
@media (max-width: 1200px) {
    .grid-3-columns {
        /* Schaltet auf ein horizontales Scroll-Band um, damit nichts quetscht */
        grid-template-columns: repeat(5, 300px);
        overflow-x: auto;
        padding-bottom: 20px;
        /* Schönes, flüssiges Scrollen auf Touch-Geräten */
        scroll-snap-type: x mandatory; 
    }
    
    .service-card {
        scroll-snap-align: start;
    }
}

/* Optimierung für Smartphones */
@media (max-width: 768px) {
    .grid-3-columns {
        /* Auf dem Handy stehen die Karten klassisch untereinander für beste Lesbarkeit */
        grid-template-columns: 1fr;
        overflow-x: visible;
    }
}
.grid-2-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
    align-items: center;
}

.services-grid-section, .features-section {
    padding: 100px 0;
}

.services-grid-section { background-color: var(--text-white); }
.features-section { background-color: var(--light-bg); }

.section-header {
    max-width: 700px;
}

/* --- Service Cards --- */
.service-card {
    background-color: var(--text-white);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.service-card h3{
	overflow-wrap: break-word;
}
.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-bullet-list {
    list-style: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.service-bullet-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.service-bullet-list li::before {
    content: "•";
    color: var(--darck-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* --- Feature Section Items --- */
.feature-item {
    margin-top: 25px;
}
.feature-item strong {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.features-image-placeholder {
    background-color: #cbd5e1;
    border-radius: 12px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-box {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 30px;
    border-radius: 8px;
    width: 80%;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

/* --- CTA Section --- */

.cta-section {
    background-color: var(--darck-green);
    color: var(--text-white);
    padding: 80px 0;
}
.cta-section h2 { color: var(--text-white); }
.cta-section p { color: rgba(255, 255, 255, 0.9); font-size: 1.1rem; margin-bottom: 30px;}

/* Referenzen ================================== */
.reference-item{
	text-align:center;
}
.reference-item a{
	text-decoration:none;
}
.image-wrapper{
	overflow: hidden;
	/*aspect-ratio: 4/3;*/
	margin-bottom: 0.75rem;
	padding:12px;
	background:#F4F4F5;
}
.image-wrapper img{
	width:100%!important;
	height:auto!important;
}
/* Grid Container ============================== */

/* Basis-Styling für Mobilgeräte (Mobile-First) */
.grid-container {
  display: grid;
  grid-template-columns: 1fr; /* Auf kleinen Bildschirmen alles einspaltig */
  gap: 20px;                 /* Abstand zwischen den Boxen */
}

/* Responsive Aufteilung ab Tablet / Desktop (z. B. ab 768px Breite) */
@media (min-width: 768px) {
  .grid-container {
  	max-width: 1600px;/*war 1200px*/
	margin: 0 auto;

    /* 2fr zu 1fr teilt den Platz exakt in 2/3 und 1/3 auf */
    grid-template-columns: 5fr 1fr; 
  }
}

/* Nur zur optischen Veranschaulichung */
.main-grib_2_3 {
  padding: 20px;
}

.main-grib_1_3  {
  padding: 20px;
}

/* Referenz Test =============================== */
.neo-portfolio-stack-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
    box-sizing: border-box;
}

.neo-portfolio-item {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    /*box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.02), 0 20px 50px rgba(0, 0, 0, 0.06);*/
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    border: 1px solid #eaeaea;
    
    /* Der klebrige Effekt reicht vollkommen aus! */
    position: sticky; 
    
    /* Abstand nach unten sorgt für den nötigen Scroll-Raum */
    margin-bottom: 15vh; 
    box-sizing: border-box;
}

/* Bild-Bereich */
.neo-portfolio-image {
    width: 100%;
    height: 250px;
}

.neo-portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content-Bereich */
.neo-portfolio-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h2.neo-title {
    font-size: 1.6rem;
    font-weight: 700;
    line-height:1.2;
    margin: 0 0 15px 0;
}

.neo-meta { margin-bottom: 15px; }
.neo-meta p { margin: 6px 0; font-size:16px; color: #555555; }

.neo-services ul { list-style: none; padding-left: 0; margin: 0 0 35px 0; }
.neo-services li { position: relative; padding-left: 22px; line-height:1.1; margin-bottom: 5px; }
.neo-services li::before { content: "•"; color: #0073aa; font-weight: bold; position: absolute; left: 0; }

.neo-btn {
    display: inline-block;
    align-self: flex-start;
    padding: 14px 30px;
    background-color: #111111;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
}

/* Desktop-Layout */
@media (min-width: 768px) {
    .neo-portfolio-item {
        flex-direction: row;
        height: 480px;
    }
    .neo-portfolio-image {
        width: 50%;
        height: 100%;
    }
    .neo-portfolio-content {
        width: 50%;
        padding: 60px;
    }
}
