/* Privacy Page - Premium Design orientiert an Vision-Seite */

.privacy-content-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-hero-section {
    text-align: center;
    padding: 100px 40px;
    margin-bottom: 80px;
    background: linear-gradient(135deg, var(--color-brand-primary) 0%, var(--color-brand-secondary) 100%);
    border-radius: 16px;
    box-shadow: 0 10px 40px var(--color-black-rgba-015), 0 0 30px var(--color-brand-primary-rgba-015);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color-background-primary-rgba-015);
}

.privacy-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(to right, var(--color-background-primary-rgba-008) 1px, transparent 1px),
        linear-gradient(to bottom, var(--color-background-primary-rgba-008) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}

.privacy-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, var(--color-background-primary-rgba-006) 0%, transparent 40%),
                radial-gradient(circle at 70% 60%, var(--color-brand-accent-rgba-008) 0%, transparent 40%);
    pointer-events: none;
}

.privacy-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.privacy-hero-headline {
    font-family: var(--font-family-primary);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 35px 0;
    letter-spacing: -1px;
    color: var(--color-background-primary);
    text-shadow: 0 2px 12px var(--color-black-rgba-025);
    position: relative;
    display: inline-block;
    width: 100%;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
}

.privacy-hero-headline::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-complementary-primary) 0%, var(--color-complementary-secondary) 100%);
    border-radius: 2px;
    box-shadow: 0 0 15px var(--color-complementary-primary-rgba-04);
}

.privacy-hero-subheadline {
    font-family: var(--font-family-primary);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
    color: var(--color-dark-text-light);
}

.privacy-content-section {
    padding: 0;
    margin-bottom: 80px;
}

.privacy-section {
    margin-bottom: 50px;
    padding: 40px;
    background: linear-gradient(135deg, var(--color-brand-primary) 0%, var(--color-brand-secondary) 100%);
    border-radius: 12px;
    border: 1px solid var(--color-background-primary-rgba-015);
    box-shadow: 0 4px 20px var(--color-black-rgba-015), 0 0 15px var(--color-brand-primary-rgba-008);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.privacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-complementary-primary) 0%, var(--color-complementary-secondary) 100%);
    box-shadow: 0 0 8px var(--color-complementary-primary-rgba-04);
}

.privacy-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, var(--color-background-primary-rgba-008) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.privacy-section:hover {
    transform: translateY(-5px);
    border-color: var(--color-background-primary-rgba-03);
    box-shadow: 0 8px 30px var(--color-black-rgba-02), 0 0 25px var(--color-brand-primary-rgba-02);
}

.privacy-section:hover::after {
    opacity: 1;
}

.privacy-section-title {
    font-family: var(--font-family-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 18px 0;
    color: var(--color-background-primary);
    text-shadow: 0 1px 8px var(--color-black-rgba-02);
    position: relative;
    padding-left: 18px;
    z-index: 1;
}

.privacy-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--color-complementary-primary);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--color-complementary-primary-rgba-04);
    z-index: 1;
}

.privacy-section-text {
    font-family: var(--font-family-primary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    color: var(--color-dark-text-medium);
    position: relative;
    z-index: 1;
}

/* Tablet Landscape (1024px - 1366px) */
@media (max-width: 1366px) {
    .privacy-content-container {
        padding: 0 15px;
    }
    
    .privacy-hero-section {
        padding: 90px 30px;
        margin-bottom: 70px;
    }
    
    .privacy-content-section {
        margin-bottom: 70px;
    }
}

/* Tablet Portrait (768px - 1023px) */
@media (max-width: 1023px) {
    .privacy-content-container {
        padding: 0 10px;
    }
    
    .privacy-hero-section {
        padding: 70px 25px;
        margin-bottom: 60px;
    }
    
    .privacy-hero-headline {
        font-size: 2.8rem;
        margin: 0 0 30px 0;
    }
    
    .privacy-hero-subheadline {
        font-size: 1.25rem;
    }
    
    .privacy-content-section {
        margin-bottom: 60px;
    }
    
    .privacy-section {
        padding: 35px;
    }
}

/* Mobile Landscape & Large Mobile (576px - 767px) */
@media (max-width: 767px) {
    .privacy-hero-section {
        padding: 50px 20px;
        margin-bottom: 50px;
        border-radius: 12px;
    }
    
    .privacy-hero-headline {
        font-size: 1.7rem;
        margin: 0 0 20px 0;
        line-height: 1.3;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .privacy-hero-subheadline {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .privacy-content-section {
        margin-bottom: 50px;
    }
    
    .privacy-section {
        padding: 30px 25px;
        margin-bottom: 35px;
        border-radius: 10px;
    }
    
    .privacy-section-title {
        font-size: 1.35rem;
        margin: 0 0 15px 0;
    }
    
    .privacy-section-text {
        font-size: 1rem;
        line-height: 1.65;
    }
}

/* Small Mobile (max 575px) */
@media (max-width: 575px) {
    .privacy-content-container {
        padding: 0;
    }
    
    .privacy-hero-section {
        padding: 40px 18px;
        margin-bottom: 40px;
        border-radius: 12px;
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .privacy-hero-headline {
        font-size: 1.4rem;
        margin: 0 0 18px 0;
        letter-spacing: -0.5px;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .privacy-hero-subheadline {
        font-size: 0.95rem;
    }
    
    .privacy-content-section {
        margin-bottom: 40px;
    }
    
    .privacy-section {
        padding: 28px 22px;
        margin-bottom: 25px;
        border-radius: 10px;
    }
    
    .privacy-section::before {
        width: 3px;
    }
    
    .privacy-section-title {
        font-size: 1.25rem;
        margin: 0 0 12px 0;
    }
    
    .privacy-section-text {
        font-size: 0.95rem;
        line-height: 1.65;
    }
}

/* Extra Small Mobile (max 400px) */
@media (max-width: 400px) {
    .privacy-hero-headline {
        font-size: 1.2rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .privacy-hero-subheadline {
        font-size: 0.9rem;
    }
    
    .privacy-section {
        padding: 25px 18px;
    }
    
    .privacy-section-title {
        font-size: 1.15rem;
    }
    
    .privacy-section-text {
        font-size: 0.9rem;
    }
}
