/*--------------------------------------------------------------
# Variablen und Grundeinstellungen
--------------------------------------------------------------*/
:root {
    --primary-color: #1e8a3e; /* Grün für Umweltthema */
    --secondary-color: #155d2a;
    --accent-color: #f8b500;
    --light-color: #f4f7f4;
    --dark-color: #333;
    --text-color: #444;
    --shadow: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.1);
    --border-radius: 0.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f9f9f9;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

section {
    padding: 4rem 2rem;
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2.5rem;
    text-align: center;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    background-color: white;
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
}

.logo-container {
    display: block;
    height: 3.75rem;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.03);
}

.logo-svg {
    height: 3.75rem;
    width: 12.5rem;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s;
}

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

/* CTA Button (wiederverwendbare Komponente) */
.cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    display: inline-block;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-0.1875rem);
}

/* Mobile Navigation Toggle */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 1.5625rem;
    height: 0.1875rem;
    background-color: var(--dark-color);
    margin: 0.3125rem;
    transition: all 0.3s ease;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(30,138,62,0.9) 0%, rgba(21,93,42,0.8) 100%), url('assets/images/hero-background.jpg') center/cover no-repeat;
    color: white;
    padding: 0 1rem;
    position: relative;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: var(--border-radius);
    background-color: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(5px);
}

.hero-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--dark-color);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.2);
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.hero .cta-button {
    background-color: var(--accent-color);
    color: var(--dark-color);
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.hero .cta-button:hover {
    background-color: #e09e00;
}

.hero-cta {
    margin-top: 2rem;
}

.guarantee {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #f4f4f4;
}

.guarantee i {
    margin-right: 0.5rem;
}

/*--------------------------------------------------------------
# Trust Bar
--------------------------------------------------------------*/
.trust-bar {
    background-color: white;
    box-shadow: var(--shadow);
    padding: 1.5rem 0;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
}

.trust-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.trust-item span {
    font-weight: 500;
}

/*--------------------------------------------------------------
# Benefits Section
--------------------------------------------------------------*/
.benefits {
    background-color: white;
    text-align: center;
}

.benefits-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    padding: 2rem;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    border-top: 0.25rem solid var(--primary-color);
}

.benefit-card:hover {
    transform: translateY(-0.625rem);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Hervorgehobene Vorteilskarten */
.highlight-benefit {
    border: 0.125rem solid var(--primary-color);
    box-shadow: 0 0.625rem 1.5625rem rgba(30, 138, 62, 0.1);
    transform: translateY(-0.3125rem);
}

.highlight-benefit i {
    color: var(--primary-color);
    font-size: 2.625rem;
}

.highlight-benefit h3 {
    color: var(--primary-color);
    font-size: 1.3125rem;
}

.highlight-benefit strong {
    color: var(--primary-color);
    font-weight: 700;
}

/*--------------------------------------------------------------
# How It Works Section
--------------------------------------------------------------*/
.how-it-works {
    background-color: var(--light-color);
    text-align: center;
    padding: 5rem 2rem;
}

.steps-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 3.125rem;
    height: 3.125rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 1.5625rem;
    right: -10%;
    width: 20%;
    height: 0.125rem;
    background-color: var(--primary-color);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
    background-color: white;
    text-align: center;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.feature-card {
    flex: 1;
    min-width: 250px;
    max-width: 500px;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: left;
    transition: transform 0.3s;
    border-left: 0.25rem solid var(--primary-color);
}

.feature-card:hover {
    transform: translateY(-0.3125rem);
}

.feature-icon {
    width: 3.75rem;
    height: 3.75rem;
    background-color: rgba(30, 138, 62, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

/*--------------------------------------------------------------
# Custom Documents Section
--------------------------------------------------------------*/
.custom-documents {
    background: linear-gradient(135deg, #f7f9fc 0%, #eef1f5 100%);
    padding: 5rem 2rem;
}

.custom-documents-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.custom-documents-info {
    flex: 1;
}

.custom-documents-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.custom-documents-info ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.custom-documents-info ul li i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    margin-top: 0.2rem;
}

.custom-documents-security {
    padding: 1rem;
    background-color: rgba(30, 138, 62, 0.1);
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.custom-documents-security i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.custom-documents-image {
    flex: 1;
    position: relative;
}

.custom-documents-image img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: block;
    margin: 0 auto;
}

/*--------------------------------------------------------------
# CTA Sections (Primary & Final)
--------------------------------------------------------------*/
/* Gemeinsame Stile für CTA-Sektionen */
.cta, .final-cta {
    text-align: center;
    padding: 5rem 2rem;
}

.cta-content, .final-cta p {
    max-width: 800px;
    margin: 0 auto;
}

/* Primäre CTA-Sektion */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.cta h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta .cta-button {
    background-color: white;
    color: var(--primary-color);
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.cta .cta-button:hover {
    background-color: var(--accent-color);
    color: var(--dark-color);
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq {
    background-color: white;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.5rem;
    background-color: #f8f8f8;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 18.75rem; /* Erhöht um mehr Platz für längere Antworten zu bieten */
    overflow-y: auto;
}

.faq-item.active .fa-plus {
    transform: rotate(45deg);
}

/*--------------------------------------------------------------
# Order Section
--------------------------------------------------------------*/
.order {
    background-color: var(--light-color);
    text-align: center;
}

.pricing-card {
    max-width: 400px;
    margin: 0 auto;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
    position: relative;
    border: 0.125rem solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: -0.9375rem;
    right: 1.25rem;
    background-color: var(--accent-color);
    color: var(--dark-color);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 1.25rem;
    font-size: 0.9rem;
    box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.2);
}

.price {
    margin: 1.5rem 0 0.5rem;
    position: relative;
}

.original-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #999;
    margin-right: 0.5rem;
    position: relative;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 1.2rem;
    color: var(--text-color);
}

.price-info {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #777;
}

.features-list {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.features-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.features-list i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    margin-top: 0.3rem;
}

.order-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 3rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    width: 100%;
}

.order-button:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-0.1875rem);
}

