/* CLAUDE: KI-Strategie Landing Page Styles */
/* CLAUDE: Datei: assets/css/page-ki-strategie.css */
/* CLAUDE: Ergänzt page-chatbots.css mit spezifischen Styles */

/* ==========================================================================
   CLAUDE: 1. Hero Section - KI-Strategie spezifisch
   CLAUDE: Professionelles Dunkelblau für Consulting-Bereich
   ========================================================================== */

.pvm-hero--ki-strategie {
    background: linear-gradient(135deg, #0f2439 0%, #1a365d 50%, #234876 100%); /* CLAUDE: Dunkelblau für Seriosität */
    color: var(--pvm-bg-white);
    padding: var(--pvm-space-3xl) 0 var(--pvm-space-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pvm-hero--ki-strategie::before { /* CLAUDE: Dunkles Overlay für Kontrast */
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.pvm-hero--ki-strategie::after { /* CLAUDE: Subtiles Grid-Pattern */
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.pvm-hero--ki-strategie .content { position: relative; z-index: 1; }

/* CLAUDE: Kicker/Trust-Badge */
.pvm-hero--ki-strategie .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 */
.pvm-hero--ki-strategie 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.3);
}

/* CLAUDE: Subline */
.pvm-hero--ki-strategie .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.2);
    line-height: 1.6;
}

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

/* CLAUDE: Primary Button */
.pvm-hero--ki-strategie .pvm-btn--primary {
    background: #ffffff;
    color: #1a365d;
    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--ki-strategie .pvm-btn--primary:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

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

/* ==========================================================================
   CLAUDE: Split-Layout Override für ki-strategie
   CLAUDE: Text links, Bild rechts - konsistent mit Chatbots-Seite
   ========================================================================== */

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

/* CLAUDE: Grid Layout für Split-Hero - Text links, Bild rechts */
.pvm-hero--ki-strategie .pvm-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--pvm-space-xl);
    align-items: center;
}

/* CLAUDE: Content-Bereich (links) */
.pvm-hero--ki-strategie .pvm-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* CLAUDE: Bild-Bereich (rechts) */
.pvm-hero--ki-strategie .pvm-hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CLAUDE: Hero Bild Styling */
.pvm-hero--ki-strategie .pvm-hero__img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

/* CLAUDE: Responsive - Stack auf Tablet */
@media (max-width: 1024px) {
    .pvm-hero--ki-strategie .pvm-hero__grid {
        grid-template-columns: 1fr;
        gap: var(--pvm-space-lg);
        text-align: center;
    }

    .pvm-hero--ki-strategie .pvm-hero__content {
        align-items: center;
    }

    .pvm-hero--ki-strategie .pvm-hero__image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .pvm-hero--ki-strategie.pvm-hero--split .pvm-hero-ctas {
        justify-content: center;
    }
}

/* CLAUDE: Responsive - Stack auf Mobile */
@media (max-width: 768px) {
    .pvm-hero--ki-strategie.pvm-hero--split {
        text-align: center;
    }
    .pvm-hero--ki-strategie.pvm-hero--split .pvm-hero-ctas {
        justify-content: center;
    }

    .pvm-hero--ki-strategie .pvm-hero__image {
        max-width: 350px;
    }
}

/* ==========================================================================
   CLAUDE: 2. Services Grid (nutzt pvm-services statt pvm-chatbot-services)
   ========================================================================== */

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

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

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

.pvm-service-card--strategy {
    background: var(--pvm-bg-white);
    padding: var(--pvm-space-lg);
    border-radius: 12px;
    border: 1px solid var(--pvm-border);
    transition: all 0.3s ease;
}

.pvm-service-card--strategy:hover {
    border-color: #1a365d;
    box-shadow: 0 8px 30px rgba(26, 54, 93, 0.15);
    transform: translateY(-4px);
}

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

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

/* ==========================================================================
   CLAUDE: 3. Industries Section
   ========================================================================== */

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

.pvm-industries h2 {
    text-align: center;
    margin-bottom: var(--pvm-space-xl);
}

.pvm-industries__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--pvm-space-lg);
}

