/**
 * CLAUDE: Landingpage Sections - Wiederverwendbare CSS-Styles
 * CLAUDE: Extrahiert aus page-ki-agenten.php zur Wiederverwendung
 * CLAUDE: Unterstützt: Stats, Usecases, Process, Benefits, Technologies, FAQ
 * CLAUDE: Stand: 2026-01-15
 *
 * @package Provimedia
 */

/* ==========================================================================
   CLAUDE: CSS Custom Properties (Defaults)
   CLAUDE: Werden in Dark Mode via [data-theme="dark"] überschrieben
   ========================================================================== */

:root {
    /* CLAUDE: Light Mode Defaults */
    --pvm-lp-bg-primary: #ffffff;
    --pvm-lp-bg-secondary: #f8fafc;
    --pvm-lp-text-primary: #111827;
    --pvm-lp-text-secondary: #6b7280;
    --pvm-lp-accent: #6366f1;
    --pvm-lp-accent-light: rgba(99, 102, 241, 0.1);
    --pvm-lp-border: #e5e7eb;
    --pvm-lp-card-bg: #f8fafc;
    --pvm-lp-card-border: #e5e7eb;
}

html[data-theme="dark"],
html:not([data-theme="light"]) {
    /* CLAUDE: Dark Mode Overrides */
    --pvm-lp-bg-primary: var(--pvm-dark-bg, #0f172a);
    --pvm-lp-bg-secondary: rgba(15, 23, 42, 0.5);
    --pvm-lp-text-primary: #ffffff;
    --pvm-lp-text-secondary: rgba(255, 255, 255, 0.7);
    --pvm-lp-accent: #c084fc;
    --pvm-lp-accent-light: rgba(192, 132, 252, 0.2);
    --pvm-lp-border: rgba(255, 255, 255, 0.1);
    --pvm-lp-card-bg: rgba(30, 41, 59, 0.5);
    --pvm-lp-card-border: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   CLAUDE: Section Headers - Gemeinsame Styles für alle Sektionen
   CLAUDE: Headline + Subline für konsistentes Design
   ========================================================================== */

/* CLAUDE: Basis-Styles für alle Section Headlines */
.pvm-lp-stats__headline,
.pvm-lp-usecases__headline,
.pvm-lp-process__headline,
.pvm-lp-benefits__headline,
.pvm-lp-technologies__headline,
.pvm-lp-tech__headline,
.pvm-lp-faq__headline {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--pvm-lp-text-primary);
    text-align: center;
    margin: 0 0 var(--pvm-space-md, 1rem) 0;
    line-height: 1.2;
}

/* CLAUDE: Stats Headline - Weiß auf Gradient-Hintergrund */
.pvm-lp-stats__headline {
    color: #ffffff !important;
}

/* CLAUDE: Basis-Styles für alle Section Sublines */
.pvm-lp-usecases__subline,
.pvm-lp-process__subline,
.pvm-lp-benefits__subline,
.pvm-lp-faq__subline {
    font-size: 1.125rem;
    color: var(--pvm-lp-text-secondary);
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--pvm-space-2xl, 3rem);
    line-height: 1.6;
}

/* ==========================================================================
   CLAUDE: Stats Section - Gradient Background mit Zahlen
   ========================================================================== */

.pvm-lp-stats {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    position: relative;
}

/* CLAUDE: Dark Mode - Dunkler Gradient für bessere Integration */
html[data-theme="dark"] .pvm-lp-stats,
html:not([data-theme="light"]) .pvm-lp-stats {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
}

.pvm-lp-stats__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--pvm-space-lg, 2rem);
}

.pvm-lp-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--pvm-space-xl, 2rem);
}

@media (max-width: 968px) {
    .pvm-lp-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .pvm-lp-stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--pvm-space-lg, 1.5rem);
    }
}

.pvm-lp-stats__item {
    text-align: center;
    transition: transform 0.3s ease;
    cursor: default;
}

