/* Über uns Page Specific Styles */

/* Hero Section */
.page-hero {
    padding-top: 10rem;
    padding-bottom: 6rem;
    background: var(--white);
}

.page-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

.page-hero h1 .accent {
    position: relative;
    display: inline-block;
}

.page-hero h1 .accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35%;
    background: var(--accent);
    z-index: -1;
}

.page-hero .lead {
    font-size: 1.5rem;
    color: var(--gray);
    max-width: 800px;
    font-weight: 300;
    line-height: 1.4;
}

.about-hero-content {
    max-width: 1000px;
}

.about-intro {
    padding: 6rem 0;
    background: var(--light-gray);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-intro h2 {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.about-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    gap: 2rem;
}

.stat-block {
    padding: 2rem;
    background: var(--white);
    border-left: 4px solid var(--accent);
}

.stat-number {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-header h2 {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 300px;
    height: 300px;
    margin: 0 auto 2rem;
    background: var(--light-gray);
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-photo:hover {
    transform: scale(1.05);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--gray);
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--gray);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

/* Philosophy Section */
.philosophy {
    padding: 6rem 0;
    background: var(--black);
    color: var(--white);
}

.philosophy h2 {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 3rem;
    text-align: center;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.philosophy-item {
    text-align: center;
}

.philosophy-icon {
    width: 30px;
    height: 30px;
    margin: 0 auto 1.5rem;
    background: var(--accent);
    border-radius: 50%;
}

.philosophy-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.philosophy-item p {
    color: var(--gray);
    line-height: 1.6;
}

/* Kunden Section */
.kunden {
    padding: 6rem 0;
    background: var(--light-gray);
}

.kunden h2 {
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1rem;
}

.kunden-intro {
    text-align: center;
    color: var(--gray);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.kunden-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    align-items: center;
}

.kunde-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.kunde-logo img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

.kunde-logo:hover {
    opacity: 1;
}

.kunde-placeholder {
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    color: var(--gray);
}

/* Values Section */
.values {
    padding: 6rem 0;
    background: var(--white);
}

.values h2 {
    font-size: 3rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    padding: 2rem;
    background: var(--light-gray);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.value-number {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.value-item p {
    color: var(--gray);
    line-height: 1.6;
}

/* About CTA */
.about-cta {
    padding: 8rem 0;
    background: var(--black);
    color: var(--white);
    text-align: center;
    margin: 0;
    display: block;
}

/* Fix für weißen Strich */
main {
    margin: 0;
    padding: 0;
    display: block;
}

.about-cta + footer,
main + footer,
footer {
    margin-top: 0 !important;
}

.about-cta h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.about-cta p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.about-cta .cta-btn {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--accent);
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-cta .cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    transition: left 0.3s ease;
    z-index: -1;
}

.about-cta .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 238, 0, 0.3);
}

.about-cta .cta-btn:hover::before {
    left: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .kunden-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}
