/* --- SEKTION 3: FEATURES --- */
.features-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
    overflow: hidden; /* Damit die Marquee nicht rausragt */
}

.features-label {
    color: var(--primary-orange);
    font-size: 0.9rem;      /* Klein */
    font-weight: 600;       /* Dünn (Light) */
    letter-spacing: 1px;    /* Leicht gesperrt für cleanen Look */
    text-transform: uppercase; /* Optional: Wirkt oft technischer */
    opacity: 0.9;
}

.features-header {
    text-align: center;
    margin-bottom: 50px;
    z-index: 2;
}
.features-header h2 { font-size: 3rem; margin: 0; font-weight: 800; }
.features-header p { color: var(--text-grey); margin-top: 10px; }

/* --- MARQUEE CONTAINER --- */
.marquee-wrapper {
    width: 100%;
    position: relative;
    
    /* UPDATE: Fokus stark auf die Mitte + schneller Fade */
    -webkit-mask-image: linear-gradient(
        to right, 
        transparent 15%,   /* Links außen: Komplett unsichtbar */
        black 35%,         /* Ziemlich schneller Fade-In (von 15% bis 35%) */
        black 65%,         /* Bis hier voll sichtbar (nur die mittlere 30%) */
        transparent 85%    /* Rechts außen: Wieder schnell komplett unsichtbar */
    );
    
    mask-image: linear-gradient(
        to right, 
        transparent 15%, 
        black 35%, 
        black 65%, 
        transparent 85%
    );
}

.marquee-track {
    display: flex;
    gap: 30px; /* Abstand zwischen den Karten */
    width: max-content; /* Wichtig: Breite passt sich Inhalt an */
    
    /* Die Animation: Scrollt nach links */
    animation: scroll-left 40s linear infinite;
    padding: 20px 0; /* Platz für Schatten/Hover-Effekte */
}

/* Pausieren, wenn man drüber hovert, damit man klicken kann */
.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Wir duplizieren den Inhalt, daher -50% */
}

/* --- FLIP CARD STYLES --- */
.feature-card {
    background-color: transparent;
    width: 350px;
    height: 220px;
    perspective: 1000px; /* Für den 3D Effekt nötig */
    cursor: default;
}

/* Der innere Container, der sich dreht */
.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: left;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

/* Klasse, die per JS hinzugefügt wird zum Drehen */
.card-inner.is-flipped {
    transform: rotateY(180deg);
}

/* Gemeinsame Styles für Vorne und Hinten */
.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Rückseite unsichtbar machen */
    backface-visibility: hidden;
    border-radius: 16px;
    padding: 24px;
    box-sizing: border-box;
    
    /* Design wie im Screenshot */
    background-color: #0F0E0C; /* Sehr dunkles Braun/Schwarz */
    border: 1px solid rgba(249, 115, 22, 0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* --- VORDERSEITE --- */
.card-front {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-icon-box {
    width: 48px;
    height: 48px;
    background-color: #2a1b12; /* Bräunlicher Hintergrund */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    margin-bottom: 16px;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: white;
}

.card-desc {
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.4;
    margin: 0;
    flex-grow: 1;
}

.btn-details {
    background: none;
    border: none;
    color: var(--primary-orange);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0;
    margin-top: 16px;
    text-align: left;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}
.btn-details:hover { gap: 8px; }

/* --- RÜCKSEITE --- */
.card-back {
    transform: rotateY(180deg); /* Standardmäßig gedreht */
    display: flex;
    flex-direction: column;
    background-color: #0F0E0C;
    border: 1px solid rgba(249, 115, 22, 0.3); /* Etwas heller beim Flip */
}

.details-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    overflow-y: auto; /* Scrollbar falls zu viel Text */
    
    /* Scrollbar Styling (dünn & orange) */
    scrollbar-width: thin;
    scrollbar-color: var(--primary-orange) #2a1b12;
}
.details-list::-webkit-scrollbar { width: 4px; }
.details-list::-webkit-scrollbar-track { background: #2a1b12; }
.details-list::-webkit-scrollbar-thumb { background: var(--primary-orange); border-radius: 4px; }

.details-list li {
    font-size: 0.85rem;
    color: #d1d5db;
    margin-bottom: 8px;
    padding-left: 14px;
    position: relative;
}

.details-list li::before {
    content: "•";
    color: var(--primary-orange);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.btn-back {
    background: none;
    border: none;
    color: var(--primary-orange);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0;
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.btn-back:hover { opacity: 0.8; }