.pvm-industry-card {
    background: var(--pvm-bg-white);
    padding: var(--pvm-space-lg);
    border-radius: 12px;
    border: 1px solid var(--pvm-border);
    text-align: center;
    transition: all 0.3s ease;
}

.pvm-industry-card:hover {
    border-color: #1a365d;
    box-shadow: var(--pvm-shadow-lg);
    transform: translateY(-4px);
}

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

.pvm-industry-card p {
    color: var(--pvm-text-muted);
    font-size: var(--pvm-font-size-sm);
    margin: 0;
}

/* ==========================================================================
   CLAUDE: 4. Differentiators Section
   ========================================================================== */

.pvm-differentiators {
    padding: var(--pvm-space-2xl) 0;
    background: var(--pvm-bg-white);
}

.pvm-differentiators h2 {
    text-align: center;
    margin-bottom: var(--pvm-space-xl);
}

.pvm-differentiators__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--pvm-space-md);
    max-width: 900px;
    margin: 0 auto;
}

.pvm-differentiator {
    display: flex;
    align-items: center;
    gap: var(--pvm-space-sm);
    padding: var(--pvm-space-sm) var(--pvm-space-md);
    background: var(--pvm-bg-light);
    border-radius: 8px;
    border: 1px solid var(--pvm-border);
    transition: all 0.2s ease;
}

.pvm-differentiator:hover {
    border-color: #1a365d;
    background: #f0f4f8;
}

.pvm-differentiator__icon {
    color: #1a365d;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pvm-differentiator span:last-child {
    color: var(--pvm-text);
    font-size: var(--pvm-font-size-sm);
}

/* ==========================================================================
   CLAUDE: 5. Related Services Section
   CLAUDE: ENTFERNT 2025-01-07: Styles jetzt in related-services.css (zentral)
   ========================================================================== */

/* ==========================================================================
   CLAUDE: 6. Responsive
   ========================================================================== */

@media (max-width: 768px) {
    .pvm-hero--ki-strategie {
        padding: var(--pvm-space-xl) 0 var(--pvm-space-lg);
    }

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

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

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

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

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

    .pvm-differentiators__grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   CLAUDE: 7. Accessibility - Focus States
   CLAUDE: WCAG 2.1 AA compliant focus indicators
   ========================================================================== */

/* CLAUDE: Focus-Visible für alle interaktiven Elemente */
.pvm-hero--ki-strategie .pvm-btn--primary:focus-visible,
.pvm-hero--ki-strategie .pvm-btn--outline:focus-visible,
.pvm-service-card--strategy:focus-within,
.pvm-industry-card:focus-within,
.pvm-differentiator:focus-within,
.pvm-related-card:focus-visible,
.pvm-faq-item__question:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 3px;
}

/* CLAUDE: Dark backgrounds need white focus ring */
.pvm-hero--ki-strategie .pvm-btn--primary:focus-visible,
.pvm-hero--ki-strategie .pvm-btn--outline:focus-visible {
    outline-color: #ffffff;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.3);
}

/* CLAUDE: Light backgrounds need brand color focus ring */
.pvm-service-card--strategy:focus-within,
.pvm-industry-card:focus-within,
.pvm-related-card:focus-visible {
    outline-color: #1a365d;
    outline-offset: 2px;
}

/* CLAUDE: FAQ focus styles */
.pvm-faq-item__question:focus-visible {
    outline-color: #1a365d;
    outline-offset: 2px;
    border-radius: 4px;
}

/* ==========================================================================
   CLAUDE: 8. Improved Color Contrast (WCAG AA 4.5:1)
   CLAUDE: Replacing #999 muted text with higher contrast alternatives
   ========================================================================== */

/* CLAUDE: Upgraded muted text from #666 to ensure 4.5:1 on white */
.pvm-service-card--strategy > p,
.pvm-industry-card p,
.pvm-related-card p,
.pvm-section-subtitle {
    color: #595959; /* CLAUDE: Kontrast 7:1 auf #fff */
}

