/* CLAUDE: SEO-Portale Landing Page Styles */
/* CLAUDE: Datei: assets/css/page-seo-portale.css */
/* CLAUDE: Nutzt Basis-Komponenten aus page-chatbots.css */
/* CLAUDE: Anpassen: Farben über CSS-Variablen in base.css */

/* ==========================================================================
   CLAUDE: 0. CSS-Variablen Override für Emerald-Cyan Farbschema
   CLAUDE: 2025-01-08 - Überschreibt Standard-Lila mit Marketing-Farben
   ========================================================================== */

/* CLAUDE: Service-Cards mit Emerald-Cyan Hover-Gradient */
.pvm-service-card--seo-portale {
    --pvm-hover-gradient-start: #059669;
    --pvm-hover-gradient-end: #0891b2;
}

/* ==========================================================================
   CLAUDE: 1. Hero Section - SEO-Portale spezifisch
   CLAUDE: Grün-Türkis-Blau Gradient für SEO-Thematik
   ========================================================================== */

.pvm-hero--seo-portale {
    background: linear-gradient(135deg, #059669 0%, #0891b2 50%, #1e40af 100%); /* CLAUDE: Emerald → Cyan → Blue */
    color: var(--pvm-bg-white);
    padding: var(--pvm-space-3xl) 0 var(--pvm-space-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.pvm-hero--seo-portale::after { /* CLAUDE: Subtiles Pattern - Link-Netzwerk */
    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--seo-portale .content { position: relative; z-index: 1; }

/* CLAUDE: Kicker/Trust-Badge */
.pvm-hero--seo-portale .pvm-hero-kicker {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    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.3);
    letter-spacing: 0.02em;
}

/* CLAUDE: H1 mit Text-Shadow für bessere Lesbarkeit */
.pvm-hero--seo-portale 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--seo-portale .pvm-hero-text {
    font-size: var(--pvm-font-size-lg);
    max-width: 700px;
    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--seo-portale .pvm-hero-ctas {
    display: flex;
    gap: var(--pvm-space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* CLAUDE: Primary Button */
.pvm-hero--seo-portale .pvm-btn--primary {
    background: #ffffff;
    color: #059669; /* CLAUDE: Emerald passend zum Gradient */
    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--seo-portale .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--seo-portale .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--seo-portale .pvm-btn--outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================================================================
   CLAUDE: 2. Education Section - Was sind Content-Platzierungen?
   CLAUDE: Neue Sektion mit Vergleichstabelle und Qualitätsfaktoren
   ========================================================================== */

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

.pvm-seo-education h2 {
    text-align: center;
    margin-bottom: var(--pvm-space-xs);
}

.pvm-seo-education .pvm-section-subtitle {
    text-align: center;
    margin-bottom: var(--pvm-space-xl);
    color: var(--pvm-text-muted);
}

/* CLAUDE: 2-Spalten Grid für Education Cards */
.pvm-education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--pvm-space-lg);
}

/* CLAUDE: Education Card Basis */
.pvm-education-card {
    background: var(--pvm-bg-light);
    padding: var(--pvm-space-lg);
    border-radius: 12px;
    border: 1px solid var(--pvm-border);
}

.pvm-education-card h3 {
    font-size: var(--pvm-font-size-lg);
    margin-bottom: var(--pvm-space-md);
    color: var(--pvm-text);
}

/* CLAUDE: Vergleichstabelle DoFollow vs NoFollow */
.pvm-comparison-table {
    width: 100%;
}

.pvm-comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--pvm-space-xs);
    margin-bottom: var(--pvm-space-xs);
}

.pvm-comparison-row--header {
    font-weight: 600;
    margin-bottom: var(--pvm-space-sm);
}

.pvm-comparison-cell {
    padding: var(--pvm-space-xs) var(--pvm-space-sm);
    background: var(--pvm-bg-white);
    border-radius: 6px;
    font-size: var(--pvm-font-size-sm);
    text-align: center;
}

.pvm-comparison-row--header .pvm-comparison-cell {
    background: transparent;
}

.pvm-comparison-cell--dofollow {
    color: #059669; /* CLAUDE: Grün für positiv */
    font-weight: 600;
}

.pvm-comparison-cell--nofollow {
    color: var(--pvm-text-muted);
    font-weight: 600;
}

.pvm-comparison-cell--positive {
    color: #059669;
    background: rgba(5, 150, 105, 0.1);
}

.pvm-comparison-cell--neutral {
    color: var(--pvm-text-muted);
    background: rgba(107, 114, 128, 0.1);
}

.pvm-education-note {
    margin-top: var(--pvm-space-md);
    padding: var(--pvm-space-sm);
    background: rgba(5, 150, 105, 0.1);
    border-radius: 6px;
    font-size: var(--pvm-font-size-sm);
    color: #059669;
    text-align: center;
}

/* CLAUDE: Qualitätsfaktoren Liste */
.pvm-quality-factors {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pvm-quality-factors li {
    display: flex;
    gap: var(--pvm-space-sm);
    padding: var(--pvm-space-sm) 0;
    border-bottom: 1px solid var(--pvm-border);
}

.pvm-quality-factors li:last-child {
    border-bottom: none;
}

.pvm-factor-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #059669 0%, #0891b2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.pvm-quality-factors li div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pvm-quality-factors li strong {
    font-size: var(--pvm-font-size-base);
    color: var(--pvm-text);
}

.pvm-quality-factors li span {
    font-size: var(--pvm-font-size-sm);
    color: var(--pvm-text-muted);
}

/* ==========================================================================
   CLAUDE: 3. Services Section - SEO-Portale spezifisch
   CLAUDE: Nutzt .pvm-services-grid--4col aus page-chatbots.css
   ========================================================================== */

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

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

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

/* CLAUDE: Service-Card SEO-Portale-Variante */
.pvm-service-card--seo-portale {
    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--seo-portale:hover {
    border-color: #059669; /* CLAUDE: Emerald Akzent */
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.25);
}

.pvm-service-card--seo-portale h3 {
    font-size: var(--pvm-font-size-lg);
    margin-bottom: var(--pvm-space-xs);
    color: #059669; /* CLAUDE: Emerald Akzent */
}

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

/* ==========================================================================
   CLAUDE: FIX - Services Grid 2x2 Layout auf Desktop
   CLAUDE: Problem: auto-fit erzeugt 3:1 bei 4 Cards auf breiten Screens
   CLAUDE: Lösung: Festes 2-Spalten-Grid für optimale 2x2 Darstellung
   ========================================================================== */
.pvm-seo-portale-services .pvm-services-grid--4col {
    grid-template-columns: repeat(2, 1fr); /* CLAUDE: Festes 2x2 Grid */
    max-width: 1000px; /* CLAUDE: Breitenbegrenzung für bessere Proportionen */
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .pvm-seo-portale-services .pvm-services-grid--4col {
        grid-template-columns: 1fr; /* CLAUDE: Single column auf Mobile */
        max-width: 100%;
    }
}

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

@media (max-width: 768px) {
    /* CLAUDE: Hero Mobile */
    .pvm-hero--seo-portale {
        padding: var(--pvm-space-xl) 0 var(--pvm-space-lg);
    }

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

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

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

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

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

    /* CLAUDE: Education Grid Mobile */
    .pvm-education-grid {
        grid-template-columns: 1fr;
    }

    /* CLAUDE: Comparison Table Mobile - Kleinere Schrift */
    .pvm-comparison-cell {
        font-size: var(--pvm-font-size-xs);
        padding: var(--pvm-space-2xs) var(--pvm-space-xs);
    }
}

@media (max-width: 480px) {
    /* CLAUDE: Sehr kleine Screens */
    .pvm-comparison-row {
        grid-template-columns: 1.2fr 1fr 1fr;
    }
}

/* ==========================================================================
   CLAUDE: 5. Dark Mode Support
   CLAUDE: Migriert am 2026-01-09 auf einheitliche Selektoren
   ========================================================================== */

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

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

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

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

html[data-theme="dark"] .pvm-comparison-cell--positive {
    background: rgba(5, 150, 105, 0.2);
}

html[data-theme="dark"] .pvm-comparison-cell--neutral {
    background: rgba(107, 114, 128, 0.2);
}

html[data-theme="dark"] .pvm-quality-factors li {
    border-color: var(--color-border-primary);
}

html[data-theme="dark"] .pvm-quality-factors li strong {
    color: var(--color-text-primary);
}

html[data-theme="dark"] .pvm-quality-factors li span {
    color: var(--color-text-secondary);
}

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

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

html[data-theme="dark"] .pvm-service-card--seo-portale h3 {
    color: #34d399; /* CLAUDE: Heller Emerald für Dark Mode */
}

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

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

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

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

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

    html:not([data-theme="light"]) .pvm-comparison-cell--positive {
        background: rgba(5, 150, 105, 0.2);
    }

    html:not([data-theme="light"]) .pvm-comparison-cell--neutral {
        background: rgba(107, 114, 128, 0.2);
    }

    html:not([data-theme="light"]) .pvm-quality-factors li {
        border-color: var(--color-border-primary);
    }

    html:not([data-theme="light"]) .pvm-quality-factors li strong {
        color: var(--color-text-primary);
    }

    html:not([data-theme="light"]) .pvm-quality-factors li span {
        color: var(--color-text-secondary);
    }

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

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

    html:not([data-theme="light"]) .pvm-service-card--seo-portale h3 {
        color: #34d399;
    }

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

/* ==========================================================================
   CLAUDE: 6. Split-Layout Override für SEO-Portale Hero
   CLAUDE: Text links (1.1fr), Bild rechts (0.9fr)
   CLAUDE: Mobile: Bild oben, Text unten, zentriert
   ========================================================================== */

/* CLAUDE: Text-Ausrichtung links für Split-Layout */
.pvm-hero--seo-portale.pvm-hero--split {
    text-align: left;
}

/* CLAUDE: Grid-Layout - Text breiter als Bild */
.pvm-hero--seo-portale.pvm-hero--split .pvm-hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--pvm-space-xl);
    align-items: center;
}

/* CLAUDE: CTAs links ausrichten statt zentriert */
.pvm-hero--seo-portale.pvm-hero--split .pvm-hero-ctas {
    justify-content: flex-start;
}

/* CLAUDE: Hero-Image Container mit Schatten und Radius */
.pvm-hero--seo-portale.pvm-hero--split .pvm-hero__image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* CLAUDE: Bild 100% Breite, automatische Höhe */
.pvm-hero--seo-portale.pvm-hero--split .pvm-hero__img {
    width: 100%;
    height: auto;
    display: block;
}

/* CLAUDE: Mobile Anpassungen - Bild oben, zentrierter Text */
@media (max-width: 768px) {
    /* CLAUDE: Zurück zu zentriertem Text auf Mobile */
    .pvm-hero--seo-portale.pvm-hero--split {
        text-align: center;
    }

    /* CLAUDE: Single Column - Bild über Text */
    .pvm-hero--seo-portale.pvm-hero--split .pvm-hero__grid {
        grid-template-columns: 1fr;
        gap: var(--pvm-space-md);
    }

    /* CLAUDE: Bild zuerst anzeigen (Order -1) */
    .pvm-hero--seo-portale.pvm-hero--split .pvm-hero__image {
        order: -1;
    }

    /* CLAUDE: CTAs zentrieren auf Mobile */
    .pvm-hero--seo-portale.pvm-hero--split .pvm-hero-ctas {
        justify-content: center;
    }
}

/* 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 */
}

