/* Globale Stile */
:root {
  --color-bg-dark: #0a0a0f;
  --color-overlay-bg: rgba(10, 10, 15, 0.95);
  --color-text-light: #ffffff;
  --color-text-muted: #e0e6ff;
  --color-text-secondary: #b8c5ff;
  --color-accent: #00d4ff;
  --color-accent-hover: #00b8e6;
  --color-accent-secondary: #ff6b35;
  --color-accent-tertiary: #7c3aed;
  --color-card-bg: rgba(0, 212, 255, 0.1);
  --color-card-border: rgba(0, 212, 255, 0.4);
  --color-card-shadow: rgba(0, 212, 255, 0.2);
  --color-button-text: #0a0a0f;
  --color-gradient-1: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
  --color-gradient-2: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  --color-gradient-3: linear-gradient(135deg, #7c3aed 0%, #00d4ff 100%);
    --font-heading: 'Asimovian', sans-serif;
    --font-body: 'Asimovian', sans-serif;
}


body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-grey);
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--dark-grey);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h4 {
    font-size: 1.8rem;
}

h5 {
    font-size: 1.4rem;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-blue);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 80px 0;
}

.pb-0 {
    padding-bottom: 0;
}

.pt-0 {
    padding-top: 0;
}

.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mb-lg-0 {
    margin-bottom: 0 !important;
    /* Wichtig für Responsivität */
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Button Stile */
.button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.primary-button {
    background: var(--color-gradient-1);
    color: var(--color-button-text);
    border: 2px solid var(--color-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.primary-button:hover {
    background: var(--color-gradient-3);
    border-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
}

.hero-button {
    background-color: var(--white);
    color: var(--primary-blue);
    border: 1px solid var(--white);
}

.hero-button:hover {
    background-color: var(--light-grey);
    color: var(--dark-blue);
}

.submit-button {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    width: 100%;
}

.submit-button:hover {
    background-color: var(--dark-blue);
}

/* Navigation */
.main-nav {
    background: var(--color-gradient-1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav .logo h2 {
    color: var(--white);
    margin: 0;
}

.nav-links-wrapper {
    display: flex;
    align-items: center;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

.nav-item .nav-link {
    color: var(--white);
    padding: 10px 0;
    display: block;
    font-weight: 400;
    position: relative;
}

.nav-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--white);
    transition: width 0.3s ease;
}

.nav-item .nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    margin-left: 20px;
}

/* Dropdown */
.dropdown-menu {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
    list-style: none;
    padding: 10px 0;
    position: absolute;
    /* Muss von JS gesteuert werden */
    display: none;
    /* Muss von JS gesteuert werden */
    min-width: 160px;
    z-index: 1001;
}

.dropdown-menu .dropdown-item {
    color: var(--dark-grey);
    padding: 8px 20px;
    display: block;
    white-space: nowrap;
}

.dropdown-menu .dropdown-item:hover {
    background-color: var(--light-grey);
    color: var(--primary-blue);
}

/* Hamburger Menü (für Bootstrap JS beibehalten) */
.nav-toggle {
    display: none;
    /* Standardmäßig ausgeblendet auf größeren Bildschirmen */
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}

.toggle-icon {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--white);
    position: relative;
    transition: background-color 0.3s ease;
}

.toggle-icon::before,
.toggle-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--white);
    transition: transform 0.3s ease;
}

.toggle-icon::before {
    top: -10px;
}

.toggle-icon::after {
    top: 10px;
}

/* Wenn das Menü geöffnet ist */
.nav-toggle[aria-expanded="true"] .toggle-icon {
    background-color: transparent;
}

