/**
 * CLAUDE: MCP Chainguard Seiten-Styling
 * CLAUDE: Terminal-Ästhetik mit GitHub Dark Theme Farben
 * CLAUDE: Anpassen: Farben in CSS Variables, Grid-Layouts
 */

/* CLAUDE: Hero mit Terminal-Ästhetik */
.pvm-hero--mcp-chainguard {
    background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #21262d 100%);
    /* CLAUDE: GitHub Dark Theme Farben für Developer-Fokus */
}

/* CLAUDE: Split-Layout Override für mcp-chainguard */
/* CLAUDE: Text links ausgerichtet, Terminal-Mockup rechts */
.pvm-hero--mcp-chainguard.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--mcp-chainguard .pvm-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--pvm-space-xl);
    align-items: center;
}

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

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

/* CLAUDE: Hero Bild Styling - Terminal-Mockup */
.pvm-hero--mcp-chainguard .pvm-hero__img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* CLAUDE: CTA Buttons Container - Flexbox für horizontale Ausrichtung */
.pvm-hero--mcp-chainguard .pvm-hero-ctas {
    display: flex;
    gap: var(--pvm-space-sm);
    justify-content: flex-start;
    align-items: stretch; /* CLAUDE: Beide Buttons gleiche Höhe */
    flex-wrap: wrap;
}

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

/* CLAUDE: GitHub Button - Konsistentes Padding mit Outline Button */
.pvm-hero--mcp-chainguard .pvm-btn--github {
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

/* CLAUDE: Outline Button - Konsistentes Padding mit GitHub Button */
.pvm-hero--mcp-chainguard .pvm-btn--outline {
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #58a6ff;
    background: transparent;
    color: #58a6ff; /* CLAUDE: GitHub Blue für dunklen Hintergrund */
}

/* CLAUDE: Hero Text für dunklen Hintergrund */
.pvm-hero--mcp-chainguard .pvm-hero-kicker {
    color: #58a6ff; /* CLAUDE: GitHub Blue */
}

.pvm-hero--mcp-chainguard h1 {
    color: #ffffff;
}

.pvm-hero--mcp-chainguard .pvm-hero-text {
    color: #c9d1d9; /* CLAUDE: GitHub Light Gray */
}

/* CLAUDE: GitHub Button Styling */
.pvm-btn--github {
    background: #238636; /* CLAUDE: GitHub Green */
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.pvm-btn--github:hover {
    background: #2ea043;
    color: #ffffff;
}

.pvm-btn--github svg {
    flex-shrink: 0;
}

/* CLAUDE: Outline Button Hover für dunklen Hintergrund */
.pvm-hero--mcp-chainguard .pvm-btn--outline:hover {
    background: #58a6ff;
    color: #0d1117;
    border-color: #58a6ff;
}

/* CLAUDE: Features Section - Whitespace für Breathing Room */
/* CLAUDE: Mehr vertikales Padding oben/unten für visuelle Trennung */
.pvm-features {
    padding: var(--pvm-space-3xl, 6rem) 0;
    /* CLAUDE: Anpassen: --pvm-space-3xl oder direkter Wert für mehr/weniger Whitespace */
}

/* CLAUDE: Features Grid - 3 Spalten auf Desktop */
.pvm-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--pvm-space-lg);
}

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

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

/* CLAUDE: Feature Card Styling */
.pvm-feature-card {
    background: var(--pvm-card-bg, #ffffff);
    border-radius: var(--pvm-radius-lg, 12px);
    padding: var(--pvm-space-lg);
    box-shadow: var(--pvm-shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pvm-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pvm-shadow-lg);
}

.pvm-feature-card__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--pvm-primary) 0%, var(--pvm-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--pvm-space-md);
    color: #ffffff;
}

.pvm-feature-card__icon svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
}

.pvm-feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--pvm-space-sm);
    color: var(--pvm-heading-color);
}

.pvm-feature-card p {
    color: var(--pvm-text-muted);
    margin-bottom: var(--pvm-space-md);
}

.pvm-feature-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pvm-feature-card__list li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.875rem;
    color: var(--pvm-text-muted);
}

