/* 1. VARIABLEN & GRUNDSTELLUGEN */
:root {
    --brand-blue: #0ea5e9;
    --brand-gradient: linear-gradient(135deg, #0ea5e9 0%, #2dd4bf 100%);
    --bg-light: #f8fafc;
    --text-dark: #1e293b;
    --ai-purple: #8b5cf6;
    --ai-gradient: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    --main-gradient: linear-gradient(
        135deg,
        #2dd4bf 0%,
        #0ea5e9 50%,
        #8b5cf6 100%
    );
}

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

body {
    /* 2. MODERNE SCHRIFTART (Sans-Serif System Stack) */
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
        sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    z-index: 1000;
    display: flex;
    width: 100%;
    height: 70px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px); /* edaira Glassmorphism */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    justify-content: center;
    align-items: center;
}

.navbar ul {
    display: flex;
    list-style: none;
}

.navbar ul li a {
    color: var(--text-dark);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

.navbar ul li a:hover {
    color: var(--brand-blue);
}
/* --- MODERNE LINKS: PROJEKT-SPEZIFISCH --- */

/* Gemeinsame Basis für alle Links */
a {
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 700;
    position: relative;
    transition: color 0.3s ease;
}

a::after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -2px;
    left: 0;
    transform-origin: bottom right;
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

#Start h1 .highlight {
    background: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- KOMMA-BEREICH (Blau/Grün) --- */
.project-section-comma a {
    color: var(--brand-blue);
}

.project-section-comma a::after {
    background: var(--brand-gradient);
}

.project-section-comma a:hover {
    color: #0369a1; /* Dunkleres Blau */
}

/* --- KI-BEREICH (Lila/Pink) --- */

/* Wir sprechen Links in allen KI-Containern direkt an */
.project-section-ai a,
.project-section-ai .card a,
.project-section-ai .news-item a {
    color: var(--ai-purple); /* Von Anfang an Lila */
}

/* Hover-Effekt: Farbe bleibt gleich, nur die Linie (::after) erscheint */
.project-section-ai a:hover,
.project-section-ai .card a:hover,
.project-section-ai .news-item a:hover {
    color: #6d28d9; /* Dunkleres Lila */
}

.project-section-ai a::after,
.project-section-ai .card a::after,
.project-section-ai .news-item a::after {
    background: var(--ai-gradient); /* Die Linie nutzt den lila Verlauf */
}

/* 2. AUSNAHME: Navigation (soll keine Linie haben) */
.navbar ul li a {
    color: var(--text-dark) !important;
}

.navbar ul li a:hover {
    color: var(--brand-blue) !important;
    transform: translateY(-2px);
}

.navbar ul li a::after {
    display: none !important; /* Verhindert die Linie im Menü */
}

/* 3. AUSNAHME: Die großen klickbaren Projekt-Karten (Startseite) */
.main-link::after {
    display: none !important; /* Keine Linie bei den "Projekt ansehen" Links, da die ganze Box reagiert */
}

/* SEKTIONEN */
section {
    padding: 120px 10vw;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#Start {
    background: radial-gradient(circle at top right, #e0f2fe, #f8fafc);
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.highlight {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lead {
    max-width: 700px;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
}

/* 3. PROJEKT-KARTEN NEBENEINANDER (Grid Fix) */
.project-grid {
    display: grid;
    /* Erzwingt zwei Spalten auf Desktop, eine auf Mobile */
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

/* Falls der Bildschirm schmaler als 768px ist, untereinander anzeigen */
@media (max-width: 768px) {
    .project-grid {
        grid-template-columns: 1fr;
    }
}

/* Erlaube der Karte, als Anker für den Link zu dienen */
.card {
    position: relative; /* WICHTIG */
    background: white;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

/* Der unsichtbare Link, der sich über die ganze Box spannt */
.card a.main-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(14, 165, 233, 0.15);
}

.card h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.card-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-blue);
    opacity: 0.15;
    margin-bottom: 5px;
}

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

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* THEMA 1: KOMMASETZUNG */
.project-section-comma {
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f0f9ff 100%
    ); /* Ganz zartes Blau */
    border-top: 1px solid #e0f2fe;
}

.project-section-comma .highlight {
    background: linear-gradient(
        135deg,
        #0ea5e9 0%,
        #2dd4bf 100%
    ); /* Blau-Grün */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* THEMA 2: KI-FEEDBACK */
.project-section-ai {
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f5f3ff 100%
    ); /* Ganz zartes Violett */
    border-top: 1px solid #ede9fe;
}

.project-section-ai .highlight {
    background: linear-gradient(
        135deg,
        #8b5cf6 0%,
        #ec4899 100%
    ); /* Violett-Pink (KI-Vibe) */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Spezielles Styling für den News-Feed */
.news-feed-container {
    height: 450px; /* Fixe Höhe */
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 !important; /* Padding wird über die inneren Boxen geregelt */
    overflow: hidden; /* Verhindert, dass Ecken des Inhalts überstehen */
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.news-feed-container {
    cursor: default !important; /* Hier niemals ein Pointer */
}

.news-feed-container:hover {
    transform: none !important; /* Hier niemals Hüpfen */
}

.news-header {
    padding: 1.5rem 2rem;
    background: white;
    border-bottom: 2px solid var(--bg-light);
    z-index: 10;
}

.news-header h3 {
    margin: 0;
    color: var(--brand-blue);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-scroll-area {
    overflow-y: auto;
    padding: 1.5rem 2rem;
    flex-grow: 1;
    text-align: left;
    /* Custom Scrollbar für Firefox */
    scrollbar-width: thin;
    scrollbar-color: var(--brand-blue) transparent;
}

/* Custom Scrollbar für Chrome, Safari, Edge */
.news-scroll-area::-webkit-scrollbar {
    width: 6px;
}

.news-scroll-area::-webkit-scrollbar-track {
    background: transparent;
}

.news-scroll-area::-webkit-scrollbar-thumb {
    background-color: #cbd5e1; /* Ein dezentes Grau */
    border-radius: 10px;
}

.news-scroll-area::-webkit-scrollbar-thumb:hover {
    background-color: var(--brand-blue);
}

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

.news-item {
    padding-bottom: 1.2rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px dashed #e2e8f0;
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    display: inline-block;
    font-weight: 800;
    color: var(--brand-blue);
    margin-right: 8px;
    font-size: 0.9rem;
}

/* Optional: Ein dezent schwebendes Icon oder Badge zur Unterscheidung */
.project-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.badge-comma {
    background: #e0f2fe;
    color: #0369a1;
}
.badge-ai {
    background: #f3e8ff;
    color: #6d28d9;
}

/* FOOTER & BUTTONS */
#footer {
    padding: 60px;
    background: white;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

#AÜbtn {
    background: var(--brand-gradient);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(14, 165, 233, 0.3);
}

/* STAGGERED REVEAL (Boxen nacheinander einblenden) */

/* Wir sprechen die Elemente innerhalb eines Grids nacheinander an */
.project-grid .reveal:nth-child(1) {
    transition-delay: 0.1s;
}

.project-grid .reveal:nth-child(2) {
    transition-delay: 0.3s;
}

.project-grid .reveal:nth-child(3) {
    transition-delay: 0.5s;
}

.project-grid .reveal:nth-child(4) {
    transition-delay: 0.7s;
}

.counter {
    font-weight: 800;
    color: var(--brand-blue);
    display: inline-block;
    min-width: auto; /* Entfernt die starre Breite von 60px */
    font-variant-numeric: tabular-nums; /* Der Profi-Trick: Jede Ziffer ist gleich breit */
}

/* Container für das Bild und das Copyright */
.img-wrapper {
    position: relative;
    display: inline-block;
    height: 180px; /* Gleiche Höhe wie das Bild */
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden; /* Wichtig, damit das Copyright an den Ecken nicht übersteht */
}

.img-wrapper img {
    height: 100%; /* Nutzt die Höhe des Containers */
    display: block;
    transition: transform 0.5s ease;
}

/* Das Copyright-Label */
.img-copyright {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6); /* Schwarzer, transparenter Hintergrund */
    backdrop-filter: blur(4px); /* Moderner Glass-Effekt */
    color: white;
    font-size: 0.7rem;
    padding: 4px 8px;
    text-align: center;
    opacity: 0; /* Standardmäßig unsichtbar */
    transition: opacity 0.3s ease;
}

/* Hover-Effekt: Copyright einblenden und Bild leicht vergrößern */
.img-wrapper:hover .img-copyright {
    opacity: 1;
}

.img-wrapper:hover img {
    transform: scale(1.05); /* Leichter Zoom-Effekt beim Hovern */
}

/* Spezieller Info-Kasten für den Projektstatus (KI-Bereich) */
.status-box-ai {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fdfbff; /* Ganz zartes Violett */
    border: none !important;
    border-left: 6px solid #8b5cf6 !important; /* Kräftiger Akzent links */
    padding: 2rem !important;
    text-align: left;
    max-width: 900px;
    margin: 2rem auto;
}

.status-icon {
    background: #f3e8ff;
    color: #8b5cf6;
    padding: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.status-content strong {
    display: block;
    color: #6d28d9;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.status-content p {
    margin: 0;
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.5;
}

/* Hover-Effekt für den Kasten (dezent) */
.status-box-ai:hover {
    background: #f5f3ff;
    transform: translateX(
        5px
    ); /* Schiebt sich leicht nach rechts statt nach oben */
}

/* Violettes Theme für den KI-News-Feed */
.project-section-ai .news-header h3 {
    color: #8b5cf6; /* Violett */
}

.project-section-ai .news-header {
    border-bottom: 2px solid #f5f3ff;
}

.project-section-ai .news-date {
    color: #8b5cf6;
}

.project-section-ai .news-scroll-area::-webkit-scrollbar-thumb:hover {
    background-color: #8b5cf6;
}

/* Anpassung der Counter-Farbe im KI-Bereich */
.project-section-ai .counter {
    color: #8b5cf6;
}

/* Styling für die nummerierte Liste in den Karten */
.group-list {
    list-style: none; /* Wir bauen eigene Nummern */
    counter-reset: group-counter;
    margin-top: 1.5rem;
    padding-left: 0;
    text-align: left;
}

.group-list li {
    counter-increment: group-counter;
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Die Nummern als Design-Element */
.group-list li::before {
    content: counter(group-counter) ".";
    position: absolute;
    left: 0;
    font-weight: 800;
    /* Im KI-Bereich nutzen wir Violett */
    color: #8b5cf6;
}

/* Fettgedruckte Schlagwörter innerhalb der Liste */
.group-list li strong {
    color: var(--text-dark);
}

/* --- SPEZIAL HOVER FÜR START-KARTEN --- */

/* Gemeinsame Vorbereitung: Textfarbe soll sich weich ändern */
#Start .card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* 1. BOX (Komma): Blau-Grüner Verlauf */
#Start .project-grid .card:nth-child(1):hover {
    background: var(--brand-gradient);
    border-color: transparent;
}

/* 2. BOX (KI): Lila-Roter Verlauf */
#Start .project-grid .card:nth-child(2):hover {
    background: var(--ai-gradient);
    border-color: transparent;
}

/* Textfarben-Anpassung beim Hovern für beide Start-Boxen */
#Start .project-grid .card:hover h3,
#Start .project-grid .card:hover p,
#Start .project-grid .card:hover .card-number,
#Start .project-grid .card:hover a {
    color: white !important;
}

/* Den kleinen Unterstrich-Effekt bei den Links in den Hover-Karten ausschalten */
#Start .project-grid .card:hover a::after {
    background: white;
}

/* --- FARBEN FÜR LINKS IM START-BEREICH --- */

/* Link in der ersten Karte (Komma) */
#Start .project-grid .card:nth-child(1) a {
    color: var(--brand-blue);
}