.pvm-lp-stats__item:hover {
    transform: scale(1.05);
}

.pvm-lp-stats__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--pvm-space-sm, 0.5rem);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: transform 0.3s ease;
}

/* CLAUDE: Dark Mode Icon-Hintergrund */
html[data-theme="dark"] .pvm-lp-stats__icon,
html:not([data-theme="light"]) .pvm-lp-stats__icon {
    background: rgba(139, 92, 246, 0.25);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #ffffff !important;
}

.pvm-lp-stats__item:hover .pvm-lp-stats__icon {
    transform: scale(1.15);
    animation: iconPulse 0.6s ease;
}

.pvm-lp-stats__number {
    display: block;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #ffffff !important;
    line-height: 1;
}

.pvm-lp-stats__label {
    display: block;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-top: 0.25rem;
}

/* ==========================================================================
   CLAUDE: Use Cases Section - Card Grid
   CLAUDE: Unterstützt beide Naming-Konventionen:
   CLAUDE: - pvm-lp-usecase-card (Original aus page-ki-agenten.php)
   CLAUDE: - pvm-lp-usecases__card (Neues Template page-ki-dokumentenverarbeitung.php)
   ========================================================================== */

.pvm-lp-usecases {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: var(--pvm-lp-bg-primary);
}

.pvm-lp-usecases__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--pvm-space-lg, 2rem);
}

.pvm-lp-usecases__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--pvm-space-lg, 2rem);
}

@media (max-width: 1024px) {
    .pvm-lp-usecases__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .pvm-lp-usecases__grid {
        grid-template-columns: 1fr;
    }
}

/* CLAUDE: Use Case Card - Beide Naming-Konventionen */
.pvm-lp-usecase-card,
.pvm-lp-usecases__card {
    background: var(--pvm-lp-card-bg);
    border: 1px solid var(--pvm-lp-card-border);
    border-radius: 16px;
    padding: var(--pvm-space-xl, 2rem);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pvm-lp-usecase-card:hover,
.pvm-lp-usecases__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.15);
    border-color: #6366f1;
}

html[data-theme="dark"] .pvm-lp-usecase-card:hover,
html[data-theme="dark"] .pvm-lp-usecases__card:hover,
html:not([data-theme="light"]) .pvm-lp-usecase-card:hover,
html:not([data-theme="light"]) .pvm-lp-usecases__card:hover {
    box-shadow: 0 12px 32px rgba(192, 132, 252, 0.2);
    border-color: #c084fc;
}

/* CLAUDE: Use Case Card Header */
.pvm-lp-usecase-card__header {
    display: flex;
    align-items: center;
    gap: var(--pvm-space-sm, 0.5rem);
    margin-bottom: var(--pvm-space-md, 1rem);
}

/* CLAUDE: Use Case Card Icon - Beide Naming-Konventionen */
/* CLAUDE: FIX 2026-01-15: margin-bottom hinzugefügt für Abstand zur Überschrift */
.pvm-lp-usecase-card__icon,
.pvm-lp-usecases__icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    margin-bottom: var(--pvm-space-md, 1rem);
}

.pvm-lp-usecase-card:hover .pvm-lp-usecase-card__icon,
.pvm-lp-usecases__card:hover .pvm-lp-usecases__icon {
    transform: scale(1.1) rotate(5deg);
}

/* CLAUDE: Industry Badge - Beide Naming-Konventionen */
/* CLAUDE: FIX 2026-01-15: margin-bottom hinzugefügt für Abstand zum Icon */
.pvm-lp-usecase-card__industry,
.pvm-lp-usecases__badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--pvm-lp-accent);
    background: var(--pvm-lp-accent-light);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    margin-bottom: var(--pvm-space-md, 1rem);
}