/* CLAUDE: Trust bar labels need good contrast on dark bg */
.pvm-trust-stat__label {
    color: rgba(255, 255, 255, 0.9); /* CLAUDE: Erhöht von 0.8 */
}

/* CLAUDE: Differentiator text */
.pvm-differentiator span:last-child {
    color: #4a4a4a; /* CLAUDE: Höherer Kontrast */
}

/* ==========================================================================
   CLAUDE: 9. FAQ Section Styles (KI-Strategie spezifisch)
   ========================================================================== */

.pvm-faq {
    padding: var(--pvm-space-2xl) 0;
    background: var(--pvm-bg-white);
}

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

.pvm-faq__list {
    max-width: 900px;
    margin: 0 auto;
}

.pvm-faq-item {
    border-bottom: 1px solid var(--pvm-border);
}

.pvm-faq-item:first-child {
    border-top: 1px solid var(--pvm-border);
}

/* CLAUDE: FAQ Question Button - KORRIGIERT 2025-01-09 */
/* CLAUDE: Horizontales Padding hinzugefügt (wie bei Chatbots-Seite) */
.pvm-faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: var(--pvm-space-md) var(--pvm-space-lg); /* CLAUDE: KORRIGIERT - war: padding: var(--pvm-space-md) 0 */
    background: none;
    border: none;
    font-size: 1.0625rem; /* CLAUDE: 17px wie Chatbots */
    font-weight: 600;
    text-align: left;
    color: #1a1a1a; /* CLAUDE: Dunkler für bessere Lesbarkeit */
    cursor: pointer;
    transition: background 0.2s ease;
    line-height: 1.4;
}

.pvm-faq-item__question span:first-child {
    flex: 1;
    padding-right: var(--pvm-space-md);
}

.pvm-faq-item__icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #1a365d;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.pvm-faq-item.is-open .pvm-faq-item__icon {
    transform: rotate(45deg);
}

/* CLAUDE: FAQ Answer Container - KORRIGIERT 2025-01-09 */
/* CLAUDE: Horizontales Padding hinzugefügt (wie bei Chatbots-Seite) */
.pvm-faq-item__answer {
    padding: 0 var(--pvm-space-lg) var(--pvm-space-lg); /* CLAUDE: KORRIGIERT - war: padding-bottom: var(--pvm-space-md) */
    color: #333333; /* CLAUDE: Dunkler für bessere Lesbarkeit */
    line-height: 1.7;
    font-size: 0.9375rem; /* CLAUDE: 15px wie Chatbots */
}

/* CLAUDE: Hidden Attribut für Accordion */
.pvm-faq-item__answer[hidden] {
    display: none;
}

.pvm-faq-item__answer p {
    margin-bottom: var(--pvm-space-sm);
}

.pvm-faq-item__answer ul,
.pvm-faq-item__answer ol {
    margin: var(--pvm-space-sm) 0;
    padding-left: var(--pvm-space-lg);
}

.pvm-faq-item__answer li {
    margin-bottom: var(--pvm-space-xs);
}

.pvm-faq-item__answer a {
    color: #1a365d;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.pvm-faq-item__answer a:hover {
    color: var(--pvm-primary);
}

/* CLAUDE: FAQ Hover States */
.pvm-faq-item__question:hover {
    background: #f5f5f5;
    color: #1a365d;
}

/* CLAUDE: FAQ Responsive - Mobile */
@media (max-width: 768px) {
    .pvm-faq-item__question {
        padding: var(--pvm-space-md);
        font-size: 1rem;
    }

    .pvm-faq-item__answer {
        padding: 0 var(--pvm-space-md) var(--pvm-space-md);
    }
}

/* ==========================================================================
   CLAUDE: 10. Problem Cards Icons
   ========================================================================== */

.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);
}

.pvm-problems__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--pvm-space-lg);
}

.pvm-problem-card {
    background: var(--pvm-bg-light);
    padding: var(--pvm-space-lg);
    border-radius: 12px;
    border: 1px solid var(--pvm-border);
    text-align: center;
    transition: all 0.3s ease;
}