/* ==========================================================================
   CLAUDE: 7. Solution Highlight Section
   CLAUDE: Grüne Hervorhebungs-Box für die Lösung
   ========================================================================== */

.pvm-solution-highlight {
    padding: var(--pvm-space-xl) 0;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1) 0%, rgba(8, 145, 178, 0.1) 100%);
}

.pvm-solution-highlight__inner {
    display: flex;
    align-items: center;
    gap: var(--pvm-space-lg);
    max-width: 900px;
    margin: 0 auto;
    padding: var(--pvm-space-lg);
    background: var(--pvm-bg-white);
    border-radius: 16px;
    border: 2px solid #059669;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.15);
}

.pvm-solution-highlight__icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #059669 0%, #0891b2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.pvm-solution-highlight__icon svg {
    width: 48px;
    height: 48px;
}

.pvm-solution-highlight__content h2 {
    font-size: var(--pvm-font-size-xl);
    margin-bottom: var(--pvm-space-xs);
    color: #059669;
}

.pvm-solution-highlight__content p {
    margin: 0;
    color: var(--pvm-text-muted);
    font-size: var(--pvm-font-size-base);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .pvm-solution-highlight__inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   CLAUDE: 8. Benefits Section mit Benefit-Cards
   CLAUDE: 6-Spalten Grid für Benefits
   ========================================================================== */

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

.pvm-benefits h2 {
    text-align: center;
    margin-bottom: var(--pvm-space-xl);
    color: var(--pvm-text); /* CLAUDE: Dunkle Farbe (#333) für weißen Hintergrund - Override von page-chatbots.css */
    text-shadow: none; /* CLAUDE: Kein Text-Shadow auf weißem Hintergrund */
}

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

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

.pvm-benefit-card:hover {
    border-color: #059669;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.15);
    transform: translateY(-2px);
}

.pvm-benefit-card__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #059669 0%, #0891b2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: var(--pvm-space-sm);
}

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

