 /* ==========================================================================
   INHALT
   
   1. Design System (Variables)
   2. Reset & Base
   3. Typography
   4. Layout & Grid
   5. Components
      5.1 Navigation
      5.2 Buttons
      5.3 Cards
      5.4 Forms
      5.5 Social Icons
   6. Sections
      6.1 Hero
      6.2 Vision
      6.3 Approach
      6.4 Team
      6.5 Connect
      6.6 Footer
      6.7 KI Chatbot Section
   7. Decorative Elements
   8. Animations & Effects
   9. Utilities
   10. Media Queries
   ========================================================================== */

/* ==========================================================================
   1. DESIGN SYSTEM (VARIABLES)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Alatsi&display=swap');

@font-face {
    font-family: 'Satoshi';
    src: url('fonts/Satoshi-Regular.woff2') format('woff2'),
         url('fonts/Satoshi-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('fonts/Satoshi-Medium.woff2') format('woff2'),
         url('fonts/Satoshi-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('fonts/Satoshi-Bold.woff2') format('woff2'),
         url('fonts/Satoshi-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('fonts/Satoshi-Light.woff2') format('woff2'),
         url('fonts/Satoshi-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

:root {
    /* === Farbpalette === */
    /* Primäre Blau-Töne */
    --primary-darkest: #08326B;     /* Sehr dunkles Blau */
    --primary-dark: #0B4F9C;        /* Dunkles Blau */
    --primary-mid-dark: #0D5FBD;    /* Mitteldunkles Blau */
    --primary: #1470FB;             /* Primäres Blau */
    --primary-mid-light: #3687FF;   /* Mittelhelles Blau */
    --primary-light: #4B96FF;       /* Helles Blau */
    --primary-lighter: #6BA7FF;     /* Helleres Blau (optimiert für Lesbarkeit) */
    
    /* Sektionen mit blauem Hintergrund */
    --section-blue-bg: #ecf6ff;     /* Heller blauer Hintergrund für Sektionen, war vorher #eaf3ff */
    
    /* Gradienten */
    --primary-gradient: linear-gradient(135deg, #08326B 0%, #0B4F9C 15%, #0D5FBD 30%, #1470FB 50%, #3687FF 70%, #4B96FF 85%, #6BA7FF 100%);
    --shimmer-gradient: linear-gradient(135deg, #08326B 0%, #0B4F9C 10%, #0D5FBD 25%, #1470FB 40%, #3687FF 55%, #4B96FF 70%, #6BA7FF 85%, #4B96FF 100%);
    --compact-gradient: linear-gradient(135deg, #0B4F9C 0%, #1470FB 50%, #4B96FF 100%);
    
    /* Akzentfarben */
    --accent-purple: #4A6FA5;
    --accent-light: #5A8FE5;
    
    /* === Neutrale Farben === */
    --background: #f8f9fa;          /* Neutrales, leicht gräuliches Weiß */
    --background-alt: #f8f9fa;      /* Neutrales, leicht gräuliches Weiß */
    --text: #0F172A;
    --text-secondary: #4b5563;
    --section-bg: #f8f9fa;          /* Neutrales, leicht gräuliches Weiß */
    --card-bg: #ffffff;            /* Reines Weiß für Karten für subtilen Kontrast */
    --border: rgba(226, 229, 232, 0.3); /* Neutraler Borderton */
    --success: #10b981;
    
    /* === Schatten === */
    --shadow-sm: 0 4px 6px -1px rgba(145, 150, 155, 0.05), 0 2px 4px -1px rgba(145, 150, 155, 0.03);  /* Neutrale Schatten */
    --shadow-md: 0 10px 15px -3px rgba(145, 150, 155, 0.04), 0 4px 6px -2px rgba(145, 150, 155, 0.02); /* Neutrale Schatten */
    --shadow-lg: 0 20px 25px -5px rgba(145, 150, 155, 0.03), 0 10px 10px -5px rgba(145, 150, 155, 0.02); /* Neutrale Schatten */
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Alatsi', sans-serif;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--background) !important;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    width: 100%;
    touch-action: manipulation;
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
    font-weight: 700;
    max-width: 100%;
    word-wrap: break-word;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text);
}

p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    max-width: 100%;
    word-wrap: break-word;
    color: var(--text);
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text);
    font-weight: 400;
    max-width: 760px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

/* Gradient Text */
.gradient-text {
    background: var(--shimmer-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 300% 300%;
    animation: extendedShimmer 7s ease-in-out infinite;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gradient-text::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 75%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.gradient-text:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

/* ==========================================================================
   4. LAYOUT & GRID
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Speziell für die Vision-Section den Container volle Breite geben */
section#vision .container {
    max-width: 100%;
    padding: 0 2rem; /* Einheitlicher Abstand von 2rem */
    width: 100%;
}

section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    margin: 0;
}

section:nth-child(even) {
    background-color: var(--section-blue-bg) !important;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   5. COMPONENTS
   ========================================================================== */

/* === 5.1 Navigation === */
nav {
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
    padding: 0 1.5rem;
}

nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
    max-width: 1240px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    background-size: 400% 100%;
    animation: logoExtendedShimmer 8s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.logo-text::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 75%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.logo-tagline {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 2px;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    padding: 0.3rem 0.125rem;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--compact-gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
}

/* === 5.2 Buttons === */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary-gradient);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(8, 50, 107, 0.2);
    background-size: 300% 100%;
    background-position: 0% 0%;
    position: relative;
    overflow: hidden;
    animation: buttonExtendedShimmer 3.5s ease-in-out infinite;
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--shimmer-gradient);
    background-size: 400% 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: buttonExtendedShimmer 3.5s ease-in-out infinite;
    z-index: 1;
}

.button span {
    position: relative;
    z-index: 2;
}

.button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 75%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(8, 50, 107, 0.3);
}

.button:hover::before {
    opacity: 0.2;
}

.button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(8, 50, 107, 0.2);
}

.button-icon {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.button:hover .button-icon {
    transform: translateX(3px);
}

.button-secondary {
    background: white;
    color: var(--primary);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.button-secondary:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.button-secondary:active {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* === 5.3 Cards === */
/* Approach Cards */
.approach-card {
    flex: 0 0 350px;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.approach-card:hover {
    box-shadow: 0 12px 24px rgba(11, 79, 156, 0.1);
}

.approach-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background: var(--primary-gradient);
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    background-size: 300% 100%;
}

.approach-card:hover::before {
    transform: scaleX(1);
    animation: cardBorderExtendedShimmer 3s ease-in-out infinite;
}

.approach-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.1;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.approach-number::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 75%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.approach-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    position: relative;
    color: var(--primary-dark);
    padding-top: 1.25rem; /* mehr Abstand nach oben zur Nummer */
    padding-right: 1.5rem; /* mehr Abstand zur Nummer, wenn diese rechts ist */
    line-height: 1.4; /* für bessere Zeilenumbrüche */
    hyphens: manual; /* manuelles Silbentrennung ermöglichen */
    -webkit-hyphens: manual;
    -ms-hyphens: manual;
}

.approach-card h3::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 75%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.approach-card p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

.feature-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-dark);
    font-weight: 500;
}

/* Team Cards */
.team-member {
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    background-color: white;
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    overflow: hidden;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-member::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 100px;
    background: var(--primary-gradient);
    top: -80px;
    left: -10%;
    border-radius: 50%;
    opacity: 0.05;
    transition: transform 0.5s ease;
}

.team-member:hover::before {
    transform: translateY(20px);
}

.team-icon {
    font-size: 1.5rem;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: var(--primary-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(8, 50, 107, 0.2);
    position: relative;
    z-index: 2;
    background-size: 250% 250%;
    animation: iconExtendedShimmer 5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.team-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 75%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.team-member h3 {
    margin-bottom: 0.375rem;
    font-size: 1.375rem;
    position: relative;
    z-index: 2;
}

.team-member .role {
    color: var(--primary-mid-dark);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    position: relative;
    z-index: 2;
}

.team-member p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    color: var(--text);
}

/* Team Flip Cards */
.team-card-container {
    perspective: 1000px;
    width: 100%;
    aspect-ratio: 3/4;
    cursor: pointer;
}

/* Change from :hover to .hover-active */
.team-card-container.hover-active {
    z-index: 2;
}

.team-card {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Change from :hover to .hover-active */
.team-card-container.hover-active .team-card {
    transform: rotateY(180deg);
}

.team-card-container:not(.hover-active) .team-card {
    transform: rotateY(0deg);
}

.team-card-front, .team-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    background-color: #ffffff;
}

.team-card-front {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    z-index: 2;
}

.team-card-front::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 100px;
    background: var(--primary-gradient);
    top: -80px;
    left: -10%;
    border-radius: 50%;
    opacity: 0.05;
    transition: transform 0.5s ease;
    z-index: 1;
}

.team-card-container:hover .team-card-front::before {
    transform: translateY(20px);
}

.team-card-back {
    transform: rotateY(180deg) translateZ(1px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    z-index: 2;
}

.team-card-front h3 {
    margin-bottom: 0.375rem;
    font-size: 1.375rem;
    position: relative;
    z-index: 2;
}

.team-card-front .role {
    color: var(--primary-mid-dark);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    position: relative;
    z-index: 2;
}

.team-card-back h3 {
    margin-bottom: 0.375rem;
    align-self: center;
}

.team-card-back .role {
    color: var(--primary-mid-dark);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    align-self: center;
}

.team-card-back p {
    margin: 1rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text);
    max-height: 150px;
    overflow-y: auto;
    text-align: center;
    align-self: stretch;
}

.team-card-back p::-webkit-scrollbar {
    width: 4px;
}

.team-card-back p::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
}

.team-card-back p::-webkit-scrollbar-thumb {
    background: rgba(8, 50, 107, 0.2);
    border-radius: 10px;
}

