/* ==========================================================================
   1. DESIGN SYSTEM VARIABLES & BASE STYLES
   ========================================================================== */
:root {
    --bg-main: #05070f;
    --bg-footer: #0f172a;
    --bg-card: rgba(13, 18, 36, 0.8);
    --border-glow: rgba(99, 102, 241, 0.2);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --accent-lime: #FFFF00; 
    --accent-cyan: #06b6d4;
    --accent-indigo: #6366f1;
    --white: #ffffff;
    --nav-text: #475569;
}

* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
    scroll-behavior: smooth; 
}

body {
    background-color: var(--bg-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding-top: 80px; 
    padding-bottom: 160px; 
}

/* SLIDE STRUCTURE */
.slide-container {
    width: 100%;
    min-height: calc(100vh - 240px);
    background-color: var(--bg-main);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
    scroll-margin-top: 100px;
}

/* ==========================================================================
   2. NAVIGATION HEADER (PERMANENT STICKY OBEN)
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--white);
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 10000;
}

.nav-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-decoration: none;
    color: #05070f;
}
.nav-logo span { color: var(--accent-cyan); }

.nav-links {
    display: flex;
    gap: 18px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--nav-text);
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--accent-cyan); }

.nav-links .submenu-item a {
    font-size: 11px;
    opacity: 0.9;
}
.nav-links .submenu-item a::before {
    content: "└ ";
    color: var(--accent-cyan);
    margin-right: 2px;
}

/* ==========================================================================
   3. LAYOUTS, GRIDS & BACKGROUND GLOWS
   ========================================================================== */
.content-area {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Radial-Gradients für die einzelnen Sektionen */
#home { background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.12), transparent 55%), #080c18; }
#clinical-needs { background: radial-gradient(circle at bottom left, rgba(239, 68, 68, 0.08), transparent 55%), #080c18; }
#dentitemp { background: radial-gradient(circle at bottom right, rgba(6, 182, 212, 0.09), transparent 55%), #060a14; }
#callibro { background: radial-gradient(circle at top right, rgba(204, 255, 0, 0.07), transparent 55%), #060a14; }
#technology { background: radial-gradient(circle at bottom right, rgba(99, 102, 241, 0.09), transparent 55%), #080c18; }
#team { background: radial-gradient(circle at bottom left, rgba(6, 182, 212, 0.1), transparent 55%), #080c18; }
#milestones { background: radial-gradient(circle at bottom right, rgba(204, 255, 0, 0.06), transparent 55%), #080c18; }
#ecosystem { background: radial-gradient(circle at bottom right, rgba(204, 255, 0, 0.06), transparent 55%), #080c18; }
#contact { background: radial-gradient(circle at top right, rgba(6, 182, 212, 0.08), transparent 55%), #080c18; }

.grid-2 {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

/* ==========================================================================
   4. TYPOGRAPHY
   ========================================================================== */
h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--white);
}

h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--white);
}

h2.slide-title-dentitemp {
    border-left: 5px solid var(--accent-cyan);
    padding-left: 20px;
    margin-bottom: 25px;
}

h2.slide-title-callibro {
    border-left: 5px solid var(--accent-lime);
    padding-left: 20px;
    margin-bottom: 25px;
}

h3 { 
    color: var(--accent-cyan); 
    font-size: 22px; 
    margin-bottom: 12px; 
    font-family: 'Space Grotesk', sans-serif; 
}

p { 
    font-size: 16px; 
    line-height: 1.6; 
    color: var(--text-secondary); 
    margin-bottom: 12px; 
}

/* ==========================================================================
   5. FIXED FOOTER BLOCK (PERMANENT STICKY UNTEN)
   ========================================================================== */
.slide-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 160px;
    background-color: var(--bg-footer);
    border-top: 1px solid rgba(255,255,255,0.08);
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    padding: 20px 60px;
    z-index: 9999;
}

