/* ============================================
   Impressum Page Styles - PVTechnik24
   ============================================ */

:root {
    --pv-green: #10b981;
    --pv-dark: #0f172a;
    --pv-gold: #f59e0b;
    --pv-light: #f8fafc;
    --pv-gray: #64748b;
    --pv-border: #e2e8f0;
    --pv-radius: 12px;
    --pv-radius-lg: 16px;
    --pv-shadow: 0 2px 12px rgba(0,0,0,0.08);
    --pv-shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
}

/* Container */
.fe-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Legal Hero Section */
.legal-hero {
    position: relative;
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--pv-dark) 0%, #1a2744 100%);
    overflow: hidden;
}

.legal-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.legal-hero__shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, transparent 70%);
}

.legal-hero__shape--1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
}

.legal-hero__shape--2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -50px;
    background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
}

.legal-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 0.875rem;
}

.legal-hero__breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-hero__breadcrumb-link:hover {
    color: var(--pv-green);
}

.legal-hero__breadcrumb-sep {
    opacity: 0.5;
}

.legal-hero__breadcrumb-current {
    color: #fff;
    font-weight: 500;
}

.legal-hero__content {
    position: relative;
    z-index: 2;
}

.legal-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.2;
}

.legal-hero__desc {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
    max-width: 600px;
}

/* Legal Main Section */
.legal-main {
    padding: 80px 0;
    background: var(--pv-light);
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Legal Section */
.legal-section {
    margin-bottom: 60px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section__title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--pv-dark);
    margin: 0 0 32px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--pv-green);
}

.legal-section__title img {
    filter: sepia(1) saturate(5) hue-rotate(120deg) brightness(0.9);
}

/* Legal Card */
.legal-card {
    background: #fff;
    border-radius: var(--pv-radius-lg);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--pv-shadow);
    border: 1px solid var(--pv-border);
    transition: all 0.3s ease;
}

.legal-card:last-child {
    margin-bottom: 0;
}

.legal-card:hover {
    box-shadow: var(--pv-shadow-lg);
    transform: translateY(-2px);
}

.legal-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--pv-dark);
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-card__title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, var(--pv-green) 0%, var(--pv-gold) 100%);
    border-radius: 2px;
}

.legal-card__content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #475569;
    margin: 0 0 16px;
}

.legal-card__content p:last-child {
    margin-bottom: 0;
}

.legal-card__content strong {
    color: var(--pv-dark);
    font-weight: 600;
}

/* Legal List */
.legal-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.legal-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--pv-green);
    border-radius: 50%;
}

.legal-list--check li::before {
    content: '✓';
    width: auto;
    height: auto;
    background: none;
    color: var(--pv-green);
    font-weight: 700;
    font-size: 1.125rem;
    top: 0;
}

/* Legal Highlight */
.legal-highlight {
    display: flex;
    gap: 20px;
    background: linear-gradient(135deg, rgba(16,185,129,0.08) 0%, rgba(16,185,129,0.03) 100%);
    border-left: 4px solid var(--pv-green);
    padding: 28px;
    border-radius: var(--pv-radius);
    margin-bottom: 24px;
}

.legal-highlight--info {
    background: linear-gradient(135deg, rgba(245,158,11,0.08) 0%, rgba(245,158,11,0.03) 100%);
    border-left-color: var(--pv-gold);
}

.legal-highlight__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.legal-highlight__icon img {
    filter: sepia(1) saturate(5) hue-rotate(120deg) brightness(0.9);
}

.legal-highlight--info .legal-highlight__icon img {
    filter: sepia(1) saturate(5) hue-rotate(15deg) brightness(1.1);
}

.legal-highlight__content {
    flex: 1;
}

.legal-highlight__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--pv-dark);
    margin: 0 0 12px;
}

.legal-highlight__content p:not(.legal-highlight__title) {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

/* Legal Contact */
.legal-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.legal-contact__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--pv-light);
    border-radius: var(--pv-radius);
    border: 1px solid var(--pv-border);
}

.legal-contact__label {
    font-weight: 600;
    color: var(--pv-dark);
    min-width: 80px;
}

.legal-contact__value {
    color: var(--pv-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-contact__value:hover {
    color: var(--pv-gold);
}

/* Legal Note */
.legal-note {
    font-size: 0.875rem;
    color: var(--pv-gray);
    font-style: italic;
    margin-top: 12px;
    padding: 12px;
    background: var(--pv-light);
    border-radius: var(--pv-radius);
    border-left: 3px solid var(--pv-gold);
}

/* Legal Link */
.legal-link {
    color: var(--pv-green);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.legal-link:hover {
    color: var(--pv-gold);
    border-bottom-color: var(--pv-gold);
}

/* Legal Footer Note */
.legal-footer-note {
    margin-top: 32px;
    padding: 24px;
    background: var(--pv-light);
    border-radius: var(--pv-radius);
    border: 1px dashed var(--pv-border);
}

.legal-footer-note p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--pv-gray);
    margin: 0 0 8px;
}

.legal-footer-note p:last-child {
    margin-bottom: 0;
}

.legal-footer-note strong {
    color: var(--pv-dark);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .fe-container {
        padding: 0 20px;
    }

    .legal-main {
        padding: 60px 0;
    }

    .legal-section {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .fe-container {
        padding: 0 16px;
    }

    .legal-hero {
        padding: 100px 0 40px;
    }

    .legal-main {
        padding: 50px 0;
    }

    .legal-section {
        margin-bottom: 40px;
    }

    .legal-section__title {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }

    .legal-card {
        padding: 24px;
    }

    .legal-highlight {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .legal-highlight__icon {
        width: 40px;
        height: 40px;
    }

    .legal-contact__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .legal-contact__label {
        min-width: auto;
    }
}

@media (max-width: 600px) {
    .legal-hero {
        padding: 95px 0 35px;
    }

    .legal-hero__breadcrumb {
        font-size: 0.8125rem;
    }

    .legal-main {
        padding: 40px 0;
    }

    .legal-card {
        padding: 20px;
    }

    .legal-card__title {
        font-size: 1.125rem;
    }

    .legal-highlight {
        padding: 16px;
    }

    .legal-list li {
        padding-left: 24px;
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .legal-hero {
        padding: 90px 0 30px;
    }

    .legal-main {
        padding: 35px 0;
    }

    .legal-section {
        margin-bottom: 35px;
    }

    .legal-section__title {
        font-size: 1.375rem;
        gap: 10px;
    }

    .legal-section__title img {
        width: 18px;
        height: 18px;
    }

    .legal-card {
        padding: 18px;
        margin-bottom: 20px;
    }

    .legal-card__content p {
        font-size: 0.9375rem;
    }
}

@media (max-width: 375px) {
    .legal-hero {
        padding: 85px 0 28px;
    }

    .legal-main {
        padding: 30px 0;
    }

    .legal-section {
        margin-bottom: 30px;
    }

    .legal-card {
        padding: 16px;
    }

    .legal-highlight {
        padding: 14px;
    }
}