.pvm-feature-card__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--pvm-primary);
    font-weight: bold;
}

/* CLAUDE: Use Cases Section - Whitespace für Breathing Room */
/* CLAUDE: Mehr vertikales Padding oben/unten für visuelle Trennung */
.pvm-use-cases {
    padding: var(--pvm-space-3xl) 0;
}

/* CLAUDE: Use Cases Grid - 4 Spalten auf Desktop */
.pvm-use-cases__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--pvm-space-lg);
}

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

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

/* CLAUDE: Use Case Card Styling */
.pvm-use-case-card {
    background: var(--pvm-card-bg, #ffffff);
    border-radius: var(--pvm-radius-lg, 12px);
    padding: var(--pvm-space-lg);
    box-shadow: var(--pvm-shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pvm-use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pvm-shadow-lg);
}

.pvm-use-case-card__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--pvm-primary) 0%, var(--pvm-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--pvm-space-md);
    color: #ffffff;
}

.pvm-use-case-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
}

.pvm-use-case-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--pvm-space-sm);
}

.pvm-use-case-card__scenario {
    color: var(--pvm-text-muted);
    font-size: 0.875rem;
    margin-bottom: var(--pvm-space-sm);
}

.pvm-use-case-card__result {
    color: var(--pvm-primary);
    font-size: 0.875rem;
}

/* CLAUDE: Integrations Section - Whitespace für Breathing Room */
/* CLAUDE: Mehr vertikales Padding oben/unten für visuelle Trennung */
.pvm-integrations {
    padding: var(--pvm-space-3xl) 0;
}

/* CLAUDE: Integrations Grid - 4 Spalten */
.pvm-integrations__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--pvm-space-lg);
}

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

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

/* CLAUDE: Integration Card Styling */
.pvm-integration-card {
    background: var(--pvm-card-bg, #ffffff);
    border-radius: var(--pvm-radius-lg, 12px);
    padding: var(--pvm-space-lg);
    box-shadow: var(--pvm-shadow-md);
    text-align: center;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.pvm-integration-card:hover {
    border-color: var(--pvm-primary);
    transform: translateY(-2px);
}

.pvm-integration-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--pvm-space-xs);
    color: var(--pvm-heading-color);
}

.pvm-integration-card p {
    color: var(--pvm-text-muted);
    font-size: 0.875rem;
    margin: 0;
}

/* CLAUDE: GitHub CTA Section */
.pvm-github-cta {
    padding: var(--pvm-space-2xl) 0;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
}

.pvm-github-cta__box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.pvm-github-cta h2 {
    color: #ffffff;
    margin-bottom: var(--pvm-space-md);
}

.pvm-github-cta p {
    color: #c9d1d9;
    font-size: 1.125rem;
    margin-bottom: var(--pvm-space-lg);
}

