:root {
    --c-caramel: #dfa15d;
    --c-teal:    #0a525f;
	--c-teal-dark: #2c4a52;
    --c-goldy:   #beaa8d;
    --c-arctic:  #e9eeef;
    --c-white:   #ffffff;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px; 
}	
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  margin:0;
  font-family: 'PT Sans', sans-serif;
  background-color: var(--c-arctic);
    color: var(--c-teal);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4; /* Sehr subtil */
}
body::after {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, transparent 60%, rgba(10, 82, 95, 0.08) 100%);
    pointer-events: none;
    z-index: 9998;
}
.norm {
	text-decoration: initial;color:black
}
.no-webp header {
}

.webp header {
}

.no-js header {
 border:1px solid #000;
 background:url(img/bckg.png);
 background-size:100% 100vh;
}

header.scroll {
  height:15vh;
}
.greybg {background-color:rgba(150,150,150,.6);color: black;text-decoration: none; border-radius: 3px;padding: 0 3px;
}
.sticky {
  position: fixed;
  top: 0;left:0;right: 0;width: 100%; box-sizing: border-box;
  z-index:1000;
  background: var(--c-arctic);
  padding:0;
  border-bottom: 1px solid #dcdcdc;
  box-shadow: 0px 3px 4px #00000029;
  display: flex;
  justify-content: space-between; 
  align-items: center;
  padding: 0 3%;
  height: 10vh;min-height: 70px;
  overflow: clip;
}

.dark{
	background:#D1D1D1
}

#contbg {
	background:#EFEFEF url('img/8.webp') center center/cover no-repeat padding-box;
}
@media (orientation: portrait){
	#contbg {background-image:url('img/8-r.webp')} 
}
.nav-brand img {
  max-width: 12vw;
  min-width: 120px;
  display: block;
}
.nav-links {
  display: flex;
  gap: 2rem; /* Abstand zwischen den Menüpunkten */
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-links a {
  text-decoration: none;
  color: #3E3E3E;
  font: normal normal normal 1.2rem/1.3 'PT Sans', sans-serif; /* Schrift etwas kleiner/eleganter */
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nav-links a:hover {color: #E79F53;}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 5px;
}
.lang-switch img {
  height: 14px; /* Dezentere Flaggen */
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.lang-switch img:hover {
  opacity: 1;
}
.lang-switch .sep {
  color: #ccc;
  font-size: 0.8rem;
}
.cta-button {
  text-decoration: none;
  background-color: #3E3E3E; /* Oder deine Primärfarbe */
  color: #fff !important; /* Force white text */
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font: normal normal bold 1rem/1.3 'PT Sans', sans-serif;
  transition: all 0.3s ease;
}
.cta-button:hover {
  background-color: #E79F53; /* Accent Color beim Hover */
  transform: translateY(-1px); /* Subtiler Lift-Effekt */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.hero-section {
    position: relative;
    width: 100%;           /* Zwingend Vollbreite */
    min-height: 100vh;     /* Volle Höhe */
    display: flex;
	flex-direction: column;
	justify-content: center; 
    /* Vertikales Padding bleibt hier für den Abstand oben/unten */
    padding-top: calc(10vh + 1rem);
    padding-bottom: 4rem;
    overflow: hidden; /* Sicher ist sicher */
}

/* Der Hintergrund (Dein Code, jetzt auf volle Breite wirkend) */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;   
    background-image: url('img/6.webp'); 
    background-size: 100% 100%; /* Stretcht über den ganzen Screen */
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: scroll;
    
    opacity: 0.07; 
    filter: grayscale(100%) contrast(1.2) brightness(1.5);
    z-index: -1;
    pointer-events: none;
}

/* 2. DER INHALT (Begrenzt auf 1400px & Layout) */
.hero-inner {
    max-width: 1400px;
    margin: 0 auto;        /* Zentriert den Container horizontal */
    width: 100%;           /* Damit er auch bei kleinen Screens Platz nutzt */    
    /* Seitenabstand damit Text nicht am Rand klebt */
    padding-left: 5vw;
    padding-right: 5vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.hero-content {
        width: 55%;
		min-width: 500px;
    }
.hero-visual {
	width: 45%;
        display: flex;
        justify-content: center;
        align-items: flex-end;
}
.eyebrow {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--c-caramel);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
h1 {
    font-size: clamp(2.2rem, 3.5vw, 3.8rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--c-teal);
  padding: 0;
}
h1 .line {
    display: block; /* Erzwingt, dass jeder Punkt auf einer neuen Zeile steht */
}
.highlight-text {
    color: var(--c-caramel);
    white-space: nowrap;
    display: inline-block; 
}
.subline {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #2c4a52;
    max-width: 600px;
}
.btn-primary {
    display: inline-block;
    background-color: var(--c-teal);
    color: var(--c-white);
    padding: 1rem 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 5px 15px rgba(10,82,95,0.2);
	border: 1px solid rgba(255,255,255,0.1); 
	box-shadow: 
        inset 0 1px 0 rgba(255,255,255,0.2), /* Lichtkante oben */
        0 4px 10px rgba(10,82,95,0.3);
	position: relative;
    overflow: hidden;
}
.btn-primary:hover {
    /* background-color: var(--c-caramel);
    color: var(--c-teal);*/
	background-color: #0d6170; /* Etwas heller als Teal */
    color: var(--c-white);
    transform: translateY(-2px);    
    box-shadow: 
        inset 0 0 20px rgba(255,255,255,0.2), /* Glow innen */
        0 8px 20px rgba(10,82,95,0.4),        /* Größerer Schatten */
        0 0 0 2px rgba(223, 161, 93, 0.3);    /* Caramel Outline Glow */
    border-color: var(--c-caramel);
}
.btn-primary:active {
    transform: translateY(1px);
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.2);
}
.microcopy {
    display: block;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    color: #666;
    margin-left: 5px;
}
.hero-visual {
    position: relative;
    /* Wir erzwingen eine Höhe auf Desktop, damit das Bild Platz hat */
    height: 500px; 
    width: 100%;
}

.image-bg-box {
    position: relative;
    width: 350px;    
    height: 500px;    
    background: transparent; /* Keine Farbe mehr */
    box-shadow: none;        /* Kein Kasten-Schatten mehr */
    margin: 0 auto;     
    display: flex;
    align-items: flex-end; /* Bild unten bündig */
    justify-content: center;
	z-index: 0; 
}
.image-bg-box::before {
    content: '';
    position: absolute;
    /* Wir positionieren den Ursprung der Welle etwa auf Brusthöhe/Zentrum */
    top: 55%; 
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;  /* Startgröße */
    height: 80%;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; /* Kreisform */
    background: radial-gradient(ellipse at center, rgba(10,82,95,0.25) 0%, rgba(223,161,93,0.05) 50%, transparent 70%);
    z-index: -1;
    animation: tech-pulse 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    /* Startzustand: Unsichtbar */
    opacity: 0;
}
.image-bg-box::after {
    content: '';
    position: absolute;
    top: 55%; /* Leicht versetzt für Asymmetrie */
    left: 45%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border-radius: 45%; 
    border: 1px solid rgba(10, 82, 95, 0.2); /* Nur ein feiner Ring */
    z-index: -1;
    animation: field-pulse 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 0.15s; /* Läuft minimal später los */
    opacity: 0;
}
@keyframes field-pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.9, 0.9);
        opacity: 0.5;
        border-color: rgba(10, 82, 95, 0.3);
    }
    12% {
        transform: translate(-50%, -50%) scale(1.3, 2);
        opacity: 0;
    }
    
    12.1% { opacity: 0; transform: translate(-50%, -50%) scale(0.9, 0.9); }
    18% { opacity: 0; }

    20% {
        transform: translate(-50%, -50%) scale(0.9, 0.9);
        opacity: 0.5;
    }
    32% {
        transform: translate(-50%, -50%) scale(1.35, 1.08);
        opacity: 0;
    }

    32.1% { opacity: 0; transform: translate(-50%, -50%) scale(0.9, 0.9); }
    38% { opacity: 0; }

    40% {
        transform: translate(-50%, -50%) scale(0.9, 0.9);
        opacity: 0.7; 
        border-color: var(--c-caramel); 
    }
    65% {
        transform: translate(-50%, -50%) scale(2.0, 1.2); 
        opacity: 0;
        border-width: 0px;
    }
    
    100% { opacity: 0; }
}
.gregor-portrait {
    position: relative; 
    bottom: auto; left: auto; transform: none;
    width: auto;
    height: 100%; 
    object-fit: contain;
    z-index: 1;
    filter: drop-shadow(0 0 20px rgba(10,82,95,0.4));
	transform-origin: bottom center;
}

