/* 
  🚀 DREHMOMENT DIGITAL — BUCKET 05: SECTIONS
  Die großen Blöcke der Website (Hero, Footer, Header-Layout).
*/

/* HEADER */
.site-header {
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background-color: #0c0e12; /* Solides Anthrazit, kein Glass-Morphismus mehr! */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px; /* Massive Verbreiterung für mehr Entspannung im Header */
    margin: 0 auto;
    padding: 0.8rem 2rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 6rem; /* Verdoppelter Abstand, Button rückt massiv nach links */
}

.logo-container {
    height: auto;
    display: flex;
    align-items: center;
}

.header-logo-img {
    height: 90px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    display: block;
    filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.4)); /* Sanftes weißes Glühen für Lesbarkeit */
    opacity: 1;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7); /* Helles Grau passend zum dunklen Header */
    font-weight: 600;
    font-size: 1.05rem;
    transition: color var(--transition-fast), text-shadow var(--transition-fast);
}

.nav-links a:hover {
    color: #fff;
}

/* Uwe Hoffmann Glow für aktiven Punkt */
.nav-links a.active, .dropdown-trigger.active {
    color: var(--accent-orange) !important;
    text-shadow: 0 0 15px rgba(232, 84, 10, 0.6);
}

/* DROPDOWN MENU */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 1.5rem 0; /* Vergrößerte Hover-Fläche für nahtlosen Übergang */
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px); /* Startet leicht nach unten versetzt */
    background: #0c0e12; /* Exakt gleiche Farbe wie der Header! */
    border: 1px solid rgba(255,255,255,0.05);
    border-top: 2px solid var(--accent-orange); /* Kleines orangefarbenes Highlight oben */
    border-radius: 0 0 12px 12px; /* Nur unten abgerundet für homogenen Look */
    padding: 0.8rem 0.5rem;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); /* Seidenweiche Slide-Down Animation */
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0); /* Gleitet elegant an seinen Platz */
}
.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.2rem;
    color: #94A3B8 !important;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    text-shadow: none !important;
    text-align: left;
    transition: all 0.2s ease;
}
.dropdown-menu a:hover {
    background: rgba(255,255,255,0.03);
    color: #fff !important;
    padding-left: 1.5rem; /* Sanfter Hover-Slide nach rechts */
}
.dropdown-menu a.active {
    color: var(--accent-orange) !important;
    background: rgba(232,84,10,0.05);
}

.cta-nav .btn-primary {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    transition: var(--transition-fast);
}

.mobile-nav-toggle span {
    width: 100%;
    height: 2px;
    background-color: #ffffff; /* Weiß für dunklen Header */
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-nav-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(10px); }
.mobile-nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


/* HERO */
/* HERO */
.hero-section {
    position: relative;
    padding-top: 10rem;
    padding-bottom: 8rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--panel-dark);
}

.hero-bg-wrapper {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
}

.hero-bg-wrapper img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.85) 55%, rgba(15, 23, 42, 0.2) 100%);
}

.hero-content-container {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: block;
    max-width: 750px; /* Konzentration auf die linke Seite */
}

.hero-colored-logo {
    height: 150px;
    margin-bottom: 2.5rem;
    display: block;
}