/* CLAUDE: Use Case Card Title - Beide Naming-Konventionen */
.pvm-lp-usecase-card__title,
.pvm-lp-usecases__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--pvm-lp-text-primary);
    margin: 0 0 var(--pvm-space-sm, 0.5rem) 0;
}

/* CLAUDE: Use Case Card Text - Beide Naming-Konventionen */
.pvm-lp-usecase-card__text,
.pvm-lp-usecases__text {
    font-size: 0.9375rem;
    color: var(--pvm-lp-text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   CLAUDE: Process Timeline - Schritte mit Nummern
   ========================================================================== */

.pvm-lp-process {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: var(--pvm-lp-bg-secondary);
}

.pvm-lp-process__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--pvm-space-lg, 2rem);
}

.pvm-lp-process__timeline {
    display: flex;
    flex-direction: column;
    gap: var(--pvm-space-lg, 2rem);
}

.pvm-lp-process__step {
    display: flex;
    gap: var(--pvm-space-lg, 2rem);
    align-items: flex-start;
}

@media (max-width: 640px) {
    .pvm-lp-process__step {
        flex-direction: column;
        gap: var(--pvm-space-md, 1rem);
    }
}

/* CLAUDE: Process Number - Opacity angepasst für bessere Lesbarkeit */
.pvm-lp-process__number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--pvm-lp-accent);
    line-height: 1;
    opacity: 0.5;
    min-width: 80px;
}

/* CLAUDE: Dark Mode - höhere Opacity für besseren Kontrast */
html[data-theme="dark"] .pvm-lp-process__number,
html:not([data-theme="light"]) .pvm-lp-process__number {
    opacity: 0.65;
}

.pvm-lp-process__content {
    flex: 1;
    background: var(--pvm-lp-bg-primary);
    border: 1px solid var(--pvm-lp-card-border);
    border-radius: 16px;
    padding: var(--pvm-space-xl, 2rem);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

html[data-theme="dark"] .pvm-lp-process__content,
html:not([data-theme="light"]) .pvm-lp-process__content {
    background: var(--pvm-lp-card-bg);
}

.pvm-lp-process__step:hover .pvm-lp-process__content {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.12);
    border-color: #6366f1;
}

html[data-theme="dark"] .pvm-lp-process__step:hover .pvm-lp-process__content,
html:not([data-theme="light"]) .pvm-lp-process__step:hover .pvm-lp-process__content {
    box-shadow: 0 8px 24px rgba(192, 132, 252, 0.15);
    border-color: #c084fc;
}

.pvm-lp-process__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: var(--pvm-space-md, 1rem);
    transition: transform 0.3s ease;
}

.pvm-lp-process__step:hover .pvm-lp-process__icon {
    transform: scale(1.1) rotate(5deg);
}

.pvm-lp-process__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--pvm-lp-text-primary);
    margin: 0 0 var(--pvm-space-sm, 0.5rem) 0;
}

.pvm-lp-process__text {
    font-size: 0.9375rem;
    color: var(--pvm-lp-text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   CLAUDE: Benefits Grid - Icon + Text Layout
   CLAUDE: Unterstützt beide Naming-Konventionen:
   CLAUDE: - pvm-lp-benefit-card (Original aus page-ki-agenten.php)
   CLAUDE: - pvm-lp-benefits__card (Neues Template)
   ========================================================================== */

.pvm-lp-benefits {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: var(--pvm-lp-bg-primary);
}

.pvm-lp-benefits__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--pvm-space-lg, 2rem);
}

.pvm-lp-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--pvm-space-lg, 2rem);
}

@media (max-width: 968px) {
    .pvm-lp-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .pvm-lp-benefits__grid {
        grid-template-columns: 1fr;
    }
}

/* CLAUDE: Benefit Card - Beide Naming-Konventionen */
.pvm-lp-benefit-card,
.pvm-lp-benefits__card {
    display: flex;
    gap: var(--pvm-space-md, 1rem);
    align-items: flex-start;
    /* CLAUDE: Clean Design ohne Borders */
    border: none;
    outline: none;
    box-shadow: none;
    background: transparent;
    transition: transform 0.3s ease;
}

