/* === WHO WE ARE PAGE === */
.page-content {
    position: relative;
    padding-top: var(--header-height);
}

/* Hero Section - Fullscreen with glassmorphism */
.hero-fullscreen {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    padding: 4rem;
    z-index: 2;
}

.hero-fullscreen .bg-wallpaper {
    position: absolute;
    inset: 0;
    background-image: url('/static/images/wallpaper.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

/* Glass overlay for readability */
.hero-fullscreen .bg-wallpaper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.hero-container {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-fullscreen .section-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.hero-fullscreen h2 {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-fullscreen .hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 600px;
}

/* Content Sections - Black background, no glass */
.content-section {
    position: relative;
    z-index: 2;
    padding: 5rem 4rem;
    background: var(--bg-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section-container {
    max-width: 800px;
    margin: 0 auto;
}

.section-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 1.5rem;
    opacity: 0.4;
}

.content-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.5px;
    margin-bottom: 1.2rem;
}

.content-section p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Values Grid */
.values-section {
    position: relative;
    z-index: 2;
    padding: 5rem 4rem;
    background: var(--bg-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.values-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: border-color 0.3s ease;
}

.value-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.value-card svg {
    width: 22px;
    height: 22px;
    margin-bottom: 0.8rem;
    opacity: 0.4;
}

.value-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.value-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Quote Section */
.quote-section {
    position: relative;
    z-index: 2;
    padding: 6rem 4rem;
    background: var(--bg-primary);
    text-align: center;
}

.quote-section .section-container {
    max-width: 700px;
}

.quote-section svg {
    width: 32px;
    height: 32px;
    margin-bottom: 1.5rem;
    opacity: 0.2;
}

.quote-section blockquote {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-fullscreen {
        padding: 3rem 2.5rem;
    }
    
    .hero-fullscreen h2 {
        font-size: 3rem;
    }
    
    .content-section,
    .values-section {
        padding: 4rem 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-fullscreen {
        padding: 3rem 2rem;
        min-height: auto;
    }
    
    .hero-fullscreen h2 {
        font-size: 2.2rem;
    }
    
    .hero-fullscreen .hero-description {
        font-size: 1rem;
    }
    
    .content-section,
    .values-section {
        padding: 3rem 2rem;
    }
    
    .content-section h3 {
        font-size: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-section {
        padding: 4rem 2rem;
    }
    
    .quote-section blockquote {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-fullscreen {
        padding: 2.5rem 1.5rem;
    }
    
    .hero-fullscreen h2 {
        font-size: 1.8rem;
    }
    
    .content-section,
    .values-section {
        padding: 2.5rem 1.5rem;
    }
    
    .content-section h3 {
        font-size: 1.3rem;
    }
    
    .content-section p {
        font-size: 0.9rem;
    }
    
    .quote-section {
        padding: 3rem 1.5rem;
    }
}