/* =========================================
   1. VARIABLEN & GRUNDEINSTELLUNGEN
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Farben */
    --primary-color: #46647F; /* App Header Blau */
    --accent-color: #4a90e2; /* App Button Blau */
    --bg-light: #E8EDF2; /* Hellblau */
    --text-color: #333; /* Dunkles Grau */
    --text-main: #1d1d1f; /* Schwarz/Grau für Content */
    --text-sub: #86868b; /* Helles Grau für Subtext */

    /* Hintergründe */
    --bg-glass: rgba(58, 69, 85, 0.95);
    --card-bg: #ffffff;

    /* Schatten */
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

/* --- WICHTIG: GLOBALE SICHERHEITS-FIXES --- */

/* 1. Berechnet Padding in die Breite ein (Verhindert Layout-Sprengung) */
*, *::before, *::after {
    box-sizing: border-box;
}

/* 2. Verhindert horizontales Scrollen/Wackeln auf Mobile */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    padding-top: 60px;
    background-color: #fff;
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    width: 100%;
}

/* Styling für den Logo-Container */
.logo {
    display: flex;
    align-items: center; /* Vertikale Zentrierung von SVG und Text */
    gap: 10px; /* Abstand zwischen Logo und Name */
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    color: inherit; /* Nimmt die Farbe deines Header-Textes an */
}

Ja, das ist absolut empfehlenswert. Es ist sauberer, das SVG nicht direkt mit einer festen Farbe im Code zu

"verbacken"
,
sondern es über das CSS zu steuern.
Indem du das SVG in das Stylesheet einbeziehst, hast du zwei große Vorteile:
Zentralität: Du änderst die Farbe an einer Stelle im CSS, statt im langen SVG-Pfad-Code suchen zu müssen.
Flexibilität: Du kannst getrennte Hover-Effekte erstellen

(
z. B. das Logo leuchtet auf, während der Text gleich bleibt

)
.
Hier ist der optimierte Style-Block, der beides trennt:
HTML

<
style >
    /* 1. Der Container: Hält alles zusammen */
.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    vertical-align: middle;
}

/* 2. Das SVG-Icon: Eigene Farbe #b3d6f2 */
.logo-svg {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.logo-svg path {
    fill: #b3d6f2; /* Das Logo-Blau */
}

/* 3. Der Markenname: Eigene Schriftart & Farbe */
.logo-text {
    font-family: 'Amaranth', sans-serif;
    font-size: 24px;
    color: white;
    font-weight: 400;
    text-transform: lowercase; /* Falls es immer kleingeschrieben sein soll */
    text-decoration: none;
    white-space: nowrap;
}

/* Beispiel für Interaktion */
.logo-link:hover .logo-svg {
    transform: scale(1.1); /* Logo wird beim Hover leicht größer */
}

/* Styling für das SVG-Icon */
.header-svg {
    height: 32px; /* Höhe des Logos anpassen */
    width: auto; /* Breite proportional halten */
    fill: currentColor; /* Logo übernimmt automatisch die Textfarbe */
}

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


/* 4. Verhindert, dass Medien breiter als ihr Container sind */
img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Spezieller Fix für Iframes (Kalender/Setup) */
iframe {
    width: 1px;
    min-width: 100%;
}


/* =========================================
   2. NAVBAR (HEADER)
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 2000;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(70, 100, 127, 0.15);

    padding: 0;
    transition: all 0.3s ease;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.nav-controls-mobile {
    display: none;
    align-items: center;
    gap: 15px;
    margin-left: auto;

}

/* --- Desktop Menu --- */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 15px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #b3d6f2;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 10px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.nav-link:hover {
    color: #1a252f;
    background: var(--bg-light);

}


/* --- Dropdowns --- */
.dropdown {
    position: relative;
}

.nav-menu .dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #dce4ec;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    min-width: 240px;
    width: max-content;
    max-width: 450px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    padding: 5px 0;
    margin: 0;
    list-style: none;
    z-index: 1100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;

    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    border-left: 3px solid transparent;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: var(--bg-light);

    color: black;
    border-left: 3px solid var(--accent-color);
}

.dropdown-menu.align-right {
    left: auto;
    right: 0;
}


/* --- Buttons & Icons --- */

.btn-meet {
    color: orange !important;
    font-weight: 600 !important;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #8da3b8;
    padding: 7px 15px;
    border-radius: 4px;    box-shadow: 0 2px 5px rgba(53, 140, 203, 0.3);
    transition: all 0.2s;
}

