@font-face {
    font-family: 'Funnel Display';
    src: url('fonts/Funnel_Display/FunnelDisplay-VariableFont_wght.ttf') format('truetype');
    font-weight: 300 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geist';
    src: url('fonts/Geist/Geist-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/Playfair_Display/PlayfairDisplay-VariableFont_wght.ttf') format('truetype');
    font-weight: 300 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/Playfair_Display/PlayfairDisplay-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 300 900;
    font-style: italic;
    font-display: swap;
}

:root {
    --bg-color: #07080A;
    --card-bg: #0C0D11;
    --accent-color: #21F6CE;
    --font-h1: "Funnel Display", sans-serif;
    --font-body: "Geist", sans-serif;
    --font-serif: "Playfair Display", serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

*::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

html {
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    /* No position: relative here to avoid clipping absolute breakout elements */
}

body {
    color: white;
    font-family: var(--font-body);
    min-height: 100vh;
    padding: 30px 30px 0 30px;
    display: block;
}

.container {
    width: 100%;
    position: relative;
    /* Removed overflow-x: hidden to allow Hero elements to break out */
}

.header {
    position: fixed;
    top: 76px;
    /* Shifted 16px down from 60px */
    left: 80px;
    z-index: 2000000;
    display: flex;
    align-items: center;
    gap: 60px;
    pointer-events: none !important;
}

.header>* {
    pointer-events: auto;
}

.contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.contact-number {
    font-weight: 400;
    background: linear-gradient(90deg, #FFFFFF 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.top-nav-right {
    position: fixed;
    top: 76px;
    /* Shifted 16px down from 60px */
    right: 80px;
    z-index: 2000001;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: none !important;
}

.top-nav-right>* {
    pointer-events: auto;
}

.lang-selector {
    display: flex;
    align-items: center;
    background: rgba(15, 17, 21, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 10px 16px;
    gap: 8px;
    height: 48px;
    /* Matching button height approximately */
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0 2px;
}

.lang-btn.active {
    color: var(--accent-color);
}

.lang-btn:hover:not(.active) {
    color: rgba(255, 255, 255, 0.8);
}

.lang-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.1);
}

.book-time-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 30px;
    background: rgba(15, 17, 21, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-body);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.book-time-btn svg {
    color: var(--accent-color);
    transition: transform 0.3s;
}

.book-time-btn:hover {
    background: rgba(43, 222, 211, 0.1);
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(43, 222, 211, 0.2);
    transform: translateY(-2px);
}

.book-time-btn:hover svg {
    transform: rotate(-10deg) scale(1.1);
}

.book-time-btn:active {
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .top-nav-right {
        top: 25px;
        right: 40px;
        gap: 8px;
    }

    .lang-selector {
        padding: 8px 12px;
        height: 40px;
    }

    .book-time-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
}

/* ===== MOBILE & TABLET: Header & Navigation ===== */
@media (max-width: 1024px) {
    .header {
        top: 16px;
        left: 20px;
        gap: 20px;
    }

    .contact {
        display: none;
    }

    .top-nav-right {
        top: 16px;
        right: 20px;
        gap: 6px;
    }

    .lang-selector {
        padding: 6px 10px;
        height: 36px;
        border-radius: 20px;
    }

    .lang-btn {
        font-size: 12px;
    }

    .book-time-btn {
        padding: 9px 12px;
        font-size: 12px;
        border-radius: 20px;
        gap: 0;
    }

    .book-time-btn span {
        display: none;
    }

    .book-time-btn svg {
        width: 14px;
        height: 14px;
    }
}

.main-card {
    width: 100%;
    height: 590px;
    background-color: var(--card-bg);
    border-radius: 40px;
    position: relative;
    overflow: visible;
    /* Changed from hidden to let portrait and input float outside */
    display: flex;
    align-items: center;
    z-index: 50;
    /* Higher stacking context */
}

h1 {
    font-family: var(--font-h1);
    font-size: 84px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -3px;
    z-index: 5;
    position: relative;
    visibility: hidden;
    /* Hidden until JS starts */
}

h1 span {
    font-family: var(--font-serif);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0;
}

h1.typing {
    visibility: visible;
}

h1::after {
    content: '|';
    display: inline-block;
    color: var(--accent-color);
    animation: blink 0.7s infinite;
    margin-left: 5px;
    font-weight: 300;
}

h1.typed-done::after {
    display: none;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}


/* Subtle background gradient for depth */
.card-inner {
    position: absolute;
    top: 16px;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 180deg at 61.7% 50%, rgba(6, 7, 9, 1) 0deg, rgba(32, 238, 213, 1) 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    overflow: hidden;
    pointer-events: none;
    /* Do not block interaction with other elements */
}




.content {
    width: 1400px;
    max-width: 100%;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

.portrait-container {
    position: absolute;
    left: 60%;
    top: 30px;
    /* Bündig mit dem Header-Top */
    bottom: 0;
    width: 1400px;
    max-width: calc(100% - 60px);
    /* Berücksichtigt das Body-Padding */
    transform: translateX(-50%);
    z-index: 1100;
    /* Sensible level above normal content */
    pointer-events: none;
    display: flex;
    justify-content: flex-end;
    /* Bild rechts innerhalb der 1400px */
    align-items: flex-end;
}

.portrait-parallax-box {
    position: relative;
    bottom: -600px;
    /* Dein gewählter Tiefen-Wert */
    transition: transform 6s ease-out;
}

.portrait {
    display: block;
    width: auto;
    height: auto;
    max-height: 100%;
    /* Keep it within reasonable bounds */
    object-fit: contain;
}

@media (max-width: 1100px) {
    h1 {
        font-size: 60px;
    }

    .header {
        left: 40px;
        top: 40px;
    }

    .card-inner {
        padding-left: 40px;
    }
}

/* Floating Input Box Styles */
.floating-container {
    position: absolute;
    left: 50%;
    top: 30px;
    /* Bündig mit dem Header-Top */
    bottom: 0;
    width: 1400px;
    max-width: calc(100% - 60px);
    transform: translateX(-50%);
    z-index: 1200;
    /* Higher than portrait but below overlays */
    pointer-events: none;
}

.floating-parallax-box {
    position: absolute;
    bottom: -90px;
    left: 180px;
    z-index: 1300;
    pointer-events: auto !important;
    /* Die Box an sich muss klickbar bleiben */
    transition: transform 6s ease-out;
}

.floating-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.floating-small-text {
    font-family: monospace, var(--font-body);
    color: #8A8D93;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}

.floating-large-text {
    font-family: monospace, var(--font-body);
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0px;
}

.floating-input-wrapper {
    position: relative;
    width: 650px;
    height: 64px;
    border-radius: 32px;
    background: linear-gradient(90deg, #FFFFFF 0%, #20EED5 100%);
    box-shadow: 0 0 35px rgba(32, 238, 213, 0.4);
    display: flex;
    align-items: center;
    padding: 0 10px 0 25px;
    margin-bottom: 18px;
}

.custom-input {
    flex: 1;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 16px;
    color: #111;
    position: relative;
    z-index: 2;
}

.typewriter-placeholder-container {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #111;
    font-family: var(--font-body);
    font-size: 16px;
    z-index: 1;
    white-space: nowrap;
    overflow: hidden;
    transition: opacity 0.3s;
}

.typewriter-placeholder-container::after {
    content: '|';
    display: inline-block;
    color: #111;
    animation: blink 0.7s infinite;
}

.send-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #0B0C10;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #20EED5;
    z-index: 2;
    transition: transform 0.2s, background-color 0.2s;
}

.send-button:hover {
    transform: scale(1.05);
    background-color: #000;
}

.send-button svg {
    width: 20px;
    height: 20px;
    margin-right: 2px;
    margin-top: 2px;
}

.chips-row {
    display: flex;
    gap: 12px;
}

.chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #1A1C20;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: #A0A5AE;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.chip svg {
    color: #20EED5;
}

@media (max-width: 1100px) {
    .floating-parallax-box {
        left: 0;
        width: 100%;
    }

    .floating-input-wrapper {
        width: 100%;
        max-width: 500px;
    }
}

/* ===== MOBILE & TABLET: Hero Section ===== */
@media (max-width: 1024px) {

    html {
        width: 100%;
        position: static;
        overflow: visible;
    }

    body {
        width: 100%;
        position: relative;
        overflow-x: hidden;
        /* Mobile only fix */
    }

    body {
        padding: 0 16px 0 16px !important;
    }

    .main-card {
        height: 400px;
        border-radius: 24px;
        align-items: flex-start;
        padding-top: 80px;
    }

    h1 {
        font-size: 36px;
        letter-spacing: -1px;
        margin-left: 16px;
    }

    .content {
        padding: 0px 0px;
        /* Use body padding instead */
    }

    .card-inner {
        padding-left: 0;
        background: conic-gradient(from 180deg at 61.7% 75%, rgba(6, 7, 9, 1) 0deg, rgba(32, 238, 213, 1) 360deg);
        border-radius: 24px;
        overflow: hidden;
    }

    .portrait-container {
        position: relative;
        left: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        max-width: 100%;
        transform: none;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        z-index: 999;
        pointer-events: none;
        margin-top: -200px;
        overflow: hidden;
    }

    .portrait-parallax-box {
        bottom: 0;
        transform: none !important;
        transition: none;
    }

    .portrait {
        max-width: 540px;
        height: auto;
    }

    @media (min-width: 601px) {
        .portrait-container {
            margin-top: -400px !important;
            /* Move photo even further up on tablet */
            padding-left: 100px !important;
            /* Shift photo slightly to the right */
        }

        .portrait {
            max-width: 780px !important;
            /* ~20% larger than previous 650px */
        }
    }

    .floating-container {
        display: none;
    }

    .floating-parallax-box {
        left: 0;
        bottom: 75px;
        width: 100%;
        padding: 0 5px;
    }

    .floating-small-text {
        font-size: 13px;
    }

    .floating-large-text {
        font-size: 20px;
    }

    .floating-header {
        margin-bottom: 10px;
    }

    .floating-input-wrapper {
        width: 100%;
        max-width: 100%;
        height: 52px;
        border-radius: 26px;
        padding: 0 8px 0 18px;
        box-shadow: 0 0 20px rgba(32, 238, 213, 0.3);
    }

    .custom-input {
        font-size: 14px;
    }

    .typewriter-placeholder-container {
        font-size: 14px;
        left: 18px;
    }

    .send-button {
        width: 38px;
        height: 38px;
    }

    .send-button svg {
        width: 16px;
        height: 16px;
    }

    .chips-row {
        gap: 8px;
        flex-wrap: wrap;
    }

    .chip {
        padding: 6px 12px;
        font-size: 12px;
        gap: 5px;
    }

    .chip svg {
        width: 12px;
        height: 12px;
    }

    .marquee-wrapper {
        margin-top: -70px !important;
        margin-bottom: 30px !important;
    }

    .logo-item {
        height: 60px;
    }

    .section-headline {
        font-size: 28px !important;
        letter-spacing: -1px !important;
        margin-bottom: 40px !important;
        line-height: 1.2 !important;
    }

    .section-subtext {
        font-size: 15px;
    }

    /* Sektions-Abstände reduzieren */
    .podcast-section {
        margin: 0 auto 40px auto !important;
        padding: 0 !important;
        /* No double padding */
        width: 100% !important;
    }

    .podcast-content {
        padding: 16px !important;
    }

    .stacking-section {
        padding: 40px 0 !important;
        overflow: visible !important;
        position: relative;
    }

    .stacking-container {
        padding-bottom: 20px !important;
        /* Minimized to close gap */
        overflow: visible !important;
        position: relative;
    }

    .stacking-card {
        position: sticky !important;
        margin-bottom: 20px;
        will-change: transform, top;
        overflow: visible !important;
    }

    .stacking-card.card-1 {
        top: 60px !important;
        z-index: 10;
    }

    .stacking-card.card-2 {
        top: 90px !important;
        z-index: 20;
    }

    .stacking-card.card-3 {
        top: 120px !important;
        z-index: 30;
    }

    /* Stacking Cards only column on Phone */
    @media (max-width: 600px) {
        .stacking-card-inner {
            flex-direction: column !important;
            padding: 40px 24px !important;
            height: auto !important;
            min-height: 500px !important;
            justify-content: flex-start !important;
            gap: 20px !important;
            background-color: #161A20 !important;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }
    }

    /* Tablet Adjustment for row layout - Shorter cards */
    @media (min-width: 601px) and (max-width: 1024px) {
        .stacking-card-inner {
            flex-direction: row !important;
            align-items: stretch !important;
            /* Stretch to allow vertical positioning */
            gap: 40px !important;
            padding: 30px 40px !important;
            min-height: 400px !important;
            height: auto !important;
        }

        .stacking-content-left {
            flex: 1.2 !important;
            max-width: 50% !important;
            display: flex !important;
            flex-direction: column !important;
            justify-content: flex-end !important;
            /* Text to bottom */
        }

        .stacking-badge {
            margin-bottom: auto !important;
            /* Chip to top */
            align-self: flex-start !important;
        }

        .stacking-content-right {
            flex: 1 !important;
            width: auto !important;
            display: flex !important;
            align-items: flex-end !important;
            /* Logos to bottom */
            justify-content: flex-end !important;
            padding-bottom: 10px;
        }

        .logo-grid {
            gap: 20px !important;
            justify-content: center !important;
            width: 100% !important;
        }

        .logo-grid.grid-6,
        .logo-grid.grid-5,
        .logo-grid.grid-3 {
            grid-template-columns: repeat(3, 1fr) !important;
            display: grid !important;
        }

        .logo-cell img {
            width: 88px !important;
            height: 88px !important;
        }

        .logo-label {
            font-size: 10px !important;
        }
    }

    .bento-section {
        margin: 0 auto 0 auto;
        /* Removed all margins to pull Plexus up */
        padding: 0;
        width: 100%;
    }

    .plexus-pin-container {
        height: 250vh !important;
        position: relative !important;
        overflow: visible !important;
    }

    .solution-plexus-section {
        width: calc(100% + 32px) !important;
        margin-left: -16px !important;
        margin-right: -16px !important;
        position: sticky !important;
        top: 0 !important;
        height: 100vh !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
        z-index: 10 !important;
    }

    .plexus-header-wrapper .section-headline {
        padding: 0 !important;
        max-width: calc(100% - 80px) !important;
        margin-bottom: 0 !important;
        /* Verlauf von links (weiß) nach rechts (türkis) - engerer Verlauf */
        background: linear-gradient(90deg, #FFFFFF 20%, #20EED5 80%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }

    .plexus-subtext {
        font-size: 14px !important;
        line-height: 1.5 !important;
        padding: 0 !important;
        max-width: calc(100% - 80px) !important;
        margin-top: 5px;
        /* Noch geringerer Abstand */
    }

    .stats-section {
        min-height: auto !important;
        margin: 0 -16px !important;
        padding: 60px 20px !important;
        width: calc(100% + 32px) !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 30px !important;
        box-sizing: border-box;
    }


    .stats-section .section-headline,
    .stats-section .section-headline span {
        font-size: 32px !important;
    }

    .stats-row-headline {
        font-size: 16px !important;
        margin-bottom: 5px !important;
    }

    .stat-number {
        font-size: 42px !important;
    }

    .stat-label {
        font-size: 14px !important;
    }

    .stats-subtext {
        font-size: 14px !important;
        line-height: 1.4 !important;
        margin-top: -15px !important;
    }

    .testimonials-section {
        margin: 80px auto 60px auto !important;
        padding: 0 !important;
        /* No double padding */
    }

    .testimonials-header {
        margin-bottom: 30px !important;
    }

    .testimonials-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 24px !important;
    }

    @media (max-width: 600px) {
        .testimonials-grid {
            grid-template-columns: 1fr !important;
        }
    }

    .testimonial-card {
        padding: 16px !important;
        border-radius: 16px !important;
    }

    .testimonial-quote {
        font-size: 15px !important;
        line-height: 1.5 !important;
        margin-bottom: 25px !important;
    }

    .author-img {
        width: 44px !important;
        height: 44px !important;
    }

    .author-name {
        font-size: 14px !important;
    }

    .author-title {
        font-size: 12px !important;
    }

    .site-footer {
        padding: 60px 0 40px 0 !important;
        /* No double padding */
        margin: 40px 0 0 0 !important;
        width: 100% !important;
    }

    .footer-left-group {
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
    }

    /* Stacking Cards Consolidated Above */

    .stacking-badge {
        margin-bottom: auto !important;
    }

    .stacking-content-left h2 {
        font-size: 24px !important;
        margin-bottom: 12px !important;
        letter-spacing: -0.5px !important;
    }

    .stacking-content-left p {
        font-size: 14px !important;
    }

    @media (max-width: 600px) {
        .stacking-content-right {
            width: 100%;
            flex: none !important;
            justify-content: flex-start !important;
            align-items: flex-start !important;
        }

        .logo-grid {
            width: 100% !important;
            gap: 5px !important;
            margin: 0 !important;
            justify-content: flex-start !important;
        }

        .logo-grid.grid-6 {
            grid-template-columns: repeat(3, auto) !important;
        }

        .logo-grid.grid-5 {
            display: grid !important;
            grid-template-columns: repeat(3, auto) !important;
            width: 100% !important;
            gap: 5px !important;
        }

        .logo-grid.grid-3 {
            grid-template-columns: repeat(3, auto) !important;
        }

        .logo-cell {
            gap: 6px !important;
            align-items: center !important;
        }

        .logo-cell img {
            width: 55px !important;
            height: 55px !important;
        }

        .logo-label {
            font-size: 9px !important;
        }
    }

    /* Bento Grid Adjustment */
    @media (max-width: 600px) {
        .bento-container {
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            gap: 15px;
            width: 100% !important;
            margin: 0 auto !important;
        }

        .bento-box {
            width: 100% !important;
            height: auto !important;
            aspect-ratio: 1 / 1 !important;
            border-radius: 16px;
            padding: 0;
        }
    }

    @media (min-width: 601px) and (max-width: 1100px) {
        .bento-container {
            display: grid !important;
            grid-template-columns: repeat(2, 1fr) !important;
            grid-auto-rows: 1fr !important;
            gap: 24px !important;
            width: 100% !important;
            max-width: 1400px;
            margin: 0 auto !important;
        }

        .bento-box {
            width: 100% !important;
            height: auto !important;
            aspect-ratio: 1 / 1 !important;
            /* Force square for all to match height */
            border-radius: 20px;
            padding: 0;
            position: relative;
            background-color: #161A20 !important;
            border: 1px solid rgba(255, 255, 255, 0.05) !important;
            overflow: hidden;
        }

        .bento-full-image {
            position: absolute !important;
            top: 0;
            left: 0;
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
            display: block;
            border-radius: 20px;
        }

        .bento-box-1,
        .bento-box-2,
        .bento-box-3,
        .bento-box-4 {
            width: 100% !important;
            grid-column: auto !important;
        }

        .bento-content {
            position: absolute !important;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 24px !important;
            z-index: 2;
        }
    }

    .bento-content {
        padding: 16px !important;
    }

    .bento-content h3 {
        font-size: 18px;
    }

    /* Mobile Layer Fullscreen Styles (Booking & Chat) - restricted to small phones only */
    @media (max-width: 600px) {

        body.booking-active .header,
        body.booking-active .top-nav-right,
        body.booking-active .mobile-sticky-nav,
        body.chat-active .header,
        body.chat-active .top-nav-right,
        body.chat-active .mobile-sticky-nav {
            display: none !important;
        }

        .booking-overlay,
        .chat-overlay {
            padding: 0 !important;
        }

        .booking-modal,
        .chat-window {
            height: 100% !important;
            max-width: none !important;
            border-radius: 0 !important;
            border: none !important;
            overflow-y: auto !important;
        }


        .chat-window {
            display: flex;
            flex-direction: column;
        }

        .chat-messages {
            flex: 1;
        }

        .close-booking,
        .close-chat {
            position: absolute !important;
            top: 20px !important;
            right: 20px !important;
            z-index: 9999999 !important;
            background: rgba(255, 255, 255, 0.2) !important;
        }

        /* Compact Chat Mobile Optimization */
        .chat-header {
            padding: 15px 20px !important;
        }

        .chat-avatar {
            width: 36px !important;
            height: 36px !important;
        }

        .chat-header-text h3 {
            font-size: 16px !important;
        }

        .chat-suggestions {
            display: none !important;
        }

        .chat-footer {
            padding: 15px 20px !important;
        }

        .chat-messages {
            padding: 15px !important;
            gap: 15px !important;
        }

        .message-bubble {
            padding: 10px 14px !important;
            font-size: 14px !important;
        }

        .chat-counter {
            margin-right: 45px !important;
            /* Shifting it right to sit next to the absolute X */
            background: none !important;
            border: none !important;
            padding: 0 !important;
            font-size: 11px !important;
        }
    }
}

/* Marquee / Logo Ticker */
.marquee-wrapper {
    position: relative;
    width: 100%;
    margin-top: 150px;
    /* Abstand zur Main Card */
    margin-bottom: 50px;
    overflow: hidden;
    /* Optional: Ein leichter linearer Verlauf links und rechts, um die Logos sanft ein- und auszublenden */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    z-index: 2000;
    /* Higher than hero portrait (1100) to scroll in front */
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 60px;
    /* Abstand zwischen den Logos */
    width: max-content;
    animation: marquee-scroll 240s linear infinite;
}

.logo-item {
    height: 100px;
    /* Höhe der Logos anpassen */
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    /* Leicht transparent für edleren Look */
    transition: opacity 0.3s;
}

.logo-item:hover {
    opacity: 1;
    /* Volle Deckkraft beim Hovern */
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Bewegt den Track um genau die Hälfte nach links. Da die zweite Hälfte eine exakte Kopie ist, fängt es reibungslos wieder bei 0 an. */
        transform: translateX(-50%);
    }
}

/* =========================================
   PODCAST SECTION
   ========================================= */
.podcast-section {
    max-width: 1400px;
    margin: 100px auto 100px auto;
    /* 100px margin-top hinzugef\u00fcgt */
    padding: 0 40px;
    width: 100%;
    position: relative;
    z-index: 1200;
}

.podcast-header-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: monospace, var(--font-body);
    font-size: 14px;
    letter-spacing: 2px;
    color: #A0A5AE;
    margin-bottom: 20px;
    /* Reduced to pull headline closer */
    text-transform: uppercase;
}

.section-headline {
    font-family: var(--font-body);
    font-size: 56px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 80px;
    background: linear-gradient(135deg, #FFFFFF 30%, #20EED5 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    letter-spacing: -2px;
    visibility: hidden;
}

.section-headline span,
.section-headline i {
    font-family: var(--font-serif);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0;
}

.section-headline.typing,
.section-headline.typed-done {
    visibility: visible;
}

.section-headline.typing::after {
    content: '|';
    display: inline-block;
    color: var(--accent-color);
    -webkit-text-fill-color: var(--accent-color);
    animation: blink 0.7s infinite;
    margin-left: 5px;
    font-weight: 300;
}

.section-headline.typed-done::after {
    display: none;
}

.text-center {
    text-align: center;
}

.podcast-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 1100px) {
    .podcast-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
    }

    @media (max-width: 600px) {
        .podcast-grid {
            grid-template-columns: 1fr !important;
        }
    }
}

.podcast-card {
    background-color: #161A20;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
    border: 1px solid transparent;

    /* Inactive State Defaults */
    --badge-bg-1: #1A1D24;
    --badge-text-1: #8A8D93;
    --badge-bg-2: transparent;
    --badge-text-2: #8A8D93;
    --title-color: #8A8D93;
    --tag-bg: #111317;
    --tag-text: #8A8D93;
    --img-brightness: 1;
    --img-grayscale: 0%;
}

.podcast-card.active {
    /* Active State Overrides */
    --badge-bg-1: #20EED5;
    --badge-text-1: #07080A;
    --badge-bg-2: transparent;
    --badge-text-2: #20EED5;
    --title-color: #FFFFFF;
    --tag-bg: #15181E;
    --tag-text: #D1D4D9;
    --img-brightness: 1;
    --img-grayscale: 0%;

    border: 1px solid rgba(32, 238, 213, 0.2);
    box-shadow: 0 0 30px rgba(32, 238, 213, 0.05);
}

.podcast-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.podcast-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    cursor: pointer;
    overflow: hidden;
}

