/* About Section */
.about {
    background: var(--bg-secondary);
}

.mission-statement,
.company-story {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.mission-statement h3,
.company-story h3 {
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.mission-statement p,
.company-story p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Section Subheader */
.section-subheader {
    text-align: center;
    margin-bottom: 40px;
}

.section-subheader h3 {
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.section-subheader h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent-gradient);
    margin: 10px auto 0;
}

/* Team Stats */
.team-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

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

.team-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.team-stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 40px;
    margin: 0 0 60px;
}

.team-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.team-member {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-accent);
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.1), transparent);
    transition: left 0.6s ease;
}

.team-member:hover::before {
    left: 100%;
}

.team-member:hover {
    transform: translateY(-8px);
    border-color: var(--border-accent-hover);
    box-shadow: var(--shadow-card);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--border-accent-medium);
    transition: all var(--transition-speed) ease;
    filter: grayscale(30%) brightness(0.8) contrast(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.member-photo:hover {
    filter: grayscale(0%) brightness(1) contrast(1.2);
    border-color: rgba(100, 255, 218, 0.6);
    box-shadow: 0 12px 35px rgba(100, 255, 218, 0.2);
    transform: scale(1.05);
}

.team-member h3 {
    color: var(--accent);
    margin-bottom: 10px;
    font-size: 1.4rem;
    position: relative;
    z-index: 2;
}

.member-title {
    color: var(--text-heading);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.team-member p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.expertise-tags {
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 30px;
    margin-top: 60px;
}

.value-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-accent);
    transition: all var(--transition-speed) ease;
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: var(--border-accent-medium);
}

.value-item h4 {
    color: var(--text-heading);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.value-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-member {
        padding: 30px 20px;
    }
}