.order-guarantee {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.order-guarantee i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.payment-methods {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    color: #999;
    font-size: 1.5rem;
}

/* Finale CTA-Sektion */
.final-cta {
    background-color: var(--dark-color);
    color: white;
}

.final-cta h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.final-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.final-cta .cta-button {
    background-color: var(--accent-color);
    color: var(--dark-color);
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.final-cta .cta-button:hover {
    background-color: white;
    color: var(--dark-color);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo, .footer-links, .footer-contact {
    margin-bottom: 2rem;
}

.footer-logo h2 {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-links h3, .footer-contact h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

.footer-links a {
    color: #aaa;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
/* Große Tablets und kleine Desktops */
@media screen and (max-width: 1100px) {
    .custom-documents-container {
        flex-direction: column;
    }
    
    .custom-documents-info {
        order: 2;
    }
    
    .custom-documents-image {
        order: 1;
        margin-bottom: 2rem;
    }
}

/* Tablets und kleine Laptops */
@media screen and (max-width: 992px) {
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .feature-card {
        min-width: 45%;
    }
    
    .logo-svg {
        height: 3.125rem;
        width: 10.625rem;
    }
    
    .logo-container {
        height: 3.125rem;
    }
}

/* Tablets und große Smartphones */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 0.5rem 1rem;
    }
    
    .logo-svg {
        height: 2.8125rem;
        width: 9.375rem;
    }
    
    .logo-container {
        height: 2.8125rem;
    }
    
    .nav-links {
        position: absolute;
        right: 0;
        top: 4.375rem;
        height: calc(100vh - 4.375rem);
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        z-index: 1;
    }
    
    .nav-links li {
        margin: 1.5rem 0;
    }
    
    .burger {
        display: block;
    }
    
    .nav-active {
        transform: translateX(0%);
    }
    
    .hero h1 {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 0.8rem;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    .benefit-card,
    .feature-card {
        min-width: 100%;
    }

    .step:not(:last-child)::after {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-links li {
        margin: 0 1rem 0.5rem;
    }

    .trust-container {
        flex-direction: column;
        align-items: center;
    }

    .trust-item {
        margin-bottom: 1rem;
    }
    
    .custom-documents-image img {
        max-width: 100%;
    }
}

/* Kleine Smartphones */
@media screen and (max-width: 480px) {
    .logo-svg {
        height: 2.5rem;
        width: 8.125rem;
    }
    
    .logo-container {
        height: 2.5rem;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 6.25rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero .cta-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .step,
    .benefit-card,
    .feature-card {
        padding: 1.5rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

/*--------------------------------------------------------------
# Kommunikationsmethoden-Sektion
--------------------------------------------------------------*/
.communication-methods {
    padding: 5rem 0;
    background-color: #f7f9fc;
    text-align: center;
}

.communication-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.875rem;
    margin-top: 3.125rem;
}

.comm-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 0.3125rem 1.25rem rgba(0, 0, 0, 0.05);
    padding: 1.875rem;
    width: 18.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e7e7e7;
    position: relative;
    overflow: hidden;
}

.comm-card:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.1);
}

.highlight-card {
    border: 0.125rem solid var(--primary-color);
    position: relative;
}

.highlight-card::before {
    content: "Neu";
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 0.3125rem 0.9375rem;
    font-size: 0.75rem;
    font-weight: bold;
    border-bottom-left-radius: 0.5rem;
}

.comm-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.375rem;
    height: 4.375rem;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    font-size: 1.75rem;
    color: white;
    background: linear-gradient(135deg, var(--primary-color), #52c41a);
}

.comm-card h3 {
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: 0.9375rem;
    color: #333;
}

.comm-card p {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.comm-example {
    background-color: #f7f9fc;
    border-radius: 0.5rem;
    padding: 0.9375rem;
    margin-top: 1.25rem;
}

.example-title {
    font-weight: bold;
    margin-bottom: 0.625rem;
    color: var(--primary-color);
}

.comm-example ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.comm-example li {
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: 0.5rem;
    font-size: 0.8125rem;
}

.comm-example li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
}

/*--------------------------------------------------------------
# Anwendungsfälle-Sektion
--------------------------------------------------------------*/
.use-cases {
    padding: 5rem 0;
    background-color: white;
    text-align: center;
}

.use-case-container {
    margin-top: 3.125rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.use-case {
    display: flex;
    margin-bottom: 2.5rem;
    background-color: #f7f9fc;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.05);
}

.use-case-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 6.25rem;
    background: linear-gradient(135deg, var(--primary-color), #52c41a);
    color: white;
    font-size: 2rem;
}

.use-case-content {
    padding: 1.875rem;
}

.use-case h3 {
    margin-top: 0;
    color: #333;
    margin-bottom: 0.9375rem;
}

.use-case p {
    margin-bottom: 0.9375rem;
    color: #555;
    line-height: 1.6;
}

.use-case-benefit {
    margin-top: 1.5625rem;
    padding: 0.9375rem;
    background-color: #e8f5e9;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--primary-color);
}

.use-case-benefit i {
    font-size: 1.25rem;
}

/* Zusätzliche Media Queries für Kommunikationsmethoden und Anwendungsfälle */
@media (max-width: 768px) {
    .communication-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .comm-card {
        width: 90%;
        max-width: 21.875rem;
    }
    
    .use-case {
        flex-direction: column;
    }
    
    .use-case-icon {
        padding: 1.25rem 0;
        min-width: 0;
    }
}

/*--------------------------------------------------------------
# Zurück nach oben Button
--------------------------------------------------------------*/
#scrollToTopBtn {
    display: none; /* Standardmäßig ausgeblendet */
    position: fixed;
    bottom: 1.25rem;
    right: 1.875rem;
    z-index: 99;
    border: none;
    outline: none;
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
    padding: 0.9375rem;
    border-radius: 50%;
    font-size: 1.125rem;
    box-shadow: var(--shadow);
    transition: background-color 0.3s, opacity 0.3s, visibility 0.3s;
    opacity: 0;
}

#scrollToTopBtn.visible {
    display: block;
    opacity: 1;
}

#scrollToTopBtn:hover {
    background-color: var(--secondary-color);
}

/* Disclaimer Hinweis im Footer */
.footer-bottom .disclaimer-hinweis {
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: rgba(0,0,0,0.2);
    border-radius: var(--border-radius);
    text-align: center;
}

.footer-bottom .disclaimer-hinweis strong {
    color: #ccc;
}

/*--------------------------------------------------------------
# JavaScript-Animationsklassen
--------------------------------------------------------------*/
/* Navigations-Link-Animation */
.nav-link-animated {
    animation: navLinkFade 0.5s ease forwards;
}

.nav-links li:nth-child(1).nav-link-animated { animation-delay: 0.3s; }
.nav-links li:nth-child(2).nav-link-animated { animation-delay: 0.44s; }
.nav-links li:nth-child(3).nav-link-animated { animation-delay: 0.58s; }
.nav-links li:nth-child(4).nav-link-animated { animation-delay: 0.72s; }
.nav-links li:nth-child(5).nav-link-animated { animation-delay: 0.86s; }
.nav-links li:nth-child(6).nav-link-animated { animation-delay: 1s; }

/* Upload-Demo-Animationen */
.progress-complete {
    width: 100% !important;
}

.success-visible {
    opacity: 1 !important;
}