.hero-subtitle {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent-orange);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-grid h1 {
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-lead {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.btn-large {
    font-size: 1.05rem;
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
}

.hero-or-text {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.direct-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    font-size: 1.3rem;
    transition: color 0.2s;
}

.direct-contact-link:hover {
    color: var(--accent-orange);
}

/* WARUM WIR LEISTE (ZENTRIERT & KOMPAKT) */
.warum-leiste-centered {
    background-color: var(--panel-dark);
    padding: 3rem 0;
    position: relative;
    z-index: 10;
    margin-top: -4rem; /* Ragt in die Hero-Sektion rein */
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 -15px 40px rgba(0,0,0,0.5); /* Tiefe über dem Hero-Bild */
    border-radius: 16px 16px 0 0; /* Runde Ecken oben */
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.warum-kicker {
    color: var(--accent-orange);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.warum-heading {
    color: #fff;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.warum-lead {
    color: #94A3B8;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.warum-stats-centered {
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #94a3b8;
    font-size: 0.95rem;
}

/* ================== ZIELGRUPPEN (TARGET CARDS) ================== */
.target-stack {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.target-card {
    display: flex;
    flex-direction: row;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    min-height: 40vh; /* Reduced to make them wider/slimmer */
    align-items: stretch;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.target-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    border-color: rgba(232, 84, 10, 0.3);
}

.target-card.target-reverse {
    flex-direction: row-reverse;
}

.target-card-img {
    flex: 1;
    position: relative;
    min-height: 100%; /* Adapts to content naturally */
    overflow: hidden;
}

.target-card-img img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.target-img-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.25);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 1;
    pointer-events: none;
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.target-card:hover .target-card-img img {
    transform: scale(1.05);
}

.target-card:hover .target-img-overlay {
    background: rgba(15, 23, 42, 0.15);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

.target-card-content {
    flex: 1;
    padding: 3rem 4rem; /* Reduced from 4rem 5rem */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.target-card-content h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.target-card-content p {
    color: #94A3B8;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 1.5rem; /* Reduced */
}

.target-list {
    list-style: none;
    padding: 0; margin: 0 0 1.5rem 0; /* Reduced */
}

.target-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem; /* Reduced */
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.5;
}

.target-list li::before {
    content: '✓';
    position: absolute;
    left: 0; top: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

/* Responsive Target Cards */
@media (max-width: 992px) {
    .target-card, .target-card.target-reverse {
        flex-direction: column;
    }
    .target-card-content {
        padding: 3rem 2rem;
    }
    .target-card-img {
        min-height: 300px;
    }
}

.stat-item-centered {
    display: flex;
    flex-direction: column;
}

.stat-num-centered {
    color: var(--accent-orange);
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0px 0px 8px rgba(232, 84, 10, 0.3));
}

.stat-label-centered {
    color: #E2E8F0;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* KONTROLLE & POSITIONIERUNG (Folie 3) */
.kontrolle-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 4rem;
    align-items: center;
}

.kontrolle-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.k-feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.k-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

/* MISCHBETRIEB: Echte 2-Säulen Optik */
.pillars-container {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
}
.pillar-box {
    flex: 1;
    background: #1e293b;
    border-radius: 20px;
    padding: 4rem 3rem;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, border-color 0.4s ease;
}
.pillar-box:hover {
    transform: translateY(-8px);
    border-color: rgba(232,84,10,0.3);
}
.pillar-box.trade {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
}
.pillar-box.workshop {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
}
.pillar-icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(232,84,10,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    margin-bottom: 2rem;
    border: 1px solid rgba(232,84,10,0.2);
}
.pillar-box h3 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}
.pillar-box p {
    color: #94A3B8;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

/* Funktionale Features (Pascha/Paasen Style) */
.functional-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.func-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255,255,255,0.03);
    padding: 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.03);
}
.func-icon {
    color: var(--accent-orange);
    flex-shrink: 0;
    margin-top: 3px;
}
.func-text h4 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}
.func-text p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 0 !important;
    line-height: 1.5 !important;
}

/* Unabhängigkeits-Feature-Box */
.independence-box {
    background: var(--panel-dark);
    border-radius: 24px;
    padding: 5rem 4rem;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 4rem;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.05);
}
.independence-box::before {
    content: '';
    position: absolute;
    top: 0; right: 0; width: 50%; height: 100%;
    background: radial-gradient(circle at 100% 50%, rgba(232,84,10,0.08) 0%, transparent 70%);
}
.independence-box .func-text p {
    color: #cbd5e1 !important; /* Deutlich helleres Grau für starken Kontrast */
    font-size: 1.05rem !important; /* Größer für bessere Lesbarkeit */
    line-height: 1.6 !important;
}

.k-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.k-text h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    color: var(--text-main);
}

.k-text p {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.kontrolle-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 4px solid #fff;
}

.kontrolle-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30, 41, 59, 0.45); /* Anthrazit-Glas */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: none;
    z-index: 2;
}

.kontrolle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/5;
}



/* BENTO GRID (Lösung) */
.system-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 1.5rem;
    margin-top: 4rem;
}

/* Base Card Style for Automotive Bento */
.system-card {
    background: var(--bg-surface);
    padding: 3rem 2.5rem;
    border-radius: 12px; /* Etwas kantiger, maskuliner als Apple */
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1; /* For overlay stacking */
}