.experience-badge {
    position: absolute;
    bottom: 15%;      /* Auf Brusthöhe/Hüfthöhe, aber daneben */
    left: auto;       /* Nicht mehr links */
    right: -40px;     /* Schiebt es rechts aus dem Bild raus */
    transform: none;  /* Kein Verschieben mehr */
    
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    color: var(--c-teal);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    
    border-left: 3px solid var(--c-caramel);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    white-space: nowrap;
    z-index: 2;
}
.experience-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -20px; /* Linie nach links */
    width: 20px;
    height: 1px;
    background: var(--c-caramel);
}
.floating-badge {
    bottom: 30px;
    left: -20px;
   /* Leichter Überlapp, bricht die Kante */
    
    background: var(--c-white);
    color: var(--c-teal);
    padding: 0.5rem 1rem;
    
    /* Design wie ein technisches Etikett */
    border-left: 5px solid var(--c-caramel);
    border-radius: 0; /* Eckig */
    box-shadow: 5px 5px 15px rgba(0,0,0,0.15);
    
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    
    /* Statisch. Kein Schweben. */
    z-index: 3;
}
.floating-badge::after {
    content: 'REF: EXP-12Y'; /* Fake technische Referenz */
    display: block;
    font-size: 0.6rem;
    color: #999;
    font-weight: 400;
    margin-top: 2px;
}
.scroll-indicator {
    position: absolute;
    bottom: 2rem; /* Flexibler Abstand vom Boden */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--c-teal-dark); /* Dezent, nicht schwarz */
    opacity: 0.6;
    transition: all 0.3s ease;
    z-index: 100; cursor: pointer;
}
.scroll-indicator:hover {
    opacity: 1;
    color: var(--c-caramel);
    transform: translateX(-50%) translateY(2px);
}
.scroll-text {
    font-family: var(--font-head);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 4px;
}
.scroll-arrow {
    width: 24px;
    height: 24px;
    animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(6px);
    }
    60% {
        transform: translateY(3px);
    }
}

.overlay-effect {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(0deg, rgba(10,82,95,0.4) 0%, rgba(0,0,0,0) 40%);
    pointer-events: none;
}
#inov{margin-left:40vw;width:80%;padding-top:30vh}
.cont{display:flex;height: 101vh;background:#EEEFF1 url(img/6.webp) 0% 0% no-repeat padding-box;background-size:contain;overflow:auto;width: 99vw;}
.results-section {
    background: linear-gradient(rgba(10, 82, 95, 0.7), rgba(5, 40, 48, 0.85)), url('img/6.webp');
    background-size: cover;
    background-position: center;
    /*min-height: 100vh;*/
    background-attachment: scroll;
    padding: 5rem 2rem; /* Viel Weißraum */
    position: relative;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.results-intro {
    margin-bottom: 3rem;
    max-width: 700px;
}

.results-intro h2 {
    font-size: 2.5rem;
    color: var(--c-white);
    line-height: 1.2;
    margin-top: 0.5rem;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;align-items: center;
}
.metrics-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Spalten für die Karten */
    gap: 2rem;
}

.metric-card {
	background: rgba(23, 40, 49, 0.6); 
	backdrop-filter: blur(5px); 
    -webkit-backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid var(--c-caramel); /* Technischer Akzent oben */
	border-radius: 4px;
    padding-top: 1rem;
}

.metric-value {
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--c-white);
    line-height: 1;
    margin-bottom: 0.5rem;    padding-left: 0.5rem;
}