.card-flip-hint {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    border-radius: 20px;
    background-color: rgba(8, 50, 107, 0.05);
    opacity: 0.7;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 2;
}

.hint-text:before {
    content: "Mehr Details";
}

.flip-icon-hint {
    font-size: 1.1rem;
    display: inline-block;
    animation: subtle-pulse 3s infinite;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: auto;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background-color: rgba(8, 50, 107, 0.05);
    align-self: center;
}

.linkedin-link:hover {
    background-color: rgba(8, 50, 107, 0.1);
}

.linkedin-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: var(--primary-gradient);
    margin-right: 8px;
    background-size: 250% 100%;
    animation: linkedInExtendedShimmer 5s ease-in-out infinite;
}

.team-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    box-shadow: 0 0 0 0 rgba(8, 50, 107, 0);
    transition: box-shadow 0.5s ease;
    pointer-events: none;
    z-index: -1;
}

.team-card-container:hover .team-card::after {
    box-shadow: 0 0 20px 3px rgba(8, 50, 107, 0.15);
}

/* === 5.4 Forms === */
#approach {
    background-color: var(--background);
    padding-bottom: 6rem;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    padding-bottom: 4rem;
    margin-bottom: 2rem;
}

.connect-section {
    background-color: var(--background);
    position: relative;
    overflow: visible;
    margin-top: 0;
    padding-bottom: 6rem;
}

.connect-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-bottom: 4rem;
    margin-bottom: 2rem;
}

.connect-content {
    max-width: 500px;
}

.connect-content h2 {
    text-align: left;
}

.connect-options {
    margin-top: 2rem;
}

.connect-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.connect-icon,
.social-icon {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    border-radius: 12px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.connect-option h4 {
    margin: 0;
    font-size: 1.125rem;
}

.connect-option p {
    margin: 0.25rem 0 0;
    font-size: 1rem;
}

.connect-option a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(8, 50, 107, 0.1);
    border: 1px solid var(--border);
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(8, 50, 107, 0.15);
}

.contact-form::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary-gradient);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    opacity: 0.05;
    filter: blur(40px);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.625rem;
    font-weight: 500;
    color: var(--text);
    font-size: 0.9375rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.125rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
    font-weight: 300;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 79, 156, 0.1);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.checkbox-container input {
    margin-top: 0.3125rem;
}

.checkbox-container label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* === 5.5 Social Icons === */
.social-icon,
.social-icon-link {
    width: 50px !important;
    height: 50px !important;
    border-radius: 12px;
    background: white;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.social-icon svg,
.social-icon-link svg {
    width: 24px !important;
    height: 24px !important;
    fill: currentColor !important;
    transition: all 0.3s ease;
}

.social-icon {
    color: var(--primary) !important;
}

.social-icon-link {
    color: var(--text);
    text-decoration: none;
}

.social-icon-link:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.social-icon-link:hover svg {
    transform: scale(1.1);
    color: white !important;
}

.social-icon-link[href*="instagram"]:hover,
.connect-option.social-option:hover .instagram-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: white !important;
}

.social-icon-link[href*="linkedin"]:hover,
.connect-option.social-option:hover .linkedin-icon {
    background: #0077B5 !important;
    color: white !important;
}

.connect-option.social-option:hover .social-icon svg {
    color: white !important;
    transform: scale(1.1);
}

.connect-option.social-option:hover {
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    justify-content: center;
}

.connect-option.social-option {
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-connect-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.social-connect-link h4 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text);
    transition: color 0.3s ease;
}

.social-connect-link p {
    margin: 0.25rem 0 0;
    font-size: 1rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.connect-option.social-option:hover .social-connect-link h4 {
    color: var(--primary);
}

.connect-option.social-option:hover .social-connect-link p {
    color: var(--text);
}

.connect-option {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* .connect-icon,
.social-icon {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    border-radius: 12px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    flex-shrink: 0;
} */

.social-connect-link {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.connect-option > div:last-child,
.social-connect-link > div:last-child {
    flex: 1;
    min-width: 0;
}

.connect-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-connect-link {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.connect-option.social-option {
    padding: 0;
}

.connect-option.social-option .social-connect-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0;
    margin: 0;
}

.connect-icon,
.social-icon {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    flex-shrink: 0;
    margin: 0;
}

.connect-option > div:not(.connect-icon),
.social-connect-link > div:not(.social-icon) {
    margin: 0;
    padding: 0;
}

/* ==========================================================================
   6. SECTIONS
   ========================================================================== */

/* === 6.1 Hero === */
.hero {
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
    background-color: var(--background);
    display: flex;
    align-items: center;
}

.hero::before,
.hero::after {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.hero-title-container {
    margin-bottom: 3rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(8, 50, 107, 0.1);
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle,
.hero-content .hero-subtitle,
.hero .hero-subtitle {
    max-width: 640px;
    margin: 0 auto 2rem;
    font-size: 2.5rem !important;
    color: var(--text);
    line-height: 1.8;
    font-weight: 300;
}

@media (max-width: 768px) {
    .hero-subtitle,
    .hero-content .hero-subtitle,
    .hero .hero-subtitle {
        font-size: 2rem !important;
    }
}

/* === 6.2 Vision === */
section#vision.vision-section {
    padding: 5rem 0;
    background-color: var(--section-blue-bg) !important;
    position: relative;
    overflow: visible;
    margin: 0;
}

section#vision.vision-section::before,
section#vision.vision-section::after {
    display: none;
}

.vision-section .container {
    overflow: visible !important;
    max-width: 100%;
    padding: 0 0.5rem;
}

.vision-section > div {
    overflow: visible !important;
}

.vision-section blockquote {
    position: relative;
    overflow: visible !important;
    max-width: 700px;
    margin: 4rem auto 0;
}

.vision-list {
    overflow: visible !important;
    margin-top: 3rem;
}

.vision-item {
    overflow: visible !important;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.vision-section * {
    overflow-x: visible !important;
    overflow-y: visible !important;
}

.vision-section [style*="overflow"] {
    overflow: visible !important;
}

.vision-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.vision-list {
    margin-top: 2rem;
}

.vision-item {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.vision-icon {
    background: var(--compact-gradient);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    background-size: 200% 200%;
    animation: visionIconShimmer 3.5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.vision-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 75%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.vision-icon span {
    font-size: 1.25rem;
    font-weight: 700;
}

.vision-item-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.vision-item-content p {
    margin-bottom: 0;
    font-size: 1rem;
}

.vision-pillars-list {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 3rem 0 2.5rem 0;
    flex-wrap: wrap;
}
.pillar-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(20,112,251,0.07);
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
    min-width: 220px;
    max-width: 320px;
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}
.pillar-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(20,112,251,0.13);
}
.pillar-number {
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 8px rgba(20,112,251,0.08);
}
.vision-quote {
    margin: 2.5rem auto 2.5rem auto;
    text-align: center;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--primary-dark);
    max-width: 700px;
    line-height: 1.5;
    position: relative;
    padding: 1.7rem 2.2rem 1.5rem 2.2rem;
    background: rgba(20,112,251,0.025);
    border-radius: 18px;
    font-style: italic;
    border-left: 5px solid var(--primary);
    box-shadow: 0 2px 12px rgba(20,112,251,0.06);
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    justify-content: center;
}
.quote-icon {
    font-size: 2.5rem;
    color: var(--primary-light);
    opacity: 0.25;
    margin-top: -0.2em;
    flex-shrink: 0;
    font-family: 'Georgia', serif;
}
.quote-text {
    font-size: 1.15rem;
    color: var(--primary-dark);
    font-style: italic;
    font-family: 'Space Grotesk', 'Arial', sans-serif;
    line-height: 1.6;
    text-align: left;
}
@media (max-width: 700px) {
    .vision-quote {
        padding: 1.2rem 1rem 1rem 1rem;
        font-size: 1rem;
        gap: 0.7rem;
    }
    .quote-icon {
        font-size: 2rem;
    }
    .quote-text {
        font-size: 1rem;
    }
}
.vision-facts .fact-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(20,112,251,0.07);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    min-width: 220px;
    max-width: 320px;
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.vision-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.vision-facts .fact-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(20,112,251,0.13);
}
.vision-facts .fact-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-weight: 400;
    text-align: left;
}
.vision-facts .fact-text strong {
    background: var(--shimmer-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 300% 300%;
    animation: extendedShimmer 7s ease-in-out infinite;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.3rem;
}

.vision-facts .fact-text strong::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 75%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.vision-facts .fact-source {
    display: block;
    margin-top: 0.7rem;
    font-size: 0.97rem;
    color: var(--primary-darkest);
    font-weight: 500;
}

.vision-facts .fact-source a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 400;
    margin-left: 0.2rem;
}

@media (max-width: 900px) {
    .vision-pillars-list, .vision-facts {
        gap: 1.2rem;
    }
    .pillar-card, .vision-facts .fact-card {
        min-width: 180px;
        max-width: 100%;
        padding: 1.5rem 1rem 1rem 1rem;
    }
}

@media (max-width: 600px) {
    .vision-pillars-list, .vision-facts {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .pillar-card, .vision-facts .fact-card {
        width: 100%;
        min-width: unset;
        max-width: 100%;
    }
}

/* Enhanced Fact Cards mit modernen Rändern */
.facts-cards-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    width: calc(100% - 4rem); /* Einheitlicher Abstand von 2rem auf jeder Seite */
    margin-left: auto;
    margin-right: auto;
}

.fact-source a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.fact-source a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Enhanced Fact Cards - ähnlich wie Approach Cards */
.enhanced-fact-card {
    background: var(--card-bg, #ffffff);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(8, 50, 107, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    margin-bottom: 2rem;
}

/* Farbiger Rand oben, der beim Hovern erscheint */
.enhanced-fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary, #4a6bff), var(--secondary, #38bdf8));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.enhanced-fact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.enhanced-fact-card:hover::before {
    transform: scaleX(1);
}

/* Bildcontainer mit Rahmen */
.fact-image-container {
    flex: 0 0 35%;
    position: relative;
    overflow: hidden;
    border: 4px solid rgba(0, 0, 0, 0.03); /* Rahmen um das Bild */
    box-sizing: border-box;
    border-top-left-radius: 8px; /* Abrundung oben links */
    border-bottom-left-radius: 8px; /* Abrundung unten links */
}

.fact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-top-left-radius: 4px; /* Abrundung oben links für das Bild */
    border-bottom-left-radius: 4px; /* Abrundung unten links für das Bild */
}


