/* CLAUDE: Technologie-Beratung Landing Page Styles */
/* CLAUDE: Datei: assets/css/page-technologie-beratung.css */
/* CLAUDE: Anpassen: Farben über CSS-Variablen in base.css */

/* ==========================================================================
   CLAUDE: 1. Hero Section - Technologie-Beratung spezifisch
   CLAUDE: Mit animiertem Hintergrund (Partikel + Grid)
   CLAUDE: Blau-orientierter Gradient für "strategisch/professionell"
   ========================================================================== */

.pvm-hero--techberatung {
    /* CLAUDE: Blau-orientierter Gradient für Differenzierung */
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a7c 50%, #3a2db0 100%);
    color: var(--pvm-bg-white);
    padding: var(--pvm-space-3xl) 0 var(--pvm-space-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 70vh; /* CLAUDE: Mindesthöhe für Impact */
    display: flex;
    align-items: center;
}

/* CLAUDE: Animierter Hintergrund-Container */
.pvm-hero--techberatung .pvm-hero__bg-animation {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* CLAUDE: Grid-Overlay für Tech-Look */
.pvm-hero--techberatung .pvm-hero__grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

/* CLAUDE: Animierte Partikel (CSS-basiert, kein JS nötig) */
.pvm-hero--techberatung .pvm-hero__particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float-techberatung 20s infinite ease-in-out;
}

.pvm-hero--techberatung .pvm-hero__particle--1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #4a90d9 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.pvm-hero--techberatung .pvm-hero__particle--2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--pvm-secondary) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation-delay: -7s;
}

.pvm-hero--techberatung .pvm-hero__particle--3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #fff 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
    opacity: 0.08;
}

/* CLAUDE: Float-Animation für Partikel */
@keyframes float-techberatung {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-30px) scale(1.05);
    }
    50% {
        transform: translateY(-10px) scale(0.95);
    }
    75% {
        transform: translateY(-20px) scale(1.02);
    }
}

/* CLAUDE: Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .pvm-hero--techberatung .pvm-hero__particle {
        animation: none;
    }
}

/* CLAUDE: Content über Hintergrund */
.pvm-hero--techberatung .content {
    position: relative;
    z-index: 1;
}

/* CLAUDE: Kicker/Trust-Badge */
.pvm-hero--techberatung .pvm-hero-kicker {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: var(--pvm-font-size-sm);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: var(--pvm-space-md);
    border: 1px solid rgba(255, 255, 255, 0.25);
    letter-spacing: 0.02em;
}