.metric-label {
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--c-caramel);
    margin-bottom: 0.5rem;
    letter-spacing: 1;
	text-shadow: 0 2px 4px rgba(0,0,0,0.5);
	    padding-left: 0.5rem;
}

.metric-desc {
    font-size: 0.95rem;
    color: #ffffff; 
    line-height: 1.6;    padding-left: 0.5rem;
}
.visual-proof-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}
.trust-section {
    background-color: var(--c-teal-dark);
    color: var(--c-arctic);
    padding: 4rem 1.5rem 5rem; 
    text-align: center;
    border-top: 4px solid var(--c-caramel);
    position: relative;
}
.trust-section::before{
	content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;

    background-image: url('img/6.webp'); 
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    opacity: 0.05;     
    z-index: 0;
    pointer-events: none;
}
.client-list {
    margin-bottom: 4rem; 
}
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left; /* Text in den Karten linksbündig */
}
.quote-card {
    background: rgba(255, 255, 255, 0.05); /* Sehr subtil heller */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    position: relative;
    border-radius: 2px;
    transition: transform 0.3s ease;
}
.quote-card:hover {
    border-color: var(--c-caramel); /* Highlight bei Mouseover */
    background: rgba(255, 255, 255, 0.08);
}
.quote-icon {
    font-family: var(--font-head);
    font-size: 4rem;
    line-height: 1;
    color: var(--c-caramel);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    right: 20px;
}

.quote-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #d1dce0;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 2;
}

/* Autor Block */
.quote-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
}

.quote-author strong {
    color: var(--c-white);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quote-author span {
    color: var(--c-caramel);
    font-size: 0.85rem;
    margin-top: 2px;
}
.trust-label {
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    opacity: 0.7;
    margin-bottom: 2rem;
}
.client-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem 1.5rem; 
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.6rem; 
    line-height: 1.6;
}
.client-name {
    color: var(--c-white);
    white-space: nowrap; /* Namen nicht umbrechen */
}
.separator {
    color: var(--c-caramel);
    font-weight: 400;
    font-size: 0.9em;
}
.trust-sub {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}
.comparison-section {
    padding: 5rem 1.5rem;
    background-color: var(--c-white);
}

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

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}
.section-header h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--c-teal);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.intro-text {
    font-size: 1.1rem;
    color: #666;
}

/* Das Grid Layout */
.grid-wrapper {
    display: grid;
    grid-template-columns: 1fr; /* Mobile First: Untereinander */
    gap: 2rem;
}

/* Gemeinsame Karten-Styles */
.card {
    padding: 2.5rem 2rem;
    border-radius: 4px; /* Technisch eckig */
    position: relative;
    overflow: hidden;
}

.card-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.card-title {
    font-family: var(--font-head);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

/* --- LINKE KARTE: PAIN (Grau/Trist) --- */
.card-pain {
    background-color: #f4f4f4; /* Hellgrau "Arctic Dirty" */
    color: #555;
    border-left: 6px solid #ccc;
	overflow: visible; 
    z-index: 2;
}

.card-pain .card-title {
    color: #333;
}

/* Die Liste der Probleme */
.pain-list {
    list-style: none;
    padding: 0;
}

.pain-list li {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
}

/* Das "X" Icon */
.pain-list li::before {
    content: '✕'; 
    position: absolute;
    left: 0;
    top: 0;
    color: #999; /* Dezent, nicht zu aggressiv rot */
    font-weight: bold;
    font-size: 1.2rem;
}

.pain-list strong {
    display: block;
    color: #333;
    margin-bottom: 0.2rem;
}

/* --- RECHTE KARTE  --- */
.card-gain {
    background-color: var(--c-teal);
    color: var(--c-white);
    border-left: 6px solid var(--c-caramel);
    box-shadow: 0 10px 30px rgba(10, 82, 95, 0.15); /* Erhebt sich über das Problem */
}

.card-gain .card-label {
    color: var(--c-caramel);
}

.card-gain .card-title {
    color: var(--c-white);
}

/* Die Liste der Lösungen */
.gain-list {
    list-style: none;
    padding: 0;
}

.gain-list li {
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
}

/* Das "Haken" Icon */
.gain-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--c-caramel); /* Goldy Haken */
    font-weight: bold;
    font-size: 1.2rem;
}

.gain-list strong {
    display: block;
    color: var(--c-caramel);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.gain-list p {
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.5;
}

.v-steps {
    margin-top: 1rem;
    display: flex;              
    flex-wrap: wrap;           
    gap: 0.5rem;                
    background: transparent;   
    padding: 0;
}
.v-steps span {
    background: rgba(255,255,255,0.15);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--c-arctic);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Das Hauptbild */
.proof-main {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

.proof-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
	filter: saturate(80%) contrast(110%) brightness(1);
}
.proof-main:hover .main-img,
.thumb-wrapper:hover .thumb-img {
    transform: scale(1.05);
}
.proof-main::before,
.thumb-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    
    /* Verlauf: Von deinem Teal zu transparent */
    background: linear-gradient(135deg, rgba(10, 82, 95, 0.6) 0%, rgba(10, 82, 95, 0.2) 100%);
    
    /* WICHTIG: Mix-Blend-Mode. 
       'multiply' dunkelt ab und färbt ein. 
       'soft-light' wäre subtiler. Probier 'multiply' zuerst. */
    mix-blend-mode: multiply;
    
    z-index: 1; /* Liegt über dem Bild */
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.thumb-wrapper:hover .proof-img {
    transform: scale(1.02);
    /* Volle Farbe zurück */
    filter: saturate(100%) contrast(100%) brightness(1.0);
}

.proof-main:hover::before,
.thumb-wrapper:hover::before {
    opacity: 0; /* Die Tönung verschwindet sanft */
}

/* Tech Tag auf dem Hauptbild (z.B. "LIVE DATA") */
.tech-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #0f0; /* Terminal-Grün */
    font-family: monospace;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 2px;
    pointer-events: none;z-index: 2; 
}

.proof-thumbnails {
    display: flex;
    gap: 1rem;
    height: 100px; /* Feste Höhe für Ordnung */
}

.thumb-wrapper {
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer; /* Signalisiert Klickbarkeit (Lightbox) */
    position: relative;
    border: 1px solid #eee;
}