/* Link in der zweiten Karte (KI) */
#Start .project-grid .card:nth-child(2) a {
    color: var(--ai-purple);
}

/* Damit die Farbe beim Hovern weiß wird (wie von dir gewünscht) */
#Start .project-grid .card:hover a {
    color: white !important;
}

/* --- MOBILE OPTIMIERUNGEN --- */

@media (max-width: 768px) {
    /* 1. Navigation für Handys anpassen */
    .navbar {
        height: auto;
        padding: 10px 0;
    }

    .navbar ul {
        flex-wrap: wrap; /* Links brechen in die nächste Zeile um */
        gap: 5px;
    }

    .navbar ul li {
        margin: 0;
        padding: 5px;
    }

    .navbar ul li a {
        font-size: 0.65rem; /* Schrift etwas kleiner */
        padding: 5px 8px;
    }

    /* 2. Abstände der Sektionen verringern */
    section {
        padding: 80px 20px; /* Weniger Seitenabstand auf dem Handy */
    }

    /* 3. Überschriften skalieren */
    h1 {
        font-size: 2rem; /* h1 wird kleiner, damit Wörter nicht abgeschnitten werden */
    }

    .lead {
        font-size: 1rem;
        text-align: left; /* Blocksatz ist auf sehr schmalen Handys oft schwer lesbar */
    }

    /* 4. News-Feed Container */
    .news-feed-container {
        height: 400px; /* Etwas flacher auf dem Handy */
    }
}