.fact-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.fact-content h4 {
    font-size: 1.5rem;
    margin: 0 0 1rem;
    color: var(--heading-color, #333);
    position: relative;
    padding-bottom: 0.75rem;
}

.fact-content h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 60px;
    background: linear-gradient(90deg, var(--primary, #4a6bff), var(--secondary, #38bdf8));
    border-radius: 3px;
}

.fact-content p {
    flex-grow: 1;
    margin: 0 0 1.5rem;
    line-height: 1.7;
}

.fact-source {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
    color: var(--text-secondary, #666);
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px dashed rgba(0, 0, 0, 0.1); /* Subtile gestrichelte Linie */
}

/* Responsive Design */
@media (max-width: 992px) {
    .enhanced-fact-card {
        flex-direction: column;
    }

    .fact-image-container {
        flex: 0 0 220px;
        border: 4px solid rgba(0, 0, 0, 0.03);
    }
    
    .fact-content {
        padding: 2rem;
    }
}


/* === 6.3 Approach === */
#approach {
    padding: 5rem 0;
    background-color: var(--section-blue-bg) !important;
    position: relative;
    margin: 0;
    overflow: visible;
}

section#approach::before,
section#approach::after {
    display: none;
}

/* Ensure the section includes all content */
section#approach,
.approach-carousel-container,
.mediziner-section {
    background-color: var(--section-blue-bg) !important;
}

/* Future Section */
.future-section {
    background-color: var(--section-blue-bg) !important;
    padding: 5rem 0;
    position: relative;
    margin: 0;
}

/* Mediziner Section */
.mediziner-section {
    background-color: var(--section-blue-bg) !important;
    position: relative;
    overflow: visible;
    padding: 5rem 0 0; /* Unteres Padding auf 0 gesetzt */
    margin: 0;
    margin-bottom: 0; /* Margin-bottom auf 0 gesetzt */
}

.mediziner-section::after {
    display: none; /* Welle unten bereits ausgeblendet */
}

/* === 6.4 Team === */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    padding-bottom: 4rem;
    margin-bottom: 2rem;
}

.team {
    background-color: var(--section-blue-bg) !important;
    position: relative;
    overflow: visible;
    padding: 5rem 0;
    margin: 0;
}

.team::after {
    display: none;
}

/* === 6.5 Connect === */
.connect-section {
    background-color: var(--section-blue-bg) !important;
    position: relative;
    overflow: visible;
    padding: 5rem 0;
    margin: 0;
}

.connect-section::before,
.connect-section::after {
    display: none;
}

.connect-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-bottom: 4rem;
    margin-bottom: 2rem;
}

.connect-content {
    max-width: 500px;
}

.connect-content h2 {
    text-align: left;
}

.connect-options {
    margin-top: 2rem;
}

.connect-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.connect-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    font-size: 1.25rem;
    color: var(--primary);
}

.connect-option h4 {
    margin: 0;
    font-size: 1.125rem;
}

.connect-option p {
    margin: 0.25rem 0 0;
    font-size: 1rem;
}

.connect-option a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

/* === 6.6 Footer === */
footer {
    background-color: #f0f4f8;
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border);
    position: relative;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2.5rem;
}

.footer-logo {
    margin-bottom: 1.875rem;
}

.footer-logo span:first-child {
    font-size: 1.875rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 300% 100%;
    animation: footerLogoExtendedShimmer 7s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.footer-logo span:first-child::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 75%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.footer-logo span:last-child {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 5px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: 900px;
    margin: 1.875rem auto;
}

.footer-links > div {
    padding: 0 1rem;
}

.footer-links h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-links ul {
    list-style: none;
    text-align: center;
}

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

.footer-links a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 1.875rem;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text);
    font-size: 0.875rem;
}

/* === 6.7 KI Chatbot Section === */
section#chatbot.chatbot-section {
    padding: 5rem 0 2rem 0; /* Padding-bottom von 5rem auf 2rem reduziert */
    background-color: var(--section-blue-bg) !important;
    position: relative;
    overflow: visible; /* Geändert von 'hidden' zu 'visible', damit die Elemente nicht abgeschnitten werden */
    margin: 0;
    z-index: 1; /* Z-Index hinzugefügt */
}

section#chatbot.chatbot-section::before {
    display: none;
}

.chatbot-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: visible; /* Overflow auf visible gesetzt */
}

.chatbot-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(20, 112, 251, 0.1);
}

.chatbot-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 300% 100%;
    animation: extendedShimmer 7s ease-in-out infinite;
}

.chatbot-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin: 1.5rem auto 2rem;
    line-height: 1.6;
    max-width: 80%;
}

.chatbot-highlight {
    color: var(--primary);
    font-weight: 600;
}

.chatbot-hint {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--text-light);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.chatbot-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 0; /* Von 2rem auf 0 reduziert */
    padding-bottom: 20px; /* Zusätzliches Padding für den Container */
    position: relative;
    z-index: 5; /* Z-Index erhöht */
}

.chatbot-feature {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative; /* Position für Schatten */
    margin-bottom: 0; /* Margin entfernt */
    z-index: 10; /* Z-Index erhöht */
}