.thumb-wrapper::after {
    content: '✔';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 82, 95, 0.5);
    color: white;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thumb-wrapper:hover::after {
    opacity: 1;
}
.whyme-section {
    /* background-color: var(--c-white); Kontrast zum vorherigen Section */
	padding: 5rem 1.5rem;
    border-bottom: 1px solid #ddd; /* Feine Trennlinie unten */
	
    position: relative;
    background-color: #f5f7f8; /* Sicherheits-Farbe falls Bild nicht lädt */
    z-index: 1;
    /* Damit Sections sich abgrenzen */
    border-top: 1px solid rgba(10, 82, 95, 0.1);
}
.whyme-section::before{
	content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    
    /* DEIN FOOTER BILD */
    background-image: url('img/8.webp'); 
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* Parallax: Bild bleibt stehen beim Scrollen */
    opacity: 0.045; 
    
    /* Schwarz-Weiß Filter, damit es nicht bunt wirkt */
    filter: grayscale(100%) contrast(1.2) brightness(1.5);
    
    z-index: -1;
    pointer-events: none;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- HEADER --- */
.whyme-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}
.whyme-header h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--c-teal);
    margin: 0.5rem 0 1.5rem 0;
}
.whyme-intro {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* --- GRID LAYOUT (Technical Sheet) --- */
.specs-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile: 1 Spalte */
    gap: 3rem; /* Abstand zwischen Karten auf Mobile */
}

/* --- KARTE DESIGN --- */
.spec-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Linksbündig für technischen Look */
    padding: 1rem;
    transition: transform 0.3s ease;
}

.spec-icon {
    width: 60px;  
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--c-caramel);
	position: relative;
    z-index: 1;
	/* Rahmen vorbereiten (transparent) */
    border: 1px dashed transparent; 
    border-radius: 4px;
    padding: 10px; 
    box-sizing: content-box; 
}
.spec-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
.spec-icon::after {
        display: none; 
}
.spec-card:hover .spec-icon {
    transform: scale(1.1);
	color: var(--c-teal);
    transition: transform 0.3s ease;
	border-color: var(--c-caramel); 
    background: rgba(223, 161, 93, 0.05); /* Minimaler Hintergrund */
}

.spec-card h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--c-teal);
    margin-bottom: 1.5rem;
    position: relative;
    width: 100%;
}

/* Die feine Linie unter der Headline (wie bei einer Zeichnung) */
.spec-card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--c-caramel);
}
.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.spec-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #444;
}
.spec-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--c-teal);
    border-radius: 0; /* Eckig */
}
.spec-list strong {
    color: var(--c-teal-dark);
    display: block; /* Titel in neuer Zeile oder Block? Hier: Block für Klarheit */
    margin-bottom: 0.2rem;
}
.packages-section {
    background-color: var(--c-white); /* Bruch zum vorherigen Section */
    padding: 5rem 1.5rem;
    border-top: 1px solid #ddd;
}

.container-packages {
    max-width: 1200px;
    margin: 0 auto;
}
.price-tag {
    font-family: var(--font-head);
    font-size: 1.6rem; /* Etwas kleiner als Headline */
    font-weight: 700;
    color: var(--c-teal);
    margin-bottom: 1rem;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--c-caramel);
    display: inline-block;
}
.price-suffix {
    font-size: 0.8rem;
    font-weight: 400;
    color: #777;
    font-family: var(--font-body);
}

.section-divider {
    text-align: center;
    margin: 4rem 0 2rem 0;
    position: relative;
    border-top: 1px solid #ddd;
}

.divider-label {
    background-color: var(--c-white);
    padding: 0 1.5rem;
    position: relative;
    top: -0.8rem; /* Schiebt Text auf die Linie */
    color: #999;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
}

/* --- MODULES GRID (Add-ons) --- */
.modules-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.module-card {
    background: #fcfcfc;
    border: 1px dashed #ccc; /* Dashed Border = "Komponente/Optional" */
    padding: 1.5rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.2s ease;
}

.module-card:hover {
    border-color: var(--c-caramel);
    background: #fff;
    transform: translateY(-2px);
}

.module-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    /* Optional: Filter für Monochrom-Look */
    /* filter: grayscale(100%); */
}

.module-card h4 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: var(--c-teal-dark);
    margin-bottom: 0.5rem;
}

.module-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}
/* Header Bereich */
.packages-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}
.packages-header h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--c-teal);
    margin-bottom: 1rem;
}
.packages-sub {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* --- GRID LAYOUT (Desktop & Mobile) --- */
.cards-grid {
    display: grid;
    /* Mobile: 1 Spalte */
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch; /* Alle Karten gleich hoch */
}

/* --- CARD DESIGN --- */
.tech-card {
    background: #fff;
    border: 1px solid #ccc; /* Dünner technischer Rahmen */
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease;
    box-shadow: 8px 8px 0px rgba(10, 82, 95, 0.1);
	overflow: visible
}
.tech-card:hover {
    border-color: var(--c-teal);
    transform: scale(1.02) !important; 
    box-shadow: 12px 12px 0px rgba(223, 161, 93, 0.3); /* Caramel Schatten bei Hover */
}

.card-phase {
    display: block;
    font-family: monospace; /* Technisch */
    color: var(--c-caramel);
    font-weight: 700;
    margin-bottom: 0.5rem; /* Näher an der Headline */
    font-size: 0.85rem;
    letter-spacing: 1px;
}
.module-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--c-teal); /* Teal Linien */
    stroke-width: 1.5;
    transition: all 0.3s ease;
}

.module-card:hover .module-icon svg {
    stroke: var(--c-caramel); /* Wird Goldy beim Hover */
    transform: scale(1.1);
}
.card-top h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--c-teal);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    min-height: 3.6rem; /* Damit Headlines auf gleicher Höhe bleiben */
}

/* Body & Liste */
.card-body {
    flex-grow: 1; /* Drückt den Footer nach unten */
}

.card-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    min-height: 4.5rem; /* Textblock-Ausgleich */
}

.tech-list {
    list-style: none;
    margin-bottom: 2rem;
    border-top: 1px dashed #ddd; /* Trennlinie */
    padding-top: 1rem;
}