@media (max-width: 768px) {
    .img-copyright {
        opacity: 1; /* Immer sichtbar auf dem Handy */
        background: rgba(0, 0, 0, 0.4);
    }
}

/* --- NEU: ERFOLGS-STATUS (Genehmigt) --- */
.status-box-success {
    border-left: 6px solid #2dd4bf !important; /* Türkis statt Violett */
    background: #f0fdfa !important;
}
.status-box-success .status-icon {
    background: #ccfbf1;
    color: #0d9488;
}
.status-box-success strong {
    color: #0d9488;
}

/* --- NEU: DOWNLOAD SEKTION --- */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 900px;
    margin-top: 2rem;
}

.download-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.download-card:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.1);
}

.download-icon {
    color: #8b5cf6;
    margin-bottom: 5px;
}

.download-card span {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
}

.btn-download {
    font-size: 0.75rem;
    padding: 6px 15px;
    background: #f3e8ff;
    color: #6d28d9;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.download-card:hover .btn-download {
    background: #8b5cf6;
    color: white;
}

/* 2. Die auffällige CTA-Box */
.cta-box {
    background: var(--ai-gradient);
    border-radius: 30px;
    padding: 3rem;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: "KI";
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 15rem;
    font-weight: 900;
    opacity: 0.1;
    color: white;
}