.podcast-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(var(--img-brightness)) grayscale(var(--img-grayscale));
    transition: transform 0.5s ease, filter 0.5s ease;
}

.podcast-card:hover .podcast-image {
    transform: scale(1.05);
}

.podcast-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s;
}

.podcast-card:hover .podcast-play-overlay {
    background: rgba(0, 0, 0, 0.4);
}


/* Fix for Booking Modal Header on Tablets/Mobile - Overlap of Arrows and X-Button */
@media (max-width: 1100px) {
    .calendar-header {
        padding-right: 90px !important;
        /* Move arrows left to avoid X button */
        margin-bottom: 20px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .booking-left {
        padding: 30px 20px !important;
    }
}

/* Standalone Tablet Fix for Numbers Section - Horizontal Layout */
@media (min-width: 601px) and (max-width: 1100px) {
    .stats-container {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 20px !important;
        width: 100% !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: space-around !important;
    }

    .stat-item {
        flex: 1 !important;
        min-width: 0 !important;
    }

    .stat-number {
        font-size: 56px !important;
        /* Larger numbers for tablet row */
    }

    .stat-label {
        font-size: 13px !important;
        white-space: nowrap !important;
    }

    .stats-row-headline {
        text-align: center !important;
        width: 100% !important;
        margin-bottom: 40px !important;
        font-size: 18px !important;
    }
}

/* Mobile only: stack them */
@media (max-width: 600px) {
    .stats-container {
        flex-direction: column !important;
        gap: 40px !important;
    }
}

.podcast-play-button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.podcast-play-button svg {
    margin-left: 5px;
    /* Optically center the play triangle */
}

.podcast-image-container:hover .podcast-play-button {
    transform: scale(1.1);
    background: rgba(32, 238, 213, 0.2);
    border-color: #20EED5;
}

.podcast-content {
    padding: 30px;
}

.podcast-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.podcast-duration {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    margin-left: auto;
}

.badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.badge-primary {
    background-color: var(--badge-bg-1);
    color: var(--badge-text-1);
    transition: background-color 0.4s ease, color 0.4s ease;
}

.badge-secondary {
    background-color: var(--badge-bg-2);
    color: var(--badge-text-2);
    transition: background-color 0.4s ease, color 0.4s ease;
}

.badge-dark {
    background-color: #1A1D24;
    color: #8A8D93;
}

.podcast-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
    color: var(--title-color);
    transition: color 0.4s ease;
}