.tech-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #333;
}

.tech-list li span {
    color: var(--c-teal); /* Checkmark Farbe */
    font-weight: bold;
}

.card-context {
    background: var(--c-arctic);
    padding: 1rem;
    font-size: 0.85rem;
    color: var(--c-teal-dark);
    margin-bottom: 2rem;
    border-left: 3px solid var(--c-teal);
}

.context-label {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.7rem;
    margin-bottom: 0.3rem;
    opacity: 0.7;
}

.card-footer {
    margin-top: auto;
}

.btn-secondary {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 0.8rem;
    background: transparent;
    color: var(--c-teal);
    text-decoration: none;
    font-weight: 700;
    
    /* Technischer Rahmen */
    border: 2px solid var(--c-teal);
    border-radius: 4px;
    
    /* Leichter Innenschatten für Tiefe */
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
    
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--c-teal);
    color: var(--c-white);
    box-shadow: 
        inset 0 1px 0 rgba(255,255,255,0.2),
        0 4px 10px rgba(10,82,95,0.2);
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
    text-align: center;
    display: block; /* Damit btn-primary Block wird */
}

.highlight-card {
    border-color: var(--c-teal); /* Immer aktiv */
    box-shadow: 10px 10px 0px rgba(10, 82, 95, 0.15);
}

.card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--c-caramel);
    color: var(--c-teal-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-section {
    padding: 5rem 1.5rem;
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}
.process-timeline {
    display: grid;
    grid-template-columns: 1fr; /* Mobile: Untereinander */
    gap: 3rem; /* Viel Abstand zwischen den Schritten */
    position: relative;
    margin-top: 4rem;
    padding-left: 2rem; /* Platz für die mobile Linie links */
}
.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 45px; /* Linie läuft durch die Mitte der Marker */
    width: 3px; /* Dickere, technische Linie */
    background: #d1d1d1;
    z-index: 0;
}
.process-step {
    background: var(--c-white);
    padding: 2rem 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    position: relative;
	margin-left: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.step-marker {
    position: absolute;
    top: 50%; /* Auf Mobile: Mittig links neben der Karte? Oder oben? */
    top: 0; /* Wir setzen es oben links an die Ecke */
    left: -45px; /* Links aus der Karte rausgeschoben, auf die Linie */
    
    width: 50px;
    height: 50px;
    background: var(--c-teal);
    color: var(--c-white);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%; 
    border: 4px solid #f8f9fa; /* Hintergrundfarbe als Border -> "Cut-Out" Effekt */
    z-index: 2;
}


.step-content h3 {
    font-family: var(--font-head);
    color: var(--c-teal);
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
    margin-top: 0;
}

.step-sub {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-caramel);
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Footer mit SVG Icon */
.step-footer {
    border-top: 1px dashed #ccc;
    padding-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--c-teal-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-small {
    width: 20px;
    height: 20px;
    stroke: var(--c-caramel); /* Icons in Akzentfarbe */
    flex-shrink: 0;
}

.ref{max-width:90vw; display:block; margin:auto}

/* Ausgangszustand: Unsichtbar und leicht nach unten versetzt */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px); /* 30px nach unten verschoben */
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Tech-Easing: Startet schnell, bremst präzise */
    will-change: opacity, transform;
}

/* Endzustand: Sichtbar und am Platz */
.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s !important;animation-delay: 0.15s;}
.reveal-delay-2 { transition-delay: 0.3s !important; animation-delay: 0.3s;}
.reveal-delay-3 { transition-delay: 0.45s !important; animation-delay: 0.45s;}

.industrial-lock {
    opacity: 0; /* Unsichtbar bis JS feuert */
    will-change: transform, opacity, box-shadow, border-color;
}
.industrial-lock.is-visible {
	opacity: 1; 
	transform: scale(1.0);
	border-color: #ccc; 
    box-shadow: 8px 8px 0px rgba(10, 82, 95, 0.1);
    animation-name: dropAndLock;
    animation-duration: 5s;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation-fill-mode: backwards; 
}
.process-step.industrial-lock:hover {
    border-color: var(--c-teal) !important; /* Safety first */
    box-shadow: 0 10px 25px rgba(10, 82, 95, 0.2) !important;
    transform: translateY(-5px) !important;
}
@keyframes dropAndLock {
    0% {
        opacity: 0;
        transform: scale(1.08) translateY(-30px);
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1); 
        border-color: rgba(255,255,255,0.1);
    }
    13% {
        opacity: 1;transform: scale(1.05)
    }

    15% {
        transform: scale(1.0) translateY(0);box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1); 
    }

    17% {
        border-color: var(--c-caramel);
        box-shadow: 0 0 0 8px rgba(217, 108, 89, 0.25);
    }

	50%{
		border-color: #ccc; 
	}	
    /* identisch zu .is-visible */
    100% {
		opacity: 1; 
        transform: scale(1.0);
        border-color: #ccc; 
        box-shadow: 8px 8px 0px rgba(10, 82, 95, 0.1);
    }
}

.site-footer {
    position: relative;
    background-color: #1a2f34; /* Sehr dunkles Teal als Basis */
    color: var(--c-arctic);
    padding-top: 4rem;
    font-size: 0.9rem;
    overflow: hidden;
}

/* Hintergrundbild Bild 8 Handling */
.footer-bg-image {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('img/8.webp'); /* Dein Pfad anpassen */
    background-size: cover;
    background-position: center;
    filter: grayscale(100%); 
    z-index: 0;
}

.footer-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Verlauf von Dunkel zu fast Schwarz */
    background: linear-gradient(to bottom, rgba(26, 47, 52, 0.85), rgba(10, 20, 25, 0.95));
    z-index: 1;
}