/* CLAUDE: H1 mit Text-Shadow für bessere Lesbarkeit */
.pvm-hero--techberatung h1 {
    font-size: var(--pvm-font-size-3xl);
    margin-bottom: var(--pvm-space-sm);
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* CLAUDE: Subline */
.pvm-hero--techberatung .pvm-hero-text {
    font-size: var(--pvm-font-size-lg);
    max-width: 750px;
    margin: 0 auto var(--pvm-space-lg);
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    line-height: 1.6;
}

/* CLAUDE: CTA Container */
.pvm-hero--techberatung .pvm-hero-ctas {
    display: flex;
    gap: var(--pvm-space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* CLAUDE: Primary Button */
.pvm-hero--techberatung .pvm-btn--primary {
    background: #ffffff;
    color: #1e3a5f;
    border: 2px solid #ffffff;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pvm-hero--techberatung .pvm-btn--primary:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* CLAUDE: Secondary/Outline Button */
.pvm-hero--techberatung .pvm-btn--outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pvm-hero--techberatung .pvm-btn--outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================================================================
   CLAUDE: 2. Services Section - Technologie-Beratung
   ========================================================================== */

.pvm-techberatung-services {
    padding: var(--pvm-space-2xl) 0;
    background: var(--pvm-bg-light);
}

.pvm-techberatung-services h2,
.pvm-techberatung-services .pvm-section-subtitle {
    text-align: center;
}

.pvm-techberatung-services .pvm-section-subtitle {
    margin-bottom: var(--pvm-space-xl);
    color: var(--pvm-text-muted);
}

/* CLAUDE: Service Card Technologie-Beratung spezifisch */
/* CLAUDE: overflow:hidden ENTFERNT - verursachte Text-Clipping bei Hover */
.pvm-service-card--techberatung {
    background: var(--pvm-bg-white);
    padding: var(--pvm-space-lg);
    border-radius: 12px;
    border: 1px solid var(--pvm-border);
    transition: all 0.3s ease;
    position: relative;
    display: flex;                    /* CLAUDE: Flexbox für gleichmäßige Höhen */
    flex-direction: column;           /* CLAUDE: Vertikale Anordnung */
}

.pvm-service-card--techberatung::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e3a5f, #3a2db0);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px 12px 0 0;     /* CLAUDE: Ecken anpassen ohne overflow:hidden */
}

.pvm-service-card--techberatung:hover {
    border-color: #2d4a7c;
    box-shadow: 0 8px 32px rgba(30, 58, 95, 0.15);
    transform: translateY(-4px);
}

.pvm-service-card--techberatung:hover::before {
    opacity: 1;
}

.pvm-service-card--techberatung .pvm-service-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--pvm-space-sm);
    color: #2d4a7c;
    border-radius: 50%; /* CLAUDE: Runder Container für Hover-Effekt */
    transition: background 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); /* CLAUDE: Smooth Animation */
}

.pvm-service-card--techberatung .pvm-service-card__icon svg {
    width: 40px;
    height: 40px;
    transition: stroke 0.3s ease; /* CLAUDE: Smooth Farbwechsel */
}

/* ==========================================================================
   CLAUDE: Service Card Icon Hover-Effekt (Technologie-Beratung)
   CLAUDE: Problem: Globale Hover-Styles aus pages.css nutzen lila Gradient
   CLAUDE: Lösung: Eigener blauer Gradient passend zum Seiten-Farbschema
   CLAUDE: Icons wechseln zu weiß für optimalen Kontrast
   ========================================================================== */

/* CLAUDE: Icon-Container Hover - Blauer Gradient statt lila */
/* CLAUDE: color setzt currentColor für SVGs */
.pvm-service-card--techberatung:hover .pvm-service-card__icon {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a7c 100%); /* CLAUDE: Blaues Theme */
    transform: scale(1.1); /* CLAUDE: Leichte Vergrößerung */
    border-radius: 50%; /* CLAUDE: Rund halten */
    color: #ffffff; /* CLAUDE: currentColor für SVGs weiß */
}

.pvm-service-card--techberatung:hover .pvm-service-card__icon svg {
    stroke: #ffffff !important; /* CLAUDE: Weiße Linien - !important überschreibt pages.css */
    color: #ffffff;
}

/* CLAUDE: Alle SVG-Elemente explizit weiß (für komplexere Icons) */
.pvm-service-card--techberatung:hover .pvm-service-card__icon svg path,
.pvm-service-card--techberatung:hover .pvm-service-card__icon svg circle,
.pvm-service-card--techberatung:hover .pvm-service-card__icon svg line,
.pvm-service-card--techberatung:hover .pvm-service-card__icon svg polyline,
.pvm-service-card--techberatung:hover .pvm-service-card__icon svg polygon,
.pvm-service-card--techberatung:hover .pvm-service-card__icon svg rect {
    stroke: #ffffff !important; /* CLAUDE: Weiße Strokes - garantiert */
    fill: none; /* CLAUDE: Kein Fill, nur Stroke */
}

.pvm-service-card--techberatung h3 {
    font-size: var(--pvm-font-size-lg);
    margin-bottom: var(--pvm-space-xs);
    color: #1e3a5f;
}

.pvm-service-card--techberatung > p {
    color: var(--pvm-text-muted);
    margin-bottom: var(--pvm-space-sm);
    line-height: 1.6;
}