.podcast-tags {
    display: flex;
    gap: 10px;
}

.podcast-tag {
    font-size: 12px;
    color: var(--tag-text);
    background: var(--tag-bg);
    padding: 4px 12px;
    border-radius: 4px;
    transition: background-color 0.4s ease, color 0.4s ease;
}

/* =========================================
   AUDIO PLAYER (FIXED BOTTOM)
   ========================================= */
.audio-player-bar {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: 80px;
    background: rgba(15, 17, 21, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10000;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.6);
}

.audio-player-bar.show {
    bottom: 30px;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 250px;
}

.player-info img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.player-info span {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
}

#playerToggleBtn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #20EED5;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

#playerToggleBtn:hover {
    transform: scale(1.1);
}

#playerToggleBtn svg {
    fill: #07080A;
}

.time-text {
    font-size: 13px;
    color: #A0A5AE;
    font-family: monospace;
}

#playerTimeline {
    width: 100%;
    max-width: 400px;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: #2A2E35;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

#playerTimeline::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #20EED5;
    cursor: pointer;
    transition: transform 0.1s;
}

#playerTimeline::-webkit-slider-thumb:hover {
    transform: scale(1.5);
}

.player-settings {
    display: flex;
    align-items: center;
    gap: 25px;
    width: 250px;
    justify-content: flex-end;
}

