/* CLAUDE: Consulting Hub Page - Dediziertes CSS */
/* CLAUDE: Erstellt: 2026-01-08 */
/* CLAUDE: Anpassen: Variablen, Breakpoints, Animationen */
/* CLAUDE: Nutzt bestehende Styles aus base.css und erweitert sie */

/* ==========================================================================
   CLAUDE: CSS Custom Properties (Consulting-spezifisch)
   ========================================================================== */

:root {
    --pvm-consulting-gradient: linear-gradient(135deg, #8C0AB7 0%, #3B82F6 100%);
    --pvm-consulting-accent: #60a5fa;
}

/* ==========================================================================
   CLAUDE: Hero Section - Consulting Hub Spezifisch
   ========================================================================== */

/* CLAUDE: Consulting Hero mit Split-Layout */
.pvm-hero--consulting {
    background: var(--pvm-bg-light, #f8f9fa);
    padding: var(--pvm-space-2xl, 64px) 0;
    position: relative;
    overflow: hidden;
}

/* CLAUDE: Hero Grid für Split-Layout */
.pvm-hero--consulting .pvm-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--pvm-space-xl, 48px);
    align-items: center;
}

/* CLAUDE: Hero Content Links */
.pvm-hero--consulting .pvm-hero__content {
    max-width: 560px;
}