.pvm-problem-card:hover {
    border-color: #1a365d;
    box-shadow: 0 8px 24px rgba(26, 54, 93, 0.1);
    transform: translateY(-4px);
}

.pvm-problem-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--pvm-space-md);
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.1) 0%, rgba(26, 54, 93, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #1a365d; /* CLAUDE: Für SVG stroke="currentColor" */
}

.pvm-problem-card:hover .pvm-problem-card__icon {
    background: linear-gradient(135deg, #1a365d 0%, #234876 100%);
    color: #ffffff; /* CLAUDE: Weiße Icons bei Hover */
}

/* CLAUDE: SVG Icon Styling - Inline SVGs (Standard gemäß CLAUDE.md) */
.pvm-problem-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor; /* CLAUDE: Erbt Farbe vom Parent */
    stroke-width: 2;
    fill: none;
    transition: stroke 0.3s ease;
}

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

.pvm-problem-card p {
    color: #595959;
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   CLAUDE: 11. Process Timeline Visualization
   ========================================================================== */

.pvm-process {
    padding: var(--pvm-space-2xl) 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.pvm-process h2 {
    text-align: center;
    margin-bottom: var(--pvm-space-xl);
}

/* CLAUDE: 2026-01-09: Responsive Grid mit einheitlichen Card-Höhen
   CLAUDE: minmax(0, 1fr) verhindert Content-basierte Größenanpassung
   CLAUDE: grid-auto-rows: 1fr + align-items: stretch erzwingt gleiche Höhen */
.pvm-process__timeline {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr)); /* CLAUDE: Exakt gleiche Breiten */
    grid-auto-rows: 1fr;                              /* CLAUDE: Gleiche Zeilenhöhen */
    align-items: stretch;                             /* CLAUDE: Steps füllen volle Höhe */
    gap: var(--pvm-space-lg, 2rem);
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--pvm-space-lg) 0;
}

/* CLAUDE: Connecting line */
.pvm-process__timeline::before {
    content: '';
    position: absolute;
    top: calc(var(--pvm-space-lg) + 30px);
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg,
        #1a365d 0%,
        #234876 25%,
        #2d5a87 50%,
        #376c98 75%,
        #4a90c2 100%
    );
    border-radius: 2px;
    z-index: 0;
}

/* CLAUDE: Process Step - 2026-01-09: Einheitliche Höhen + Text-Overflow Fix */
.pvm-process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;                            /* CLAUDE: Grid-Overflow verhindern */
    height: 100%;                            /* CLAUDE: Füllt Grid-Zelle */
    overflow-wrap: break-word;               /* CLAUDE: Lange Wörter umbrechen */
    word-break: break-word;                  /* CLAUDE: Fallback für ältere Browser */
    hyphens: auto;                           /* CLAUDE: Silbentrennung aktivieren */
}

.pvm-process-step__number {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border: 4px solid #1a365d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    margin: 0 auto var(--pvm-space-md);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.15);
}

.pvm-process-step:hover .pvm-process-step__number {
    background: #1a365d;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(26, 54, 93, 0.25);
}

.pvm-process-step h3 {
    font-size: var(--pvm-font-size-base);
    margin-bottom: var(--pvm-space-2xs);
    color: #1a365d;
    font-weight: 600;
}

.pvm-process-step p {
    color: #595959;
    font-size: var(--pvm-font-size-sm);
    margin: 0;
    max-width: 180px;
    margin: 0 auto;
    flex-grow: 1;                            /* CLAUDE: Füllt verfügbaren Platz */
    overflow-wrap: break-word;               /* CLAUDE: Lange Wörter umbrechen */
}

/* CLAUDE: 2026-01-09: Responsive Breakpoints überarbeitet
   CLAUDE: 5 Spalten nur bei ausreichend Platz (≥1200px)
   CLAUDE: 3 Spalten bei 768-1199px für bessere Lesbarkeit */

/* CLAUDE: Desktop Medium (1000-1199px) - 3 Spalten statt 5 */
@media (max-width: 1199px) {
    .pvm-process__timeline {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        grid-auto-rows: 1fr;
        gap: var(--pvm-space-md, 1.5rem);
        max-width: 800px;
    }

    .pvm-process-step {
        height: 100%;
    }

    .pvm-process__timeline::before {
        display: none;
    }
}