#speedBtn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

#speedBtn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

#playerVolume {
    width: 80px;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: #2A2E35;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

#playerVolume::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

.player-close-btn {
    background: none;
    border: none;
    color: #A0A5AE;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.player-close-btn:hover {
    color: #ff4757;
}

@media (max-width: 1024px) {
    .audio-player-bar {
        height: 64px;
        padding: 0 24px !important;
        flex-direction: row;
        gap: 12px;
        width: fit-content !important;
        max-width: calc(100% - 32px) !important;
        bottom: -150px;
        /* Hidden state */
        border-radius: 32px;
        justify-content: center;
    }

    .audio-player-bar.show {
        bottom: calc(92px + env(safe-area-inset-bottom));
    }

    .player-info {
        display: none !important;
    }

    .player-controls {
        flex: 0 0 auto !important;
        /* Force override flex: 1 */
        width: auto !important;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    #playerToggleBtn {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }

    #playerToggleBtn svg {
        width: 18px;
        height: 18px;
    }

    #playerTimeline {
        display: block !important;
        width: 60px !important;
        max-width: none !important;
        flex: 0 0 auto;
    }

    #playerCurrentTime {
        display: block !important;
        font-size: 11px;
        color: #A0A5AE;
        min-width: 35px;
    }

    #playerDuration {
        display: none !important;
    }

    .player-settings {
        display: flex;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto !important;
        width: auto !important;
        /* Force override 250px width */
        justify-content: flex-start;
    }

    #speedBtn {
        display: block !important;
        padding: 4px 8px;
        font-size: 11px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .volume-container {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        cursor: pointer;
    }

    .volume-container svg {
        width: 18px;
        height: 18px;
    }

    #playerVolume {
        display: none !important;
    }

    .player-close-btn {
        padding: 4px;
        margin-left: 4px;
    }
}