.btn-meet:hover {
    background-color: var(--primary-color);
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(53, 140, 203, 0.4);
}

.btn-cta {
    background-color: #1a252f;
    color: #8da3b8 !important;
    padding: 7px 15px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(53, 140, 203, 0.3);
    font-weight: 600;
    transition: all 0.2s;
}

.btn-cta:hover {
    background-color: var(--primary-color);
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(53, 140, 203, 0.4);
}

.btn-login {
    border: 1px solid #8da3b8;
    color: #8da3b8 !important;
    padding: 7px 15px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(53, 140, 203, 0.3);
    font-weight: 600;
    background: transparent;
    transition: all 0.2s;
}

.btn-login:hover {
    background-color: var(--primary-color);
    color: white !important;
}

.lang-icon {
    font-size: 1.5rem;
    padding: 0 5px !important;
    filter: grayscale(0.8);
    transition: all 0.3s;
    cursor: pointer;
}

.lang-icon:hover {

    filter: grayscale(0);
    transform: scale(1.1);
    background: transparent !important;
}


/* =========================================
   3. HERO & PAGE HEADERS
   ========================================= */


.page-header,
.hero-section {
    position: relative;
    width: 100%;
    min-height: 50vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
    margin-bottom: 0;
}

/* Startseite: Größerer Hero */
.hero-section {
    min-height: 85vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/homebanner.webp');
}

.header-content,
.hero-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
}

/* Startseite: Grid Layout */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    flex-direction: row;
    text-align: left;
}

.h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: black;
}

.header-content h1,
.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #46647F;
    margin: 0;
    margin-bottom: 20px;
    line-height: 1.1;

}

.hero-text h1 {
    color: white;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: none;
}

.header-content p,
.hero-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #1a252f;
    font-weight: 600;
    margin: 0;
    max-width: 800px;
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.5);
}

.hero-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 400;
    max-width: 600px;
    text-shadow: none;
}

/* CTA Card auf Startseite */
.hero-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    color: white;
    max-width: 400px;
    width: 100%;
    justify-self: end;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.hero-card h3 {
    margin-top: 0;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.brand-logo-text {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 25px;
    display: block;
    letter-spacing: -1px;
    color: #fff;
    opacity: 0.9;
}

.hero-btn {
    background: white;
    color: #1d1d1f;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, background 0.2s;
}

.hero-btn:hover {
    transform: scale(1.05);
    background: #f0f0f0;
}


/* =========================================
   4. CONTENT & GRID
   ========================================= */
.main-background {
    background-color: #343a43;
    width: 100%;
    padding: 80px 0;
    margin-top: -1px;
}

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

/* --- Bento Grid --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 0 auto 80px auto;
}

.card {
    background: var(--card-bg);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image {
    transform: scale(1.05);
}

.card-content {
    padding: 25px;
}

.card-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 8px;
    display: block;
}

.card h3 {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
    color: var(--text-main);
}

.card p {
    color: var(--text-sub);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* --- Feature List / Zick-Zack --- */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 80px;
}

.feature-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.quote-box {
    border-left: 4px solid var(--accent-color);
    padding-left: 15px;
    margin-top: 20px;
    font-style: italic;
    color: #e0e0e0;
}