.pvm-lp-benefit-card:hover,
.pvm-lp-benefits__card:hover {
    transform: translateX(8px);
}

/* CLAUDE: Dark Mode - Keine Box-Borders für cleanes Design */
html[data-theme="dark"] .pvm-lp-benefit-card,
html[data-theme="dark"] .pvm-lp-benefits__card,
html:not([data-theme="light"]) .pvm-lp-benefit-card,
html:not([data-theme="light"]) .pvm-lp-benefits__card {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

/* CLAUDE: Benefit Card Icon - Beide Naming-Konventionen */
.pvm-lp-benefit-card__icon,
.pvm-lp-benefits__icon {
    width: 48px;
    height: 48px;
    background: var(--pvm-lp-accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--pvm-lp-accent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pvm-lp-benefit-card:hover .pvm-lp-benefit-card__icon,
.pvm-lp-benefits__card:hover .pvm-lp-benefits__icon {
    transform: scale(1.15);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}

html[data-theme="dark"] .pvm-lp-benefit-card:hover .pvm-lp-benefit-card__icon,
html[data-theme="dark"] .pvm-lp-benefits__card:hover .pvm-lp-benefits__icon,
html:not([data-theme="light"]) .pvm-lp-benefit-card:hover .pvm-lp-benefit-card__icon,
html:not([data-theme="light"]) .pvm-lp-benefits__card:hover .pvm-lp-benefits__icon {
    box-shadow: 0 4px 16px rgba(192, 132, 252, 0.4);
}

/* CLAUDE: Benefit Card Title - Beide Naming-Konventionen */
.pvm-lp-benefit-card__title,
.pvm-lp-benefits__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pvm-lp-text-primary);
    margin: 0 0 0.25rem 0;
}

/* CLAUDE: Benefit Card Text - Beide Naming-Konventionen */
.pvm-lp-benefit-card__text,
.pvm-lp-benefits__text {
    font-size: 0.875rem;
    color: var(--pvm-lp-text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   CLAUDE: Technologies Section - Tag Cloud
   CLAUDE: Unterstützt beide Naming-Konventionen:
   CLAUDE: - pvm-lp-tech (Original aus page-ki-agenten.php)
   CLAUDE: - pvm-lp-technologies (Neues Template)
   ========================================================================== */

.pvm-lp-tech,
.pvm-lp-technologies {
    padding: var(--pvm-space-xl, 2rem) 0;
    background: var(--pvm-lp-bg-secondary);
    border-top: 1px solid var(--pvm-lp-border);
    border-bottom: 1px solid var(--pvm-lp-border);
}

.pvm-lp-tech__container,
.pvm-lp-technologies__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--pvm-space-lg, 2rem);
    text-align: center;
}

.pvm-lp-tech__headline,
.pvm-lp-technologies__headline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pvm-lp-text-secondary);
    margin: 0 0 var(--pvm-space-md, 1rem) 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pvm-lp-tech__tags,
.pvm-lp-technologies__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.pvm-lp-tech__tag,
.pvm-lp-technologies__tag {
    /* CLAUDE: inline-flex für Icon+Text Layout mit gap */
    display: inline-flex;
    align-items: center;
    gap: 0.5rem; /* CLAUDE: 8px Abstand zwischen Icon und Text */
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--pvm-lp-text-primary);
    background: var(--pvm-lp-bg-primary);
    border: 1px solid var(--pvm-lp-border);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    cursor: default;
}

/* CLAUDE: SVG-Icons in Tech-Tags - konsistente Größe und Farbe */
.pvm-lp-tech__tag svg,
.pvm-lp-technologies__tag svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0; /* CLAUDE: Icon behält Größe */
    stroke: currentColor;
}