/* CLAUDE: Tablet-Portrait (600-767px) - 2 Spalten Grid */
@media (max-width: 767px) {
    .pvm-process__timeline {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-auto-rows: 1fr;
        gap: var(--pvm-space-md, 1.5rem);
        padding: 0;
        max-width: 100%;
    }

    .pvm-process-step {
        flex-direction: column;
        text-align: center;
        position: relative;
        height: 100%;
    }

    .pvm-process-step__number {
        position: static;
        margin: 0 auto var(--pvm-space-sm);
        width: 50px;
        height: 50px;
    }

    .pvm-process-step h3,
    .pvm-process-step p {
        max-width: none;
        text-align: center;
    }
}

/* CLAUDE: Mobile (unter 600px) - 2 Spalten Grid */
@media (max-width: 600px) {
    .pvm-process__timeline {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: var(--pvm-space-sm, 1rem);
        max-width: 100%;
    }

    .pvm-process-step__number {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

/* ==========================================================================
   CLAUDE: 12. Trust Bar Enhancements
   ========================================================================== */

.pvm-trust-bar {
    background: linear-gradient(135deg, #0f2439 0%, #1a365d 100%);
    padding: var(--pvm-space-lg) 0;
    position: relative;
}

.pvm-trust-bar__stats {
    display: flex;
    justify-content: center;
    gap: var(--pvm-space-2xl);
    flex-wrap: wrap;
}

.pvm-trust-stat {
    text-align: center;
    min-width: 120px;
}

.pvm-trust-stat__number {
    display: block;
    font-size: var(--pvm-font-size-2xl);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: var(--pvm-space-2xs);
}

.pvm-trust-stat__label {
    font-size: var(--pvm-font-size-sm);
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .pvm-trust-bar__stats {
        gap: var(--pvm-space-lg);
    }

    .pvm-trust-stat {
        min-width: 100px;
    }

    .pvm-trust-stat__number {
        font-size: var(--pvm-font-size-xl);
    }
}

/* ==========================================================================
   CLAUDE: 13. Services Grid 4-Column
   ========================================================================== */

.pvm-services-grid--4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--pvm-space-lg);
}

@media (max-width: 1200px) {
    .pvm-services-grid--4col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pvm-services-grid--4col {
        grid-template-columns: 1fr;
    }
}

/* CLAUDE: Feature list in service cards */
.pvm-service-card__features {
    list-style: none;
    padding: 0;
    margin: var(--pvm-space-sm) 0 0 0;
}

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

.pvm-service-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a365d;
    font-weight: 700;
}

/* ==========================================================================
   CLAUDE: 14. Benefits Section - KI-Strategie spezifisch
   CLAUDE: FIX 2025-01-08: Modifier-Klasse gegen chatbots.css Spezifitäts-Override
   CLAUDE: Problem: chatbots.css hat .pvm-benefits .pvm-stat-card (2 Klassen)
   CLAUDE: Lösung: .pvm-benefits--ki-strategie für höhere/gleiche Spezifität
   ========================================================================== */

/* CLAUDE: Modifier-Klasse für KI-Strategie Farbschema (heller Hintergrund) */
.pvm-benefits.pvm-benefits--ki-strategie {
    padding: var(--pvm-space-2xl) 0;
    background: var(--pvm-bg-light);  /* CLAUDE: Helles Grau statt Gradient */
    color: var(--pvm-text);           /* CLAUDE: Dunkler Text als Basis */
}

.pvm-benefits--ki-strategie h2 {
    text-align: center;
    margin-bottom: var(--pvm-space-xl);
    color: var(--pvm-text);  /* CLAUDE: Dunkler Text, nicht weiß */
}

.pvm-benefits--ki-strategie .pvm-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--pvm-space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