.chatbot-feature:hover {
    transform: scale(1.03); /* Skalierung statt Verschiebung */
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* Gleichmäßiger Schatten in alle Richtungen */
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.chatbot-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.chatbot-stats:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
    flex: 1;
    padding: 0 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .chatbot-stats {
        flex-direction: column;
        padding: 1rem;
    }
    
    .stat-item {
        padding: 1rem 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* ==========================================================================
   7. DECORATIVE ELEMENTS
   ========================================================================== */
.particles-container,
.particle,
.gradient-orb,
.gradient-orb-1,
.gradient-orb-2,
.gradient-orb-3,
.gradient-wave,
.animated-shape,
.shape-1,
.shape-2,
.blob,
.blob-1,
.blob-2,
.blob-3,
.light-rays,
.light-ray {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(8, 50, 107, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(8, 50, 107, 0.03) 1px, transparent 1px);
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}

/* ==========================================================================
   8. ANIMATIONS & EFFECTS
   ========================================================================== */

/* Keyframes für Animationen */
@keyframes extendedShimmer {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 33% 50%;
    }
    50% {
        background-position: 66% 50%;
    }
    75% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes logoExtendedShimmer {
    0% {
        background-position: 0% 50%;
    }
    33% {
        background-position: 50% 50%;
    }
    66% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes buttonExtendedShimmer {
    0% {
        background-position: 0% 50%;
    }
    33% {
        background-position: 50% 50%;
    }
    66% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes cardBorderExtendedShimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes numberExtendedShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    33% {
        background-position: 50% 50%;
    }
    66% {
        background-position: 100% 50%;
    }
}

@keyframes visionIconShimmer {
    0% {
        background-position: 0% 0%;
        transform: scale(1);
    }
    50% {
        background-position: 100% 100%;
        transform: scale(1.05);
    }
    100% {
        background-position: 0% 0%;
        transform: scale(1);
    }
}

@keyframes iconExtendedShimmer {
    0% {
        background-position: 0% 0%;
    }
    33% {
        background-position: 50% 50%;
    }
    66% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

@keyframes linkedInExtendedShimmer {
    0% {
        background-position: 0% 50%;
    }
    33% {
        background-position: 50% 50%;
    }
    66% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes footerLogoExtendedShimmer {
    0% {
        background-position: 0% 50%;
    }
    33% {
        background-position: 50% 50%;
    }
    66% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes subtle-pulse {
    0% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(30deg); 
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

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

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Animation für ganze Seite */
.from-bottom, .from-left, .from-right {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 1.5s ease, transform 2s ease;
}

.from-left {
    transform: translateX(-100px);
}

.from-right {
    transform: translateX(100px);
}

.from-bottom.visible,
.from-left.visible,
.from-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.fade-in {
    animation: fadeIn 0.7s ease-out forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

.pulse {
    animation: pulse 2s infinite ease-in-out;
}

.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.appear {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }
.delay-700 { transition-delay: 0.7s; }

/* Entferne das bg-grid komplett */
.bg-grid {
    display: none !important;
}

/* Neue subtile Hintergrundanimationen */

/* 1. Gradient Orb Animations */
.gradient-orb,
.gradient-orb-1,
.gradient-orb-2,
.gradient-orb-3 {
    display: none !important;
}

/* 2. Gradient Wave Animation */
.gradient-wave {
    display: none !important;
}

/* 3. Floating Particles */
.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--primary-light);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 15s infinite linear;
}

.particle:nth-child(2n) {
    background: var(--accent);
    animation-duration: 20s;
    animation-delay: -5s;
}

.particle:nth-child(3n) {
    background: var(--accent2);
    animation-duration: 25s;
    animation-delay: -10s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* 4. Subtle Gradient Animation */
.animated-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(
        -45deg,
        rgba(240, 249, 255, 0) 0%,
        rgba(240, 249, 255, 0.3) 25%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(240, 249, 255, 0.3) 75%,
        rgba(240, 249, 255, 0) 100%
    );
    background-size: 400% 400%;
    animation: gradientShift 30s ease infinite;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* 5. Light Rays */
.light-rays {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.light-ray {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
    transform: rotate(45deg);
    transform-origin: top center;
    animation: rayMove 20s ease-in-out infinite;
}

.light-ray:nth-child(2) {
    left: 25%;
    animation-delay: -5s;
}

.light-ray:nth-child(3) {
    left: 50%;
    animation-delay: -10s;
}

.light-ray:nth-child(4) {
    left: 75%;
    animation-delay: -15s;
}

@keyframes rayMove {
    0%, 100% {
        transform: rotate(45deg) translateX(0);
        opacity: 0;
    }
    50% {
        transform: rotate(45deg) translateX(100px);
        opacity: 0.3;
    }
}

/* Verbesserungen für bestehende Blobs */
.blob {
    mix-blend-mode: soft-light;
    transition: all 0.5s ease;
}

.blob-1 {
    opacity: 0.12;
    animation: floatAdvanced 18s ease-in-out infinite;
}

.blob-2 {
    opacity: 0.10;
    animation: floatAdvanced 22s ease-in-out infinite reverse;
}

.blob-3 {
    opacity: 0.08;
    animation: floatAdvanced 15s ease-in-out infinite 2s;
}

@keyframes floatAdvanced {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% { 
        transform: translate(40px, -60px) rotate(90deg) scale(1.1);
    }
    50% { 
        transform: translate(-30px, 40px) rotate(180deg) scale(0.9);
    }
    75% { 
        transform: translate(60px, 20px) rotate(270deg) scale(1.05);
    }
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .gradient-orb,
    .animated-shape {
        opacity: 0.08;
    }
    
    .gradient-wave {
        opacity: 0.03;
    }
    
    .particles-container {
        opacity: 0.5;
    }
}

/* ==========================================================================
   9. UTILITIES
   ========================================================================== */

/* Text Utilities */
.text-center {
    text-align: center;
}

/* Blockquote Styles */
blockquote {
    position: relative;
    font-style: italic;
}

blockquote::before,
blockquote::after {
    position: absolute;
    font-size: 4rem;
    color: var(--primary-dark);
    opacity: 0.7;
    font-family: 'Georgia', serif;
}

blockquote::before {
    content: '"';
    top: -1rem;
    left: -1rem;
}

blockquote::after {
    content: '"';
    bottom: -3rem;
    right: -1rem;
}

/* Responsive Basis */
* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Prevent Horizontal Scroll */
section {
    overflow-x: hidden;
}

/* ==========================================================================
   10. MEDIA QUERIES
   ========================================================================== */

/* Extra Large Devices (Large Desktops) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Large Devices (Desktops) */
@media (max-width: 1200px) {
    html { 
        font-size: 14px; 
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Medium Devices (Tablets) */
@media (max-width: 992px) {
    html { 
        font-size: 14px; 
    }
    
    section {
        padding: 4rem 0;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .connect-container {
        flex-direction: column;
    }
    
    .connect-content {
        margin-bottom: 3rem;
    }
    
    .vision-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-content {
        padding-right: 0;
    }
    
    .vision-image {
        margin-top: 2rem;
    }
}

/* Small Devices (Landscape Phones) */
@media (max-width: 768px) {
    html { 
        font-size: 13px; 
    }
    
    section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .hero {
        padding: 5rem 0 3rem;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 5rem;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        display: block;
        padding: 1.125rem 1.5rem;
        border-top: 1px solid var(--border);
        font-size: 1.125rem;
        text-align: center;
    }
    
    .mobile-menu-button {
        display: block;
    }
    
    .approach-grid {
        gap: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-card-container {
        width: 100%;
    }
    
    .team-card-front, .team-card-back {
        padding: 1.5rem;
    }
    
    .social-icon,
    .connect-icon {
        width: 40px !important;
        height: 40px !important;
    }
    
    .social-icon svg,
    .connect-icon svg {
        width: 20px !important;
        height: 20px !important;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .vision-quote-modern {
        padding: 1.5rem;
    }
    
    .vision-quote-modern p {
        font-size: 1.1rem;
    }
}

/* Extra Small Devices (Portrait Phones) */
@media (max-width: 480px) {
    html { 
        font-size: 12px; 
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .team-grid {
        gap: 1rem;
    }
    
    .approach-card, 
    .team-card-container,
    .connect-option,
    .fact-card {
        padding: 1.25rem;
    }
    
    .blob {
        opacity: 0.05;
    }
    
    .social-icon,
    .connect-icon {
        width: 36px !important;
        height: 36px !important;
    }
    
    .social-icon svg,
    .connect-icon svg {
        width: 18px !important;
        height: 18px !important;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .button {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .form-control {
        padding: 0.75rem;
    }
    
    .vision-quote-modern {
        padding: 1.25rem;
    }
    
    .vision-quote-modern p {
        font-size: 1rem;
    }
    
    .vision-quote-modern .quote-mark {
        font-size: 3rem;
    }
}

/* Very Small Devices */
@media (max-width: 360px) {
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .hero {
        padding: 4rem 0 2rem;
    }
    
    .approach-card,
    .team-card-container,
    .connect-option,
    .fact-card {
        padding: 1rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

/* Small Height */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 5rem 0 2rem;
    }
    
    nav {
        height: 4rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 1rem 0;
    }
}

/* Fix for iOS input zoom */
@media screen and (-webkit-min-device-pixel-ratio: 0) { 
    select,
    textarea,
    input[type="text"],
    input[type="password"],
    input[type="datetime"],
    input[type="datetime-local"],
    input[type="date"],
    input[type="month"],
    input[type="time"],
    input[type="week"],
    input[type="number"],
    input[type="email"],
    input[type="url"],
    input[type="search"],
    input[type="tel"],
    input[type="color"] {
        font-size: 16px;
    }
}

/* ==========================================================================
   END OF STYLESHEET
   ========================================================================== */

.image-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    margin: 2.5rem 0 2rem 0;
    flex-wrap: wrap;
    background-color: var(--background);
}

.future-img, .mediziner-img {
    width: 100%;
    max-width: 320px;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(20,112,251,0.08);
    object-fit: cover;
    aspect-ratio: 4/3;
    background-color: white;
}

@media (max-width: 1100px) {
    .future-img, .mediziner-img {
        max-width: 260px;
    }
    .image-row {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .image-row {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .future-img, .mediziner-img {
        max-width: 100%;
        width: 100%;
    }
}

.facts-section {
    background: var(--section-blue-bg) !important;
    padding: 5rem 0;
    text-align: center;
    margin: 0;
}

.facts-section .container {
    max-width: 100%;
    padding: 0 2rem; /* Einheitlicher Abstand von 2rem */
    width: 100%;
}

.facts-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.facts-intro {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.facts-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.fact-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(20,112,251,0.07);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    min-width: 220px;
    max-width: 260px;
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.fact-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(20,112,251,0.13);
}

.fact-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 300% 100%;
    animation: extendedShimmer 7s ease-in-out infinite;
}

.fact-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.facts-claim {
    margin-top: 2.5rem;
    font-size: 1.25rem;
    color: var(--text);
    font-weight: 500;
    background: rgba(20,112,251,0.04);
    border-radius: 14px;
    padding: 1.5rem 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .facts-list {
        gap: 1.2rem;
    }
    .fact-card {
        min-width: 180px;
        max-width: 220px;
        padding: 1.5rem 1rem 1rem 1rem;
    }
}

@media (max-width: 600px) {
    .facts-list {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .fact-card {
        width: 100%;
        min-width: unset;
        max-width: 100%;
    }
    .facts-section h2 {
        font-size: 1.5rem;
    }
    .facts-intro, .facts-claim {
        font-size: 1rem;
    }
}

.vision-quote-simple {
    margin: 2.5rem auto 2.5rem auto;
    text-align: center;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--primary-dark);
    max-width: 700px;
    line-height: 1.5;
    font-style: italic;
    border-top: 1px solid var(--border);
    padding: 1.2rem 0 0.5rem 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
    border-left: none;
}
@media (max-width: 700px) {
    .vision-quote-simple {
        font-size: 1rem;
        padding: 1rem 0 0.3rem 0;
    }
}

.vision-quote-modern {
    position: relative;
    padding: 3rem;
    background-color: #f5f5f5;
    border-radius: 20px;
    margin: 4rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.vision-quote-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f5f5f5;
    border-radius: 20px;
    z-index: -1;
}

.vision-quote-modern p,
.vision-quote-modern cite,
.vision-quote-image-container {
    position: relative;
    z-index: 2;
}

.vision-quote-modern p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 2rem;
    font-style: italic;
}

.vision-quote-modern cite {
    display: block;
    font-size: 1.2rem;
    color: var(--text);
    font-style: normal;
    font-weight: 500;
}

.vision-quote-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    width: 56px;
    height: 56px;
    background: none;
    border-radius: 50%;
    box-shadow: none;
    overflow: visible;
}

.vision-quote-image {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 50%;
    border: none;
    background: none;
    display: block;
    box-shadow: 0 2px 8px rgba(20,112,251,0.07);
}

.vision-quote-modern cite {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: normal;
    font-weight: 400;
    text-align: right;
    float: right;
}

h1, h2, h3, h4, p, .subtitle, .fact-text, .fact-source {
    hyphens: auto;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* === responsive-additions.css (eingefügt) === */
/* responsive-additions.css - Complete responsive CSS for Medovo website */

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 576px) {
    .container { padding: 0 1.5rem; }
}

@media (min-width: 768px) {
    .container { padding: 0 2rem; }
}

html {
    font-size: 16px;
}

@media (max-width: 1400px) {
    html { font-size: 15px; }
}

@media (max-width: 1200px) {
    html { font-size: 14px; }
}

@media (max-width: 992px) {
    html { font-size: 14px; }
}

@media (max-width: 768px) {
    html { font-size: 13px; }
}

@media (max-width: 480px) {
    html { font-size: 12px; }
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    word-break: break-word;
    hyphens: auto;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.2;
    word-break: break-word;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    line-height: 1.3;
}

p {
    font-size: clamp(0.9rem, 2vw, 1.125rem);
    line-height: 1.6;
}

nav {
    padding: 0 1rem;
}

.nav-container {
    padding: 0 0.5rem;
}

@media (max-width: 768px) {
    nav {
        padding: 0 0.5rem;
    }
    
    .nav-links {
        width: 100%;
        max-height: calc(100vh - 5rem);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-links a {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }
}

/* === Hero Section Responsive === */
.hero {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 60);
    padding: clamp(6rem, 15vh, 10rem) 0 clamp(3rem, 10vh, 6rem);
}

.hero-content {
    max-width: min(90%, 820px);
    margin: 0 auto;
    text-align: center;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.375rem);
    max-width: min(90%, 640px);
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 6rem 0 4rem;
    }
}

/* === Vision Section Responsive === */
.vision-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
}

@media (max-width: 480px) {
    .vision-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .vision-icon {
        margin-bottom: 0.5rem;
    }
}

/* === Approach Cards Responsive Grid === */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }
}

.approach-card {
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 16px;
}

/* === Team Section Responsive === */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
}

@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }
}

.team-card-container {
    height: auto;
    min-height: 400px;
}

@media (max-width: 480px) {
    .team-card-container {
        min-height: 380px;
    }
}

/* === Connect Section Responsive === */
.connect-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.connect-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    padding-right: 1rem;
}

.connect-content h2 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.connect-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
    width: 100%;
    max-width: 320px;
}

.connect-option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.2s;
}

.connect-option:hover {
    transform: translateX(5px);
}

.connect-icon {
    min-width: 40px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Medium screens (tablets, small laptops) */
@media (max-width: 1024px) {
    .connect-container {
        grid-template-columns: 45% 55%;
    }
    
    .connect-content {
        padding-left: 1rem;
    }
}

/* Smaller tablets and large phones */
@media (max-width: 992px) {
    .connect-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 2rem;
        margin-bottom: 4rem;
    }
    
    .connect-content {
        text-align: center;
        align-items: center;
        padding: 0;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .connect-options {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .connect-options {
        width: 100%;
        max-width: 280px;
    }
    
    .connect-option {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    .connect-icon {
        min-width: 32px;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0; /* Prevent icon from shrinking */
    }
    
    .connect-icon svg,
    .connect-icon img,
    .connect-icon i {
        width: 18px !important;
        height: 18px !important;
        display: block !important;
        margin: 0 auto !important;
    }
    
    .connect-option span {
        white-space: nowrap;
        font-size: 0.9rem;
        display: block;
        width: calc(100% - 32px - 0.75rem); /* Calculate exact width */
    }
    
    /* Reset any transforms that might be causing issues */
    .connect-option:hover {
        transform: translateX(3px);
    }
}

/* === Contact Form Responsive === */
.contact-form {
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 16px;
}

.form-control {
    width: 100%;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(0.875rem, 2vw, 1.125rem);
    font-size: clamp(0.875rem, 2vw, 1rem);
}

/* === Footer Responsive === */
footer {
    padding: clamp(3rem, 8vw, 5rem) 0 2rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0;
    }
}

.button {
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
    font-size: clamp(0.875rem, 2vw, 1.0625rem);
    border-radius: 12px;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 480px) {
    .button {
        padding: 0.875rem 1.25rem;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section, .container {
    overflow-x: hidden;
}

.blob {
    overflow: hidden;
}

@media (max-width: 768px) {
    .blob {
        width: 60%;
        height: 60%;
        filter: blur(60px);
    }
    
    .blob-1 {
        top: -50px;
        right: -30px;
    }
    
    .blob-2 {
        bottom: -50px;
        left: -30px;
    }
    
    .blob-3 {
        width: 40%;
        height: 40%;
    }
    
    .animated-shape {
        width: 300px;
        height: 300px;
    }
}

h1, h2, h3, h4, h5, h6, p, span, li, a {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

@media (hover: none) {
    .button:hover,
    .approach-card:hover,
    .team-card-container:hover {
        transform: none !important;
    }
    
    .team-card-container {
        cursor: pointer;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 0.75rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero {
        padding: 5rem 0 3rem;
    }
    
    .approach-card,
    .team-member,
    .contact-form {
        padding: 1.25rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 320px) {
    html {
        font-size: 11px;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    .button {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 3rem 0;
    }
    
    nav {
        position: sticky;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 1rem 0;
    }
}

@supports (padding: max(0px)) {
    body {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
    
    nav {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }
    
    footer {
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }
}

.cookie-banner-content {
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        gap: 0.5rem;
    }
    
    .cookie-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-button {
        width: 100%;
    }
}

.ios input,
.ios textarea,
.ios select {
    font-size: 16px !important;
}

#chtl-launcher {
    bottom: 2rem !important;
    right: 2rem !important;
}

@media (max-width: 480px) {
    #chtl-launcher {
        bottom: 1rem !important;
        right: 1rem !important;
    }
}

.hide-mobile {
    display: block !important;
}

.show-mobile {
    display: none !important;
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
    
    .show-mobile {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .approach-grid,
    .team-grid,
    .footer-links {
        gap: 1rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
}

.z-nav { z-index: 1000; }
.z-modal { z-index: 2000; }
.z-tooltip { z-index: 3000; }

.footer-links a.active {
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
}

.social-icon-link:active {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

/* FAQ Section Styles */
.faq-section {
    padding: 5rem 0;
    background-color: var(--section-blue-bg) !important;
    position: relative;
    overflow: visible;
    margin: 0;
}

.faq-section::before {
    display: none;
}

/* Ensure all related sections have the same background */
.faq-section,
.chatbot-section {
    /* Hintergrundfarbe entfernt, wird über .section-blue gesetzt */
}

.chatbot-section {
    padding: 5rem 0 2rem 0; /* Padding-bottom von 5rem auf 2rem reduziert */
    background-color: var(--section-blue-bg) !important;
    position: relative;
    overflow: visible; /* Geändert von 'hidden' zu 'visible', damit die Elemente nicht abgeschnitten werden */
    margin: 0;
}

.faq-container {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 4vw;
    margin-top: 12rem;
}

.faq-section .section-header {
    margin-bottom: 4rem;
}

.faq-item {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    overflow: hidden;
    height: fit-content;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    position: relative;
    z-index: 1;
    margin-bottom: 0.5rem;
}

.faq-question h3 {
    font-size: 1.25rem;
    margin: 0;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: white;
    margin-top: 0.5rem;
}

.faq-answer-content {
    padding: 0.3rem 1.5rem 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    margin-top: 0.5rem;
}

@media (max-width: 992px) {
    .faq-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 2vw;
    }
    
    .faq-column {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-container {
        padding: 0 1vw;
    }
    
    .faq-question {
        padding: 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 1.25rem;
    }
}

/* Spline Viewer Styles */
.spline-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.spline-container spline-viewer {
    width: 100%;
    height: 100%;
}

/* Update hero content z-index to appear above Spline */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Adjust background elements z-index */
.gradient-orb,
.gradient-wave,
.particles-container,
.light-rays,
.animated-gradient,
.animated-shape {
    z-index: 1;
}

@media (max-width: 768px) {
    .spline-container {
        height: 50vh;
        position: relative;
        margin-bottom: 2rem;
    }
}

/* Intro Animation Section */
.intro-animation {
    position: relative;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: var(--background);
}

.spline-container.fullscreen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.spline-container.fullscreen spline-viewer {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .intro-animation {
        height: 60vh;
    }
}

@media (max-width: 480px) {
    .intro-animation {
        height: 50vh;
    }
}

/* Approach Section Styles */
.approach-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.approach-carousel {
    width: 100%;
    overflow-x: auto;
    display: flex;
    position: relative;
    margin: 0 auto;
}

.carousel-track {
    gap: 2rem;
    animation: none;
    width: max-content;
    will-change: transform;
}
.carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;        /* Firefox */
    -ms-overflow-style: none;     /* IE 10+ */
  }
  .carousel-track::-webkit-scrollbar {
    display: none;                /* Chrome, Safari, Opera */
  }


.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 50%;
    display: none; /* Pfeile ausblenden */
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.carousel-arrow.left-arrow {
    left: 1rem;
}

.carousel-arrow.right-arrow {
    right: 1rem;
}

.carousel-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    color: #4b88e6;
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

@keyframes carouselScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 2));
    }
}

.carousel-blur {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.carousel-blur.left {
    left: 0;
    background: linear-gradient(to right, var(--background) 0%, transparent 100%);
}

.carousel-blur.right {
    right: 0;
    background: linear-gradient(to left, var(--background) 0%, transparent 100%);
}

.approach-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.1;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.carousel-hint {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
    opacity: 0.7;
    font-style: italic;
}

@media (max-width: 768px) {
    .approach-card {
        flex: 0 0 300px;
        padding: 1.5rem;
    }
    
    .carousel-blur {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .approach-card {
        flex: 0 0 260px;
        padding: 1.25rem;
    }
    
    .carousel-blur {
        width: 60px;
    }
}

/* Touch-Optimierungen für mobile Geräte */
@media (hover: none) and (pointer: coarse) {
    /* Team-Karten für Touch optimieren */
    .team-card-container {
        perspective: none;
    }
    
    .team-card-container:active .team-card {
        transform: rotateY(180deg);
    }
    
    /* Größere Touch-Ziele */
    .nav-links a,
    .footer-links a,
    .button,
    .form-control,
    .checkbox-container label,
    .faq-question {
        min-height: 44px;
    }
    
    /* Bessere Feedback für Touch-Aktionen */
    .approach-card:active,
    .team-card-container:active,
    .connect-option:active,
    .social-icon-link:active,
    .button:active {
        transform: scale(0.98);
    }
    
    /* Optimierte Hover-Effekte für Touch */
    .approach-card,
    .team-card-container,
    .connect-option,
    .social-icon-link,
    .button {
        transition: transform 0.2s ease;
    }
    
    /* Optimierte Scrolling-Performance */
    .carousel-track {
        -webkit-overflow-scrolling: touch;
        will-change: transform;
    }
}

/* Verbesserte Barrierefreiheit */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Tastatur-Navigation */
.nav-links a:focus-visible,
.footer-links a:focus-visible,
.button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* === Approach Section === */
section#approach {
    padding: 5rem 0;
    background-color: var(--section-blue-bg) !important;
    position: relative;
    margin: 0;
    overflow: visible;
}


section#approach::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -150px;
    width: 100%;
    height: 300px;
    background: #f0f7ff;
    border-radius: 0 0 50% 50%;
    z-index: -1;
}

/* Ensure the section includes all content */
section#approach,
.approach-carousel-container,
.mediziner-section {
    background-color: var(--section-blue-bg) !important;
}

.mediziner-section::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -150px;
    width: 100%;
    height: 300px;
    background: #f0f7ff;
    border-radius: 0 0 50% 50%;
    z-index: -1;
}

.vision-content {
    display: flex;
    flex-direction: row;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    margin: 2rem auto; /* Horizontale Auto-Zentrierung */
    max-width: 100%;
    width: calc(100% - 4rem); /* Einheitlicher Abstand von 2rem auf jeder Seite */
    box-sizing: border-box;
}

.vision-content p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
}

@media (max-width: 1020px) {
    .vision-content {
        padding: 1.5rem;
        flex-direction: column !important;
    }
    
    .vision-left {
        flex: 1 !important;
        padding-right: 0 !important;
        border-right: none !important;
        border-bottom: 1px solid var(--border);
        padding-bottom: 2rem !important;
        margin-bottom: 2rem !important;
        padding-top: 0 !important;
        max-width: 100% !important;
        border-radius: 20px 20px 0 0 !important;
    }
    
    .vision-right {
        padding-left: 0 !important;
        border-radius: 0 0 20px 20px !important;
    }
    .vision-content p {
        font-size: 1.25rem;
    }
}

.vision-content p:last-child {
    margin-bottom: 0;
}

/* Future Section (zwischen Approach und Mediziner) */
.future-section {
    background-color: #f0f7ff;
    padding: 4rem 0;
    position: relative;
}

/* === Approach and Related Sections === */
#approach,
.future-section,
.mediziner-section {
    margin: 0;
    padding: 4rem 0;
    position: relative;
}

#approach {
    padding-top: 8rem;
    background-color: rgba(240, 247, 255, 0.7) !important;
}

.future-section {
    background-color: #f0f7ff;
}

.mediziner-section {
    background-color: var(--background) !important;
    padding-bottom: 8rem;
    overflow: visible;
    margin-bottom: 8rem;
    margin-top: 6rem; /* Vergrößerter Abstand zum Karussell */
}

.mediziner-section::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -150px;
    width: 100%;
    height: 300px;
    background: var(--background);
    border-radius: 0 0 50% 50%;
    z-index: -1;
}

/* Remove any gaps between sections */
section + section {
    margin-top: 0;
}

.spline-container-chatbot {
    position: relative;
    width: 20%;
    max-width: 300px;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.spline-container-chatbot spline-viewer {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
}

@media (max-width: 1200px) {
    .spline-container-chatbot {
        width: 60%; /* Erhöht von 45% auf 60% */
    }
}

@media (max-width: 768px) {
    .spline-container-chatbot {
        height: 250px; /* Etwas kleiner für mobile Geräte */
        width: 70%; /* Erhöht von 60% auf 70% */
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .spline-container-chatbot {
        height: 220px; /* Erhöht von 180px auf 220px */
        width: 85%; /* Erhöht von 75% auf 85% */
        padding: 0.75rem;
    }
}

.spline-container-chatbot::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border-radius: 24px;
    z-index: -1;
    filter: blur(10px);
}

.spline-container-chatbot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.04) 10%,
        rgba(255, 255, 255, 0.04) 90%,
        transparent 100%
    );
    pointer-events: none;
}

.spline-container-chatbot spline-viewer {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    position: relative;
    z-index: 1;
}

.vision-quote-image-container {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 0.5rem;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-quote-image {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(20,112,251,0.10);
    border: 2px solid var(--primary-light);
    background: #fff;
}

@media (max-width: 600px) {
    .vision-quote-image-container {
        float: none;
        margin: 0 auto 1rem auto;
        display: flex;
        justify-content: center;
    }
    .vision-quote-modern {
        text-align: center;
    }
}

.vision-quote-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    max-width: 600px;
    margin: 3.5rem auto 2.5rem auto;
    padding: 0;
    background: none;
    box-shadow: none;
    border: none;
}

.vision-quote-image-container {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border-radius: 50%;
    box-shadow: none;
    overflow: visible;
}

.vision-quote-image {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 50%;
    border: none;
    background: none;
    display: block;
    box-shadow: 0 2px 8px rgba(20,112,251,0.07);
}

.vision-quote-textblock {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    gap: 0.5rem;
}

.vision-quote-textblock p {
    font-size: 1.13rem;
    color: #222831;
    font-style: normal;
    margin: 0 0 0.2rem 0;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.vision-quote-textblock cite {
    font-size: 0.98rem;
    color: var(--primary-mid-dark);
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.01em;
    opacity: 0.85;
    margin: 0;
}

@media (max-width: 600px) {
    .vision-quote-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    .vision-quote-textblock {
        align-items: center;
        text-align: center;
    }
    .vision-quote-image-container {
        width: 44px;
        height: 44px;
    }
    .vision-quote-image {
        width: 40px;
        height: 40px;
    }
}

.vision-quote-caption {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.93rem;
    color: var(--primary-mid-dark);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.01em;
    opacity: 0.7;
    text-align: center;
}

.vision-container {
    padding: 4rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vision-quote-clean {
    max-width: 680px;
    margin: 0;
    padding: 0;
    position: relative;
    border: none;
    background: none;
    font-family: 'Satoshi', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

.quote-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
}

.quote-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-top: 0.3rem;
    flex-shrink: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.vision-quote-clean p {
    margin: 0;
    padding: 0;
    font-size: 1.15rem;
    line-height: 1.65;
    font-weight: 300;
    color: #333;
    letter-spacing: -0.01em;
    position: relative;
}

.vision-quote-clean cite {
    display: block;
    margin-left: calc(48px + 1.5rem);
    font-style: normal;
    font-weight: 400;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 640px) {
    .quote-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .vision-quote-clean cite {
        margin-left: 0;
        text-align: center;
    }
    
    .vision-container {
        padding: 2rem 0;
    }
    
    .quote-image {
        margin-top: 0;
    }
}

/* Modern Quote Section - Apple/Medovo Inspired */
.quote-section {
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
}

.quote-container {
    max-width: 800px;
    width: 100%;
    background-color: #f9fbfe;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.quote-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.quote-image-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quote-author-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.quote-text-wrapper {
    flex: 1;
}

.quote-text {
    margin: 0 0 1.25rem 0;
    padding: 0;
    position: relative;
}

.quote-text::before,
.quote-text::after {
    content: "";
    display: none;
}

.quote-text p {
    font-family: "Georgia", serif;
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.6;
    color: #222;
    margin: 0;
    padding: 0;
    position: relative;
}

.quote-text p::before {
    content: "„";
    position: absolute;
    left: -0.6em;
    top: -0.2em;
    font-size: 1.5em;
    line-height: 1;
    color: rgba(20, 112, 251, 0.15);
}

.quote-text p::after {
    content: '"';
    display: inline;
    margin-left: 0.2em;
    color: rgba(20, 112, 251, 0.15);
    font-size: 1.5em;
    line-height: 0;
    position: relative;
    top: 0.15em;
}

.quote-author {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.author-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    margin-right: 0.4em;
}

.author-title {
    font-weight: 400;
    font-size: 0.875rem;
    color: #666;
}

@media (max-width: 768px) {
    .quote-section {
        padding: 3rem 1.5rem;
    }
    
    .quote-container {
        padding: 2rem 1.5rem;
    }
    
    .quote-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .quote-author {
        align-items: center;
    }
    
    .quote-text p {
        font-size: 1.125rem;
    }
    
    .quote-text p::before {
        left: -0.4em;
        top: -0.2em;
    }
    
    .quote-image-wrapper {
        width: 72px;
        height: 72px;
    }
}

@media (max-width: 480px) {
    .quote-section {
        padding: 2rem 1rem;
    }
    
    .quote-container {
        padding: 1.5rem;
    }
    
    .quote-image-wrapper {
        width: 64px;
        height: 64px;
    }
    
    .quote-text p {
        font-size: 1.05rem;
    }
    
    .author-name, 
    .author-title {
        font-size: 0.85rem;
    }
}

.integrated-quote {
    margin: 3rem auto 1rem auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.integrated-quote .quote-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.integrated-quote .quote-image-wrapper {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: none;
}

.integrated-quote .quote-author-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.integrated-quote .quote-text-wrapper {
    flex: 1;
    text-align: left;
}

.integrated-quote .quote-text {
    margin: 0 0 1.25rem 0;
    padding: 0;
    position: relative;
}

.integrated-quote .quote-text p {
    font-family: "Georgia", serif;
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.6;
    color: #222;
    margin: 0;
    padding: 0;
    position: relative;
}

.integrated-quote .quote-text p::before {
    content: "";
    position: absolute;
    left: -0.6em;
    top: -0.2em;
    font-size: 1.5em;
    line-height: 1;
    color: rgba(20, 112, 251, 0.15);
}

.integrated-quote .quote-text p::after {
    content: "";
    display: inline;
    margin-left: 0.2em;
    color: rgba(20, 112, 251, 0.15);
    font-size: 1.5em;
    line-height: 0;
    position: relative;
    top: 0.15em;
}

.integrated-quote .quote-author {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.integrated-quote .author-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
    margin-right: 0.4em;
}

.integrated-quote .author-title {
    font-weight: 400;
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 768px) {
    .integrated-quote .quote-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .integrated-quote .quote-text-wrapper {
        text-align: center;
    }
    
    .integrated-quote .quote-author {
        align-items: center;
    }
    
    .integrated-quote .quote-text p::before {
        left: -0.4em;
        top: -0.2em;
    }
    .integrated-quote .quote-author-image{
        width: 80px;
        height: 80px;
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .integrated-quote {
        margin-top: 2rem;
    }
    
    .integrated-quote .quote-image-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .integrated-quote .quote-text p {
        font-size: 1.1rem;
    }
}

/* Unified Wave Design für alle blauen Sektionen */
.unified-wave-section {
    position: relative;
    background-color: rgba(240, 247, 255, 0.7) !important;
    overflow: visible;
}

.unified-wave-section::before,
.unified-wave-section::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 160px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: -1;
}

.unified-wave-section::before {
    top: -80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23eaf3ff' d='M0,64L80,69.3C160,75,320,85,480,85.3C640,85,800,75,960,69.3C1120,64,1280,64,1360,64L1440,64L1440,100L1360,100C1280,100,1120,100,960,100C800,100,640,100,480,100C320,100,160,100,80,100L0,100Z'%3E%3C/path%3E%3C/svg%3E");
}

.unified-wave-section::after {
    bottom: -80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23eaf3ff' d='M0,32L80,37.3C160,43,320,53,480,53.3C640,53,800,43,960,37.3C1120,32,1280,32,1360,32L1440,32L1440,0L1360,0C1280,0,1120,0,960,0C800,0,640,0,480,0C320,0,160,0,80,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
}

/* Ensure all related sections have the same background */
.section-blue {
    background-color: #eaf3ff !important; /* Stärkere blaue Farbe */
    position: relative;
    overflow: visible;
}

/* Entferne den separaten Hintergrund für .faq-section und .chatbot-section */
.chatbot-section {
    margin-top: -8rem; /* Connect with FAQ section */
    padding-bottom: 4rem;
}

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

/* === Medovo Chatbot USP Box (modernisiert) === */
.chatbot-usp-box {
  background: rgba(255,255,255,0.7);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(20,112,251,0.08);
  padding: 2.5rem 2rem 1.5rem 2rem;
  margin: 2.5rem auto 0 auto;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.chatbot-usp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}

.chatbot-content {
    flex-direction: column;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.chatbot-text {
    flex: 1;
    max-width: 100%;
    margin-bottom: 1rem; /* Add space between text and canvas */
}

.chatbot-subtitle {
    font-size: 1rem;
}

.spline-container-chatbot {
    width: 100%;
    height: 200px; /* Reduced from 300px to 200px */
    margin-bottom: 1.5rem; /* Reduced from 2rem to 1.5rem */
    overflow: visible; /* Allow the canvas to extend outside its container */
}

.chatbot-section {
    padding-bottom: 2rem; /* Reduced from 3rem to 2rem */
    margin-bottom: 1.5rem; /* Reduced from 2rem to 1.5rem */
    position: relative;
}

.spline-container-chatbot spline-viewer {
    width: 100%;
    height: 100%;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .chatbot-content {
        flex-direction: column;
        padding: 0 1.5rem;
        position: relative;
        z-index: 2;
    }
    
    .chatbot-text {
        flex: 1;
        max-width: 100%;
        margin-bottom: 1rem; /* Add space between text and canvas */
    }
    
    .chatbot-subtitle {
        font-size: 1rem;
    }
    
    .spline-container-chatbot {
        width: 100%;
        height: 300px; /* Fixed height instead of max-height */
        margin-bottom: 2rem; /* Add space below the canvas */
        overflow: visible; /* Allow the canvas to extend outside its container */
    }
    
    .chatbot-section {
        padding-bottom: 3rem; /* Add extra padding at the bottom of the section */
        margin-bottom: 2rem; /* Add margin to separate from the next section */
        position: relative;
    }
}

.usp-feature {
  text-align: center;
  transition: transform 0.2s;
}

.usp-feature:hover .usp-icon {
  transform: scale(1.18) rotate(-6deg);
  /* Kein Schatten mehr */
}

.usp-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}

.usp-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.usp-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.chatbot-usp-stats {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  width: 100%;
}

.usp-stat {
  background: var(--primary-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 2rem;
  padding: 0.7rem 1.5rem 0.4rem 1.5rem;
  box-shadow: 0 2px 8px #1470FB22;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 90px;
  transition: background 0.3s;
  cursor: pointer; /* Kein Fragezeichen mehr */
}

.usp-stat span {
  font-size: 0.85rem;
  font-weight: 400;
  color: #eaf3ff;
  margin-top: 0.1rem;
  letter-spacing: 0.01em;
}

/* === Medovo Chatbot USP Box (einzigartig & modernisiert) === */
.unique-glass {
  background: rgba(255,255,255,0.45);
  border-radius: 24px;
  box-shadow: 0 12px 48px 0 rgba(20,112,251,0.13), 0 1.5px 8px 0 rgba(20,112,251,0.07);
  backdrop-filter: blur(18px) saturate(1.2);
  border: 1.5px solid rgba(20,112,251,0.10);
  position: relative;
  overflow: visible;
  padding: 3rem 2.5rem 2rem 2.5rem;
  margin: 3rem auto 0 auto;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.unique-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  width: 100%;
  position: relative;
}

.unique-feature {
  text-align: center;
  position: relative;
  z-index: 2;
  transition: transform 0.25s cubic-bezier(.4,2,.6,1), filter 0.2s;
  will-change: transform, filter;
}

.unique-icon {
  font-size: 3.2rem;
  margin-bottom: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #eaf3ff 0%, #f8fbff 100%);
  box-shadow: 0 2px 16px 0 rgba(20,112,251,0.07);
  transition: transform 0.25s cubic-bezier(.4,2,.6,1), background 0.5s, filter 0.2s;
  will-change: transform, background, filter;
  position: relative;
  user-select: none;
}

.unique-feature:hover .unique-icon {
  transform: scale(1.28) rotate(-12deg);
  /* Kein Farb- oder Hintergrundeffekt mehr */
  background: none;
  filter: none;
}

.usp-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.18rem;
  letter-spacing: 0.01em;
}

.usp-desc {
  font-size: 1.01rem;
  color: var(--text-secondary);
  font-weight: 400;
  opacity: 0.92;
  transition: color 0.2s, opacity 0.2s;
}

.unique-feature:hover .usp-desc {
  color: var(--primary-darkest);
  opacity: 1;
}

/* Animierte Verbindungslinien */
.usp-connector {
  position: absolute;
  top: 50%;
  right: -1.25rem;
  width: 2.5rem;
  height: 2px;
  background: linear-gradient(90deg, #b6d0ff 0%, #1470FB 100%);
  opacity: 0.18;
  border-radius: 2px;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s;
}
.unique-feature:last-child .usp-connector {
  display: none;
}
.unique-feature:hover .usp-connector {
  opacity: 0.38;
}

/* USP Stats als animierte Badges */
.unique-stats {
  display: flex;
  gap: 2.2rem;
  justify-content: center;
  width: 100%;
  margin-top: 0.5rem;
}

.unique-badge {
  background: linear-gradient(120deg, #1470FB 0%, #4B96FF 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.22rem;
  border-radius: 2.2rem;
  padding: 0.85rem 2.1rem 0.55rem 2.1rem;
  box-shadow: 0 2px 12px #1470FB22;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px;
  transition: background 0.4s, transform 0.22s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation: badgeFlyIn 0.8s cubic-bezier(.4,2,.6,1) backwards;
}
.unique-badge:nth-child(2) { animation-delay: 0.12s; }
.unique-badge:nth-child(3) { animation-delay: 0.22s; }

.unique-badge:hover {
  background: linear-gradient(120deg, #4B96FF 0%, #1470FB 100%);
  transform: scale(1.11) rotate(-2deg);
  box-shadow: 0 4px 24px #1470FB33;
}

.unique-badge span {
  font-size: 0.89rem;
  font-weight: 400;
  color: #eaf3ff;
  margin-top: 0.1rem;
  letter-spacing: 0.01em;
  opacity: 0.92;
}

@keyframes badgeFlyIn {
  0% { opacity: 0; transform: translateY(40px) scale(0.8); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Responsiv */
@media (max-width: 900px) {
  .unique-glass { padding: 2rem 1rem 1.5rem 1rem; }
  .unique-features { gap: 1.2rem; }
  .unique-stats { gap: 1.2rem; }
}
@media (max-width: 700px) {
  .unique-features { grid-template-columns: 1fr; gap: 1.5rem; }
  .usp-connector { display: none; }
  .unique-glass { padding: 1.2rem 0.5rem; }
  .unique-badge { min-width: 80px; font-size: 1.05rem; padding: 0.7rem 1.2rem 0.4rem 1.2rem; }
}

/* Medovo Feature Cards Styles */
.medovo-features-section {
    padding: 2rem 0;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.medovo-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; /* Verringerter Gap von 2rem auf 1.5rem */
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.medovo-feature-card {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 1.5rem; /* Verringertes Padding von 2rem auf 1.5rem */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.medovo-feature-icon {
  background-color: rgba(20, 112, 251, 0.1);
  width: 60px; /* Verkleinert von 80px auf 60px */
  height: 60px; /* Verkleinert von 80px auf 60px */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto; /* Verringerter Margin-bottom von 1.5rem auf 1rem */
  transition: all 0.3s ease;
}

.medovo-feature-title {
  font-size: 1.2rem; /* Verkleinert von 1.3rem auf 1.2rem */
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem; /* Verringert von 1rem auf 0.75rem */
  position: relative;
}

.medovo-feature-subtext {
  font-size: 0.9rem; /* Verkleinert von 0.95rem auf 0.9rem */
  color: var(--text-secondary);
  line-height: 1.5; /* Verringert von 1.6 auf 1.5 */
  margin-bottom: 1rem; /* Verringert von 1.5rem auf 1rem */
  flex: 1;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.medovo-feature-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--primary-gradient);
    color: white;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.medovo-feature-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.medovo-feature-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--shimmer-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.medovo-feature-badge:hover::before {
  opacity: 1;
}

.medovo-feature-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
  z-index: -1;
}

.medovo-feature-badge:hover::after {
  left: 100%;
}

@media (max-width: 900px) {
    .medovo-features-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    
    .medovo-features-grid > *:nth-child(3) {
      grid-column: 1 / span 2;
      width: 50%;
      margin-left: auto;
      margin-right: auto;
    }
    
    .medovo-feature-card {
      padding: 1.5rem;
    }
}

@media (max-width: 600px) {
  .medovo-features-section {
    padding: 3rem 1rem;
  }
  
  .medovo-features-grid {
    grid-template-columns: 1fr;
  }

  .medovo-features-grid > *:nth-child(3) {
    grid-column: auto;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .medovo-feature-title {
    font-size: 1.2rem;
  }
  
  .medovo-feature-subtext {
    font-size: 0.9rem;
  }
  
  .medovo-feature-badge {
    padding: 0.5rem 1rem;
  }
}

/* Ursprüngliche Abwechslung zwischen blau und weiß entfernen */
section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    margin: 0;
}

section:nth-child(even) {
    background-color: var(--section-blue-bg) !important;
}

/* Änderung der Hintergrundfarbe für die Section-Blue-Klasse */
.section-blue {
    background-color: var(--section-blue-bg) !important;
    position: relative;
    overflow: visible;
}

/* Korrektur des fehlerhaften CSS-Blocks bei Zeile 4294-4299 */
/* Dieser Block erscheint im CSS ohne Selektor */
.mediziner-section {
    padding: 5rem 0;
    position: relative;
    overflow: visible;
    margin-bottom: 0; /* Margin-bottom von 8rem auf 0 geändert */
    background-color: var(--section-blue-bg) !important;
}

/* Facts-Section anpassen */
.facts-section {
    background: var(--section-blue-bg) !important;
    padding: 5rem 0;
    text-align: center;
    margin: 0;
}

/* Medivo Features Section */
.medovo-features-section {
    padding: 2rem 0 3rem 0; /* Padding-top von 3rem auf 2rem reduziert */
    background-color: var(--section-blue-bg) !important;
    position: relative;
    z-index: 1;
}

/* Entfernen der Wellenformen zwischen Sektionen */
.wave-top, .wave-bottom, .gradient-wave {
  display: none !important;
}

.wave-top::before, 
.wave-bottom::after {
  display: none !important;
}

/* Einheitliche Abstände zwischen allen Sektionen */
section + section {
  margin-top: 0 !important;
}

/* Einheitliche Abstände für Abschnittüberschriften */
.section-header + * {
  margin-top: 3rem;
}

/* Korrektur für Footer */
footer {
  background-color: #f0f4f8;
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border);
  position: relative;
}

.chatbot-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.medovo-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.medovo-feature-card:hover .medovo-feature-icon {
  background-color: rgba(20, 112, 251, 0.2);
}

.medovo-feature-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

.animated-lightning {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.animated-lightning svg {
  position: relative;
  z-index: 2;
  animation: pulse 2s infinite;
}
.lightning-glow {
  position: absolute;
  width: 30px; /* Von 40px auf 30px reduziert */
  height: 30px; /* Von 40px auf 30px reduziert */
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 112, 251, 0.4) 0%, rgba(20, 112, 251, 0) 70%);
  z-index: 1;
  animation: glow 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); } /* Von 1.1 auf 1.08 reduziert */
  100% { transform: scale(1); }
}
@keyframes glow {
  0% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); } /* Von 1.5 auf 1.4 reduziert */
  100% { opacity: 0.7; transform: scale(1); }
}

.chatbot-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: visible; /* Hinzugefügt, um sicherzustellen, dass Elemente nicht abgeschnitten werden */
}

.chatbot-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 0; /* Von 2rem auf 0 reduziert */
    padding-bottom: 20px; /* Zusätzliches Padding für den Container */
    position: relative;
    z-index: 5; /* Erhöhter z-index, damit die Karten über anderen Elementen erscheinen */
}

.chatbot-feature {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative; /* Position für Schatten */
    z-index: 10; /* Höherer z-index als der Container */
}

.chatbot-feature:hover {
    transform: scale(1.03); /* Skalierung statt Verschiebung */
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* Gleichmäßiger Schatten in alle Richtungen */
}

.team {
    background-color: var(--section-blue-bg) !important;
    position: relative;
    overflow: visible;
    padding: 5rem 0;
    margin: 0;
}

/* Basis-Definition für blaue Texte: einheitliche Farbe statt verschiedener Blautöne */
.team-card-front .role,
.team-card-back .role,
.connect-option a,
.linkedin-link,
.chatbot-highlight,
.vision-facts .fact-source a,
.vision-facts .fact-text strong,
.footer-links a:hover,
.usp-title,
.author-name,
.connect-option.social-option:hover .social-connect-link h4,
.medovo-feature-title,
.vision-quote-modern cite,
.fact-source a,
.primary-color-text {
    color: var(--primary-dark) !important;
}

/* Textfarben für Hover-Zustände einheitlich setzen */
.nav-links a:hover,
.connect-option.social-option:hover .social-connect-link h4,
.approach-card h3,
.footer-links a.active {
    color: var(--primary-dark) !important;
}

/* Alle social Icons Farbe einheitlich setzen */
.social-icon {
    color: var(--primary-dark) !important;
}

/* Quote Styling einheitlich */
.quote-text p,
.vision-quote-modern p {
    color: var(--text) !important;
}

/* Die animierten Überschriften (gradient-text) bleiben unverändert */

/* Einheitliche Farbe für weitere blaue Elemente */
.feature-list li:before,
.faq-icon,
.stat-number {
    color: var(--primary-dark) !important;
}

/* Einheitliche Farbe für Icon Hintergründe */
.connect-icon {
    color: var(--primary-dark) !important;
}

/* Responsive Layout für die Vision-Sektion */
@media (max-width: 768px) {
    .vision-content {
        flex-direction: column !important;
    }
    
    .vision-left {
        flex: 1 !important;
        padding-right: 0 !important;
        border-right: none !important;
        border-bottom: 1px solid var(--border);
        padding-bottom: 2rem !important;
        margin-bottom: 2rem !important;
        padding-top: 0 !important;
        max-width: 100% !important;
        border-radius: 20px 20px 0 0 !important;
    }
    
    .vision-right {
        padding-left: 0 !important;
        border-radius: 0 0 20px 20px !important;
    }
}

.vision-section blockquote {
    position: relative;
    overflow: visible !important;
    max-width: 700px;
    margin: 4rem auto 0;
}

.vision-quote-clean::before,
.vision-quote-clean::after {
    display: none !important;
    content: none !important;
}

@media (max-width: 768px) {
    .vision-content {
        padding: 1.5rem;
        flex-direction: column !important;
    }
    
    .vision-left {
        flex: 1 !important;
        padding-right: 0 !important;
        border-right: none !important;
        border-bottom: 1px solid var(--border);
        padding-bottom: 2rem !important;
        margin-bottom: 2rem !important;
        padding-top: 0 !important;
        max-width: 100% !important;
        border-radius: 20px 20px 0 0 !important;
    }
    
    .vision-right {
        padding-left: 0 !important;
        border-radius: 0 0 20px 20px !important;
    }
}

/* Mobile Überschriften verbessern */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }
    
    h2 {
        font-size: 2.2rem !important;
        line-height: 1.25 !important;
    }
    
    h3 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }
    
    h4 {
        font-size: 1.4rem !important;
        line-height: 1.35 !important;
    }
    
    .section-header h2 {
        font-size: 2.2rem !important;
    }
    
    .vision-right h3 {
        font-size: 1.6rem !important;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }
    
    h2 {
        font-size: 1.9rem !important;
        line-height: 1.25 !important;
    }
    
    h3 {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
    }
    
    h4 {
        font-size: 1.2rem !important;
        line-height: 1.35 !important;
    }
    
    .section-header h2 {
        font-size: 1.9rem !important;
    }
}

.faq-section.section-blue {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 4rem 0;
    background: var(--section-blue-bg);
    position: relative;
    overflow: hidden;
}

.faq-container {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 4vw;
    display: flex;
    gap: 2rem;
    position: relative;
}

.faq-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    position: relative;
    z-index: 1;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    padding-right: 2rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: white;
}

.faq-answer-content {
    padding: 0.3rem 1.5rem 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

@media (max-width: 992px) {
    .faq-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 2vw;
    }
    
    .faq-column {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-container {
        padding: 0 1vw;
    }
    
    .faq-question {
        padding: 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 1.25rem;
    }
}

.faq-answer-content p {
    line-height: 1.6;
    margin: 0;
    color: #666666;
}

.vision-content p,
section#vision .vision-content p,
.vision-section .vision-content p {
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
    color: var(--text);
    margin-bottom: 1.5rem;
    max-width: 100%;
}

@media (max-width: 768px) {
    .vision-content p,
    section#vision .vision-content p,
    .vision-section .vision-content p {
        font-size: 1.1rem !important;
    }
}