.footer-container {
	position: relative;
	z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    /* Desktop: 3 Spalten Layout */
    grid-template-columns: 1fr;
    gap: 3rem;
}
.footer-label {
    font-family: var(--font-head);
    color: var(--c-white);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

/* --- COLUMN STYLING --- */
.footer-col h4 {
    font-family: var(--font-head);
    color: var(--c-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    border-bottom: 2px solid var(--c-caramel);
    display: inline-block;
    padding-bottom: 5px;
}

/* Col 1: Brand */
.footer-logo {
    max-width: 150px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1); /* Logo weiß machen falls PNG, oder SVG nutzen */
	opacity: 0.9;
}

.footer-claim {
    color: #aabdc1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.social-btn {
    display: inline-block;
    border: 1px solid #2c4a52;
    padding: 0.4rem 1rem;
    color: var(--c-white);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.social-btn:hover {
    border-color: var(--c-caramel);
    color: var(--c-caramel);
}
.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: var(--c-white);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    transition: background 0.3s;
}

.social-icon:hover {
    background: var(--c-caramel);
    color: var(--c-teal);
}

/* Col 2: Menu */
.footer-links {
    list-style: none; padding: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #aabdc1;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--c-caramel);
    padding-left: 5px; /* Kleiner Animationseffekt */
}

/* Col 3: Kontakt */
.contact-row {
    display: flex;
    align-items: flex-start; /* Oben bündig bei mehrzeiligem Text */
    gap: 12px;
    margin-bottom: 1.2rem;
    color: #aabdc1;
    text-decoration: none;
    transition: color 0.2s;
}
.contact-row:hover {
    color: var(--c-white);
}

.contact-row:hover .tech-icon {
    stroke: var(--c-caramel);
}
.tech-icon {
    width: 20px;
    height: 20px;
    stroke: #5b7d85; /* Gedämpftes Teal */
    flex-shrink: 0; /* Verhindert Quetschen */
    transition: stroke 0.2s;
}
.contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
    color: #aabdc1;
}

.contact-item a {
    color: #aabdc1;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--c-white);
    text-decoration: underline;
}

/* Col 4: Formular (Clean & Industrial) */
.clean-form input,
.clean-form textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--c-white);
    padding: 0.8rem;
    margin-bottom: 0.8rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    border-radius: 2px;
}

.clean-form input:focus,
.clean-form textarea:focus {
    outline: none;
    border-color: var(--c-caramel);
    background: rgba(255,255,255,0.1);
}

.btn-footer {
    background: transparent;
    border: 1px solid var(--c-caramel);
    color: var(--c-caramel);
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.btn-footer:hover {
    background: var(--c-caramel);
    color: var(--c-teal);
}

/* --- BOTTOM BAR --- */
.footer-bottom {
    position: relative;
    z-index: 2;
    background: rgba(0,0,0,0.3);
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-bottom-wrapper {
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: rgba(0,0,0,0.2);
    padding: 1.5rem 0;
}
.bottom-flex {
    display: flex;
    flex-direction: column; /* Mobile First: Untereinander */
    gap: 1rem;
    align-items: center;
    text-align: center;
    padding-bottom: 0; /* Padding vom Container resetten */
}
.copyright { font-size: 0.8rem; opacity: 0.6; }
.legal-links a {
    color: #777;
    text-decoration: none;
    font-size: 0.8rem;
    margin: 0 5px;
}

.legal-links a:hover {
    color: var(--c-white);
}

.sep { color: #444; }

.modal-overlay {
    display: none; /* Standardmäßig versteckt */
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 9999;
    /* Der gewünschte Effekt: Arctic Darkened + 85% Deckkraft */
    background-color: rgba(10, 82, 95, 0.85); 
    backdrop-filter: blur(5px); /* Macht den Hintergrund unscharf (Modern Tech Look) */
    overflow-y: auto; /* Scrollbar erlauben, falls Calendly zu lang ist */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex; /* Oder block */
    justify-content: center;
    align-items: flex-start; /* Oben bündig mit etwas Abstand */
    padding: 5vh 1rem;
    opacity: 1;
}

.modal-container {
    background: var(--c-white);
    width: 100%;
    max-width: 650px;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border-top: 6px solid var(--c-caramel);
    animation: slideIn 0.4s ease;
    margin-bottom: 5vh;
}

@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 10px; right: 15px;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
    transition: color 0.2s;
}
.modal-close:hover { color: var(--c-teal); }

.modal-header {
    padding: 2rem 2rem 1rem 2rem;
    text-align: center;
}

.modal-header h3 {
    font-family: var(--font-head);
    font-size: 1.8rem;
    color: var(--c-teal);
    margin-bottom: 1rem;
}

.modal-intro {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.modal-benefits {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--c-teal-dark);
}

.modal-benefits span {
    color: var(--c-caramel);
    font-weight: bold;
    margin-right: 5px;
}

/* Footer im Modal (Alternative) */
.modal-footer-contact {
    background: var(--c-arctic);
    padding: 1rem;
    text-align: center;
    border-top: 1px solid #eee;
}

.modal-contact-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
}
.modal-contact-links a {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: var(--c-teal);
    font-weight: 600;
    font-size: 0.9rem;
}
.modal-contact-links svg { width: 18px; height: 18px; }

/* für impressum */
.legal-page {
    background-color: var(--c-arctic);
}
.legal-section {
    padding-top: calc(10vh + 3rem); /* Platz für Sticky Header lassen */
    padding-bottom: 5rem;
    min-height: 80vh;
}
.legal-paper {
    background: var(--c-white);
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
        border: 1px solid #ccc;
    box-shadow: 10px 10px 0px rgba(10, 82, 95, 0.1); 
    border-radius: 2px;
}
.legal-header {
    border-bottom: 2px solid var(--c-teal);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}
.legal-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--c-teal);
}
.legal-meta {
    font-family: monospace;
    color: #666;
    text-transform: uppercase;
}
.legal-content h3 {
    font-family: var(--font-head);
    color: var(--c-teal-dark);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}
