/* ABOUT SECTION */
.about {
    padding: 2rem 2rem 8rem;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.about-text p strong {
    color: var(--white);
}

/* =============================================
   TEAM CARDS
   ============================================= */
.team-cards {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.team-card {
    flex: 1;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    transition: var(--transition);
}

.team-card:hover {
    border-color: var(--primary);
    background: rgba(107, 33, 214, 0.05);
    transform: translateY(-4px);
}

.team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
    box-shadow: 0 0 20px rgba(107, 33, 214, 0.3);
    flex-shrink: 0;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.team-photo-frederic {
    /* Crop Frederic from the left, exclude person on right */
    object-position: 75% 15%;
    transform: scale(1.3);
    transform-origin: 75% 15%;
}

.team-info h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.team-role {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    display: block;
    margin-bottom: 0.5rem;
}

.team-info p {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--white), var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    min-width: 120px;
    text-align: center;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* CONTACT SECTION */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 3rem;