.bento-bg-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Bild zoomt ganz leicht mit beim Hover für noch mehr Tiefe */
.system-card:hover .bento-bg-image {
    transform: scale(1.05);
}

.bento-glass-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    pointer-events: none;
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.bento-glass-dark {
    background: rgba(15, 23, 42, 0.80);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.bento-glass-light {
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.bento-glass-orange {
    background: rgba(232, 84, 10, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Hover-Effekte: Karte wird größer, oranger Glow, Glas wird klarer */
.system-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(232, 84, 10, 0.35);
    border-color: rgba(232, 84, 10, 0.3);
}

.system-card:hover .bento-glass-dark {
    background: rgba(15, 23, 42, 0.65);
}
.system-card:hover .bento-glass-light {
    background: rgba(255, 255, 255, 0.65);
}
.system-card:hover .bento-glass-orange {
    background: rgba(232, 84, 10, 0.60);
}

.system-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #0f172a;
    line-height: 1.3;
}

.system-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.card-badge {
    position: static !important; /* Override absolute positioning */
    align-self: flex-start;
    background: rgba(232, 84, 10, 0.1);
    color: var(--accent-orange);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Bento Card 1: Fundament (Large feature, dark metallic vibe) */
.system-card.bento-hero {
    grid-column: span 2;
    grid-row: span 2;
    background: transparent; 
    color: #fff;
    border: none;
    justify-content: flex-end; /* Content am Boden */
}
.system-card.bento-hero h3 { color: #fff; font-size: 2.2rem; }
.system-card.bento-hero p { color: #94A3B8; font-size: 1.15rem; }
.system-card.bento-hero .card-badge { background: rgba(255, 255, 255, 0.1); color: #fff; }

/* Bento Card 2 & 3: Standard Square */
.system-card.bento-square-1, .system-card.bento-square-2 {
    grid-column: span 1;
    grid-row: span 1;
    background: transparent;
}

/* Bento Card 4: Sicherheit (Wide, subtle orange tint) */
.system-card.bento-wide-1 {
    grid-column: span 2;
    grid-row: span 1;
    background: transparent;
    border: none;
    color: #fff;
}
.system-card.bento-wide-1 h3, .system-card.bento-wide-1 p { color: #fff; }
.system-card.bento-wide-1 .card-badge { background: rgba(255, 255, 255, 0.2); color: #fff; }

/* Bento Card 5 & 6: Bottom Row */
.system-card.bento-square-3 { grid-column: span 2; grid-row: span 1; background: transparent; }
.system-card.bento-wide-2 { grid-column: span 2; grid-row: span 1; background: transparent; }




/* TIMELINE ACCORDION */
.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 6px;
    background: linear-gradient(to bottom, rgba(232, 84, 10, 0.1), var(--accent-orange), var(--accent-orange), rgba(232, 84, 10, 0.1));
    transform: translateX(-50%);
    border-radius: 6px;
}

.timeline-step {
    position: relative;
    width: 100%;
    display: flex;
    margin-bottom: 2rem;
}

.timeline-step.step-left { justify-content: flex-start; }
.timeline-step.step-right { justify-content: flex-end; }

.timeline-node {
    position: absolute;
    left: 50%; top: 5px;
    transform: translateX(-50%);
    width: 80px; height: 80px;
    background: #fff;
    border: 5px solid var(--accent-orange);
    color: var(--accent-orange);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; font-weight: 900; font-family: var(--font-mono);
    z-index: 2;
    box-shadow: 0 0 30px rgba(232, 84, 10, 0.6); /* Verstärkter oranger Glow */
}

.timeline-content-acc {
    width: 45%;
    background: #faf8f5; /* Wärmeres Off-Weiß statt blendenem grellem Weiß */
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-content-acc:hover,
.timeline-content-acc[open] {
    box-shadow: 0 15px 40px rgba(232, 84, 10, 0.15);
    border-color: rgba(232, 84, 10, 0.4);
    transform: translateY(-5px);
}

.timeline-step.step-left .timeline-content-acc::after {
    content: '';
    position: absolute;
    right: -10px; top: 40px;
    border-width: 10px 0 10px 10px;
    border-style: solid;
    border-color: transparent transparent transparent #faf8f5;
    filter: drop-shadow(2px 0 2px rgba(0,0,0,0.02));
}

.timeline-step.step-right .timeline-content-acc::after {
    content: '';
    position: absolute;
    left: -10px; top: 40px;
    border-width: 10px 10px 10px 0;
    border-style: solid;
    border-color: transparent #faf8f5 transparent transparent;
    filter: drop-shadow(-2px 0 2px rgba(0,0,0,0.02));
}

.timeline-summary {
    padding: 2rem;
    cursor: pointer; list-style: none; position: relative; user-select: none;
}
.timeline-summary::-webkit-details-marker { display: none; }

.timeline-summary h3 {
    font-size: 1.6rem; color: #1e293b; margin-bottom: 0.5rem;
}
.timeline-summary p {
    color: #64748b; font-size: 1.2rem; margin-bottom: 1rem; line-height: 1.5;
}

.timeline-expand-hint {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: linear-gradient(to right, #94a3b8, rgba(255,255,255,0));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic; font-weight: 600; font-size: 1.05rem;
    transition: all 0.3s ease;
}
.timeline-summary:hover .timeline-expand-hint {
    background: var(--accent-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.timeline-expand-hint svg {
    transition: transform 0.3s ease;
    color: #94a3b8;
}
.timeline-summary:hover .timeline-expand-hint svg {
    color: var(--accent-orange);
}
.timeline-content-acc[open] .timeline-expand-hint svg {
    transform: rotate(180deg);
}

.timeline-details {
    padding: 0 2rem 2rem 2rem;
    animation: acc-slide-down 0.3s ease-out;
}
@keyframes acc-slide-down {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.timeline-details ul { list-style: none; padding: 0; margin: 0; }
.timeline-details li {
    position: relative; padding-left: 1.5rem; margin-bottom: 0.8rem;
    color: #475569; line-height: 1.6; font-size: 1.15rem;
}
.timeline-details li::before {
    content: '→'; position: absolute; left: 0; top: 0;
    color: var(--accent-orange); font-weight: bold;
}

/* HORIZONTAL TIMELINE (Speziell für Neueinsteiger) */
.timeline-hz-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto 60px auto;
    row-gap: 2rem;
    column-gap: 3rem; /* Etwas breiterer Abstand */
    position: relative;
    max-width: 1400px; /* Deutlich breiter */
    margin: 4rem auto;
    padding: 0 2rem;
    align-items: center;
}

.timeline-hz-line {
    grid-column: 1 / -1;
    grid-row: 2;
    height: 6px;
    background: linear-gradient(to right, rgba(232, 84, 10, 0.1), var(--accent-orange), var(--accent-orange));
    border-radius: 6px;
    position: relative;
    z-index: 1;
}
.timeline-hz-line::after {
    content: '';
    position: absolute;
    right: -2px; top: 50%;
    transform: translateY(-50%);
    border-width: 10px 0 10px 15px;
    border-style: solid;
    border-color: transparent transparent transparent var(--accent-orange);
}

.timeline-hz-node {
    grid-row: 2;
    width: 60px; height: 60px;
    background: #fff;
    border: 4px solid var(--accent-orange);
    color: var(--accent-orange);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; font-weight: 900; font-family: var(--font-mono);
    box-shadow: 0 6px 20px rgba(232, 84, 10, 0.3);
    justify-self: center;
    z-index: 2;
}
.timeline-hz-node-1 { grid-column: 1; }
.timeline-hz-node-2 { grid-column: 2; }
.timeline-hz-node-3 { grid-column: 3; }

.timeline-hz-content {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.timeline-hz-content[open], .timeline-hz-content:hover {
    box-shadow: 0 15px 40px rgba(232, 84, 10, 0.15);
    border-color: rgba(232, 84, 10, 0.4);
    transform: translateY(-5px);
}

.timeline-hz-content-1 { grid-column: 1; grid-row: 1; align-self: end; }
.timeline-hz-content-2 { grid-column: 2; grid-row: 3; align-self: start; }
.timeline-hz-content-3 { grid-column: 3; grid-row: 1; align-self: end; }

/* Arrows pointing to line */
.timeline-hz-content-1::after,
.timeline-hz-content-3::after {
    content: '';
    position: absolute;
    bottom: -10px; left: 50%;
    transform: translateX(-50%);
    border-width: 10px 10px 0 10px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.02));
}
.timeline-hz-content-2::after {
    content: '';
    position: absolute;
    top: -10px; left: 50%;
    transform: translateX(-50%);
    border-width: 0 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
    filter: drop-shadow(0 -2px 2px rgba(0,0,0,0.02));
}

/* Flexibles System für abweichende Timelines (z.B. Übernahme) */
.timeline-hz-content-top { grid-row: 1; align-self: end; }
.timeline-hz-content-bottom { grid-row: 3; align-self: start; }

.timeline-hz-content-top::after {
    content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
    border-width: 10px 10px 0 10px; border-style: solid; border-color: #fff transparent transparent transparent;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.02));
}
.timeline-hz-content-bottom::after {
    content: ''; position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
    border-width: 0 10px 10px 10px; border-style: solid; border-color: transparent transparent #fff transparent;
    filter: drop-shadow(0 -2px 2px rgba(0,0,0,0.02));
}

/* JOURNEY THEME (Schwungvolle Neugründer-Timeline) */
.timeline-hz-container.journey-theme {
    max-width: 100vw;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 0 5vw;
    grid-template-rows: auto 140px auto; /* Mehr Platz für den Schwung */
}

.timeline-hz-container.journey-theme .timeline-hz-line {
    display: none; /* Normale gerade Linie ausblenden */
}

.journey-wave-container {
    grid-column: 1 / -1;
    grid-row: 2;
    position: relative;
    width: 100%;
    height: 100%;
    align-self: center;
    z-index: 1;
}

.journey-wave {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    overflow: visible;
}

/* Knotenpunkte an die Kurve anpassen */
.timeline-hz-container.journey-theme .timeline-hz-node-1 {
    transform: translateY(-30px);
}
.timeline-hz-container.journey-theme .timeline-hz-node-3 {
    transform: translateY(30px);
}


/* CONTACT GRID & FOOTER LOGO */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
}

.contact-info { padding-top: 2rem; }
.contact-method { margin-bottom: 2rem; }
.contact-method h4 {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-orange);
    margin-bottom: 0.8rem;
}
.contact-method a {
    color: #fff;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 800;
    transition: all 0.3s ease;
}
.contact-method a:hover { color: var(--accent-orange); }

.contact-form {
    background: #fff;
    padding: 2.5rem 3rem; /* Further reduced */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: #111;
}

.footer-logo {
    filter: brightness(0) invert(1) contrast(1.5) !important;
    display: inline-block;
}

/* FOOTER NEU */
.site-footer {
    background: #0c0e12; /* Dunkleres Anthrazit, kein reines Schwarz */
    padding: 6rem 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    color: #94A3B8;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: var(--accent-orange);
}

/* ==========================================================================
   SUBPAGE STYLES (Header, Hero, FAQ, CTA)
   ========================================================================== */

/* Subpage Header (Tunnel) */
.subpage-header {
    background-color: #0c0e12;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #94A3B8;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s, transform 0.2s;
    background: rgba(255,255,255,0.03);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}
.back-btn:hover {
    color: var(--accent-orange);
    transform: translateX(-3px);
    background: rgba(255,255,255,0.06);
}
.back-btn svg {
    width: 16px;
    height: 16px;
}

/* Subpage Typography Hero (70/30) */
.subpage-hero {
    padding-top: 10rem;
    padding-bottom: 5rem;
    background-color: var(--panel-dark);
}
.subpage-hero-grid {
    display: grid;
    grid-template-columns: 3fr 7fr; /* Echtes 30/70 Layout */
    gap: 4rem;
    align-items: center;
}
.subpage-hero-grid.hero-reverse {
    grid-template-columns: 7fr 3fr; /* Text 70, Bild 30 */
}
.subpage-hero-text {
    text-align: left;
    order: 2;
}
.subpage-hero-grid.hero-reverse .subpage-hero-text {
    order: 1;
}
.subpage-hero-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden; /* Für das Bild */
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    aspect-ratio: 4/5;
    order: 1;
}
.subpage-hero-grid.hero-reverse .subpage-hero-visual {
    order: 2;
}
.subpage-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.subpage-hero-glass {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 14, 18, 0.9) 0%, rgba(12, 14, 18, 0.4) 100%);
    backdrop-filter: blur(3px); /* Leichter Blur über dem Bild */
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    pointer-events: none;
}
.subpage-kicker {
    color: var(--accent-orange);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
}
.subpage-hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}
.subpage-hero-text p.lead {
    font-size: 1.25rem;
    color: #94A3B8;
    line-height: 1.6;
}

/* FAQ Accordion Modul */
.faq-section {
    padding: 6rem 0;
    background-color: var(--bg-surface);
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}
.faq-item:hover, .faq-item[open] {
    box-shadow: 0 10px 30px rgba(232, 84, 10, 0.08);
    border-color: rgba(232, 84, 10, 0.3);
}
.faq-summary {
    padding: 1.5rem 2rem;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    font-size: 1.2rem;
    color: #1e293b;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-icon {
    color: var(--accent-orange);
    transition: transform 0.3s ease;
}
.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}
.faq-content {
    padding: 0 2rem 1.5rem 2rem;
    color: #64748b;
    line-height: 1.6;
    font-size: 1.05rem;
    animation: acc-slide-down 0.3s ease-out;
}

/* Target CTA */
.subpage-cta {
    background-color: var(--panel-dark);
    padding: 3.5rem 0; /* Deutlich flacher gemacht (50% Viewport-Ziel) */
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.subpage-cta-inner {
    max-width: 900px;
    margin: 0 auto;
}
.subpage-cta h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem); /* Etwas kleiner für weniger Höhe */
    margin-bottom: 0.8rem;
    line-height: 1.2;
}
.subpage-cta p {
    color: #94A3B8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Subpage CTA Profiles (Die 3 Mini-Buttons unten) */
.cta-profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px dashed rgba(255,255,255,0.1);
}
.cta-profile-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 1.8rem; /* Größerer Innenabstand */
    border-radius: 12px;
    text-align: left;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cta-profile-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: var(--accent-orange);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(232,84,10,0.1);
}
.cta-profile-card h4 {
    color: var(--accent-orange);
    margin-bottom: 0.8rem;
    font-size: 1.2rem; /* Größere Schrift */
    font-weight: 800;
}
.cta-profile-card p {
    color: #cbd5e1; /* Hellerer Text für bessere Lesbarkeit */
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Subpage Comparison Grid (Rot/Grün) */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}
.comparison-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.comparison-card.bad {
    border-top: 4px solid #ef4444; /* red */
}
.comparison-card.good {
    border-top: 4px solid #10b981; /* green */
}
.comp-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}
.comp-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: #475569;
    line-height: 1.5;
}
.comp-list.bad-list li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}
.comp-list.good-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* ==========================================================================
   PERSÖNLICHKEIT BOX & HERO BADGE (DEEP-DIVE)
   ========================================================================== */