/* =========================================
   STICKY STACKING CARDS SECTION
   ========================================= */
.stacking-section {
    padding: 40px 40px 10px 40px;
    /* Reduced bottom padding */
    width: 100%;
    position: relative;
    z-index: 10;
    overflow: visible !important;
    /* Crucial for position: sticky */
}

.stacking-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    /* Extra padding at bottom to allow last card to scroll out if needed */
    padding-bottom: 20px;
}

.stacking-card {
    position: sticky;
    /* Create the staggered top stacking effect */
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 50px;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.stacking-card.card-1 {
    top: 100px;
    z-index: 10;
}

.stacking-card.card-2 {
    top: 130px;
    z-index: 20;
}

.stacking-card.card-3 {
    top: 160px;
    z-index: 30;
}

.stacking-card-inner {
    display: flex;
    background-color: rgba(26, 30, 38, 0.8);
    /* Lighter semi-transparent background */
    backdrop-filter: blur(20px);
    /* Glassmorphism Blur-Effekt */
    -webkit-backdrop-filter: blur(20px);
    /* Für Safari */
    padding: 64px 60px;
    /* 64px Abstand oben und unten */
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.5);
    transform-origin: top center;
    justify-content: space-between;
    align-items: stretch;
    /* Stretch damit linke Spalte volle 645px Höhe füllen kann */
    height: 645px;
    /* Box height */
    gap: 40px;
}

.stacking-content-left {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Text unten andocken */
}

.stacking-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #20EED5;
    color: #07080A;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: auto;
    /* Schiebt die Badge ganz nach oben und den Text nach unten */
    align-self: flex-start;
    text-transform: uppercase;
}

.stacking-content-left h2 {
    font-family: var(--font-body);
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #FFFFFF 0%, #20EED5 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    letter-spacing: -1px;
}

.text-teal {
    /* Da .text-teal in der H2 verwendet wird und die Headline jetzt komplett einen Verlauf hat, 
       setzen wir das zurück, damit der Verlauf greifen kann. */
    color: inherit;
    -webkit-text-fill-color: inherit;
}

.stacking-content-left p {
    font-size: 16px;
    line-height: 1.6;
    color: #8A8D93;
}

.stacking-content-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-grid {
    display: grid;
    gap: 0;
    width: 642px;
    /* Set fixed width to exactly 3 cols (3*214) */
    justify-content: start;
    /* Align left */
    margin: 0 auto;
    /* Center the whole 642px block within the right half of the card */
}

.logo-grid.grid-6 {
    grid-template-columns: repeat(3, 214px);
}

.logo-grid.grid-5 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 642px;
}

.logo-grid.grid-3 {
    grid-template-columns: repeat(3, 214px);
    /* Changed to 3 columns to match the general 642px layout grid size perfectly */
    justify-content: start;
}

.logo-grid.grid-3 .logo-cell:nth-child(3) {
    justify-self: start;
}

.logo-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: transparent;
    /* Dunklen Hintergrund entfernt */
    transition: transform 0.3s ease;
}

.logo-cell:hover {
    transform: translateY(-5px);
}

.logo-cell img {
    height: 214px;
    width: 214px;
    object-fit: contain;
    /* Logos look bright white in screenshot, SVGs may be colored/black. Using brightness filter to force them white */
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.logo-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #4A4D55;
    font-weight: 600;
}

/* =========================================
   BENTO GRID SECTION
   ========================================= */