.legal-content h4 {
    font-family: var(--font-head);
    color: #444;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}
.legal-content p {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
}
.legal-divider {
    border: 0;
    border-top: 1px dashed #ccc;
    margin: 2rem 0;
}
.text-link {
    color: var(--c-teal);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}
.text-link:hover {
    border-bottom-color: var(--c-caramel);
    color: var(--c-teal-dark);
}
.legal-footer-note {
    margin-top: 4rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    font-size: 0.85rem;
    color: #888;
    text-align: right;
}
.legal-footer-note a {
    color: #888;
    text-decoration: underline;
}

@media (max-height: 600px) {
    .scroll-indicator {
        display: none;
    }
}
@media (min-width: 992px) {
 .grid-wrapper {
        grid-template-columns: 1fr 1fr; /* 50/50 Split */
        align-items: stretch; /* Gleiche Höhe */
    }
    .card-pain::after {
        content: '';
        position: absolute;
        right: -1.5rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--c-teal);
        z-index: 10;
		background-color: var(--c-white);
        border-radius: 50%;
        width: 3rem; 
        height: 3rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230a525f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3Cpolyline points='12 5 19 12 12 19'%3E%3C/polyline%3E%3C/svg%3E");
		background-repeat: no-repeat;
        background-position: center;
        background-size: 1.5rem; 
    }
	.modules-grid {
        grid-template-columns: repeat(3, 1fr);
    }
	.specs-grid {
        grid-template-columns: 1fr 1fr 1fr; /* 3 Spalten */
        gap: 0; /* Kein Gap, wir nutzen Borders */
    }
.testimonials-grid {
        grid-template-columns: 1fr 1fr; /* 2 Spalten ab Tablet */
    }
    .spec-card {
        padding: 0 2rem;
        /* Vertikale Trennlinien zwischen den Spalten */
        border-right: 1px solid #eee; 
    }
    .spec-card:last-child {
        border-right: none;
    }
    .cards-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 Spalten */
        gap: 2rem; /* Abstand dazwischen */
    }
	.footer-container {
        /* Grid Layout: Brand (breit) | Menu (schmal) | Contact (mittel) */
        grid-template-columns: 1.5fr 0.8fr 1.2fr; 
        text-align: left;
    }
    .bottom-flex {
        flex-direction: row; /* Nebeneinander */
        justify-content: space-between; /* Links und Rechts bündig im Container */
        align-items: center;
}
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        padding: 1.5rem 5vw;
    }
	 .process-timeline {
        grid-template-columns: repeat(4, 1fr); /* 4 Spalten */
        gap: 1.5rem;
        padding-left: 0; /* Reset Mobile Padding */
        margin-top: 5rem; /* Mehr Platz oben für die Marker */
    }

    /* Die Linie wird horizontal */
    .timeline-line {
        top: -25px; /* Linie läuft durch die Mitte der Marker */
        bottom: auto;
        left: 50px; /* Startet mitte erster Marker */
        right: 50px; /* Endet mitte letzter Marker */
        width: auto; /* Automatische Breite */
        height: 3px;
        background: linear-gradient(to right, var(--c-teal) 0%, #ddd 100%); /* Leichter Verlauf */
    }
    
    .process-step {
        margin-left: 0; /* Reset Mobile Margin */
        margin-top: 0;
        text-align: center;
    }

    /* Marker oben mittig auf der Karte */
    .step-marker {
        top: -50px; /* Sitzt oben drauf */
        left: 50%;
        transform: translateX(-50%);
    }
    
    .step-footer {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
	.slider-box {margin: 2.5rem 0;
	}
	.slider {margin: 2em 0.5em;padding-left: 0.7em;
	}
	.sticky {
        flex-wrap: wrap;      
        height: auto;          
        min-height: auto;      
        padding: 0.8rem 1rem; 
    }
	.nav-brand { margin-bottom: 0;    flex: 1;}
	.nav-brand img {
        max-width: 140px;     /* Logo Größe kontrollieren */
    }
	.nav-actions { 
    flex: 0 0 auto;
    gap: 10px;
	}
	.cta-button {
    padding: 0.5rem 0.8rem;
    font-size: 0.9rem;
	}
	.nav-links { 
    order: 3; 
    width: 100%; 
    justify-content: center; 
    margin-top: 10px;
	border-top: 1px solid #e0e0e0;
    gap: 1rem;
	border-top: 1px solid rgba(0,0,0,0.05); /* Feine Trennlinie */
	}
	.hero-section {
		padding-top: 150px; justify-content: flex-start; 
	}	
	.hero-inner {
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        /* Padding eventuell etwas verkleinern auf Mobile */
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
	.hero-visual {
        order: 1;height: 400px; /* Kleiner auf Mobile */        margin-bottom: 0.5rem;
    }
    .image-bg-box {
        height: 400px; /* Etwas kleiner auf Handy */
        width: 100%;
    }
	.gregor-portrait {
        height: 100%;
    }
	.scroll-text {
        display: none;
    }
	.scroll-indicator {
		order: 2;position: relative;
        bottom: auto;
        left: auto;margin: -1rem auto 1rem auto;
    }
    .experience-badge {
        right: 0;
        bottom: 20px;
        background: var(--c-white);
        border: 1px solid #eee;
        border-left: 4px solid var(--c-caramel);
    }
	.experience-badge::before {
        display: none; /* Linie weg auf Mobile */
    }
    .hero-content {
		order: 3;
        text-align: center;
        align-items: center;width: 100%;
        min-width: auto;
    }
    .cta-wrapper {
        align-items: center; /* Button zentrieren */
    }
	.reveal-delay-1 { transition-delay: 0.1s ;animation-delay: 0.1s;}
	.reveal-delay-2 { transition-delay: 0.2s ; animation-delay: 0.2s;}
	.reveal-delay-3 { transition-delay: 0.3s ; animation-delay: 0.3s;}
    .subline {
        margin-left: auto;
        margin-right: auto;
    }
/* Auf Mobile darf es umbrechen, falls nötig */
    h1 .line {
        display: inline; 
    }
    h1 .line::after {
        content: "\a"; /* Erzwingt Umbruch auch bei inline, wenn desired */
        white-space: pre;
    }
	.metrics-wrapper {
        grid-template-columns: 1fr; /* Untereinander auf Handy */
        gap: 1rem;
    }
	.metric-value {
        font-size: 2rem;
    }
    .proof-thumbnails {
        height: 80px; /* Etwas kleiner auf Handy */
    }
	.client-list {
        gap: 0.5rem 0.8rem;
        font-size: 1.1rem; 
    }
	.card-pain::after {
        display: none;
    }
	.comparison-section {
        padding-top: 3rem;
    }
	.ref{max-width:100%}
	 .results-grid {
        grid-template-columns: 1fr; 
        gap: 2rem;
        padding-top: 1rem;
    }
    .results-intro h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    .visual-proof-container {
        width: 100%;
        margin-top: 0;
    }    
	.modal-overlay.active { padding: 0; }
    .modal-container { height: 100%; border-radius: 0; margin-bottom: 0; }
    .modal-header { padding: 1.5rem 1rem 0.5rem 1rem; }
}
@media (max-width: 480px) {
    .highlight-text {
        white-space: normal; 
    }
}
/* Cookie */
.cc-window{opacity:1;-webkit-transition:opacity 1s ease;transition:opacity 1s ease}
.cc-window.cc-invisible{opacity:0}
.cc-animate.cc-revoke{-webkit-transition:transform 1s ease;-webkit-transition:-webkit-transform 1s ease;transition:-webkit-transform 1s ease;transition:transform 1s ease;transition:transform 1s ease,-webkit-transform 1s ease}
.cc-animate.cc-revoke.cc-top{-webkit-transform:translateY(-2em);transform:translateY(-2em)}
.cc-animate.cc-revoke.cc-bottom{-webkit-transform:translateY(2em);transform:translateY(2em)}
.cc-animate.cc-revoke.cc-active.cc-top{-webkit-transform:translateY(0);transform:translateY(0)}
.cc-animate.cc-revoke.cc-active.cc-bottom{-webkit-transform:translateY(0);transform:translateY(0)}
.cc-revoke:hover{-webkit-transform:translateY(0);transform:translateY(0)}
.cc-grower{max-height:0;overflow:hidden;-webkit-transition:max-height 1s;transition:max-height 1s}
.cc-revoke,.cc-window{position:fixed;overflow:hidden;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:16px;line-height:1.5em;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;z-index:9999}
.cc-window.cc-static{position:fixed}
.cc-window.cc-floating{padding:2em;max-width:24em;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
.cc-window.cc-banner{padding:1em 1.8em;width:100%;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}
.cc-revoke{padding:.5em}.cc-revoke:hover{text-decoration:underline}
.cc-header{font-size:18px;font-weight:700}
.cc-btn,.cc-close,.cc-link,.cc-revoke{cursor:pointer}
.cc-link{opacity:.8;display:inline-block;padding:.2em;text-decoration:underline}.cc-link:hover{opacity:1}.cc-link:active,.cc-link:visited{color:initial}
.cc-btn{display:block;padding:.4em .8em;font-size:.9em;font-weight:700;border-width:2px;border-style:solid;text-align:center;white-space:nowrap}
.cc-highlight .cc-btn:first-child{background-color:transparent;border-color:transparent}
.cc-highlight .cc-btn:first-child:focus,.cc-highlight .cc-btn:first-child:hover{background-color:transparent;text-decoration:underline}
.cc-close{display:block;position:absolute;top:.5em;right:.5em;font-size:1.6em;opacity:.9;line-height:.75}
.cc-close:focus,.cc-close:hover{opacity:1}
.cc-revoke.cc-top{top:0;left:3em;border-bottom-left-radius:.5em;border-bottom-right-radius:.5em}
.cc-revoke.cc-bottom{bottom:0;left:.5em;border-top-left-radius:.5em;border-top-right-radius:.5em}
.cc-revoke.cc-left{left:3em;right:unset}.cc-revoke.cc-right{right:3em;left:unset}
.cc-top{top:1em}.cc-left{left:1em}.cc-right{right:1em}.cc-bottom{bottom:1em}
.cc-floating>.cc-link{margin-bottom:1em}
.cc-floating .cc-message{display:block;margin-bottom:1em}
.cc-window.cc-floating .cc-compliance{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}
.cc-window.cc-banner{-webkit-box-align:center;-ms-flex-align:center;align-items:center}
.cc-banner.cc-top{left:0;right:0;top:0}.cc-banner.cc-bottom{left:0;right:0;bottom:1.25em}
.cc-banner .cc-message{display:block;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;max-width:100%;margin-right:1em}
.cc-compliance{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:justify;align-content:space-between}
.cc-floating .cc-compliance>.cc-btn{-webkit-box-flex:1;-ms-flex:1;flex:1}
.cc-btn+.cc-btn{margin-left:.5em}
@media print{.cc-revoke,.cc-window{display:none}}
@media screen and (max-width:900px){.cc-btn{white-space:normal}.texthalve {width:100%}}
@media screen and (max-width:414px) and (orientation:portrait),screen and (max-width:736px) and (orientation:landscape){
.cc-window.cc-top{top:0}.cc-window.cc-bottom{bottom:0}.cc-window.cc-banner,.cc-window.cc-floating,.cc-window.cc-left,.cc-window.cc-right{left:0;right:0}
.cc-window.cc-banner{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
.cc-window.cc-banner .cc-compliance{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.cc-window.cc-floating{max-width:none}
.cc-window .cc-message{margin-bottom:1em}.cc-window.cc-banner{-webkit-box-align:unset;-ms-flex-align:unset;align-items:unset}.cc-window.cc-banner .cc-message{margin-right:0}
}
.cc-floating.cc-theme-classic{padding:1.2em;border-radius:5px}
.cc-floating.cc-type-info.cc-theme-classic .cc-compliance{text-align:center;display:inline;-webkit-box-flex:0;-ms-flex:none;flex:none}
.cc-theme-classic .cc-btn{border-radius:5px}
.cc-theme-classic .cc-btn:last-child{min-width:140px}
.cc-floating.cc-type-info.cc-theme-classic .cc-btn{display:inline-block}
.cc-theme-edgeless.cc-window{padding:0}
.cc-floating.cc-theme-edgeless .cc-message{margin:2em;margin-bottom:1.5em}
.cc-banner.cc-theme-edgeless .cc-btn{margin:0;padding:.8em 1.8em;height:100%}
.cc-banner.cc-theme-edgeless .cc-message{margin-left:1em}
.cc-floating.cc-theme-edgeless .cc-btn+.cc-btn{margin-left:0}

/* Cookie end */