/* CLAUDE: Kicker Text mit Badge-Style */
.pvm-hero--consulting .pvm-hero-kicker {
    font-size: var(--pvm-font-size-sm, 0.875rem);
    color: var(--pvm-primary, #8C0AB7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--pvm-space-sm, 16px);
    display: inline-block;
}

/* CLAUDE: Hero Headline */
.pvm-hero--consulting h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: var(--pvm-space-md, 24px);
    color: var(--pvm-text, #1a1a2e);
}

/* CLAUDE: Hero Text */
.pvm-hero--consulting .pvm-hero-text {
    font-size: var(--pvm-font-size-lg, 1.125rem);
    color: var(--pvm-text-muted, #666);
    line-height: 1.7;
    margin-bottom: var(--pvm-space-lg, 32px);
}

/* CLAUDE: Hero CTAs */
.pvm-hero--consulting .pvm-hero-ctas {
    display: flex;
    gap: var(--pvm-space-sm, 16px);
    flex-wrap: wrap;
}

/* CLAUDE: Hero Bild Container */
.pvm-hero--consulting .pvm-hero__image {
    position: relative;
}

/* CLAUDE: Hero SVG Image */
.pvm-hero--consulting .pvm-hero__img {
    width: 100%;
    height: auto;
    border-radius: var(--pvm-radius-lg, 12px);
}

/* ==========================================================================
   CLAUDE: Services Grid - 7 Karten Layout
   ========================================================================== */

.pvm-consulting-services {
    padding: var(--pvm-space-2xl, 64px) 0;
    background: var(--pvm-bg-white, #fff);
}

.pvm-consulting-services h2 {
    text-align: center;
    margin-bottom: var(--pvm-space-xs, 8px);
}

.pvm-consulting-services .pvm-section-subtitle {
    text-align: center;
    color: var(--pvm-text-muted, #666);
    margin-bottom: var(--pvm-space-xl, 48px);
}

/* ==========================================================================
   CLAUDE: 7-Karten Grid - KOMPLETT ÜBERARBEITET (2026-01-09)
   CLAUDE: Problem: Ungleiche Card-Breiten und -Höhen über verschiedene Viewports
   CLAUDE: Lösung: minmax(0, 1fr) verhindert Content-basierte Größenanpassung
   CLAUDE: + Explizite subgrid-ähnliche Struktur für 7 Cards
   ========================================================================== */

/* CLAUDE: Basis-Grid (Desktop Medium: 1200-1399px) - 3 Spalten
   CLAUDE: minmax(0, 1fr) zwingt alle Spalten auf exakt gleiche Breite */
.pvm-consulting-services__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: var(--pvm-space-lg, 32px);
    align-items: stretch;
}

/* CLAUDE: Letzte Karte (7.) zentriert in der 3. Zeile bei 3-Spalten-Layout
   CLAUDE: nth-child(3n + 1) = 1, 4, 7 → nur Card 7 ist allein in Zeile 3 */
.pvm-consulting-services__grid > .pvm-service-card:last-child:nth-child(3n + 1) {
    grid-column: 2;
}

/* CLAUDE: Service Card für Consulting
   CLAUDE: FIX 2026-01-08: height: 100% statt min-height für Grid-Stretch
   CLAUDE: Flexbox mit flex-grow auf p-Element für gleichmäßige Verteilung */
.pvm-service-card--consulting {
    display: flex;
    flex-direction: column;
    height: 100%; /* CLAUDE: Stretch to fill grid cell */
    min-height: 280px; /* CLAUDE: Minimum für kurze Cards */
    background: var(--pvm-bg-white, #fff);
    border: 1px solid var(--pvm-border, #e5e7eb);
    border-radius: var(--pvm-radius-lg, 12px);
    padding: var(--pvm-space-lg, 32px);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.pvm-service-card--consulting:hover {
    border-color: var(--pvm-primary, #8C0AB7);
    box-shadow: 0 8px 32px rgba(140, 10, 183, 0.12);
    transform: translateY(-4px);
}

/* CLAUDE: Service Card Icon */
.pvm-service-card--consulting .pvm-service-card__icon {
    width: 56px;
    height: 56px;
    background: var(--pvm-gradient, linear-gradient(135deg, #8C0AB7 0%, #3B82F6 100%));
    border-radius: var(--pvm-radius-md, 8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: var(--pvm-space-md, 24px);
}

.pvm-service-card--consulting .pvm-service-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* CLAUDE: Service Card Content */
.pvm-service-card--consulting h3 {
    font-size: var(--pvm-font-size-xl, 1.25rem);
    margin-bottom: var(--pvm-space-xs, 8px);
    color: var(--pvm-text, #1a1a2e);
}

.pvm-service-card--consulting .pvm-service-card__subtitle {
    display: block;
    font-size: var(--pvm-font-size-sm, 0.875rem);
    color: var(--pvm-primary, #8C0AB7);
    font-weight: 500;
    margin-bottom: var(--pvm-space-sm, 16px);
}

.pvm-service-card--consulting p {
    font-size: var(--pvm-font-size-sm, 0.875rem);
    color: var(--pvm-text-muted, #666);
    line-height: 1.6;
    margin-bottom: var(--pvm-space-md, 24px);
    flex-grow: 1;
}

/* CLAUDE: Service Card CTA */
.pvm-service-card--consulting .pvm-service-card__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--pvm-space-xs, 8px);
    color: var(--pvm-primary, #8C0AB7);
    font-weight: 600;
    font-size: var(--pvm-font-size-sm, 0.875rem);
    margin-top: auto;
}

.pvm-service-card--consulting .pvm-service-card__cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.pvm-service-card--consulting:hover .pvm-service-card__cta svg {
    transform: translateX(4px);
}

/* ==========================================================================
   CLAUDE: Testimonials Section (NEU)
   ========================================================================== */

.pvm-testimonials--consulting {
    padding: var(--pvm-space-2xl, 64px) 0;
    background: var(--pvm-bg-light, #f8f9fa);
}

.pvm-testimonials--consulting h2 {
    text-align: center;
    margin-bottom: var(--pvm-space-xl, 48px);
}

/* CLAUDE: Testimonials Grid */
.pvm-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--pvm-space-lg, 32px);
}

/* CLAUDE: Testimonial Card */
.pvm-testimonial {
    background: var(--pvm-bg-white, #fff);
    border-radius: var(--pvm-radius-lg, 12px);
    padding: var(--pvm-space-xl, 48px) var(--pvm-space-lg, 32px);
    box-shadow: var(--pvm-shadow-sm, 0 2px 8px rgba(0,0,0,0.08));
    position: relative;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* CLAUDE: Anführungszeichen Deko */
.pvm-testimonial::before {
    content: '"';
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--pvm-primary, #8C0AB7);
    opacity: 0.15;
    position: absolute;
    top: 16px;
    left: 24px;
    line-height: 1;
}

/* CLAUDE: Quote Text */
.pvm-testimonial p {
    font-size: var(--pvm-font-size-md, 1rem);
    color: var(--pvm-text, #1a1a2e);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: var(--pvm-space-lg, 32px);
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

/* CLAUDE: Citation Block */
.pvm-testimonial cite {
    display: flex;
    align-items: center;
    gap: var(--pvm-space-sm, 16px);
    font-style: normal;
    margin-top: auto;
}

/* CLAUDE: Avatar (Initialen) */
.pvm-testimonial__avatar {
    width: 48px;
    height: 48px;
    background: var(--pvm-gradient, linear-gradient(135deg, #8C0AB7 0%, #3B82F6 100%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: var(--pvm-font-size-md, 1rem);
    flex-shrink: 0;
}

/* CLAUDE: Name und Rolle */
.pvm-testimonial__info {
    display: flex;
    flex-direction: column;
}

.pvm-testimonial__name {
    font-weight: 600;
    color: var(--pvm-text, #1a1a2e);
    font-size: var(--pvm-font-size-md, 1rem);
}

.pvm-testimonial__role {
    font-size: var(--pvm-font-size-sm, 0.875rem);
    color: var(--pvm-text-muted, #666);
}

/* ==========================================================================
   CLAUDE: Lead-Magnet Section (NEU)
   ========================================================================== */

.pvm-lead-magnet--consulting {
    padding: var(--pvm-space-2xl, 64px) 0;
    background: linear-gradient(135deg, #0f2439 0%, #1a365d 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

/* CLAUDE: Deko-Elemente im Hintergrund */
.pvm-lead-magnet--consulting::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.pvm-lead-magnet--consulting::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(140, 10, 183, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* CLAUDE: Lead-Magnet Grid */
.pvm-lead-magnet__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--pvm-space-2xl, 64px);
    align-items: center;
    position: relative;
    z-index: 1;
}

/* CLAUDE: Lead-Magnet Content */
.pvm-lead-magnet__content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: var(--pvm-space-md, 24px);
    color: white;
}

.pvm-lead-magnet__content p {
    font-size: var(--pvm-font-size-lg, 1.125rem);
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: var(--pvm-space-lg, 32px);
}

/* CLAUDE: Checklist Features */
.pvm-lead-magnet__features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--pvm-space-lg, 32px) 0;
}

.pvm-lead-magnet__features li {
    display: flex;
    align-items: center;
    gap: var(--pvm-space-sm, 16px);
    padding: var(--pvm-space-xs, 8px) 0;
    font-size: var(--pvm-font-size-md, 1rem);
}

.pvm-lead-magnet__features li svg {
    width: 20px;
    height: 20px;
    color: #fbbf24;
    flex-shrink: 0;
}

/* CLAUDE: Lead-Magnet Formular */
.pvm-lead-magnet__form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--pvm-radius-lg, 12px);
    padding: var(--pvm-space-xl, 48px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.pvm-lead-magnet__form h3 {
    font-size: var(--pvm-font-size-xl, 1.25rem);
    margin-bottom: var(--pvm-space-md, 24px);
    color: white;
    text-align: center;
}

/* CLAUDE: Formular-Felder */
.pvm-lead-magnet__form .pvm-form-group {
    margin-bottom: var(--pvm-space-md, 24px);
}

.pvm-lead-magnet__form label {
    display: block;
    font-size: var(--pvm-font-size-sm, 0.875rem);
    margin-bottom: var(--pvm-space-xs, 8px);
    opacity: 0.9;
}

.pvm-lead-magnet__form input,
.pvm-lead-magnet__form select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--pvm-radius-md, 8px);
    color: white;
    font-size: var(--pvm-font-size-md, 1rem);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.pvm-lead-magnet__form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.pvm-lead-magnet__form input:focus,
.pvm-lead-magnet__form select:focus {
    outline: none;
    border-color: var(--pvm-consulting-accent, #60a5fa);
    background: rgba(255, 255, 255, 0.15);
}

.pvm-lead-magnet__form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.pvm-lead-magnet__form select option {
    background: #1a365d;
    color: white;
}

/* CLAUDE: Checkbox */
.pvm-lead-magnet__form .pvm-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: var(--pvm-space-sm, 16px);
    font-size: var(--pvm-font-size-sm, 0.875rem);
    margin-bottom: var(--pvm-space-md, 24px);
}

.pvm-lead-magnet__form .pvm-checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
}

.pvm-lead-magnet__form .pvm-checkbox-group a {
    color: var(--pvm-consulting-accent, #60a5fa);
    text-decoration: underline;
}

/* CLAUDE: Submit Button */
.pvm-lead-magnet__form .pvm-btn--submit {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a1a2e;
    border: none;
    border-radius: var(--pvm-radius-md, 8px);
    font-size: var(--pvm-font-size-md, 1rem);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pvm-lead-magnet__form .pvm-btn--submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.3);
}

/* ==========================================================================
   CLAUDE: Lead-Magnet Section - KONTRAST-FIX (2026-01-09)
   CLAUDE: Problem: CF7 und Content-Texte erben Standard-Theme-Farbe (#333)
   CLAUDE: statt weiß auf dunklem Hintergrund → Text war fast unsichtbar
   CLAUDE: Lösung: Explizite Farbüberschreibungen mit hoher Spezifität
   ========================================================================== */

/* CLAUDE: Content-Bereich (linke Spalte) - Text muss weiß sein */
.pvm-lead-magnet--consulting .pvm-lead-magnet__content,
.pvm-lead-magnet--consulting .pvm-lead-magnet__content p,
.pvm-lead-magnet--consulting .pvm-lead-magnet__content h2,
.pvm-lead-magnet--consulting .pvm-lead-magnet__content li {
    color: #ffffff !important;
}

/* CLAUDE: Content-Paragraph - weiß mit leichter Transparenz für Hierarchie */
.pvm-lead-magnet--consulting .pvm-lead-magnet__content > p {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* CLAUDE: Contact Form 7 Integration - ALLE Textelemente weiß */
.pvm-lead-magnet--consulting .wpcf7-form,
.pvm-lead-magnet--consulting .wpcf7-form p,
.pvm-lead-magnet--consulting .wpcf7-form label,
.pvm-lead-magnet--consulting .wpcf7-form span,
.pvm-lead-magnet--consulting .wpcf7-form .wpcf7-list-item-label {
    color: #ffffff !important;
}

/* CLAUDE: CF7 Labels mit besserer Lesbarkeit */
.pvm-lead-magnet--consulting .wpcf7-form label {
    display: block;
    font-size: var(--pvm-font-size-sm, 0.875rem);
    font-weight: 500;
    margin-bottom: var(--pvm-space-xs, 8px);
    color: rgba(255, 255, 255, 0.95) !important;
}

/* CLAUDE: CF7 Pflichtfeld-Sternchen in Akzentfarbe */
.pvm-lead-magnet--consulting .wpcf7-form .wpcf7-validates-as-required + span,
.pvm-lead-magnet--consulting .wpcf7-form abbr {
    color: #fbbf24 !important;
    text-decoration: none;
}

/* CLAUDE: CF7 Input-Felder - konsistentes Styling */
.pvm-lead-magnet--consulting .wpcf7-form input[type="text"],
.pvm-lead-magnet--consulting .wpcf7-form input[type="email"],
.pvm-lead-magnet--consulting .wpcf7-form input[type="tel"],
.pvm-lead-magnet--consulting .wpcf7-form textarea,
.pvm-lead-magnet--consulting .wpcf7-form select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: var(--pvm-radius-md, 8px);
    color: #ffffff !important;
    font-size: var(--pvm-font-size-md, 1rem);
    transition: border-color 0.3s ease, background 0.3s ease;
}

/* CLAUDE: CF7 Placeholder - heller für bessere Sichtbarkeit */
.pvm-lead-magnet--consulting .wpcf7-form input::placeholder,
.pvm-lead-magnet--consulting .wpcf7-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* CLAUDE: CF7 Fokus-Zustand */
.pvm-lead-magnet--consulting .wpcf7-form input:focus,
.pvm-lead-magnet--consulting .wpcf7-form textarea:focus,
.pvm-lead-magnet--consulting .wpcf7-form select:focus {
    outline: none;
    border-color: var(--pvm-consulting-accent, #60a5fa) !important;
    background: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
}

/* CLAUDE: CF7 Submit Button - Gelb-Orange Gradient */
.pvm-lead-magnet--consulting .wpcf7-form input[type="submit"],
.pvm-lead-magnet--consulting .wpcf7-form button[type="submit"],
.pvm-lead-magnet--consulting .wpcf7-submit {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
    color: #1a1a2e !important;
    border: none !important;
    border-radius: var(--pvm-radius-md, 8px);
    font-size: var(--pvm-font-size-md, 1rem);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pvm-lead-magnet--consulting .wpcf7-form input[type="submit"]:hover,
.pvm-lead-magnet--consulting .wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.3);
}

/* CLAUDE: CF7 Checkbox/Acceptance - Datenschutz-Hinweis */
.pvm-lead-magnet--consulting .wpcf7-form .wpcf7-acceptance,
.pvm-lead-magnet--consulting .wpcf7-form .wpcf7-acceptance span,
.pvm-lead-magnet--consulting .wpcf7-form .wpcf7-acceptance label {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: var(--pvm-font-size-sm, 0.875rem);
}

/* CLAUDE: CF7 Datenschutz-Link in Akzentfarbe */
.pvm-lead-magnet--consulting .wpcf7-form a {
    color: var(--pvm-consulting-accent, #60a5fa) !important;
    text-decoration: underline;
}

.pvm-lead-magnet--consulting .wpcf7-form a:hover {
    color: #93c5fd !important;
}

/* CLAUDE: CF7 Fehlermeldungen - gut sichtbar */
.pvm-lead-magnet--consulting .wpcf7-form .wpcf7-not-valid-tip {
    color: #fca5a5 !important;
    font-size: var(--pvm-font-size-sm, 0.875rem);
    margin-top: 4px;
}

/* CLAUDE: CF7 Erfolgsmeldung */
.pvm-lead-magnet--consulting .wpcf7-form .wpcf7-response-output {
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--pvm-radius-md, 8px);
    padding: var(--pvm-space-md, 24px);
    margin-top: var(--pvm-space-md, 24px);
}

/* CLAUDE: CF7 Spinner/Loading */
.pvm-lead-magnet--consulting .wpcf7-form .wpcf7-spinner {
    background-color: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   CLAUDE: Process Timeline Section (5-Schritte KI-Transformation)
   CLAUDE: Horizontale Timeline auf Desktop, vertikal auf Mobile
   CLAUDE: Mit Verbindungslinie und Hover-Effekten
   ========================================================================== */

.pvm-process {
    padding: var(--pvm-space-2xl, 64px) 0;
    background: var(--pvm-bg-light, #f8f9fa);
}

.pvm-process h2 {
    text-align: center;
    margin-bottom: var(--pvm-space-xl, 48px);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
}

/* CLAUDE: Timeline Container - 2026-01-09: Responsive Grid mit einheitlichen Card-Höhen
   CLAUDE: minmax(0, 1fr) verhindert Content-basierte Größenanpassung
   CLAUDE: align-items: stretch erzwingt gleiche Höhen für alle Steps */
.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: 1100px;
    margin: 0 auto;
    padding: 0 var(--pvm-space-md, 24px);
}

/* CLAUDE: Verbindungslinie (Gradient) */
.pvm-process__timeline::before {
    content: '';
    position: absolute;
    top: 24px; /* CLAUDE: Mitte der Nummer (48px / 2) */
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--pvm-primary, #8C0AB7) 10%,
        var(--pvm-secondary, #3B82F6) 90%,
        transparent 100%
    );
    border-radius: 2px;
    z-index: 0;
}

/* CLAUDE: Einzelner Prozess-Schritt - 2026-01-09: Einheitliche Höhen + Text-Overflow Fix
   CLAUDE: height: 100% + flex-grow auf p-Element für gleichmäßige Verteilung
   CLAUDE: overflow-wrap verhindert horizontales Overflow bei langen Wörtern */
.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 */
}

/* CLAUDE: Nummer Badge mit Gradient */
.pvm-process-step__number {
    width: 48px;
    height: 48px;
    background: var(--pvm-gradient, linear-gradient(135deg, #8C0AB7 0%, #3B82F6 100%));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--pvm-font-size-lg, 1.125rem);
    font-weight: 700;
    margin: 0 auto var(--pvm-space-md, 24px);
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(140, 10, 183, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* CLAUDE: Hover-Effekt auf Nummer */
.pvm-process-step:hover .pvm-process-step__number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(140, 10, 183, 0.35);
}

/* CLAUDE: Step Titel */
.pvm-process-step h3 {
    font-size: var(--pvm-font-size-md, 1rem);
    margin-bottom: var(--pvm-space-xs, 8px);
    color: var(--pvm-text, #1a1a2e);
    font-weight: 600;
}

/* CLAUDE: Step Beschreibung - 2026-01-09: flex-grow für einheitliche Card-Höhen */
.pvm-process-step p {
    font-size: var(--pvm-font-size-sm, 0.875rem);
    color: var(--pvm-text-muted, #666);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;                            /* CLAUDE: Füllt verfügbaren Platz */
    overflow-wrap: break-word;               /* CLAUDE: Lange Wörter umbrechen */
}

/* ==========================================================================
   CLAUDE: Process Timeline - Responsive Breakpoints (2026-01-09 ÜBERARBEITET)
   CLAUDE: Optimierte Spaltenverteilung für bessere Lesbarkeit
   CLAUDE: 5 Spalten nur bei ausreichend Platz (≥1200px)
   ========================================================================== */

/* CLAUDE: Desktop Medium (1000-1199px) - 3 Spalten statt 5!
   CLAUDE: Bei 5 Spalten sind die Cards nur ~140px breit - zu eng für Text */
@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-lg, 2rem);
        max-width: 900px;
        padding: 0;
    }

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

    .pvm-process-step__number {
        width: 44px;
        height: 44px;
        font-size: var(--pvm-font-size-md, 1rem);
    }

    /* CLAUDE: Timeline-Linie ausblenden bei 3 Spalten (nicht mehr linear) */
    .pvm-process__timeline::before {
        display: none;
    }
}

/* CLAUDE: Tablet (768-999px) - 3 Spalten beibehalten */
@media (max-width: 999px) {
    .pvm-process__timeline {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: var(--pvm-space-md, 1.5rem);
        max-width: 700px;
    }

    .pvm-process-step h3 {
        font-size: 0.9375rem; /* 15px */
    }

    .pvm-process-step p {
        font-size: 0.8125rem; /* 13px */
    }
}

/* CLAUDE: Mobile Landscape / Small Tablet (600-767px) - 2 Spalten */
@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);
        max-width: 100%;
        padding: 0;
    }

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

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

    .pvm-process-step h3 {
        font-size: var(--pvm-font-size-sm, 0.875rem);
    }

    .pvm-process-step p {
        font-size: 0.8125rem; /* 13px */
        text-align: center;
    }
}

/* CLAUDE: Mobile Portrait (unter 480px) - 2 Spalten, kompakter */
@media (max-width: 480px) {
    .pvm-process {
        padding: var(--pvm-space-xl, 48px) 0;
    }

    .pvm-process__timeline {
        gap: var(--pvm-space-sm, 1rem);
    }

    .pvm-process-step__number {
        width: 40px;
        height: 40px;
        font-size: var(--pvm-font-size-sm, 0.875rem);
        margin-bottom: var(--pvm-space-xs, 8px);
    }

    .pvm-process-step h3 {
        font-size: 0.8125rem; /* 13px */
        margin-bottom: 4px;
    }

    .pvm-process-step p {
        font-size: 0.75rem; /* 12px */
        line-height: 1.5;
    }
}

/* CLAUDE: Sehr kleine Screens (unter 360px) - Noch kompaktere Darstellung */
@media (max-width: 360px) {
    .pvm-process__timeline {
        gap: 0.75rem;
    }

    .pvm-process-step__number {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }

    .pvm-process-step h3 {
        font-size: 0.75rem;
    }

    .pvm-process-step p {
        font-size: 0.6875rem; /* 11px */
    }
}

/* ==========================================================================
   CLAUDE: Intro Section
   ========================================================================== */

.pvm-intro--consulting {
    padding: var(--pvm-space-2xl, 64px) 0;
    background: var(--pvm-bg-white, #fff);
}

.pvm-intro--consulting .pvm-intro__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.pvm-intro--consulting h2 {
    margin-bottom: var(--pvm-space-md, 24px);
}

.pvm-intro--consulting p {
    font-size: var(--pvm-font-size-lg, 1.125rem);
    color: var(--pvm-text-muted, #666);
    line-height: 1.8;
    margin-bottom: var(--pvm-space-md, 24px);
}

.pvm-intro--consulting p:last-child {
    margin-bottom: 0;
}

/* CLAUDE: Highlight-Text für SEO/GEO Keywords */
.pvm-intro--consulting strong {
    color: var(--pvm-text, #1a1a2e);
}

/* ==========================================================================
   CLAUDE: GSAP Animation Initial States
   ========================================================================== */

/* CLAUDE: Hero Content/Image - KEINE CSS Initial States setzen!
   CLAUDE: Die GSAP Animation in pvm-section-animations.js animiert die Kind-Elemente
   CLAUDE: (h1, .pvm-hero-text, CTAs, .pvm-hero__image) direkt mit gsap.set()
   CLAUDE: Container-Level opacity:0 würde animierte Kinder verstecken → Text unsichtbar
   CLAUDE: FIX 2026-01-08: Initial States entfernt, GSAP übernimmt vollständig
*/

/* CLAUDE: GSAP Initial States ENTFERNT!
   CLAUDE: FIX 2026-01-08: Alle opacity:0 Initial States hier entfernt
   CLAUDE: Grund: GSAP in pvm-section-animations.js setzt eigene Initial States via gsap.set()
   CLAUDE: CSS opacity:0 OHNE passende GSAP-Animation = Element bleibt unsichtbar
   CLAUDE: Betroffene Klassen (jetzt von GSAP gesteuert):
   CLAUDE: - .pvm-trust-stat (Counter Animation)
   CLAUDE: - .pvm-problem-card (Problem Cards Animation)
   CLAUDE: - .pvm-service-card--consulting (Service Cards Animation)
   CLAUDE: - .pvm-testimonial (Testimonials Animation)
   CLAUDE: - .pvm-process-step (Process Steps Animation)
   CLAUDE: - .pvm-faq__item (FAQ Items Animation)
*/

/* 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: Animations aktiv (via GSAP) */
.gsap-animated {
    opacity: 1 !important;
    transform: none !important;
}

/* ==========================================================================
   CLAUDE: Responsive Breakpoints
   ========================================================================== */

/* ==========================================================================
   CLAUDE: Responsive Grid - OPTIMIERT (2026-01-09)
   CLAUDE: 3 Spalten Maximum für bessere Titel-Lesbarkeit
   CLAUDE: Bei 4 Spalten waren die Cards nur 264px breit → Titel brachen über 3 Zeilen
   CLAUDE: Strategie für 7 Cards:
   CLAUDE: - ≥1024px: 3 Spalten (3+3+1 Layout, letzte zentriert)
   CLAUDE: - 768-1023px: 2 Spalten (2+2+2+1 Layout)
   CLAUDE: - <768px: 1 Spalte
   ========================================================================== */

/* CLAUDE: 4-Spalten-Layout ENTFERNT!
   CLAUDE: Grund: Titel wie "KI-Programmierung Einsteiger" brachen über 3 Zeilen
   CLAUDE: Bei 264px Card-Breite war nicht genug Platz für lesbare Titel
   CLAUDE: 3 Spalten = ~380px pro Card = max 2 Zeilen für Titel
*/

/* CLAUDE: Tablet (768-1023px) - 2 Spalten
   CLAUDE: Breakpoint angepasst: 3 Spalten bleiben bis 1024px erhalten */
@media (max-width: 1023px) {
    .pvm-consulting-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 1fr;
        gap: var(--pvm-space-md, 24px);
    }

    /* CLAUDE: Reset der 3-Spalten-Zentrierung */
    .pvm-consulting-services__grid > .pvm-service-card:last-child:nth-child(3n + 1) {
        grid-column: auto;
    }

    /* CLAUDE: Bei 7 Cards in 2 Spalten: Letzte Karte (ungerade) über volle Breite
       CLAUDE: aber max-width begrenzt für bessere Proportionen */
    .pvm-consulting-services__grid > .pvm-service-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    .pvm-service-card--consulting {
        padding: var(--pvm-space-md, 24px);
    }

    .pvm-lead-magnet__grid {
        grid-template-columns: 1fr;
        gap: var(--pvm-space-xl, 48px);
    }

    .pvm-lead-magnet__content {
        text-align: center;
    }

    .pvm-lead-magnet__features {
        display: inline-block;
        text-align: left;
    }
}

/* CLAUDE: Mobile (unter 768px) - 1 Spalte mit einheitlicher Card-Höhe */
@media (max-width: 767px) {
    /* Hero Stack */
    .pvm-hero--consulting .pvm-hero__grid {
        grid-template-columns: 1fr;
        gap: var(--pvm-space-lg, 32px);
    }

    .pvm-hero--consulting .pvm-hero__content {
        text-align: center;
        max-width: none;
    }

    .pvm-hero--consulting .pvm-hero-ctas {
        justify-content: center;
    }

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

    /* CLAUDE: Services Grid - 1 Spalte mit FESTEN einheitlichen Höhen
       CLAUDE: FIX 2026-01-09: 1fr erzwingt gleiche Höhe für alle Cards */
    .pvm-consulting-services__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 1fr;
        gap: var(--pvm-space-md, 24px);
    }

    /* CLAUDE: Reset aller Spalten-Overrides */
    .pvm-consulting-services__grid > .pvm-service-card:last-child:nth-child(odd),
    .pvm-consulting-services__grid > .pvm-service-card:last-child:nth-child(3n + 1) {
        grid-column: 1;
        max-width: none;
        margin: 0;
    }

    /* CLAUDE: Cards auf Mobile mit fester min-height + Flexbox für CTA am unteren Rand
       CLAUDE: line-clamp auf Paragraph verhindert zu lange Texte */
    .pvm-service-card--consulting {
        min-height: 300px;
        padding: var(--pvm-space-md, 24px);
    }

    /* CLAUDE: Paragraph-Text auf Mobile begrenzen für einheitliche Höhen */
    .pvm-service-card--consulting p {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: var(--pvm-space-sm, 16px);
    }

    /* Testimonials */
    .pvm-testimonials__grid {
        grid-template-columns: 1fr;
    }

    .pvm-testimonials__grid > .pvm-testimonial:last-child:nth-child(odd) {
        max-width: none;
    }

    /* Lead-Magnet */
    .pvm-lead-magnet__form {
        padding: var(--pvm-space-lg, 32px);
    }
}

/* CLAUDE: Mobile Portrait (unter 480px) - Kompakteste Darstellung */
@media (max-width: 479px) {
    .pvm-hero--consulting h1 {
        font-size: 1.75rem;
    }

    .pvm-hero--consulting .pvm-hero-ctas {
        flex-direction: column;
    }

    .pvm-hero--consulting .pvm-hero-ctas .pvm-btn {
        width: 100%;
        text-align: center;
    }

    /* CLAUDE: Kompaktere Cards auf kleinen Screens - weiterhin 1fr für Einheitlichkeit */
    .pvm-consulting-services__grid {
        grid-auto-rows: 1fr;
        gap: var(--pvm-space-sm, 16px);
    }

    .pvm-service-card--consulting {
        min-height: 280px;
        padding: var(--pvm-space-sm, 16px) var(--pvm-space-md, 24px);
    }

    /* CLAUDE: Kleinere Icons auf Mobile */
    .pvm-service-card--consulting .pvm-service-card__icon {
        width: 48px;
        height: 48px;
        margin-bottom: var(--pvm-space-sm, 16px);
    }

    .pvm-service-card--consulting .pvm-service-card__icon svg {
        width: 24px;
        height: 24px;
    }

    /* CLAUDE: Noch kürzerer Text auf sehr kleinen Screens */
    .pvm-service-card--consulting p {
        -webkit-line-clamp: 2;
    }

    .pvm-testimonial {
        padding: var(--pvm-space-lg, 32px) var(--pvm-space-md, 24px);
    }

    .pvm-testimonial::before {
        font-size: 3rem;
        top: 8px;
        left: 16px;
    }

    .pvm-lead-magnet__form {
        padding: var(--pvm-space-md, 24px);
    }
}

/* ==========================================================================
   CLAUDE: Print Styles
   ========================================================================== */

@media print {
    .pvm-hero--consulting,
    .pvm-lead-magnet--consulting {
        background: white !important;
        color: black !important;
    }

    .pvm-hero--consulting .pvm-hero__img {
        display: none;
    }

    .pvm-lead-magnet--consulting::before,
    .pvm-lead-magnet--consulting::after {
        display: none;
    }
}