.pvm-benefit-card h3 {
    font-size: var(--pvm-font-size-base);
    font-weight: 600;
    margin-bottom: var(--pvm-space-xs);
    color: var(--pvm-text);
}

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

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

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

/* ==========================================================================
   CLAUDE: 9. Reference Teaser Section
   CLAUDE: Hervorhebung des eigenen Portfolios als Referenz
   ========================================================================== */

.pvm-reference-teaser {
    padding: var(--pvm-space-2xl) 0;
    background: linear-gradient(135deg, #059669 0%, #0891b2 50%, #1e40af 100%);
    color: #ffffff;
}

.pvm-reference-teaser__inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--pvm-space-xl);
    align-items: center;
}

.pvm-reference-teaser__content h2 {
    font-size: var(--pvm-font-size-2xl);
    margin-bottom: var(--pvm-space-sm);
    color: #ffffff;
}

.pvm-reference-teaser__content p {
    font-size: var(--pvm-font-size-base);
    margin-bottom: var(--pvm-space-md);
    color: #ffffff; /* CLAUDE: Explizit weiß für maximalen Kontrast */
    line-height: 1.6;
}

.pvm-reference-teaser__stats {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--pvm-space-lg);
    display: flex;
    gap: var(--pvm-space-lg);
    flex-wrap: wrap;
}