.pvm-lp-tech__tag:hover,
.pvm-lp-technologies__tag:hover {
    transform: translateY(-2px) scale(1.05);
    background: #6366f1;
    color: #ffffff;
    border-color: #6366f1;
}

html[data-theme="dark"] .pvm-lp-tech__tag:hover,
html[data-theme="dark"] .pvm-lp-technologies__tag:hover,
html:not([data-theme="light"]) .pvm-lp-tech__tag:hover,
html:not([data-theme="light"]) .pvm-lp-technologies__tag:hover {
    background: #c084fc;
    color: #1a1a2e;
    border-color: #c084fc;
}

/* ==========================================================================
   CLAUDE: FAQ Section - Accordion
   ========================================================================== */

.pvm-lp-faq {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: var(--pvm-lp-bg-primary);
}

.pvm-lp-faq__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--pvm-space-lg, 2rem);
}

.pvm-lp-faq__list {
    display: flex;
    flex-direction: column;
    gap: var(--pvm-space-md, 1rem);
}

.pvm-lp-faq__item {
    background: var(--pvm-lp-card-bg);
    border: 1px solid var(--pvm-lp-card-border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pvm-lp-faq__item:hover {
    transform: translateX(4px);
    box-shadow: -4px 0 0 #6366f1;
}

html[data-theme="dark"] .pvm-lp-faq__item:hover,
html:not([data-theme="light"]) .pvm-lp-faq__item:hover {
    box-shadow: -4px 0 0 #c084fc;
}

.pvm-lp-faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--pvm-space-md, 1rem);
    padding: var(--pvm-space-lg, 1.5rem);
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--pvm-lp-text-primary);
    text-align: left;
}

.pvm-lp-faq__question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    stroke: var(--pvm-lp-accent);
}