.feature-quote {
    background: #f0f7ff;
    border-left: 4px solid var(--accent-color);
    padding: 15px;
    margin: 20px 0;
    font-style: italic;
    color: #555;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.compare-box {
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.compare-old {
    background: #fff5f5;
    border: 1px solid #ffcccc;
}

.compare-new {
    background: #f0f9f4;
    border: 1px solid #ccffdd;
}

@media (min-width: 900px) {
    .feature-card {
        grid-template-columns: 1fr 1fr;
    }

    .feature-image {
        height: 100%;
        min-height: 400px;
    }

    .feature-card:nth-child(even) .feature-image {
        order: -1;
    }
}


/* =========================================
   5. SECTIONS (Transformation, etc.)
   ========================================= */
.transformation-section {
    background: #1d1d1f;
    color: white;
    border-radius: 30px;
    padding: 60px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glow-circle {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    filter: blur(80px);
    opacity: 0.4;
    border-radius: 50%;
    pointer-events: none;
}

.trans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.trans-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
}

.trans-text p {
    color: #a1a1a6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Listen Styles */
.step-list, .check-list {
    list-style: none;
    padding: 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
}

.step-number {
    background: var(--accent-color);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-icon {
    color: #4ade80;
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 2px;
}

.step-content strong, .check-content strong {
    display: block;
    color: white;
    margin-bottom: 4px;
}

.step-content span, .check-content span {
    color: #a1a1a6;
    font-size: 0.9rem;
}

.trans-image-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trans-img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.win-win-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 250px;
}

.cta-bottom {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.cta-bottom h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-bottom p {
    color: var(--text-sub);
    font-size: 1.1rem;
}


/* =========================================
   6. FOOTER
   ========================================= */
.site-footer {
    background-color: #343a43;
    color: #ffffff;
    padding: 60px 0 40px;
    margin-top: auto;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: flex;
    flex-direction: column;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
    padding-bottom: 30px;
}

.footer-logo {
    max-width: 300px;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.footer-contact-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #8da3b8;
    font-weight: 600;
}

.contact-link {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
}

.contact-link:hover {
    color: var(--accent-color);
    transform: translateX(3px);
}

.footer-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.2s;
}

.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 0 30px 0;
    width: 100%;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.legal-row {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.legal-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
    margin: 0 5px;
}

.legal-links a:hover {
    color: white;
    text-decoration: underline;
}

.social-section {
    width: 100%;
}

.social-section p {
    color: #8da3b8;
    font-size: 0.9rem;
    margin-bottom: 15px;
    max-width: 100%;
    word-wrap: break-word;
}

.social-icons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icons a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s, transform 0.2s;
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}


/* =========================================
   7. RESPONSIVE / MOBILE OPTIMIERUNG
   ========================================= */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
}

.bar:last-child {
    width: 15px;
}


@media (max-width: 1150px) {
    /* 1. Header-Controls (Let's Talk & Hamburger) */
    .nav-controls-mobile {
        display: flex !important;
        align-items: left;
        margin-left: auto;
        z-index: 1001;
    }

    .mobile-toggle {

        display: flex !important;
        margin-left: 15px;
        z-index: 1002;
    }

    /* 2. Hauptmenü Panel (Drawer) */
    .nav-menu {
        position: fixed;
        /* WICHTIG: Das Menü startet unterhalb der Navbar (ca. 60-70px) */
        top: 60px;
        right: -100%;
        width: 100%;
        /* WICHTIG: Höhe ist 100% minus die Höhe der Navbar oben */
        height: calc(100vh - 60px);

        background: white;
        flex-direction: column;
        transition: right 0.4s ease;
        overflow-y: auto;

        /* Padding oben reduzieren, da wir nun unter der Navbar starten */
        padding: 20px 0 40px 0;
        display: flex;
        align-items: stretch;
        z-index: 1005; /* Niedriger als .navbar */
        visibility: hidden;
    }

    .nav-menu.active {
        right: 0 !important;
        visibility: visible;
        background-color: #343a43;
        background: linear-gradient(to bottom right, #343a43, #b3d6f2) !important;
        backdrop-filter: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    }

    .nav-menu ul {

        display: flex !important;
        flex-direction: column !important;
        width: 100%;
        padding: 0;
        margin: 0;

    }

    .nav-menu li {

        width: 100%;
        text-align: left; /* Linksbündig */
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link {
        color: white;
        padding: 18px 25px; /* Einheitliches Padding */
        font-size: 1.4rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;


    }



    /* 3. Dropdown-Inhalte (Untermenüs) */
    .dropdown-menu {
        position: static !important;
        display: none;
        width: 100% !important;
        background-color: rgba(255, 255, 255, 0.05) !important; /* Fast transparent statt weiß */
        border: none;
        padding: 0;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .dropdown.active .dropdown-menu {
        display: block !important;

    }

    .dropdown-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important; /* Dunkle Trennlinie */
    }

    .dropdown-menu li a {
        padding: 15px 32px 15px 48px !important; /* Etwas weiter eingerückt für Hierarchie */
        color: #d1d5db !important; /* Helles Grau für die Unterpunkte */
        text-align: left !important;
        display: block;
        width: 100%;
        color: var(--text-color);
        text-decoration: none;
        font-size: 1rem;
    }

    /* 4. Action-Buttons am Ende der Liste */
    /* Wir entfernen hier margin: auto, um sie linksbündig zu halten */
    .btn-cta{
        width: calc(100% - 50px) !important;
        margin: 10px 25px !important;
        padding: 12px 20px !important;
        border-radius: 8px !important;
        font-size: 1rem !important;


        display: block;
        text-align: center; /* Der Text IM Button bleibt zentriert */

    }
    .header-content div {
        margin-top: -70px; /* Schiebt die Box leicht nach oben Richtung Header */
    }
    .btn-meet {
        color: orange !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        display: flex;
        align-items: center;
        gap: 6px;
        border: 1px solid #8da3b8;
        padding: 7px 15px;
        margin-top:5px;
             border-radius: 4px;    box-shadow: 0 2px 5px rgba(53, 140, 203, 0.3);
        transition: all 0.2s;
    }
    .btn-login {
        background-color: rgba(0, 0, 0, 0.4) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        color: #ffffff !important;
    }

    .btn-login:hover {
        transition: background-color 0.3s ease, color 0.3s ease !important;

    }
    /* Meet Button im Drawer verstecken */
    .nav-menu .btn-meet {
        display: none !important;
    }
    .dropdown-menu li a:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: #ffffff !important;
    }
}

@media (max-width: 900px) {
    /* Hero Anpassungen */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* WICHTIGER FIX für die Hero Card auf Mobile */
    .hero-card {
        justify-self: center;
        width: 100%;
        max-width: 400px;
        padding: 30px 20px; /* Reduziertes Padding */
        margin: 0 auto;
    }

    .hero-text p {
        margin: 0 auto 30px auto;
    }

    .header-content h1, .hero-content h1 {
        font-size: 2.2rem;
    }

    .page-header, .hero-section {
        min-height: 40vh;
    }
}

@media (max-width: 768px) {
    .trans-grid {
        grid-template-columns: 1fr;
    }

    .transformation-section {
        padding: 30px;
    }

    /* Footer Fixes */
    .footer-container {
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
        overflow-x: hidden;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .legal-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .social-section {
        margin-top: 10px;
    }

    .social-icons {
        gap: 15px;
    }

    .social-icons a {
        font-size: 0.95rem;
    }

    .header-content h1 {
        font-size: 2rem;
    }
}


/* =========================================
   8. HINTERGRÜNDE & SPEZIALSEITEN
   ========================================= */

/* Consulting Seite */
.header-bg-consulting {
    background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url('../img/consultingbanner.webp');
}

/* Meeting Seite */
.header-bg-meet {
    background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url('../img/meetbanner.webp');
}

/* Startseite Default */
.header-bg-home {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/homebanner.webp');
}

/* Why/Rowing Seite */
.header-bg-why {
    background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3)), url('../img/rowingbanner.webp');
}