.pvm-service-card--techberatung .pvm-service-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto;                 /* CLAUDE: Features nach unten pushen für gleiche Card-Höhen */
}

.pvm-service-card--techberatung .pvm-service-card__features li {
    padding: var(--pvm-space-2xs) 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: var(--pvm-font-size-sm);
    color: var(--pvm-text);
    text-align: left; /* CLAUDE: 2026-01-09 FIX - Verhindert Vererbung von text-align:center vom Parent */
}

.pvm-service-card--techberatung .pvm-service-card__features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #2d4a7c;
    font-weight: 700;
}

/* ==========================================================================
   CLAUDE: 3. Responsive Anpassungen
   ========================================================================== */

@media (max-width: 768px) {
    .pvm-hero--techberatung {
        padding: var(--pvm-space-xl) 0 var(--pvm-space-lg);
        min-height: 60vh;
    }

    .pvm-hero--techberatung h1 {
        font-size: var(--pvm-font-size-2xl);
    }

    .pvm-hero--techberatung .pvm-hero-text {
        font-size: var(--pvm-font-size-base);
    }

    .pvm-hero--techberatung .pvm-hero-kicker {
        font-size: var(--pvm-font-size-xs);
        padding: 0.4rem 1rem;
    }

    .pvm-hero--techberatung .pvm-btn--primary,
    .pvm-hero--techberatung .pvm-btn--outline {
        padding: 0.75rem 1.5rem;
        font-size: var(--pvm-font-size-sm);
        width: 100%;
        text-align: center;
    }

    .pvm-hero--techberatung .pvm-hero-ctas {
        flex-direction: column;
        gap: var(--pvm-space-xs);
    }

    .pvm-hero--techberatung .pvm-hero__particle--1 {
        width: 200px;
        height: 200px;
    }

    .pvm-hero--techberatung .pvm-hero__particle--2 {
        width: 150px;
        height: 150px;
    }

    .pvm-hero--techberatung .pvm-hero__particle--3 {
        width: 100px;
        height: 100px;
    }
}

/* ==========================================================================
   CLAUDE: 4. Dark Mode Support
   CLAUDE: Migriert am 2026-01-09 auf einheitliche Selektoren mit semantischen Tokens
   ========================================================================== */

/* CLAUDE: Manueller Toggle - data-theme="dark" */
html[data-theme="dark"] .pvm-service-card--techberatung {
    background: var(--color-bg-secondary);
    border-color: var(--color-border-primary);
}

html[data-theme="dark"] .pvm-service-card--techberatung h3 {
    color: var(--color-text-primary);
}

html[data-theme="dark"] .pvm-service-card--techberatung > p {
    color: var(--color-text-secondary);
}

html[data-theme="dark"] .pvm-service-card--techberatung .pvm-service-card__features li {
    color: var(--color-text-primary);
}

html[data-theme="dark"] .pvm-service-card--techberatung .pvm-service-card__icon {
    color: #6b9fd9;
}

html[data-theme="dark"] .pvm-service-card--techberatung:hover {
    background: var(--color-bg-tertiary);
    border-color: #4a6fa5;
}

html[data-theme="dark"] .pvm-techberatung-services {
    background: var(--color-bg-primary);
}

/* CLAUDE: System-Präferenz - Fallback */
@media (prefers-color-scheme: dark) {
    html:not([data-theme="light"]) .pvm-service-card--techberatung {
        background: var(--color-bg-secondary);
        border-color: var(--color-border-primary);
    }

    html:not([data-theme="light"]) .pvm-service-card--techberatung h3 {
        color: var(--color-text-primary);
    }

    html:not([data-theme="light"]) .pvm-service-card--techberatung > p {
        color: var(--color-text-secondary);
    }

    html:not([data-theme="light"]) .pvm-service-card--techberatung .pvm-service-card__features li {
        color: var(--color-text-primary);
    }

    html:not([data-theme="light"]) .pvm-service-card--techberatung .pvm-service-card__icon {
        color: #6b9fd9;
    }

    html:not([data-theme="light"]) .pvm-service-card--techberatung:hover {
        background: var(--color-bg-tertiary);
        border-color: #4a6fa5;
    }

    html:not([data-theme="light"]) .pvm-techberatung-services {
        background: var(--color-bg-primary);
    }
}

