/* Team Grid Redesign for Slide 3 */
#slide-3 .content {
    max-width: 1200px;
    padding: 60px 40px;
}

/* Team Grid Layout */
.team-showcase {
    margin-top: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}

/* Team Member Card */
.team-member {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.team-member:nth-child(1) { animation-delay: 0.1s; }
.team-member:nth-child(2) { animation-delay: 0.2s; }
.team-member:nth-child(3) { animation-delay: 0.3s; }
.team-member:nth-child(4) { animation-delay: 0.4s; }

/* Profile Photo/Initial Circle */
.member-avatar {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--gradient-artemed);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.member-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(123, 167, 204, 0.3);
}

.member-avatar::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    padding: 3px;
    background: var(--gradient-artemed);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-avatar:hover::after {
    opacity: 1;
}

.member-initials {
    font-size: 42px;
    font-weight: 700;
    color: white;
    letter-spacing: -1px;
}

.member-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

/* Member Info */
.member-name {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.member-role {
    font-size: 16px;
    color: var(--artemed-blue);
    font-weight: 500;
    margin-bottom: 12px;
}

.member-achievement {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 250px;
    margin: 0 auto;
}

/* Our Approach Section */
.our-approach {
    background: linear-gradient(135deg, rgba(123, 167, 204, 0.05) 0%, rgba(123, 167, 204, 0.1) 100%);
    border: 2px solid var(--artemed-blue);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.approach-header {
    text-align: center;
    margin-bottom: 32px;
}

.approach-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.approach-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

/* Approach Elements */
.approach-elements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.approach-item {
    text-align: center;
    padding: 24px 16px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.approach-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.approach-icon {
    font-size: 48px;
    margin-bottom: 12px;
    display: block;
}

.approach-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.approach-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Real Example Box */
.real-example {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

/* Modern Concept Statement */
.modern-concept-statement {
    margin-top: 40px;
    padding: 32px;
    background: var(--background-card);
    border-radius: 16px;
    border: 2px solid var(--artemed-blue);
    text-align: center;
}

.statement-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.statement-text {
    font-size: 18px;
    color: var(--text-primary);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.statement-text strong {
    color: var(--artemed-blue);
    font-weight: 600;
}

.example-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--artemed-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.example-text {
    font-size: 17px;
    color: var(--text-primary);
    line-height: 1.6;
    font-style: italic;
}

.example-text strong {
    color: var(--artemed-blue);
    font-weight: 600;
}

/* Success Stats */
.success-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.stat-card {
    text-align: center;
    padding: 24px;
    background: var(--background-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--artemed-blue);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--artemed-blue);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.stat-context {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .approach-elements {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .success-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .member-avatar {
        width: 120px;
        height: 120px;
    }
    
    .member-avatar::after {
        inset: -2px;
        padding: 2px;
    }
    
    .member-initials {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    #slide-3 .content {
        padding: 40px 20px;
    }
    
    .our-approach {
        padding: 32px 20px;
    }
    
    .approach-title {
        font-size: 24px;
    }
    
    .approach-subtitle {
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 28px;
    }
}