/* CLAUDE: Stat-Cards mit weißem Hintergrund und Border */
.pvm-benefits--ki-strategie .pvm-stat-card {
    background: var(--pvm-bg-white);  /* CLAUDE: Weißer Hintergrund */
    padding: var(--pvm-space-lg);
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--pvm-border);
    transition: all 0.3s ease;
    backdrop-filter: none;  /* CLAUDE: Override chatbots blur */
}

.pvm-benefits--ki-strategie .pvm-stat-card:hover {
    border-color: #1a365d;
    box-shadow: 0 8px 24px rgba(26, 54, 93, 0.1);
    transform: translateY(-4px);
}

/* CLAUDE: Zahlen mit Gradient für Premium-Look - WCAG AAA konform */
.pvm-benefits--ki-strategie .pvm-stat-card__number {
    font-size: var(--pvm-font-size-2xl);
    font-weight: 800;
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--pvm-space-2xs);
    text-shadow: none;  /* CLAUDE: Override chatbots text-shadow */
}

/* CLAUDE: Fallback für Browser ohne background-clip Support */
@supports not (-webkit-background-clip: text) {
    .pvm-benefits--ki-strategie .pvm-stat-card__number {
        color: #1a365d;  /* CLAUDE: Solides Dunkelblau */
        background: none;
        -webkit-text-fill-color: #1a365d;
    }
}

/* CLAUDE: Labels mit WCAG-konformem Kontrast (8.5:1 auf Weiß) */
.pvm-benefits--ki-strategie .pvm-stat-card__label {
    color: #4a4a4a;  /* CLAUDE: Dunkelgrau für guten Kontrast */
    font-size: var(--pvm-font-size-sm);
    opacity: 1;      /* CLAUDE: Override chatbots opacity */
    margin-top: 0;   /* CLAUDE: Override chatbots margin */
}

/* CLAUDE: Responsive - 2 Spalten auf Tablet */
@media (max-width: 900px) {
    .pvm-benefits--ki-strategie .pvm-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* CLAUDE: Responsive - 1 Spalte auf Mobile */
@media (max-width: 500px) {
    .pvm-benefits--ki-strategie .pvm-benefits__grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   CLAUDE: 15. CTA Section Enhancements
   ========================================================================== */

.pvm-cta-section {
    padding: var(--pvm-space-2xl) 0;
    background: linear-gradient(135deg, #0f2439 0%, #1a365d 100%);
    color: #ffffff;
}

.pvm-cta-section h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: var(--pvm-space-xs);
}

.pvm-cta-section .pvm-section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--pvm-space-xl);
}

.pvm-cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--pvm-space-xl);
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.pvm-cta-form {
    background: #ffffff;
    padding: var(--pvm-space-lg);
    border-radius: 12px;
}

.pvm-contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--pvm-space-lg);
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pvm-contact-card__avatar {
    border-radius: 50%;
    margin: 0 auto var(--pvm-space-md);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.pvm-contact-card h3 {
    font-size: var(--pvm-font-size-sm);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--pvm-space-2xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pvm-contact-card__name {
    font-size: var(--pvm-font-size-lg);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: var(--pvm-space-2xs);
}

.pvm-contact-card__title {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--pvm-space-md);
}

.pvm-contact-card__email,
.pvm-contact-card__phone {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: var(--pvm-space-xs);
    transition: opacity 0.2s ease;
}

.pvm-contact-card__email:hover,
.pvm-contact-card__phone:hover {
    opacity: 0.8;
}

@media (max-width: 900px) {
    .pvm-cta-grid {
        grid-template-columns: 1fr;
    }

    .pvm-contact-card {
        order: -1;
    }
}

/* ==========================================================================
   CLAUDE: FIX - Tablet Grid-Layouts (769px - 1200px)
   CLAUDE: Problem: auto-fit erzeugt 3:1 bei 4 Cards auf Tablet
   CLAUDE: Lösung: Festes 2-Spalten-Grid für Tablet-Breakpoint
   ========================================================================== */
@media (min-width: 769px) and (max-width: 1200px) {
    /* CLAUDE: Industries Grid - 2x2 statt 3:1 */
    .pvm-industries__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* CLAUDE: Related Services Grid - 2x2 statt 3:1 */
    .pvm-related-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