.bento-section {
    width: 100%;
    position: relative;
    z-index: 10;
    margin-bottom: 100px;
}

.bento-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    /* We divide the 1400px container into 3 columns */
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 473px;
    gap: 30px;
}

.bento-box {
    background-color: #161A20;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
    transition: transform 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
}

.bento-box:hover {
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

/* Mapping boxes according to image */
.bento-box-1 {
    grid-column: 1 / 2;
    padding: 0;
    /* Full bleed for Box 1 image */
}

.bento-full-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.bento-box-2 {
    grid-column: 2 / 4;
    padding: 0;
    /* Full bleed for Box 2 image */
}

.bento-box-3 {
    grid-column: 1 / 3;
    padding: 0;
    /* Full bleed for Box 3 image */
}

.bento-box-4 {
    grid-column: 3 / 4;
    padding: 0;
    /* Full bleed for Box 4 image */
}

.bento-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 32px;
}

.bento-content h3 {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 500;
    background: linear-gradient(90deg, #FFFFFF 0%, #20EED5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 8px;
}

.bento-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    max-width: 280px;
    font-weight: 300;
}

@media (max-width: 600px) {
    .stacking-card-inner {
        flex-direction: column;
        padding: 50px 30px;
    }

    .stacking-content-left h2 {
        font-size: 36px;
    }
}

/* =========================================
   SOLUTION PLEXUS SECTION
   ========================================= */
/* Container to provide scroll duration for pinning */
.plexus-pin-container {
    height: 250vh;
    /* Sufficient depth for zoom effect */
    position: relative;
    width: 100%;
}

.solution-plexus-section {
    width: calc(100% + 60px);
    margin-left: -30px;
    margin-right: -30px;
    height: 100vh;
    /* Sticky height */
    background-color: var(--bg-color);
    position: sticky;
    top: 0;
    z-index: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Even softer fade gradients */
.solution-plexus-section::before,
.solution-plexus-section::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 300px;
    /* Taller for smoother transition */
    z-index: 15;
    pointer-events: none;
}

.solution-plexus-section::before {
    top: 0;
    background: linear-gradient(to bottom, var(--bg-color) 0%, rgba(7, 8, 10, 0) 100%);
}

.solution-plexus-section::after {
    bottom: 0;
    background: linear-gradient(to top, var(--bg-color) 0%, rgba(7, 8, 10, 0) 100%);
}

.plexus-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: visible;
    cursor: crosshair;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform, opacity;
    transition: transform 0.1s ease-out, opacity 0.6s ease-out;
    transform: scale(2.5);
    opacity: 0;
}

.plexus-header-wrapper {
    position: relative;
    z-index: 5;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 1400px;
}

.plexus-header-wrapper .section-headline {
    margin-bottom: 0;
}

.plexus-subtext {
    max-width: 700px;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    font-weight: 300;
}

#solutionPlexus {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#plexus-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.plexus-label {
    position: absolute;
    background: rgba(32, 238, 213, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(32, 238, 213, 0.3);
    padding: 8px 16px;
    border-radius: 8px;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
}

.plexus-label.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.plexus-label::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: #20EED5;
    border-radius: 50%;
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(32, 238, 213, 0.8);
}