.personality-box {
    background: #1e293b;
    border-radius: 16px;
    padding: 4rem;
    margin-bottom: 8rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.personality-glow {
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50%;
    height: 150%;
    background: radial-gradient(circle, rgba(232,84,10,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.personality-text {
    flex: 1.2;
    position: relative;
    z-index: 2;
}
.personality-kicker {
    color: var(--accent-orange);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}
.personality-text h3 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin: 1rem 0;
    font-weight: 900;
    line-height: 1.2;
}
.personality-text p {
    color: #cbd5e1;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.personality-quote {
    flex: 0.8;
    text-align: center;
    position: relative;
    z-index: 2;
}
.personality-quote div {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: rgba(255,255,255,0.1);
    font-weight: 900;
    line-height: 1.2;
    font-family: var(--font-heading);
}

.subpage-hero-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(12, 14, 18, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.badge-dot {
    display: block;
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 12px #10b981;
}
.badge-text {
    color: #fff;
    font-family: var(--font-mono);
    font-size: 0.95rem;
    letter-spacing: 1.5px;
}

/* ==========================================================================
   MIETWERKSTATT SUBPAGE CSS (Refactored inline styles)
   ========================================================================== */
.feature-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto 8rem auto;
    gap: 2rem;
}

.dashboard-mockup-section {
    margin-bottom: 8rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   UEBERNAHME SUBPAGE CSS (Refactored inline styles)
   ========================================================================== */
.generation-box {
    background: var(--panel-dark);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
}

.node-offset-up {
    transform: translateY(-42px);
}
.node-offset-down {
    transform: translateY(42px);
}

/* ==========================================================================
   DESKTOP-FIRST MEDIA QUERIES (Wird im nächsten Schritt auf Mobile-First umgebaut)
   ========================================================================== */
@media (max-width: 968px) {
    body.nav-open { overflow: hidden; }
    .container { padding: 0 1.5rem; }
    .section-padding { padding: 5rem 0; }
    
    .site-header { padding: 0; }
    .header-inner {
        padding: 0.6rem 1.5rem;
        background: transparent;
        border: none;
    }
    .logo-container {
        height: auto;
    }
    .header-logo-img { height: 60px; }
    .mobile-nav-toggle { display: flex; }
    .cta-nav { display: none; }
    
    .nav-links {
        position: fixed;
        top: 0; right: 0;
        width: 100%; height: 100vh;
        background: rgba(28, 31, 38, 0.98); /* Dunkel passend zum Header */
        backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        z-index: 1001;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        padding: 2rem;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }
    .nav-links.active { transform: translateX(0); }
    .nav-links a {
        font-size: 1.8rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    
    .nav-dropdown {
        height: auto;
        padding: 0;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .nav-dropdown > a {
        margin-bottom: 0;
    }
    .dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        min-width: auto;
    }
    .dropdown-menu a {
        font-size: 1.2rem;
        padding: 0;
        color: #94A3B8 !important;
        text-align: center;
    }
    .dropdown-menu a:hover {
        background: transparent;
        padding-left: 0;
        color: #fff !important;
    }
    
    .hero-bg-overlay {
        background: rgba(15, 23, 42, 0.85); /* Dunkler auf Mobile für absolute Lesbarkeit */
    }
    .hero-colored-logo {
        margin: 0 auto 2rem auto;
        height: 100px;
    }
    .hero-grid {
        text-align: center;
        padding-top: 4rem;
    }
    .hero-grid h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
    .hero-cta-group { justify-content: center; }
    
    .warum-stats-centered {
        gap: 2rem;
        flex-direction: column;
        padding-top: 2rem;
    }
    
    .system-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    .system-card.bento-hero,
    .system-card.bento-square-1,
    .system-card.bento-square-2,
    .system-card.bento-wide-1,
    .system-card.bento-square-3,
    .system-card.bento-wide-2 {
        grid-column: span 1;
        grid-row: auto;
    }

    .kontrolle-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .timeline-line { left: 30px; transform: none; }
    .timeline-node { left: 0; transform: none; width: 60px; height: 60px; font-size: 1.8rem; top: 10px; border-width: 4px; }
    .timeline-step.step-left, .timeline-step.step-right { justify-content: flex-end; }
    .timeline-content-acc { width: calc(100% - 80px); }
    .timeline-summary { padding: 1.5rem; }
    .timeline-details { padding: 0 1.5rem 1.5rem 1.5rem; }
    
    .timeline-step.step-left .timeline-content-acc::after,
    .timeline-step.step-right .timeline-content-acc::after {
        left: -10px; right: auto;
        border-width: 10px 10px 10px 0;
        border-color: transparent #fff transparent transparent;
        top: 30px;
        filter: drop-shadow(-2px 0 2px rgba(0,0,0,0.02));
    }
    .contact-info h2 { font-size: 2.8rem !important; }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    /* Mobile für neue Subpage Elemente & Bugfixes */
    .subpage-hero-grid,
    .subpage-hero-grid.hero-reverse {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .subpage-hero-text {
        order: 1;
        text-align: center;
    }
    .subpage-hero-visual {
        order: 2;
        aspect-ratio: 4/3; /* Verhindert winzige oder extrem hohe Bilder auf Mobile */
        width: 100%;
        height: auto;
    }
    
    /* Vorher-Nachher Vergleich Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: left;
    }
    
    .footer-col {
        padding-right: 0 !important;
    }

    .footer-col ul {
        display: block;
        text-align: left;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    .comparison-card {
        padding: 1.8rem; /* Reduzierter Whitespace auf Mobile */
    }

    /* Feature Items Mobile (Die 3 Boxen unter dem Hero) */
    .k-feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem 1rem;
        gap: 1rem;
        height: auto;
    }

    /* Persönlichkeit Box Mobile */
    .personality-box {
        flex-direction: column;
        padding: 2.5rem 1.5rem;
        gap: 2.5rem;
        text-align: center;
        margin-bottom: 4rem;
    }
    .personality-glow {
        top: 50%;
        right: 50%;
        transform: translate(50%, -50%);
        width: 150%;
    }
    .personality-text h3 {
        font-size: 2rem;
    }
    .personality-quote div {
        font-size: 2.5rem;
    }

    /* Subpage Hero Badge Mobile */
    .subpage-hero-badge {
        position: static;
        margin: 2rem auto 0 auto;
    }
    
    /* Mietwerkstatt Mobile Overrides */
    .feature-grid-6 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 4rem;
    }
    .dashboard-mockup-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }
    
    /* Uebernahme Mobile Overrides */
    .generation-box {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    /* Target CTA Profiles Mobile */
    .cta-profiles-grid {
        grid-template-columns: 1fr;
    }

    .timeline-hz-container {
        grid-template-columns: 60px 1fr;
        grid-template-rows: auto;
        row-gap: 2rem;
        column-gap: 1.5rem;
        position: relative !important;
    }
    .timeline-hz-line {
        position: absolute !important;
        top: 2rem !important;
        bottom: 2rem !important;
        left: 25px !important;
        width: 10px !important;
        height: auto !important;
        grid-column: unset !important;
        grid-row: unset !important;
        background-color: transparent !important;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 40' preserveAspectRatio='none'%3E%3Cpath d='M 5 0 Q 10 10 5 20 T 5 40' fill='none' stroke='%23e8540a' stroke-width='2' stroke-dasharray='4,4'/%3E%3C/svg%3E") !important;
        background-repeat: repeat-y !important;
        background-size: 100% 40px !important;
        border: none !important;
    }
    .timeline-hz-line::after {
        display: none !important;
    }
    .timeline-hz-node-1 { grid-column: 1; grid-row: 1; }
    .timeline-hz-node-2 { grid-column: 1; grid-row: 2; }
    .timeline-hz-node-3 { grid-column: 1; grid-row: 3; }
    
    .timeline-hz-content-1 { grid-column: 2; grid-row: 1; align-self: center; }
    .timeline-hz-content-2 { grid-column: 2; grid-row: 2; align-self: center; }
    .timeline-hz-content-3 { grid-column: 2; grid-row: 3; align-self: center; }
    .timeline-hz-content-top { grid-column: 2; grid-row: 1; align-self: center; }
    .timeline-hz-content-bottom { grid-column: 2; grid-row: 3; align-self: center; }
    
    .timeline-hz-content-1::after,
    .timeline-hz-content-2::after,
    .timeline-hz-content-3::after,
    .timeline-hz-content-top::after,
    .timeline-hz-content-bottom::after {
        display: none !important;
    }
    
    .timeline-hz-node {
        transform: none !important;
        grid-column: 1 !important; /* Force all nodes to left column on mobile */
    }
    .node-offset-up, .node-offset-down {
        transform: none !important;
    }
    
    .timeline-hz-content {
        grid-column: 2 !important; /* Force all contents to right column on mobile */
    }
    
    .mob-row-1 { grid-row: 1 !important; }
    .mob-row-2 { grid-row: 2 !important; }
    .mob-row-3 { grid-row: 3 !important; }
    
    /* Journey Theme Mobile Fallback */
    .timeline-hz-container.journey-theme {
        width: 100%; max-width: 100%; margin-left: 0; margin-right: 0; padding: 0;
        grid-template-rows: auto;
    }
    .journey-wave-container { display: none; }
    .timeline-hz-container.journey-theme .timeline-hz-line { 
        display: block; 
    }
    .timeline-hz-container.journey-theme .timeline-hz-node-1,
    .timeline-hz-container.journey-theme .timeline-hz-node-3 {
        transform: none;
    }

    .launchpad-grid { grid-template-columns: 1fr; }
    .pillars-container { flex-direction: column; gap: 2rem; }
    .independence-box { flex-direction: column; padding: 3rem 2rem; }
    .dashboard-grid { grid-template-columns: 1fr; }
}