.header-bg-google-cloud {
    background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), url('../img/deepintegrationbanner.webp');
    color: white;
    background-size: cover;
    background-position: center;
}

.header-bg-hardware {
    background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), url('../img/cloudfirstbanner.webp');
    background-size: cover;
    background-position: center;
    color: white;
}

/* Potenzial Seite */
.header-bg-potential {
    background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3)), url('../img/potential.webp');
}
.header-bg-bestpractice {
    background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3)), url('../img/bannerbestpractice.png');
}

/* Reseller Seite */
.header-bg-master {
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4)), url('../img/masterdigitalbanner.webp');
}
.header-bg-pm {
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4)), url('../img/pmbanner.webp');
}
.header-bg-erp {
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4)), url('../img/erpbanner.webp');
}
.header-bg-crm {
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4)), url('../img/wincustomerbanner.webp');
}
.header-bg-processdesign {
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4)), url('../img/bannerprocessdesign.webp');
}
.header-bg-teamwork {
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4)), url('../img/bannertransparentwork.webp');
}


/* Hardware Seite Header */


/* =========================================
   9. CALENDAR & IFRAME STYLES
   ========================================= */
.calendar-section {
    background-color: #ffffff;
    width: 100%;
    display: flex;
    justify-content: center;
}

.calendar-wrapper {
    width: 100%;
    min-height: 100vh;
}

.calendar-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 800px;
    border: none;
    display: block;
}


/* =========================================
   10. SETUP / START PAGE
   ========================================= */
.setup-page-wrapper {
    background-color: #2c3e50;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
}

.setup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    align-items: start;
}