/* Scroll Indicator Arrow */
.scroll-indicator {
    position: relative;
    margin-top: 40px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 1;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.scroll-indicator svg {
    color: var(--accent-color);
    animation: bounce 2s infinite;
}

.scroll-indicator-text {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Stats Section */
.stats-section {
    width: calc(100% + 60px);
    margin: 0 -30px -150px -30px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #FFFFFF 0%, #20EED5 100%);
    padding: 200px 40px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.stats-section .section-headline,
.stats-section .section-headline span {
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: #000000 !important;
    color: #000000 !important;
    font-size: 56px;
    margin-bottom: 0;
}

/* Ensure typewriter cursor matches section color */
.stats-section .section-headline.typing::after {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
}

.stats-subtext {
    max-width: 700px;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(6, 7, 9, 0.6);
    font-weight: 300;
    margin-top: -30px;
    /* Adjusted from -50px for better spacing */
    margin-bottom: 20px;
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.stats-divider {
    width: 100%;
    max-width: 1200px;
    height: 1px;
    background: rgba(6, 7, 9, 0.1);
    margin: 0 auto;
}

.stats-row-headline {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-top: 10px;
    margin-bottom: -15px;
    /* Pull the second row a bit closer */
}

.stats-row-headline span {
    font-family: var(--font-serif);
    font-style: italic;
    text-transform: none;
    font-weight: 300;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-family: "Geist Mono", monospace;
    font-size: 84px;
    font-weight: 500;
    color: #060709;
    line-height: 1;
    letter-spacing: -2px;
}

.stat-prefix {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: 0.8em;
    margin-right: 8px;
    /* Added spacing to the numerical value */
    vertical-align: baseline;
}

.stat-label {
    font-size: 18px;
    font-weight: 300;
    color: #060709;
    opacity: 0.7;
    margin-top: 10px;
    font-family: var(--font-body);
    text-transform: none;
    letter-spacing: 0;
}

.stats-cta-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.stats-cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 40px;
    background: rgba(6, 7, 9, 0.08);
    border: 1.5px solid rgba(6, 7, 9, 0.15);
    color: #060709;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font-body);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stats-cta-btn svg {
    color: #060709;
    transition: transform 0.3s;
}

.stats-cta-btn:hover {
    background: #060709;
    color: #FFFFFF;
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(6, 7, 9, 0.2);
    border-color: #060709;
}

.stats-cta-btn:hover svg {
    color: var(--accent-color);
    transform: scale(1.1) rotate(-5deg);
}

@media (max-width: 1024px) {
    .stats-section {
        padding: 80px 30px;
        margin-bottom: 80px;
    }

    .stats-container {
        flex-direction: column;
        gap: 60px;
    }

    .stat-number {
        font-size: 72px;
    }
}

/* Testimonials Section */
.testimonials-section {
    width: 100%;
    max-width: 1400px;
    margin: 100px auto 150px auto;
    padding: 0 40px;
}

.testimonials-header {
    margin-bottom: 80px;
}

.testimonials-header .section-headline {
    margin-bottom: 16px;
}

.section-subtext {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #161A20;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    background: #111216;
    border-color: var(--accent-color);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-quote {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 40px;
    position: relative;
}



.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
}

.author-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

@media (max-width: 1024px) {
    .testimonial-card {
        padding: 30px;
    }
}

/* Experimental Desktop Orbital Testimonials */
@media (min-width: 1101px) {
    .testimonials-section {
        position: relative;
        min-height: 1100px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        margin: 250px 0 0 0;
        padding: 0;
        max-width: none;
        width: 100%;
    }

    .site-footer {
        position: relative;
        overflow: hidden;
    }

    .site-footer .footer-container {
        position: relative;
        z-index: 10;
    }

    .testimonials-section::before,
    .testimonials-section::after,
    .site-footer::before,
    .site-footer::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        z-index: 0;
        pointer-events: none;
    }

    .testimonials-section::before,
    .site-footer::before {
        background-image:
            radial-gradient(1.5px 1.5px at 15px 15px, rgba(255, 255, 255, 0.7) 100%, transparent),
            radial-gradient(2px 2px at 45px 35px, rgba(32, 238, 213, 0.6) 100%, transparent),
            radial-gradient(1px 1px at 70px 65px, rgba(255, 255, 255, 0.5) 100%, transparent),
            radial-gradient(1.5px 1.5px at 120px 95px, rgba(32, 238, 213, 0.7) 100%, transparent),
            radial-gradient(2px 2px at 180px 145px, rgba(255, 255, 255, 0.6) 100%, transparent),
            radial-gradient(3px 3px at 200px 80px, rgba(32, 238, 213, 0.4) 100%, transparent),
            radial-gradient(1px 1px at 220px 35px, rgba(32, 238, 213, 0.5) 100%, transparent),
            radial-gradient(2.5px 2.5px at 300px 180px, rgba(255, 255, 255, 0.4) 100%, transparent),
            radial-gradient(1px 1px at 350px 110px, rgba(32, 238, 213, 0.7) 100%, transparent);
        background-size: 350px 350px;
        animation: rotate-stars 250s linear infinite, blink-stars 4s ease-in-out infinite alternate;
    }

    .testimonials-section::after,
    .site-footer::after {
        background-image:
            radial-gradient(1px 1px at 25px 50px, rgba(255, 255, 255, 0.9) 100%, transparent),
            radial-gradient(1.5px 1.5px at 80px 120px, rgba(32, 238, 213, 0.7) 100%, transparent),
            radial-gradient(2px 2px at 140px 10px, rgba(255, 255, 255, 0.6) 100%, transparent),
            radial-gradient(1px 1px at 190px 45px, rgba(32, 238, 213, 0.6) 100%, transparent),
            radial-gradient(2px 2px at 240px 165px, rgba(255, 255, 255, 0.7) 100%, transparent),
            radial-gradient(1.5px 1.5px at 290px 75px, rgba(32, 238, 213, 0.8) 100%, transparent),
            radial-gradient(1px 1px at 330px 160px, rgba(255, 255, 255, 0.5) 100%, transparent),
            radial-gradient(2.5px 2.5px at 380px 40px, rgba(32, 238, 213, 0.6) 100%, transparent),
            radial-gradient(1.5px 1.5px at 100px 220px, rgba(255, 255, 255, 0.8) 100%, transparent);
        background-size: 450px 450px;
        animation: rotate-stars 320s linear infinite, blink-stars 3s ease-in-out infinite alternate-reverse;
    }

    .testimonials-header {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 450px;
        z-index: 1;
        margin-bottom: 0;
        text-align: center;
        pointer-events: none;
        /* Let clicks pass through */
    }

    .testimonials-grid {
        position: relative;
        display: block !important;
        width: 1px;
        height: 1px;
        margin: 0 !important;
        z-index: 10;
    }

    .testimonial-card {
        position: absolute;
        width: 320px;
        padding: 24px;
        top: 0;
        left: 0;
        margin-top: -140px;
        /* Roughly half height */
        margin-left: -160px;
        /* Half width */
        background: rgba(26, 30, 38, 0.8);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 24px;
        transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
    }

    .testimonial-card:hover {
        background: rgba(26, 30, 38, 0.95);
        border-color: var(--accent-color);
    }

    .testimonials-grid:hover .testimonial-card {
        animation-play-state: paused !important;
    }

    .testimonial-quote {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .author-img {
        width: 44px;
        height: 44px;
    }

    .author-name {
        font-size: 14px;
    }

    .author-title {
        font-size: 12px;
    }

    /* Hide cards beyond 5 */
    .testimonial-card:nth-child(n+6) {
        display: none !important;
    }

    /* Orbit Transforms for 5 items (Scroll-based) */
    .testimonial-card:nth-child(1) {
        transform: rotate(calc(0deg + var(--scroll-deg, 0deg))) translateX(380px) rotate(calc(0deg - var(--scroll-deg, 0deg)));
    }

    .testimonial-card:nth-child(2) {
        transform: rotate(calc(72deg + var(--scroll-deg, 0deg))) translateX(380px) rotate(calc(-72deg - var(--scroll-deg, 0deg)));
    }

    .testimonial-card:nth-child(3) {
        transform: rotate(calc(144deg + var(--scroll-deg, 0deg))) translateX(380px) rotate(calc(-144deg - var(--scroll-deg, 0deg)));
    }

    .testimonial-card:nth-child(4) {
        transform: rotate(calc(216deg + var(--scroll-deg, 0deg))) translateX(380px) rotate(calc(-216deg - var(--scroll-deg, 0deg)));
    }

    .testimonial-card:nth-child(5) {
        transform: rotate(calc(288deg + var(--scroll-deg, 0deg))) translateX(380px) rotate(calc(-288deg - var(--scroll-deg, 0deg)));
    }
}

@keyframes rotate-stars {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes blink-stars {

    0%,
    100% {
        opacity: 0.1;
    }

    50% {
        opacity: 1;
    }
}

/* Site Footer */
.site-footer {
    background-color: transparent;
    padding: 100px 40px 60px 40px;
    margin: 0px -30px 0 -30px;
    /* Applied breakout margins to span full width */
    width: calc(100% + 60px);
    /* Adjusted width for breakout */
    border-top: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.footer-cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font-body);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-cta-btn svg {
    color: var(--accent-color);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-cta-btn:hover {
    background: rgba(33, 246, 206, 0.1);
    border-color: var(--accent-color);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(33, 246, 206, 0.2);
}

.footer-cta-btn:hover svg {
    transform: rotate(-10deg) scale(1.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.footer-left-group {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-social-link {
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-social-link:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.footer-social-link svg {
    vertical-align: middle;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--accent-color);
}

@media (max-width: 1024px) {
    .footer-top {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        gap: 30px;
        text-align: center;
    }

    .footer-left-group {
        justify-content: center;
        gap: 20px;
    }
}

/* Chat Overlay */
.chat-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 300000;
    display: none;
    pointer-events: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.chat-overlay.active {
    display: flex;
    pointer-events: auto;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.chat-window {
    width: 100%;
    max-width: 600px;
    height: 80vh;
    background: #161A20;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.chat-overlay.active .chat-window {
    transform: translateY(0);
}

.chat-header {
    padding: 24px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.chat-avatar {
    position: relative;
    width: 48px;
    height: 48px;
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
}

.status-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #21F6CE;
    border-radius: 50%;
    border: 2px solid #16181D;
    box-shadow: 0 0 10px rgba(33, 246, 206, 0.5);
}

.chat-header-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #FFFFFF;
}

.chat-header-text span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.close-chat {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.close-chat svg {
    pointer-events: none;
}

.close-chat:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.chat-counter {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: inherit;
}

.chat-header-actions {
    display: flex;
    align-items: center;
}

.book-btn-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.message-wrapper {
    display: flex;
    width: 100%;
}

.message-wrapper.ai {
    justify-content: flex-start;
}

.message-wrapper.user {
    justify-content: flex-end;
}

.message-bubble {
    max-width: 85%;
    padding: 16px 20px;
    border-radius: 20px;
    font-size: 15px;
    line-height: 1.5;
}

.ai .message-bubble {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    border-bottom-left-radius: 4px;
}

.user .message-bubble {
    background: var(--accent-color);
    color: #000000;
    font-weight: 500;
    border-bottom-right-radius: 4px;
}

.chat-footer {
    padding: 24px 30px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-suggestions {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.chat-suggestions::-webkit-scrollbar {
    display: none;
}

.suggestion-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
}

.suggestion-chip:hover {
    background: rgba(32, 238, 213, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.chat-input-area {
    display: flex;
    gap: 12px;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 8px 8px 20px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-input-area input {
    flex: 1;
    background: none;
    border: none;
    color: white;
    font-size: 15px;
    outline: none;
}

.chat-send-btn {
    width: 44px;
    height: 44px;
    background: var(--accent-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.chat-send-btn:hover {
    transform: scale(1.1) rotate(-10deg);
}

.chat-send-btn svg {
    width: 20px;
    height: 20px;
    color: #000;
}

/* Booking Modal Layer */
.booking-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    z-index: 400000;
    display: none;
    pointer-events: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.booking-overlay.active {
    display: flex;
    pointer-events: auto;
}

.booking-modal {
    background: #16181D;
    width: 100%;
    max-width: 900px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.close-booking {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-booking svg {
    pointer-events: none;
}

.close-booking:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 550px;
}

.booking-left {
    padding: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.booking-right {
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.calendar-header h3 {
    font-family: var(--font-h1);
    font-size: 20px;
    margin: 0;
}

.calendar-nav {
    display: flex;
    gap: 10px;
}

.calendar-nav button {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 5px;
    border-radius: 8px;
    cursor: pointer;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.4;
    margin-bottom: 15px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.calendar-day:hover:not(.empty):not(.past) {
    background: rgba(32, 238, 213, 0.1);
    color: var(--accent-color);
}

.calendar-day.selected {
    background: var(--accent-color);
    color: #000;
    font-weight: 600;
}

.calendar-day.past {
    opacity: 0.15;
    cursor: not-allowed;
}

.step-title {
    font-family: var(--font-h1);
    font-size: 24px;
    margin-bottom: 10px;
}

.selected-date-display {
    font-size: 13px;
    opacity: 0.5;
    margin-bottom: 25px;
}

.time-slots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.time-slot {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.time-slot:hover {
    border-color: var(--accent-color);
    background: rgba(32, 238, 213, 0.05);
}

.selected-summary {
    background: rgba(32, 238, 213, 0.05);
    padding: 15px;
    border-radius: 15px;
    border-left: 3px solid var(--accent-color);
    font-size: 14px;
    margin-bottom: 25px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.booking-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    color: white;
    font-size: 14px;
}

.submit-booking-btn {
    background: var(--accent-color);
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s;
}

.submit-booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(32, 238, 213, 0.2);
}

.back-to-time {
    background: none;
    border: none;
    color: white;
    opacity: 0.5;
    font-size: 12px;
    cursor: pointer;
}

.success-state {
    text-align: center;
    padding-top: 40px;
}

.success-icon {
    margin-bottom: 20px;
}

.close-success-btn {
    background: white;
    color: black;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    margin-top: 25px;
    cursor: pointer;
    font-weight: 600;
}

@media (max-width: 600px) {
    .booking-grid {
        grid-template-columns: 1fr;
    }

    .booking-left {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

/* Impressum Overlay */
.impressum-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 400000;
    display: none;
    pointer-events: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.impressum-overlay.active {
    display: flex;
    pointer-events: auto;
    animation: fadeIn 0.4s ease;
}

.impressum-modal {
    background: #16181D;
    width: 100%;
    max-width: 600px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 40px;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.884, 0.32, 1.275);
}

.impressum-overlay.active .impressum-modal {
    transform: translateY(0);
}

.close-impressum {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.close-impressum:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.impressum-content {
    color: rgba(255, 255, 255, 0.8);
}

.impressum-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.impressum-section p {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 300;
}

.impressum-label {
    font-family: var(--font-body);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.impressum-footer {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

.impressum-headline {
    font-family: var(--font-h1);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #FFFFFF 30%, #20EED5 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    letter-spacing: -1px;
}

@media (max-width: 1024px) {
    .impressum-modal {
        padding: 50px 25px 30px 25px;
    }
}

/* Mobile Sticky Nav */
.mobile-sticky-nav {
    display: none;
}

@media (max-width: 1024px) {
    .top-nav-right {
        display: none !important;
    }

    .mobile-sticky-nav {
        display: flex;
        position: fixed;
        /* Verhindert Springen auf iOS, wenn die URL-Leiste ein/-ausfährt */
        bottom: calc(20px + env(safe-area-inset-bottom));
        left: 16px;
        right: 16px;
        margin: 0 auto;
        width: auto;
        max-width: none;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        background: rgba(22, 24, 29, 0.9);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 40px;
        padding: 8px;
        justify-content: space-between;
        align-items: center;
        z-index: 9999999;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
        pointer-events: auto;
    }

    @media (min-width: 601px) {
        .mobile-sticky-nav {
            max-width: 500px !important;
            left: 0 !important;
            right: 0 !important;
        }
    }

    .sticky-icon-btn,
    .sticky-lang-btn {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-family: var(--font-body);
        font-weight: 500;
        border: 1px solid rgba(255, 255, 255, 0.1);
        cursor: pointer;
        text-decoration: none;
        transition: all 0.3s;
    }

    .sticky-book-btn,
    .sticky-ask-btn {
        flex: 1;
        margin: 0 4px;
        height: 44px;
        background: rgba(255, 255, 255, 0.05);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-family: var(--font-body);
        font-weight: 500;
        font-size: 14px;
        text-decoration: none;
        transition: all 0.3s;
    }

    .sticky-ask-btn svg {
        color: var(--accent-color);
    }

    .site-footer {
        padding-bottom: 120px !important;
        /* Space for sticky nav */
    }
}