.nav-toggle[aria-expanded="true"] .toggle-icon::before {
    transform: translateY(10px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .toggle-icon::after {
    transform: translateY(-10px) rotate(-45deg);
}


/* Hero Section */
.hero-section {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.carousel-item {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    margin: 20px 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-image {
    width: 100%;
    height: 200px;
    /* Einheitliche Höhe für Bilder */
    object-fit: cover;
}

.carousel-info {
    padding: 20px;
    color: var(--text-color);
}

.carousel-info h4 {
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.carousel-info p {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.tag {
    display: inline-block;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    margin-right: 5px;
    margin-bottom: 5px;
}

/* Blog Section / Trending Podcast Section */
.blog-section {
    background-color: var(--white);
}

.section-header {
    margin-bottom: 40px;
    text-align: center;
}

.section-title {
    color: var(--dark-blue);
    font-weight: 700;
}

.article-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    /* Für responsives Layout */
    flex-direction: column;
    /* Für mobiles Layout */
    height: 100%;
    /* Einheitliche Höhe */
}

.article-image-wrap {
    width: 100%;
    height: 200px;
    /* Einheitliche Höhe für Bilder */
    overflow: hidden;
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image {
    transform: scale(1.05);
}

.article-info {
    padding: 20px;
    flex-grow: 1;
    /* Lässt den Info-Bereich den Rest des Platzes einnehmen */
    display: flex;
    flex-direction: column;
}

.article-info h5 {
    margin-bottom: 10px;
}

.article-info h5 a {
    color: var(--dark-blue);
    font-size: 1.25rem;
}

.article-info p {
    font-size: 0.95rem;
}

/* About Section */
.about-section {
    background-color: var(--light-grey);
}

.content-block p {
    margin-bottom: 1rem;
}

.about-image {
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

/* Team Section */
.team-section {
    background-color: var(--white);
    padding-top: 50px;
    /* Abstand nach der About-Sektion */
}

.team-member-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    height: 100%;
    /* Einheitliche Höhe */
}

.team-image {
    width: 100%;
    height: 250px;
    /* Einheitliche Höhe für Team-Bilder */
    object-fit: cover;
    margin-bottom: 15px;
}

.team-info h4 {
    color: var(--dark-blue);
    margin-bottom: 5px;
}

/* Contact Section */
.contact-section {
    background-color: var(--primary-blue);
    color: var(--white);
}

.contact-section .section-header .section-title {
    color: var(--white);
}

.contact-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* Abstand zwischen Feldern */
}

.form-field {
    position: relative;
    margin-bottom: 25px;
    width: 100%;
    /* Standard für vollen Spalte */
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 1rem;
    color: var(--dark-grey);
    background-color: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-field label {
    position: absolute;
    top: 12px;
    left: 15px;
    color: #6c757d;
    transition: all 0.2s ease-out;
    pointer-events: none;
    font-size: 1rem;
}

.form-control:focus+label,
.form-control:not(:placeholder-shown)+label {
    top: -10px;
    left: 5px;
    font-size: 0.75rem;
    color: var(--primary-blue);
    background-color: var(--white);
    padding: 0 5px;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.col-submit {
    width: 100%;
    text-align: center;
}

/* Services Section / Topics Section */
.services-section {
    background-color: var(--white);
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: 100%;
}

.service-image-wrap {
    width: 100%;
    height: 180px;
    /* Einheitliche Höhe für Service-Bilder */
    overflow: hidden;
    display: block;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-info {
    padding: 20px;
    text-align: center;
}

.service-info h5 a {
    color: var(--dark-blue);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-info p {
    font-size: 0.9rem;
}

/* Approach Section */
.approach-section {
    background-color: var(--light-grey);
}

.approach-details {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    /* Für responsives Layout */
    align-items: flex-start;
}

.approach-image-container {
    padding-right: 20px;
    /* Abstand zum Text */
    width: 100%;
    /* Standard für volle Breite auf kleinen Bildschirmen */
    margin-bottom: 20px;
    /* Abstand zum Text auf kleinen Bildschirmen */
}

.approach-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.approach-info {
    flex-grow: 1;
}

.approach-meta {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #6c757d;
}

.approach-meta .meta-item {
    margin-right: 20px;
}

.approach-meta .meta-item:last-child {
    margin-right: 0;
}

.approach-meta i {
    margin-right: 5px;
    color: var(--primary-blue);
}

.approach-meta .badge {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.75rem;
    margin-left: 5px;
}

.approach-info p {
    margin-bottom: 15px;
}

.profile-block {
    display: flex;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.profile-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--primary-blue);
}

.profile-block p {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.profile-block p strong {
    display: block;
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--text-color);
}

.verified-image {
    width: 16px;
    height: 16px;
    margin-left: 5px;
}

/* Footer */
.site-footer {
    background-color: var(--dark-grey);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-widgets {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer h6 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
}

.newsletter-form-wrap h6 {
    font-size: 1.25rem;
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    margin-bottom: 15px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .form-control:focus {
    border-color: var(--white);
    box-shadow: none;
}

.site-footer p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    padding-top: 30px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-link-item .footer-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-link-item .footer-link:hover {
    color: var(--white);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    padding: 25px;
    max-width: 450px;
    text-align: center;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-banner h2 {
    color: var(--primary-blue);
    margin-top: 10px;
    margin-bottom: 0;
}

.cookie-banner .bx-cookie {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-color);
}

.cookie-text a {
    font-weight: 600;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cookie-accept-btn,
.cookie-decline-btn {
    padding: 8px 18px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cookie-accept-btn {
    background-color: var(--primary-blue);
    color: var(--white);
}

.cookie-accept-btn:hover {
    background-color: var(--dark-blue);
}

.cookie-decline-btn {
    background-color: var(--light-grey);
    color: var(--dark-grey);
    border: 1px solid #dee2e6;
}

.cookie-decline-btn:hover {
    background-color: #e9ecef;
}

/* Responsives Design */
@media (max-width: 992px) {
    .nav-links-wrapper {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--primary-blue);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        padding: 15px;
        display: none;
        /* Versteckt, bis der Toggle geklickt wird (Bootstrap JS) */
    }

    .nav-links-wrapper.show {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-item .nav-link {
        padding: 12px 15px;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }

    .nav-toggle {
        display: block;
    }

    .col-lg-8,
    .col-lg-6,
    .col-lg-3,
    .col-lg-9,
    .col-lg-7 {
        width: 100%;
    }

    .col-half {
        width: 100%;
        margin-bottom: 30px;
        /* Abstand auf kleineren Bildschirmen */
    }

    .form-group {
        flex-direction: column;
        gap: 0;
    }

    .col-quarter {
        width: 100%;
        margin-bottom: 30px;
        /* Abstand auf kleineren Bildschirmen */
    }

    .approach-image-container {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .footer-widgets {
        flex-direction: column;
        text-align: center;
    }

    .col-lg-6,
    .col-lg-3 {
        width: 100%;
        margin-bottom: 30px;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .col-half {
        width: 48%;
        /* Ca. Hälfte mit etwas Abstand */
        float: left;
        /* Für Side-by-Side */
        margin-right: 4%;
    }

    .col-half:nth-child(2n) {
        margin-right: 0;
    }

    .col-quarter {
        width: 23.5%;
        /* Ca. Viertel mit etwas Abstand */
        float: left;
        margin-right: 2%;
    }

    .col-quarter:nth-child(4n) {
        margin-right: 0;
    }

    .contact-form .form-group .col-half {
        width: calc(50% - 10px);
        /* Anpassung für Gap */
        margin-right: 0;
    }

    .contact-form .form-group .col-half:nth-child(odd) {
        margin-right: 20px;
    }

    .approach-image-container {
        width: 30%;
        /* Platz für das Bild */
        float: left;
    }

    .approach-info {
        width: 70%;
        float: left;
    }

    .col-lg-6 {
        width: 48%;
        float: left;
        margin-right: 4%;
    }

    .col-lg-6:nth-child(2n) {
        margin-right: 0;
    }

    .col-lg-3 {
        width: 23.5%;
        float: left;
        margin-right: 2%;
    }

    .col-lg-3:nth-child(4n) {
        margin-right: 0;
    }

    .col-lg-7,
    .col-md-9 {
        width: auto;
        flex-grow: 1;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

/* Clearfix für float-basierte Layouts */
.row::after {
    content: "";
    display: table;
    clear: both;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 60;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.hamburger {
    display: flex;
    flex-direction: column;
    width: 24px;
    height: 18px;
    justify-content: space-between;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--color-button-text);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(15px);
}

.mobile-menu-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.mobile-menu-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.mobile-menu-content li {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease forwards;
}

.mobile-menu-content li:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu-content li:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu-content li:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu-link {
    display: block;
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-light);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
}

.mobile-menu-link:hover {
    color: var(--color-accent);
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
    transform: scale(1.1);
}

.mobile-menu-link::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--color-gradient-1);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.mobile-menu-link:hover::after {
    width: 100%;
}

.mobile-menu-cta {
    display: inline-block;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    padding: 16px 32px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--color-gradient-2);
    color: var(--color-button-text);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    border: 2px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease 0.4s forwards;
}

.mobile-menu-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.6);
    border-color: var(--color-accent-secondary);
}

/* Mobile Menu Responsive */
@media (max-width: 640px) {
    .mobile-menu-link {
        font-size: 2rem;
    }
    
    .mobile-menu-cta {
        font-size: 1.2rem;
        padding: 14px 28px;
    }
    
    .mobile-menu-toggle {
        top: 20px;
        right: 20px;
        padding: 12px;
    }
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}


/* New styles */

/* Infinitique section */
.infinitique-section {
    position: relative;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    padding: 140px 40px;
    color: var(--color-text-light);
    overflow: hidden;
}

.infinitique-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.infinitique-overlay {
    background: rgba(0, 212, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 60px 20px;
    border-radius: 32px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
    position: relative;
    z-index: 1;
}

.infinitique-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.infinitique-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    background: var(--color-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3)); }
    to { filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.6)); }
}

.infinitique-subtitle {
    font-size: 1.6rem;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.6;
}

.infinitique-button {
    display: inline-block;
    background: var(--color-gradient-1);
    color: var(--color-button-text);
    padding: 20px 50px;
    border-radius: 60px;
    font-weight: 800;
    font-size: 1.3rem;
    text-decoration: none;
    margin-bottom: 60px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.infinitique-button:hover {
    background: var(--color-gradient-3);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.6);
    border-color: var(--color-accent);
}

.infinitique-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.infinitique-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 24px;
    padding: 40px;
    max-width: 340px;
    flex: 1;
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.infinitique-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.infinitique-card:hover::before {
    opacity: 1;
}

.infinitique-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--color-accent);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.4);
}

.card-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--color-gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.card-text {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .infinitique-title {
        font-size: 2.5rem;
    }

    .infinitique-subtitle {
        font-size: 1.2rem;
    }

    .infinitique-cards {
        flex-direction: column;
        align-items: center;
    }

    .infinitique-card {
        width: 100%;
        max-width: 90%;
    }
}


/* Insight zone */
.insight-zone {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    padding: 120px 40px;
    color: var(--color-text-light);
    position: relative;
    overflow: hidden;
}

.insight-zone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.insight-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.insight-header {
    margin-bottom: 70px;
}

.insight-title {
    font-size: 4rem;
    font-weight: 900;
    background: var(--color-gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.insight-subtitle {
    font-size: 1.6rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.insight-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insight-card:hover::before {
    opacity: 1;
}

.insight-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--color-accent-secondary);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.4);
}

.insight-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.insight-body {
    padding: 30px;
    text-align: left;
}

.insight-card-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: var(--color-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.insight-card-text {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .insight-title {
        font-size: 2.5rem;
    }

    .insight-subtitle {
        font-size: 1.1rem;
    }
}

/* Evozone section */
.evozone-section {
    background: linear-gradient(135deg, #0a0a0f 0%, #16213e 50%, #1a1a2e 100%);
    padding: 100px 40px;
    color: var(--color-text-light);
    position: relative;
    overflow: hidden;
}

.evozone-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 20%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.evozone-container {
    max-width: 1280px;
    margin: 0 auto;
}

.evozone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
    align-items: center;
}

.evozone-text-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.evozone-heading {
    font-size: 3.8rem;
    font-weight: 900;
    background: var(--color-gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 30px rgba(124, 58, 237, 0.5);
}

.evozone-lead {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.evozone-paragraph {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.evozone-highlight {
    margin-top: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-left: 6px solid var(--color-accent);
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--color-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

.evozone-image-wrap {
    position: relative;
    text-align: center;
}

.evozone-image {
    width: 100%;
    height: auto;
    border: 1px solid var(--color-card-border);
    border-radius: 20px;
    box-shadow: 0 12px 30px var(--color-card-shadow);
    object-fit: cover;
}

.evozone-caption {
    margin-top: 16px;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .evozone-heading {
        font-size: 2.4rem;
    }

    .evozone-lead {
        font-size: 1.1rem;
    }

    .evozone-paragraph {
        font-size: 1rem;
    }
}

/* Future connect section */
.future-connect-section {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    padding: 100px 40px;
    color: var(--color-text-light);
    position: relative;
    overflow: hidden;
}

.future-connect-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.future-container {
    max-width: 1280px;
    margin: 0 auto;
}

.future-header {
    text-align: center;
    margin-bottom: 60px;
}

.future-title {
    font-size: 4rem;
    font-weight: 900;
    background: var(--color-gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.future-subtitle {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.future-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
}

/* Kontaktformular */
.future-form form {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    padding: 50px;
    border-radius: 24px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 700;
    font-size: 1.2rem;
    background: var(--color-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(0, 212, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
    color: var(--color-text-light);
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

.form-submit {
    text-align: right;
}

.form-submit button {
    background: var(--color-gradient-1);
    color: var(--color-button-text);
    font-weight: 800;
    padding: 16px 40px;
    border-radius: 60px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.form-submit button:hover {
    background: var(--color-gradient-3);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.5);
    border-color: var(--color-accent);
}

/* Themenkarten */
.future-topics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.topic-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.topic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.topic-card:hover::before {
    opacity: 1;
}

.topic-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--color-accent-secondary);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.4);
}

.topic-title {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--color-gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.topic-card p {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .future-title {
        font-size: 2.5rem;
    }

    .future-subtitle {
        font-size: 1.1rem;
    }

    .future-topics {
        grid-template-columns: 1fr;
    }
}