/* ==========================================================================
   CLAUDE: Split-Layout Override für Technologie-Beratung
   CLAUDE: Transformiert zentriertes Hero zu Split-Layout (Text links, Bild rechts)
   CLAUDE: Behält Animation-Elemente bei, Grid positioniert darüber
   ========================================================================== */

.pvm-hero--techberatung.pvm-hero--split {
    text-align: left;
    padding: var(--pvm-space-2xl) 0 var(--pvm-space-xl);
}

.pvm-hero--techberatung.pvm-hero--split .pvm-hero-ctas {
    justify-content: flex-start;
}

/* CLAUDE: Grid über Animation-Layer positionieren */
.pvm-hero--techberatung.pvm-hero--split .pvm-hero__grid {
    display: grid; /* CLAUDE: Grid-Layout aktivieren */
    grid-template-columns: 1.1fr 0.9fr; /* CLAUDE: 55/45 Text/Bild Aufteilung */
    gap: var(--pvm-space-xl); /* CLAUDE: Abstand zwischen Spalten */
    align-items: center; /* CLAUDE: Vertikale Zentrierung */
    position: relative;
    z-index: 2;
}

/* CLAUDE: Hero-Bild responsive Styling - 2025-01-09 */
.pvm-hero--techberatung.pvm-hero--split .pvm-hero__img {
    width: 100%;
    height: auto;
    display: block; /* CLAUDE: Verhindert Inline-Whitespace */
    border-radius: 12px; /* CLAUDE: Abgerundete Ecken für modernes Design */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); /* CLAUDE: Tiefeneffekt */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* CLAUDE: Hover-Effekt für Hero-Bild */
.pvm-hero--techberatung.pvm-hero--split .pvm-hero__image:hover .pvm-hero__img {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

/* CLAUDE: Tablet-Breakpoint für optimierte Darstellung */
@media (min-width: 769px) and (max-width: 1024px) {
    .pvm-hero--techberatung.pvm-hero--split .pvm-hero__grid {
        grid-template-columns: 1.2fr 0.8fr; /* CLAUDE: Mehr Platz für Text auf Tablet */
        gap: var(--pvm-space-lg);
    }
    .pvm-hero--techberatung h1 {
        font-size: clamp(1.75rem, 1.5rem + 1vw, 2.5rem);
    }
}

/* CLAUDE: Responsive - Stack auf Mobile, zurück zu zentrierter Ansicht */
@media (max-width: 768px) {
    .pvm-hero--techberatung.pvm-hero--split {
        text-align: center;
    }
    .pvm-hero--techberatung.pvm-hero--split .pvm-hero__grid {
        grid-template-columns: 1fr; /* CLAUDE: Single-Column auf Mobile */
        gap: var(--pvm-space-md);
    }
    .pvm-hero--techberatung.pvm-hero--split .pvm-hero__image {
        order: -1; /* CLAUDE: Bild zuerst auf Mobile */
        max-width: 100%;
        margin: 0 auto var(--pvm-space-sm);
    }
    .pvm-hero--techberatung.pvm-hero--split .pvm-hero__content {
        max-width: 100%;
    }
    .pvm-hero--techberatung.pvm-hero--split .pvm-hero-ctas {
        justify-content: center;
    }
}

/* ==========================================================================
   CLAUDE: Grid-Fixes für 4-Spalten Layout - ULTRATHINK RESPONSIVE OPTIMIERT
   CLAUDE: Fluid Grid mit optimalen Breakpoints für alle Viewports
   CLAUDE: align-items: stretch ist Default bei Grid - sorgt für gleiche Höhen
   ========================================================================== */

/* CLAUDE: Services Grid - 4 Spalten auf Desktop (>1200px) */
.pvm-techberatung-services .pvm-services-grid--4col {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--pvm-space-lg);
}