.setup-iframe-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    min-height: 750px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.setup-iframe-container iframe {
    width: 100%;
    height: 100%;
    min-height: 750px;
    border: none;
    display: block;
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--accent-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    z-index: 1;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.setup-content {
    color: white;
    padding-top: 10px;
}

.setup-image {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.setup-content {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.setup-content p, .setup-content li {
    font-size: 1rem;
    line-height: 1.6;
    color: #d1d5db;
    margin-bottom: 15px;
}

.setup-content ol {
    padding-left: 20px;
    margin-bottom: 25px;
}

.setup-content li {
    margin-bottom: 8px;
    padding-left: 5px;
}

.setup-content strong {
    color: white;
    font-weight: 600;
}

.btn-setup-meet {
    background: white;
    color: #2c3e50;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: center;
    transition: transform 0.2s, background-color 0.2s;
    margin-top: 30px;
    border: 1px solid white;
}

.btn-setup-meet:hover {
    transform: translateY(-2px);
    background-color: #f0f0f0;
}

@media (max-width: 1000px) {
    .setup-grid {
        grid-template-columns: 1fr;
    }

    .setup-iframe-container {
        min-height: 600px;
    }

    .setup-iframe-container iframe {
        min-height: 600px;
    }

    .setup-page-wrapper {
        padding-top: 80px;
    }
}


/* =========================================
   11. LOGIN POPUP & BUTTONS
   ========================================= */
.login-item-wrapper {
    position: relative;
}

.custom-popup {
    position: absolute;
    top: 140%;
    right: 0;
    width: 260px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.custom-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.popup-arrow {
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.popup-text {
    margin: 0 0 15px 0;
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
    text-align: center;
}

.popup-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.popup-btn {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    font-weight: 600;
    transition: background 0.2s;
}

.popup-btn.btn-primary {
    background-color: var(--accent-color);
    color: white;
}

.popup-btn.btn-primary:hover {
    background-color: #2a7bb5;
}

.popup-btn.btn-secondary {
    background-color: #f3f4f6;
    color: var(--text-color);
}

.popup-btn.btn-secondary:hover {
    background-color: #e5e7eb;
}

@media (max-width: 1150px) {
    .custom-popup {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.9);
        right: auto;
        box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.5);
    }

    .custom-popup.active {
        transform: translate(-50%, -50%) scale(1);
    }

    .popup-arrow {
        display: none;
    }
}

.btn-login-action {
    display: inline-block;
    background-color: #0052cc;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 15px;
}

.google-badge {
    display: inline-block;
    margin-top: 15px;
    margin-bottom: 15px;
    max-width: 200px;
    cursor: pointer;
}


/* =========================================
   12. HARDWARE PAGE
   ========================================= */
.hardware-page-bg {
    background-color: #f4f5f7;
    padding-top: 60px;
}

.hardware-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
    border-radius: 4px;
    overflow: hidden;
}

.section-bar {
    background-color: #343a40;
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #444;
    display: flex;
    align-items: center;
}

.section-content {
    padding: 30px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.section-content.footer-note {
    background: #343a40;
    color: silver;
    text-align: center;
    border-bottom: none;
    font-size: 0.9rem;
}

/* Intro Grid */
.intro-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.intro-list {
    flex: 2;
}

.intro-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.intro-list li {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
    position: relative;
    padding-left: 15px;
}

.intro-list li::before {
    content: "•";
    color: #333;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.intro-list strong {
    color: #333;
}

.intro-sidebar {
    flex: 1;
    border-left: 1px solid #eee;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.intro-sidebar h4 {
    margin: 10px 0 5px 0;
    font-weight: 700;
    color: #333;
}

.intro-sidebar p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.intro-sidebar .note {
    font-size: 0.8rem;
    text-decoration: underline;
    color: #888;
    margin-top: 5px;
}

.disclaimer-box {
    margin-top: 30px;
    padding: 15px;
    background: #f9f9f9;
    border-left: 4px solid #888;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Products */
.product-row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.product-image {
    flex: 0 0 250px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid #eee;
    padding: 5px;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.product-image.bg-dark-img {
    background: #1a1a1a;
    align-items: center;
    padding: 20px;
    border-radius: 4px;
    min-height: 180px;
}

.product-image.bg-dark-img img {
    border: none;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.product-details {
    flex: 1;
    min-width: 0;
}

.product-details h4 {
    margin-top: 0;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.product-details ul {
    padding-left: 20px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.product-details p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.sub-divider {
    margin: 25px 0;
    border: 0;
    border-top: 1px solid #eee;
}

.btn-black {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #000;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-black:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: white;
}

/* Hardware Responsive */
@media (max-width: 768px) {
    .intro-grid, .product-row {
        flex-direction: column;
    }

    .intro-sidebar {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #eee;
        padding-top: 30px;
        margin-top: 20px;
        width: 100%;
    }

    .product-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 20px auto;
    }

    .hardware-wrapper {
        margin-bottom: 20px;
        border-radius: 0;
    }

    .section-bar {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .section-content {
        padding: 20px;
    }
}