.footer-col h4 { 
    font-size: 11px; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    color: var(--white); 
    margin-bottom: 10px; 
    border-bottom: 1px solid var(--accent-cyan); 
    display: inline-block; 
    padding-bottom: 4px; 
}
.footer-col ul { list-style: none; }
.footer-col li { font-size: 12px; color: var(--text-secondary); margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.footer-col a { color: var(--text-secondary); text-decoration: none; transition: 0.2s; font-size: 12px; }
.footer-col a:hover { color: var(--accent-lime); }

.legal-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 8px; }
.legal-links a { font-size: 11px; color: var(--text-secondary); text-decoration: none; }
.legal-links a:hover { color: var(--accent-cyan); }

.social-row { display: flex; gap: 15px; margin-top: 5px; }
.social-row i { font-size: 16px; color: var(--text-secondary); cursor: pointer; transition: 0.3s; }
.social-row i:hover { color: var(--accent-cyan); transform: translateY(-2px); }

/* ==========================================================================
   6. GRAPHICS & DASHBOARD UI CARDS
   ========================================================================== */
.graphic-box {
    background: linear-gradient(135deg, #090d1a 0%, #03050a 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    width: 100%;
    min-height: 280px;
    height: auto;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.tech-pattern {
    position: absolute;
    width: 70%;
    height: 70%;
    border: 1px dashed rgba(6, 182, 212, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tech-icon-center { font-size: 54px; color: rgba(255, 255, 255, 0.15); }

.ui-badge,
.ui-badge-hero {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 50;
    width: fit-content;
    pointer-events: none;

    background: rgba(6, 182, 212, 0.12);
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid rgba(6, 182, 212, 0.2);
}
.ui-badge { color: var(--accent-cyan); }
.ui-badge-hero { color: var(--accent-lime); }

.tech-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 14px;
    padding: 24px;
    transition: all 0.3s ease;
}
.tech-card:hover { border-color: rgba(99,102,241,0.4); transform: translateY(-4px); }
.tech-card i { font-size: 28px; color: var(--accent-lime); margin-bottom: 15px; }

/* ==========================================================================
   7. TEAM SCROLL LAYOUT (AUTOMATIC SYNCED DOWNWARD SCROLL)
   ========================================================================== */
.team-scroll-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 100%;
}

.scroll-column-wrapper {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 20px;
    height: 246px; /* Exakt bemessen für 2 Karten + Gap + Padding */
    overflow: hidden;
    position: relative;
}

.team-vertical-scrollway {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    animation: scrollTeam 18s linear infinite;
}


/* KARTEN-STYLING */
.team-vertical-scrollway .team-card-photo {
    background: rgba(13, 18, 36, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    height: 105px; /* Erzwingt feste Höhe gegen Ruckeln oder Sprünge */
    flex-shrink: 0;
}

/* Avatare und Info-Texte */
/* Der aktualisierte Rahmen für Teambilder */
.avatar-frame { 
    width: 60px; 
    height: 60px; 
    border-radius: 10px; /* Behält dein modernes, leicht abgerundetes Design */
    background: #0d1527; 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0; 
    overflow: hidden; /* ZWINGEND ERFORDERLICH: Schneidet das Bild an den abgerundeten Ecken sauber ab */
}

/* Verhindert, dass die Fotos verzerrt oder gequetscht werden */
.avatar-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Passt das Bild proportional an und füllt die Box perfekt aus */
    object-position: center; /* Zentriert den Bildausschnitt auf das Gesicht */
}

.team-info h4 { font-family: 'Space Grotesk', sans-serif; font-size: 15px; color: #fff; font-weight: 700; }
.team-info .role { font-size: 12px; font-weight: 600; margin-bottom: 4px; }
.team-info .desc { font-size: 11px; color: var(--text-secondary); line-height: 1.4; }

.advisor-sidebar { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.04); border-radius: 12px; padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.advisor-photo-item { display: flex; align-items: center; gap: 12px; background: rgba(99, 102, 241, 0.04); padding: 10px; border-radius: 8px; border-left: 3px solid var(--accent-indigo); }

/* ANIMATIONS-KONTROLLE (BEIDE SEITEN RUNTER) */
.animate-down {
    animation: scrollVerticalDown 16s linear infinite;
}

/* Stoppt das Scrollen beim Hover */
.scroll-column-wrapper:hover .team-vertical-scrollway {
    animation-play-state: paused;
}

/* MATHEMATISCH EXAKTER LOOP FÜR 4 KARTEN (4x105px + 4x12px Gap = 468px) */
@keyframes scrollVerticalDown {
    0% {
        transform: translateY(0); /* Startet in der Normalposition */
    }
    100% {
        transform: translateY(calc(-420px - 48px)); /* Verschiebt sich nahtlos um genau 4 Karten + Gaps nach unten */
    }
}

/* ==========================================================================
   8. CONTACT FORM
   ========================================================================== */
.contact-form-container { background: rgba(10, 15, 30, 0.7); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; padding: 30px; width: 100%; max-width: 500px; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 11px; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 6px; }
.form-control { width: 100%; background: rgba(5, 7, 15, 0.8); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 8px; padding: 12px; color: var(--text-primary); font-size: 13px; }
.submit-btn { width: 100%; background: var(--accent-cyan); color: #05070f; border: none; border-radius: 8px; padding: 14px; font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700; text-transform: uppercase; cursor: pointer; }

/* ==========================================================================
   9. MILESTONES & TIMELINES (HORIZONTAL & VERTICAL)
   ========================================================================== */
.timeline-container { display: flex; justify-content: space-between; position: relative; margin-top: 30px; }
.timeline-container::before { content: ''; position: absolute; top: 10px; left: 0; width: 100%; height: 2px; background: rgba(255,255,255,0.1); }
.timeline-point { width: 22px; height: 22px; background: var(--bg-main); border: 3px solid var(--accent-lime); border-radius: 50%; margin: 0 auto 10px; position: relative; z-index: 2; }

.vertical-timeline {
    position: relative;
    padding-left: 29px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.timeline-item {
    position: relative;
    width: 100%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -39px; 
    top: 25px;
    width: 12px;
    height: 12px;
    background: #05070f !important; 
    border: 3px solid var(--accent-lime);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 8px rgba(77, 95, 3, 0.406);
    transition: all 0.3s ease;
}

.timeline-item.active::before {
    border-color: var(--accent-cyan);
    background: #05070f !important; 
    box-shadow: 0 0 15px 4px rgba(6, 182, 212, 0.6);
}

.timeline-meta { margin-bottom: 6px; }

.timeline-year {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-lime);
    letter-spacing: 1px;
}

.timeline-year-cyan {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-cyan);
    letter-spacing: 1px;
}

.timeline-year-badge {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--bg-main);
    background: var(--accent-cyan);
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.timeline-content-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px 20px;
    transition: all 0.3s ease;
}
.timeline-content-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.highlight-card {
    background: rgba(6, 182, 212, 0.03);
    border-color: rgba(6, 182, 212, 0.2);
}
.highlight-card:hover {
    border-color: rgba(6, 182, 212, 0.4);
    background: rgba(6, 182, 212, 0.05);
}

.timeline-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.timeline-desc {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.timeline-layout-wrapper {
    align-items: center;
    gap: 60px;
    width: 100%;
}

.timeline-left-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ==========================================================================
   9b. LOGO CAROUSEL (STEPPED TIME-DELAY SLIDER)
   ========================================================================== */

/* Das Sichtfenster (Sorgt dafür, dass exakt nur 1 Slide zu sehen ist) */
.logo-carousel-box {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--accent-cyan);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 30px 0; /* Padding links/rechts auf 0 setzen, das machen wir im Slide! */
    overflow: hidden;
    position: relative;
}

/* Das bewegliche Band im Inneren */
/* Das bewegliche Band im Inneren */
.logo-track {
    display: flex;
    width: 400%; /* Exakt 400% für 4 Elemente */
    /* Gesamtzeit: 21 Sekunden (4 Slides mal ca. 5 Sekunden Standzeit + sanfte Übergänge) */
    animation: stepScrollLeftFour 12s cubic-bezier(0.85, 0, 0.15, 1) infinite;
}

/* Jeder Slide nimmt exakt 25% des 400%-Tracks ein */
.logo-slide {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 25%; /* 100% / 4 Slides = 25% */
    flex-shrink: 0;
    align-items: center;
    justify-items: center;
    padding: 0 40px;
    box-sizing: border-box;
}

/* EXAKTES TIMING FÜR REIN 4 SLIDES OHNE KLON */
@keyframes stepScrollLeftFour {
    /* --- SLIDE 1 (0px Versatz) --- */
    0%, 21% {
        transform: translateX(0);
    }
    
    /* --- SLIDE 2 (-25% Versatz) --- */
    25%, 46% {
        transform: translateX(-25%);
    }
    
    /* --- SLIDE 3 (-50% Versatz) --- */
    50%, 71% {
        transform: translateX(-50%);
    }
    
    /* --- SLIDE 4 (-75% Versatz) --- */
    75%, 96% {
        transform: translateX(-75%); /* Bleibt jetzt hier für die vollen 5 Sekunden stehen */
    }
    
    /* Am Ende der Animationslaufzeit (96% -> 100%) schiebt sich das Band flüssig zum Start zurück */
    100% {
        transform: translateX(0);
    }
}

/* Container für jedes einzelne Logo gegen Verzerrung */
.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80px; /* Einheitliche Höhe für alle Logos */
    box-sizing: border-box;
    background-color: #ffffff;
    border-radius: 10px;
}

.logo-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.logo-carousel-box:hover .logo-track {
    animation-play-state: paused;
}
/* imprint.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #020817;
    color: rgb(1, 7, 19);
}

/* PAGE */

.imprint-page {
    min-height: 100vh;
    padding: 50px 60px;
    background:
        radial-gradient(circle at top left, rgba(0, 174, 255, 0.08), transparent 35%),
        linear-gradient(to bottom, #020817, #031224);
}

/* LOGO */

.logo-area {
    margin-bottom: 70px;
}

.logo-area img {
    width: 320px;
    max-width: 100%;
}

/* CONTENT */

.imprint-container {
    max-width: 950px;
}

.imprint-container h1 {
    font-size: 38px;
}

/* BLOCKS */

.imprint-block {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.imprint-block h2 {
    color: #38bdf8;
    font-size: 28px;
    margin-bottom: 18px;
    font-weight: 600;
}

.imprint-block h2 {
    font-size: 20px;
}
.imprint-block p {
    font-size: 16px;
}

/* LINKS */

a {
    color: #38bdf8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* MOBILE */

@media (max-width: 768px) {

    .imprint-page {
        padding: 40px 24px;
    }

    .imprint-container h1 {
        font-size: 40px;
    }

    .imprint-block h2 {
        font-size: 22px;
    }

    .imprint-block p {
        font-size: 17px;
    }

    .logo-area img {
        width: 240px;
    }
}
.legal-page {
  min-height: 100vh;
  background: #050b18;
  color: #ffffff;
  padding: 10px 8% 80px;
}

.legal-box {
  max-width: 1300px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 48px;
}

.legal-box h1 {
  font-size: 42px;
  margin-bottom: 32px;
  color: #00c8ff;
}

.legal-box h2 {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 12px;
  color: #ffffff;
}

.legal-box p {
  font-size: 16px;
  line-height: 1.7;
  color: #b8c3d6;
}

.legal-box a {
  color: #00c8ff;
  text-decoration: none;
}


.legal-box h1 {
    text-align: center;
    margin-bottom: 50px;
}

.legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    text-align: left;
}

.legal-column:first-child {
    padding-left: 70px;
}

.legal-column:last-child {
    padding-left: 150px;
}

.legal-section {
    margin-bottom: 18px;
}

.legal-section h2 {
    margin-top: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .legal-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.tnc-column:first-child {
    padding-left: 20px;
}

.tnc-column:last-child {
    padding-left: 20px;
}
/* =========================================================
   MOBILE FIX – ganz unten in main.css einfügen
========================================================= */

@media (max-width: 768px) {

    body {
        padding-top: 120px;
        padding-bottom: 0;
        overflow-x: hidden;
    }

    .navbar {
        height: auto;
        padding: 15px 20px;
        flex-direction: column;
        gap: 12px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .slide-container {
        min-height: auto;
        overflow: visible;
    }

    .content-area {
        padding: 40px 20px;
    }

    h1 {
        font-size: 34px;
        line-height: 1.2;
    }

    h2 {
        font-size: 28px;
    }

    .grid-2,
    .grid-3,
    .team-scroll-grid,
    .timeline-layout-wrapper,
    .legal-grid {
        grid-template-columns: 1fr !important;
    }

    .slide-footer {
        position: relative;
        height: auto;
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 25px;
    }

    .scroll-column-wrapper {
        height: auto;
    }

    .team-vertical-scrollway {
        animation: none;
    }

    .logo-track {
        animation: none;
        width: 100%;
        flex-direction: column;
        gap: 20px;
    }

    .logo-slide {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }

    .legal-column:first-child,
    .legal-column:last-child {
        padding-left: 0;
    }

    .legal-box {
        padding: 25px;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}
@media (max-width: 768px) {

    /* Bilder kleiner auf Handy */
    .graphic-box {
        max-height: 200px;
    }

   .graphic-box img,
.content-area img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

    /* Team-Seite: kein automatischer Scroll-Slider auf Handy */
    .team-scroll-grid {
        grid-template-columns: 1fr !important;
    }

    .scroll-column-wrapper {
        height: auto;
        overflow: visible;
    }

    .team-vertical-scrollway {
        animation: none !important;
        transform: none !important;
    }

    /* Wiederholte Teamkarten auf Mobile ausblenden */
    .team-vertical-scrollway .team-card-photo:nth-child(n+5) {
        display: none;
    }

    .team-card-photo {
        height: auto !important;
        min-height: 95px;
    }

    .avatar-frame {
        width: 52px;
        height: 52px;
    }
}
@media (max-width: 768px) {
    .graphic-box {
        min-height: auto;
        padding: 12px;
    }

    .graphic-box img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}
@media (max-width: 768px) {

    .logo-carousel-box {
        max-width: 100%;
        padding: 20px 10px;
    }

    .logo-track {
        width: 100% !important;
        animation: none !important;
        flex-direction: column;
    }

    .logo-slide {
        width: 100% !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0;
    }

    .logo-wrapper {
        height: 55px;
        padding: 8px;
    }

    .logo-wrapper img {
        max-width: 90% !important;
        max-height: 45px !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain;
    }
}
@media (max-width: 768px) {

    #home .content-area {
        padding-top: 150px;
    }

    #home .graphic-box {
        align-items: flex-start !important;
        justify-content: flex-start !important;
        padding-top: 55px !important;
    }

    #home .ui-badge-hero {
        top: 12px !important;
        left: 12px !important;
        z-index: 100 !important;
    }

    #home .graphic-box img {
        width: 80% !important;
        max-width: 80% !important;
        height: auto !important;
        margin: 0 auto !important;
    }
}
@media (max-width: 768px) {

    .graphic-box {
        min-height: 0 !important;
        height: auto !important;
        padding: 12px !important;
        overflow: visible !important;
        display: block !important;
    }

    .graphic-box img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        object-fit: contain !important;
    }

    .grid-2 {
        gap: 25px !important;
    }
}
@media (max-width: 768px) {

    .slide-container {
        background: #020817;
        border-top: 1px solid rgba(255,255,255,0.06);
        margin-bottom: 18px;
        border-radius: 18px;
    }

    .slide-container:nth-child(even) {
        background: #071226;
    }

}
@media (max-width: 768px) {

    #home,
    #clinical-needs,
    #dentitemp,
    #callibro,
    #technology,
    #team,
    #milestones,
    #ecosystem,
    #contact {
        background: #050b18 !important;
        border: 1px solid rgba(255,255,255,0.12) !important;
        border-radius: 18px !important;
        margin: 18px 12px !important;
        padding: 18px 0 !important;
    }

    #clinical-needs,
    #callibro,
    #team,
    #ecosystem {
        background: #0b1730 !important;
    }
}