.highlight-white {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: brightness(2);
}

.benefit-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.benefit-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* 3. Button & Links in der CTA-Box */
.cta-button {
    background: white;
    color: var(--ai-purple) !important;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-link-white {
    color: white !important;
    margin-left: 20px;
    font-size: 0.9rem;
}

.cta-link-white::after {
    background: white !important;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .cta-box {
        padding: 2rem;
    }
    .cta-button {
        display: block;
        text-align: center;
    }
    .cta-link-white {
        display: block;
        margin: 20px 0 0 0;
        text-align: center;
    }
}
/* CTA BOX DESIGN */
.cta-box {
    background: var(--ai-gradient);
    border-radius: 32px;
    padding: 4rem;
    color: white;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(139, 92, 246, 0.4);
}

.highlight-white {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    font-weight: 900;
}

/* Benefit-Grid innerhalb der Box */
.benefit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: left;
}

.benefit-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.benefit-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.benefit-item p {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
}

/* Button Styling */
.cta-button {
    background: white;
    color: var(--ai-purple) !important;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: scale(1.05);
    background: #f8fafc;
}

.cta-link-white {
    color: white !important;
    margin-left: 25px;
    font-weight: 600;
    font-size: 0.95rem;
}

.cta-link-white::after {
    background: white !important;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-box {
        padding: 2rem;
    }
    .benefit-grid {
        grid-template-columns: 1fr;
    }
    .cta-button {
        display: block;
        text-align: center;
    }
    .cta-link-white {
        display: block;
        margin: 20px 0 0 0;
        text-align: center;
    }
}

.promo-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--ai-gradient);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    z-index: 10;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Spezielle Badge-Anpassung für die CTA-Box */
.cta-box .badge-ai {
    background: rgba(255, 255, 255, 0.15); /* Transparenter Weiß-Ton */
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5); /* Weißer Rahmen */
    padding: 6px 16px;
    border-radius: 8px; /* Etwas eckiger als im Screenshot */
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: none; /* Verhindert ungewollte Großbuchstaben */
}

/* Icons in der Benefit-Liste (die kleinen Kästen im Screenshot) */
.benefit-icon {
    background: rgba(255, 255, 255, 0.2) !important; /* Hellerer Kasten */
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