.pvm-lp-faq__question[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.pvm-lp-faq__answer {
    display: none;
    padding: 0 var(--pvm-space-lg, 1.5rem) var(--pvm-space-lg, 1.5rem);
}

.pvm-lp-faq__answer p {
    font-size: 0.9375rem;
    color: var(--pvm-lp-text-secondary);
    margin: 0;
    line-height: 1.6;
}

.pvm-lp-faq__item.is-open .pvm-lp-faq__answer {
    display: block;
}

/* ==========================================================================
   CLAUDE: Definition Box (GEO Optimiert)
   ========================================================================== */

.pvm-lp-definition__content {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pvm-lp-definition:hover .pvm-lp-definition__content {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.12);
}

html[data-theme="dark"] .pvm-lp-definition:hover .pvm-lp-definition__content,
html:not([data-theme="light"]) .pvm-lp-definition:hover .pvm-lp-definition__content {
    box-shadow: 0 8px 24px rgba(192, 132, 252, 0.15);
}

.pvm-lp-definition__icon {
    transition: transform 0.3s ease;
}

.pvm-lp-definition:hover .pvm-lp-definition__icon {
    animation: iconPulse 0.6s ease;
}

/* ==========================================================================
   CLAUDE: Dark Mode Icon-Farben Fix
   CLAUDE: Problem: _icons.css Wildcard [class*="__icon"] setzt alle Icons auf #c084fc
   CLAUDE: Lösung: Icon-Container mit Gradient-Background brauchen weisse Icons
   ========================================================================== */

html[data-theme="dark"] .pvm-lp-stats__icon,
html[data-theme="dark"] .pvm-lp-usecase-card__icon,
html[data-theme="dark"] .pvm-lp-usecases__icon,
html[data-theme="dark"] .pvm-lp-process__icon,
html:not([data-theme="light"]) .pvm-lp-stats__icon,
html:not([data-theme="light"]) .pvm-lp-usecase-card__icon,
html:not([data-theme="light"]) .pvm-lp-usecases__icon,
html:not([data-theme="light"]) .pvm-lp-process__icon {
    color: #ffffff !important;
}

/* CLAUDE: SVG Icons innerhalb dieser Container - stroke weiss */
html[data-theme="dark"] .pvm-lp-stats__icon svg,
html[data-theme="dark"] .pvm-lp-usecase-card__icon svg,
html[data-theme="dark"] .pvm-lp-usecases__icon svg,
html[data-theme="dark"] .pvm-lp-process__icon svg,
html:not([data-theme="light"]) .pvm-lp-stats__icon svg,
html:not([data-theme="light"]) .pvm-lp-usecase-card__icon svg,
html:not([data-theme="light"]) .pvm-lp-usecases__icon svg,
html:not([data-theme="light"]) .pvm-lp-process__icon svg {
    stroke: #ffffff !important;
    fill: none;
}

/* ==========================================================================
   CLAUDE: Scroll Reveal Animationen
   ========================================================================== */

/* CLAUDE: Basis Reveal Animation */
.pvm-lp-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.pvm-lp-reveal--left,
.pvm-lp-reveal--slide-left {
    transform: translateX(-50px);
}

.pvm-lp-reveal--right,
.pvm-lp-reveal--slide-right {
    transform: translateX(50px);
}

.pvm-lp-reveal--scale {
    transform: scale(0.9);
}

.pvm-lp-reveal--slide-up {
    transform: translateY(30px);
}

.pvm-lp-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* CLAUDE: Section Headers Reveal */
.pvm-lp-section-header {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.pvm-lp-section-header.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   CLAUDE: Icon Pulse Animation
   ========================================================================== */

@keyframes iconPulse {
    0%, 100% { transform: scale(1.15); }
    50% { transform: scale(1.25); }
}

/* ==========================================================================
   CLAUDE: Accessibility - Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    .pvm-lp-usecase-card,
    .pvm-lp-usecases__card,
    .pvm-lp-benefit-card,
    .pvm-lp-benefits__card,
    .pvm-lp-process__content,
    .pvm-lp-faq__item,
    .pvm-lp-tech__tag,
    .pvm-lp-technologies__tag,
    .pvm-lp-stats__item,
    .pvm-lp-definition__content {
        transition: none !important;
    }

    .pvm-lp-usecase-card__icon,
    .pvm-lp-usecases__icon,
    .pvm-lp-benefit-card__icon,
    .pvm-lp-benefits__icon,
    .pvm-lp-process__icon,
    .pvm-lp-stats__icon,
    .pvm-lp-definition__icon {
        transition: none !important;
        animation: none !important;
    }

    .pvm-lp-reveal,
    .pvm-lp-section-header {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .pvm-lp-usecase-card:hover,
    .pvm-lp-usecases__card:hover,
    .pvm-lp-benefit-card:hover,
    .pvm-lp-benefits__card:hover,
    .pvm-lp-process__step:hover .pvm-lp-process__content,
    .pvm-lp-faq__item:hover,
    .pvm-lp-stats__item:hover {
        transform: none !important;
    }
}

/* ==========================================================================
   CLAUDE: Focus States für Keyboard Navigation
   ========================================================================== */

.pvm-lp-usecase-card:focus-visible,
.pvm-lp-usecases__card:focus-visible,
.pvm-lp-faq__question:focus-visible {
    outline: 2px solid #6366f1;
    outline-offset: 2px;
}

html[data-theme="dark"] .pvm-lp-usecase-card:focus-visible,
html[data-theme="dark"] .pvm-lp-usecases__card:focus-visible,
html[data-theme="dark"] .pvm-lp-faq__question:focus-visible,
html:not([data-theme="light"]) .pvm-lp-usecase-card:focus-visible,
html:not([data-theme="light"]) .pvm-lp-usecases__card:focus-visible,
html:not([data-theme="light"]) .pvm-lp-faq__question:focus-visible {
    outline-color: #c084fc;
}