.pvm-reference-teaser__stats li {
    font-size: var(--pvm-font-size-sm);
}

.pvm-reference-teaser__stats strong {
    display: block;
    font-size: var(--pvm-font-size-xl);
    font-weight: 700;
}

.pvm-reference-teaser .pvm-btn--primary {
    background: #ffffff;
    color: #059669;
    border: 2px solid #ffffff;
}

.pvm-reference-teaser .pvm-btn--primary:hover {
    background: transparent;
    color: #ffffff;
}

/* CLAUDE: Kategorie-Badges für visuelle Darstellung */
.pvm-category-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--pvm-space-xs);
    justify-content: center;
}

.pvm-category-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: var(--pvm-font-size-sm);
    font-weight: 500;
    color: #ffffff;
    transition: all 0.3s ease;
}

.pvm-category-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .pvm-reference-teaser__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pvm-reference-teaser__stats {
        justify-content: center;
    }

    .pvm-reference-teaser__visual {
        order: -1;
    }
}

/* ==========================================================================
   CLAUDE: 10. Hosting Info Section
   CLAUDE: Hervorhebungs-Box für Hosting-Angebot
   ========================================================================== */

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

.pvm-hosting-info__card {
    display: flex;
    align-items: center;
    gap: var(--pvm-space-lg);
    max-width: 800px;
    margin: 0 auto;
    padding: var(--pvm-space-lg);
    background: var(--pvm-bg-white);
    border-radius: 12px;
    border: 1px solid var(--pvm-border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pvm-hosting-info__icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #059669 0%, #0891b2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.pvm-hosting-info__icon svg {
    width: 32px;
    height: 32px;
}

.pvm-hosting-info__content h3 {
    font-size: var(--pvm-font-size-lg);
    margin-bottom: var(--pvm-space-2xs);
    color: var(--pvm-text);
}

.pvm-hosting-info__content p {
    margin: 0;
    color: var(--pvm-text-muted);
    font-size: var(--pvm-font-size-sm);
    line-height: 1.5;
}

/* CLAUDE: CTA-Link zum SEO Cloud CMS */
.pvm-hosting-info__cta {
    margin-top: var(--pvm-space-sm) !important;
    padding-top: var(--pvm-space-sm);
    border-top: 1px solid var(--pvm-border);
    font-size: var(--pvm-font-size-sm);
    color: var(--pvm-text-muted);
}

.pvm-hosting-info__cta a {
    color: #059669; /* CLAUDE: Emerald passend zum Seitenthema */
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.pvm-hosting-info__cta a:hover {
    color: #047857;
    text-decoration: underline;
}

@media (max-width: 576px) {
    .pvm-hosting-info__card {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   CLAUDE: 11. Service Cards mit Icons
   CLAUDE: Erweiterung für Portal-Typen mit Icons
   ========================================================================== */

.pvm-service-card--with-icon {
    text-align: center;
}

.pvm-service-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--pvm-space-md);
    background: linear-gradient(135deg, #059669 0%, #0891b2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.pvm-service-card--with-icon:hover .pvm-service-card__icon {
    transform: scale(1.1);
}

.pvm-service-card__icon svg {
    width: 32px;
    height: 32px;
}

/* ==========================================================================
   CLAUDE: 12. Dark Mode für neue Sektionen
   CLAUDE: Migriert am 2026-01-09
   ========================================================================== */

/* CLAUDE: Manueller Toggle */
html[data-theme="dark"] .pvm-solution-highlight {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.15) 0%, rgba(8, 145, 178, 0.15) 100%);
}

html[data-theme="dark"] .pvm-solution-highlight__inner {
    background: var(--color-bg-secondary);
    border-color: #34d399;
}

html[data-theme="dark"] .pvm-solution-highlight__content h2 {
    color: #34d399;
}

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

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

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

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

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

html[data-theme="dark"] .pvm-hosting-info {
    background: var(--color-bg-secondary);
}

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

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

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

/* CLAUDE: System-Präferenz - Fallback */
@media (prefers-color-scheme: dark) {
    html:not([data-theme="light"]) .pvm-solution-highlight {
        background: linear-gradient(135deg, rgba(5, 150, 105, 0.15) 0%, rgba(8, 145, 178, 0.15) 100%);
    }

    html:not([data-theme="light"]) .pvm-solution-highlight__inner {
        background: var(--color-bg-secondary);
        border-color: #34d399;
    }

    html:not([data-theme="light"]) .pvm-solution-highlight__content h2 {
        color: #34d399;
    }

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

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

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

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

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

    html:not([data-theme="light"]) .pvm-hosting-info {
        background: var(--color-bg-secondary);
    }

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

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

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