/* CLAUDE: Problems Grid - 4 Spalten auf Desktop mit gleichmäßigen Höhen */
.pvm-problems .pvm-problems__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--pvm-space-lg);
    align-items: stretch;             /* CLAUDE: Explizit - alle Cards gleich hoch */
}

/* CLAUDE: Large Tablet Breakpoint (769px - 1200px): 2x2 Grid */
/* CLAUDE: Optimale Lesbarkeit bei mittleren Viewports */
@media (max-width: 1200px) {
    .pvm-techberatung-services .pvm-services-grid--4col,
    .pvm-problems .pvm-problems__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--pvm-space-md);
    }
}

/* CLAUDE: Small Tablet Breakpoint (481px - 768px): 2 Spalten mit kleinerem Gap */
@media (max-width: 768px) {
    .pvm-techberatung-services .pvm-services-grid--4col,
    .pvm-problems .pvm-problems__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--pvm-space-sm);
    }

    /* CLAUDE: Kompaktere Padding auf Tablets */
    .pvm-problem-card {
        padding: var(--pvm-space-md);
    }

    /* CLAUDE: Kleinerer Icon-Container auf Tablet */
    .pvm-problem-card__icon {
        width: 56px;
        height: 56px;
    }

    .pvm-problem-card__icon svg {
        width: 24px;
        height: 24px;
    }
}

/* CLAUDE: Mobile Breakpoint (≤480px): 1 Spalte für optimale Darstellung */
@media (max-width: 480px) {
    .pvm-techberatung-services .pvm-services-grid--4col,
    .pvm-problems .pvm-problems__grid {
        grid-template-columns: 1fr;
        gap: var(--pvm-space-md);
    }

    /* CLAUDE: Full-width Cards auf Mobile mit mehr Padding */
    .pvm-problem-card {
        padding: var(--pvm-space-md) var(--pvm-space-sm);
    }

    /* CLAUDE: Kleinere Icons auf Mobile */
    .pvm-problem-card__icon {
        width: 52px;
        height: 52px;
        margin-bottom: var(--pvm-space-sm);
    }

    .pvm-problem-card__icon svg {
        width: 22px;
        height: 22px;
    }

    /* CLAUDE: Kompaktere Typografie auf Mobile */
    .pvm-problem-card h3 {
        font-size: var(--pvm-font-size-base);
        margin-bottom: var(--pvm-space-2xs);
    }

    .pvm-problem-card p {
        font-size: var(--pvm-font-size-xs);
        line-height: 1.5;
    }
}

/* ==========================================================================
   CLAUDE: 5. Problem-Cards Section Styling
   CLAUDE: Icons waren unsichtbar weil SVGs stroke="currentColor" nutzen
   CLAUDE: aber kein CSS die Farbe definierte - JETZT GEFIXT
   CLAUDE: Blau-Theme passend zur Seite (#1e3a5f → #2d4a7c)
   ========================================================================== */

/* CLAUDE: Section Container */
.pvm-problems {
    padding: var(--pvm-space-2xl) 0;
    background: var(--pvm-bg-white);
}

.pvm-problems h2 {
    text-align: center;
    margin-bottom: var(--pvm-space-xl);
    color: #1e3a5f;
}

/* CLAUDE: Grid-Container (Spalten in Zeile 480 definiert) */
.pvm-problems__grid {
    display: grid;
    gap: var(--pvm-space-lg);
}

