/**
 * PV Ludwigsburg - Exakte Farben aus Screenshots
 */

:root {
    /* EXAKTE Farben aus Screenshots extrahiert */
    --hero-bg: #EDF3F7;
    --services-bg: #F0F6FB;
    --faq-bg: #F0F6FB;
    --why-bg: #4A7EC7;
    --button-blue: #5B9FED;
    --text-blue: #4A90E2;
    --badge-green: #66B574;
    
    /* Icon Farben aus Screenshot 2 */
    --icon-blue: #5B9FED;
    --icon-green: #66B574;
    --icon-yellow: #F5B84D;
    --icon-orange: #E67E50;
    --icon-purple: #8B6FB8;
    --icon-teal: #5DB8A8;
    
    /* Step Colors aus Screenshot 5 */
    --step-1: #5B9FED;
    --step-2: #5DB8A8;
    --step-3: #F5B84D;
    --step-4: #D87B80;
    
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --white: #FFFFFF;
}

/* ============================================
   HERO SECTION - Screenshot 1
   ============================================ */

.pv-hero {
    background: var(--hero-bg);
    padding: 5rem 2rem;
}

.pv-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--badge-green);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 1.5rem;
}

.pv-hero-badge::before {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2366B574'%3E%3Cpath d='M12 2L2 7v10c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V7l-10-5z'/%3E%3C/svg%3E");
    background-size: contain;
}

.pv-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.pv-hero h1 .highlight {
    color: var(--text-blue);
    background: none !important;
}

.pv-hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.pv-hero-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.pv-hero-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.pv-hero-features li::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--badge-green);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
}

.pv-hero .wp-block-button__link {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.pv-hero .wp-block-button.is-style-fill .wp-block-button__link {
    background: var(--button-blue);
    color: white;
    border: none;
}

.pv-hero .wp-block-button.is-style-fill .wp-block-button__link:hover {
    background: var(--text-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
}

.pv-hero .wp-block-button.is-style-outline .wp-block-button__link {
    background: transparent;
    border: 2px solid var(--button-blue);
    color: var(--button-blue);
}

.pv-hero .wp-block-button.is-style-outline .wp-block-button__link:hover {
    background: var(--button-blue);
    color: white;
}

.pv-hero-note {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 1rem;
}

.pv-hero-note::before {
    content: "✓ ";
    color: var(--badge-green);
    font-weight: 700;
}

.pv-hero-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ============================================
   LEISTUNGEN / SERVICES - Screenshot 2
   ============================================ */

.pv-services {
    background: var(--services-bg);
    padding: 5rem 2rem;
}

.pv-services h2 {
    font-size: 2.625rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.pv-services h2 .highlight {
    color: var(--text-blue);
    background: none !important;
}

.pv-services > .wp-block-group > p {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
}

.pv-service-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pv-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.pv-service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.pv-service-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pv-service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.pv-service-link {
    color: var(--text-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.pv-service-link:hover {
    gap: 10px;
}

/* ============================================
   WARUM PV - Screenshot 4
   ============================================ */

.pv-why {
    background: var(--why-bg);
    padding: 5rem 2rem;
    color: white;
}

.pv-why h2 {
    font-size: 2.625rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.25rem;
}

.pv-why h2 .highlight {
    color: #F5B84D;
    background: none !important;
}

.pv-why-intro {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.pv-why-feature {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.pv-why-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.75rem;
}

.pv-why-feature h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.pv-why-feature p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.pv-why .wp-block-button__link {
    background: white;
    color: var(--why-bg);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pv-why .wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.pv-why-image img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ============================================
   PROZESS - Screenshot 5
   ============================================ */

.pv-process {
    padding: 5rem 2rem;
    background: white;
}

.pv-process h2 {
    font-size: 2.625rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.pv-process h2 .highlight {
    color: var(--text-blue);
    background: none !important;
}

.pv-process-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
}

.pv-process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 782px) {
    .pv-process-timeline::before {
        content: '';
        position: absolute;
        top: 60px;
        left: 12.5%;
        right: 12.5%;
        height: 2px;
        background: linear-gradient(90deg, 
            var(--step-1) 0%, 
            var(--step-2) 33%, 
            var(--step-3) 66%, 
            var(--step-4) 100%
        );
        z-index: 0;
    }
}

.pv-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.pv-step-number {
    position: absolute;
    top: 8px;
    right: calc(50% - 60px);
    width: 28px;
    height: 28px;
    background: #F5B84D;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    z-index: 2;
}

.pv-step-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    font-size: 3rem;
}

.pv-step h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.pv-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.pv-cta-box {
    background: linear-gradient(135deg, #E3F2FD 0%, #F0F8FF 100%);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    text-align: center;
    border: 2px solid var(--text-blue);
}

.pv-cta-box h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pv-cta-box p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* ============================================
   FAQ - Screenshot 3
   ============================================ */

.pv-faq {
    background: var(--faq-bg);
    padding: 5rem 2rem;
}

.pv-faq h2 {
    font-size: 2.625rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.pv-faq h2 .highlight {
    color: var(--text-blue);
    background: none !important;
}

.pv-faq-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.pv-faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.pv-faq-question {
    width: 100%;
    padding: 1.5rem 1.875rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.pv-faq-question:hover {
    background: #F9FAFB;
}

.pv-faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.pv-faq-icon svg {
    fill: var(--text-blue);
}

.pv-faq-item.active .pv-faq-icon {
    transform: rotate(180deg);
}

.pv-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.pv-faq-item.active .pv-faq-answer {
    max-height: 600px;
}

.pv-faq-answer-content {
    padding: 0 1.875rem 1.5rem 1.875rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 782px) {
    .pv-hero,
    .pv-services,
    .pv-why,
    .pv-process,
    .pv-faq {
        padding: 3rem 1.5rem;
    }
    
    .pv-hero h1 {
        font-size: 2rem;
    }
    
    .pv-hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pv-services h2,
    .pv-why h2,
    .pv-process h2,
    .pv-faq h2 {
        font-size: 2rem;
    }
    
    .pv-step-icon {
        width: 100px;
        height: 100px;
    }
}