.pvm-github-cta__buttons {
    display: flex;
    gap: var(--pvm-space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.pvm-github-cta .pvm-btn--outline {
    border-color: #58a6ff;
    color: #58a6ff;
}

.pvm-github-cta .pvm-btn--outline:hover {
    background: #58a6ff;
    color: #0d1117;
}

/* ==========================================================================
   CLAUDE: Process Section - MCP Chainguard "How it works"
   CLAUDE: Einspaltiges Layout für vollständig lesbare/kopierbare Code-Snippets
   CLAUDE: Optimierte Breakpoints: 1200px / 992px / 768px / 480px / 360px
   ========================================================================== */

/* CLAUDE: Process Section Container - Base Styles */
.pvm-hero--mcp-chainguard ~ .pvm-process {
    padding: var(--pvm-space-2xl, 64px) 0;
    background: var(--pvm-bg-light, #f8f9fa);
}

/* CLAUDE: Section Heading zentriert */
.pvm-hero--mcp-chainguard ~ .pvm-process h2 {
    text-align: center;
    margin-bottom: var(--pvm-space-xl, 48px);
}

/* CLAUDE: Timeline Container - Einspaltiges Flex-Layout */
.pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process__timeline {
    display: flex;
    flex-direction: column;
    gap: var(--pvm-space-lg, 2rem);
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--pvm-space-md, 24px);
    position: relative;
}

/* CLAUDE: Vertikale Verbindungslinie - Position relativ zur Nummer */
.pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process__timeline::before {
    content: '';
    position: absolute;
    top: 48px;
    bottom: 48px;
    left: calc(var(--pvm-space-md, 24px) + 24px); /* padding + halbe Nummer-Breite */
    width: 3px;
    background: linear-gradient(180deg, #238636 0%, #2ea043 100%);
    border-radius: 2px;
    z-index: 0;
}

/* CLAUDE: Process Step Card - Grid-Layout (Nummer links, Content rechts) */
.pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process-step {
    background: var(--pvm-card-bg, #ffffff);
    border-radius: var(--pvm-radius-lg, 12px);
    padding: var(--pvm-space-lg, 24px);
    box-shadow: var(--pvm-shadow-md, 0 4px 12px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto 1fr;
    gap: var(--pvm-space-xs, 8px) var(--pvm-space-md, 16px);
    align-items: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* CLAUDE: Hover-Effekt - Subtile horizontale Bewegung */
.pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process-step:hover {
    transform: translateX(8px);
    box-shadow: var(--pvm-shadow-lg, 0 8px 24px rgba(0, 0, 0, 0.15));
}

/* CLAUDE: Nummer Badge - GitHub Green, links in der Card */
.pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process-step__number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #238636 0%, #2ea043 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    grid-row: 1 / 3;
    grid-column: 1;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(35, 134, 54, 0.3);
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* CLAUDE: Nummer Hover-Effekt */
.pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process-step:hover .pvm-process-step__number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(35, 134, 54, 0.4);
}

/* CLAUDE: Step Titel */
.pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process-step h3 {
    font-size: 1.25rem;
    margin: 0;
    padding-top: 4px; /* CLAUDE: Vertikale Ausrichtung mit Nummer-Zentrum */
    color: var(--pvm-heading-color, #1a1a2e);
    font-weight: 600;
    line-height: 1.3;
    grid-column: 2;
    grid-row: 1;
}

/* CLAUDE: Code-Block Container */
.pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process-step p {
    margin: 0;
    grid-column: 2;
    grid-row: 2;
}

/* CLAUDE: Code-Blöcke - Terminal-Ästhetik, vollständig lesbar */
.pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process-step code {
    display: block;
    background: #0d1117;
    color: #58a6ff;
    padding: 16px 20px;
    border-radius: 8px;
    font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.9375rem; /* 15px */
    line-height: 1.6;
    text-align: left;
    white-space: pre-wrap;        /* CLAUDE: Zeilenumbruch erlauben */
    word-break: break-word;       /* CLAUDE: Lange Wörter umbrechen */
    overflow-wrap: break-word;    /* CLAUDE: Fallback für ältere Browser */
    hyphens: none;                /* CLAUDE: Keine Silbentrennung bei Code */
    border: 1px solid #30363d;
    user-select: all;             /* CLAUDE: Click wählt alles (Copy-Paste) */
    cursor: text;
}

/* ==========================================================================
   CLAUDE: Responsive Breakpoints - Klare, nicht-überlappende Bereiche
   ========================================================================== */

/* --------------------------------------------------------------------------
   CLAUDE: Desktop Large (>1200px) - Optimales Layout, viel Whitespace
   -------------------------------------------------------------------------- */
@media (min-width: 1201px) {
    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process__timeline {
        max-width: 900px;
        gap: var(--pvm-space-xl, 2.5rem);
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process-step {
        padding: var(--pvm-space-xl, 32px);
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process-step code {
        font-size: 1rem; /* 16px - optimal für Lesbarkeit */
        padding: 20px 24px;
    }
}

/* --------------------------------------------------------------------------
   CLAUDE: Desktop/Tablet Landscape (993px - 1200px) - Leicht kompakter
   -------------------------------------------------------------------------- */
@media (min-width: 993px) and (max-width: 1200px) {
    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process__timeline {
        max-width: 800px;
        gap: var(--pvm-space-lg, 2rem);
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process__timeline::before {
        left: calc(var(--pvm-space-md, 24px) + 22px);
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process-step {
        grid-template-columns: 44px 1fr;
        padding: var(--pvm-space-lg, 24px);
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process-step__number {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process-step h3 {
        font-size: 1.125rem;
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process-step code {
        font-size: 0.9375rem;
        padding: 16px 20px;
    }
}

/* --------------------------------------------------------------------------
   CLAUDE: Tablet Portrait (769px - 992px) - Kompaktes Layout
   -------------------------------------------------------------------------- */
@media (min-width: 769px) and (max-width: 992px) {
    .pvm-hero--mcp-chainguard ~ .pvm-process {
        padding: var(--pvm-space-xl, 48px) 0;
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process__timeline {
        max-width: 100%;
        gap: var(--pvm-space-md, 1.5rem);
        padding: 0 var(--pvm-space-md, 24px);
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process__timeline::before {
        left: calc(var(--pvm-space-md, 24px) + 20px);
        top: 40px;
        bottom: 40px;
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process-step {
        grid-template-columns: 40px 1fr;
        gap: var(--pvm-space-xs, 8px) var(--pvm-space-sm, 12px);
        padding: var(--pvm-space-md, 16px) var(--pvm-space-lg, 24px);
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process-step__number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process-step h3 {
        font-size: 1.0625rem; /* 17px */
        padding-top: 2px;
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process-step code {
        font-size: 0.875rem; /* 14px */
        padding: 14px 16px;
    }
}

/* --------------------------------------------------------------------------
   CLAUDE: Mobile Landscape / Large Mobile (481px - 768px)
   -------------------------------------------------------------------------- */
@media (min-width: 481px) and (max-width: 768px) {
    .pvm-hero--mcp-chainguard ~ .pvm-process {
        padding: var(--pvm-space-lg, 40px) 0;
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process h2 {
        font-size: 1.5rem;
        margin-bottom: var(--pvm-space-lg, 32px);
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process__timeline {
        gap: var(--pvm-space-md, 1.5rem);
        padding: 0 var(--pvm-space-sm, 16px);
    }

    /* CLAUDE: Verbindungslinie ausblenden - zu wenig Platz */
    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process__timeline::before {
        display: none;
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process-step {
        grid-template-columns: 36px 1fr;
        gap: var(--pvm-space-xs, 8px) var(--pvm-space-sm, 12px);
        padding: var(--pvm-space-md, 16px);
    }

    /* CLAUDE: Hover deaktivieren auf Touch-Geräten */
    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process-step:hover {
        transform: none;
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process-step__number {
        width: 36px;
        height: 36px;
        font-size: 0.9375rem;
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process-step h3 {
        font-size: 1rem;
        padding-top: 0;
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process-step code {
        font-size: 0.8125rem; /* 13px */
        padding: 12px 14px;
        line-height: 1.5;
    }
}

/* --------------------------------------------------------------------------
   CLAUDE: Mobile Portrait (361px - 480px) - Nummer links, kompakt
   -------------------------------------------------------------------------- */
@media (min-width: 361px) and (max-width: 480px) {
    .pvm-hero--mcp-chainguard ~ .pvm-process {
        padding: var(--pvm-space-lg, 32px) 0;
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process h2 {
        font-size: 1.375rem;
        margin-bottom: var(--pvm-space-md, 24px);
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process__timeline {
        gap: var(--pvm-space-sm, 1rem);
        padding: 0 var(--pvm-space-xs, 12px);
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process__timeline::before {
        display: none;
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process-step {
        grid-template-columns: 32px 1fr;
        gap: var(--pvm-space-xs, 6px) var(--pvm-space-xs, 10px);
        padding: var(--pvm-space-sm, 12px);
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process-step:hover {
        transform: none;
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process-step__number {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process-step h3 {
        font-size: 0.9375rem;
        padding-top: 0;
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process-step code {
        font-size: 0.75rem; /* 12px */
        padding: 10px 12px;
        line-height: 1.5;
    }
}

/* --------------------------------------------------------------------------
   CLAUDE: Small Mobile (<360px) - Nummer über Content für mehr Breite
   -------------------------------------------------------------------------- */
@media (max-width: 360px) {
    .pvm-hero--mcp-chainguard ~ .pvm-process {
        padding: var(--pvm-space-md, 24px) 0;
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process h2 {
        font-size: 1.25rem;
        margin-bottom: var(--pvm-space-md, 20px);
        padding: 0 var(--pvm-space-xs, 8px);
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process__timeline {
        gap: var(--pvm-space-sm, 1rem);
        padding: 0 var(--pvm-space-xs, 8px);
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process__timeline::before {
        display: none;
    }

    /* CLAUDE: Vertikales Layout - Nummer über Content */
    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process-step {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: var(--pvm-space-xs, 8px);
        padding: var(--pvm-space-sm, 12px);
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process-step:hover {
        transform: none;
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process-step__number {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
        margin-bottom: var(--pvm-space-xs, 4px);
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process-step h3 {
        font-size: 0.9375rem;
        margin: 0;
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process-step p {
        width: 100%;
    }

    .pvm-hero--mcp-chainguard ~ .pvm-process .pvm-process-step code {
        font-size: 0.6875rem; /* 11px */
        padding: 8px 10px;
        line-height: 1.4;
        width: 100%;
        box-sizing: border-box;
    }
}

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

    .pvm-hero--mcp-chainguard .pvm-hero__content {
        align-items: center;
    }

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

    .pvm-hero--mcp-chainguard.pvm-hero--split .pvm-hero-ctas {
        justify-content: center;
    }
}

/* CLAUDE: Responsive - Stack auf Mobile */
@media (max-width: 768px) {
    .pvm-hero--mcp-chainguard.pvm-hero--split {
        text-align: center;
        padding: var(--pvm-space-xl) 0 var(--pvm-space-lg);
    }

    .pvm-hero--mcp-chainguard.pvm-hero--split .pvm-hero-ctas {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

    .pvm-hero--mcp-chainguard .pvm-hero__image {
        max-width: 350px;
    }

    .pvm-hero--mcp-chainguard h1 {
        font-size: 1.75rem;
    }

    .pvm-hero--mcp-chainguard .pvm-hero-text {
        font-size: 1rem;
    }
}

/* ==========================================================================
   CLAUDE: Problems Section - 6 Cards Grid Optimierung
   CLAUDE: Problem: Bei 2-Spalten-Layout (Standard) sind Cards 5+6 außerhalb des Viewports
   CLAUDE: Lösung: 3-Spalten-Grid für 6 Cards = 3x2 Layout (alle Cards sichtbar)
   ========================================================================== */

/* CLAUDE: MCP-Chainguard spezifische Problem-Cards Styles */
.pvm-hero--mcp-chainguard ~ .pvm-problems {
    padding: var(--pvm-space-2xl, 64px) 0;
    background: #fafafa;
}

.pvm-hero--mcp-chainguard ~ .pvm-problems h2 {
    text-align: center;
    margin-bottom: var(--pvm-space-xl, 48px);
    font-size: clamp(1.75rem, 1.5rem + 1vw, 2.25rem);
    color: #1a1a1a;
}

/* CLAUDE: Desktop (>1400px): 3 Spalten - Layout 3x2 für 6 Cards */
/* CLAUDE: Geändert von 4 auf 3 Spalten für symmetrisches 3-3 Layout */
.pvm-hero--mcp-chainguard ~ .pvm-problems .pvm-problems__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--pvm-space-lg, 2rem);
}

/* CLAUDE: Extended Tablet (1025-1400px): 3 Spalten - Layout 3x2 für 6 Cards */
/* CLAUDE: !important nötig um Base-Styles aus page-chatbots.css zu überschreiben */
@media (min-width: 1025px) and (max-width: 1400px) {
    .pvm-hero--mcp-chainguard ~ .pvm-problems .pvm-problems__grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: var(--pvm-space-md, 1.5rem) !important;
    }

    /* CLAUDE: Kompaktere Cards für 3-Spalten-Layout */
    .pvm-hero--mcp-chainguard ~ .pvm-problems .pvm-problem-card {
        padding: var(--pvm-space-md, 16px);
    }

    .pvm-hero--mcp-chainguard ~ .pvm-problems .pvm-problem-card h3 {
        font-size: 1.0625rem; /* 17px */
    }

    .pvm-hero--mcp-chainguard ~ .pvm-problems .pvm-problem-card p {
        font-size: 0.875rem; /* 14px */
    }

    .pvm-hero--mcp-chainguard ~ .pvm-problems .pvm-problem-card__icon {
        width: 56px;
        height: 56px;
        margin-bottom: var(--pvm-space-sm, 12px);
    }

    .pvm-hero--mcp-chainguard ~ .pvm-problems .pvm-problem-card__icon svg {
        width: 24px;
        height: 24px;
    }
}

/* CLAUDE: Tablet Portrait (769-1024px): 3 Spalten für 6 Cards (3x2 Layout) */
@media (min-width: 769px) and (max-width: 1024px) {
    .pvm-hero--mcp-chainguard ~ .pvm-problems .pvm-problems__grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: var(--pvm-space-md, 1.5rem) !important;
    }

    /* CLAUDE: Kompaktere Cards für Tablet */
    .pvm-hero--mcp-chainguard ~ .pvm-problems .pvm-problem-card {
        padding: var(--pvm-space-sm, 12px) var(--pvm-space-md, 16px);
    }

    .pvm-hero--mcp-chainguard ~ .pvm-problems .pvm-problem-card h3 {
        font-size: 1rem;
        margin-bottom: var(--pvm-space-xs, 8px);
    }

    .pvm-hero--mcp-chainguard ~ .pvm-problems .pvm-problem-card p {
        font-size: 0.8125rem; /* 13px */
        line-height: 1.5;
    }

    .pvm-hero--mcp-chainguard ~ .pvm-problems .pvm-problem-card__icon {
        width: 48px;
        height: 48px;
        margin-bottom: var(--pvm-space-xs, 8px);
    }

    .pvm-hero--mcp-chainguard ~ .pvm-problems .pvm-problem-card__icon svg {
        width: 22px;
        height: 22px;
    }
}

/* CLAUDE: Tablet Portrait (600-768px): 2 Spalten für 6 Cards (2x3 Layout) */
/* CLAUDE: Bei dieser Höhe (1024px) ist 2x3 möglich */
@media (min-width: 600px) and (max-width: 768px) {
    .pvm-hero--mcp-chainguard ~ .pvm-problems {
        padding: var(--pvm-space-xl, 48px) 0;
    }

    .pvm-hero--mcp-chainguard ~ .pvm-problems .pvm-problems__grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: var(--pvm-space-md, 1.5rem) !important;
    }

    .pvm-hero--mcp-chainguard ~ .pvm-problems .pvm-problem-card {
        padding: var(--pvm-space-sm, 12px);
    }

    .pvm-hero--mcp-chainguard ~ .pvm-problems .pvm-problem-card h3 {
        font-size: 0.9375rem; /* 15px */
        margin-bottom: var(--pvm-space-xs, 8px);
    }

    .pvm-hero--mcp-chainguard ~ .pvm-problems .pvm-problem-card p {
        font-size: 0.8125rem; /* 13px */
        line-height: 1.4;
    }

    .pvm-hero--mcp-chainguard ~ .pvm-problems .pvm-problem-card__icon {
        width: 44px;
        height: 44px;
        margin-bottom: var(--pvm-space-xs, 8px);
    }

    .pvm-hero--mcp-chainguard ~ .pvm-problems .pvm-problem-card__icon svg {
        width: 20px;
        height: 20px;
    }
}

/* CLAUDE: Mobile (<600px): 1 Spalte - kleine Screens brauchen scrollen */
@media (max-width: 599px) {
    .pvm-hero--mcp-chainguard ~ .pvm-problems {
        padding: var(--pvm-space-lg, 32px) 0;
    }

    .pvm-hero--mcp-chainguard ~ .pvm-problems .pvm-problems__grid {
        grid-template-columns: 1fr !important;
        gap: var(--pvm-space-md, 1.5rem) !important;
    }

    .pvm-hero--mcp-chainguard ~ .pvm-problems .pvm-problem-card {
        padding: var(--pvm-space-md, 16px);
    }
}

/* CLAUDE: Small Mobile (<480px): Noch kompaktere Cards */
@media (max-width: 480px) {
    .pvm-hero--mcp-chainguard ~ .pvm-problems h2 {
        font-size: 1.5rem;
        margin-bottom: var(--pvm-space-lg, 32px);
    }

    .pvm-hero--mcp-chainguard ~ .pvm-problems .pvm-problem-card__icon {
        width: 52px;
        height: 52px;
    }

    .pvm-hero--mcp-chainguard ~ .pvm-problems .pvm-problem-card h3 {
        font-size: 1.0625rem;
    }
}

/* ==========================================================================
   CLAUDE: Dark Mode Support
   CLAUDE: Dual-Selector Pattern - Manueller Toggle + System-Präferenz
   CLAUDE: GitHub Dark Theme Farben für Developer-Fokus
   ========================================================================== */

/* CLAUDE: Manueller Toggle */
html[data-theme="dark"] .pvm-feature-card,
html[data-theme="dark"] .pvm-use-case-card,
html[data-theme="dark"] .pvm-integration-card {
    background: #161b22;
    border: 1px solid #30363d;
}

html[data-theme="dark"] .pvm-feature-card h3,
html[data-theme="dark"] .pvm-use-case-card h3,
html[data-theme="dark"] .pvm-integration-card h3 {
    color: #c9d1d9;
}

html[data-theme="dark"] .pvm-feature-card p,
html[data-theme="dark"] .pvm-use-case-card__scenario,
html[data-theme="dark"] .pvm-integration-card p {
    color: #8b949e;
}

html[data-theme="dark"] .pvm-hero--mcp-chainguard ~ .pvm-problems {
    background: #0d1117;
}

html[data-theme="dark"] .pvm-hero--mcp-chainguard ~ .pvm-problems h2 {
    color: #c9d1d9;
}

html[data-theme="dark"] .pvm-hero--mcp-chainguard ~ .pvm-problems .pvm-problem-card {
    background: #161b22;
    border-color: #30363d;
}

html[data-theme="dark"] .pvm-hero--mcp-chainguard ~ .pvm-problems .pvm-problem-card h3 {
    color: #c9d1d9;
}

html[data-theme="dark"] .pvm-hero--mcp-chainguard ~ .pvm-problems .pvm-problem-card p {
    color: #8b949e;
}

/* CLAUDE: System-Präferenz - Fallback */
@media (prefers-color-scheme: dark) {
    html:not([data-theme="light"]) .pvm-feature-card,
    html:not([data-theme="light"]) .pvm-use-case-card,
    html:not([data-theme="light"]) .pvm-integration-card {
        background: #161b22;
        border: 1px solid #30363d;
    }

    html:not([data-theme="light"]) .pvm-feature-card h3,
    html:not([data-theme="light"]) .pvm-use-case-card h3,
    html:not([data-theme="light"]) .pvm-integration-card h3 {
        color: #c9d1d9;
    }

    html:not([data-theme="light"]) .pvm-feature-card p,
    html:not([data-theme="light"]) .pvm-use-case-card__scenario,
    html:not([data-theme="light"]) .pvm-integration-card p {
        color: #8b949e;
    }

    html:not([data-theme="light"]) .pvm-hero--mcp-chainguard ~ .pvm-problems {
        background: #0d1117;
    }

    html:not([data-theme="light"]) .pvm-hero--mcp-chainguard ~ .pvm-problems h2 {
        color: #c9d1d9;
    }

    html:not([data-theme="light"]) .pvm-hero--mcp-chainguard ~ .pvm-problems .pvm-problem-card {
        background: #161b22;
        border-color: #30363d;
    }

    html:not([data-theme="light"]) .pvm-hero--mcp-chainguard ~ .pvm-problems .pvm-problem-card h3 {
        color: #c9d1d9;
    }

    html:not([data-theme="light"]) .pvm-hero--mcp-chainguard ~ .pvm-problems .pvm-problem-card p {
        color: #8b949e;
    }
}
