    
          /* 1. GLOBALE FIXES & FONTS */
     /* inter-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/inter-v20-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/inter-v20-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/inter-v20-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
        

        /* --- Import der Global Styles von der Index --- */
        body { font-family: 'Inter', sans-serif; color: #333; background-color: #fcfcfc; }
        .demo-section { padding: 80px 0; border-bottom: 1px solid #eee; }
        .bg-premium { background: linear-gradient(135deg, #0d6efd 0%, #0a46a3 100%); }
        
        /* AURA Buttons */
      

        /* AURA Form */
        .aura-form-control { border: 1px solid #e0e0e0; border-radius: 12px; padding: 14px 18px; transition: all 0.3s ease; }
        .aura-form-control:focus { border-color: #0d6efd; box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1); outline: none; }

        /* AURA Cards & Icons */
        .card { border: none; transition: all 0.3s ease; border-radius: 16px; overflow: hidden; }
        .card:hover { transform: translateY(-10px); box-shadow: 0 1rem 3rem rgba(0,0,0,.1) !important; }
        .feature-iconold { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 12px; background-color: rgba(13, 110, 253, 0.1); color: #0d6efd; font-size: 1.5rem; }
        
.feature-icon {
    width: 54px; /* Etwas kleiner wirkt oft eleganter */
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px; /* Weichere Rundung */
    background-color: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
    font-size: 1.4rem;
    margin-bottom: 1.5rem; /* Der entscheidende Abstand zum Text */
}

        .contact-info-icon { width: 45px; height: 45px; background: rgba(13, 110, 253, 0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #0d6efd; }

        /* Social Proof & Progress */
        .aura-icon-box { opacity: 0.5; filter: grayscale(100%); transition: 0.3s; }
        .aura-icon-box:hover { opacity: 1; filter: grayscale(0%); transform: scale(1.1); }
        .aura-progress-wrapper { background: #eee; border-radius: 50px; height: 10px; overflow: hidden; }
        .aura-progress-bar { background: linear-gradient(90deg, #0d6efd, #0dcaf0); height: 100%; border-radius: 50px; }
        
        /* Demo Label */
        .element-label { font-family: monospace; font-size: 0.75rem; color: #adb5bd; text-transform: uppercase; margin-bottom: 1rem; display: block; }

/* Moderne AURA Button-Klasse (HELL) */
.btn-aura-light {
    background: #f8f9fa;
    color: #495057; /* Dunkelgrauer Text für bessere Lesbarkeit */
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-aura-light:hover {
    background: #ffffff;
    color: #0d6efd; /* Text wird beim Hovern Blau */
    border-color: #0d6efd;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.1);
}

.btn-aura-light:active {
    transform: translateY(0);
}


        /* Moderne AURA Button-Klasse */
.btn-aura {
    background: linear-gradient(135deg, #0d6efd 0%, #004dc7 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px; /* Etwas runder für modernen Look */
    padding: 12px 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-aura:hover {
    color: #ffffff;
    transform: translateY(-2px); /* Button hebt sich leicht ab */
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
    background: linear-gradient(135deg, #1a7bff 0%, #0d6efd 100%);
}

.btn-aura:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.2);
}

/* Optional: Ein subtiler Glanz-Effekt */
.btn-aura::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-aura:hover::after {
    left: 100%;
}

/* AURA Custom Outline Button */
.btn-aura-outline {
    background: transparent;
    color: #0d6efd;
    border: 2px solid #0d6efd;
    border-radius: 12px; /* Gleicher Radius wie btn-aura */
    padding: 10px 24px; /* Etwas weniger Padding, da der Rahmen 2px aufträgt */
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-aura-outline:hover {
    background-color: #0d6efd;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
}

.btn-aura-outline:active {
    transform: translateY(0);
}


/* AURA Success Button */
.btn-aura-success {
    background: linear-gradient(135deg, #198754 0%, #146c43 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.2);
}
.btn-aura-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 135, 84, 0.3);
    color: #fff;
}

/* AURA Danger/Delete Button */
.btn-aura-danger {
    background: #fff;
    color: #dc3545;
    border: 2px solid #dc3545;
    border-radius: 12px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-aura-danger:hover {
    background: #dc3545;
    color: #fff;
    transform: translateY(-2px);
}

/* AURA Dark Button */
.btn-aura-dark {
    background: #212529;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-aura-dark:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    color: #fff;
}

/* AURA Glass Effect Button (für helle Hintergründe) */
.btn-aura-glass {
    background: rgba(13, 110, 253, 0.05);
    color: #0d6efd;
    border: 1px solid rgba(13, 110, 253, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-aura-glass:hover {
    background: rgba(13, 110, 253, 0.1);
    border-color: #0d6efd;
    transform: scale(1.02);
}




        /* AURA Pricing Section Styles */
.aura-pricing-section {
    padding: 100px 0;
    background-color: #fcfcfc;
}

.pricing-card {
    border: 1px solid #eee;
    border-radius: 24px;
    padding: 40px 30px;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
}

.pricing-card.popular {
    border-color: #0d6efd;
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.1);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.pricing-card .price-tag {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin: 20px 0;
}

.pricing-card .price-tag span {
    font-size: 1rem;
    color: #adb5bd;
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-features li {
    padding: 10px 0;
    color: #6c757d;
    font-size: 0.95rem;
}

.pricing-features li i {
    color: #0d6efd;
    margin-right: 10px;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #0d6efd;
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* AURA Custom Form Elements */
.aura-check-input {
    width: 1.25em;
    height: 1.25em;
    margin-top: 0.125em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid #e0e0e0;
    appearance: none;
    transition: all 0.2s ease;
    border-radius: 6px; /* AURA Rounding */
}

.aura-check-input[type="checkbox"] { border-radius: 6px; }
.aura-check-input[type="radio"] { border-radius: 50%; }

.aura-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.aura-check-input[type="radio"]:checked {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

/* AURA Range Slider */
.aura-range {
    width: 100%;
    height: 6px;
    padding: 0;
    background: #e9ecef;
    border-radius: 10px;
    appearance: none;
    outline: none;
}

.aura-range::-webkit-slider-thumb {
    width: 20px;
    height: 20px;
    background: #0d6efd;
    border: 3px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    appearance: none;
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.2);
    transition: transform 0.2s ease;
}

.aura-range::-webkit-slider-thumb:hover { transform: scale(1.15); }

/* AURA Testimonial Styles */
.aura-testimonial-section {
    padding: 100px 0;
    background-color: #fcfcfc;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: rgba(13, 110, 253, 0.2);
}

.star-rating {
    color: #ffc107; /* Goldene Sterne */
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 25px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: #eee;
}

.author-info h6 {
    margin: 0;
    font-weight: 700;
    font-size: 1rem;
}

.author-info span {
    font-size: 0.8rem;
    color: #adb5bd;
}

.quote-icon {
    font-size: 2rem;
    color: rgba(13, 110, 253, 0.1);
    margin-bottom: -10px;
}

/* AURA Team Styles */
.team-card {
    border: none;
    background: transparent;
}

.team-img-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.team-img-container img {
    transition: transform 0.5s ease;
}

.team-card:hover .team-img-container img {
    transform: scale(1.1);
}

/* Hover Overlay für Social Icons */
.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(13, 110, 253, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 25px;
    opacity: 0;
    transition: all 0.4s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social-icons {
    display: flex;
    gap: 12px;
}

.team-social-icons a {
    width: 40px;
    height: 40px;
    background: #fff;
    color: #0d6efd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.team-card:hover .team-social-icons a {
    transform: translateY(0);
}

.team-social-icons a:hover {
    background: #0d6efd;
    color: #fff;
    transform: translateY(-5px) !important;
}

.team-info h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.team-info span {
    color: #0d6efd;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* AURA Blog Section Styles */
.aura-blog-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.blog-card {
    border: none;
    border-radius: 20px;
    background: #fff;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px; /* Abgerundete Ecken für das Bild */
    margin: 10px;
}

.blog-card img {
    transition: transform 0.6s ease;
    height: 220px;
    object-fit: cover;
}

.blog-card:hover img {
    transform: scale(1.08);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #0d6efd;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
}

.blog-body {
    padding: 20px 15px;
}

.blog-date {
    font-size: 0.8rem;
    color: #adb5bd;
    margin-bottom: 10px;
    display: block;
}

.blog-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: #0d6efd;
}

.blog-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-link i {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-link i {
    transform: translateX(5px);
    color: #0d6efd;
}

/* AURA Accordion Styles */
/* AURA FAQ Two-Column Styles */
.faq-col-item {
    margin-bottom: 20px;
}

.aura-accordion-item {
    border: 1px solid #eee;
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.aura-accordion-item:hover {
    border-color: rgba(13, 110, 253, 0.3);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.aura-accordion-btn {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: #fff;
    border: none;
    font-weight: 600;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none !important;
}

.aura-accordion-btn:not(.collapsed) {
    color: #0d6efd;
    background: rgba(13, 110, 253, 0.02);
}

.aura-accordion-btn::after {
    content: "\f282"; /* Bootstrap Icon Chevron Down */
    font-family: "bootstrap-icons";
    transition: transform 0.3s ease;
}

.aura-accordion-btn:not(.collapsed)::after {
    transform: rotate(180deg);
}

/* AURA Modal Styles */
.aura-modal .modal-content {
    border: none;
    border-radius: 24px; /* Dein gewünschter Radius */
    padding: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.aura-modal .modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

.aura-modal .modal-footer {
    border-top: none;
    padding-top: 0;
}

/* AURA Tabs & Pill Navigation */
.aura-nav-pills {
    background: #f1f3f5;
    padding: 6px;
    border-radius: 16px;
    display: inline-flex;
}

.aura-nav-pills .nav-link {
    color: #6c757d;
    font-weight: 600;
    border-radius: 12px;
    padding: 10px 25px;
    transition: all 0.3s ease;
    border: none;
}

.aura-nav-pills .nav-link.active {
    background: #fff;
    color: #0d6efd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.tab-content-aura {
    padding: 30px 0;
}

/* AURA Toast Container */
.toast-container {
    z-index: 1060;
}

/* AURA Toast Style */
.toast-aura {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.toast-aura .toast-header {
    background: transparent;
    border-bottom: none;
    padding: 12px 15px 5px;
    color: #333;
}

.toast-aura .toast-body {
    padding: 5px 15px 15px;
    color: #666;
    font-size: 0.9rem;
}

/* Icon Styles innerhalb der Toasts */
.toast-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 0.8rem;
}

.toast-icon.success { background: rgba(25, 135, 84, 0.1); color: #198754; }
.toast-icon.danger { background: rgba(220, 53, 69, 0.1); color: #dc3545; }
.toast-icon.primary { background: rgba(13, 110, 253, 0.1); color: #0d6efd; }

/* AURA Back to Top Button */
.btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    display: flex; /* Immer flex, damit Zentrierung stimmt */
    align-items: center;
    justify-content: center;
    background-color: #0d6efd;
    color: white;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    
    /* Animation-Setup */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.3s ease;
    transform: translateY(10px); /* Leichter Versatz nach unten */
}

.btn-back-to-top:hover {
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(13, 110, 253, 0.4);
}

.btn-back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* Bewegt sich beim Erscheinen sanft hoch */
}

/* AURA Video Section Styles */
.aura-video-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.aura-video-thumbnail {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.aura-video-container:hover .aura-video-thumbnail {
    transform: scale(1.05);
}

/* Der pulsierende Play-Button */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: #ffffff;
    color: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    cursor: pointer;
    border: none;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    animation: aura-pulse-white 2s infinite;
}

.video-play-btn i {
    margin-left: 5px; /* Optische Korrektur für das Play-Icon */
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #0d6efd;
    color: #fff;
}

@keyframes aura-pulse-white {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 25px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* Lightbox Anpassung */
.aura-lightbox .modal-content {
    background: transparent;
    border: none;
}

.aura-lightbox .btn-close {
    filter: invert(1); /* Macht das X auf dunklem Grund weiß */
    margin-bottom: 10px;
    opacity: 1;
}

.aura-step-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    height: 100%;
    position: relative;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}
.aura-step-card:hover {
    border-color: #0d6efd;
    transform: translateY(-5px);
}
.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(13, 110, 253, 0.1);
    position: absolute;
    top: 20px;
    right: 30px;
}

.bg-primary-soft { background: rgba(13, 110, 253, 0.1); }
.hover-blue:hover { border-color: #0d6efd !important; transition: 0.3s; }

/* Grund-Stil für alle Banner */
.aura-cookie-banner {
    display: none; /* Standardmäßig unsichtbar */
    position: fixed;
    z-index: 2000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Typ 1: Dezent (Unten links) */
.banner-subtle {
    bottom: 20px;
    left: 20px;
    max-width: 350px;
    background: #fff;
    border-radius: 20px;
}

/* Typ 2: Modern Glass (Zentriert unten) */
.banner-glass {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
}

/* Typ 3: Full-Width (Unten angedockt) */
.banner-full {
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111;
    color: #fff;
    border-radius: 0;
}

.aura-cookie-banner.active {
    display: block;
    animation: auraFadeInUp 0.5s ease forwards;
}

@keyframes auraFadeInUp {
    from { opacity: 0; transform: translate(-50%, 50px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

/* Spezial-Korrektur für den "Subtle" Banner Animation */
.banner-subtle.active {
    animation: auraFadeInLeft 0.5s ease forwards;
}

@keyframes auraFadeInLeft {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Full-Width Korrektur */
.banner-full {
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    background: #111;
    color: #fff;
    border-radius: 0 !important; /* Keine Rundungen bei Full Width */
    transform: none !important; /* Wichtig: Hebt das translateX(-50%) auf */
}

/* Eigene Animation für den Full-Width Banner (nur von unten nach oben) */
.banner-full.active {
    display: block;
    animation: auraSlideUpFull 0.5s ease forwards;
}

@keyframes auraSlideUpFull {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

/* Modal Checkbox Fixes */
.aura-modal .form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.aura-modal .hover-blue:hover {
    border-color: #0d6efd !important;
    background: rgba(13, 110, 253, 0.02);
    transition: all 0.2s ease;
}

.aura-modal .modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* AURA Dark Footer Styles */
.aura-footer {
    background-color: #0b0e14; /* Tiefes Aura-Navy */
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.aura-footer .footer-title {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.aura-footer .footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 4px 0;
}

.aura-footer .footer-link:hover {
    color: #0d6efd; /* Dein Aura-Blau */
    transform: translateX(5px);
}

.aura-footer .social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.aura-footer .social-icon:hover {
    background: #0d6efd;
    transform: translateY(-3px);
    color: #fff;
}

.aura-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    margin-top: 50px;
}

/* Spezielle Styles für die Footer-Credits */
.footer-credit-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-credit-link:hover {
    color: #0d6efd; /* Aura Blau */
    text-shadow: 0 0 10px rgba(13, 110, 253, 0.5);
}

.footer-sub-link {
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s ease;
}

.footer-sub-link:hover {
    color: #ffffff;
}

.hero-section {
padding: 120px 0;
background-color: #f8f9fa;
}
.hero-img {
width: 100%;
max-height: 550px;
object-fit: cover;
border-radius: 24px;
box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
/* Spezielles Styling für das Footer-Input */
.aura-footer-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 10px 0 0 10px !important; /* Abgerundet links passend zum Button */
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.aura-footer-input:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--bs-primary) !important;
    box-shadow: 0 0 15px rgba(13, 110, 253, 0.2) !important;
    outline: none;
}

/* Platzhalter-Farbe für das dunkle Input */
.aura-footer-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Den Button rechts abrunden */
.aura-footer-input + .btn {
    border-radius: 0 10px 10px 0 !important;
}

/*Menü fade out*/
/* 1. Header Fixierung für alle Geräte */
.navbar.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    background-color: white !important; /* Verhindert Transparenz beim Scrollen */
}

/* 2. Fade-Effekt für das mobile Menü */
.collapsing {
    height: auto !important;
    transition: opacity 0.3s ease-out !important;
    display: block !important;
    opacity: 0;
}

.collapse.show {
    opacity: 1;
    display: block;
    transition: opacity 0.3s ease-in;
}

/* 3. Mobile-Spezifisches Verhalten (< 992px) */
@media (max-width: 991.98px) {
    .navbar-collapse:not(.show) {
        pointer-events: none;
        opacity: 0;
    }
}

/* 4. Desktop-Spezifisches Verhalten (>= 992px) */
@media (min-width: 992px) {
    .navbar-collapse {
        opacity: 1 !important;
        pointer-events: auto !important;
        display: flex !important;
    }
}



section {
    scroll-margin-top: 90px; /* Anker-Links stoppen unter der Navbar */
}

@media (max-width: 991.98px) {
    .navbar-nav .ms-lg-3 {
        margin-left: 0 !important; /* Entfernt den seitlichen Abstand am Handy */
        margin-top: 10px; /* Gibt dem Button etwas Luft nach oben */
    }
    .navbar-nav .btn {
        width: 100%; /* Button geht über die ganze Breite im Menü */
    }
}
@media (max-width: 991.98px) {
    /* Verhindert, dass das Dropdown das Layout zerschießt */
    .navbar-nav .dropdown-menu {
        position: static !important;
        float: none;
        background: rgba(0,0,0,0.03); /* Leichte Grautönung für Unterpunkte */
        border: none;
        box-shadow: none;
        margin: 0 10px;
    }
}

/* Verhindert Textumbruch im Button */
.text-nowrap {
    white-space: nowrap;
}

/* Optimierung für das Newsletter-Eingabefeld */
.bg-white.rounded-4 input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

/* Button-Anpassung für Mobile */
@media (max-width: 767.98px) {
    .d-flex.flex-column.flex-md-row {
        background: transparent !important; /* Entfernt weißen Hintergrund vom Container */
        padding: 0 !important;
        box-shadow: none !important;
    }
    
    .d-flex.flex-column.flex-md-row input {
        background: white;
        border-radius: 16px !important;
        margin-bottom: 10px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    }
    
    .d-flex.flex-column.flex-md-row button {
        width: 100%;
        border-radius: 16px !important;
        padding: 16px !important;
    }
}

/* Startzustände */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

/* Der Zustand, wenn das Element im Sichtfeld ist */
.reveal-visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* Der Startzustand: Unsichtbar und leicht nach unten versetzt */
.reveal-fade {
    opacity: 0;
    transform: translateY(20px); /* Leichter Versatz nach unten für mehr Eleganz */
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
    will-change: opacity, transform;
}

/* Der Zielzustand: Voll sichtbar und an Originalposition */
.reveal-fade.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Verhindert den weißen Streifen rechts durch Animationen oder Rows */
html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* Zusätzliche Absicherung für die Bootstrap-Reihen */
.row {
    margin-right: 0;
    margin-left: 0;
}

.card-img-fixed {
    width: 100%;
    height: 220px; /* Hier kannst du die gewünschte Höhe einstellen */
    object-fit: cover; /* Schneidet das Bild sauber zu, ohne es zu verzerren */
    object-position: center;
}