/* CLAUDE: Problem Card Basis - Flexbox für gleichmäßige Höhen */
/* CLAUDE: height:100% + flex sorgen dafür, dass alle Cards in einer Row gleich hoch sind */
.pvm-problem-card {
    background: var(--pvm-bg-light);
    padding: var(--pvm-space-lg);
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--pvm-border);
    transition: all 0.3s ease;
    display: flex;                    /* CLAUDE: Flexbox für vertikale Struktur */
    flex-direction: column;           /* CLAUDE: Icon → Titel → Text vertikal */
    height: 100%;                     /* CLAUDE: Füllt Grid-Cell komplett aus */
}

.pvm-problem-card:hover {
    border-color: #2d4a7c;
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.12);
    transform: translateY(-4px);
}

/* CLAUDE: Icon Container mit blauem Gradient */
.pvm-problem-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--pvm-space-md);
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a7c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* CLAUDE: SVG Icon Styling - KRITISCH für Sichtbarkeit! */
/* CLAUDE: Ohne diese Regel sind die Icons unsichtbar (stroke="currentColor") */
.pvm-problem-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: #ffffff;              /* CLAUDE: Weiße Icons auf blauem Grund */
    stroke-width: 2;
    fill: none;
}

/* CLAUDE: Hover-Effekt für Icon */
.pvm-problem-card:hover .pvm-problem-card__icon {
    background: linear-gradient(135deg, #2d4a7c 0%, #3a2db0 100%);
    transform: scale(1.08);
}

/* CLAUDE: Card Titel */
.pvm-problem-card h3 {
    font-size: var(--pvm-font-size-lg);
    margin-bottom: var(--pvm-space-xs);
    color: #1e3a5f;
    font-weight: 600;
}

/* CLAUDE: Card Text - flex-grow:1 füllt restlichen Platz für einheitliche Höhen */
.pvm-problem-card p {
    color: var(--pvm-text-muted);
    margin: 0;
    line-height: 1.6;
    font-size: var(--pvm-font-size-sm);
    flex-grow: 1;                     /* CLAUDE: Dehnt sich aus, Cards werden gleich hoch */
}

/* ==========================================================================
   CLAUDE: 6. Problem-Cards Dark Mode
   CLAUDE: Migriert am 2026-01-09 auf einheitliche Selektoren
   ========================================================================== */

/* CLAUDE: Manueller Toggle - data-theme="dark" */
html[data-theme="dark"] .pvm-problems {
    background: var(--color-bg-primary);
}

html[data-theme="dark"] .pvm-problems h2 {
    color: var(--color-text-primary);
}

html[data-theme="dark"] .pvm-problem-card {
    background: var(--color-bg-secondary);
    border-color: var(--color-border-primary);
}

html[data-theme="dark"] .pvm-problem-card:hover {
    background: var(--color-bg-tertiary);
    border-color: #4a6fa5;
}

html[data-theme="dark"] .pvm-problem-card h3 {
    color: var(--color-text-primary);
}

html[data-theme="dark"] .pvm-problem-card p {
    color: var(--color-text-secondary);
}

/* CLAUDE: System-Präferenz - Fallback */
@media (prefers-color-scheme: dark) {
    html:not([data-theme="light"]) .pvm-problems {
        background: var(--color-bg-primary);
    }

    html:not([data-theme="light"]) .pvm-problems h2 {
        color: var(--color-text-primary);
    }

    html:not([data-theme="light"]) .pvm-problem-card {
        background: var(--color-bg-secondary);
        border-color: var(--color-border-primary);
    }

    html:not([data-theme="light"]) .pvm-problem-card:hover {
        background: var(--color-bg-tertiary);
        border-color: #4a6fa5;
    }

    html:not([data-theme="light"]) .pvm-problem-card h3 {
        color: var(--color-text-primary);
    }

    html:not([data-theme="light"]) .pvm-problem-card p {
        color: var(--color-text-secondary);
    }
}

/* CLAUDE: FAQ Liste zentrieren mit max-width (konsistent mit anderen Seiten) */
.pvm-faq__list {
    max-width: 800px;  /* CLAUDE: Lesbare Breite */
    margin: 0 auto;    /* CLAUDE: Zentriert mit gleichem Abstand links/rechts */
}
