.desktop {
    display: none;
}
@media screen and (min-width: 992px) {
    .desktop {
        display: block;
    }
}

.mobile {
    display: none;
}

.tabelle {
	border: none !important;
    border-color: #fff !important;
    border-width: 0px !important;
}

@media screen and (max-width: 991px) {
    .mobile {
        display: block;
    }
}

.button-anleitung_b {
    background-color: #ffcc00;
    color: #000000;
    padding: 10px;
    font-weight: bolder;
    border-radius: 8px;
    transition: all 0.5s ease;
}

.button-anleitung_b:hover {
    background-color: black;
    color: white;
    border-radius: 8px;
}

.button-anleitung {
    background-color: #ffcc00;
    color: #000000;
    padding: 10px;
    font-weight: bolder;
    margin-top: 50px;
    border-radius: 8px;
    transition: all 0.5s ease;
}

.button-anleitung:hover {
    background-color: black;
    color: white;
    border-radius: 8px;
}

.h_75_C {
    font-size: 2rem;
    text-align: center;
    word-break: break-word;
    line-height: 2;
}

.h_75 {
    font-size: 2rem;
    word-break: break-word;
    line-height: 2;
}

.h_75_800 {
    font-size: 2rem;
    font-weight: 800;
    word-break: break-word;
    line-height: 2;
}

.h_75_800_C {
    font-size: 2.25rem;
    font-weight: 800;
    word-break: break-word;
    text-align: center;
    line-height: 2;
}

.lh_15 {
    line-height: 2;
}

.padding_0 {
    padding: 0px;
}

.margin_0 {
    margin: 0px;
}

.p_25_d {
    line-height: 2;
    font-size: 1.5rem;
}

.p_20_d {
    line-height: 2;
    font-size: 1.25rem;
}

.p_25_800 {
    line-height: 2;
    font-size: 1.5rem;
    font-weight: 800;
}

.p_20_800 {
    line-height: 2;
    font-size: 1.25rem;
    font-weight: 800;
}

/* Akkordeon */
.accordion {
display: grid;
gap: 10px;
}
/* Entfernt den Standard-Dreieck-Marker von summary in einigen Browsern */
.acc-summary {
list-style: none;
background-color:#F8F9FA;
border-radius: 8px;
}
.acc-item {
border: 1px solid var(--border);
border-radius: var(--radius);
background: #fff;
overflow: clip; /* verhindert Outline-Überlauf beim Öffnen */
}
/* Kopfzeile */
.acc-summary {
cursor: pointer;
display: flex;
align-items: center;
gap: 12px;
padding: 14px 16px;
font-weight: 600;
position: relative;
user-select: none;
}
/* Fokus-styles für Tastaturbedienung */
.acc-summary:focus {
outline: none;
}
.acc-summary:focus-visible {
box-shadow: 0 0 0 3px rgba(255, 217, 0, 0.35) inset;
}
/* Pfeil-Icon (CSS) rechts */
.acc-summary::before {
content: "?";
font-weight:800;
width: 40px;
height: 40px;
transform: rotateY(0deg);
transition: transform .5s ease;
line-height:1;
padding:10px;
border-radius: 4px;
border-style: solid;
border-width: 1px;
text-align: center;
}
/* gedrehter Pfeil wenn geöffnet */
.acc-item[open] > .acc-summary::before {
transform: rotateY(180deg);
border-color: var(--accent);
color:#fff;
background-color: #000;
padding:10px;
border-style: none;
content: "!";
}
/* Panel-Inhalt */
.acc-panel {
padding: 0 16px 16px;
color: var(--fg);
border-top: 1px solid var(--border);
/* sanfter "auf/zu"-Effekt */
display: grid;
grid-template-rows: 1fr;
animation: acc-open .25s ease;
}
/* Optional: leichte Hover-Interaktion */
.acc-summary:hover {
background: #ffcc00;
transition: all .5s ease; /* sehr helles Grau/Blau */
}
/* Animation beim Öffnen */
@keyframes acc-open {
from { opacity: 0; transform: translateY(-2px); }
to   { opacity: 1; transform: translateY(0); }
}
/* Reduziere Bewegung, falls vom User gewünscht */
@media (prefers-reduced-motion: reduce) {
.acc-summary::after { transition: none; }
.acc-panel { animation: none; }
}
.foot-hover {
    color: #cbcbcb;
    transition: all 0.5s ease;
}

.foot-hover:hover {
    color: #ffcc00;
}

.precision-header {
    padding: 60px 0;
    position: relative;
}

.pre-title {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: block;
}

.precision-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 400;
    line-height: 0.9;
    margin-bottom: 30px;
    letter-spacing: -0.04em;
}

.precision-title span {
    display: block;
    font-weight: 800;
    font-style: italic;
}

.precision-lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 450px;
    margin-bottom: 40px;
}

.stat-row {
    display: flex;
    gap: 40px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.stat-item h3 {
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.visual-column {
    position: relative;
    background: #f9f9f9;
    border-radius: 30px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-quote {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    max-width: 280px;
    z-index: 10;
}

.floating-quote p {
    font-size: 14px;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 0;
    color: #444;
}